survey-react 1.11.10 → 1.11.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/survey.react.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- declare module "global_variables_utils" {
2
+ declare module "packages/survey-core/src/global_variables_utils" {
3
3
  export class DomWindowHelper {
4
4
  static isAvailable(): boolean;
5
5
  static isFileReaderAvailable(): boolean;
@@ -31,7 +31,7 @@ declare module "global_variables_utils" {
31
31
  static removeEventListener(type: string, listener: (e?: any) => void): void;
32
32
  }
33
33
  }
34
- declare module "helpers" {
34
+ declare module "packages/survey-core/src/helpers" {
35
35
  export interface HashTable<T = any> {
36
36
  [key: string]: T;
37
37
  }
@@ -74,7 +74,7 @@ declare module "helpers" {
74
74
  static compareVerions(ver1: string, ver2: string): number;
75
75
  }
76
76
  }
77
- declare module "localization/english" {
77
+ declare module "packages/survey-core/src/localization/english" {
78
78
  export var englishStrings: {
79
79
  pagePrevText: string;
80
80
  pageNextText: string;
@@ -183,7 +183,7 @@ declare module "localization/english" {
183
183
  cancel: string;
184
184
  };
185
185
  }
186
- declare module "surveyStrings" {
186
+ declare module "packages/survey-core/src/surveyStrings" {
187
187
  export var surveyLocalization: {
188
188
  currentLocaleValue: string;
189
189
  defaultLocaleValue: string;
@@ -312,8 +312,8 @@ declare module "surveyStrings" {
312
312
  cancel: string;
313
313
  };
314
314
  }
315
- declare module "conditionProcessValue" {
316
- import { HashTable } from "helpers";
315
+ declare module "packages/survey-core/src/conditionProcessValue" {
316
+ import { HashTable } from "packages/survey-core/src/helpers";
317
317
  export class ProcessValue {
318
318
  values: HashTable<any>;
319
319
  properties: HashTable<any>;
@@ -337,7 +337,7 @@ declare module "conditionProcessValue" {
337
337
  private getIntValue;
338
338
  }
339
339
  }
340
- declare module "console-warnings" {
340
+ declare module "packages/survey-core/src/console-warnings" {
341
341
  export class ConsoleWarnings {
342
342
  static disposedObjectChangedProperty(propName: string, objType: string): void;
343
343
  static inCorrectQuestionValue(questionName: string, val: any): void;
@@ -345,8 +345,8 @@ declare module "console-warnings" {
345
345
  static error(text: string): void;
346
346
  }
347
347
  }
348
- declare module "functionsfactory" {
349
- import { HashTable } from "helpers";
348
+ declare module "packages/survey-core/src/functionsfactory" {
349
+ import { HashTable } from "packages/survey-core/src/helpers";
350
350
  export class FunctionFactory {
351
351
  static Instance: FunctionFactory;
352
352
  private functionHash;
@@ -361,9 +361,9 @@ declare module "functionsfactory" {
361
361
  }
362
362
  export var registerFunction: (name: string, func: (params: any[], originalParams?: any[]) => any, isAsync?: boolean) => void;
363
363
  }
364
- declare module "expressions/expressions" {
365
- import { HashTable } from "helpers";
366
- import { ProcessValue } from "conditionProcessValue";
364
+ declare module "packages/survey-core/src/expressions/expressions" {
365
+ import { HashTable } from "packages/survey-core/src/helpers";
366
+ import { ProcessValue } from "packages/survey-core/src/conditionProcessValue";
367
367
  export abstract class Operand {
368
368
  toString(func?: (op: Operand) => string): string;
369
369
  abstract getType(): string;
@@ -492,7 +492,7 @@ declare module "expressions/expressions" {
492
492
  static signs: HashTable<string>;
493
493
  }
494
494
  }
495
- declare module "expressions/expressionParser" {
495
+ declare module "packages/survey-core/src/expressions/expressionParser" {
496
496
  export interface IFilePosition {
497
497
  offset: number;
498
498
  line: number;
@@ -548,8 +548,8 @@ declare module "expressions/expressionParser" {
548
548
  export type ParseFunction = (input: string, options?: IParseOptions) => any;
549
549
  export const parse: ParseFunction;
550
550
  }
551
- declare module "conditionsParser" {
552
- import { Operand } from "expressions/expressions";
551
+ declare module "packages/survey-core/src/conditionsParser" {
552
+ import { Operand } from "packages/survey-core/src/expressions/expressions";
553
553
  export class ConditionsParserError {
554
554
  at: number;
555
555
  code: string;
@@ -564,8 +564,8 @@ declare module "conditionsParser" {
564
564
  get error(): ConditionsParserError;
565
565
  }
566
566
  }
567
- declare module "conditions" {
568
- import { HashTable } from "helpers";
567
+ declare module "packages/survey-core/src/conditions" {
568
+ import { HashTable } from "packages/survey-core/src/helpers";
569
569
  /**
570
570
  * Base interface for expression execution
571
571
  */
@@ -653,7 +653,7 @@ declare module "conditions" {
653
653
  protected doOnComplete(res: any): void;
654
654
  }
655
655
  }
656
- declare module "utils/cssClassBuilder" {
656
+ declare module "packages/survey-core/src/utils/cssClassBuilder" {
657
657
  export class CssClassBuilder {
658
658
  private classes;
659
659
  isEmpty(): boolean;
@@ -661,7 +661,7 @@ declare module "utils/cssClassBuilder" {
661
661
  toString(): string;
662
662
  }
663
663
  }
664
- declare module "utils/taskmanager" {
664
+ declare module "packages/survey-core/src/utils/taskmanager" {
665
665
  export interface IExecutable {
666
666
  id?: string;
667
667
  execute: () => void;
@@ -691,8 +691,8 @@ declare module "utils/taskmanager" {
691
691
  cancel: () => void;
692
692
  };
693
693
  }
694
- declare module "utils/animation" {
695
- import { EventBase, Base } from "base";
694
+ declare module "packages/survey-core/src/utils/animation" {
695
+ import { EventBase, Base } from "packages/survey-core/src/base";
696
696
  export interface AnimationOptions {
697
697
  cssClass: string;
698
698
  onBeforeRunAnimation?: (element: HTMLElement) => void;
@@ -772,12 +772,12 @@ declare module "utils/animation" {
772
772
  protected _sync(newValue: [T]): void;
773
773
  }
774
774
  }
775
- declare module "popup-view-model" {
776
- import { Base, EventBase } from "base";
777
- import { PopupModel } from "popup";
778
- import { CssClassBuilder } from "utils/cssClassBuilder";
779
- import { ActionContainer } from "actions/container";
780
- import { AnimationOptions, IAnimationConsumer } from "utils/animation";
775
+ declare module "packages/survey-core/src/popup-view-model" {
776
+ import { Base, EventBase } from "packages/survey-core/src/base";
777
+ import { PopupModel } from "packages/survey-core/src/popup";
778
+ import { CssClassBuilder } from "packages/survey-core/src/utils/cssClassBuilder";
779
+ import { ActionContainer } from "packages/survey-core/src/actions/container";
780
+ import { AnimationOptions, IAnimationConsumer } from "packages/survey-core/src/utils/animation";
781
781
  export const FOCUS_INPUT_SELECTOR = "input:not(:disabled):not([readonly]):not([type=hidden]),select:not(:disabled):not([readonly]),textarea:not(:disabled):not([readonly]), button:not(:disabled):not([readonly]), [tabindex]:not([tabindex^=\"-\"])";
782
782
  export class PopupBaseViewModel extends Base implements IAnimationConsumer {
783
783
  protected popupSelector: string;
@@ -855,8 +855,8 @@ declare module "popup-view-model" {
855
855
  protected preventScrollOuside(event: any, deltaY: number): void;
856
856
  }
857
857
  }
858
- declare module "utils/utils" {
859
- import { PopupBaseViewModel } from "popup-view-model";
858
+ declare module "packages/survey-core/src/utils/utils" {
859
+ import { PopupBaseViewModel } from "packages/survey-core/src/popup-view-model";
860
860
  function compareVersions(a: any, b: any): number;
861
861
  function confirmAction(message: string): boolean;
862
862
  function confirmActionAsync(message: string, funcOnYes: () => void, funcOnNo?: () => void, locale?: string, rootElement?: HTMLElement): void;
@@ -915,10 +915,10 @@ declare module "utils/utils" {
915
915
  export function roundTo2Decimals(number: number): number;
916
916
  export { mergeValues, getElementWidth, isContainerVisible, classesToSelector, compareVersions, confirmAction, confirmActionAsync, detectIEOrEdge, detectIEBrowser, loadFileFromBase64, isMobile, isShadowDOM, getElement, isElementVisible, findScrollableParent, scrollElementByChildId, navigateToUrl, wrapUrlForBackgroundImage, createSvg, getIconNameFromProxy, increaseHeightByContent, getOriginalEvent, preventDefaults, findParentByClassNames, getFirstVisibleChild, chooseFiles };
917
917
  }
918
- declare module "actions/container" {
919
- import { Base } from "base";
920
- import { IAction, Action, BaseAction } from "actions/action";
921
- import { ILocalizableOwner, LocalizableString } from "localizablestring";
918
+ declare module "packages/survey-core/src/actions/container" {
919
+ import { Base } from "packages/survey-core/src/base";
920
+ import { IAction, Action, BaseAction } from "packages/survey-core/src/actions/action";
921
+ import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
922
922
  export let defaultActionBarCss: {
923
923
  root: string;
924
924
  defaultSizeMode: string;
@@ -973,7 +973,7 @@ declare module "actions/container" {
973
973
  dispose(): void;
974
974
  }
975
975
  }
976
- declare module "element-helper" {
976
+ declare module "packages/survey-core/src/element-helper" {
977
977
  export class ElementHelper {
978
978
  static focusElement(element: Element): void;
979
979
  static visibility(node: Element): boolean;
@@ -983,10 +983,10 @@ declare module "element-helper" {
983
983
  static hasVerticalScroller(element: HTMLElement): boolean;
984
984
  }
985
985
  }
986
- declare module "list" {
987
- import { ActionContainer } from "actions/container";
988
- import { Action, BaseAction, IAction } from "actions/action";
989
- import { ILocalizableOwner } from "localizablestring";
986
+ declare module "packages/survey-core/src/list" {
987
+ import { ActionContainer } from "packages/survey-core/src/actions/container";
988
+ import { Action, BaseAction, IAction } from "packages/survey-core/src/actions/action";
989
+ import { ILocalizableOwner } from "packages/survey-core/src/localizablestring";
990
990
  export let defaultListCss: {
991
991
  root: string;
992
992
  item: string;
@@ -1120,11 +1120,11 @@ declare module "list" {
1120
1120
  dispose(): void;
1121
1121
  }
1122
1122
  }
1123
- declare module "actions/action" {
1124
- import { ILocalizableOwner, LocalizableString } from "localizablestring";
1125
- import { Base, ComputedUpdater } from "base";
1126
- import { IListModel } from "list";
1127
- import { IPopupOptionsBase, PopupModel } from "popup";
1123
+ declare module "packages/survey-core/src/actions/action" {
1124
+ import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
1125
+ import { Base, ComputedUpdater } from "packages/survey-core/src/base";
1126
+ import { IListModel } from "packages/survey-core/src/list";
1127
+ import { IPopupOptionsBase, PopupModel } from "packages/survey-core/src/popup";
1128
1128
  export type actionModeType = "large" | "small" | "popup" | "removed";
1129
1129
  /**
1130
1130
  * An action item.
@@ -1417,9 +1417,9 @@ declare module "actions/action" {
1417
1417
  dispose(): void;
1418
1418
  }
1419
1419
  }
1420
- declare module "utils/responsivity-manager" {
1421
- import { Action } from "actions/action";
1422
- import { AdaptiveActionContainer } from "actions/adaptive-container";
1420
+ declare module "packages/survey-core/src/utils/responsivity-manager" {
1421
+ import { Action } from "packages/survey-core/src/actions/action";
1422
+ import { AdaptiveActionContainer } from "packages/survey-core/src/actions/adaptive-container";
1423
1423
  interface IDimensions {
1424
1424
  scroll: number;
1425
1425
  offset: number;
@@ -1459,10 +1459,10 @@ declare module "utils/responsivity-manager" {
1459
1459
  protected calcActionDimensions(currentAction: Action, item: HTMLDivElement): void;
1460
1460
  }
1461
1461
  }
1462
- declare module "actions/adaptive-container" {
1463
- import { ListModel } from "list";
1464
- import { Action, actionModeType } from "actions/action";
1465
- import { ActionContainer } from "actions/container";
1462
+ declare module "packages/survey-core/src/actions/adaptive-container" {
1463
+ import { ListModel } from "packages/survey-core/src/list";
1464
+ import { Action, actionModeType } from "packages/survey-core/src/actions/action";
1465
+ import { ActionContainer } from "packages/survey-core/src/actions/container";
1466
1466
  export class AdaptiveActionContainer<T extends Action = Action> extends ActionContainer<T> {
1467
1467
  dotsItem: Action;
1468
1468
  private responsivityManager;
@@ -1486,9 +1486,9 @@ declare module "actions/adaptive-container" {
1486
1486
  dispose(): void;
1487
1487
  }
1488
1488
  }
1489
- declare module "survey-error" {
1490
- import { ISurveyErrorOwner } from "base-interfaces";
1491
- import { LocalizableString } from "localizablestring";
1489
+ declare module "packages/survey-core/src/survey-error" {
1490
+ import { ISurveyErrorOwner } from "packages/survey-core/src/base-interfaces";
1491
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
1492
1492
  export class SurveyError {
1493
1493
  text: string;
1494
1494
  protected errorOwner: ISurveyErrorOwner;
@@ -1506,7 +1506,7 @@ declare module "survey-error" {
1506
1506
  updateText(): void;
1507
1507
  }
1508
1508
  }
1509
- declare module "defaultCss/defaultV2Css" {
1509
+ declare module "packages/survey-core/src/defaultCss/defaultV2Css" {
1510
1510
  export var surveyCss: any;
1511
1511
  export var defaultV2Css: {
1512
1512
  root: string;
@@ -1581,6 +1581,7 @@ declare module "defaultCss/defaultV2Css" {
1581
1581
  footer: string;
1582
1582
  requiredText: string;
1583
1583
  header: string;
1584
+ headerHidden: string;
1584
1585
  collapsed: string;
1585
1586
  expanded: string;
1586
1587
  expandable: string;
@@ -2362,10 +2363,10 @@ declare module "defaultCss/defaultV2Css" {
2362
2363
  };
2363
2364
  export const defaultV2ThemeName = "defaultV2";
2364
2365
  }
2365
- declare module "trigger" {
2366
- import { HashTable } from "helpers";
2367
- import { Base } from "base";
2368
- import { ISurvey } from "base-interfaces";
2366
+ declare module "packages/survey-core/src/trigger" {
2367
+ import { HashTable } from "packages/survey-core/src/helpers";
2368
+ import { Base } from "packages/survey-core/src/base";
2369
+ import { ISurvey } from "packages/survey-core/src/base-interfaces";
2369
2370
  /**
2370
2371
  * A base class for all triggers.
2371
2372
  * A trigger calls a method when the expression change the result: from false to true or from true to false.
@@ -2519,10 +2520,10 @@ declare module "trigger" {
2519
2520
  protected getUsedVariables(): string[];
2520
2521
  }
2521
2522
  }
2522
- declare module "calculatedValue" {
2523
- import { HashTable } from "helpers";
2524
- import { Base } from "base";
2525
- import { ISurvey, ISurveyData } from "base-interfaces";
2523
+ declare module "packages/survey-core/src/calculatedValue" {
2524
+ import { HashTable } from "packages/survey-core/src/helpers";
2525
+ import { Base } from "packages/survey-core/src/base";
2526
+ import { ISurvey, ISurveyData } from "packages/survey-core/src/base-interfaces";
2526
2527
  /**
2527
2528
  * The calculated value is a way to define the variable in Survey Creator.
2528
2529
  * It has two main properties: name and expression. Based on expression the value read-only property is automatically calculated.
@@ -2570,8 +2571,8 @@ declare module "calculatedValue" {
2570
2571
  private ensureExpression;
2571
2572
  }
2572
2573
  }
2573
- declare module "panel-layout-column" {
2574
- import { Base } from "base";
2574
+ declare module "packages/survey-core/src/panel-layout-column" {
2575
+ import { Base } from "packages/survey-core/src/base";
2575
2576
  export class PanelLayoutColumnModel extends Base {
2576
2577
  width: number;
2577
2578
  effectiveWidth: number;
@@ -2581,10 +2582,10 @@ declare module "panel-layout-column" {
2581
2582
  isEmpty(): boolean;
2582
2583
  }
2583
2584
  }
2584
- declare module "textPreProcessor" {
2585
- import { Question } from "question";
2586
- import { PanelModel } from "panel";
2587
- import { ISurvey, ITextProcessor } from "base-interfaces";
2585
+ declare module "packages/survey-core/src/textPreProcessor" {
2586
+ import { Question } from "packages/survey-core/src/question";
2587
+ import { PanelModel } from "packages/survey-core/src/panel";
2588
+ import { ISurvey, ITextProcessor } from "packages/survey-core/src/base-interfaces";
2588
2589
  export class TextPreProcessorItem {
2589
2590
  start: number;
2590
2591
  end: number;
@@ -2626,9 +2627,9 @@ declare module "textPreProcessor" {
2626
2627
  private processTextCore;
2627
2628
  }
2628
2629
  }
2629
- declare module "error" {
2630
- import { SurveyError } from "survey-error";
2631
- import { ISurveyErrorOwner } from "base-interfaces";
2630
+ declare module "packages/survey-core/src/error" {
2631
+ import { SurveyError } from "packages/survey-core/src/survey-error";
2632
+ import { ISurveyErrorOwner } from "packages/survey-core/src/base-interfaces";
2632
2633
  export class AnswerRequiredError extends SurveyError {
2633
2634
  text: string;
2634
2635
  constructor(text?: string, errorOwner?: ISurveyErrorOwner);
@@ -2709,17 +2710,17 @@ declare module "error" {
2709
2710
  getErrorType(): string;
2710
2711
  }
2711
2712
  }
2712
- declare module "question_custom" {
2713
- import { Question, IConditionObject } from "question";
2714
- import { JsonObjectProperty } from "jsonobject";
2715
- import { Base } from "base";
2716
- import { ISurveyImpl, ISurveyData, ITextProcessor, IPanel, IElement, IQuestion, IProgressInfo } from "base-interfaces";
2717
- import { SurveyElement } from "survey-element";
2718
- import { PanelModel } from "panel";
2719
- import { PanelLayoutColumnModel } from "panel-layout-column";
2720
- import { HashTable } from "helpers";
2721
- import { ItemValue } from "itemvalue";
2722
- import { SurveyError } from "survey-error";
2713
+ declare module "packages/survey-core/src/question_custom" {
2714
+ import { Question, IConditionObject } from "packages/survey-core/src/question";
2715
+ import { JsonObjectProperty } from "packages/survey-core/src/jsonobject";
2716
+ import { Base } from "packages/survey-core/src/base";
2717
+ import { ISurveyImpl, ISurveyData, ITextProcessor, IPanel, IElement, IQuestion, IProgressInfo } from "packages/survey-core/src/base-interfaces";
2718
+ import { SurveyElement } from "packages/survey-core/src/survey-element";
2719
+ import { PanelModel } from "packages/survey-core/src/panel";
2720
+ import { PanelLayoutColumnModel } from "packages/survey-core/src/panel-layout-column";
2721
+ import { HashTable } from "packages/survey-core/src/helpers";
2722
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
2723
+ import { SurveyError } from "packages/survey-core/src/survey-error";
2723
2724
  /**
2724
2725
  * An interface used to create custom question types.
2725
2726
  *
@@ -3161,9 +3162,9 @@ declare module "question_custom" {
3161
3162
  private setAfterRenderCallbacks;
3162
3163
  }
3163
3164
  }
3164
- declare module "questionfactory" {
3165
- import { Question } from "question";
3166
- import { IElement } from "base-interfaces";
3165
+ declare module "packages/survey-core/src/questionfactory" {
3166
+ import { Question } from "packages/survey-core/src/question";
3167
+ import { IElement } from "packages/survey-core/src/base-interfaces";
3167
3168
  export class QuestionFactory {
3168
3169
  static Instance: QuestionFactory;
3169
3170
  static get DefaultChoices(): string[];
@@ -3190,8 +3191,8 @@ declare module "questionfactory" {
3190
3191
  private getAllTypesCore;
3191
3192
  }
3192
3193
  }
3193
- declare module "drag-drop-helper-v1" {
3194
- import { IElement, ISurveyElement } from "base-interfaces";
3194
+ declare module "packages/survey-core/src/drag-drop-helper-v1" {
3195
+ import { IElement, ISurveyElement } from "packages/survey-core/src/base-interfaces";
3195
3196
  export class DragDropInfo {
3196
3197
  source: IElement;
3197
3198
  target: IElement;
@@ -3202,10 +3203,10 @@ declare module "drag-drop-helper-v1" {
3202
3203
  isEdge: boolean;
3203
3204
  }
3204
3205
  }
3205
- declare module "drag-drop-panel-helper-v1" {
3206
- import { IElement, ISurveyElement } from "base-interfaces";
3207
- import { DragDropInfo } from "drag-drop-helper-v1";
3208
- import { PanelModelBase, QuestionRowModel } from "panel";
3206
+ declare module "packages/survey-core/src/drag-drop-panel-helper-v1" {
3207
+ import { IElement, ISurveyElement } from "packages/survey-core/src/base-interfaces";
3208
+ import { DragDropInfo } from "packages/survey-core/src/drag-drop-helper-v1";
3209
+ import { PanelModelBase, QuestionRowModel } from "packages/survey-core/src/panel";
3209
3210
  export class DragDropPanelHelperV1 {
3210
3211
  private panel;
3211
3212
  constructor(panel: PanelModelBase);
@@ -3220,20 +3221,20 @@ declare module "drag-drop-panel-helper-v1" {
3220
3221
  private dragDropAddTargetToEmptyPanelCore;
3221
3222
  }
3222
3223
  }
3223
- declare module "panel" {
3224
- import { HashTable } from "helpers";
3225
- import { Base } from "base";
3226
- import { ISurveyImpl, IPage, IPanel, IConditionRunner, IElement, ISurveyElement, IQuestion, ISurveyErrorOwner, ITitleOwner, IProgressInfo, ISurvey, IFindElement } from "base-interfaces";
3227
- import { DragTypeOverMeEnum, SurveyElement } from "survey-element";
3228
- import { Question } from "question";
3229
- import { LocalizableString } from "localizablestring";
3230
- import { findScrollableParent } from "utils/utils";
3231
- import { SurveyError } from "survey-error";
3232
- import { IAction } from "actions/action";
3233
- import { ActionContainer } from "actions/container";
3234
- import { DragDropInfo } from "drag-drop-helper-v1";
3235
- import { AnimationGroup } from "utils/animation";
3236
- import { PanelLayoutColumnModel } from "panel-layout-column";
3224
+ declare module "packages/survey-core/src/panel" {
3225
+ import { HashTable } from "packages/survey-core/src/helpers";
3226
+ import { Base } from "packages/survey-core/src/base";
3227
+ import { ISurveyImpl, IPage, IPanel, IConditionRunner, IElement, ISurveyElement, IQuestion, ISurveyErrorOwner, ITitleOwner, IProgressInfo, ISurvey, IFindElement } from "packages/survey-core/src/base-interfaces";
3228
+ import { DragTypeOverMeEnum, SurveyElement } from "packages/survey-core/src/survey-element";
3229
+ import { Question } from "packages/survey-core/src/question";
3230
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
3231
+ import { findScrollableParent } from "packages/survey-core/src/utils/utils";
3232
+ import { SurveyError } from "packages/survey-core/src/survey-error";
3233
+ import { IAction } from "packages/survey-core/src/actions/action";
3234
+ import { ActionContainer } from "packages/survey-core/src/actions/container";
3235
+ import { DragDropInfo } from "packages/survey-core/src/drag-drop-helper-v1";
3236
+ import { AnimationGroup } from "packages/survey-core/src/utils/animation";
3237
+ import { PanelLayoutColumnModel } from "packages/survey-core/src/panel-layout-column";
3237
3238
  export class QuestionRowModel extends Base {
3238
3239
  panel: PanelModelBase;
3239
3240
  private static rowCounter;
@@ -3704,6 +3705,7 @@ declare module "panel" {
3704
3705
  private calcHasTextInTitle;
3705
3706
  onSurveyLoad(): void;
3706
3707
  protected onSetData(): void;
3708
+ get cssHeader(): string;
3707
3709
  get isPanel(): boolean;
3708
3710
  /**
3709
3711
  * Returns a page to which the panel belongs and allows you to move this panel to a different page.
@@ -3815,7 +3817,7 @@ declare module "panel" {
3815
3817
  getContainerCss(): string;
3816
3818
  }
3817
3819
  }
3818
- declare module "utils/camera" {
3820
+ declare module "packages/survey-core/src/utils/camera" {
3819
3821
  export class Camera {
3820
3822
  static mediaDevicesCallback: ((callback: (devices: Array<MediaDeviceInfo>) => void) => void) | undefined;
3821
3823
  static clear(): void;
@@ -3844,15 +3846,15 @@ declare module "utils/camera" {
3844
3846
  private setVideoInputs;
3845
3847
  }
3846
3848
  }
3847
- declare module "question_file" {
3848
- import { IPlainDataOptions } from "base-interfaces";
3849
- import { IQuestionPlainData, Question } from "question";
3850
- import { EventBase } from "base";
3851
- import { SurveyError } from "survey-error";
3852
- import { ActionContainer } from "actions/container";
3853
- import { Action } from "actions/action";
3854
- import { Camera } from "utils/camera";
3855
- import { LocalizableString } from "localizablestring";
3849
+ declare module "packages/survey-core/src/question_file" {
3850
+ import { IPlainDataOptions } from "packages/survey-core/src/base-interfaces";
3851
+ import { IQuestionPlainData, Question } from "packages/survey-core/src/question";
3852
+ import { EventBase } from "packages/survey-core/src/base";
3853
+ import { SurveyError } from "packages/survey-core/src/survey-error";
3854
+ import { ActionContainer } from "packages/survey-core/src/actions/container";
3855
+ import { Action } from "packages/survey-core/src/actions/action";
3856
+ import { Camera } from "packages/survey-core/src/utils/camera";
3857
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
3856
3858
  export function dataUrl2File(dataUrl: string, fileName: string, type: string): File;
3857
3859
  /**
3858
3860
  * A base class for question types that support file upload: `QuestionFileModel` and `QuestionSignaturePadModel`.
@@ -4127,11 +4129,11 @@ declare module "question_file" {
4127
4129
  dispose(): void;
4128
4130
  }
4129
4131
  }
4130
- declare module "choicesRestful" {
4131
- import { Base } from "base";
4132
- import { ITextProcessor, IQuestion, ISurvey } from "base-interfaces";
4133
- import { ItemValue } from "itemvalue";
4134
- import { SurveyError } from "survey-error";
4132
+ declare module "packages/survey-core/src/choicesRestful" {
4133
+ import { Base } from "packages/survey-core/src/base";
4134
+ import { ITextProcessor, IQuestion, ISurvey } from "packages/survey-core/src/base-interfaces";
4135
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
4136
+ import { SurveyError } from "packages/survey-core/src/survey-error";
4135
4137
  /**
4136
4138
  * Configures access to a RESTful service that returns choices for [Checkbox](https://surveyjs.io/Examples/Library?id=questiontype-checkbox), [Dropdown](https://surveyjs.io/Examples/Library?id=questiontype-dropdown), [Radiogroup](https://surveyjs.io/Examples/Library?id=questiontype-radiogroup), and other multiple-choice question types.
4137
4139
  *
@@ -4305,14 +4307,14 @@ declare module "choicesRestful" {
4305
4307
  }) => void);
4306
4308
  }
4307
4309
  }
4308
- declare module "question_baseselect" {
4309
- import { SurveyError } from "survey-error";
4310
- import { ISurveyImpl, ISurvey, ISurveyData, IPlainDataOptions } from "base-interfaces";
4311
- import { IQuestionPlainData, Question } from "question";
4312
- import { ItemValue } from "itemvalue";
4313
- import { ChoicesRestful } from "choicesRestful";
4314
- import { LocalizableString } from "localizablestring";
4315
- import { HashTable } from "helpers";
4310
+ declare module "packages/survey-core/src/question_baseselect" {
4311
+ import { SurveyError } from "packages/survey-core/src/survey-error";
4312
+ import { ISurveyImpl, ISurvey, ISurveyData, IPlainDataOptions } from "packages/survey-core/src/base-interfaces";
4313
+ import { IQuestionPlainData, Question } from "packages/survey-core/src/question";
4314
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
4315
+ import { ChoicesRestful } from "packages/survey-core/src/choicesRestful";
4316
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
4317
+ import { HashTable } from "packages/survey-core/src/helpers";
4316
4318
  /**
4317
4319
  * A base class for multiple-choice question types ([Checkboxes](https://surveyjs.io/form-library/documentation/questioncheckboxmodel), [Dropdown](https://surveyjs.io/form-library/documentation/questiondropdownmodel), [Radio Button Group](https://surveyjs.io/form-library/documentation/questionradiogroupmodel), etc.).
4318
4320
  */
@@ -4794,6 +4796,7 @@ declare module "question_baseselect" {
4794
4796
  get hasHeadItems(): boolean;
4795
4797
  get hasFootItems(): boolean;
4796
4798
  get columns(): any[];
4799
+ getItemsColumnKey(itemsColumn: Array<ItemValue>): string;
4797
4800
  get hasColumns(): boolean;
4798
4801
  get rowLayout(): boolean;
4799
4802
  get blockedRow(): boolean;
@@ -4847,11 +4850,11 @@ declare module "question_baseselect" {
4847
4850
  protected getSearchableItemValueKeys(keys: Array<string>): void;
4848
4851
  }
4849
4852
  }
4850
- declare module "validator" {
4851
- import { Base } from "base";
4852
- import { ISurveyErrorOwner, ISurvey } from "base-interfaces";
4853
- import { SurveyError } from "survey-error";
4854
- import { LocalizableString } from "localizablestring";
4853
+ declare module "packages/survey-core/src/validator" {
4854
+ import { Base } from "packages/survey-core/src/base";
4855
+ import { ISurveyErrorOwner, ISurvey } from "packages/survey-core/src/base-interfaces";
4856
+ import { SurveyError } from "packages/survey-core/src/survey-error";
4857
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
4855
4858
  export class ValidatorResult {
4856
4859
  value: any;
4857
4860
  error: SurveyError;
@@ -5008,10 +5011,10 @@ declare module "validator" {
5008
5011
  set expression(val: string);
5009
5012
  }
5010
5013
  }
5011
- declare module "question_expression" {
5012
- import { HashTable } from "helpers";
5013
- import { Question } from "question";
5014
- import { LocalizableString } from "localizablestring";
5014
+ declare module "packages/survey-core/src/question_expression" {
5015
+ import { HashTable } from "packages/survey-core/src/helpers";
5016
+ import { Question } from "packages/survey-core/src/question";
5017
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
5015
5018
  /**
5016
5019
  * A class that describes the Expression question type. It is a read-only question type that calculates a value based on a specified expression.
5017
5020
  *
@@ -5120,14 +5123,14 @@ declare module "question_expression" {
5120
5123
  }
5121
5124
  export function getCurrecyCodes(): Array<string>;
5122
5125
  }
5123
- declare module "question_matrixdropdowncolumn" {
5124
- import { Question } from "question";
5125
- import { Base } from "base";
5126
- import { ISurvey, IWrapperObject } from "base-interfaces";
5127
- import { ItemValue } from "itemvalue";
5128
- import { ILocalizableOwner, LocalizableString } from "localizablestring";
5129
- import { SurveyValidator } from "validator";
5130
- import { MatrixDropdownRowModelBase } from "question_matrixdropdownbase";
5126
+ declare module "packages/survey-core/src/question_matrixdropdowncolumn" {
5127
+ import { Question } from "packages/survey-core/src/question";
5128
+ import { Base } from "packages/survey-core/src/base";
5129
+ import { ISurvey, IWrapperObject } from "packages/survey-core/src/base-interfaces";
5130
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
5131
+ import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
5132
+ import { SurveyValidator } from "packages/survey-core/src/validator";
5133
+ import { MatrixDropdownRowModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
5131
5134
  export interface IMatrixColumnOwner extends ILocalizableOwner {
5132
5135
  getRequiredText(): string;
5133
5136
  hasChoices(): boolean;
@@ -5466,7 +5469,7 @@ declare module "question_matrixdropdowncolumn" {
5466
5469
  private addProperties;
5467
5470
  }
5468
5471
  }
5469
- declare module "dragdrop/engine" {
5472
+ declare module "packages/survey-core/src/dragdrop/engine" {
5470
5473
  export interface IDragDropEngine {
5471
5474
  dragInit(event: PointerEvent, draggedElement: any, parentElement: any, draggedElementNode: HTMLElement): void;
5472
5475
  dragOver(event: PointerEvent): void;
@@ -5474,7 +5477,7 @@ declare module "dragdrop/engine" {
5474
5477
  clear(): void;
5475
5478
  }
5476
5479
  }
5477
- declare module "utils/devices" {
5480
+ declare module "packages/survey-core/src/utils/devices" {
5478
5481
  export const IsMobile: boolean;
5479
5482
  export var mouseInfo: {
5480
5483
  readonly isTouch: boolean;
@@ -5488,13 +5491,14 @@ declare module "utils/devices" {
5488
5491
  } | null) | null;
5489
5492
  export function detectMouseSupport(matchMedia: MatchMediaMethod): boolean;
5490
5493
  }
5491
- declare module "dragdrop/dom-adapter" {
5492
- import { IDragDropEngine } from "dragdrop/engine";
5494
+ declare module "packages/survey-core/src/dragdrop/dom-adapter" {
5495
+ import { IDragDropEngine } from "packages/survey-core/src/dragdrop/engine";
5493
5496
  export interface IDragDropDOMAdapter {
5494
5497
  startDrag(event: PointerEvent, draggedElement: any, parentElement: any, draggedElementNode: HTMLElement, preventSaveTargetNode: boolean): void;
5495
5498
  draggedElementShortcut: HTMLElement;
5496
5499
  rootContainer: HTMLElement;
5497
5500
  documentOrShadowRoot: Document | ShadowRoot;
5501
+ rootElement?: HTMLElement;
5498
5502
  }
5499
5503
  export class DragDropDOMAdapter implements IDragDropDOMAdapter {
5500
5504
  private dd;
@@ -5512,7 +5516,7 @@ declare module "dragdrop/dom-adapter" {
5512
5516
  private scrollIntervalId;
5513
5517
  constructor(dd: IDragDropEngine, longTap?: boolean, fitToContainer?: boolean);
5514
5518
  get documentOrShadowRoot(): Document | ShadowRoot;
5515
- private get rootElement();
5519
+ get rootElement(): any;
5516
5520
  private stopLongTapIfMoveEnough;
5517
5521
  private get isMicroMovement();
5518
5522
  private stopLongTap;
@@ -5538,12 +5542,12 @@ declare module "dragdrop/dom-adapter" {
5538
5542
  private insertNodeToParentAtIndex;
5539
5543
  }
5540
5544
  }
5541
- declare module "dragdrop/core" {
5542
- import { SurveyModel } from "survey";
5543
- import { EventBase } from "base";
5544
- import { IShortcutText, ISurvey } from "base-interfaces";
5545
- import { IDragDropEngine } from "dragdrop/engine";
5546
- import { IDragDropDOMAdapter } from "dragdrop/dom-adapter";
5545
+ declare module "packages/survey-core/src/dragdrop/core" {
5546
+ import { SurveyModel } from "packages/survey-core/src/survey";
5547
+ import { EventBase } from "packages/survey-core/src/base";
5548
+ import { IShortcutText, ISurvey } from "packages/survey-core/src/base-interfaces";
5549
+ import { IDragDropEngine } from "packages/survey-core/src/dragdrop/engine";
5550
+ import { IDragDropDOMAdapter } from "packages/survey-core/src/dragdrop/dom-adapter";
5547
5551
  export abstract class DragDropCore<T> implements IDragDropEngine {
5548
5552
  private surveyValue?;
5549
5553
  private creator?;
@@ -5595,10 +5599,10 @@ declare module "dragdrop/core" {
5595
5599
  clear(): void;
5596
5600
  }
5597
5601
  }
5598
- declare module "dragdrop/matrix-rows" {
5599
- import { MatrixDropdownRowModelBase } from "question_matrixdropdownbase";
5600
- import { QuestionMatrixDynamicModel, MatrixDynamicRowModel } from "question_matrixdynamic";
5601
- import { DragDropCore } from "dragdrop/core";
5602
+ declare module "packages/survey-core/src/dragdrop/matrix-rows" {
5603
+ import { MatrixDropdownRowModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
5604
+ import { QuestionMatrixDynamicModel, MatrixDynamicRowModel } from "packages/survey-core/src/question_matrixdynamic";
5605
+ import { DragDropCore } from "packages/survey-core/src/dragdrop/core";
5602
5606
  export class DragDropMatrixRows extends DragDropCore<QuestionMatrixDynamicModel> {
5603
5607
  protected get draggedElementType(): string;
5604
5608
  protected restoreUserSelectValue: string;
@@ -5615,15 +5619,15 @@ declare module "dragdrop/matrix-rows" {
5615
5619
  clear(): void;
5616
5620
  }
5617
5621
  }
5618
- declare module "question_matrixdropdownrendered" {
5619
- import { Question } from "question";
5620
- import { Base } from "base";
5621
- import { ItemValue } from "itemvalue";
5622
- import { LocalizableString } from "localizablestring";
5623
- import { PanelModel } from "panel";
5624
- import { IAction } from "actions/action";
5625
- import { MatrixDropdownColumn } from "question_matrixdropdowncolumn";
5626
- import { MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase } from "question_matrixdropdownbase";
5622
+ declare module "packages/survey-core/src/question_matrixdropdownrendered" {
5623
+ import { Question } from "packages/survey-core/src/question";
5624
+ import { Base } from "packages/survey-core/src/base";
5625
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
5626
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
5627
+ import { PanelModel } from "packages/survey-core/src/panel";
5628
+ import { IAction } from "packages/survey-core/src/actions/action";
5629
+ import { MatrixDropdownColumn } from "packages/survey-core/src/question_matrixdropdowncolumn";
5630
+ import { MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
5627
5631
  export class QuestionMatrixDropdownRenderedCell {
5628
5632
  private static counter;
5629
5633
  private idValue;
@@ -5785,7 +5789,7 @@ declare module "question_matrixdropdownrendered" {
5785
5789
  private createEmptyCell;
5786
5790
  }
5787
5791
  }
5788
- declare module "utils/dragOrClickHelper" {
5792
+ declare module "packages/survey-core/src/utils/dragOrClickHelper" {
5789
5793
  export class DragOrClickHelper {
5790
5794
  private dragHandler;
5791
5795
  private pointerDownEvent;
@@ -5803,12 +5807,12 @@ declare module "utils/dragOrClickHelper" {
5803
5807
  private clearListeners;
5804
5808
  }
5805
5809
  }
5806
- declare module "question_matrixdynamic" {
5807
- import { QuestionMatrixDropdownModelBase, MatrixDropdownRowModelBase, IMatrixDropdownData } from "question_matrixdropdownbase";
5808
- import { SurveyError } from "survey-error";
5809
- import { DragDropMatrixRows } from "dragdrop/matrix-rows";
5810
- import { IShortcutText, ISurveyImpl, IProgressInfo } from "base-interfaces";
5811
- import { QuestionMatrixDropdownRenderedTable } from "question_matrixdropdownrendered";
5810
+ declare module "packages/survey-core/src/question_matrixdynamic" {
5811
+ import { QuestionMatrixDropdownModelBase, MatrixDropdownRowModelBase, IMatrixDropdownData } from "packages/survey-core/src/question_matrixdropdownbase";
5812
+ import { SurveyError } from "packages/survey-core/src/survey-error";
5813
+ import { DragDropMatrixRows } from "packages/survey-core/src/dragdrop/matrix-rows";
5814
+ import { IShortcutText, ISurveyImpl, IProgressInfo } from "packages/survey-core/src/base-interfaces";
5815
+ import { QuestionMatrixDropdownRenderedTable } from "packages/survey-core/src/question_matrixdropdownrendered";
5812
5816
  export class MatrixDynamicRowModel extends MatrixDropdownRowModelBase implements IShortcutText {
5813
5817
  index: number;
5814
5818
  private dragOrClickHelper;
@@ -6005,14 +6009,14 @@ declare module "question_matrixdynamic" {
6005
6009
  */
6006
6010
  get confirmDeleteText(): string;
6007
6011
  set confirmDeleteText(val: string);
6008
- get locConfirmDeleteText(): import("localizablestring").LocalizableString;
6012
+ get locConfirmDeleteText(): import("src/entries/core-wo-model").LocalizableString;
6009
6013
  /**
6010
6014
  * A caption for the Add Row button.
6011
6015
  * @see addRowLocation
6012
6016
  */
6013
6017
  get addRowText(): string;
6014
6018
  set addRowText(val: string);
6015
- get locAddRowText(): import("localizablestring").LocalizableString;
6019
+ get locAddRowText(): import("src/entries/core-wo-model").LocalizableString;
6016
6020
  private get defaultAddRowText();
6017
6021
  /**
6018
6022
  * Specifies the location of the Add Row button.
@@ -6043,14 +6047,14 @@ declare module "question_matrixdynamic" {
6043
6047
  */
6044
6048
  get removeRowText(): string;
6045
6049
  set removeRowText(val: string);
6046
- get locRemoveRowText(): import("localizablestring").LocalizableString;
6050
+ get locRemoveRowText(): import("src/entries/core-wo-model").LocalizableString;
6047
6051
  /**
6048
6052
  * A message displayed when the matrix does not contain any rows. Applies only if `hideColumnsIfEmpty` is enabled.
6049
6053
  * @see hideColumnsIfEmpty
6050
6054
  */
6051
6055
  get emptyRowsText(): string;
6052
6056
  set emptyRowsText(val: string);
6053
- get locEmptyRowsText(): import("localizablestring").LocalizableString;
6057
+ get locEmptyRowsText(): import("src/entries/core-wo-model").LocalizableString;
6054
6058
  protected getDisplayValueCore(keysAsText: boolean, value: any): any;
6055
6059
  protected getConditionObjectRowName(index: number): string;
6056
6060
  protected getConditionObjectsRowIndeces(): Array<number>;
@@ -6075,8 +6079,8 @@ declare module "question_matrixdynamic" {
6075
6079
  getRootCss(): string;
6076
6080
  }
6077
6081
  }
6078
- declare module "themes" {
6079
- import { HorizontalAlignment, VerticalAlignment } from "base-interfaces";
6082
+ declare module "packages/survey-core/src/themes" {
6083
+ import { HorizontalAlignment, VerticalAlignment } from "packages/survey-core/src/base-interfaces";
6080
6084
  export type ImageFit = "auto" | "contain" | "cover";
6081
6085
  export type ImageAttachment = "fixed" | "scroll";
6082
6086
  /**
@@ -6293,19 +6297,19 @@ declare module "themes" {
6293
6297
  descriptionPositionY: VerticalAlignment;
6294
6298
  }
6295
6299
  }
6296
- declare module "question_paneldynamic" {
6297
- import { HashTable } from "helpers";
6298
- import { IElement, IQuestion, IPanel, ISurveyData, ISurvey, ISurveyImpl, ITextProcessor, IProgressInfo, IPlainDataOptions } from "base-interfaces";
6299
- import { LocalizableString } from "localizablestring";
6300
- import { Base } from "base";
6301
- import { Question, IConditionObject, IQuestionPlainData } from "question";
6302
- import { PanelModel } from "panel";
6303
- import { SurveyError } from "survey-error";
6304
- import { ActionContainer } from "actions/container";
6305
- import { IAction } from "actions/action";
6306
- import { AdaptiveActionContainer } from "actions/adaptive-container";
6307
- import { ITheme } from "themes";
6308
- import { AnimationProperty, IAnimationGroupConsumer } from "utils/animation";
6300
+ declare module "packages/survey-core/src/question_paneldynamic" {
6301
+ import { HashTable } from "packages/survey-core/src/helpers";
6302
+ import { IElement, IQuestion, IPanel, ISurveyData, ISurvey, ISurveyImpl, ITextProcessor, IProgressInfo, IPlainDataOptions } from "packages/survey-core/src/base-interfaces";
6303
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
6304
+ import { Base } from "packages/survey-core/src/base";
6305
+ import { Question, IConditionObject, IQuestionPlainData } from "packages/survey-core/src/question";
6306
+ import { PanelModel } from "packages/survey-core/src/panel";
6307
+ import { SurveyError } from "packages/survey-core/src/survey-error";
6308
+ import { ActionContainer } from "packages/survey-core/src/actions/container";
6309
+ import { IAction } from "packages/survey-core/src/actions/action";
6310
+ import { AdaptiveActionContainer } from "packages/survey-core/src/actions/adaptive-container";
6311
+ import { ITheme } from "packages/survey-core/src/themes";
6312
+ import { AnimationProperty, IAnimationGroupConsumer } from "packages/survey-core/src/utils/animation";
6309
6313
  export interface IQuestionPanelDynamicData {
6310
6314
  getItemIndex(item: ISurveyData): number;
6311
6315
  getVisibleItemIndex(item: ISurveyData): number;
@@ -6963,9 +6967,9 @@ declare module "question_paneldynamic" {
6963
6967
  protected calcCssClasses(css: any): any;
6964
6968
  }
6965
6969
  }
6966
- declare module "question_signaturepad" {
6967
- import { ITheme } from "themes";
6968
- import { QuestionFileModelBase } from "question_file";
6970
+ declare module "packages/survey-core/src/question_signaturepad" {
6971
+ import { ITheme } from "packages/survey-core/src/themes";
6972
+ import { QuestionFileModelBase } from "packages/survey-core/src/question_file";
6969
6973
  /**
6970
6974
  * A class that describes the Signature question type.
6971
6975
  *
@@ -7105,31 +7109,31 @@ declare module "question_signaturepad" {
7105
7109
  * A placeholder text for the signature area in read-only or preview mode. Applies when the [`showPlaceholder`](#showPlaceholder) property is `true`.
7106
7110
  */
7107
7111
  placeholderReadOnly: string;
7108
- onBlur: (event: any) => void;
7112
+ protected onBlurCore(event: any): void;
7109
7113
  protected uploadResultItemToValue(r: any): any;
7110
7114
  protected setValueFromResult(arg: any): void;
7111
7115
  clearValue(keepComment?: boolean): void;
7112
7116
  endLoadingFromJson(): void;
7113
7117
  }
7114
7118
  }
7115
- declare module "survey-events-api" {
7116
- import { IAction } from "actions/action";
7117
- import { Base } from "base";
7118
- import { IElement, IPanel, ISurveyElement, IValueItemCustomPropValues } from "base-interfaces";
7119
- import { ItemValue } from "itemvalue";
7120
- import { PageModel } from "page";
7121
- import { PanelModel, PanelModelBase } from "panel";
7122
- import { PopupModel } from "popup";
7123
- import { Question } from "question";
7124
- import { QuestionFileModel } from "question_file";
7125
- import { MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase } from "question_matrixdropdownbase";
7126
- import { MatrixDropdownColumn } from "question_matrixdropdowncolumn";
7127
- import { QuestionMatrixDynamicModel } from "question_matrixdynamic";
7128
- import { QuestionPanelDynamicModel } from "question_paneldynamic";
7129
- import { QuestionSignaturePadModel } from "question_signaturepad";
7130
- import { SurveyModel } from "survey";
7131
- import { SurveyError } from "survey-error";
7132
- import { Trigger } from "trigger";
7119
+ declare module "packages/survey-core/src/survey-events-api" {
7120
+ import { IAction } from "packages/survey-core/src/actions/action";
7121
+ import { Base } from "packages/survey-core/src/base";
7122
+ import { IElement, IPanel, ISurveyElement, IValueItemCustomPropValues } from "packages/survey-core/src/base-interfaces";
7123
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
7124
+ import { PageModel } from "packages/survey-core/src/page";
7125
+ import { PanelModel, PanelModelBase } from "packages/survey-core/src/panel";
7126
+ import { PopupModel } from "packages/survey-core/src/popup";
7127
+ import { Question } from "packages/survey-core/src/question";
7128
+ import { QuestionFileModel } from "packages/survey-core/src/question_file";
7129
+ import { MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
7130
+ import { MatrixDropdownColumn } from "packages/survey-core/src/question_matrixdropdowncolumn";
7131
+ import { QuestionMatrixDynamicModel } from "packages/survey-core/src/question_matrixdynamic";
7132
+ import { QuestionPanelDynamicModel } from "packages/survey-core/src/question_paneldynamic";
7133
+ import { QuestionSignaturePadModel } from "packages/survey-core/src/question_signaturepad";
7134
+ import { SurveyModel } from "packages/survey-core/src/survey";
7135
+ import { SurveyError } from "packages/survey-core/src/survey-error";
7136
+ import { Trigger } from "packages/survey-core/src/trigger";
7133
7137
  export interface QuestionEventMixin {
7134
7138
  /**
7135
7139
  * A Question instance for which the event is raised.
@@ -8190,9 +8194,9 @@ declare module "survey-events-api" {
8190
8194
  data: any;
8191
8195
  }
8192
8196
  }
8193
- declare module "drag-drop-page-helper-v1" {
8194
- import { IElement, ISurveyElement } from "base-interfaces";
8195
- import { PageModel } from "page";
8197
+ declare module "packages/survey-core/src/drag-drop-page-helper-v1" {
8198
+ import { IElement, ISurveyElement } from "packages/survey-core/src/base-interfaces";
8199
+ import { PageModel } from "packages/survey-core/src/page";
8196
8200
  export class DragDropPageHelperV1 {
8197
8201
  private page;
8198
8202
  constructor(page: PageModel);
@@ -8211,10 +8215,10 @@ declare module "drag-drop-page-helper-v1" {
8211
8215
  private dragDropIsSameElement;
8212
8216
  }
8213
8217
  }
8214
- declare module "page" {
8215
- import { IPage, IPanel, IElement, ISurveyElement } from "base-interfaces";
8216
- import { PanelModelBase } from "panel";
8217
- import { LocalizableString } from "localizablestring";
8218
+ declare module "packages/survey-core/src/page" {
8219
+ import { IPage, IPanel, IElement, ISurveyElement } from "packages/survey-core/src/base-interfaces";
8220
+ import { PanelModelBase } from "packages/survey-core/src/panel";
8221
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
8218
8222
  /**
8219
8223
  * The `PageModel` object describes a survey page and contains properties and methods that allow you to control the page and access its elements (panels and questions).
8220
8224
  *
@@ -8320,7 +8324,7 @@ declare module "page" {
8320
8324
  ensureRowsVisibility(): void;
8321
8325
  }
8322
8326
  }
8323
- declare module "dxSurveyService" {
8327
+ declare module "packages/survey-core/src/dxSurveyService" {
8324
8328
  /**
8325
8329
  * The class contains methods to work with api.surveyjs.io service.
8326
8330
  */
@@ -8340,70 +8344,8 @@ declare module "dxSurveyService" {
8340
8344
  private get serviceUrl();
8341
8345
  }
8342
8346
  }
8343
- declare module "stylesmanager" {
8344
- import { Logger } from "utils/utils";
8345
- export const modernThemeColors: {
8346
- [key: string]: string;
8347
- };
8348
- export const defaultThemeColors: {
8349
- [key: string]: string;
8350
- };
8351
- export const orangeThemeColors: {
8352
- [key: string]: string;
8353
- };
8354
- export const darkblueThemeColors: {
8355
- [key: string]: string;
8356
- };
8357
- export const darkroseThemeColors: {
8358
- [key: string]: string;
8359
- };
8360
- export const stoneThemeColors: {
8361
- [key: string]: string;
8362
- };
8363
- export const winterThemeColors: {
8364
- [key: string]: string;
8365
- };
8366
- export const winterstoneThemeColors: {
8367
- [key: string]: string;
8368
- };
8369
- export class StylesManager {
8370
- private static SurveyJSStylesSheetId;
8371
- static Logger: Logger;
8372
- static Styles: {
8373
- [key: string]: string;
8374
- };
8375
- static Media: {
8376
- [key: string]: {
8377
- media: string;
8378
- style: string;
8379
- };
8380
- };
8381
- static ThemeColors: {
8382
- [key: string]: {
8383
- [key: string]: string;
8384
- };
8385
- };
8386
- static ThemeCss: {
8387
- [key: string]: {
8388
- [key: string]: string;
8389
- };
8390
- };
8391
- static ThemeSelector: {
8392
- [key: string]: string;
8393
- };
8394
- static autoApplyTheme(): void;
8395
- static getAvailableThemes(): Array<any>;
8396
- static getIncludedThemeCss(): Array<any>;
8397
- static findSheet(styleSheetId: string): any;
8398
- static createSheet(styleSheetId: string): any;
8399
- static applyTheme(themeName?: string, themeSelector?: string): void;
8400
- static Enabled: boolean;
8401
- constructor();
8402
- static insertStylesRulesIntoDocument(): any;
8403
- }
8404
- }
8405
- declare module "surveytimer" {
8406
- import { EventBase } from "base";
8347
+ declare module "packages/survey-core/src/surveytimer" {
8348
+ import { EventBase } from "packages/survey-core/src/base";
8407
8349
  export var surveyTimerFunctions: {
8408
8350
  setTimeout: (func: () => any) => number;
8409
8351
  clearTimeout: (timerId: number) => void;
@@ -8425,11 +8367,11 @@ declare module "surveytimer" {
8425
8367
  doTimer(): void;
8426
8368
  }
8427
8369
  }
8428
- declare module "surveyTimerModel" {
8429
- import { ISurvey } from "base-interfaces";
8430
- import { Base, EventBase } from "base";
8431
- import { PageModel } from "page";
8432
- import { SurveyModel } from "survey";
8370
+ declare module "packages/survey-core/src/surveyTimerModel" {
8371
+ import { ISurvey } from "packages/survey-core/src/base-interfaces";
8372
+ import { Base, EventBase } from "packages/survey-core/src/base";
8373
+ import { PageModel } from "packages/survey-core/src/page";
8374
+ import { SurveyModel } from "packages/survey-core/src/survey";
8433
8375
  export interface ISurveyTimerText {
8434
8376
  timerInfoText: string;
8435
8377
  timerInfo: {
@@ -8474,10 +8416,10 @@ declare module "surveyTimerModel" {
8474
8416
  get majorTextCss(): string;
8475
8417
  }
8476
8418
  }
8477
- declare module "expressionItems" {
8478
- import { Base } from "base";
8479
- import { ISurvey } from "base-interfaces";
8480
- import { ILocalizableOwner, LocalizableString } from "localizablestring";
8419
+ declare module "packages/survey-core/src/expressionItems" {
8420
+ import { Base } from "packages/survey-core/src/base";
8421
+ import { ISurvey } from "packages/survey-core/src/base-interfaces";
8422
+ import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
8481
8423
  /**
8482
8424
  * Base class for HtmlConditionItem and UrlConditionItem classes.
8483
8425
  */
@@ -8533,10 +8475,10 @@ declare module "expressionItems" {
8533
8475
  get locUrl(): LocalizableString;
8534
8476
  }
8535
8477
  }
8536
- declare module "notifier" {
8537
- import { Base } from "base";
8538
- import { ActionContainer } from "actions/container";
8539
- import { IAction } from "actions/action";
8478
+ declare module "packages/survey-core/src/notifier" {
8479
+ import { Base } from "packages/survey-core/src/base";
8480
+ import { ActionContainer } from "packages/survey-core/src/actions/container";
8481
+ import { IAction } from "packages/survey-core/src/actions/action";
8540
8482
  interface INotifierCssClasses {
8541
8483
  root: string;
8542
8484
  rootWithButtons: string;
@@ -8564,12 +8506,12 @@ declare module "notifier" {
8564
8506
  addAction(action: IAction, notificationType: string): void;
8565
8507
  }
8566
8508
  }
8567
- declare module "question_textbase" {
8568
- import { Question } from "question";
8569
- import { CssClassBuilder } from "utils/cssClassBuilder";
8570
- import { LocalizableString } from "localizablestring";
8571
- import { Base } from "base";
8572
- import { ISurveyImpl } from "base-interfaces";
8509
+ declare module "packages/survey-core/src/question_textbase" {
8510
+ import { Question } from "packages/survey-core/src/question";
8511
+ import { CssClassBuilder } from "packages/survey-core/src/utils/cssClassBuilder";
8512
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
8513
+ import { Base } from "packages/survey-core/src/base";
8514
+ import { ISurveyImpl } from "packages/survey-core/src/base-interfaces";
8573
8515
  export class CharacterCounter extends Base {
8574
8516
  remainingCharacterCounter: string;
8575
8517
  updateRemainingCharacterCounter(newValue: string, maxLength: number): void;
@@ -8619,6 +8561,7 @@ declare module "question_textbase" {
8619
8561
  onSurveyLoad(): void;
8620
8562
  localeChanged(): void;
8621
8563
  setSurveyImpl(value: ISurveyImpl, isLight?: boolean): void;
8564
+ protected supportEmptyValidation(): boolean;
8622
8565
  protected calcRenderedPlaceholder(): void;
8623
8566
  protected hasPlaceholder(): boolean;
8624
8567
  protected setNewValue(newValue: any): void;
@@ -8631,7 +8574,7 @@ declare module "question_textbase" {
8631
8574
  onKeyDownPreprocess: (event: any) => void;
8632
8575
  }
8633
8576
  }
8634
- declare module "mask/mask_utils" {
8577
+ declare module "packages/survey-core/src/mask/mask_utils" {
8635
8578
  export var numberDefinition: RegExp;
8636
8579
  export interface IMaskedInputResult {
8637
8580
  value: string;
@@ -8652,10 +8595,10 @@ declare module "mask/mask_utils" {
8652
8595
  getTextAlignment(): "left" | "right" | "auto";
8653
8596
  }
8654
8597
  }
8655
- declare module "mask/mask_base" {
8656
- import { Base } from "base";
8657
- import { ISurvey } from "base-interfaces";
8658
- import { IInputMask, IMaskedInputResult, ITextInputParams } from "mask/mask_utils";
8598
+ declare module "packages/survey-core/src/mask/mask_base" {
8599
+ import { Base } from "packages/survey-core/src/base";
8600
+ import { ISurvey } from "packages/survey-core/src/base-interfaces";
8601
+ import { IInputMask, IMaskedInputResult, ITextInputParams } from "packages/survey-core/src/mask/mask_utils";
8659
8602
  /**
8660
8603
  * A base class for classes that implement input masks:
8661
8604
  *
@@ -8682,9 +8625,9 @@ declare module "mask/mask_base" {
8682
8625
  getTextAlignment(): "left" | "right" | "auto";
8683
8626
  }
8684
8627
  }
8685
- declare module "mask/input_element_adapter" {
8686
- import { InputMaskBase } from "mask/mask_base";
8687
- import { ITextInputParams } from "mask/mask_utils";
8628
+ declare module "packages/survey-core/src/mask/input_element_adapter" {
8629
+ import { InputMaskBase } from "packages/survey-core/src/mask/mask_base";
8630
+ import { ITextInputParams } from "packages/survey-core/src/mask/mask_utils";
8688
8631
  export class InputElementAdapter {
8689
8632
  private inputMaskInstance;
8690
8633
  private inputElement;
@@ -8700,14 +8643,14 @@ declare module "mask/input_element_adapter" {
8700
8643
  dispose(): void;
8701
8644
  }
8702
8645
  }
8703
- declare module "question_text" {
8704
- import { LocalizableString, LocalizableStrings } from "localizablestring";
8705
- import { HashTable } from "helpers";
8706
- import { SurveyError } from "survey-error";
8707
- import { QuestionTextBase } from "question_textbase";
8708
- import { CssClassBuilder } from "utils/cssClassBuilder";
8709
- import { InputMaskBase } from "mask/mask_base";
8710
- import { IInputMask } from "mask/mask_utils";
8646
+ declare module "packages/survey-core/src/question_text" {
8647
+ import { LocalizableString, LocalizableStrings } from "packages/survey-core/src/localizablestring";
8648
+ import { HashTable } from "packages/survey-core/src/helpers";
8649
+ import { SurveyError } from "packages/survey-core/src/survey-error";
8650
+ import { QuestionTextBase } from "packages/survey-core/src/question_textbase";
8651
+ import { CssClassBuilder } from "packages/survey-core/src/utils/cssClassBuilder";
8652
+ import { InputMaskBase } from "packages/survey-core/src/mask/mask_base";
8653
+ import { IInputMask } from "packages/survey-core/src/mask/mask_utils";
8711
8654
  /**
8712
8655
  * A class that describes the Single-Line Input question type.
8713
8656
  *
@@ -8886,24 +8829,24 @@ declare module "question_text" {
8886
8829
  private updateDateValidationMessage;
8887
8830
  onKeyDown: (event: any) => void;
8888
8831
  onChange: (event: any) => void;
8889
- onBlur: (event: any) => void;
8890
- onFocus: (event: any) => void;
8832
+ protected onBlurCore(event: any): void;
8833
+ protected onFocusCore(event: any): void;
8891
8834
  afterRenderQuestionElement(el: HTMLElement): void;
8892
8835
  beforeDestroyQuestionElement(el: HTMLElement): void;
8893
8836
  }
8894
8837
  export function isMinMaxType(obj: any): boolean;
8895
8838
  }
8896
- declare module "question_multipletext" {
8897
- import { Base } from "base";
8898
- import { ISurveyData, ISurveyImpl, ISurvey, IPanel, IElement, IQuestion, ITextProcessor, IProgressInfo } from "base-interfaces";
8899
- import { SurveyValidator, IValidatorOwner } from "validator";
8900
- import { Question, IConditionObject } from "question";
8901
- import { QuestionTextModel } from "question_text";
8902
- import { SurveyError } from "survey-error";
8903
- import { ILocalizableOwner, LocalizableString } from "localizablestring";
8904
- import { HashTable } from "helpers";
8905
- import { InputMaskBase } from "mask/mask_base";
8906
- import { PanelLayoutColumnModel } from "panel-layout-column";
8839
+ declare module "packages/survey-core/src/question_multipletext" {
8840
+ import { Base } from "packages/survey-core/src/base";
8841
+ import { ISurveyData, ISurveyImpl, ISurvey, IPanel, IElement, IQuestion, ITextProcessor, IProgressInfo } from "packages/survey-core/src/base-interfaces";
8842
+ import { SurveyValidator, IValidatorOwner } from "packages/survey-core/src/validator";
8843
+ import { Question, IConditionObject } from "packages/survey-core/src/question";
8844
+ import { QuestionTextModel } from "packages/survey-core/src/question_text";
8845
+ import { SurveyError } from "packages/survey-core/src/survey-error";
8846
+ import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
8847
+ import { HashTable } from "packages/survey-core/src/helpers";
8848
+ import { InputMaskBase } from "packages/survey-core/src/mask/mask_base";
8849
+ import { PanelLayoutColumnModel } from "packages/survey-core/src/panel-layout-column";
8907
8850
  export interface IMultipleTextData extends ILocalizableOwner, IPanel {
8908
8851
  getSurvey(): ISurvey;
8909
8852
  getTextProcessor(): ITextProcessor;
@@ -9239,11 +9182,11 @@ declare module "question_multipletext" {
9239
9182
  protected getClassName(): string;
9240
9183
  }
9241
9184
  }
9242
- declare module "header" {
9243
- import { Base } from "base";
9244
- import { HorizontalAlignment, VerticalAlignment } from "base-interfaces";
9245
- import { SurveyModel } from "survey";
9246
- import { ITheme } from "themes";
9185
+ declare module "packages/survey-core/src/header" {
9186
+ import { Base } from "packages/survey-core/src/base";
9187
+ import { HorizontalAlignment, VerticalAlignment } from "packages/survey-core/src/base-interfaces";
9188
+ import { SurveyModel } from "packages/survey-core/src/survey";
9189
+ import { ITheme } from "packages/survey-core/src/themes";
9247
9190
  export class CoverCell {
9248
9191
  private cover;
9249
9192
  private positionX;
@@ -9325,8 +9268,8 @@ declare module "header" {
9325
9268
  get hasBackground(): boolean;
9326
9269
  }
9327
9270
  }
9328
- declare module "surveyTaskManager" {
9329
- import { Base } from "base";
9271
+ declare module "packages/survey-core/src/surveyTaskManager" {
9272
+ import { Base } from "packages/survey-core/src/base";
9330
9273
  class SurveyTaskModel {
9331
9274
  type: string;
9332
9275
  private timestamp;
@@ -9342,10 +9285,10 @@ declare module "surveyTaskManager" {
9342
9285
  private taskFinished;
9343
9286
  }
9344
9287
  }
9345
- declare module "progress-buttons" {
9346
- import { Base, EventBase } from "base";
9347
- import { PageModel } from "page";
9348
- import { SurveyModel } from "survey";
9288
+ declare module "packages/survey-core/src/progress-buttons" {
9289
+ import { Base, EventBase } from "packages/survey-core/src/base";
9290
+ import { PageModel } from "packages/survey-core/src/page";
9291
+ import { SurveyModel } from "packages/survey-core/src/survey";
9349
9292
  export class ProgressButtons extends Base {
9350
9293
  survey: SurveyModel;
9351
9294
  constructor(survey: SurveyModel);
@@ -9388,12 +9331,12 @@ declare module "progress-buttons" {
9388
9331
  dispose(): void;
9389
9332
  }
9390
9333
  }
9391
- declare module "surveyToc" {
9392
- import { Action } from "actions/action";
9393
- import { ListModel } from "list";
9394
- import { PanelModelBase } from "panel";
9395
- import { PopupModel } from "popup";
9396
- import { SurveyModel } from "survey";
9334
+ declare module "packages/survey-core/src/surveyToc" {
9335
+ import { Action } from "packages/survey-core/src/actions/action";
9336
+ import { ListModel } from "packages/survey-core/src/list";
9337
+ import { PanelModelBase } from "packages/survey-core/src/panel";
9338
+ import { PopupModel } from "packages/survey-core/src/popup";
9339
+ import { SurveyModel } from "packages/survey-core/src/survey";
9397
9340
  export function tryFocusPage(survey: SurveyModel, panel: PanelModelBase): boolean;
9398
9341
  export function createTOCListModel(survey: SurveyModel, onAction?: () => void): ListModel<Action>;
9399
9342
  export function getTocRootCss(survey: SurveyModel, isMobile?: boolean): string;
@@ -9413,36 +9356,36 @@ declare module "surveyToc" {
9413
9356
  dispose(): void;
9414
9357
  }
9415
9358
  }
9416
- declare module "survey" {
9417
- import { JsonError } from "jsonobject";
9418
- import { Base, EventBase } from "base";
9419
- import { ISurvey, ISurveyData, ISurveyImpl, ITextProcessor, IQuestion, IPanel, IElement, IPage, ISurveyErrorOwner, ISurveyElement, IProgressInfo, IFindElement, ISurveyLayoutElement, IPlainDataOptions, LayoutElementContainer, IValueItemCustomPropValues, ILoadFromJSONOptions, IDropdownMenuOptions } from "base-interfaces";
9420
- import { SurveyElementCore } from "survey-element";
9421
- import { ISurveyTriggerOwner, SurveyTrigger, Trigger } from "trigger";
9422
- import { CalculatedValue } from "calculatedValue";
9423
- import { PageModel } from "page";
9424
- import { dxSurveyService } from "dxSurveyService";
9425
- import { LocalizableString } from "localizablestring";
9426
- import { SurveyTimerModel, ISurveyTimerText } from "surveyTimerModel";
9427
- import { IQuestionPlainData, Question } from "question";
9428
- import { QuestionSelectBase } from "question_baseselect";
9429
- import { ItemValue } from "itemvalue";
9430
- import { PanelModel, QuestionRowModel } from "panel";
9431
- import { HtmlConditionItem, UrlConditionItem } from "expressionItems";
9432
- import { SurveyError } from "survey-error";
9433
- import { IAction, Action } from "actions/action";
9434
- import { ActionContainer } from "actions/container";
9435
- import { QuestionPanelDynamicModel } from "question_paneldynamic";
9436
- import { Notifier } from "notifier";
9437
- import { TriggerExecutedEvent, CompletingEvent, CompleteEvent, ShowingPreviewEvent, NavigateToUrlEvent, CurrentPageChangingEvent, CurrentPageChangedEvent, ValueChangingEvent, ValueChangedEvent, VariableChangedEvent, QuestionVisibleChangedEvent, PageVisibleChangedEvent, PanelVisibleChangedEvent, QuestionCreatedEvent, QuestionAddedEvent, QuestionRemovedEvent, PanelAddedEvent, PanelRemovedEvent, PageAddedEvent, ValidateQuestionEvent, SettingQuestionErrorsEvent, ValidatePanelEvent, ErrorCustomTextEvent, ValidatedErrorsOnCurrentPageEvent, ProcessHtmlEvent, GetQuestionTitleEvent, GetTitleTagNameEvent, GetQuestionNoEvent, ProgressTextEvent, TextMarkdownEvent, TextRenderAsEvent, SendResultEvent, GetResultEvent, UploadFilesEvent, DownloadFileEvent, ClearFilesEvent, LoadChoicesFromServerEvent, ProcessTextValueEvent, UpdateQuestionCssClassesEvent, UpdatePanelCssClassesEvent, UpdatePageCssClassesEvent, UpdateChoiceItemCssEvent, AfterRenderSurveyEvent, AfterRenderHeaderEvent, AfterRenderPageEvent, AfterRenderQuestionEvent, AfterRenderQuestionInputEvent, AfterRenderPanelEvent, FocusInQuestionEvent, FocusInPanelEvent, ShowingChoiceItemEvent, ChoicesLazyLoadEvent, GetChoiceDisplayValueEvent, MatrixRowAddedEvent, MatrixBeforeRowAddedEvent, MatrixRowRemovingEvent, MatrixRowRemovedEvent, MatrixAllowRemoveRowEvent, MatrixDetailPanelVisibleChangedEvent, MatrixCellCreatingEvent, MatrixCellCreatedEvent, MatrixAfterCellRenderEvent, MatrixCellValueChangedEvent, MatrixCellValueChangingEvent, MatrixCellValidateEvent, DynamicPanelModifiedEvent, DynamicPanelRemovingEvent, TimerPanelInfoTextEvent, DynamicPanelItemValueChangedEvent, DynamicPanelGetTabTitleEvent, DynamicPanelCurrentIndexChangedEvent, IsAnswerCorrectEvent, DragDropAllowEvent, ScrollingElementToTopEvent, GetQuestionTitleActionsEvent, GetPanelTitleActionsEvent, GetPageTitleActionsEvent, GetPanelFooterActionsEvent, GetMatrixRowActionsEvent, ElementContentVisibilityChangedEvent, GetExpressionDisplayValueEvent, ServerValidateQuestionsEvent, MultipleTextItemAddedEvent, MatrixColumnAddedEvent, GetQuestionDisplayValueEvent, PopupVisibleChangedEvent, ChoicesSearchEvent, OpenFileChooserEvent, ElementWrapperComponentNameEvent, ElementWrapperComponentDataEvent, OpenDropdownMenuEvent } from "survey-events-api";
9438
- import { QuestionMatrixDropdownModelBase } from "question_matrixdropdownbase";
9439
- import { QuestionMatrixDynamicModel } from "question_matrixdynamic";
9440
- import { QuestionFileModel } from "question_file";
9441
- import { QuestionMultipleTextModel } from "question_multipletext";
9442
- import { ITheme, ImageFit, ImageAttachment } from "themes";
9443
- import { PopupModel } from "popup";
9444
- import { Cover } from "header";
9445
- import { QuestionSignaturePadModel } from "question_signaturepad";
9359
+ declare module "packages/survey-core/src/survey" {
9360
+ import { JsonError } from "packages/survey-core/src/jsonobject";
9361
+ import { Base, EventBase } from "packages/survey-core/src/base";
9362
+ import { ISurvey, ISurveyData, ISurveyImpl, ITextProcessor, IQuestion, IPanel, IElement, IPage, ISurveyErrorOwner, ISurveyElement, IProgressInfo, IFindElement, ISurveyLayoutElement, IPlainDataOptions, LayoutElementContainer, IValueItemCustomPropValues, ILoadFromJSONOptions, IDropdownMenuOptions } from "packages/survey-core/src/base-interfaces";
9363
+ import { SurveyElementCore } from "packages/survey-core/src/survey-element";
9364
+ import { ISurveyTriggerOwner, SurveyTrigger, Trigger } from "packages/survey-core/src/trigger";
9365
+ import { CalculatedValue } from "packages/survey-core/src/calculatedValue";
9366
+ import { PageModel } from "packages/survey-core/src/page";
9367
+ import { dxSurveyService } from "packages/survey-core/src/dxSurveyService";
9368
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
9369
+ import { SurveyTimerModel, ISurveyTimerText } from "packages/survey-core/src/surveyTimerModel";
9370
+ import { IQuestionPlainData, Question } from "packages/survey-core/src/question";
9371
+ import { QuestionSelectBase } from "packages/survey-core/src/question_baseselect";
9372
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
9373
+ import { PanelModel, QuestionRowModel } from "packages/survey-core/src/panel";
9374
+ import { HtmlConditionItem, UrlConditionItem } from "packages/survey-core/src/expressionItems";
9375
+ import { SurveyError } from "packages/survey-core/src/survey-error";
9376
+ import { IAction, Action } from "packages/survey-core/src/actions/action";
9377
+ import { ActionContainer } from "packages/survey-core/src/actions/container";
9378
+ import { QuestionPanelDynamicModel } from "packages/survey-core/src/question_paneldynamic";
9379
+ import { Notifier } from "packages/survey-core/src/notifier";
9380
+ import { TriggerExecutedEvent, CompletingEvent, CompleteEvent, ShowingPreviewEvent, NavigateToUrlEvent, CurrentPageChangingEvent, CurrentPageChangedEvent, ValueChangingEvent, ValueChangedEvent, VariableChangedEvent, QuestionVisibleChangedEvent, PageVisibleChangedEvent, PanelVisibleChangedEvent, QuestionCreatedEvent, QuestionAddedEvent, QuestionRemovedEvent, PanelAddedEvent, PanelRemovedEvent, PageAddedEvent, ValidateQuestionEvent, SettingQuestionErrorsEvent, ValidatePanelEvent, ErrorCustomTextEvent, ValidatedErrorsOnCurrentPageEvent, ProcessHtmlEvent, GetQuestionTitleEvent, GetTitleTagNameEvent, GetQuestionNoEvent, ProgressTextEvent, TextMarkdownEvent, TextRenderAsEvent, SendResultEvent, GetResultEvent, UploadFilesEvent, DownloadFileEvent, ClearFilesEvent, LoadChoicesFromServerEvent, ProcessTextValueEvent, UpdateQuestionCssClassesEvent, UpdatePanelCssClassesEvent, UpdatePageCssClassesEvent, UpdateChoiceItemCssEvent, AfterRenderSurveyEvent, AfterRenderHeaderEvent, AfterRenderPageEvent, AfterRenderQuestionEvent, AfterRenderQuestionInputEvent, AfterRenderPanelEvent, FocusInQuestionEvent, FocusInPanelEvent, ShowingChoiceItemEvent, ChoicesLazyLoadEvent, GetChoiceDisplayValueEvent, MatrixRowAddedEvent, MatrixBeforeRowAddedEvent, MatrixRowRemovingEvent, MatrixRowRemovedEvent, MatrixAllowRemoveRowEvent, MatrixDetailPanelVisibleChangedEvent, MatrixCellCreatingEvent, MatrixCellCreatedEvent, MatrixAfterCellRenderEvent, MatrixCellValueChangedEvent, MatrixCellValueChangingEvent, MatrixCellValidateEvent, DynamicPanelModifiedEvent, DynamicPanelRemovingEvent, TimerPanelInfoTextEvent, DynamicPanelItemValueChangedEvent, DynamicPanelGetTabTitleEvent, DynamicPanelCurrentIndexChangedEvent, IsAnswerCorrectEvent, DragDropAllowEvent, ScrollingElementToTopEvent, GetQuestionTitleActionsEvent, GetPanelTitleActionsEvent, GetPageTitleActionsEvent, GetPanelFooterActionsEvent, GetMatrixRowActionsEvent, ElementContentVisibilityChangedEvent, GetExpressionDisplayValueEvent, ServerValidateQuestionsEvent, MultipleTextItemAddedEvent, MatrixColumnAddedEvent, GetQuestionDisplayValueEvent, PopupVisibleChangedEvent, ChoicesSearchEvent, OpenFileChooserEvent, ElementWrapperComponentNameEvent, ElementWrapperComponentDataEvent, OpenDropdownMenuEvent } from "packages/survey-core/src/survey-events-api";
9381
+ import { QuestionMatrixDropdownModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
9382
+ import { QuestionMatrixDynamicModel } from "packages/survey-core/src/question_matrixdynamic";
9383
+ import { QuestionFileModel } from "packages/survey-core/src/question_file";
9384
+ import { QuestionMultipleTextModel } from "packages/survey-core/src/question_multipletext";
9385
+ import { ITheme, ImageFit, ImageAttachment } from "packages/survey-core/src/themes";
9386
+ import { PopupModel } from "packages/survey-core/src/popup";
9387
+ import { Cover } from "packages/survey-core/src/header";
9388
+ import { QuestionSignaturePadModel } from "packages/survey-core/src/question_signaturepad";
9446
9389
  /**
9447
9390
  * The `SurveyModel` object contains properties and methods that allow you to control the survey and access its elements.
9448
9391
  *
@@ -9450,10 +9393,7 @@ declare module "survey" {
9450
9393
  */
9451
9394
  export class SurveyModel extends SurveyElementCore implements ISurvey, ISurveyData, ISurveyImpl, ISurveyTriggerOwner, ISurveyErrorOwner, ISurveyTimerText {
9452
9395
  static readonly TemplateRendererComponentName: string;
9453
- static get cssType(): string;
9454
- static set cssType(value: string);
9455
9396
  [index: string]: any;
9456
- private static stylesManager;
9457
9397
  static platform: string;
9458
9398
  get platformName(): string;
9459
9399
  notifier: Notifier;
@@ -10484,6 +10424,24 @@ declare module "survey" {
10484
10424
  */
10485
10425
  get checkErrorsMode(): string;
10486
10426
  set checkErrorsMode(val: string);
10427
+ /**
10428
+ * Specifies whether to trigger validation when a user focuses on an empty input field and then leaves it without making any changes. Applies only if [`checkErrorsMode`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#checkErrorsMode) is set to `"onValueChanged"`.
10429
+ *
10430
+ * Default value: `false`
10431
+ *
10432
+ * This property changes validation behavior for the following question types:
10433
+ *
10434
+ * - [Single-Line Input](https://surveyjs.io/form-library/documentation/api-reference/text-entry-question-model)
10435
+ * - [Long Text](https://surveyjs.io/form-library/documentation/api-reference/comment-field-model)
10436
+ * - [Dropdown](https://surveyjs.io/form-library/documentation/api-reference/dropdown-menu-model)
10437
+ * @see validationEnabled
10438
+ * @see validationAllowSwitchPages
10439
+ * @see validationAllowComplete
10440
+ * @see validate
10441
+ */
10442
+ get validateVisitedEmptyFields(): boolean;
10443
+ set validateVisitedEmptyFields(val: boolean);
10444
+ getValidateVisitedEmptyFields(): boolean;
10487
10445
  /**
10488
10446
  * Specifies whether to increase the height of [Long Text](https://surveyjs.io/form-library/examples/add-open-ended-question-to-a-form/) questions and other text areas to accommodate multi-line text content.
10489
10447
  *
@@ -11624,6 +11582,7 @@ declare module "survey" {
11624
11582
  matrixCellValueChanging(question: QuestionMatrixDropdownModelBase, options: MatrixCellValueChangingEvent): void;
11625
11583
  get isValidateOnValueChanging(): boolean;
11626
11584
  get isValidateOnValueChanged(): boolean;
11585
+ private get isValidateOnValueChange();
11627
11586
  private get isValidateOnComplete();
11628
11587
  matrixCellValidate(question: QuestionMatrixDropdownModelBase, options: MatrixCellValidateEvent): SurveyError;
11629
11588
  dynamicPanelAdded(question: QuestionPanelDynamicModel, panelIndex?: number, panel?: PanelModel): void;
@@ -11920,6 +11879,7 @@ declare module "survey" {
11920
11879
  private updateNavigationBarCss;
11921
11880
  protected createNavigationBar(): ActionContainer;
11922
11881
  protected createNavigationActions(): Array<IAction>;
11882
+ protected onBeforeRunConstructor(): void;
11923
11883
  protected onBeforeCreating(): void;
11924
11884
  protected onCreating(): void;
11925
11885
  private getProcessedTextValue;
@@ -12304,14 +12264,14 @@ declare module "survey" {
12304
12264
  questionErrorComponent: string;
12305
12265
  }
12306
12266
  }
12307
- declare module "survey-element" {
12308
- import { Base } from "base";
12309
- import { IAction } from "actions/action";
12310
- import { AdaptiveActionContainer } from "actions/adaptive-container";
12311
- import { ISurveyElement, IPage, IPanel, IProgressInfo, ISurvey, ISurveyData, ISurveyImpl, ITextProcessor, ITitleOwner } from "base-interfaces";
12312
- import { SurveyError } from "survey-error";
12313
- import { ILocalizableOwner, LocalizableString } from "localizablestring";
12314
- import { ActionContainer } from "actions/container";
12267
+ declare module "packages/survey-core/src/survey-element" {
12268
+ import { Base } from "packages/survey-core/src/base";
12269
+ import { IAction } from "packages/survey-core/src/actions/action";
12270
+ import { AdaptiveActionContainer } from "packages/survey-core/src/actions/adaptive-container";
12271
+ import { ISurveyElement, IPage, IPanel, IProgressInfo, ISurvey, ISurveyData, ISurveyImpl, ITextProcessor, ITitleOwner } from "packages/survey-core/src/base-interfaces";
12272
+ import { SurveyError } from "packages/survey-core/src/survey-error";
12273
+ import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
12274
+ import { ActionContainer } from "packages/survey-core/src/actions/container";
12315
12275
  /**
12316
12276
  * A base class for the [`SurveyElement`](https://surveyjs.io/form-library/documentation/surveyelement) and [`SurveyModel`](https://surveyjs.io/form-library/documentation/surveymodel) classes.
12317
12277
  */
@@ -12736,9 +12696,9 @@ declare module "survey-element" {
12736
12696
  dispose(): void;
12737
12697
  }
12738
12698
  }
12739
- declare module "questionCustomWidgets" {
12740
- import { Event } from "base";
12741
- import { IQuestion } from "base-interfaces";
12699
+ declare module "packages/survey-core/src/questionCustomWidgets" {
12700
+ import { Event } from "packages/survey-core/src/base";
12701
+ import { IQuestion } from "packages/survey-core/src/base-interfaces";
12742
12702
  export class QuestionCustomWidget {
12743
12703
  name: string;
12744
12704
  widgetJson: any;
@@ -12784,8 +12744,8 @@ declare module "questionCustomWidgets" {
12784
12744
  getCustomWidget(question: IQuestion): QuestionCustomWidget;
12785
12745
  }
12786
12746
  }
12787
- declare module "rendererFactory" {
12788
- import { Question } from "question";
12747
+ declare module "packages/survey-core/src/rendererFactory" {
12748
+ import { Question } from "packages/survey-core/src/question";
12789
12749
  export class RendererFactory {
12790
12750
  static Instance: RendererFactory;
12791
12751
  private renderersHash;
@@ -12797,19 +12757,19 @@ declare module "rendererFactory" {
12797
12757
  clear(): void;
12798
12758
  }
12799
12759
  }
12800
- declare module "question" {
12801
- import { HashTable } from "helpers";
12802
- import { EventBase } from "base";
12803
- import { IElement, IQuestion, IPanel, IConditionRunner, ISurveyImpl, IPage, ITitleOwner, IProgressInfo, ISurvey, IPlainDataOptions, IDropdownMenuOptions } from "base-interfaces";
12804
- import { SurveyElement } from "survey-element";
12805
- import { SurveyValidator, IValidatorOwner } from "validator";
12806
- import { TextPreProcessorValue } from "textPreProcessor";
12807
- import { LocalizableString } from "localizablestring";
12808
- import { ExpressionRunner } from "conditions";
12809
- import { QuestionCustomWidget } from "questionCustomWidgets";
12810
- import { SurveyError } from "survey-error";
12811
- import { PopupModel } from "popup";
12812
- import { ITheme } from "themes";
12760
+ declare module "packages/survey-core/src/question" {
12761
+ import { HashTable } from "packages/survey-core/src/helpers";
12762
+ import { EventBase } from "packages/survey-core/src/base";
12763
+ import { IElement, IQuestion, IPanel, IConditionRunner, ISurveyImpl, IPage, ITitleOwner, IProgressInfo, ISurvey, IPlainDataOptions, IDropdownMenuOptions } from "packages/survey-core/src/base-interfaces";
12764
+ import { SurveyElement } from "packages/survey-core/src/survey-element";
12765
+ import { SurveyValidator, IValidatorOwner } from "packages/survey-core/src/validator";
12766
+ import { TextPreProcessorValue } from "packages/survey-core/src/textPreProcessor";
12767
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
12768
+ import { ExpressionRunner } from "packages/survey-core/src/conditions";
12769
+ import { QuestionCustomWidget } from "packages/survey-core/src/questionCustomWidgets";
12770
+ import { SurveyError } from "packages/survey-core/src/survey-error";
12771
+ import { PopupModel } from "packages/survey-core/src/popup";
12772
+ import { ITheme } from "packages/survey-core/src/themes";
12813
12773
  export interface IConditionObject {
12814
12774
  name: string;
12815
12775
  text: string;
@@ -13231,6 +13191,13 @@ declare module "question" {
13231
13191
  focus(onError?: boolean, scrollIfVisible?: boolean): void;
13232
13192
  private focuscore;
13233
13193
  focusInputElement(onError: boolean): void;
13194
+ private get isValidateVisitedEmptyFields();
13195
+ private isFocusEmpty;
13196
+ protected supportEmptyValidation(): boolean;
13197
+ onBlur(event: any): void;
13198
+ onFocus(event: any): void;
13199
+ protected onBlurCore(event: any): void;
13200
+ protected onFocusCore(event: any): void;
13234
13201
  expandAllParents(): void;
13235
13202
  private expandAllParentsCore;
13236
13203
  focusIn(): void;
@@ -13713,11 +13680,11 @@ declare module "question" {
13713
13680
  get a11y_input_ariaErrormessage(): string;
13714
13681
  }
13715
13682
  }
13716
- declare module "itemvalue" {
13717
- import { ILocalizableOwner, LocalizableString } from "localizablestring";
13718
- import { ConditionRunner } from "conditions";
13719
- import { IShortcutText, ISurvey } from "base-interfaces";
13720
- import { BaseAction } from "actions/action";
13683
+ declare module "packages/survey-core/src/itemvalue" {
13684
+ import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
13685
+ import { ConditionRunner } from "packages/survey-core/src/conditions";
13686
+ import { IShortcutText, ISurvey } from "packages/survey-core/src/base-interfaces";
13687
+ import { BaseAction } from "packages/survey-core/src/actions/action";
13721
13688
  /**
13722
13689
  * Array of ItemValue is used in checkbox, dropdown and radiogroup choices, matrix columns and rows.
13723
13690
  * It has two main properties: value and text. If text is empty, value is used for displaying.
@@ -13804,10 +13771,10 @@ declare module "itemvalue" {
13804
13771
  icon: string;
13805
13772
  }
13806
13773
  }
13807
- declare module "martixBase" {
13808
- import { HashTable } from "helpers";
13809
- import { ItemValue } from "itemvalue";
13810
- import { Question } from "question";
13774
+ declare module "packages/survey-core/src/martixBase" {
13775
+ import { HashTable } from "packages/survey-core/src/helpers";
13776
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
13777
+ import { Question } from "packages/survey-core/src/question";
13811
13778
  /**
13812
13779
  * A base class for all matrix question types.
13813
13780
  */
@@ -13926,18 +13893,18 @@ declare module "martixBase" {
13926
13893
  get isNewA11yStructure(): boolean;
13927
13894
  }
13928
13895
  }
13929
- declare module "question_matrixdropdownbase" {
13930
- import { QuestionMatrixBaseModel } from "martixBase";
13931
- import { Question, IConditionObject, IQuestionPlainData } from "question";
13932
- import { HashTable } from "helpers";
13933
- import { Base } from "base";
13934
- import { IElement, IQuestion, ISurveyData, ISurvey, ISurveyImpl, ITextProcessor, IProgressInfo, IPanel, IPlainDataOptions } from "base-interfaces";
13935
- import { ItemValue } from "itemvalue";
13936
- import { ILocalizableOwner, LocalizableString } from "localizablestring";
13937
- import { PanelModel } from "panel";
13938
- import { SurveyError } from "survey-error";
13939
- import { IMatrixColumnOwner, MatrixDropdownColumn } from "question_matrixdropdowncolumn";
13940
- import { QuestionMatrixDropdownRenderedCell, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedTable } from "question_matrixdropdownrendered";
13896
+ declare module "packages/survey-core/src/question_matrixdropdownbase" {
13897
+ import { QuestionMatrixBaseModel } from "packages/survey-core/src/martixBase";
13898
+ import { Question, IConditionObject, IQuestionPlainData } from "packages/survey-core/src/question";
13899
+ import { HashTable } from "packages/survey-core/src/helpers";
13900
+ import { Base } from "packages/survey-core/src/base";
13901
+ import { IElement, IQuestion, ISurveyData, ISurvey, ISurveyImpl, ITextProcessor, IProgressInfo, IPanel, IPlainDataOptions } from "packages/survey-core/src/base-interfaces";
13902
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
13903
+ import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
13904
+ import { PanelModel } from "packages/survey-core/src/panel";
13905
+ import { SurveyError } from "packages/survey-core/src/survey-error";
13906
+ import { IMatrixColumnOwner, MatrixDropdownColumn } from "packages/survey-core/src/question_matrixdropdowncolumn";
13907
+ import { QuestionMatrixDropdownRenderedCell, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedTable } from "packages/survey-core/src/question_matrixdropdownrendered";
13941
13908
  export interface IMatrixDropdownData {
13942
13909
  value: any;
13943
13910
  onRowChanged(row: MatrixDropdownRowModelBase, columnName: string, newRowValue: any, isDeletingValue: boolean): void;
@@ -14461,19 +14428,19 @@ declare module "question_matrixdropdownbase" {
14461
14428
  getRootCss(): string;
14462
14429
  }
14463
14430
  }
14464
- declare module "base-interfaces" {
14465
- import { ILocalizableOwner, LocalizableString } from "localizablestring";
14466
- import { HashTable } from "helpers";
14467
- import { MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase } from "question_matrixdropdownbase";
14468
- import { AdaptiveActionContainer } from "actions/adaptive-container";
14469
- import { SurveyError } from "survey-error";
14470
- import { Base } from "base";
14471
- import { IAction } from "actions/action";
14472
- import { PanelModel } from "panel";
14473
- import { PanelLayoutColumnModel } from "panel-layout-column";
14474
- import { QuestionPanelDynamicModel } from "question_paneldynamic";
14475
- import { DragDropAllowEvent } from "survey-events-api";
14476
- import { PopupModel } from "popup";
14431
+ declare module "packages/survey-core/src/base-interfaces" {
14432
+ import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
14433
+ import { HashTable } from "packages/survey-core/src/helpers";
14434
+ import { MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
14435
+ import { AdaptiveActionContainer } from "packages/survey-core/src/actions/adaptive-container";
14436
+ import { SurveyError } from "packages/survey-core/src/survey-error";
14437
+ import { Base } from "packages/survey-core/src/base";
14438
+ import { IAction } from "packages/survey-core/src/actions/action";
14439
+ import { PanelModel } from "packages/survey-core/src/panel";
14440
+ import { PanelLayoutColumnModel } from "packages/survey-core/src/panel-layout-column";
14441
+ import { QuestionPanelDynamicModel } from "packages/survey-core/src/question_paneldynamic";
14442
+ import { DragDropAllowEvent } from "packages/survey-core/src/survey-events-api";
14443
+ import { PopupModel } from "packages/survey-core/src/popup";
14477
14444
  export interface ISurveyData {
14478
14445
  getValue(name: string): any;
14479
14446
  setValue(name: string, newValue: any, locNotification: any, allowNotifyValueChanged?: boolean, questionName?: string): any;
@@ -14613,6 +14580,7 @@ declare module "base-interfaces" {
14613
14580
  matrixCellValueChanging(question: IQuestion, options: any): any;
14614
14581
  isValidateOnValueChanging: boolean;
14615
14582
  isValidateOnValueChanged: boolean;
14583
+ getValidateVisitedEmptyFields(): boolean;
14616
14584
  multipleTextItemAdded(question: IQuestion, item: any): void;
14617
14585
  matrixCellValidate(question: IQuestion, options: any): SurveyError;
14618
14586
  dynamicPanelAdded(question: IQuestion, panelIndex?: number, panel?: IPanel): void;
@@ -14803,9 +14771,9 @@ declare module "base-interfaces" {
14803
14771
  screenWidth: number;
14804
14772
  }
14805
14773
  }
14806
- declare module "jsonobject" {
14807
- import { Base } from "base";
14808
- import { ILoadFromJSONOptions, ISaveToJSONOptions } from "base-interfaces";
14774
+ declare module "packages/survey-core/src/jsonobject" {
14775
+ import { Base } from "packages/survey-core/src/base";
14776
+ import { ILoadFromJSONOptions, ISaveToJSONOptions } from "packages/survey-core/src/base-interfaces";
14809
14777
  export interface IPropertyDecoratorOptions<T = any> {
14810
14778
  defaultValue?: T;
14811
14779
  defaultSource?: string;
@@ -15175,8 +15143,8 @@ declare module "jsonobject" {
15175
15143
  */
15176
15144
  export var Serializer: JsonMetadata;
15177
15145
  }
15178
- declare module "localizablestring" {
15179
- import { EventBase } from "base";
15146
+ declare module "packages/survey-core/src/localizablestring" {
15147
+ import { EventBase } from "packages/survey-core/src/base";
15180
15148
  export interface ILocalizableOwner {
15181
15149
  getLocale(): string;
15182
15150
  getMarkdownHtml(text: string, name: string): string;
@@ -15301,13 +15269,13 @@ declare module "localizablestring" {
15301
15269
  private getValuesKeys;
15302
15270
  }
15303
15271
  }
15304
- declare module "base" {
15305
- import { ILocalizableOwner, LocalizableString } from "localizablestring";
15306
- import { HashTable } from "helpers";
15307
- import { JsonObjectProperty } from "jsonobject";
15308
- import { ItemValue } from "itemvalue";
15309
- import { IElement, IFindElement, IProgressInfo, ISurvey, ILoadFromJSONOptions, ISaveToJSONOptions } from "base-interfaces";
15310
- import { ExpressionRunner } from "conditions";
15272
+ declare module "packages/survey-core/src/base" {
15273
+ import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
15274
+ import { HashTable } from "packages/survey-core/src/helpers";
15275
+ import { JsonObjectProperty } from "packages/survey-core/src/jsonobject";
15276
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
15277
+ import { IElement, IFindElement, IProgressInfo, ISurvey, ILoadFromJSONOptions, ISaveToJSONOptions } from "packages/survey-core/src/base-interfaces";
15278
+ import { ExpressionRunner } from "packages/survey-core/src/conditions";
15311
15279
  export class Bindings {
15312
15280
  private obj;
15313
15281
  private properties;
@@ -15637,7 +15605,7 @@ declare module "base" {
15637
15605
  export class EventBase<Sender, Options = any> extends Event<(sender: Sender, options: Options) => any, Sender, Options> {
15638
15606
  }
15639
15607
  }
15640
- declare module "utils/popup" {
15608
+ declare module "packages/survey-core/src/utils/popup" {
15641
15609
  export type VerticalPosition = "top" | "bottom" | "middle";
15642
15610
  export type HorizontalPosition = "left" | "right" | "center";
15643
15611
  export type PositionMode = "flex" | "fixed";
@@ -15681,10 +15649,10 @@ declare module "utils/popup" {
15681
15649
  static calculatePointerTarget(targetRect: Rect, top: number, left: number, verticalPosition: VerticalPosition, horizontalPosition: HorizontalPosition, marginLeft?: number, marginRight?: number): INumberPosition;
15682
15650
  }
15683
15651
  }
15684
- declare module "popup" {
15685
- import { Base, EventBase } from "base";
15686
- import { IAction } from "actions/action";
15687
- import { VerticalPosition, HorizontalPosition, PositionMode } from "utils/popup";
15652
+ declare module "packages/survey-core/src/popup" {
15653
+ import { Base, EventBase } from "packages/survey-core/src/base";
15654
+ import { IAction } from "packages/survey-core/src/actions/action";
15655
+ import { VerticalPosition, HorizontalPosition, PositionMode } from "packages/survey-core/src/utils/popup";
15688
15656
  export interface IPopupOptionsBase {
15689
15657
  onHide?: () => void;
15690
15658
  onShow?: () => void;
@@ -15746,8 +15714,8 @@ declare module "popup" {
15746
15714
  }
15747
15715
  export function createDialogOptions(componentName: string, data: any, onApply: () => boolean, onCancel?: () => void, onHide?: () => void, onShow?: () => void, cssClass?: string, title?: string, displayMode?: "popup" | "overlay"): IDialogOptions;
15748
15716
  }
15749
- declare module "settings" {
15750
- import { IDialogOptions } from "popup";
15717
+ declare module "packages/survey-core/src/settings" {
15718
+ import { IDialogOptions } from "packages/survey-core/src/popup";
15751
15719
  export type ISurveyEnvironment = {
15752
15720
  root: Document | ShadowRoot;
15753
15721
  rootElement: HTMLElement | ShadowRoot;
@@ -16394,11 +16362,11 @@ declare module "settings" {
16394
16362
  parseNumber: (stringValue: any, numericValue: number) => number;
16395
16363
  };
16396
16364
  }
16397
- declare module "question_matrixdropdown" {
16398
- import { QuestionMatrixDropdownModelBase, MatrixDropdownRowModelBase, IMatrixDropdownData } from "question_matrixdropdownbase";
16399
- import { ItemValue } from "itemvalue";
16400
- import { LocalizableString } from "localizablestring";
16401
- import { IProgressInfo } from "base-interfaces";
16365
+ declare module "packages/survey-core/src/question_matrixdropdown" {
16366
+ import { QuestionMatrixDropdownModelBase, MatrixDropdownRowModelBase, IMatrixDropdownData } from "packages/survey-core/src/question_matrixdropdownbase";
16367
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
16368
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
16369
+ import { IProgressInfo } from "packages/survey-core/src/base-interfaces";
16402
16370
  export class MatrixDropdownRowModel extends MatrixDropdownRowModelBase {
16403
16371
  name: string;
16404
16372
  private item;
@@ -16449,11 +16417,11 @@ declare module "question_matrixdropdown" {
16449
16417
  protected updateProgressInfoByValues(res: IProgressInfo): void;
16450
16418
  }
16451
16419
  }
16452
- declare module "popup-dropdown-view-model" {
16453
- import { IPosition, Rect } from "utils/popup";
16454
- import { CssClassBuilder } from "utils/cssClassBuilder";
16455
- import { PopupModel } from "popup";
16456
- import { PopupBaseViewModel } from "popup-view-model";
16420
+ declare module "packages/survey-core/src/popup-dropdown-view-model" {
16421
+ import { IPosition, Rect } from "packages/survey-core/src/utils/popup";
16422
+ import { CssClassBuilder } from "packages/survey-core/src/utils/cssClassBuilder";
16423
+ import { PopupModel } from "packages/survey-core/src/popup";
16424
+ import { PopupBaseViewModel } from "packages/survey-core/src/popup-view-model";
16457
16425
  export function calculateIsTablet(windowWidth?: number, windowHeight?: number): boolean;
16458
16426
  export class PopupDropdownViewModel extends PopupBaseViewModel {
16459
16427
  targetElement?: HTMLElement;
@@ -16488,13 +16456,13 @@ declare module "popup-dropdown-view-model" {
16488
16456
  dispose(): void;
16489
16457
  }
16490
16458
  }
16491
- declare module "dropdownListModel" {
16492
- import { IAction } from "actions/action";
16493
- import { Base } from "base";
16494
- import { ItemValue } from "itemvalue";
16495
- import { ListModel } from "list";
16496
- import { PopupModel } from "popup";
16497
- import { Question } from "question";
16459
+ declare module "packages/survey-core/src/dropdownListModel" {
16460
+ import { IAction } from "packages/survey-core/src/actions/action";
16461
+ import { Base } from "packages/survey-core/src/base";
16462
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
16463
+ import { ListModel } from "packages/survey-core/src/list";
16464
+ import { PopupModel } from "packages/survey-core/src/popup";
16465
+ import { Question } from "packages/survey-core/src/question";
16498
16466
  export class DropdownListModel extends Base {
16499
16467
  protected question: Question;
16500
16468
  protected onSelectionChanged?: (item: IAction, ...params: any[]) => void;
@@ -16586,13 +16554,13 @@ declare module "dropdownListModel" {
16586
16554
  scrollToFocusedItem(): void;
16587
16555
  }
16588
16556
  }
16589
- declare module "question_dropdown" {
16590
- import { QuestionSelectBase } from "question_baseselect";
16591
- import { LocalizableString } from "localizablestring";
16592
- import { ItemValue } from "itemvalue";
16593
- import { PopupModel } from "popup";
16594
- import { EventBase } from "base";
16595
- import { DropdownListModel } from "dropdownListModel";
16557
+ declare module "packages/survey-core/src/question_dropdown" {
16558
+ import { QuestionSelectBase } from "packages/survey-core/src/question_baseselect";
16559
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
16560
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
16561
+ import { PopupModel } from "packages/survey-core/src/popup";
16562
+ import { EventBase } from "packages/survey-core/src/base";
16563
+ import { DropdownListModel } from "packages/survey-core/src/dropdownListModel";
16596
16564
  /**
16597
16565
  * A class that describes the Dropdown question type.
16598
16566
  *
@@ -16735,18 +16703,21 @@ declare module "question_dropdown" {
16735
16703
  afterRenderCore(el: any): void;
16736
16704
  onClick(e: any): void;
16737
16705
  onKeyUp(event: any): void;
16706
+ protected supportEmptyValidation(): boolean;
16707
+ protected onBlurCore(event: any): void;
16708
+ protected onFocusCore(event: any): void;
16738
16709
  dispose(): void;
16739
16710
  }
16740
16711
  }
16741
- declare module "question_matrix" {
16742
- import { HashTable } from "helpers";
16743
- import { ItemValue } from "itemvalue";
16744
- import { QuestionMatrixBaseModel } from "martixBase";
16745
- import { Base } from "base";
16746
- import { SurveyError } from "survey-error";
16747
- import { LocalizableString, ILocalizableOwner } from "localizablestring";
16748
- import { IConditionObject, IQuestionPlainData } from "question";
16749
- import { IPlainDataOptions } from "base-interfaces";
16712
+ declare module "packages/survey-core/src/question_matrix" {
16713
+ import { HashTable } from "packages/survey-core/src/helpers";
16714
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
16715
+ import { QuestionMatrixBaseModel } from "packages/survey-core/src/martixBase";
16716
+ import { Base } from "packages/survey-core/src/base";
16717
+ import { SurveyError } from "packages/survey-core/src/survey-error";
16718
+ import { LocalizableString, ILocalizableOwner } from "packages/survey-core/src/localizablestring";
16719
+ import { IConditionObject, IQuestionPlainData } from "packages/survey-core/src/question";
16720
+ import { IPlainDataOptions } from "packages/survey-core/src/base-interfaces";
16750
16721
  export interface IMatrixData {
16751
16722
  onMatrixRowChanged(row: MatrixRowModel): void;
16752
16723
  getCorrectedRowValue(value: any): any;
@@ -16912,11 +16883,11 @@ declare module "question_matrix" {
16912
16883
  getRowHeaderWrapperComponentData(cell: ItemValue): any;
16913
16884
  }
16914
16885
  }
16915
- declare module "flowpanel" {
16916
- import { IElement } from "base-interfaces";
16917
- import { PanelModel } from "panel";
16918
- import { LocalizableString } from "localizablestring";
16919
- import { Question } from "question";
16886
+ declare module "packages/survey-core/src/flowpanel" {
16887
+ import { IElement } from "packages/survey-core/src/base-interfaces";
16888
+ import { PanelModel } from "packages/survey-core/src/panel";
16889
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
16890
+ import { Question } from "packages/survey-core/src/question";
16920
16891
  /**
16921
16892
  * The flow panel object. It is a container with flow layout where you can mix questions with markdown text.
16922
16893
  *
@@ -16948,7 +16919,7 @@ declare module "flowpanel" {
16948
16919
  getElementContentText(element: IElement): string;
16949
16920
  }
16950
16921
  }
16951
- declare module "template-renderer" {
16922
+ declare module "packages/survey-core/src/template-renderer" {
16952
16923
  export interface SurveyTemplateRendererTemplateData {
16953
16924
  name: string;
16954
16925
  data: any;
@@ -16960,14 +16931,14 @@ declare module "template-renderer" {
16960
16931
  templateData: SurveyTemplateRendererTemplateData;
16961
16932
  }
16962
16933
  }
16963
- declare module "defaultTitle" {
16934
+ declare module "packages/survey-core/src/defaultTitle" {
16964
16935
  export class DefaultTitleModel {
16965
16936
  static getIconCss(cssClasses: any, isCollapsed: boolean): string;
16966
16937
  }
16967
16938
  }
16968
- declare module "questionnonvalue" {
16969
- import { Question, IConditionObject } from "question";
16970
- import { SurveyError } from "survey-error";
16939
+ declare module "packages/survey-core/src/questionnonvalue" {
16940
+ import { Question, IConditionObject } from "packages/survey-core/src/question";
16941
+ import { SurveyError } from "packages/survey-core/src/survey-error";
16971
16942
  /**
16972
16943
  * A base class for question types that cannot have a value ([Html](https://surveyjs.io/form-library/documentation/questionhtmlmodel), [Image](https://surveyjs.io/form-library/documentation/questionimagemodel)).
16973
16944
  *
@@ -16989,8 +16960,8 @@ declare module "questionnonvalue" {
16989
16960
  get ariaRequired(): any;
16990
16961
  }
16991
16962
  }
16992
- declare module "question_empty" {
16993
- import { Question } from "question";
16963
+ declare module "packages/survey-core/src/question_empty" {
16964
+ import { Question } from "packages/survey-core/src/question";
16994
16965
  /**
16995
16966
  * A Model for an question that renders empty "div" tag. It used as a base class for some custom widgets
16996
16967
  */
@@ -16999,12 +16970,12 @@ declare module "question_empty" {
16999
16970
  getType(): string;
17000
16971
  }
17001
16972
  }
17002
- declare module "question_checkbox" {
17003
- import { QuestionCheckboxBase } from "question_baseselect";
17004
- import { ItemValue } from "itemvalue";
17005
- import { LocalizableString } from "localizablestring";
17006
- import { IQuestion } from "base-interfaces";
17007
- import { SurveyError } from "survey-error";
16973
+ declare module "packages/survey-core/src/question_checkbox" {
16974
+ import { QuestionCheckboxBase } from "packages/survey-core/src/question_baseselect";
16975
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
16976
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
16977
+ import { IQuestion } from "packages/survey-core/src/base-interfaces";
16978
+ import { SurveyError } from "packages/survey-core/src/survey-error";
17008
16979
  /**
17009
16980
  * A class that describes the Checkboxes question type.
17010
16981
  *
@@ -17154,9 +17125,9 @@ declare module "question_checkbox" {
17154
17125
  get a11y_input_ariaRequired(): "true" | "false";
17155
17126
  }
17156
17127
  }
17157
- declare module "multiSelectListModel" {
17158
- import { Action, BaseAction, IAction } from "actions/action";
17159
- import { IListModel, ListModel } from "list";
17128
+ declare module "packages/survey-core/src/multiSelectListModel" {
17129
+ import { Action, BaseAction, IAction } from "packages/survey-core/src/actions/action";
17130
+ import { IListModel, ListModel } from "packages/survey-core/src/list";
17160
17131
  export interface IMultiSelectListModel extends IListModel {
17161
17132
  selectedItems?: Array<IAction>;
17162
17133
  }
@@ -17173,12 +17144,12 @@ declare module "multiSelectListModel" {
17173
17144
  selectFocusedItem(): void;
17174
17145
  }
17175
17146
  }
17176
- declare module "dropdownMultiSelectListModel" {
17177
- import { IAction } from "actions/action";
17178
- import { DropdownListModel } from "dropdownListModel";
17179
- import { ItemValue } from "itemvalue";
17180
- import { MultiSelectListModel } from "multiSelectListModel";
17181
- import { Question } from "question";
17147
+ declare module "packages/survey-core/src/dropdownMultiSelectListModel" {
17148
+ import { IAction } from "packages/survey-core/src/actions/action";
17149
+ import { DropdownListModel } from "packages/survey-core/src/dropdownListModel";
17150
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
17151
+ import { MultiSelectListModel } from "packages/survey-core/src/multiSelectListModel";
17152
+ import { Question } from "packages/survey-core/src/question";
17182
17153
  export class DropdownMultiSelectListModel extends DropdownListModel {
17183
17154
  protected popupCssClasses: string;
17184
17155
  filterStringPlaceholder: string;
@@ -17212,13 +17183,13 @@ declare module "dropdownMultiSelectListModel" {
17212
17183
  protected onPropertyChangedHandler(sender: any, options: any): void;
17213
17184
  }
17214
17185
  }
17215
- declare module "question_tagbox" {
17216
- import { LocalizableString } from "localizablestring";
17217
- import { QuestionCheckboxModel } from "question_checkbox";
17218
- import { PopupModel } from "popup";
17219
- import { DropdownMultiSelectListModel } from "dropdownMultiSelectListModel";
17220
- import { EventBase } from "base";
17221
- import { ItemValue } from "itemvalue";
17186
+ declare module "packages/survey-core/src/question_tagbox" {
17187
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
17188
+ import { QuestionCheckboxModel } from "packages/survey-core/src/question_checkbox";
17189
+ import { PopupModel } from "packages/survey-core/src/popup";
17190
+ import { DropdownMultiSelectListModel } from "packages/survey-core/src/dropdownMultiSelectListModel";
17191
+ import { EventBase } from "packages/survey-core/src/base";
17192
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
17222
17193
  /**
17223
17194
  * A class that describes the Multi-Select Dropdown (Tag Box) question type.
17224
17195
  *
@@ -17299,16 +17270,19 @@ declare module "question_tagbox" {
17299
17270
  updateItemDisplayNameMap(): void;
17300
17271
  protected getFirstInputElementId(): string;
17301
17272
  getInputId(): string;
17273
+ protected supportEmptyValidation(): boolean;
17274
+ protected onBlurCore(event: any): void;
17275
+ protected onFocusCore(event: any): void;
17302
17276
  dispose(): void;
17303
17277
  clearValue(keepComment?: boolean): void;
17304
17278
  get showClearButton(): boolean;
17305
17279
  get isNewA11yStructure(): boolean;
17306
17280
  }
17307
17281
  }
17308
- declare module "question_imagepicker" {
17309
- import { QuestionCheckboxBase } from "question_baseselect";
17310
- import { ItemValue } from "itemvalue";
17311
- import { ILocalizableOwner, LocalizableString } from "localizablestring";
17282
+ declare module "packages/survey-core/src/question_imagepicker" {
17283
+ import { QuestionCheckboxBase } from "packages/survey-core/src/question_baseselect";
17284
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
17285
+ import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
17312
17286
  export class ImageItemValue extends ItemValue implements ILocalizableOwner {
17313
17287
  protected typeName: string;
17314
17288
  private videoNotLoaded;
@@ -17473,10 +17447,10 @@ declare module "question_imagepicker" {
17473
17447
  afterRender(el: HTMLElement): void;
17474
17448
  }
17475
17449
  }
17476
- declare module "dragdrop/choices" {
17477
- import { ItemValue } from "itemvalue";
17478
- import { QuestionSelectBase } from "question_baseselect";
17479
- import { DragDropCore } from "dragdrop/core";
17450
+ declare module "packages/survey-core/src/dragdrop/choices" {
17451
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
17452
+ import { QuestionSelectBase } from "packages/survey-core/src/question_baseselect";
17453
+ import { DragDropCore } from "packages/survey-core/src/dragdrop/core";
17480
17454
  export class DragDropChoices extends DragDropCore<QuestionSelectBase> {
17481
17455
  private imagepickerControlsNode;
17482
17456
  protected get draggedElementType(): string;
@@ -17495,10 +17469,10 @@ declare module "dragdrop/choices" {
17495
17469
  private updateVisibleChoices;
17496
17470
  }
17497
17471
  }
17498
- declare module "dragdrop/ranking-choices" {
17499
- import { ItemValue } from "itemvalue";
17500
- import { DragDropChoices } from "dragdrop/choices";
17501
- import { QuestionRankingModel } from "question_ranking";
17472
+ declare module "packages/survey-core/src/dragdrop/ranking-choices" {
17473
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
17474
+ import { DragDropChoices } from "packages/survey-core/src/dragdrop/choices";
17475
+ import { QuestionRankingModel } from "packages/survey-core/src/question_ranking";
17502
17476
  export class DragDropRankingChoices extends DragDropChoices {
17503
17477
  protected get draggedElementType(): string;
17504
17478
  protected createDraggedElementShortcut(text: string, draggedElementNode: HTMLElement, event: PointerEvent): HTMLElement;
@@ -17523,10 +17497,10 @@ declare module "dragdrop/ranking-choices" {
17523
17497
  clear(): void;
17524
17498
  }
17525
17499
  }
17526
- declare module "dragdrop/ranking-select-to-rank" {
17527
- import { ItemValue } from "itemvalue";
17528
- import { DragDropRankingChoices } from "dragdrop/ranking-choices";
17529
- import { QuestionRankingModel } from "question_ranking";
17500
+ declare module "packages/survey-core/src/dragdrop/ranking-select-to-rank" {
17501
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
17502
+ import { DragDropRankingChoices } from "packages/survey-core/src/dragdrop/ranking-choices";
17503
+ import { QuestionRankingModel } from "packages/survey-core/src/question_ranking";
17530
17504
  export class DragDropRankingSelectToRank extends DragDropRankingChoices {
17531
17505
  protected findDropTargetNodeByDragOverNode(dragOverNode: HTMLElement): HTMLElement;
17532
17506
  protected getDropTargetByDataAttributeValue(dataAttributeValue: string): ItemValue;
@@ -17542,12 +17516,12 @@ declare module "dragdrop/ranking-select-to-rank" {
17542
17516
  unselectFromRank: (questionModel: QuestionRankingModel, fromIndex: number, toIndex?: number) => void;
17543
17517
  }
17544
17518
  }
17545
- declare module "question_ranking" {
17546
- import { ISurveyImpl } from "base-interfaces";
17547
- import { DragDropRankingChoices } from "dragdrop/ranking-choices";
17548
- import { ItemValue } from "itemvalue";
17549
- import { QuestionCheckboxModel } from "question_checkbox";
17550
- import { AnimationGroup } from "utils/animation";
17519
+ declare module "packages/survey-core/src/question_ranking" {
17520
+ import { ISurveyImpl } from "packages/survey-core/src/base-interfaces";
17521
+ import { DragDropRankingChoices } from "packages/survey-core/src/dragdrop/ranking-choices";
17522
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
17523
+ import { QuestionCheckboxModel } from "packages/survey-core/src/question_checkbox";
17524
+ import { AnimationGroup } from "packages/survey-core/src/utils/animation";
17551
17525
  /**
17552
17526
  * A class that describes the Ranking question type.
17553
17527
  *
@@ -17607,7 +17581,7 @@ declare module "question_ranking" {
17607
17581
  startDrag: (event: PointerEvent) => void;
17608
17582
  handlePointerUp: (event: PointerEvent, choice: ItemValue, node: HTMLElement) => void;
17609
17583
  private isDragStartNodeValid;
17610
- private get allowStartDrag();
17584
+ private isAllowStartDrag;
17611
17585
  private canStartDragDueMaxSelectedChoices;
17612
17586
  private canStartDragDueItemEnabled;
17613
17587
  checkMaxSelectedChoicesUnreached(): boolean;
@@ -17676,8 +17650,8 @@ declare module "question_ranking" {
17676
17650
  get isNewA11yStructure(): boolean;
17677
17651
  }
17678
17652
  }
17679
- declare module "question_comment" {
17680
- import { QuestionTextBase } from "question_textbase";
17653
+ declare module "packages/survey-core/src/question_comment" {
17654
+ import { QuestionTextBase } from "packages/survey-core/src/question_textbase";
17681
17655
  /**
17682
17656
  * A class that describes the Long Text question type.
17683
17657
  *
@@ -17724,6 +17698,7 @@ declare module "question_comment" {
17724
17698
  updateElement(): void;
17725
17699
  beforeDestroyQuestionElement(el: HTMLElement): void;
17726
17700
  onInput(event: any): void;
17701
+ protected onBlurCore(event: any): void;
17727
17702
  onKeyDown(event: any): void;
17728
17703
  protected setQuestionValue(newValue: any, updateIsAnswered?: boolean): void;
17729
17704
  onValueChanged(): void;
@@ -17732,9 +17707,9 @@ declare module "question_comment" {
17732
17707
  get className(): string;
17733
17708
  }
17734
17709
  }
17735
- declare module "question_html" {
17736
- import { QuestionNonValue } from "questionnonvalue";
17737
- import { LocalizableString } from "localizablestring";
17710
+ declare module "packages/survey-core/src/question_html" {
17711
+ import { QuestionNonValue } from "packages/survey-core/src/questionnonvalue";
17712
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
17738
17713
  /**
17739
17714
  * A class that describes the HTML question type. Unlike other question types, HTML cannot have a title or value.
17740
17715
  *
@@ -17760,10 +17735,10 @@ declare module "question_html" {
17760
17735
  get renderCssRoot(): string;
17761
17736
  }
17762
17737
  }
17763
- declare module "question_radiogroup" {
17764
- import { QuestionCheckboxBase } from "question_baseselect";
17765
- import { ItemValue } from "itemvalue";
17766
- import { Action } from "actions/action";
17738
+ declare module "packages/survey-core/src/question_radiogroup" {
17739
+ import { QuestionCheckboxBase } from "packages/survey-core/src/question_baseselect";
17740
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
17741
+ import { Action } from "packages/survey-core/src/actions/action";
17767
17742
  /**
17768
17743
  * A class that describes the Radio Button Group question type.
17769
17744
  *
@@ -17797,14 +17772,14 @@ declare module "question_radiogroup" {
17797
17772
  get a11y_input_ariaRole(): string;
17798
17773
  }
17799
17774
  }
17800
- declare module "question_rating" {
17801
- import { ItemValue } from "itemvalue";
17802
- import { Question } from "question";
17803
- import { LocalizableString } from "localizablestring";
17804
- import { Base } from "base";
17805
- import { DropdownListModel } from "dropdownListModel";
17806
- import { ISurveyImpl } from "base-interfaces";
17807
- import { ITheme } from "themes";
17775
+ declare module "packages/survey-core/src/question_rating" {
17776
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
17777
+ import { Question } from "packages/survey-core/src/question";
17778
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
17779
+ import { Base } from "packages/survey-core/src/base";
17780
+ import { DropdownListModel } from "packages/survey-core/src/dropdownListModel";
17781
+ import { ISurveyImpl } from "packages/survey-core/src/base-interfaces";
17782
+ import { ITheme } from "packages/survey-core/src/themes";
17808
17783
  export class RenderedRatingItem extends Base {
17809
17784
  itemValue: ItemValue;
17810
17785
  private locString;
@@ -17915,6 +17890,7 @@ declare module "question_rating" {
17915
17890
  private updateColors;
17916
17891
  protected getDisplayValueCore(keysAsText: boolean, value: any): any;
17917
17892
  get visibleRateValues(): ItemValue[];
17893
+ protected supportEmptyValidation(): boolean;
17918
17894
  itemValuePropertyChanged(item: ItemValue, name: string, oldValue: any, newValue: any): void;
17919
17895
  private createRenderedRateItems;
17920
17896
  renderedRateItems: Array<RenderedRatingItem>;
@@ -18088,10 +18064,10 @@ declare module "question_rating" {
18088
18064
  dispose(): void;
18089
18065
  }
18090
18066
  }
18091
- declare module "question_boolean" {
18092
- import { Question } from "question";
18093
- import { LocalizableString } from "localizablestring";
18094
- import { ActionContainer } from "actions/container";
18067
+ declare module "packages/survey-core/src/question_boolean" {
18068
+ import { Question } from "packages/survey-core/src/question";
18069
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
18070
+ import { ActionContainer } from "packages/survey-core/src/actions/container";
18095
18071
  /**
18096
18072
  * A class that describes the Yes/No (Boolean) question type.
18097
18073
  *
@@ -18202,9 +18178,9 @@ declare module "question_boolean" {
18202
18178
  get a11y_input_ariaRole(): string;
18203
18179
  }
18204
18180
  }
18205
- declare module "question_image" {
18206
- import { QuestionNonValue } from "questionnonvalue";
18207
- import { LocalizableString } from "localizablestring";
18181
+ declare module "packages/survey-core/src/question_image" {
18182
+ import { QuestionNonValue } from "packages/survey-core/src/questionnonvalue";
18183
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
18208
18184
  /**
18209
18185
  * A class that describes the Image question type. Unlike other question types, Image cannot have a title or value.
18210
18186
  *
@@ -18290,16 +18266,16 @@ declare module "question_image" {
18290
18266
  private isVideo;
18291
18267
  }
18292
18268
  }
18293
- declare module "surveyProgress" {
18269
+ declare module "packages/survey-core/src/surveyProgress" {
18294
18270
  export class SurveyProgressModel {
18295
18271
  static getProgressTextInBarCss(css: any): string;
18296
18272
  static getProgressTextUnderBarCss(css: any): string;
18297
18273
  }
18298
18274
  }
18299
- declare module "popup-survey" {
18300
- import { Base } from "base";
18301
- import { SurveyModel } from "survey";
18302
- import { LocalizableString } from "localizablestring";
18275
+ declare module "packages/survey-core/src/popup-survey" {
18276
+ import { Base } from "packages/survey-core/src/base";
18277
+ import { SurveyModel } from "packages/survey-core/src/survey";
18278
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
18303
18279
  /**
18304
18280
  * A class that renders a survey in a pop-up window.
18305
18281
  *
@@ -18430,10 +18406,10 @@ declare module "popup-survey" {
18430
18406
  export class SurveyWindowModel extends PopupSurveyModel {
18431
18407
  }
18432
18408
  }
18433
- declare module "popup-modal-view-model" {
18434
- import { CssClassBuilder } from "utils/cssClassBuilder";
18435
- import { PopupModel } from "popup";
18436
- import { PopupBaseViewModel } from "popup-view-model";
18409
+ declare module "packages/survey-core/src/popup-modal-view-model" {
18410
+ import { CssClassBuilder } from "packages/survey-core/src/utils/cssClassBuilder";
18411
+ import { PopupModel } from "packages/survey-core/src/popup";
18412
+ import { PopupBaseViewModel } from "packages/survey-core/src/popup-view-model";
18437
18413
  export class PopupModalViewModel extends PopupBaseViewModel {
18438
18414
  protected getStyleClass(): CssClassBuilder;
18439
18415
  protected getShowFooter(): boolean;
@@ -18448,16 +18424,16 @@ declare module "popup-modal-view-model" {
18448
18424
  updateOnHiding(): void;
18449
18425
  }
18450
18426
  }
18451
- declare module "popup-utils" {
18452
- import { IDialogOptions, PopupModel } from "popup";
18453
- import { PopupBaseViewModel } from "popup-view-model";
18427
+ declare module "packages/survey-core/src/popup-utils" {
18428
+ import { IDialogOptions, PopupModel } from "packages/survey-core/src/popup";
18429
+ import { PopupBaseViewModel } from "packages/survey-core/src/popup-view-model";
18454
18430
  export function createPopupModalViewModel(options: IDialogOptions, rootElement?: HTMLElement): PopupBaseViewModel;
18455
18431
  export function createPopupViewModel(model: PopupModel, targetElement?: HTMLElement): PopupBaseViewModel;
18456
18432
  }
18457
- declare module "question_buttongroup" {
18458
- import { ItemValue } from "itemvalue";
18459
- import { QuestionCheckboxBase } from "question_baseselect";
18460
- import { LocalizableString } from "localizablestring";
18433
+ declare module "packages/survey-core/src/question_buttongroup" {
18434
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
18435
+ import { QuestionCheckboxBase } from "packages/survey-core/src/question_baseselect";
18436
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
18461
18437
  export class ButtonGroupItemValue extends ItemValue {
18462
18438
  protected typeName: string;
18463
18439
  constructor(value: any, text?: string, typeName?: string);
@@ -18507,10 +18483,10 @@ declare module "question_buttongroup" {
18507
18483
  onChange(): void;
18508
18484
  }
18509
18485
  }
18510
- declare module "mask/mask_pattern" {
18511
- import { InputMaskBase } from "mask/mask_base";
18512
- import { IMaskedInputResult, ITextInputParams } from "mask/mask_utils";
18513
- import { ILoadFromJSONOptions } from "base-interfaces";
18486
+ declare module "packages/survey-core/src/mask/mask_pattern" {
18487
+ import { InputMaskBase } from "packages/survey-core/src/mask/mask_base";
18488
+ import { IMaskedInputResult, ITextInputParams } from "packages/survey-core/src/mask/mask_utils";
18489
+ import { ILoadFromJSONOptions } from "packages/survey-core/src/base-interfaces";
18514
18490
  export interface IMaskLiteral {
18515
18491
  type: "const" | "regex" | "fixed";
18516
18492
  value: any;
@@ -18587,9 +18563,9 @@ declare module "mask/mask_pattern" {
18587
18563
  getUnmaskedValue(src: string): any;
18588
18564
  }
18589
18565
  }
18590
- declare module "mask/mask_numeric" {
18591
- import { InputMaskBase } from "mask/mask_base";
18592
- import { IMaskedInputResult, ITextInputParams } from "mask/mask_utils";
18566
+ declare module "packages/survey-core/src/mask/mask_numeric" {
18567
+ import { InputMaskBase } from "packages/survey-core/src/mask/mask_base";
18568
+ import { IMaskedInputResult, ITextInputParams } from "packages/survey-core/src/mask/mask_utils";
18593
18569
  interface INumericalComposition {
18594
18570
  integralPart: string;
18595
18571
  fractionalPart: string;
@@ -18678,9 +18654,9 @@ declare module "mask/mask_numeric" {
18678
18654
  protected isPropertyEmpty(value: any): boolean;
18679
18655
  }
18680
18656
  }
18681
- declare module "mask/mask_datetime" {
18682
- import { InputMaskPattern } from "mask/mask_pattern";
18683
- import { IMaskedInputResult, ITextInputParams } from "mask/mask_utils";
18657
+ declare module "packages/survey-core/src/mask/mask_datetime" {
18658
+ import { InputMaskPattern } from "packages/survey-core/src/mask/mask_pattern";
18659
+ import { IMaskedInputResult, ITextInputParams } from "packages/survey-core/src/mask/mask_utils";
18684
18660
  type DateTimeMaskLexemType = "month" | "day" | "year" | "hour" | "minute" | "second" | "timeMarker" | "separator";
18685
18661
  export interface IDateTimeMaskLexem {
18686
18662
  type: DateTimeMaskLexemType;
@@ -18769,9 +18745,9 @@ declare module "mask/mask_datetime" {
18769
18745
  processInput(args: ITextInputParams): IMaskedInputResult;
18770
18746
  }
18771
18747
  }
18772
- declare module "mask/mask_currency" {
18773
- import { InputMaskNumeric } from "mask/mask_numeric";
18774
- import { IMaskedInputResult, ITextInputParams } from "mask/mask_utils";
18748
+ declare module "packages/survey-core/src/mask/mask_currency" {
18749
+ import { InputMaskNumeric } from "packages/survey-core/src/mask/mask_numeric";
18750
+ import { IMaskedInputResult, ITextInputParams } from "packages/survey-core/src/mask/mask_utils";
18775
18751
  /**
18776
18752
  * A class that describes an input mask of the `"currency"` [`maskType`](https://surveyjs.io/form-library/documentation/api-reference/text-entry-question-model#maskType).
18777
18753
  *
@@ -18812,110 +18788,175 @@ declare module "mask/mask_currency" {
18812
18788
  getMaskedValue(src: any): string;
18813
18789
  }
18814
18790
  }
18815
- declare module "entries/chunks/model" {
18791
+ declare module "packages/survey-core/entries/chunks/model" {
18816
18792
  export var Version: string;
18817
18793
  export var ReleaseDate: string;
18818
18794
  export function checkLibraryVersion(ver: string, libraryName: string): void;
18819
18795
  export function setLicenseKey(key: string): void;
18820
18796
  export function slk(key: string): void;
18821
18797
  export function hasLicense(index: number): boolean;
18822
- export { settings, ISurveyEnvironment } from "settings";
18823
- export { Helpers, HashTable } from "helpers";
18824
- export { AnswerCountValidator, EmailValidator, NumericValidator, RegexValidator, SurveyValidator, TextValidator, ValidatorResult, ExpressionValidator, ValidatorRunner } from "validator";
18825
- export { ItemValue } from "itemvalue";
18826
- export { Base, Event, EventBase, ArrayChanges, ComputedUpdater } from "base";
18827
- export { ISurvey, ISurveyElement, IElement, IQuestion, IPage, IPanel, ISurveyData, ITitleOwner, ISurveyLayoutElement, IPlainDataOptions as IPlainData, IShortcutText, ILoadFromJSONOptions, ISaveToJSONOptions, HorizontalAlignment, VerticalAlignment } from "base-interfaces";
18828
- export { SurveyError } from "survey-error";
18829
- export { SurveyElementCore, SurveyElement, DragTypeOverMeEnum } from "survey-element";
18830
- export { CalculatedValue } from "calculatedValue";
18831
- export { CustomError, AnswerRequiredError, OneAnswerRequiredError, RequreNumericError, ExceedSizeError } from "error";
18832
- export { ILocalizableOwner, ILocalizableString, LocalizableString, LocalizableStrings } from "localizablestring";
18833
- export { HtmlConditionItem, UrlConditionItem } from "expressionItems";
18834
- export { ChoicesRestful, ChoicesRestfull } from "choicesRestful";
18835
- export { FunctionFactory, registerFunction } from "functionsfactory";
18836
- export { ConditionRunner, ExpressionRunner, IExpresionExecutor, ExpressionExecutor } from "conditions";
18837
- export { Operand, Const, BinaryOperand, Variable, FunctionOperand, ArrayOperand, UnaryOperand } from "expressions/expressions";
18838
- export { ConditionsParser } from "conditionsParser";
18839
- export { ProcessValue } from "conditionProcessValue";
18840
- export { JsonError, JsonIncorrectTypeError, JsonMetadata, JsonMetadataClass, JsonMissingTypeError, JsonMissingTypeErrorBase, JsonObject, IJsonPropertyInfo, JsonObjectProperty, JsonRequiredPropertyError, JsonUnknownPropertyError, Serializer, property, propertyArray } from "jsonobject";
18841
- export { IMatrixDropdownData, MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase } from "question_matrixdropdownbase";
18842
- export { MatrixDropdownColumn, matrixDropdownColumnTypes } from "question_matrixdropdowncolumn";
18843
- export { QuestionMatrixDropdownRenderedCell, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedErrorRow, QuestionMatrixDropdownRenderedTable } from "question_matrixdropdownrendered";
18844
- export { MatrixDropdownRowModel, QuestionMatrixDropdownModel } from "question_matrixdropdown";
18845
- export { MatrixDynamicRowModel, QuestionMatrixDynamicModel } from "question_matrixdynamic";
18846
- export { MatrixRowModel, MatrixCells, QuestionMatrixModel, IMatrixData } from "question_matrix";
18847
- export { QuestionMatrixBaseModel } from "martixBase";
18848
- export { MultipleTextItemModel, MultipleTextCell, MultipleTextErrorCell, MutlipleTextErrorRow, MutlipleTextRow, QuestionMultipleTextModel, MultipleTextEditorModel } from "question_multipletext";
18849
- export { PanelModel, PanelModelBase, QuestionRowModel } from "panel";
18850
- export { FlowPanelModel } from "flowpanel";
18851
- export { PageModel } from "page";
18852
- export * from "template-renderer";
18853
- export { DefaultTitleModel } from "defaultTitle";
18854
- export { Question } from "question";
18855
- export { QuestionNonValue } from "questionnonvalue";
18856
- export { QuestionEmptyModel } from "question_empty";
18857
- export { QuestionCheckboxBase, QuestionSelectBase } from "question_baseselect";
18858
- export { QuestionCheckboxModel } from "question_checkbox";
18859
- export { QuestionTagboxModel } from "question_tagbox";
18860
- export { QuestionRankingModel } from "question_ranking";
18861
- export { QuestionCommentModel } from "question_comment";
18862
- export { QuestionDropdownModel } from "question_dropdown";
18863
- export { QuestionFactory, ElementFactory } from "questionfactory";
18864
- export { QuestionFileModel } from "question_file";
18865
- export { QuestionHtmlModel } from "question_html";
18866
- export { QuestionRadiogroupModel } from "question_radiogroup";
18867
- export { QuestionRatingModel, RenderedRatingItem } from "question_rating";
18868
- export { QuestionExpressionModel } from "question_expression";
18869
- export { QuestionTextBase, CharacterCounter } from "question_textbase";
18870
- export { QuestionTextModel } from "question_text";
18871
- export { QuestionBooleanModel } from "question_boolean";
18872
- export { QuestionImagePickerModel, ImageItemValue } from "question_imagepicker";
18873
- export { QuestionImageModel } from "question_image";
18874
- export { QuestionSignaturePadModel } from "question_signaturepad";
18875
- export { QuestionPanelDynamicModel, QuestionPanelDynamicItem } from "question_paneldynamic";
18876
- export { SurveyTimer } from "surveytimer";
18877
- export { SurveyTimerModel } from "surveyTimerModel";
18878
- export * from "surveyToc";
18879
- export { SurveyProgressModel } from "surveyProgress";
18880
- export { ProgressButtons, ProgressButtonsResponsivityManager, IProgressButtonsViewModel } from "progress-buttons";
18881
- export * from "themes";
18882
- export { SurveyModel } from "survey";
18883
- export * from "survey-events-api";
18884
- export { SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, SurveyTriggerSkip, Trigger } from "trigger";
18885
- export { PopupSurveyModel, SurveyWindowModel } from "popup-survey";
18886
- export { TextPreProcessor } from "textPreProcessor";
18887
- export { Notifier } from "notifier";
18888
- export { Cover, CoverCell } from "header";
18889
- export { dxSurveyService } from "dxSurveyService";
18890
- export { englishStrings } from "localization/english";
18891
- export { surveyLocalization, surveyStrings } from "surveyStrings";
18892
- export { QuestionCustomWidget, CustomWidgetCollection, } from "questionCustomWidgets";
18893
- export { QuestionCustomModel, QuestionCompositeModel, ComponentQuestionJSON, ComponentCollection, ICustomQuestionTypeConfiguration } from "question_custom";
18894
- export { StylesManager } from "stylesmanager";
18895
- export { ListModel } from "list";
18896
- export { MultiSelectListModel } from "multiSelectListModel";
18897
- export { PopupModel, createDialogOptions, IDialogOptions } from "popup";
18898
- export { PopupBaseViewModel } from "popup-view-model";
18899
- export { PopupDropdownViewModel } from "popup-dropdown-view-model";
18900
- export { PopupModalViewModel } from "popup-modal-view-model";
18901
- export { createPopupViewModel, createPopupModalViewModel } from "popup-utils";
18902
- export { DropdownListModel } from "dropdownListModel";
18903
- export { DropdownMultiSelectListModel } from "dropdownMultiSelectListModel";
18904
- export { QuestionButtonGroupModel, ButtonGroupItemModel, ButtonGroupItemValue } from "question_buttongroup";
18905
- export { IsMobile, IsTouch, _setIsTouch } from "utils/devices";
18906
- export { confirmAction, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, chooseFiles, sanitizeEditableContent, IAttachKey2clickOptions } from "utils/utils";
18907
- export { InputMaskBase } from "mask/mask_base";
18908
- export { InputMaskPattern } from "mask/mask_pattern";
18909
- export { InputMaskNumeric } from "mask/mask_numeric";
18910
- export { InputMaskDateTime } from "mask/mask_datetime";
18911
- export { InputMaskCurrency } from "mask/mask_currency";
18912
- export * from "utils/cssClassBuilder";
18913
- export { surveyCss, defaultV2Css, defaultV2ThemeName } from "defaultCss/defaultV2Css";
18914
- export { DragDropCore } from "dragdrop/core";
18915
- export { DragDropChoices } from "dragdrop/choices";
18916
- export { DragDropRankingSelectToRank } from "dragdrop/ranking-select-to-rank";
18917
- }
18918
- declare module "defaultCss/cssstandard" {
18798
+ export { settings, ISurveyEnvironment } from "packages/survey-core/src/settings";
18799
+ export { Helpers, HashTable } from "packages/survey-core/src/helpers";
18800
+ export { AnswerCountValidator, EmailValidator, NumericValidator, RegexValidator, SurveyValidator, TextValidator, ValidatorResult, ExpressionValidator, ValidatorRunner } from "packages/survey-core/src/validator";
18801
+ export { ItemValue } from "packages/survey-core/src/itemvalue";
18802
+ export { Base, Event, EventBase, ArrayChanges, ComputedUpdater } from "packages/survey-core/src/base";
18803
+ export { ISurvey, ISurveyElement, IElement, IQuestion, IPage, IPanel, ISurveyData, ITitleOwner, ISurveyLayoutElement, IPlainDataOptions as IPlainData, IShortcutText, ILoadFromJSONOptions, ISaveToJSONOptions, HorizontalAlignment, VerticalAlignment } from "packages/survey-core/src/base-interfaces";
18804
+ export { SurveyError } from "packages/survey-core/src/survey-error";
18805
+ export { SurveyElementCore, SurveyElement, DragTypeOverMeEnum } from "packages/survey-core/src/survey-element";
18806
+ export { CalculatedValue } from "packages/survey-core/src/calculatedValue";
18807
+ export { CustomError, AnswerRequiredError, OneAnswerRequiredError, RequreNumericError, ExceedSizeError } from "packages/survey-core/src/error";
18808
+ export { ILocalizableOwner, ILocalizableString, LocalizableString, LocalizableStrings } from "packages/survey-core/src/localizablestring";
18809
+ export { HtmlConditionItem, UrlConditionItem } from "packages/survey-core/src/expressionItems";
18810
+ export { ChoicesRestful, ChoicesRestfull } from "packages/survey-core/src/choicesRestful";
18811
+ export { FunctionFactory, registerFunction } from "packages/survey-core/src/functionsfactory";
18812
+ export { ConditionRunner, ExpressionRunner, IExpresionExecutor, ExpressionExecutor } from "packages/survey-core/src/conditions";
18813
+ export { Operand, Const, BinaryOperand, Variable, FunctionOperand, ArrayOperand, UnaryOperand } from "packages/survey-core/src/expressions/expressions";
18814
+ export { ConditionsParser } from "packages/survey-core/src/conditionsParser";
18815
+ export { ProcessValue } from "packages/survey-core/src/conditionProcessValue";
18816
+ export { JsonError, JsonIncorrectTypeError, JsonMetadata, JsonMetadataClass, JsonMissingTypeError, JsonMissingTypeErrorBase, JsonObject, IJsonPropertyInfo, JsonObjectProperty, JsonRequiredPropertyError, JsonUnknownPropertyError, Serializer, property, propertyArray } from "packages/survey-core/src/jsonobject";
18817
+ export { IMatrixDropdownData, MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
18818
+ export { MatrixDropdownColumn, matrixDropdownColumnTypes } from "packages/survey-core/src/question_matrixdropdowncolumn";
18819
+ export { QuestionMatrixDropdownRenderedCell, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedErrorRow, QuestionMatrixDropdownRenderedTable } from "packages/survey-core/src/question_matrixdropdownrendered";
18820
+ export { MatrixDropdownRowModel, QuestionMatrixDropdownModel } from "packages/survey-core/src/question_matrixdropdown";
18821
+ export { MatrixDynamicRowModel, QuestionMatrixDynamicModel } from "packages/survey-core/src/question_matrixdynamic";
18822
+ export { MatrixRowModel, MatrixCells, QuestionMatrixModel, IMatrixData } from "packages/survey-core/src/question_matrix";
18823
+ export { QuestionMatrixBaseModel } from "packages/survey-core/src/martixBase";
18824
+ export { MultipleTextItemModel, MultipleTextCell, MultipleTextErrorCell, MutlipleTextErrorRow, MutlipleTextRow, QuestionMultipleTextModel, MultipleTextEditorModel } from "packages/survey-core/src/question_multipletext";
18825
+ export { PanelModel, PanelModelBase, QuestionRowModel } from "packages/survey-core/src/panel";
18826
+ export { FlowPanelModel } from "packages/survey-core/src/flowpanel";
18827
+ export { PageModel } from "packages/survey-core/src/page";
18828
+ export * from "packages/survey-core/src/template-renderer";
18829
+ export { DefaultTitleModel } from "packages/survey-core/src/defaultTitle";
18830
+ export { Question } from "packages/survey-core/src/question";
18831
+ export { QuestionNonValue } from "packages/survey-core/src/questionnonvalue";
18832
+ export { QuestionEmptyModel } from "packages/survey-core/src/question_empty";
18833
+ export { QuestionCheckboxBase, QuestionSelectBase } from "packages/survey-core/src/question_baseselect";
18834
+ export { QuestionCheckboxModel } from "packages/survey-core/src/question_checkbox";
18835
+ export { QuestionTagboxModel } from "packages/survey-core/src/question_tagbox";
18836
+ export { QuestionRankingModel } from "packages/survey-core/src/question_ranking";
18837
+ export { QuestionCommentModel } from "packages/survey-core/src/question_comment";
18838
+ export { QuestionDropdownModel } from "packages/survey-core/src/question_dropdown";
18839
+ export { QuestionFactory, ElementFactory } from "packages/survey-core/src/questionfactory";
18840
+ export { QuestionFileModel } from "packages/survey-core/src/question_file";
18841
+ export { QuestionHtmlModel } from "packages/survey-core/src/question_html";
18842
+ export { QuestionRadiogroupModel } from "packages/survey-core/src/question_radiogroup";
18843
+ export { QuestionRatingModel, RenderedRatingItem } from "packages/survey-core/src/question_rating";
18844
+ export { QuestionExpressionModel } from "packages/survey-core/src/question_expression";
18845
+ export { QuestionTextBase, CharacterCounter } from "packages/survey-core/src/question_textbase";
18846
+ export { QuestionTextModel } from "packages/survey-core/src/question_text";
18847
+ export { QuestionBooleanModel } from "packages/survey-core/src/question_boolean";
18848
+ export { QuestionImagePickerModel, ImageItemValue } from "packages/survey-core/src/question_imagepicker";
18849
+ export { QuestionImageModel } from "packages/survey-core/src/question_image";
18850
+ export { QuestionSignaturePadModel } from "packages/survey-core/src/question_signaturepad";
18851
+ export { QuestionPanelDynamicModel, QuestionPanelDynamicItem } from "packages/survey-core/src/question_paneldynamic";
18852
+ export { SurveyTimer } from "packages/survey-core/src/surveytimer";
18853
+ export { SurveyTimerModel } from "packages/survey-core/src/surveyTimerModel";
18854
+ export * from "packages/survey-core/src/surveyToc";
18855
+ export { SurveyProgressModel } from "packages/survey-core/src/surveyProgress";
18856
+ export { ProgressButtons, ProgressButtonsResponsivityManager, IProgressButtonsViewModel } from "packages/survey-core/src/progress-buttons";
18857
+ export * from "packages/survey-core/src/themes";
18858
+ export { SurveyModel } from "packages/survey-core/src/survey";
18859
+ export * from "packages/survey-core/src/survey-events-api";
18860
+ export { SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, SurveyTriggerSkip, Trigger } from "packages/survey-core/src/trigger";
18861
+ export { PopupSurveyModel, SurveyWindowModel } from "packages/survey-core/src/popup-survey";
18862
+ export { TextPreProcessor } from "packages/survey-core/src/textPreProcessor";
18863
+ export { Notifier } from "packages/survey-core/src/notifier";
18864
+ export { Cover, CoverCell } from "packages/survey-core/src/header";
18865
+ export { dxSurveyService } from "packages/survey-core/src/dxSurveyService";
18866
+ export { englishStrings } from "packages/survey-core/src/localization/english";
18867
+ export { surveyLocalization, surveyStrings } from "packages/survey-core/src/surveyStrings";
18868
+ export { QuestionCustomWidget, CustomWidgetCollection, } from "packages/survey-core/src/questionCustomWidgets";
18869
+ export { QuestionCustomModel, QuestionCompositeModel, ComponentQuestionJSON, ComponentCollection, ICustomQuestionTypeConfiguration } from "packages/survey-core/src/question_custom";
18870
+ export { ListModel } from "packages/survey-core/src/list";
18871
+ export { MultiSelectListModel } from "packages/survey-core/src/multiSelectListModel";
18872
+ export { PopupModel, createDialogOptions, IDialogOptions } from "packages/survey-core/src/popup";
18873
+ export { PopupBaseViewModel } from "packages/survey-core/src/popup-view-model";
18874
+ export { PopupDropdownViewModel } from "packages/survey-core/src/popup-dropdown-view-model";
18875
+ export { PopupModalViewModel } from "packages/survey-core/src/popup-modal-view-model";
18876
+ export { createPopupViewModel, createPopupModalViewModel } from "packages/survey-core/src/popup-utils";
18877
+ export { DropdownListModel } from "packages/survey-core/src/dropdownListModel";
18878
+ export { DropdownMultiSelectListModel } from "packages/survey-core/src/dropdownMultiSelectListModel";
18879
+ export { QuestionButtonGroupModel, ButtonGroupItemModel, ButtonGroupItemValue } from "packages/survey-core/src/question_buttongroup";
18880
+ export { IsMobile, IsTouch, _setIsTouch } from "packages/survey-core/src/utils/devices";
18881
+ export { confirmAction, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, chooseFiles, sanitizeEditableContent, IAttachKey2clickOptions } from "packages/survey-core/src/utils/utils";
18882
+ export { InputMaskBase } from "packages/survey-core/src/mask/mask_base";
18883
+ export { InputMaskPattern } from "packages/survey-core/src/mask/mask_pattern";
18884
+ export { InputMaskNumeric } from "packages/survey-core/src/mask/mask_numeric";
18885
+ export { InputMaskDateTime } from "packages/survey-core/src/mask/mask_datetime";
18886
+ export { InputMaskCurrency } from "packages/survey-core/src/mask/mask_currency";
18887
+ export * from "packages/survey-core/src/utils/cssClassBuilder";
18888
+ export { surveyCss, defaultV2Css, defaultV2ThemeName } from "packages/survey-core/src/defaultCss/defaultV2Css";
18889
+ export { DragDropCore } from "packages/survey-core/src/dragdrop/core";
18890
+ export { DragDropChoices } from "packages/survey-core/src/dragdrop/choices";
18891
+ export { DragDropRankingSelectToRank } from "packages/survey-core/src/dragdrop/ranking-select-to-rank";
18892
+ }
18893
+ declare module "src/stylesmanager" {
18894
+ import { Logger } from "packages/survey-core/src/utils/utils";
18895
+ export const modernThemeColors: {
18896
+ [key: string]: string;
18897
+ };
18898
+ export const defaultThemeColors: {
18899
+ [key: string]: string;
18900
+ };
18901
+ export const orangeThemeColors: {
18902
+ [key: string]: string;
18903
+ };
18904
+ export const darkblueThemeColors: {
18905
+ [key: string]: string;
18906
+ };
18907
+ export const darkroseThemeColors: {
18908
+ [key: string]: string;
18909
+ };
18910
+ export const stoneThemeColors: {
18911
+ [key: string]: string;
18912
+ };
18913
+ export const winterThemeColors: {
18914
+ [key: string]: string;
18915
+ };
18916
+ export const winterstoneThemeColors: {
18917
+ [key: string]: string;
18918
+ };
18919
+ export class StylesManager {
18920
+ private static SurveyJSStylesSheetId;
18921
+ static Logger: Logger;
18922
+ static Styles: {
18923
+ [key: string]: string;
18924
+ };
18925
+ static Media: {
18926
+ [key: string]: {
18927
+ media: string;
18928
+ style: string;
18929
+ };
18930
+ };
18931
+ static ThemeColors: {
18932
+ [key: string]: {
18933
+ [key: string]: string;
18934
+ };
18935
+ };
18936
+ static ThemeCss: {
18937
+ [key: string]: {
18938
+ [key: string]: string;
18939
+ };
18940
+ };
18941
+ static ThemeSelector: {
18942
+ [key: string]: string;
18943
+ };
18944
+ static autoApplyTheme(): void;
18945
+ static getAvailableThemes(): Array<any>;
18946
+ static getIncludedThemeCss(): Array<any>;
18947
+ static findSheet(styleSheetId: string): any;
18948
+ static createSheet(styleSheetId: string): any;
18949
+ static applyTheme(themeName?: string, themeSelector?: string): void;
18950
+ static Enabled: boolean;
18951
+ constructor();
18952
+ static insertStylesRulesIntoDocument(): any;
18953
+ }
18954
+ }
18955
+ declare module "src/entries/chunks/model" {
18956
+ export * from "packages/survey-core/entries/chunks/model";
18957
+ export { StylesManager } from "src/stylesmanager";
18958
+ }
18959
+ declare module "src/defaultCss/cssstandard" {
18919
18960
  export var defaultStandardCss: {
18920
18961
  root: string;
18921
18962
  rootProgress: string;
@@ -19325,7 +19366,7 @@ declare module "defaultCss/cssstandard" {
19325
19366
  };
19326
19367
  };
19327
19368
  }
19328
- declare module "defaultCss/cssmodern" {
19369
+ declare module "src/defaultCss/cssmodern" {
19329
19370
  export var modernCss: {
19330
19371
  root: string;
19331
19372
  rootProgress: string;
@@ -19779,7 +19820,7 @@ declare module "defaultCss/cssmodern" {
19779
19820
  };
19780
19821
  };
19781
19822
  }
19782
- declare module "svgbundle" {
19823
+ declare module "packages/survey-core/src/svgbundle" {
19783
19824
  class SvgIconData {
19784
19825
  [key: string]: string;
19785
19826
  }
@@ -19796,25 +19837,29 @@ declare module "svgbundle" {
19796
19837
  export var SvgRegistry: SvgIconRegistry;
19797
19838
  export var SvgBundleViewModel: any;
19798
19839
  }
19799
- declare module "entries/core-wo-model" {
19800
- export * from "entries/chunks/model";
19801
- export { defaultStandardCss } from "defaultCss/cssstandard";
19802
- export { modernCss } from "defaultCss/cssmodern";
19803
- export * from "svgbundle";
19804
- export * from "rendererFactory";
19805
- export * from "utils/responsivity-manager";
19806
- export { unwrap, getOriginalEvent, getElement } from "utils/utils";
19807
- export * from "actions/action";
19808
- export * from "utils/animation";
19809
- export * from "actions/adaptive-container";
19810
- export * from "actions/container";
19811
- export * from "utils/dragOrClickHelper";
19812
- }
19813
- declare module "entries/core" {
19814
- export * from "entries/core-wo-model";
19815
- export { SurveyModel as Model } from "survey";
19816
- }
19817
- declare module "plugins/themes/bootstrap/cssbootstrap" {
19840
+ declare module "packages/survey-core/entries/chunks/core-wo-model" {
19841
+ export * from "packages/survey-core/entries/chunks/model";
19842
+ export * from "packages/survey-core/src/svgbundle";
19843
+ export * from "packages/survey-core/src/rendererFactory";
19844
+ export * from "packages/survey-core/src/utils/responsivity-manager";
19845
+ export { unwrap, getOriginalEvent, getElement } from "packages/survey-core/src/utils/utils";
19846
+ export * from "packages/survey-core/src/actions/action";
19847
+ export * from "packages/survey-core/src/utils/animation";
19848
+ export * from "packages/survey-core/src/actions/adaptive-container";
19849
+ export * from "packages/survey-core/src/actions/container";
19850
+ export * from "packages/survey-core/src/utils/dragOrClickHelper";
19851
+ }
19852
+ declare module "src/entries/core-wo-model" {
19853
+ export * from "src/entries/chunks/model";
19854
+ export { defaultStandardCss } from "src/defaultCss/cssstandard";
19855
+ export { modernCss } from "src/defaultCss/cssmodern";
19856
+ export * from "packages/survey-core/entries/chunks/core-wo-model";
19857
+ }
19858
+ declare module "src/entries/core" {
19859
+ export * from "src/entries/core-wo-model";
19860
+ export { SurveyModel as Model } from "packages/survey-core/src/survey";
19861
+ }
19862
+ declare module "src/plugins/themes/bootstrap-integration/cssbootstrap" {
19818
19863
  export var defaultCss: {
19819
19864
  root: string;
19820
19865
  container: string;
@@ -20173,7 +20218,7 @@ declare module "plugins/themes/bootstrap/cssbootstrap" {
20173
20218
  };
20174
20219
  };
20175
20220
  }
20176
- declare module "plugins/themes/bootstrapmaterial/cssbootstrapmaterial" {
20221
+ declare module "src/plugins/themes/bootstrap-material-integration/cssbootstrapmaterial" {
20177
20222
  export var defaultCss: {
20178
20223
  root: string;
20179
20224
  container: string;
@@ -20536,11 +20581,11 @@ declare module "plugins/themes/bootstrapmaterial/cssbootstrapmaterial" {
20536
20581
  };
20537
20582
  };
20538
20583
  }
20539
- declare module "plugins/themes/common-theme-settings" {
20584
+ declare module "src/plugins/themes/common-theme-settings" {
20540
20585
  export function setMediaStyles(): void;
20541
20586
  export function setStyles(): void;
20542
20587
  }
20543
- declare module "plugins/themes/bootstrap/theme-settings" {
20588
+ declare module "src/plugins/themes/bootstrap-integration/theme-settings" {
20544
20589
  export const bootstrapThemeName = "bootstrap";
20545
20590
  export const bootstrapThemeColors: {
20546
20591
  [key: string]: string;
@@ -20583,7 +20628,7 @@ declare module "plugins/themes/bootstrap/theme-settings" {
20583
20628
  ".sv-skeleton-element": string;
20584
20629
  };
20585
20630
  }
20586
- declare module "plugins/themes/bootstrapmaterial/theme-settings" {
20631
+ declare module "src/plugins/themes/bootstrap-material-integration/theme-settings" {
20587
20632
  export const bootstrapMaterialThemeName = "bootstrapmaterial";
20588
20633
  export const bootstrapMaterialThemeColors: {
20589
20634
  [key: string]: string;
@@ -20644,9 +20689,9 @@ declare module "plugins/themes/bootstrapmaterial/theme-settings" {
20644
20689
  ".sv-skeleton-element": string;
20645
20690
  };
20646
20691
  }
20647
- declare module "entries/plugins" {
20648
- export * from "plugins/themes/bootstrap/theme-settings";
20649
- export * from "plugins/themes/bootstrapmaterial/theme-settings";
20692
+ declare module "src/entries/plugins" {
20693
+ export * from "src/plugins/themes/bootstrap-integration/theme-settings";
20694
+ export * from "src/plugins/themes/bootstrap-material-integration/theme-settings";
20650
20695
  export var defaultBootstrapCss: {
20651
20696
  root: string;
20652
20697
  container: string;
@@ -21366,7 +21411,7 @@ declare module "entries/plugins" {
21366
21411
  };
21367
21412
  };
21368
21413
  }
21369
- declare module "localization/arabic" {
21414
+ declare module "packages/survey-core/src/localization/arabic" {
21370
21415
  export var arabicSurveyStrings: {
21371
21416
  pagePrevText: string;
21372
21417
  pageNextText: string;
@@ -21475,7 +21520,7 @@ declare module "localization/arabic" {
21475
21520
  cancel: string;
21476
21521
  };
21477
21522
  }
21478
- declare module "localization/basque" {
21523
+ declare module "packages/survey-core/src/localization/basque" {
21479
21524
  export var basqueSurveyStrings: {
21480
21525
  pagePrevText: string;
21481
21526
  pageNextText: string;
@@ -21584,7 +21629,7 @@ declare module "localization/basque" {
21584
21629
  cancel: string;
21585
21630
  };
21586
21631
  }
21587
- declare module "localization/bulgarian" {
21632
+ declare module "packages/survey-core/src/localization/bulgarian" {
21588
21633
  export var bulgarianStrings: {
21589
21634
  pagePrevText: string;
21590
21635
  pageNextText: string;
@@ -21693,7 +21738,7 @@ declare module "localization/bulgarian" {
21693
21738
  cancel: string;
21694
21739
  };
21695
21740
  }
21696
- declare module "localization/catalan" {
21741
+ declare module "packages/survey-core/src/localization/catalan" {
21697
21742
  export var catalanSurveyStrings: {
21698
21743
  pagePrevText: string;
21699
21744
  pageNextText: string;
@@ -21802,7 +21847,7 @@ declare module "localization/catalan" {
21802
21847
  cancel: string;
21803
21848
  };
21804
21849
  }
21805
- declare module "localization/croatian" {
21850
+ declare module "packages/survey-core/src/localization/croatian" {
21806
21851
  export var croatianStrings: {
21807
21852
  pagePrevText: string;
21808
21853
  pageNextText: string;
@@ -21911,7 +21956,7 @@ declare module "localization/croatian" {
21911
21956
  cancel: string;
21912
21957
  };
21913
21958
  }
21914
- declare module "localization/czech" {
21959
+ declare module "packages/survey-core/src/localization/czech" {
21915
21960
  export var czechSurveyStrings: {
21916
21961
  pagePrevText: string;
21917
21962
  pageNextText: string;
@@ -22020,7 +22065,7 @@ declare module "localization/czech" {
22020
22065
  cancel: string;
22021
22066
  };
22022
22067
  }
22023
- declare module "localization/danish" {
22068
+ declare module "packages/survey-core/src/localization/danish" {
22024
22069
  export var danishSurveyStrings: {
22025
22070
  pagePrevText: string;
22026
22071
  pageNextText: string;
@@ -22129,7 +22174,7 @@ declare module "localization/danish" {
22129
22174
  cancel: string;
22130
22175
  };
22131
22176
  }
22132
- declare module "localization/dutch" {
22177
+ declare module "packages/survey-core/src/localization/dutch" {
22133
22178
  export var dutchSurveyStrings: {
22134
22179
  pagePrevText: string;
22135
22180
  pageNextText: string;
@@ -22238,8 +22283,8 @@ declare module "localization/dutch" {
22238
22283
  cancel: string;
22239
22284
  };
22240
22285
  }
22241
- declare module "localization/nl-BE" { }
22242
- declare module "localization/estonian" {
22286
+ declare module "packages/survey-core/src/localization/nl-BE" { }
22287
+ declare module "packages/survey-core/src/localization/estonian" {
22243
22288
  export var estonianSurveyStrings: {
22244
22289
  pagePrevText: string;
22245
22290
  pageNextText: string;
@@ -22348,7 +22393,7 @@ declare module "localization/estonian" {
22348
22393
  cancel: string;
22349
22394
  };
22350
22395
  }
22351
- declare module "localization/finnish" {
22396
+ declare module "packages/survey-core/src/localization/finnish" {
22352
22397
  export var finnishSurveyStrings: {
22353
22398
  pagePrevText: string;
22354
22399
  pageNextText: string;
@@ -22457,7 +22502,7 @@ declare module "localization/finnish" {
22457
22502
  cancel: string;
22458
22503
  };
22459
22504
  }
22460
- declare module "localization/french" {
22505
+ declare module "packages/survey-core/src/localization/french" {
22461
22506
  export var frenchSurveyStrings: {
22462
22507
  pagePrevText: string;
22463
22508
  pageNextText: string;
@@ -22566,7 +22611,7 @@ declare module "localization/french" {
22566
22611
  cancel: string;
22567
22612
  };
22568
22613
  }
22569
- declare module "localization/georgian" {
22614
+ declare module "packages/survey-core/src/localization/georgian" {
22570
22615
  export var georgianSurveyStrings: {
22571
22616
  pagePrevText: string;
22572
22617
  pageNextText: string;
@@ -22675,7 +22720,7 @@ declare module "localization/georgian" {
22675
22720
  cancel: string;
22676
22721
  };
22677
22722
  }
22678
- declare module "localization/german" {
22723
+ declare module "packages/survey-core/src/localization/german" {
22679
22724
  export var germanSurveyStrings: {
22680
22725
  pagePrevText: string;
22681
22726
  pageNextText: string;
@@ -22784,7 +22829,7 @@ declare module "localization/german" {
22784
22829
  cancel: string;
22785
22830
  };
22786
22831
  }
22787
- declare module "localization/greek" {
22832
+ declare module "packages/survey-core/src/localization/greek" {
22788
22833
  export var greekSurveyStrings: {
22789
22834
  pagePrevText: string;
22790
22835
  pageNextText: string;
@@ -22893,7 +22938,7 @@ declare module "localization/greek" {
22893
22938
  cancel: string;
22894
22939
  };
22895
22940
  }
22896
- declare module "localization/hebrew" {
22941
+ declare module "packages/survey-core/src/localization/hebrew" {
22897
22942
  export var hebrewSurveyStrings: {
22898
22943
  pagePrevText: string;
22899
22944
  pageNextText: string;
@@ -23002,7 +23047,7 @@ declare module "localization/hebrew" {
23002
23047
  cancel: string;
23003
23048
  };
23004
23049
  }
23005
- declare module "localization/hindi" {
23050
+ declare module "packages/survey-core/src/localization/hindi" {
23006
23051
  export var hindiStrings: {
23007
23052
  pagePrevText: string;
23008
23053
  pageNextText: string;
@@ -23111,7 +23156,7 @@ declare module "localization/hindi" {
23111
23156
  cancel: string;
23112
23157
  };
23113
23158
  }
23114
- declare module "localization/hungarian" {
23159
+ declare module "packages/survey-core/src/localization/hungarian" {
23115
23160
  export var hungarianSurveyStrings: {
23116
23161
  pagePrevText: string;
23117
23162
  pageNextText: string;
@@ -23220,7 +23265,7 @@ declare module "localization/hungarian" {
23220
23265
  cancel: string;
23221
23266
  };
23222
23267
  }
23223
- declare module "localization/icelandic" {
23268
+ declare module "packages/survey-core/src/localization/icelandic" {
23224
23269
  export var icelandicSurveyStrings: {
23225
23270
  pagePrevText: string;
23226
23271
  pageNextText: string;
@@ -23329,7 +23374,7 @@ declare module "localization/icelandic" {
23329
23374
  cancel: string;
23330
23375
  };
23331
23376
  }
23332
- declare module "localization/indonesian" {
23377
+ declare module "packages/survey-core/src/localization/indonesian" {
23333
23378
  export var indonesianStrings: {
23334
23379
  pagePrevText: string;
23335
23380
  pageNextText: string;
@@ -23438,7 +23483,7 @@ declare module "localization/indonesian" {
23438
23483
  cancel: string;
23439
23484
  };
23440
23485
  }
23441
- declare module "localization/italian" {
23486
+ declare module "packages/survey-core/src/localization/italian" {
23442
23487
  export var italianSurveyStrings: {
23443
23488
  pagePrevText: string;
23444
23489
  pageNextText: string;
@@ -23547,7 +23592,7 @@ declare module "localization/italian" {
23547
23592
  cancel: string;
23548
23593
  };
23549
23594
  }
23550
- declare module "localization/japanese" {
23595
+ declare module "packages/survey-core/src/localization/japanese" {
23551
23596
  export var japaneseSurveyStrings: {
23552
23597
  pagePrevText: string;
23553
23598
  pageNextText: string;
@@ -23656,7 +23701,7 @@ declare module "localization/japanese" {
23656
23701
  cancel: string;
23657
23702
  };
23658
23703
  }
23659
- declare module "localization/kazakh" {
23704
+ declare module "packages/survey-core/src/localization/kazakh" {
23660
23705
  export var kazakhStrings: {
23661
23706
  pagePrevText: string;
23662
23707
  pageNextText: string;
@@ -23765,7 +23810,7 @@ declare module "localization/kazakh" {
23765
23810
  cancel: string;
23766
23811
  };
23767
23812
  }
23768
- declare module "localization/korean" {
23813
+ declare module "packages/survey-core/src/localization/korean" {
23769
23814
  export var koreanStrings: {
23770
23815
  pagePrevText: string;
23771
23816
  pageNextText: string;
@@ -23874,7 +23919,7 @@ declare module "localization/korean" {
23874
23919
  cancel: string;
23875
23920
  };
23876
23921
  }
23877
- declare module "localization/latvian" {
23922
+ declare module "packages/survey-core/src/localization/latvian" {
23878
23923
  export var latvianSurveyStrings: {
23879
23924
  pagePrevText: string;
23880
23925
  pageNextText: string;
@@ -23983,7 +24028,7 @@ declare module "localization/latvian" {
23983
24028
  cancel: string;
23984
24029
  };
23985
24030
  }
23986
- declare module "localization/lithuanian" {
24031
+ declare module "packages/survey-core/src/localization/lithuanian" {
23987
24032
  export var lithuaniaSurveyStrings: {
23988
24033
  pagePrevText: string;
23989
24034
  pageNextText: string;
@@ -24092,7 +24137,7 @@ declare module "localization/lithuanian" {
24092
24137
  cancel: string;
24093
24138
  };
24094
24139
  }
24095
- declare module "localization/macedonian" {
24140
+ declare module "packages/survey-core/src/localization/macedonian" {
24096
24141
  export var macedonianSurveyStrings: {
24097
24142
  pagePrevText: string;
24098
24143
  pageNextText: string;
@@ -24201,7 +24246,7 @@ declare module "localization/macedonian" {
24201
24246
  cancel: string;
24202
24247
  };
24203
24248
  }
24204
- declare module "localization/malay" {
24249
+ declare module "packages/survey-core/src/localization/malay" {
24205
24250
  export var malaySurveyStrings: {
24206
24251
  pagePrevText: string;
24207
24252
  pageNextText: string;
@@ -24310,7 +24355,7 @@ declare module "localization/malay" {
24310
24355
  cancel: string;
24311
24356
  };
24312
24357
  }
24313
- declare module "localization/norwegian" {
24358
+ declare module "packages/survey-core/src/localization/norwegian" {
24314
24359
  export var norwegianSurveyStrings: {
24315
24360
  pagePrevText: string;
24316
24361
  pageNextText: string;
@@ -24419,7 +24464,7 @@ declare module "localization/norwegian" {
24419
24464
  cancel: string;
24420
24465
  };
24421
24466
  }
24422
- declare module "localization/persian" {
24467
+ declare module "packages/survey-core/src/localization/persian" {
24423
24468
  export var persianSurveyStrings: {
24424
24469
  pagePrevText: string;
24425
24470
  pageNextText: string;
@@ -24528,7 +24573,7 @@ declare module "localization/persian" {
24528
24573
  cancel: string;
24529
24574
  };
24530
24575
  }
24531
- declare module "localization/polish" {
24576
+ declare module "packages/survey-core/src/localization/polish" {
24532
24577
  export var polishSurveyStrings: {
24533
24578
  pagePrevText: string;
24534
24579
  pageNextText: string;
@@ -24637,7 +24682,7 @@ declare module "localization/polish" {
24637
24682
  cancel: string;
24638
24683
  };
24639
24684
  }
24640
- declare module "localization/portuguese" {
24685
+ declare module "packages/survey-core/src/localization/portuguese" {
24641
24686
  export var portugueseSurveyStrings: {
24642
24687
  pagePrevText: string;
24643
24688
  pageNextText: string;
@@ -24746,7 +24791,7 @@ declare module "localization/portuguese" {
24746
24791
  cancel: string;
24747
24792
  };
24748
24793
  }
24749
- declare module "localization/portuguese-br" {
24794
+ declare module "packages/survey-core/src/localization/portuguese-br" {
24750
24795
  /**
24751
24796
  * You don't need to translate strings that have the same value as Portuguese translation
24752
24797
  */
@@ -24858,10 +24903,10 @@ declare module "localization/portuguese-br" {
24858
24903
  cancel: string;
24859
24904
  };
24860
24905
  }
24861
- declare module "localization/romanian" {
24906
+ declare module "packages/survey-core/src/localization/romanian" {
24862
24907
  export var romanianSurveyStrings: any;
24863
24908
  }
24864
- declare module "localization/russian" {
24909
+ declare module "packages/survey-core/src/localization/russian" {
24865
24910
  export var russianSurveyStrings: {
24866
24911
  pagePrevText: string;
24867
24912
  pageNextText: string;
@@ -24970,7 +25015,7 @@ declare module "localization/russian" {
24970
25015
  cancel: string;
24971
25016
  };
24972
25017
  }
24973
- declare module "localization/serbian" {
25018
+ declare module "packages/survey-core/src/localization/serbian" {
24974
25019
  export var serbianStrings: {
24975
25020
  pagePrevText: string;
24976
25021
  pageNextText: string;
@@ -25079,7 +25124,7 @@ declare module "localization/serbian" {
25079
25124
  cancel: string;
25080
25125
  };
25081
25126
  }
25082
- declare module "localization/simplified-chinese" {
25127
+ declare module "packages/survey-core/src/localization/simplified-chinese" {
25083
25128
  export var simplifiedChineseSurveyStrings: {
25084
25129
  pagePrevText: string;
25085
25130
  pageNextText: string;
@@ -25188,7 +25233,7 @@ declare module "localization/simplified-chinese" {
25188
25233
  cancel: string;
25189
25234
  };
25190
25235
  }
25191
- declare module "localization/slovak" {
25236
+ declare module "packages/survey-core/src/localization/slovak" {
25192
25237
  export var slovakSurveyStrings: {
25193
25238
  pagePrevText: string;
25194
25239
  pageNextText: string;
@@ -25297,7 +25342,7 @@ declare module "localization/slovak" {
25297
25342
  cancel: string;
25298
25343
  };
25299
25344
  }
25300
- declare module "localization/spanish" {
25345
+ declare module "packages/survey-core/src/localization/spanish" {
25301
25346
  export var spanishSurveyStrings: {
25302
25347
  pagePrevText: string;
25303
25348
  pageNextText: string;
@@ -25406,7 +25451,7 @@ declare module "localization/spanish" {
25406
25451
  cancel: string;
25407
25452
  };
25408
25453
  }
25409
- declare module "localization/swahili" {
25454
+ declare module "packages/survey-core/src/localization/swahili" {
25410
25455
  export var swahiliStrings: {
25411
25456
  pagePrevText: string;
25412
25457
  pageNextText: string;
@@ -25515,7 +25560,7 @@ declare module "localization/swahili" {
25515
25560
  cancel: string;
25516
25561
  };
25517
25562
  }
25518
- declare module "localization/swedish" {
25563
+ declare module "packages/survey-core/src/localization/swedish" {
25519
25564
  export var swedishSurveyStrings: {
25520
25565
  pagePrevText: string;
25521
25566
  pageNextText: string;
@@ -25624,7 +25669,7 @@ declare module "localization/swedish" {
25624
25669
  cancel: string;
25625
25670
  };
25626
25671
  }
25627
- declare module "localization/tajik" {
25672
+ declare module "packages/survey-core/src/localization/tajik" {
25628
25673
  export var tajikSurveyStrings: {
25629
25674
  pagePrevText: string;
25630
25675
  pageNextText: string;
@@ -25688,7 +25733,7 @@ declare module "localization/tajik" {
25688
25733
  removeFileCaption: string;
25689
25734
  };
25690
25735
  }
25691
- declare module "localization/thai" {
25736
+ declare module "packages/survey-core/src/localization/thai" {
25692
25737
  export var thaiStrings: {
25693
25738
  pagePrevText: string;
25694
25739
  pageNextText: string;
@@ -25797,7 +25842,7 @@ declare module "localization/thai" {
25797
25842
  cancel: string;
25798
25843
  };
25799
25844
  }
25800
- declare module "localization/traditional-chinese" {
25845
+ declare module "packages/survey-core/src/localization/traditional-chinese" {
25801
25846
  export var traditionalChineseSurveyStrings: {
25802
25847
  pagePrevText: string;
25803
25848
  pageNextText: string;
@@ -25906,7 +25951,7 @@ declare module "localization/traditional-chinese" {
25906
25951
  cancel: string;
25907
25952
  };
25908
25953
  }
25909
- declare module "localization/turkish" {
25954
+ declare module "packages/survey-core/src/localization/turkish" {
25910
25955
  export var turkishSurveyStrings: {
25911
25956
  pagePrevText: string;
25912
25957
  pageNextText: string;
@@ -26015,7 +26060,7 @@ declare module "localization/turkish" {
26015
26060
  cancel: string;
26016
26061
  };
26017
26062
  }
26018
- declare module "localization/ukrainian" {
26063
+ declare module "packages/survey-core/src/localization/ukrainian" {
26019
26064
  export var ukrainianSurveyStrings: {
26020
26065
  pagePrevText: string;
26021
26066
  pageNextText: string;
@@ -26124,7 +26169,7 @@ declare module "localization/ukrainian" {
26124
26169
  cancel: string;
26125
26170
  };
26126
26171
  }
26127
- declare module "localization/vietnamese" {
26172
+ declare module "packages/survey-core/src/localization/vietnamese" {
26128
26173
  export var vietnameseSurveyStrings: {
26129
26174
  pagePrevText: string;
26130
26175
  pageNextText: string;
@@ -26233,7 +26278,7 @@ declare module "localization/vietnamese" {
26233
26278
  cancel: string;
26234
26279
  };
26235
26280
  }
26236
- declare module "localization/welsh" {
26281
+ declare module "packages/survey-core/src/localization/welsh" {
26237
26282
  export var welshSurveyStrings: {
26238
26283
  pagePrevText: string;
26239
26284
  pageNextText: string;
@@ -26342,7 +26387,7 @@ declare module "localization/welsh" {
26342
26387
  cancel: string;
26343
26388
  };
26344
26389
  }
26345
- declare module "localization/telugu" {
26390
+ declare module "packages/survey-core/src/localization/telugu" {
26346
26391
  export var teluguStrings: {
26347
26392
  pagePrevText: string;
26348
26393
  pageNextText: string;
@@ -26451,7 +26496,7 @@ declare module "localization/telugu" {
26451
26496
  cancel: string;
26452
26497
  };
26453
26498
  }
26454
- declare module "localization/philippines" {
26499
+ declare module "packages/survey-core/src/localization/philippines" {
26455
26500
  export var philippinesStrings: {
26456
26501
  pagePrevText: string;
26457
26502
  pageNextText: string;
@@ -26560,59 +26605,62 @@ declare module "localization/philippines" {
26560
26605
  cancel: string;
26561
26606
  };
26562
26607
  }
26563
- declare module "entries/chunks/localization" {
26564
- import "localization/arabic";
26565
- import "localization/basque";
26566
- import "localization/bulgarian";
26567
- import "localization/catalan";
26568
- import "localization/croatian";
26569
- import "localization/czech";
26570
- import "localization/danish";
26571
- import "localization/dutch";
26572
- import "localization/nl-BE";
26573
- import "localization/estonian";
26574
- import "localization/finnish";
26575
- import "localization/french";
26576
- import "localization/georgian";
26577
- import "localization/german";
26578
- import "localization/greek";
26579
- import "localization/hebrew";
26580
- import "localization/hindi";
26581
- import "localization/hungarian";
26582
- import "localization/icelandic";
26583
- import "localization/indonesian";
26584
- import "localization/italian";
26585
- import "localization/japanese";
26586
- import "localization/kazakh";
26587
- import "localization/korean";
26588
- import "localization/latvian";
26589
- import "localization/lithuanian";
26590
- import "localization/macedonian";
26591
- import "localization/malay";
26592
- import "localization/norwegian";
26593
- import "localization/persian";
26594
- import "localization/polish";
26595
- import "localization/portuguese";
26596
- import "localization/portuguese-br";
26597
- import "localization/romanian";
26598
- import "localization/russian";
26599
- import "localization/serbian";
26600
- import "localization/simplified-chinese";
26601
- import "localization/slovak";
26602
- import "localization/spanish";
26603
- import "localization/swahili";
26604
- import "localization/swedish";
26605
- import "localization/tajik";
26606
- import "localization/thai";
26607
- import "localization/traditional-chinese";
26608
- import "localization/turkish";
26609
- import "localization/ukrainian";
26610
- import "localization/vietnamese";
26611
- import "localization/welsh";
26612
- import "localization/telugu";
26613
- import "localization/philippines";
26614
- }
26615
- declare module "react/element-factory" {
26608
+ declare module "packages/survey-core/entries/chunks/localization" {
26609
+ import "packages/survey-core/src/localization/arabic";
26610
+ import "packages/survey-core/src/localization/basque";
26611
+ import "packages/survey-core/src/localization/bulgarian";
26612
+ import "packages/survey-core/src/localization/catalan";
26613
+ import "packages/survey-core/src/localization/croatian";
26614
+ import "packages/survey-core/src/localization/czech";
26615
+ import "packages/survey-core/src/localization/danish";
26616
+ import "packages/survey-core/src/localization/dutch";
26617
+ import "packages/survey-core/src/localization/nl-BE";
26618
+ import "packages/survey-core/src/localization/estonian";
26619
+ import "packages/survey-core/src/localization/finnish";
26620
+ import "packages/survey-core/src/localization/french";
26621
+ import "packages/survey-core/src/localization/georgian";
26622
+ import "packages/survey-core/src/localization/german";
26623
+ import "packages/survey-core/src/localization/greek";
26624
+ import "packages/survey-core/src/localization/hebrew";
26625
+ import "packages/survey-core/src/localization/hindi";
26626
+ import "packages/survey-core/src/localization/hungarian";
26627
+ import "packages/survey-core/src/localization/icelandic";
26628
+ import "packages/survey-core/src/localization/indonesian";
26629
+ import "packages/survey-core/src/localization/italian";
26630
+ import "packages/survey-core/src/localization/japanese";
26631
+ import "packages/survey-core/src/localization/kazakh";
26632
+ import "packages/survey-core/src/localization/korean";
26633
+ import "packages/survey-core/src/localization/latvian";
26634
+ import "packages/survey-core/src/localization/lithuanian";
26635
+ import "packages/survey-core/src/localization/macedonian";
26636
+ import "packages/survey-core/src/localization/malay";
26637
+ import "packages/survey-core/src/localization/norwegian";
26638
+ import "packages/survey-core/src/localization/persian";
26639
+ import "packages/survey-core/src/localization/polish";
26640
+ import "packages/survey-core/src/localization/portuguese";
26641
+ import "packages/survey-core/src/localization/portuguese-br";
26642
+ import "packages/survey-core/src/localization/romanian";
26643
+ import "packages/survey-core/src/localization/russian";
26644
+ import "packages/survey-core/src/localization/serbian";
26645
+ import "packages/survey-core/src/localization/simplified-chinese";
26646
+ import "packages/survey-core/src/localization/slovak";
26647
+ import "packages/survey-core/src/localization/spanish";
26648
+ import "packages/survey-core/src/localization/swahili";
26649
+ import "packages/survey-core/src/localization/swedish";
26650
+ import "packages/survey-core/src/localization/tajik";
26651
+ import "packages/survey-core/src/localization/thai";
26652
+ import "packages/survey-core/src/localization/traditional-chinese";
26653
+ import "packages/survey-core/src/localization/turkish";
26654
+ import "packages/survey-core/src/localization/ukrainian";
26655
+ import "packages/survey-core/src/localization/vietnamese";
26656
+ import "packages/survey-core/src/localization/welsh";
26657
+ import "packages/survey-core/src/localization/telugu";
26658
+ import "packages/survey-core/src/localization/philippines";
26659
+ }
26660
+ declare module "src/entries/chunks/localization" {
26661
+ import "packages/survey-core/entries/chunks/localization";
26662
+ }
26663
+ declare module "packages/survey-react-ui/src/element-factory" {
26616
26664
  export class ReactElementFactory {
26617
26665
  static Instance: ReactElementFactory;
26618
26666
  private creatorHash;
@@ -26622,8 +26670,8 @@ declare module "react/element-factory" {
26622
26670
  createElement(elementType: string, params: any): JSX.Element | any;
26623
26671
  }
26624
26672
  }
26625
- declare module "react/reactsurveymodel" {
26626
- import { SurveyModel, QuestionMatrixDropdownRenderedCell, SurveyElement, QuestionRowModel, ItemValue, QuestionSelectBase } from "entries/core";
26673
+ declare module "packages/survey-react-ui/src/reactsurveymodel" {
26674
+ import { SurveyModel, QuestionMatrixDropdownRenderedCell, SurveyElement, QuestionRowModel, ItemValue, QuestionSelectBase } from "src/entries/core";
26627
26675
  export class ReactSurveyElementsWrapper {
26628
26676
  static wrapRow(survey: SurveyModel, element: JSX.Element, row: QuestionRowModel): JSX.Element;
26629
26677
  static wrapElement(survey: SurveyModel, element: JSX.Element, question: SurveyElement): JSX.Element;
@@ -26632,7 +26680,7 @@ declare module "react/reactsurveymodel" {
26632
26680
  static wrapMatrixCell(survey: SurveyModel, element: JSX.Element, cell: QuestionMatrixDropdownRenderedCell, reason?: string): JSX.Element;
26633
26681
  }
26634
26682
  }
26635
- declare module "react/reactquestion_factory" {
26683
+ declare module "packages/survey-react-ui/src/reactquestion_factory" {
26636
26684
  export class ReactQuestionFactory {
26637
26685
  static Instance: ReactQuestionFactory;
26638
26686
  private creatorHash;
@@ -26641,9 +26689,9 @@ declare module "react/reactquestion_factory" {
26641
26689
  createQuestion(questionType: string, params: any): JSX.Element | null;
26642
26690
  }
26643
26691
  }
26644
- declare module "react/components/character-counter" {
26645
- import { Base, CharacterCounter } from "entries/core";
26646
- import { SurveyElementBase } from "react/reactquestion_element";
26692
+ declare module "packages/survey-react-ui/src/components/character-counter" {
26693
+ import { Base, CharacterCounter } from "src/entries/core";
26694
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
26647
26695
  export interface ICharacterCounterComponentProps {
26648
26696
  counter: CharacterCounter;
26649
26697
  remainingCharacterCounter: string;
@@ -26653,9 +26701,9 @@ declare module "react/components/character-counter" {
26653
26701
  renderElement(): JSX.Element | null;
26654
26702
  }
26655
26703
  }
26656
- declare module "react/reactquestion_comment" {
26657
- import { ReactSurveyElement, SurveyQuestionUncontrolledElement } from "react/reactquestion_element";
26658
- import { QuestionCommentModel } from "entries/core";
26704
+ declare module "packages/survey-react-ui/src/reactquestion_comment" {
26705
+ import { ReactSurveyElement, SurveyQuestionUncontrolledElement } from "packages/survey-react-ui/src/reactquestion_element";
26706
+ import { QuestionCommentModel } from "src/entries/core";
26659
26707
  export class SurveyQuestionComment extends SurveyQuestionUncontrolledElement<QuestionCommentModel> {
26660
26708
  constructor(props: any);
26661
26709
  protected renderElement(): JSX.Element;
@@ -26685,8 +26733,8 @@ declare module "react/reactquestion_comment" {
26685
26733
  protected getPlaceholder(): string;
26686
26734
  }
26687
26735
  }
26688
- declare module "react/custom-widget" {
26689
- import { SurveyQuestionElementBase } from "react/reactquestion_element";
26736
+ declare module "packages/survey-react-ui/src/custom-widget" {
26737
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
26690
26738
  export class SurveyCustomWidget extends SurveyQuestionElementBase {
26691
26739
  private widgetRef;
26692
26740
  constructor(props: any);
@@ -26698,7 +26746,7 @@ declare module "react/custom-widget" {
26698
26746
  protected renderElement(): JSX.Element;
26699
26747
  }
26700
26748
  }
26701
- declare module "react/components/svg-icon/svg-icon" {
26749
+ declare module "packages/survey-react-ui/src/components/svg-icon/svg-icon" {
26702
26750
  import React from "react";
26703
26751
  export class SvgIcon extends React.Component<any, any> {
26704
26752
  private svgIconRef;
@@ -26709,16 +26757,16 @@ declare module "react/components/svg-icon/svg-icon" {
26709
26757
  componentDidMount(): void;
26710
26758
  }
26711
26759
  }
26712
- declare module "react/components/action-bar/action-bar-separator" {
26760
+ declare module "packages/survey-react-ui/src/components/action-bar/action-bar-separator" {
26713
26761
  import React from "react";
26714
26762
  export class SurveyActionBarSeparator extends React.Component<any, any> {
26715
26763
  constructor(props: any);
26716
26764
  render(): JSX.Element;
26717
26765
  }
26718
26766
  }
26719
- declare module "react/components/action-bar/action-bar-item" {
26720
- import { Base, Action } from "entries/core";
26721
- import { SurveyElementBase } from "react/reactquestion_element";
26767
+ declare module "packages/survey-react-ui/src/components/action-bar/action-bar-item" {
26768
+ import { Base, Action } from "src/entries/core";
26769
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
26722
26770
  interface IActionBarItemProps {
26723
26771
  item: Action;
26724
26772
  }
@@ -26736,9 +26784,9 @@ declare module "react/components/action-bar/action-bar-item" {
26736
26784
  renderInnerButton(): JSX.Element;
26737
26785
  }
26738
26786
  }
26739
- declare module "react/components/popup/popup" {
26740
- import { Base, PopupModel, PopupBaseViewModel, IDialogOptions } from "entries/core";
26741
- import { SurveyElementBase } from "react/reactquestion_element";
26787
+ declare module "packages/survey-react-ui/src/components/popup/popup" {
26788
+ import { Base, PopupModel, PopupBaseViewModel, IDialogOptions } from "src/entries/core";
26789
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
26742
26790
  interface IPopupProps {
26743
26791
  model: PopupModel;
26744
26792
  getTarget?: (container: HTMLElement) => HTMLElement;
@@ -26778,8 +26826,8 @@ declare module "react/components/popup/popup" {
26778
26826
  export function showModal(componentName: string, data: any, onApply: () => boolean, onCancel?: () => void, cssClass?: string, title?: string, displayMode?: "popup" | "overlay"): PopupBaseViewModel;
26779
26827
  export function showDialog(dialogOptions: IDialogOptions, rootElement?: HTMLElement): PopupBaseViewModel;
26780
26828
  }
26781
- declare module "react/components/action-bar/action-bar-item-dropdown" {
26782
- import { SurveyActionBarItem } from "react/components/action-bar/action-bar-item";
26829
+ declare module "packages/survey-react-ui/src/components/action-bar/action-bar-item-dropdown" {
26830
+ import { SurveyActionBarItem } from "packages/survey-react-ui/src/components/action-bar/action-bar-item";
26783
26831
  export class SurveyActionBarItemDropdown extends SurveyActionBarItem {
26784
26832
  private viewModel;
26785
26833
  constructor(props: any);
@@ -26787,11 +26835,11 @@ declare module "react/components/action-bar/action-bar-item-dropdown" {
26787
26835
  componentWillUnmount(): void;
26788
26836
  }
26789
26837
  }
26790
- declare module "react/components/action-bar/action-bar" {
26791
- import { Base, Action, ActionContainer } from "entries/core";
26792
- import { SurveyElementBase } from "react/reactquestion_element";
26793
- export * from "react/components/action-bar/action-bar-item-dropdown";
26794
- export * from "react/components/action-bar/action-bar-separator";
26838
+ declare module "packages/survey-react-ui/src/components/action-bar/action-bar" {
26839
+ import { Base, Action, ActionContainer } from "src/entries/core";
26840
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
26841
+ export * from "packages/survey-react-ui/src/components/action-bar/action-bar-item-dropdown";
26842
+ export * from "packages/survey-react-ui/src/components/action-bar/action-bar-separator";
26795
26843
  interface IActionBarProps {
26796
26844
  model: ActionContainer<Action>;
26797
26845
  handleClick?: boolean;
@@ -26809,9 +26857,9 @@ declare module "react/components/action-bar/action-bar" {
26809
26857
  renderItems(): JSX.Element[];
26810
26858
  }
26811
26859
  }
26812
- declare module "react/components/title/title-content" {
26860
+ declare module "packages/survey-react-ui/src/components/title/title-content" {
26813
26861
  import React from "react";
26814
- import { ITitleOwner } from "entries/core";
26862
+ import { ITitleOwner } from "src/entries/core";
26815
26863
  export class TitleContent extends React.Component<any, any> {
26816
26864
  constructor(props: any);
26817
26865
  private get cssClasses();
@@ -26821,16 +26869,16 @@ declare module "react/components/title/title-content" {
26821
26869
  private renderRequireText;
26822
26870
  }
26823
26871
  }
26824
- declare module "react/components/title/title-actions" {
26872
+ declare module "packages/survey-react-ui/src/components/title/title-actions" {
26825
26873
  import React from "react";
26826
- import { SurveyElement } from "entries/core";
26874
+ import { SurveyElement } from "src/entries/core";
26827
26875
  export class TitleActions extends React.Component<any, any> {
26828
26876
  protected get cssClasses(): any;
26829
26877
  protected get element(): SurveyElement;
26830
26878
  render(): JSX.Element;
26831
26879
  }
26832
26880
  }
26833
- declare module "react/components/title/title-element" {
26881
+ declare module "packages/survey-react-ui/src/components/title/title-element" {
26834
26882
  import React from "react";
26835
26883
  export class TitleElement extends React.Component<any, any> {
26836
26884
  constructor(props: any);
@@ -26838,17 +26886,17 @@ declare module "react/components/title/title-element" {
26838
26886
  render(): JSX.Element | any;
26839
26887
  }
26840
26888
  }
26841
- declare module "react/element-header" {
26889
+ declare module "packages/survey-react-ui/src/element-header" {
26842
26890
  import React from "react";
26843
26891
  export class SurveyElementHeader extends React.Component<any, any> {
26844
26892
  private get element();
26845
26893
  render(): JSX.Element;
26846
26894
  }
26847
26895
  }
26848
- declare module "react/reactquestion" {
26896
+ declare module "packages/survey-react-ui/src/reactquestion" {
26849
26897
  import * as React from "react";
26850
- import { Base, SurveyElement, SurveyError, Question, QuestionMatrixDropdownRenderedCell } from "entries/core";
26851
- import { SurveyElementBase, ReactSurveyElement } from "react/reactquestion_element";
26898
+ import { Base, SurveyElement, SurveyError, Question, QuestionMatrixDropdownRenderedCell } from "src/entries/core";
26899
+ import { SurveyElementBase, ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
26852
26900
  export interface ISurveyCreator {
26853
26901
  createQuestionElement(question: Question): JSX.Element | null;
26854
26902
  renderError(key: string, error: SurveyError, cssClasses: any, element?: any): JSX.Element;
@@ -26928,10 +26976,10 @@ declare module "react/reactquestion" {
26928
26976
  render(): JSX.Element;
26929
26977
  }
26930
26978
  }
26931
- declare module "react/reactquestion_element" {
26979
+ declare module "packages/survey-react-ui/src/reactquestion_element" {
26932
26980
  import * as React from "react";
26933
- import { Base, PanelModel, LocalizableString, Question } from "entries/core";
26934
- import { ISurveyCreator } from "react/reactquestion";
26981
+ import { Base, PanelModel, LocalizableString, Question } from "src/entries/core";
26982
+ import { ISurveyCreator } from "packages/survey-react-ui/src/reactquestion";
26935
26983
  export class SurveyElementBase<P, S> extends React.Component<P, S> {
26936
26984
  static renderLocString(locStr: LocalizableString, style?: any, key?: string): JSX.Element;
26937
26985
  static renderQuestionDescription(question: Question | PanelModel): JSX.Element;
@@ -26995,9 +27043,9 @@ declare module "react/reactquestion_element" {
26995
27043
  private getValue;
26996
27044
  }
26997
27045
  }
26998
- declare module "react/element" {
26999
- import { IElement } from "entries/core";
27000
- import { SurveyElementBase } from "react/reactquestion_element";
27046
+ declare module "packages/survey-react-ui/src/element" {
27047
+ import { IElement } from "src/entries/core";
27048
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27001
27049
  export class SurveyRowElement extends SurveyElementBase<any, any> {
27002
27050
  private rootRef;
27003
27051
  constructor(props: any);
@@ -27015,9 +27063,9 @@ declare module "react/element" {
27015
27063
  protected createElement(element: IElement, elementIndex?: number): JSX.Element;
27016
27064
  }
27017
27065
  }
27018
- declare module "react/row" {
27019
- import { IElement, Base } from "entries/core";
27020
- import { SurveyElementBase } from "react/reactquestion_element";
27066
+ declare module "packages/survey-react-ui/src/row" {
27067
+ import { IElement, Base } from "src/entries/core";
27068
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27021
27069
  export class SurveyRow extends SurveyElementBase<any, any> {
27022
27070
  private rootRef;
27023
27071
  constructor(props: any);
@@ -27037,11 +27085,11 @@ declare module "react/row" {
27037
27085
  protected createElement(element: IElement, elementIndex?: number): JSX.Element;
27038
27086
  }
27039
27087
  }
27040
- declare module "react/panel-base" {
27088
+ declare module "packages/survey-react-ui/src/panel-base" {
27041
27089
  import * as React from "react";
27042
- import { ISurveyCreator } from "react/reactquestion";
27043
- import { Base, SurveyModel, QuestionRowModel, PanelModelBase } from "entries/core";
27044
- import { SurveyElementBase } from "react/reactquestion_element";
27090
+ import { ISurveyCreator } from "packages/survey-react-ui/src/reactquestion";
27091
+ import { Base, SurveyModel, QuestionRowModel, PanelModelBase } from "src/entries/core";
27092
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27045
27093
  export class SurveyPanelBase extends SurveyElementBase<any, any> {
27046
27094
  protected rootRef: React.RefObject<HTMLDivElement>;
27047
27095
  constructor(props: any);
@@ -27064,9 +27112,9 @@ declare module "react/panel-base" {
27064
27112
  protected createRow(row: QuestionRowModel, css: any): JSX.Element;
27065
27113
  }
27066
27114
  }
27067
- declare module "react/page" {
27068
- import { PageModel, PanelModelBase } from "entries/core";
27069
- import { SurveyPanelBase } from "react/panel-base";
27115
+ declare module "packages/survey-react-ui/src/page" {
27116
+ import { PageModel, PanelModelBase } from "src/entries/core";
27117
+ import { SurveyPanelBase } from "packages/survey-react-ui/src/panel-base";
27070
27118
  export class SurveyPage extends SurveyPanelBase {
27071
27119
  constructor(props: any);
27072
27120
  protected getPanelBase(): PanelModelBase;
@@ -27076,7 +27124,7 @@ declare module "react/page" {
27076
27124
  protected renderDescription(): JSX.Element | null;
27077
27125
  }
27078
27126
  }
27079
- declare module "react/string-viewer" {
27127
+ declare module "packages/survey-react-ui/src/string-viewer" {
27080
27128
  import React from "react";
27081
27129
  export class SurveyLocStringViewer extends React.Component<any, any> {
27082
27130
  constructor(props: any);
@@ -27093,9 +27141,9 @@ declare module "react/string-viewer" {
27093
27141
  protected renderString(): JSX.Element;
27094
27142
  }
27095
27143
  }
27096
- declare module "react/components/survey-header/survey-header" {
27144
+ declare module "packages/survey-react-ui/src/components/survey-header/survey-header" {
27097
27145
  import React from "react";
27098
- import { SurveyModel } from "entries/core";
27146
+ import { SurveyModel } from "src/entries/core";
27099
27147
  interface ISurveyHeaderProps {
27100
27148
  survey: SurveyModel;
27101
27149
  }
@@ -27111,15 +27159,15 @@ declare module "react/components/survey-header/survey-header" {
27111
27159
  render(): JSX.Element | null;
27112
27160
  }
27113
27161
  }
27114
- declare module "react/components/brand-info" {
27162
+ declare module "packages/survey-react-ui/src/components/brand-info" {
27115
27163
  import React from "react";
27116
27164
  export class BrandInfo extends React.Component<any, any> {
27117
27165
  render(): JSX.Element;
27118
27166
  }
27119
27167
  }
27120
- declare module "react/components/notifier" {
27121
- import { Base, Notifier } from "entries/core";
27122
- import { SurveyElementBase } from "react/reactquestion_element";
27168
+ declare module "packages/survey-react-ui/src/components/notifier" {
27169
+ import { Base, Notifier } from "src/entries/core";
27170
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27123
27171
  export interface INotifierComponentProps {
27124
27172
  notifier: Notifier;
27125
27173
  }
@@ -27129,13 +27177,13 @@ declare module "react/components/notifier" {
27129
27177
  renderElement(): JSX.Element | null;
27130
27178
  }
27131
27179
  }
27132
- declare module "react/components/components-container" {
27180
+ declare module "packages/survey-react-ui/src/components/components-container" {
27133
27181
  import React from "react";
27134
27182
  export class ComponentsContainer extends React.Component<any, any> {
27135
27183
  render(): JSX.Element | null;
27136
27184
  }
27137
27185
  }
27138
- declare module "react/svgbundle" {
27186
+ declare module "packages/survey-react-ui/src/svgbundle" {
27139
27187
  import React from "react";
27140
27188
  export class SvgBundleComponent extends React.Component {
27141
27189
  private containerRef;
@@ -27144,10 +27192,10 @@ declare module "react/svgbundle" {
27144
27192
  render(): JSX.Element;
27145
27193
  }
27146
27194
  }
27147
- declare module "react/reactSurvey" {
27148
- import { Base, Question, PageModel, SurveyError, SurveyModel, IAttachKey2clickOptions } from "entries/core";
27149
- import { ISurveyCreator } from "react/reactquestion";
27150
- import { SurveyElementBase } from "react/reactquestion_element";
27195
+ declare module "packages/survey-react-ui/src/reactSurvey" {
27196
+ import { Base, Question, PageModel, SurveyError, SurveyModel, IAttachKey2clickOptions } from "src/entries/core";
27197
+ import { ISurveyCreator } from "packages/survey-react-ui/src/reactquestion";
27198
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27151
27199
  export class Survey extends SurveyElementBase<any, any> implements ISurveyCreator {
27152
27200
  private previousJSON;
27153
27201
  private rootRef;
@@ -27186,9 +27234,9 @@ declare module "react/reactSurvey" {
27186
27234
  }
27187
27235
  export function attachKey2click(element: JSX.Element, viewModel?: any, options?: IAttachKey2clickOptions): JSX.Element;
27188
27236
  }
27189
- declare module "react/reactSurveyNavigationBase" {
27237
+ declare module "packages/survey-react-ui/src/reactSurveyNavigationBase" {
27190
27238
  import * as React from "react";
27191
- import { SurveyModel } from "entries/core";
27239
+ import { SurveyModel } from "src/entries/core";
27192
27240
  export class SurveyNavigationBase extends React.Component<any, any> {
27193
27241
  constructor(props: any);
27194
27242
  protected get survey(): SurveyModel;
@@ -27198,9 +27246,9 @@ declare module "react/reactSurveyNavigationBase" {
27198
27246
  componentWillUnmount(): void;
27199
27247
  }
27200
27248
  }
27201
- declare module "react/reacttimerpanel" {
27202
- import { Base, SurveyTimerModel } from "entries/core";
27203
- import { ReactSurveyElement } from "react/reactquestion_element";
27249
+ declare module "packages/survey-react-ui/src/reacttimerpanel" {
27250
+ import { Base, SurveyTimerModel } from "src/entries/core";
27251
+ import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
27204
27252
  export class SurveyTimerPanel extends ReactSurveyElement {
27205
27253
  constructor(props: any);
27206
27254
  protected getStateElement(): Base;
@@ -27210,9 +27258,9 @@ declare module "react/reacttimerpanel" {
27210
27258
  render(): JSX.Element | null;
27211
27259
  }
27212
27260
  }
27213
- declare module "react/panel" {
27214
- import { SurveyPanelBase } from "react/panel-base";
27215
- import { PanelModel } from "entries/core";
27261
+ declare module "packages/survey-react-ui/src/panel" {
27262
+ import { SurveyPanelBase } from "packages/survey-react-ui/src/panel-base";
27263
+ import { PanelModel } from "src/entries/core";
27216
27264
  export class SurveyPanel extends SurveyPanelBase {
27217
27265
  private hasBeenExpanded;
27218
27266
  constructor(props: any);
@@ -27227,9 +27275,9 @@ declare module "react/panel" {
27227
27275
  protected getIsVisible(): boolean;
27228
27276
  }
27229
27277
  }
27230
- declare module "react/flow-panel" {
27231
- import { FlowPanelModel, Question } from "entries/core";
27232
- import { SurveyPanel } from "react/panel";
27278
+ declare module "packages/survey-react-ui/src/flow-panel" {
27279
+ import { FlowPanelModel, Question } from "src/entries/core";
27280
+ import { SurveyPanel } from "packages/survey-react-ui/src/panel";
27233
27281
  export class SurveyFlowPanel extends SurveyPanel {
27234
27282
  constructor(props: any);
27235
27283
  get flowPanel(): FlowPanelModel;
@@ -27250,9 +27298,9 @@ declare module "react/flow-panel" {
27250
27298
  protected renderContent(style: any, rows: JSX.Element[]): JSX.Element;
27251
27299
  }
27252
27300
  }
27253
- declare module "react/reactquestion_checkbox" {
27254
- import { ReactSurveyElement, SurveyQuestionElementBase } from "react/reactquestion_element";
27255
- import { Base, ItemValue, QuestionCheckboxModel } from "entries/core";
27301
+ declare module "packages/survey-react-ui/src/reactquestion_checkbox" {
27302
+ import { ReactSurveyElement, SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27303
+ import { Base, ItemValue, QuestionCheckboxModel } from "src/entries/core";
27256
27304
  export class SurveyQuestionCheckbox extends SurveyQuestionElementBase {
27257
27305
  constructor(props: any);
27258
27306
  protected get question(): QuestionCheckboxModel;
@@ -27284,9 +27332,9 @@ declare module "react/reactquestion_checkbox" {
27284
27332
  protected renderCheckbox(isChecked: boolean, otherItem: JSX.Element | null): JSX.Element;
27285
27333
  }
27286
27334
  }
27287
- declare module "react/reactquestion_ranking" {
27288
- import { ReactSurveyElement, SurveyQuestionElementBase } from "react/reactquestion_element";
27289
- import { QuestionRankingModel, ItemValue } from "entries/core";
27335
+ declare module "packages/survey-react-ui/src/reactquestion_ranking" {
27336
+ import { ReactSurveyElement, SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27337
+ import { QuestionRankingModel, ItemValue } from "src/entries/core";
27290
27338
  export class SurveyQuestionRanking extends SurveyQuestionElementBase {
27291
27339
  protected get question(): QuestionRankingModel;
27292
27340
  protected renderElement(): JSX.Element;
@@ -27315,9 +27363,9 @@ declare module "react/reactquestion_ranking" {
27315
27363
  protected renderElement(): JSX.Element;
27316
27364
  }
27317
27365
  }
27318
- declare module "react/components/rating/rating-item" {
27319
- import { Base, QuestionRatingModel, RenderedRatingItem } from "entries/core";
27320
- import { SurveyElementBase } from "react/reactquestion_element";
27366
+ declare module "packages/survey-react-ui/src/components/rating/rating-item" {
27367
+ import { Base, QuestionRatingModel, RenderedRatingItem } from "src/entries/core";
27368
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27321
27369
  export interface IRatingItemProps {
27322
27370
  question: QuestionRatingModel;
27323
27371
  item: RenderedRatingItem;
@@ -27338,20 +27386,20 @@ declare module "react/components/rating/rating-item" {
27338
27386
  componentDidMount(): void;
27339
27387
  }
27340
27388
  }
27341
- declare module "react/components/rating/rating-item-star" {
27342
- import { RatingItemBase } from "react/components/rating/rating-item";
27389
+ declare module "packages/survey-react-ui/src/components/rating/rating-item-star" {
27390
+ import { RatingItemBase } from "packages/survey-react-ui/src/components/rating/rating-item";
27343
27391
  export class RatingItemStar extends RatingItemBase {
27344
27392
  render(): JSX.Element | null;
27345
27393
  }
27346
27394
  }
27347
- declare module "react/components/rating/rating-item-smiley" {
27348
- import { RatingItemBase } from "react/components/rating/rating-item";
27395
+ declare module "packages/survey-react-ui/src/components/rating/rating-item-smiley" {
27396
+ import { RatingItemBase } from "packages/survey-react-ui/src/components/rating/rating-item";
27349
27397
  export class RatingItemSmiley extends RatingItemBase {
27350
27398
  render(): JSX.Element | null;
27351
27399
  }
27352
27400
  }
27353
- declare module "react/components/rating/rating-dropdown-item" {
27354
- import { SurveyElementBase } from "react/reactquestion_element";
27401
+ declare module "packages/survey-react-ui/src/components/rating/rating-dropdown-item" {
27402
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27355
27403
  interface IRatingItemProps {
27356
27404
  item: any;
27357
27405
  }
@@ -27362,9 +27410,9 @@ declare module "react/components/rating/rating-dropdown-item" {
27362
27410
  renderDescription(item: any): JSX.Element;
27363
27411
  }
27364
27412
  }
27365
- declare module "react/tagbox-filter" {
27366
- import { DropdownMultiSelectListModel, QuestionTagboxModel } from "entries/core";
27367
- import { SurveyElementBase } from "react/reactquestion_element";
27413
+ declare module "packages/survey-react-ui/src/tagbox-filter" {
27414
+ import { DropdownMultiSelectListModel, QuestionTagboxModel } from "src/entries/core";
27415
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27368
27416
  interface ITagboxFilterProps {
27369
27417
  model: DropdownMultiSelectListModel;
27370
27418
  question: QuestionTagboxModel;
@@ -27385,9 +27433,9 @@ declare module "react/tagbox-filter" {
27385
27433
  render(): JSX.Element;
27386
27434
  }
27387
27435
  }
27388
- declare module "react/dropdown-item" {
27389
- import { ReactSurveyElement } from "react/reactquestion_element";
27390
- import { Base } from "entries/core";
27436
+ declare module "packages/survey-react-ui/src/dropdown-item" {
27437
+ import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
27438
+ import { Base } from "src/entries/core";
27391
27439
  export class SurveyQuestionOptionItem extends ReactSurveyElement {
27392
27440
  constructor(props: any);
27393
27441
  componentDidUpdate(prevProps: any, prevState: any): void;
@@ -27399,9 +27447,9 @@ declare module "react/dropdown-item" {
27399
27447
  protected renderElement(): JSX.Element;
27400
27448
  }
27401
27449
  }
27402
- declare module "react/dropdown-base" {
27403
- import { Question, DropdownListModel } from "entries/core";
27404
- import { SurveyQuestionUncontrolledElement } from "react/reactquestion_element";
27450
+ declare module "packages/survey-react-ui/src/dropdown-base" {
27451
+ import { Question, DropdownListModel } from "src/entries/core";
27452
+ import { SurveyQuestionUncontrolledElement } from "packages/survey-react-ui/src/reactquestion_element";
27405
27453
  export class SurveyQuestionDropdownBase<T extends Question> extends SurveyQuestionUncontrolledElement<T> {
27406
27454
  inputElement: HTMLInputElement | null;
27407
27455
  click: (event: any) => void;
@@ -27425,17 +27473,17 @@ declare module "react/dropdown-base" {
27425
27473
  updateInputDomElement(): void;
27426
27474
  }
27427
27475
  }
27428
- declare module "react/reactquestion_dropdown" {
27429
- import { Question } from "entries/core";
27430
- import { SurveyQuestionDropdownBase } from "react/dropdown-base";
27476
+ declare module "packages/survey-react-ui/src/reactquestion_dropdown" {
27477
+ import { Question } from "src/entries/core";
27478
+ import { SurveyQuestionDropdownBase } from "packages/survey-react-ui/src/dropdown-base";
27431
27479
  export class SurveyQuestionDropdown extends SurveyQuestionDropdownBase<Question> {
27432
27480
  constructor(props: any);
27433
27481
  protected renderElement(): JSX.Element;
27434
27482
  }
27435
27483
  }
27436
- declare module "react/tagbox-item" {
27437
- import { ReactSurveyElement } from "react/reactquestion_element";
27438
- import { QuestionTagboxModel, ItemValue } from "entries/core";
27484
+ declare module "packages/survey-react-ui/src/tagbox-item" {
27485
+ import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
27486
+ import { QuestionTagboxModel, ItemValue } from "src/entries/core";
27439
27487
  export class SurveyQuestionTagboxItem extends ReactSurveyElement {
27440
27488
  constructor(props: any);
27441
27489
  protected get question(): QuestionTagboxModel;
@@ -27444,9 +27492,9 @@ declare module "react/tagbox-item" {
27444
27492
  protected renderElement(): JSX.Element;
27445
27493
  }
27446
27494
  }
27447
- declare module "react/reactquestion_tagbox" {
27448
- import { QuestionTagboxModel, DropdownListModel } from "entries/core";
27449
- import { SurveyQuestionDropdownBase } from "react/dropdown-base";
27495
+ declare module "packages/survey-react-ui/src/reactquestion_tagbox" {
27496
+ import { QuestionTagboxModel, DropdownListModel } from "src/entries/core";
27497
+ import { SurveyQuestionDropdownBase } from "packages/survey-react-ui/src/dropdown-base";
27450
27498
  export class SurveyQuestionTagbox extends SurveyQuestionDropdownBase<QuestionTagboxModel> {
27451
27499
  constructor(props: any);
27452
27500
  protected renderItem(key: string, item: any): JSX.Element;
@@ -27455,16 +27503,16 @@ declare module "react/reactquestion_tagbox" {
27455
27503
  protected renderReadOnlyElement(): JSX.Element | null;
27456
27504
  }
27457
27505
  }
27458
- declare module "react/dropdown-select" {
27459
- import { SurveyQuestionDropdown } from "react/reactquestion_dropdown";
27506
+ declare module "packages/survey-react-ui/src/dropdown-select" {
27507
+ import { SurveyQuestionDropdown } from "packages/survey-react-ui/src/reactquestion_dropdown";
27460
27508
  export class SurveyQuestionDropdownSelect extends SurveyQuestionDropdown {
27461
27509
  constructor(props: any);
27462
27510
  protected renderSelect(cssClasses: any): JSX.Element;
27463
27511
  }
27464
27512
  }
27465
- declare module "react/reactquestion_matrix" {
27466
- import { ReactSurveyElement, SurveyQuestionElementBase } from "react/reactquestion_element";
27467
- import { QuestionMatrixModel, Base } from "entries/core";
27513
+ declare module "packages/survey-react-ui/src/reactquestion_matrix" {
27514
+ import { ReactSurveyElement, SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27515
+ import { QuestionMatrixModel, Base } from "src/entries/core";
27468
27516
  export class SurveyQuestionMatrix extends SurveyQuestionElementBase {
27469
27517
  constructor(props: any);
27470
27518
  protected get question(): QuestionMatrixModel;
@@ -27496,9 +27544,9 @@ declare module "react/reactquestion_matrix" {
27496
27544
  protected renderInput(inputId: string, isChecked: boolean): JSX.Element;
27497
27545
  }
27498
27546
  }
27499
- declare module "react/reactquestion_html" {
27500
- import { SurveyQuestionElementBase } from "react/reactquestion_element";
27501
- import { QuestionHtmlModel } from "entries/core";
27547
+ declare module "packages/survey-react-ui/src/reactquestion_html" {
27548
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27549
+ import { QuestionHtmlModel } from "src/entries/core";
27502
27550
  export class SurveyQuestionHtml extends SurveyQuestionElementBase {
27503
27551
  constructor(props: any);
27504
27552
  protected get question(): QuestionHtmlModel;
@@ -27510,24 +27558,24 @@ declare module "react/reactquestion_html" {
27510
27558
  protected renderElement(): JSX.Element;
27511
27559
  }
27512
27560
  }
27513
- declare module "react/components/loading-indicator" {
27561
+ declare module "packages/survey-react-ui/src/components/loading-indicator" {
27514
27562
  import * as React from "react";
27515
27563
  export class LoadingIndicatorComponent extends React.Component<any, any> {
27516
27564
  render(): JSX.Element | null;
27517
27565
  }
27518
27566
  }
27519
- declare module "react/components/file/file-choose-button" {
27520
- import { ReactSurveyElement } from "react/reactquestion_element";
27521
- import { QuestionFileModel } from "entries/core";
27567
+ declare module "packages/survey-react-ui/src/components/file/file-choose-button" {
27568
+ import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
27569
+ import { QuestionFileModel } from "src/entries/core";
27522
27570
  export class SurveyFileChooseButton extends ReactSurveyElement {
27523
27571
  constructor(props: any);
27524
27572
  protected get question(): QuestionFileModel;
27525
27573
  render(): JSX.Element;
27526
27574
  }
27527
27575
  }
27528
- declare module "react/reactquestion_file" {
27529
- import { QuestionFileModel } from "entries/core";
27530
- import { SurveyQuestionElementBase } from "react/reactquestion_element";
27576
+ declare module "packages/survey-react-ui/src/reactquestion_file" {
27577
+ import { QuestionFileModel } from "src/entries/core";
27578
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27531
27579
  export class SurveyQuestionFile extends SurveyQuestionElementBase {
27532
27580
  constructor(props: any);
27533
27581
  protected get question(): QuestionFileModel;
@@ -27540,9 +27588,9 @@ declare module "react/reactquestion_file" {
27540
27588
  protected renderVideo(): JSX.Element;
27541
27589
  }
27542
27590
  }
27543
- declare module "react/components/file/file-preview" {
27544
- import { SurveyElementBase } from "react/reactquestion_element";
27545
- import { QuestionFileModel } from "entries/core";
27591
+ declare module "packages/survey-react-ui/src/components/file/file-preview" {
27592
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27593
+ import { QuestionFileModel } from "src/entries/core";
27546
27594
  export class SurveyFilePreview extends SurveyElementBase<{
27547
27595
  question: QuestionFileModel;
27548
27596
  }, {}> {
@@ -27552,11 +27600,11 @@ declare module "react/components/file/file-preview" {
27552
27600
  protected canRender(): boolean;
27553
27601
  }
27554
27602
  }
27555
- declare module "react/reactquestion_multipletext" {
27556
- import { SurveyQuestionElementBase } from "react/reactquestion_element";
27557
- import { SurveyQuestionAndErrorsWrapped } from "react/reactquestion";
27558
- import { QuestionMultipleTextModel, MultipleTextItemModel, MultipleTextCell } from "entries/core";
27559
- import { ReactSurveyElement } from "react/reactquestion_element";
27603
+ declare module "packages/survey-react-ui/src/reactquestion_multipletext" {
27604
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27605
+ import { SurveyQuestionAndErrorsWrapped } from "packages/survey-react-ui/src/reactquestion";
27606
+ import { QuestionMultipleTextModel, MultipleTextItemModel, MultipleTextCell } from "src/entries/core";
27607
+ import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
27560
27608
  export class SurveyQuestionMultipleText extends SurveyQuestionElementBase {
27561
27609
  constructor(props: any);
27562
27610
  protected get question(): QuestionMultipleTextModel;
@@ -27567,7 +27615,7 @@ declare module "react/reactquestion_multipletext" {
27567
27615
  export class SurveyMultipleTextItem extends ReactSurveyElement {
27568
27616
  private get question();
27569
27617
  private get item();
27570
- protected getStateElements(): (import("question_multipletext").MultipleTextEditorModel | MultipleTextItemModel)[];
27618
+ protected getStateElements(): (import("survey-core").MultipleTextEditorModel | MultipleTextItemModel)[];
27571
27619
  private get creator();
27572
27620
  protected renderElement(): JSX.Element;
27573
27621
  }
@@ -27575,9 +27623,9 @@ declare module "react/reactquestion_multipletext" {
27575
27623
  protected renderElement(): JSX.Element;
27576
27624
  }
27577
27625
  }
27578
- declare module "react/reactquestion_radiogroup" {
27579
- import { SurveyQuestionElementBase, ReactSurveyElement } from "react/reactquestion_element";
27580
- import { QuestionRadiogroupModel, ItemValue, Base } from "entries/core";
27626
+ declare module "packages/survey-react-ui/src/reactquestion_radiogroup" {
27627
+ import { SurveyQuestionElementBase, ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
27628
+ import { QuestionRadiogroupModel, ItemValue, Base } from "src/entries/core";
27581
27629
  export class SurveyQuestionRadiogroup extends SurveyQuestionElementBase {
27582
27630
  constructor(props: any);
27583
27631
  protected get question(): QuestionRadiogroupModel;
@@ -27608,9 +27656,9 @@ declare module "react/reactquestion_radiogroup" {
27608
27656
  protected renderElement(): JSX.Element;
27609
27657
  }
27610
27658
  }
27611
- declare module "react/reactquestion_text" {
27612
- import { SurveyQuestionUncontrolledElement } from "react/reactquestion_element";
27613
- import { QuestionTextModel } from "entries/core";
27659
+ declare module "packages/survey-react-ui/src/reactquestion_text" {
27660
+ import { SurveyQuestionUncontrolledElement } from "packages/survey-react-ui/src/reactquestion_element";
27661
+ import { QuestionTextModel } from "src/entries/core";
27614
27662
  export class SurveyQuestionText extends SurveyQuestionUncontrolledElement<QuestionTextModel> {
27615
27663
  constructor(props: any);
27616
27664
  protected renderInput(): JSX.Element;
@@ -27620,10 +27668,10 @@ declare module "react/reactquestion_text" {
27620
27668
  private renderDataList;
27621
27669
  }
27622
27670
  }
27623
- declare module "react/boolean" {
27671
+ declare module "packages/survey-react-ui/src/boolean" {
27624
27672
  import * as React from "react";
27625
- import { QuestionBooleanModel, Base } from "entries/core";
27626
- import { SurveyQuestionElementBase } from "react/reactquestion_element";
27673
+ import { QuestionBooleanModel, Base } from "src/entries/core";
27674
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27627
27675
  export class SurveyQuestionBoolean extends SurveyQuestionElementBase {
27628
27676
  protected checkRef: React.RefObject<HTMLInputElement>;
27629
27677
  constructor(props: any);
@@ -27639,15 +27687,15 @@ declare module "react/boolean" {
27639
27687
  protected renderElement(): JSX.Element;
27640
27688
  }
27641
27689
  }
27642
- declare module "react/boolean-checkbox" {
27643
- import { SurveyQuestionBoolean } from "react/boolean";
27690
+ declare module "packages/survey-react-ui/src/boolean-checkbox" {
27691
+ import { SurveyQuestionBoolean } from "packages/survey-react-ui/src/boolean";
27644
27692
  export class SurveyQuestionBooleanCheckbox extends SurveyQuestionBoolean {
27645
27693
  constructor(props: any);
27646
27694
  protected renderElement(): JSX.Element;
27647
27695
  }
27648
27696
  }
27649
- declare module "react/boolean-radio" {
27650
- import { SurveyQuestionBoolean } from "react/boolean";
27697
+ declare module "packages/survey-react-ui/src/boolean-radio" {
27698
+ import { SurveyQuestionBoolean } from "packages/survey-react-ui/src/boolean";
27651
27699
  export class SurveyQuestionBooleanRadio extends SurveyQuestionBoolean {
27652
27700
  constructor(props: any);
27653
27701
  private renderRadioItem;
@@ -27655,18 +27703,18 @@ declare module "react/boolean-radio" {
27655
27703
  protected renderElement(): JSX.Element;
27656
27704
  }
27657
27705
  }
27658
- declare module "react/reactquestion_empty" {
27659
- import { SurveyQuestionElementBase } from "react/reactquestion_element";
27660
- import { QuestionEmptyModel } from "entries/core";
27706
+ declare module "packages/survey-react-ui/src/reactquestion_empty" {
27707
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27708
+ import { QuestionEmptyModel } from "src/entries/core";
27661
27709
  export class SurveyQuestionEmpty extends SurveyQuestionElementBase {
27662
27710
  constructor(props: any);
27663
27711
  protected get question(): QuestionEmptyModel;
27664
27712
  protected renderElement(): JSX.Element;
27665
27713
  }
27666
27714
  }
27667
- declare module "react/components/matrix/row" {
27668
- import { QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownModelBase } from "entries/core";
27669
- import { SurveyElementBase } from "react/reactquestion_element";
27715
+ declare module "packages/survey-react-ui/src/components/matrix/row" {
27716
+ import { QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownModelBase } from "src/entries/core";
27717
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27670
27718
  interface IMatrixRowProps {
27671
27719
  model: QuestionMatrixDropdownRenderedRow;
27672
27720
  parentMatrix: QuestionMatrixDropdownModelBase;
@@ -27684,17 +27732,17 @@ declare module "react/components/matrix/row" {
27684
27732
  render(): JSX.Element;
27685
27733
  }
27686
27734
  }
27687
- declare module "react/components/matrix-actions/drag-drop-icon/drag-drop-icon" {
27688
- import { ReactSurveyElement } from "react/reactquestion_element";
27735
+ declare module "packages/survey-react-ui/src/components/matrix-actions/drag-drop-icon/drag-drop-icon" {
27736
+ import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
27689
27737
  export class SurveyQuestionMatrixDynamicDragDropIcon extends ReactSurveyElement {
27690
27738
  private get question();
27691
27739
  protected renderElement(): JSX.Element;
27692
27740
  }
27693
27741
  }
27694
- declare module "react/reactquestion_matrixdropdownbase" {
27695
- import { SurveyQuestionElementBase } from "react/reactquestion_element";
27696
- import { SurveyQuestionAndErrorsCell } from "react/reactquestion";
27697
- import { QuestionMatrixDropdownModelBase, Question } from "entries/core";
27742
+ declare module "packages/survey-react-ui/src/reactquestion_matrixdropdownbase" {
27743
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27744
+ import { SurveyQuestionAndErrorsCell } from "packages/survey-react-ui/src/reactquestion";
27745
+ import { QuestionMatrixDropdownModelBase, Question } from "src/entries/core";
27698
27746
  export class SurveyQuestionMatrixDropdownBase extends SurveyQuestionElementBase {
27699
27747
  constructor(props: any);
27700
27748
  protected get question(): QuestionMatrixDropdownModelBase;
@@ -27721,16 +27769,16 @@ declare module "react/reactquestion_matrixdropdownbase" {
27721
27769
  private renderCellRadiogroupButton;
27722
27770
  }
27723
27771
  }
27724
- declare module "react/reactquestion_matrixdropdown" {
27725
- import { SurveyQuestionMatrixDropdownBase } from "react/reactquestion_matrixdropdownbase";
27772
+ declare module "packages/survey-react-ui/src/reactquestion_matrixdropdown" {
27773
+ import { SurveyQuestionMatrixDropdownBase } from "packages/survey-react-ui/src/reactquestion_matrixdropdownbase";
27726
27774
  export class SurveyQuestionMatrixDropdown extends SurveyQuestionMatrixDropdownBase {
27727
27775
  constructor(props: any);
27728
27776
  }
27729
27777
  }
27730
- declare module "react/reactquestion_matrixdynamic" {
27731
- import { SurveyQuestionMatrixDropdownBase } from "react/reactquestion_matrixdropdownbase";
27732
- import { QuestionMatrixDynamicModel } from "entries/core";
27733
- import { ReactSurveyElement } from "react/reactquestion_element";
27778
+ declare module "packages/survey-react-ui/src/reactquestion_matrixdynamic" {
27779
+ import { SurveyQuestionMatrixDropdownBase } from "packages/survey-react-ui/src/reactquestion_matrixdropdownbase";
27780
+ import { QuestionMatrixDynamicModel } from "src/entries/core";
27781
+ import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
27734
27782
  export class SurveyQuestionMatrixDynamic extends SurveyQuestionMatrixDropdownBase {
27735
27783
  constructor(props: any);
27736
27784
  protected get matrix(): QuestionMatrixDynamicModel;
@@ -27748,9 +27796,9 @@ declare module "react/reactquestion_matrixdynamic" {
27748
27796
  protected renderElement(): JSX.Element;
27749
27797
  }
27750
27798
  }
27751
- declare module "react/components/paneldynamic-actions/paneldynamic-add-btn" {
27752
- import { QuestionPanelDynamicModel } from "entries/core";
27753
- import { ReactSurveyElement } from "react/reactquestion_element";
27799
+ declare module "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-add-btn" {
27800
+ import { QuestionPanelDynamicModel } from "src/entries/core";
27801
+ import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
27754
27802
  export class SurveyQuestionPanelDynamicAction extends ReactSurveyElement {
27755
27803
  constructor(props: any);
27756
27804
  protected get data(): any;
@@ -27761,30 +27809,30 @@ declare module "react/components/paneldynamic-actions/paneldynamic-add-btn" {
27761
27809
  protected renderElement(): JSX.Element | null;
27762
27810
  }
27763
27811
  }
27764
- declare module "react/components/paneldynamic-actions/paneldynamic-next-btn" {
27765
- import { SurveyQuestionPanelDynamicAction } from "react/components/paneldynamic-actions/paneldynamic-add-btn";
27812
+ declare module "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-next-btn" {
27813
+ import { SurveyQuestionPanelDynamicAction } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-add-btn";
27766
27814
  export class SurveyQuestionPanelDynamicNextButton extends SurveyQuestionPanelDynamicAction {
27767
27815
  protected handleClick: (event: any) => void;
27768
27816
  protected renderElement(): JSX.Element;
27769
27817
  }
27770
27818
  }
27771
- declare module "react/components/paneldynamic-actions/paneldynamic-prev-btn" {
27772
- import { SurveyQuestionPanelDynamicAction } from "react/components/paneldynamic-actions/paneldynamic-add-btn";
27819
+ declare module "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-prev-btn" {
27820
+ import { SurveyQuestionPanelDynamicAction } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-add-btn";
27773
27821
  export class SurveyQuestionPanelDynamicPrevButton extends SurveyQuestionPanelDynamicAction {
27774
27822
  protected handleClick: (event: any) => void;
27775
27823
  protected renderElement(): JSX.Element;
27776
27824
  }
27777
27825
  }
27778
- declare module "react/components/paneldynamic-actions/paneldynamic-progress-text" {
27779
- import { SurveyQuestionPanelDynamicAction } from "react/components/paneldynamic-actions/paneldynamic-add-btn";
27826
+ declare module "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-progress-text" {
27827
+ import { SurveyQuestionPanelDynamicAction } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-add-btn";
27780
27828
  export class SurveyQuestionPanelDynamicProgressText extends SurveyQuestionPanelDynamicAction {
27781
27829
  protected renderElement(): JSX.Element;
27782
27830
  }
27783
27831
  }
27784
- declare module "react/reactquestion_paneldynamic" {
27785
- import { SurveyQuestionElementBase } from "react/reactquestion_element";
27786
- import { SurveyModel, QuestionPanelDynamicModel } from "entries/core";
27787
- import { SurveyPanel } from "react/panel";
27832
+ declare module "packages/survey-react-ui/src/reactquestion_paneldynamic" {
27833
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27834
+ import { SurveyModel, QuestionPanelDynamicModel } from "src/entries/core";
27835
+ import { SurveyPanel } from "packages/survey-react-ui/src/panel";
27788
27836
  export class SurveyQuestionPanelDynamic extends SurveyQuestionElementBase {
27789
27837
  constructor(props: any);
27790
27838
  protected get question(): QuestionPanelDynamicModel;
@@ -27810,8 +27858,8 @@ declare module "react/reactquestion_paneldynamic" {
27810
27858
  protected renderButton(): JSX.Element | null;
27811
27859
  }
27812
27860
  }
27813
- declare module "react/progress" {
27814
- import { SurveyNavigationBase } from "react/reactSurveyNavigationBase";
27861
+ declare module "packages/survey-react-ui/src/progress" {
27862
+ import { SurveyNavigationBase } from "packages/survey-react-ui/src/reactSurveyNavigationBase";
27815
27863
  export class SurveyProgress extends SurveyNavigationBase {
27816
27864
  constructor(props: any);
27817
27865
  protected get isTop(): boolean;
@@ -27820,9 +27868,9 @@ declare module "react/progress" {
27820
27868
  render(): JSX.Element;
27821
27869
  }
27822
27870
  }
27823
- declare module "react/progressButtons" {
27824
- import { ProgressButtons, PageModel, IProgressButtonsViewModel } from "entries/core";
27825
- import { SurveyNavigationBase } from "react/reactSurveyNavigationBase";
27871
+ declare module "packages/survey-react-ui/src/progressButtons" {
27872
+ import { ProgressButtons, PageModel, IProgressButtonsViewModel } from "src/entries/core";
27873
+ import { SurveyNavigationBase } from "packages/survey-react-ui/src/reactSurveyNavigationBase";
27826
27874
  export class SurveyProgressButtons extends SurveyNavigationBase implements IProgressButtonsViewModel {
27827
27875
  private respManager;
27828
27876
  private listContainerRef;
@@ -27840,9 +27888,9 @@ declare module "react/progressButtons" {
27840
27888
  componentWillUnmount(): void;
27841
27889
  }
27842
27890
  }
27843
- declare module "react/components/list/list-item" {
27844
- import { ListModel } from "entries/core";
27845
- import { SurveyElementBase } from "react/reactquestion_element";
27891
+ declare module "packages/survey-react-ui/src/components/list/list-item" {
27892
+ import { ListModel } from "src/entries/core";
27893
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27846
27894
  interface IListItemProps {
27847
27895
  model: ListModel;
27848
27896
  item: any;
@@ -27856,9 +27904,9 @@ declare module "react/components/list/list-item" {
27856
27904
  componentDidMount(): void;
27857
27905
  }
27858
27906
  }
27859
- declare module "react/components/list/list" {
27860
- import { ListModel } from "entries/core";
27861
- import { SurveyElementBase } from "react/reactquestion_element";
27907
+ declare module "packages/survey-react-ui/src/components/list/list" {
27908
+ import { ListModel } from "src/entries/core";
27909
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27862
27910
  interface IListProps {
27863
27911
  model: ListModel;
27864
27912
  }
@@ -27879,15 +27927,15 @@ declare module "react/components/list/list" {
27879
27927
  emptyContent(): JSX.Element;
27880
27928
  }
27881
27929
  }
27882
- declare module "react/progressToc" {
27883
- import { SurveyNavigationBase } from "react/reactSurveyNavigationBase";
27930
+ declare module "packages/survey-react-ui/src/progressToc" {
27931
+ import { SurveyNavigationBase } from "packages/survey-react-ui/src/reactSurveyNavigationBase";
27884
27932
  export class SurveyProgressToc extends SurveyNavigationBase {
27885
27933
  render(): JSX.Element;
27886
27934
  }
27887
27935
  }
27888
- declare module "react/reactquestion_rating" {
27889
- import { SurveyQuestionElementBase } from "react/reactquestion_element";
27890
- import { QuestionRatingModel } from "entries/core";
27936
+ declare module "packages/survey-react-ui/src/reactquestion_rating" {
27937
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27938
+ import { QuestionRatingModel } from "src/entries/core";
27891
27939
  export class SurveyQuestionRating extends SurveyQuestionElementBase {
27892
27940
  constructor(props: any);
27893
27941
  protected get question(): QuestionRatingModel;
@@ -27896,27 +27944,27 @@ declare module "react/reactquestion_rating" {
27896
27944
  protected renderElement(): JSX.Element;
27897
27945
  }
27898
27946
  }
27899
- declare module "react/rating-dropdown" {
27900
- import { QuestionRatingModel } from "entries/core";
27901
- import { SurveyQuestionDropdownBase } from "react/dropdown-base";
27902
- export * from "react/components/rating/rating-dropdown-item";
27947
+ declare module "packages/survey-react-ui/src/rating-dropdown" {
27948
+ import { QuestionRatingModel } from "src/entries/core";
27949
+ import { SurveyQuestionDropdownBase } from "packages/survey-react-ui/src/dropdown-base";
27950
+ export * from "packages/survey-react-ui/src/components/rating/rating-dropdown-item";
27903
27951
  export class SurveyQuestionRatingDropdown extends SurveyQuestionDropdownBase<QuestionRatingModel> {
27904
27952
  constructor(props: any);
27905
27953
  protected renderElement(): JSX.Element;
27906
27954
  }
27907
27955
  }
27908
- declare module "react/reactquestion_expression" {
27909
- import { SurveyQuestionElementBase } from "react/reactquestion_element";
27910
- import { QuestionExpressionModel } from "entries/core";
27956
+ declare module "packages/survey-react-ui/src/reactquestion_expression" {
27957
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27958
+ import { QuestionExpressionModel } from "src/entries/core";
27911
27959
  export class SurveyQuestionExpression extends SurveyQuestionElementBase {
27912
27960
  constructor(props: any);
27913
27961
  protected get question(): QuestionExpressionModel;
27914
27962
  protected renderElement(): JSX.Element;
27915
27963
  }
27916
27964
  }
27917
- declare module "react/react-popup-survey" {
27918
- import { Base, PopupSurveyModel } from "entries/core";
27919
- import { Survey } from "react/reactSurvey";
27965
+ declare module "packages/survey-react-ui/src/react-popup-survey" {
27966
+ import { Base, PopupSurveyModel } from "src/entries/core";
27967
+ import { Survey } from "packages/survey-react-ui/src/reactSurvey";
27920
27968
  export class PopupSurvey extends Survey {
27921
27969
  protected popup: PopupSurveyModel;
27922
27970
  constructor(props: any);
@@ -27939,9 +27987,9 @@ declare module "react/react-popup-survey" {
27939
27987
  export class SurveyWindow extends PopupSurvey {
27940
27988
  }
27941
27989
  }
27942
- declare module "react/imagepicker" {
27943
- import { ReactSurveyElement, SurveyQuestionElementBase } from "react/reactquestion_element";
27944
- import { QuestionImagePickerModel, ImageItemValue } from "entries/core";
27990
+ declare module "packages/survey-react-ui/src/imagepicker" {
27991
+ import { ReactSurveyElement, SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27992
+ import { QuestionImagePickerModel, ImageItemValue } from "src/entries/core";
27945
27993
  export class SurveyQuestionImagePicker extends SurveyQuestionElementBase {
27946
27994
  constructor(props: any);
27947
27995
  protected get question(): QuestionImagePickerModel;
@@ -27965,9 +28013,9 @@ declare module "react/imagepicker" {
27965
28013
  protected renderElement(): JSX.Element;
27966
28014
  }
27967
28015
  }
27968
- declare module "react/image" {
27969
- import { SurveyQuestionElementBase } from "react/reactquestion_element";
27970
- import { QuestionImageModel } from "entries/core";
28016
+ declare module "packages/survey-react-ui/src/image" {
28017
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
28018
+ import { QuestionImageModel } from "src/entries/core";
27971
28019
  export class SurveyQuestionImage extends SurveyQuestionElementBase {
27972
28020
  constructor(props: any);
27973
28021
  componentDidMount(): void;
@@ -27976,9 +28024,9 @@ declare module "react/image" {
27976
28024
  protected renderElement(): JSX.Element;
27977
28025
  }
27978
28026
  }
27979
- declare module "react/signaturepad" {
27980
- import { SurveyQuestionElementBase } from "react/reactquestion_element";
27981
- import { QuestionSignaturePadModel } from "entries/core";
28027
+ declare module "packages/survey-react-ui/src/signaturepad" {
28028
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
28029
+ import { QuestionSignaturePadModel } from "src/entries/core";
27982
28030
  export class SurveyQuestionSignaturePad extends SurveyQuestionElementBase {
27983
28031
  constructor(props: any);
27984
28032
  protected get question(): QuestionSignaturePadModel;
@@ -27988,10 +28036,10 @@ declare module "react/signaturepad" {
27988
28036
  renderCleanButton(): JSX.Element | null;
27989
28037
  }
27990
28038
  }
27991
- declare module "react/reactquestion_buttongroup" {
27992
- import { SurveyQuestionElementBase } from "react/reactquestion_element";
27993
- import { SurveyElementBase } from "react/reactquestion_element";
27994
- import { QuestionButtonGroupModel, ButtonGroupItemValue, ButtonGroupItemModel } from "entries/core";
28039
+ declare module "packages/survey-react-ui/src/reactquestion_buttongroup" {
28040
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
28041
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
28042
+ import { QuestionButtonGroupModel, ButtonGroupItemValue, ButtonGroupItemModel } from "src/entries/core";
27995
28043
  export class SurveyQuestionButtonGroup extends SurveyQuestionElementBase {
27996
28044
  constructor(props: any);
27997
28045
  protected get question(): QuestionButtonGroupModel;
@@ -28012,9 +28060,9 @@ declare module "react/reactquestion_buttongroup" {
28012
28060
  protected renderCaption(): JSX.Element;
28013
28061
  }
28014
28062
  }
28015
- declare module "react/reactquestion_custom" {
28016
- import { SurveyQuestionUncontrolledElement } from "react/reactquestion_element";
28017
- import { Base, QuestionCustomModel, QuestionCompositeModel } from "entries/core";
28063
+ declare module "packages/survey-react-ui/src/reactquestion_custom" {
28064
+ import { SurveyQuestionUncontrolledElement } from "packages/survey-react-ui/src/reactquestion_element";
28065
+ import { Base, QuestionCustomModel, QuestionCompositeModel } from "src/entries/core";
28018
28066
  export class SurveyQuestionCustom extends SurveyQuestionUncontrolledElement<QuestionCustomModel> {
28019
28067
  constructor(props: any);
28020
28068
  protected getStateElements(): Array<Base>;
@@ -28026,9 +28074,9 @@ declare module "react/reactquestion_custom" {
28026
28074
  protected renderElement(): JSX.Element;
28027
28075
  }
28028
28076
  }
28029
- declare module "react/components/list/list-item-content" {
28030
- import { ListModel } from "entries/core";
28031
- import { SurveyElementBase } from "react/reactquestion_element";
28077
+ declare module "packages/survey-react-ui/src/components/list/list-item-content" {
28078
+ import { ListModel } from "src/entries/core";
28079
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
28032
28080
  interface IListItemProps {
28033
28081
  model: ListModel;
28034
28082
  item: any;
@@ -28040,9 +28088,9 @@ declare module "react/components/list/list-item-content" {
28040
28088
  render(): JSX.Element | null;
28041
28089
  }
28042
28090
  }
28043
- declare module "react/components/list/list-item-group" {
28044
- import { ListModel } from "entries/core";
28045
- import { SurveyElementBase } from "react/reactquestion_element";
28091
+ declare module "packages/survey-react-ui/src/components/list/list-item-group" {
28092
+ import { ListModel } from "src/entries/core";
28093
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
28046
28094
  interface IListItemProps {
28047
28095
  model: ListModel;
28048
28096
  item: any;
@@ -28054,9 +28102,9 @@ declare module "react/components/list/list-item-group" {
28054
28102
  render(): JSX.Element | null;
28055
28103
  }
28056
28104
  }
28057
- declare module "react/components/survey-header/logo-image" {
28105
+ declare module "packages/survey-react-ui/src/components/survey-header/logo-image" {
28058
28106
  import React from "react";
28059
- import { SurveyModel } from "entries/core";
28107
+ import { SurveyModel } from "src/entries/core";
28060
28108
  interface ILogoImageProps {
28061
28109
  data: SurveyModel;
28062
28110
  }
@@ -28066,8 +28114,8 @@ declare module "react/components/survey-header/logo-image" {
28066
28114
  render(): JSX.Element;
28067
28115
  }
28068
28116
  }
28069
- declare module "react/components/matrix-actions/remove-button/remove-button" {
28070
- import { ReactSurveyElement } from "react/reactquestion_element";
28117
+ declare module "packages/survey-react-ui/src/components/matrix-actions/remove-button/remove-button" {
28118
+ import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
28071
28119
  export class SurveyQuestionMatrixDynamicRemoveButton extends ReactSurveyElement {
28072
28120
  constructor(props: any);
28073
28121
  private get question();
@@ -28076,9 +28124,9 @@ declare module "react/components/matrix-actions/remove-button/remove-button" {
28076
28124
  protected renderElement(): JSX.Element;
28077
28125
  }
28078
28126
  }
28079
- declare module "react/components/matrix-actions/detail-button/detail-button" {
28080
- import { Action } from "entries/core";
28081
- import { ReactSurveyElement } from "react/reactquestion_element";
28127
+ declare module "packages/survey-react-ui/src/components/matrix-actions/detail-button/detail-button" {
28128
+ import { Action } from "src/entries/core";
28129
+ import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
28082
28130
  export class SurveyQuestionMatrixDetailButton extends ReactSurveyElement {
28083
28131
  constructor(props: any);
28084
28132
  protected getStateElement(): any;
@@ -28089,25 +28137,25 @@ declare module "react/components/matrix-actions/detail-button/detail-button" {
28089
28137
  protected renderElement(): JSX.Element;
28090
28138
  }
28091
28139
  }
28092
- declare module "react/components/paneldynamic-actions/paneldynamic-remove-btn" {
28093
- import { SurveyQuestionPanelDynamicAction } from "react/components/paneldynamic-actions/paneldynamic-add-btn";
28140
+ declare module "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-remove-btn" {
28141
+ import { SurveyQuestionPanelDynamicAction } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-add-btn";
28094
28142
  export class SurveyQuestionPanelDynamicRemoveButton extends SurveyQuestionPanelDynamicAction {
28095
28143
  protected handleClick: (event: any) => void;
28096
28144
  protected renderElement(): JSX.Element;
28097
28145
  }
28098
28146
  }
28099
- declare module "react/components/survey-actions/survey-nav-button" {
28100
- import { Action } from "entries/core";
28101
- import { ReactSurveyElement } from "react/reactquestion_element";
28147
+ declare module "packages/survey-react-ui/src/components/survey-actions/survey-nav-button" {
28148
+ import { Action } from "src/entries/core";
28149
+ import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
28102
28150
  export class SurveyNavigationButton extends ReactSurveyElement {
28103
28151
  protected get item(): Action;
28104
28152
  protected canRender(): boolean;
28105
28153
  protected renderElement(): JSX.Element;
28106
28154
  }
28107
28155
  }
28108
- declare module "react/components/question-error" {
28156
+ declare module "packages/survey-react-ui/src/components/question-error" {
28109
28157
  import React from "react";
28110
- import { SurveyError } from "entries/core";
28158
+ import { SurveyError } from "src/entries/core";
28111
28159
  export interface IQuestionErrorComponentProps {
28112
28160
  error: SurveyError;
28113
28161
  cssClasses: any;
@@ -28117,16 +28165,16 @@ declare module "react/components/question-error" {
28117
28165
  render(): JSX.Element | null;
28118
28166
  }
28119
28167
  }
28120
- declare module "react/components/skeleton" {
28168
+ declare module "packages/survey-react-ui/src/components/skeleton" {
28121
28169
  import React from "react";
28122
28170
  export class Skeleton extends React.Component<any, any> {
28123
28171
  render(): JSX.Element;
28124
28172
  }
28125
28173
  }
28126
- declare module "react/components/header" {
28174
+ declare module "packages/survey-react-ui/src/components/header" {
28127
28175
  import React from "react";
28128
- import { Base, SurveyModel, Cover, CoverCell } from "entries/core";
28129
- import { SurveyElementBase } from "react/reactquestion_element";
28176
+ import { Base, SurveyModel, Cover, CoverCell } from "src/entries/core";
28177
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
28130
28178
  export interface ILayoutElementProps<T = Base> {
28131
28179
  survey: SurveyModel;
28132
28180
  model: T;
@@ -28147,7 +28195,7 @@ declare module "react/components/header" {
28147
28195
  renderElement(): JSX.Element | null;
28148
28196
  }
28149
28197
  }
28150
- declare module "react/string-editor" {
28198
+ declare module "packages/survey-react-ui/src/string-editor" {
28151
28199
  import React from "react";
28152
28200
  export class SurveyLocStringEditor extends React.Component<any, any> {
28153
28201
  constructor(props: any);
@@ -28160,97 +28208,98 @@ declare module "react/string-editor" {
28160
28208
  render(): JSX.Element | null;
28161
28209
  }
28162
28210
  }
28163
- declare module "entries/react-ui-model" {
28164
- export { Survey, attachKey2click } from "react/reactSurvey";
28165
- export { ReactSurveyElementsWrapper } from "react/reactsurveymodel";
28166
- export { SurveyNavigationBase } from "react/reactSurveyNavigationBase";
28167
- export { SurveyTimerPanel } from "react/reacttimerpanel";
28168
- export { SurveyPage } from "react/page";
28169
- export { SurveyRow } from "react/row";
28170
- export { SurveyPanel } from "react/panel";
28171
- export { SurveyFlowPanel } from "react/flow-panel";
28172
- export { SurveyQuestion, SurveyElementErrors, SurveyQuestionAndErrorsCell, ISurveyCreator } from "react/reactquestion";
28173
- export { ReactSurveyElement, SurveyElementBase, SurveyQuestionElementBase, } from "react/reactquestion_element";
28174
- export { SurveyQuestionCommentItem, SurveyQuestionComment, } from "react/reactquestion_comment";
28175
- export { SurveyQuestionCheckbox, SurveyQuestionCheckboxItem, } from "react/reactquestion_checkbox";
28176
- export { SurveyQuestionRanking, SurveyQuestionRankingItem, SurveyQuestionRankingItemContent } from "react/reactquestion_ranking";
28177
- export { RatingItem } from "react/components/rating/rating-item";
28178
- export { RatingItemStar } from "react/components/rating/rating-item-star";
28179
- export { RatingItemSmiley } from "react/components/rating/rating-item-smiley";
28180
- export { RatingDropdownItem } from "react/components/rating/rating-dropdown-item";
28181
- export { TagboxFilterString } from "react/tagbox-filter";
28182
- export { SurveyQuestionOptionItem } from "react/dropdown-item";
28183
- export { SurveyQuestionDropdownBase } from "react/dropdown-base";
28184
- export { SurveyQuestionDropdown } from "react/reactquestion_dropdown";
28185
- export { SurveyQuestionTagboxItem } from "react/tagbox-item";
28186
- export { SurveyQuestionTagbox } from "react/reactquestion_tagbox";
28187
- export { SurveyQuestionDropdownSelect } from "react/dropdown-select";
28188
- export { SurveyQuestionMatrix, SurveyQuestionMatrixRow, SurveyQuestionMatrixCell } from "react/reactquestion_matrix";
28189
- export { SurveyQuestionHtml } from "react/reactquestion_html";
28190
- export { SurveyQuestionFile } from "react/reactquestion_file";
28191
- export { SurveyFileChooseButton } from "react/components/file/file-choose-button";
28192
- export { SurveyFilePreview } from "react/components/file/file-preview";
28193
- export { SurveyQuestionMultipleText } from "react/reactquestion_multipletext";
28194
- export { SurveyQuestionRadiogroup, SurveyQuestionRadioItem } from "react/reactquestion_radiogroup";
28195
- export { SurveyQuestionText } from "react/reactquestion_text";
28196
- export { SurveyQuestionBoolean } from "react/boolean";
28197
- export { SurveyQuestionBooleanCheckbox } from "react/boolean-checkbox";
28198
- export { SurveyQuestionBooleanRadio } from "react/boolean-radio";
28199
- export { SurveyQuestionEmpty } from "react/reactquestion_empty";
28200
- export { SurveyQuestionMatrixDropdownCell, SurveyQuestionMatrixDropdownBase } from "react/reactquestion_matrixdropdownbase";
28201
- export { SurveyQuestionMatrixDropdown } from "react/reactquestion_matrixdropdown";
28202
- export { SurveyQuestionMatrixDynamic, SurveyQuestionMatrixDynamicAddButton } from "react/reactquestion_matrixdynamic";
28203
- export { SurveyQuestionPanelDynamic } from "react/reactquestion_paneldynamic";
28204
- export { SurveyProgress } from "react/progress";
28205
- export { SurveyProgressButtons } from "react/progressButtons";
28206
- export { SurveyProgressToc } from "react/progressToc";
28207
- export { SurveyQuestionRating } from "react/reactquestion_rating";
28208
- export { SurveyQuestionRatingDropdown } from "react/rating-dropdown";
28209
- export { SurveyQuestionExpression } from "react/reactquestion_expression";
28210
- export { PopupSurvey, SurveyWindow } from "react/react-popup-survey";
28211
- export { ReactQuestionFactory } from "react/reactquestion_factory";
28212
- export { ReactElementFactory } from "react/element-factory";
28213
- export { SurveyQuestionImagePicker } from "react/imagepicker";
28214
- export { SurveyQuestionImage } from "react/image";
28215
- export { SurveyQuestionSignaturePad } from "react/signaturepad";
28216
- export { SurveyQuestionButtonGroup } from "react/reactquestion_buttongroup";
28217
- export { SurveyQuestionCustom, SurveyQuestionComposite } from "react/reactquestion_custom";
28218
- export { Popup } from "react/components/popup/popup";
28219
- export { ListItemContent } from "react/components/list/list-item-content";
28220
- export { ListItemGroup } from "react/components/list/list-item-group";
28221
- export { List } from "react/components/list/list";
28222
- export { TitleActions } from "react/components/title/title-actions";
28223
- export { TitleElement } from "react/components/title/title-element";
28224
- export { SurveyActionBar } from "react/components/action-bar/action-bar";
28225
- export { LogoImage } from "react/components/survey-header/logo-image";
28226
- export { SurveyHeader } from "react/components/survey-header/survey-header";
28227
- export { SvgIcon } from "react/components/svg-icon/svg-icon";
28228
- export { SurveyQuestionMatrixDynamicRemoveButton } from "react/components/matrix-actions/remove-button/remove-button";
28229
- export { SurveyQuestionMatrixDetailButton } from "react/components/matrix-actions/detail-button/detail-button";
28230
- export { SurveyQuestionMatrixDynamicDragDropIcon } from "react/components/matrix-actions/drag-drop-icon/drag-drop-icon";
28231
- export { SurveyQuestionPanelDynamicAddButton } from "react/components/paneldynamic-actions/paneldynamic-add-btn";
28232
- export { SurveyQuestionPanelDynamicRemoveButton } from "react/components/paneldynamic-actions/paneldynamic-remove-btn";
28233
- export { SurveyQuestionPanelDynamicPrevButton } from "react/components/paneldynamic-actions/paneldynamic-prev-btn";
28234
- export { SurveyQuestionPanelDynamicNextButton } from "react/components/paneldynamic-actions/paneldynamic-next-btn";
28235
- export { SurveyQuestionPanelDynamicProgressText } from "react/components/paneldynamic-actions/paneldynamic-progress-text";
28236
- export { SurveyNavigationButton } from "react/components/survey-actions/survey-nav-button";
28237
- export { QuestionErrorComponent } from "react/components/question-error";
28238
- export { MatrixRow } from "react/components/matrix/row";
28239
- export { Skeleton } from "react/components/skeleton";
28240
- export { NotifierComponent } from "react/components/notifier";
28241
- export { ComponentsContainer } from "react/components/components-container";
28242
- export { CharacterCounterComponent } from "react/components/character-counter";
28243
- export * from "react/components/header";
28244
- export { SurveyLocStringViewer } from "react/string-viewer";
28245
- export { SurveyLocStringEditor } from "react/string-editor";
28246
- export { LoadingIndicatorComponent } from "react/components/loading-indicator";
28247
- export { SvgBundleComponent } from "react/svgbundle";
28248
- }
28249
- declare module "entries/react" {
28250
- export * from "entries/core";
28251
- export * from "entries/plugins";
28252
- import "entries/chunks/localization";
28253
- export * from "entries/react-ui-model";
28211
+ declare module "packages/survey-react-ui/entries/react-ui-model" {
28212
+ export { Survey, attachKey2click } from "packages/survey-react-ui/src/reactSurvey";
28213
+ export { ReactSurveyElementsWrapper } from "packages/survey-react-ui/src/reactsurveymodel";
28214
+ export { SurveyNavigationBase } from "packages/survey-react-ui/src/reactSurveyNavigationBase";
28215
+ export { SurveyTimerPanel } from "packages/survey-react-ui/src/reacttimerpanel";
28216
+ export { SurveyPage } from "packages/survey-react-ui/src/page";
28217
+ export { SurveyRow } from "packages/survey-react-ui/src/row";
28218
+ export { SurveyPanel } from "packages/survey-react-ui/src/panel";
28219
+ export { SurveyFlowPanel } from "packages/survey-react-ui/src/flow-panel";
28220
+ export { SurveyQuestion, SurveyElementErrors, SurveyQuestionAndErrorsCell, } from "packages/survey-react-ui/src/reactquestion";
28221
+ export type { ISurveyCreator } from "packages/survey-react-ui/src/reactquestion";
28222
+ export { ReactSurveyElement, SurveyElementBase, SurveyQuestionElementBase, } from "packages/survey-react-ui/src/reactquestion_element";
28223
+ export { SurveyQuestionCommentItem, SurveyQuestionComment, } from "packages/survey-react-ui/src/reactquestion_comment";
28224
+ export { SurveyQuestionCheckbox, SurveyQuestionCheckboxItem, } from "packages/survey-react-ui/src/reactquestion_checkbox";
28225
+ export { SurveyQuestionRanking, SurveyQuestionRankingItem, SurveyQuestionRankingItemContent } from "packages/survey-react-ui/src/reactquestion_ranking";
28226
+ export { RatingItem } from "packages/survey-react-ui/src/components/rating/rating-item";
28227
+ export { RatingItemStar } from "packages/survey-react-ui/src/components/rating/rating-item-star";
28228
+ export { RatingItemSmiley } from "packages/survey-react-ui/src/components/rating/rating-item-smiley";
28229
+ export { RatingDropdownItem } from "packages/survey-react-ui/src/components/rating/rating-dropdown-item";
28230
+ export { TagboxFilterString } from "packages/survey-react-ui/src/tagbox-filter";
28231
+ export { SurveyQuestionOptionItem } from "packages/survey-react-ui/src/dropdown-item";
28232
+ export { SurveyQuestionDropdownBase } from "packages/survey-react-ui/src/dropdown-base";
28233
+ export { SurveyQuestionDropdown } from "packages/survey-react-ui/src/reactquestion_dropdown";
28234
+ export { SurveyQuestionTagboxItem } from "packages/survey-react-ui/src/tagbox-item";
28235
+ export { SurveyQuestionTagbox } from "packages/survey-react-ui/src/reactquestion_tagbox";
28236
+ export { SurveyQuestionDropdownSelect } from "packages/survey-react-ui/src/dropdown-select";
28237
+ export { SurveyQuestionMatrix, SurveyQuestionMatrixRow, SurveyQuestionMatrixCell } from "packages/survey-react-ui/src/reactquestion_matrix";
28238
+ export { SurveyQuestionHtml } from "packages/survey-react-ui/src/reactquestion_html";
28239
+ export { SurveyQuestionFile } from "packages/survey-react-ui/src/reactquestion_file";
28240
+ export { SurveyFileChooseButton } from "packages/survey-react-ui/src/components/file/file-choose-button";
28241
+ export { SurveyFilePreview } from "packages/survey-react-ui/src/components/file/file-preview";
28242
+ export { SurveyQuestionMultipleText } from "packages/survey-react-ui/src/reactquestion_multipletext";
28243
+ export { SurveyQuestionRadiogroup, SurveyQuestionRadioItem } from "packages/survey-react-ui/src/reactquestion_radiogroup";
28244
+ export { SurveyQuestionText } from "packages/survey-react-ui/src/reactquestion_text";
28245
+ export { SurveyQuestionBoolean } from "packages/survey-react-ui/src/boolean";
28246
+ export { SurveyQuestionBooleanCheckbox } from "packages/survey-react-ui/src/boolean-checkbox";
28247
+ export { SurveyQuestionBooleanRadio } from "packages/survey-react-ui/src/boolean-radio";
28248
+ export { SurveyQuestionEmpty } from "packages/survey-react-ui/src/reactquestion_empty";
28249
+ export { SurveyQuestionMatrixDropdownCell, SurveyQuestionMatrixDropdownBase } from "packages/survey-react-ui/src/reactquestion_matrixdropdownbase";
28250
+ export { SurveyQuestionMatrixDropdown } from "packages/survey-react-ui/src/reactquestion_matrixdropdown";
28251
+ export { SurveyQuestionMatrixDynamic, SurveyQuestionMatrixDynamicAddButton } from "packages/survey-react-ui/src/reactquestion_matrixdynamic";
28252
+ export { SurveyQuestionPanelDynamic } from "packages/survey-react-ui/src/reactquestion_paneldynamic";
28253
+ export { SurveyProgress } from "packages/survey-react-ui/src/progress";
28254
+ export { SurveyProgressButtons } from "packages/survey-react-ui/src/progressButtons";
28255
+ export { SurveyProgressToc } from "packages/survey-react-ui/src/progressToc";
28256
+ export { SurveyQuestionRating } from "packages/survey-react-ui/src/reactquestion_rating";
28257
+ export { SurveyQuestionRatingDropdown } from "packages/survey-react-ui/src/rating-dropdown";
28258
+ export { SurveyQuestionExpression } from "packages/survey-react-ui/src/reactquestion_expression";
28259
+ export { PopupSurvey, SurveyWindow } from "packages/survey-react-ui/src/react-popup-survey";
28260
+ export { ReactQuestionFactory } from "packages/survey-react-ui/src/reactquestion_factory";
28261
+ export { ReactElementFactory } from "packages/survey-react-ui/src/element-factory";
28262
+ export { SurveyQuestionImagePicker } from "packages/survey-react-ui/src/imagepicker";
28263
+ export { SurveyQuestionImage } from "packages/survey-react-ui/src/image";
28264
+ export { SurveyQuestionSignaturePad } from "packages/survey-react-ui/src/signaturepad";
28265
+ export { SurveyQuestionButtonGroup } from "packages/survey-react-ui/src/reactquestion_buttongroup";
28266
+ export { SurveyQuestionCustom, SurveyQuestionComposite } from "packages/survey-react-ui/src/reactquestion_custom";
28267
+ export { Popup } from "packages/survey-react-ui/src/components/popup/popup";
28268
+ export { ListItemContent } from "packages/survey-react-ui/src/components/list/list-item-content";
28269
+ export { ListItemGroup } from "packages/survey-react-ui/src/components/list/list-item-group";
28270
+ export { List } from "packages/survey-react-ui/src/components/list/list";
28271
+ export { TitleActions } from "packages/survey-react-ui/src/components/title/title-actions";
28272
+ export { TitleElement } from "packages/survey-react-ui/src/components/title/title-element";
28273
+ export { SurveyActionBar } from "packages/survey-react-ui/src/components/action-bar/action-bar";
28274
+ export { LogoImage } from "packages/survey-react-ui/src/components/survey-header/logo-image";
28275
+ export { SurveyHeader } from "packages/survey-react-ui/src/components/survey-header/survey-header";
28276
+ export { SvgIcon } from "packages/survey-react-ui/src/components/svg-icon/svg-icon";
28277
+ export { SurveyQuestionMatrixDynamicRemoveButton } from "packages/survey-react-ui/src/components/matrix-actions/remove-button/remove-button";
28278
+ export { SurveyQuestionMatrixDetailButton } from "packages/survey-react-ui/src/components/matrix-actions/detail-button/detail-button";
28279
+ export { SurveyQuestionMatrixDynamicDragDropIcon } from "packages/survey-react-ui/src/components/matrix-actions/drag-drop-icon/drag-drop-icon";
28280
+ export { SurveyQuestionPanelDynamicAddButton } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-add-btn";
28281
+ export { SurveyQuestionPanelDynamicRemoveButton } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-remove-btn";
28282
+ export { SurveyQuestionPanelDynamicPrevButton } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-prev-btn";
28283
+ export { SurveyQuestionPanelDynamicNextButton } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-next-btn";
28284
+ export { SurveyQuestionPanelDynamicProgressText } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-progress-text";
28285
+ export { SurveyNavigationButton } from "packages/survey-react-ui/src/components/survey-actions/survey-nav-button";
28286
+ export { QuestionErrorComponent } from "packages/survey-react-ui/src/components/question-error";
28287
+ export { MatrixRow } from "packages/survey-react-ui/src/components/matrix/row";
28288
+ export { Skeleton } from "packages/survey-react-ui/src/components/skeleton";
28289
+ export { NotifierComponent } from "packages/survey-react-ui/src/components/notifier";
28290
+ export { ComponentsContainer } from "packages/survey-react-ui/src/components/components-container";
28291
+ export { CharacterCounterComponent } from "packages/survey-react-ui/src/components/character-counter";
28292
+ export * from "packages/survey-react-ui/src/components/header";
28293
+ export { SurveyLocStringViewer } from "packages/survey-react-ui/src/string-viewer";
28294
+ export { SurveyLocStringEditor } from "packages/survey-react-ui/src/string-editor";
28295
+ export { LoadingIndicatorComponent } from "packages/survey-react-ui/src/components/loading-indicator";
28296
+ export { SvgBundleComponent } from "packages/survey-react-ui/src/svgbundle";
28297
+ }
28298
+ declare module "src/entries/react" {
28299
+ export * from "src/entries/core";
28300
+ export * from "src/entries/plugins";
28301
+ import "src/entries/chunks/localization";
28302
+ export * from "packages/survey-react-ui/entries/react-ui-model";
28254
28303
  }
28255
28304
 
28256
- declare module "survey-react" { import main = require("entries/react"); export = main; }
28305
+ declare module "survey-react" { import main = require("src/entries/react"); export = main; }