From 8bd93e049413f064dc8369e177150acffcbcf507 Mon Sep 17 00:00:00 2001 From: RomanTsukanov Date: Wed, 8 May 2024 16:57:52 +0400 Subject: [PATCH] Add the `name` property to the `ModifiedEvent` interface --- packages/survey-creator-core/src/creator-events-api.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/survey-creator-core/src/creator-events-api.ts b/packages/survey-creator-core/src/creator-events-api.ts index a2d916bc11..6693e65cb6 100644 --- a/packages/survey-creator-core/src/creator-events-api.ts +++ b/packages/survey-creator-core/src/creator-events-api.ts @@ -487,6 +487,7 @@ export interface ModifiedEvent { */ type: string; question?: Question; + name?: string; oldValue?: any; newValue?: any;