survey-react 1.11.10 → 1.11.12

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;
@@ -3405,6 +3406,7 @@ declare module "panel" {
3405
3406
  */
3406
3407
  getElementByName(name: string): IElement;
3407
3408
  getQuestionByValueName(valueName: string): Question;
3409
+ getQuestionsByValueName(valueName: string): Array<Question>;
3408
3410
  /**
3409
3411
  * Returns a JSON object with question values nested in the panel/page.
3410
3412
  * @see getDisplayValue
@@ -3704,6 +3706,7 @@ declare module "panel" {
3704
3706
  private calcHasTextInTitle;
3705
3707
  onSurveyLoad(): void;
3706
3708
  protected onSetData(): void;
3709
+ get cssHeader(): string;
3707
3710
  get isPanel(): boolean;
3708
3711
  /**
3709
3712
  * Returns a page to which the panel belongs and allows you to move this panel to a different page.
@@ -3815,7 +3818,7 @@ declare module "panel" {
3815
3818
  getContainerCss(): string;
3816
3819
  }
3817
3820
  }
3818
- declare module "utils/camera" {
3821
+ declare module "packages/survey-core/src/utils/camera" {
3819
3822
  export class Camera {
3820
3823
  static mediaDevicesCallback: ((callback: (devices: Array<MediaDeviceInfo>) => void) => void) | undefined;
3821
3824
  static clear(): void;
@@ -3844,15 +3847,15 @@ declare module "utils/camera" {
3844
3847
  private setVideoInputs;
3845
3848
  }
3846
3849
  }
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";
3850
+ declare module "packages/survey-core/src/question_file" {
3851
+ import { IPlainDataOptions } from "packages/survey-core/src/base-interfaces";
3852
+ import { IQuestionPlainData, Question } from "packages/survey-core/src/question";
3853
+ import { EventBase } from "packages/survey-core/src/base";
3854
+ import { SurveyError } from "packages/survey-core/src/survey-error";
3855
+ import { ActionContainer } from "packages/survey-core/src/actions/container";
3856
+ import { Action } from "packages/survey-core/src/actions/action";
3857
+ import { Camera } from "packages/survey-core/src/utils/camera";
3858
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
3856
3859
  export function dataUrl2File(dataUrl: string, fileName: string, type: string): File;
3857
3860
  /**
3858
3861
  * A base class for question types that support file upload: `QuestionFileModel` and `QuestionSignaturePadModel`.
@@ -4127,11 +4130,11 @@ declare module "question_file" {
4127
4130
  dispose(): void;
4128
4131
  }
4129
4132
  }
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";
4133
+ declare module "packages/survey-core/src/choicesRestful" {
4134
+ import { Base } from "packages/survey-core/src/base";
4135
+ import { ITextProcessor, IQuestion, ISurvey } from "packages/survey-core/src/base-interfaces";
4136
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
4137
+ import { SurveyError } from "packages/survey-core/src/survey-error";
4135
4138
  /**
4136
4139
  * 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
4140
  *
@@ -4305,14 +4308,14 @@ declare module "choicesRestful" {
4305
4308
  }) => void);
4306
4309
  }
4307
4310
  }
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";
4311
+ declare module "packages/survey-core/src/question_baseselect" {
4312
+ import { SurveyError } from "packages/survey-core/src/survey-error";
4313
+ import { ISurveyImpl, ISurvey, ISurveyData, IPlainDataOptions } from "packages/survey-core/src/base-interfaces";
4314
+ import { IQuestionPlainData, Question } from "packages/survey-core/src/question";
4315
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
4316
+ import { ChoicesRestful } from "packages/survey-core/src/choicesRestful";
4317
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
4318
+ import { HashTable } from "packages/survey-core/src/helpers";
4316
4319
  /**
4317
4320
  * 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
4321
  */
@@ -4794,6 +4797,7 @@ declare module "question_baseselect" {
4794
4797
  get hasHeadItems(): boolean;
4795
4798
  get hasFootItems(): boolean;
4796
4799
  get columns(): any[];
4800
+ getItemsColumnKey(itemsColumn: Array<ItemValue>): string;
4797
4801
  get hasColumns(): boolean;
4798
4802
  get rowLayout(): boolean;
4799
4803
  get blockedRow(): boolean;
@@ -4847,11 +4851,11 @@ declare module "question_baseselect" {
4847
4851
  protected getSearchableItemValueKeys(keys: Array<string>): void;
4848
4852
  }
4849
4853
  }
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";
4854
+ declare module "packages/survey-core/src/validator" {
4855
+ import { Base } from "packages/survey-core/src/base";
4856
+ import { ISurveyErrorOwner, ISurvey } from "packages/survey-core/src/base-interfaces";
4857
+ import { SurveyError } from "packages/survey-core/src/survey-error";
4858
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
4855
4859
  export class ValidatorResult {
4856
4860
  value: any;
4857
4861
  error: SurveyError;
@@ -5008,10 +5012,10 @@ declare module "validator" {
5008
5012
  set expression(val: string);
5009
5013
  }
5010
5014
  }
5011
- declare module "question_expression" {
5012
- import { HashTable } from "helpers";
5013
- import { Question } from "question";
5014
- import { LocalizableString } from "localizablestring";
5015
+ declare module "packages/survey-core/src/question_expression" {
5016
+ import { HashTable } from "packages/survey-core/src/helpers";
5017
+ import { Question } from "packages/survey-core/src/question";
5018
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
5015
5019
  /**
5016
5020
  * 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
5021
  *
@@ -5120,14 +5124,14 @@ declare module "question_expression" {
5120
5124
  }
5121
5125
  export function getCurrecyCodes(): Array<string>;
5122
5126
  }
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";
5127
+ declare module "packages/survey-core/src/question_matrixdropdowncolumn" {
5128
+ import { Question } from "packages/survey-core/src/question";
5129
+ import { Base } from "packages/survey-core/src/base";
5130
+ import { ISurvey, IWrapperObject } from "packages/survey-core/src/base-interfaces";
5131
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
5132
+ import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
5133
+ import { SurveyValidator } from "packages/survey-core/src/validator";
5134
+ import { MatrixDropdownRowModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
5131
5135
  export interface IMatrixColumnOwner extends ILocalizableOwner {
5132
5136
  getRequiredText(): string;
5133
5137
  hasChoices(): boolean;
@@ -5466,7 +5470,7 @@ declare module "question_matrixdropdowncolumn" {
5466
5470
  private addProperties;
5467
5471
  }
5468
5472
  }
5469
- declare module "dragdrop/engine" {
5473
+ declare module "packages/survey-core/src/dragdrop/engine" {
5470
5474
  export interface IDragDropEngine {
5471
5475
  dragInit(event: PointerEvent, draggedElement: any, parentElement: any, draggedElementNode: HTMLElement): void;
5472
5476
  dragOver(event: PointerEvent): void;
@@ -5474,7 +5478,7 @@ declare module "dragdrop/engine" {
5474
5478
  clear(): void;
5475
5479
  }
5476
5480
  }
5477
- declare module "utils/devices" {
5481
+ declare module "packages/survey-core/src/utils/devices" {
5478
5482
  export const IsMobile: boolean;
5479
5483
  export var mouseInfo: {
5480
5484
  readonly isTouch: boolean;
@@ -5488,13 +5492,14 @@ declare module "utils/devices" {
5488
5492
  } | null) | null;
5489
5493
  export function detectMouseSupport(matchMedia: MatchMediaMethod): boolean;
5490
5494
  }
5491
- declare module "dragdrop/dom-adapter" {
5492
- import { IDragDropEngine } from "dragdrop/engine";
5495
+ declare module "packages/survey-core/src/dragdrop/dom-adapter" {
5496
+ import { IDragDropEngine } from "packages/survey-core/src/dragdrop/engine";
5493
5497
  export interface IDragDropDOMAdapter {
5494
5498
  startDrag(event: PointerEvent, draggedElement: any, parentElement: any, draggedElementNode: HTMLElement, preventSaveTargetNode: boolean): void;
5495
5499
  draggedElementShortcut: HTMLElement;
5496
5500
  rootContainer: HTMLElement;
5497
5501
  documentOrShadowRoot: Document | ShadowRoot;
5502
+ rootElement?: HTMLElement;
5498
5503
  }
5499
5504
  export class DragDropDOMAdapter implements IDragDropDOMAdapter {
5500
5505
  private dd;
@@ -5512,7 +5517,7 @@ declare module "dragdrop/dom-adapter" {
5512
5517
  private scrollIntervalId;
5513
5518
  constructor(dd: IDragDropEngine, longTap?: boolean, fitToContainer?: boolean);
5514
5519
  get documentOrShadowRoot(): Document | ShadowRoot;
5515
- private get rootElement();
5520
+ get rootElement(): any;
5516
5521
  private stopLongTapIfMoveEnough;
5517
5522
  private get isMicroMovement();
5518
5523
  private stopLongTap;
@@ -5538,12 +5543,12 @@ declare module "dragdrop/dom-adapter" {
5538
5543
  private insertNodeToParentAtIndex;
5539
5544
  }
5540
5545
  }
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";
5546
+ declare module "packages/survey-core/src/dragdrop/core" {
5547
+ import { SurveyModel } from "packages/survey-core/src/survey";
5548
+ import { EventBase } from "packages/survey-core/src/base";
5549
+ import { IShortcutText, ISurvey } from "packages/survey-core/src/base-interfaces";
5550
+ import { IDragDropEngine } from "packages/survey-core/src/dragdrop/engine";
5551
+ import { IDragDropDOMAdapter } from "packages/survey-core/src/dragdrop/dom-adapter";
5547
5552
  export abstract class DragDropCore<T> implements IDragDropEngine {
5548
5553
  private surveyValue?;
5549
5554
  private creator?;
@@ -5595,10 +5600,10 @@ declare module "dragdrop/core" {
5595
5600
  clear(): void;
5596
5601
  }
5597
5602
  }
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";
5603
+ declare module "packages/survey-core/src/dragdrop/matrix-rows" {
5604
+ import { MatrixDropdownRowModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
5605
+ import { QuestionMatrixDynamicModel, MatrixDynamicRowModel } from "packages/survey-core/src/question_matrixdynamic";
5606
+ import { DragDropCore } from "packages/survey-core/src/dragdrop/core";
5602
5607
  export class DragDropMatrixRows extends DragDropCore<QuestionMatrixDynamicModel> {
5603
5608
  protected get draggedElementType(): string;
5604
5609
  protected restoreUserSelectValue: string;
@@ -5615,15 +5620,15 @@ declare module "dragdrop/matrix-rows" {
5615
5620
  clear(): void;
5616
5621
  }
5617
5622
  }
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";
5623
+ declare module "packages/survey-core/src/question_matrixdropdownrendered" {
5624
+ import { Question } from "packages/survey-core/src/question";
5625
+ import { Base } from "packages/survey-core/src/base";
5626
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
5627
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
5628
+ import { PanelModel } from "packages/survey-core/src/panel";
5629
+ import { IAction } from "packages/survey-core/src/actions/action";
5630
+ import { MatrixDropdownColumn } from "packages/survey-core/src/question_matrixdropdowncolumn";
5631
+ import { MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
5627
5632
  export class QuestionMatrixDropdownRenderedCell {
5628
5633
  private static counter;
5629
5634
  private idValue;
@@ -5785,7 +5790,7 @@ declare module "question_matrixdropdownrendered" {
5785
5790
  private createEmptyCell;
5786
5791
  }
5787
5792
  }
5788
- declare module "utils/dragOrClickHelper" {
5793
+ declare module "packages/survey-core/src/utils/dragOrClickHelper" {
5789
5794
  export class DragOrClickHelper {
5790
5795
  private dragHandler;
5791
5796
  private pointerDownEvent;
@@ -5803,12 +5808,12 @@ declare module "utils/dragOrClickHelper" {
5803
5808
  private clearListeners;
5804
5809
  }
5805
5810
  }
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";
5811
+ declare module "packages/survey-core/src/question_matrixdynamic" {
5812
+ import { QuestionMatrixDropdownModelBase, MatrixDropdownRowModelBase, IMatrixDropdownData } from "packages/survey-core/src/question_matrixdropdownbase";
5813
+ import { SurveyError } from "packages/survey-core/src/survey-error";
5814
+ import { DragDropMatrixRows } from "packages/survey-core/src/dragdrop/matrix-rows";
5815
+ import { IShortcutText, ISurveyImpl, IProgressInfo } from "packages/survey-core/src/base-interfaces";
5816
+ import { QuestionMatrixDropdownRenderedTable } from "packages/survey-core/src/question_matrixdropdownrendered";
5812
5817
  export class MatrixDynamicRowModel extends MatrixDropdownRowModelBase implements IShortcutText {
5813
5818
  index: number;
5814
5819
  private dragOrClickHelper;
@@ -6005,14 +6010,14 @@ declare module "question_matrixdynamic" {
6005
6010
  */
6006
6011
  get confirmDeleteText(): string;
6007
6012
  set confirmDeleteText(val: string);
6008
- get locConfirmDeleteText(): import("localizablestring").LocalizableString;
6013
+ get locConfirmDeleteText(): import("src/entries/core-wo-model").LocalizableString;
6009
6014
  /**
6010
6015
  * A caption for the Add Row button.
6011
6016
  * @see addRowLocation
6012
6017
  */
6013
6018
  get addRowText(): string;
6014
6019
  set addRowText(val: string);
6015
- get locAddRowText(): import("localizablestring").LocalizableString;
6020
+ get locAddRowText(): import("src/entries/core-wo-model").LocalizableString;
6016
6021
  private get defaultAddRowText();
6017
6022
  /**
6018
6023
  * Specifies the location of the Add Row button.
@@ -6043,14 +6048,14 @@ declare module "question_matrixdynamic" {
6043
6048
  */
6044
6049
  get removeRowText(): string;
6045
6050
  set removeRowText(val: string);
6046
- get locRemoveRowText(): import("localizablestring").LocalizableString;
6051
+ get locRemoveRowText(): import("src/entries/core-wo-model").LocalizableString;
6047
6052
  /**
6048
6053
  * A message displayed when the matrix does not contain any rows. Applies only if `hideColumnsIfEmpty` is enabled.
6049
6054
  * @see hideColumnsIfEmpty
6050
6055
  */
6051
6056
  get emptyRowsText(): string;
6052
6057
  set emptyRowsText(val: string);
6053
- get locEmptyRowsText(): import("localizablestring").LocalizableString;
6058
+ get locEmptyRowsText(): import("src/entries/core-wo-model").LocalizableString;
6054
6059
  protected getDisplayValueCore(keysAsText: boolean, value: any): any;
6055
6060
  protected getConditionObjectRowName(index: number): string;
6056
6061
  protected getConditionObjectsRowIndeces(): Array<number>;
@@ -6075,8 +6080,8 @@ declare module "question_matrixdynamic" {
6075
6080
  getRootCss(): string;
6076
6081
  }
6077
6082
  }
6078
- declare module "themes" {
6079
- import { HorizontalAlignment, VerticalAlignment } from "base-interfaces";
6083
+ declare module "packages/survey-core/src/themes" {
6084
+ import { HorizontalAlignment, VerticalAlignment } from "packages/survey-core/src/base-interfaces";
6080
6085
  export type ImageFit = "auto" | "contain" | "cover";
6081
6086
  export type ImageAttachment = "fixed" | "scroll";
6082
6087
  /**
@@ -6293,19 +6298,19 @@ declare module "themes" {
6293
6298
  descriptionPositionY: VerticalAlignment;
6294
6299
  }
6295
6300
  }
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";
6301
+ declare module "packages/survey-core/src/question_paneldynamic" {
6302
+ import { HashTable } from "packages/survey-core/src/helpers";
6303
+ import { IElement, IQuestion, IPanel, ISurveyData, ISurvey, ISurveyImpl, ITextProcessor, IProgressInfo, IPlainDataOptions } from "packages/survey-core/src/base-interfaces";
6304
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
6305
+ import { Base } from "packages/survey-core/src/base";
6306
+ import { Question, IConditionObject, IQuestionPlainData } from "packages/survey-core/src/question";
6307
+ import { PanelModel } from "packages/survey-core/src/panel";
6308
+ import { SurveyError } from "packages/survey-core/src/survey-error";
6309
+ import { ActionContainer } from "packages/survey-core/src/actions/container";
6310
+ import { IAction } from "packages/survey-core/src/actions/action";
6311
+ import { AdaptiveActionContainer } from "packages/survey-core/src/actions/adaptive-container";
6312
+ import { ITheme } from "packages/survey-core/src/themes";
6313
+ import { AnimationProperty, IAnimationGroupConsumer } from "packages/survey-core/src/utils/animation";
6309
6314
  export interface IQuestionPanelDynamicData {
6310
6315
  getItemIndex(item: ISurveyData): number;
6311
6316
  getVisibleItemIndex(item: ISurveyData): number;
@@ -6963,9 +6968,9 @@ declare module "question_paneldynamic" {
6963
6968
  protected calcCssClasses(css: any): any;
6964
6969
  }
6965
6970
  }
6966
- declare module "question_signaturepad" {
6967
- import { ITheme } from "themes";
6968
- import { QuestionFileModelBase } from "question_file";
6971
+ declare module "packages/survey-core/src/question_signaturepad" {
6972
+ import { ITheme } from "packages/survey-core/src/themes";
6973
+ import { QuestionFileModelBase } from "packages/survey-core/src/question_file";
6969
6974
  /**
6970
6975
  * A class that describes the Signature question type.
6971
6976
  *
@@ -7105,31 +7110,31 @@ declare module "question_signaturepad" {
7105
7110
  * A placeholder text for the signature area in read-only or preview mode. Applies when the [`showPlaceholder`](#showPlaceholder) property is `true`.
7106
7111
  */
7107
7112
  placeholderReadOnly: string;
7108
- onBlur: (event: any) => void;
7113
+ protected onBlurCore(event: any): void;
7109
7114
  protected uploadResultItemToValue(r: any): any;
7110
7115
  protected setValueFromResult(arg: any): void;
7111
7116
  clearValue(keepComment?: boolean): void;
7112
7117
  endLoadingFromJson(): void;
7113
7118
  }
7114
7119
  }
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";
7120
+ declare module "packages/survey-core/src/survey-events-api" {
7121
+ import { IAction } from "packages/survey-core/src/actions/action";
7122
+ import { Base } from "packages/survey-core/src/base";
7123
+ import { IElement, IPanel, ISurveyElement, IValueItemCustomPropValues } from "packages/survey-core/src/base-interfaces";
7124
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
7125
+ import { PageModel } from "packages/survey-core/src/page";
7126
+ import { PanelModel, PanelModelBase } from "packages/survey-core/src/panel";
7127
+ import { PopupModel } from "packages/survey-core/src/popup";
7128
+ import { Question } from "packages/survey-core/src/question";
7129
+ import { QuestionFileModel } from "packages/survey-core/src/question_file";
7130
+ import { MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
7131
+ import { MatrixDropdownColumn } from "packages/survey-core/src/question_matrixdropdowncolumn";
7132
+ import { QuestionMatrixDynamicModel } from "packages/survey-core/src/question_matrixdynamic";
7133
+ import { QuestionPanelDynamicModel } from "packages/survey-core/src/question_paneldynamic";
7134
+ import { QuestionSignaturePadModel } from "packages/survey-core/src/question_signaturepad";
7135
+ import { SurveyModel } from "packages/survey-core/src/survey";
7136
+ import { SurveyError } from "packages/survey-core/src/survey-error";
7137
+ import { Trigger } from "packages/survey-core/src/trigger";
7133
7138
  export interface QuestionEventMixin {
7134
7139
  /**
7135
7140
  * A Question instance for which the event is raised.
@@ -8190,9 +8195,9 @@ declare module "survey-events-api" {
8190
8195
  data: any;
8191
8196
  }
8192
8197
  }
8193
- declare module "drag-drop-page-helper-v1" {
8194
- import { IElement, ISurveyElement } from "base-interfaces";
8195
- import { PageModel } from "page";
8198
+ declare module "packages/survey-core/src/drag-drop-page-helper-v1" {
8199
+ import { IElement, ISurveyElement } from "packages/survey-core/src/base-interfaces";
8200
+ import { PageModel } from "packages/survey-core/src/page";
8196
8201
  export class DragDropPageHelperV1 {
8197
8202
  private page;
8198
8203
  constructor(page: PageModel);
@@ -8211,10 +8216,10 @@ declare module "drag-drop-page-helper-v1" {
8211
8216
  private dragDropIsSameElement;
8212
8217
  }
8213
8218
  }
8214
- declare module "page" {
8215
- import { IPage, IPanel, IElement, ISurveyElement } from "base-interfaces";
8216
- import { PanelModelBase } from "panel";
8217
- import { LocalizableString } from "localizablestring";
8219
+ declare module "packages/survey-core/src/page" {
8220
+ import { IPage, IPanel, IElement, ISurveyElement } from "packages/survey-core/src/base-interfaces";
8221
+ import { PanelModelBase } from "packages/survey-core/src/panel";
8222
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
8218
8223
  /**
8219
8224
  * 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
8225
  *
@@ -8320,7 +8325,7 @@ declare module "page" {
8320
8325
  ensureRowsVisibility(): void;
8321
8326
  }
8322
8327
  }
8323
- declare module "dxSurveyService" {
8328
+ declare module "packages/survey-core/src/dxSurveyService" {
8324
8329
  /**
8325
8330
  * The class contains methods to work with api.surveyjs.io service.
8326
8331
  */
@@ -8340,70 +8345,8 @@ declare module "dxSurveyService" {
8340
8345
  private get serviceUrl();
8341
8346
  }
8342
8347
  }
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";
8348
+ declare module "packages/survey-core/src/surveytimer" {
8349
+ import { EventBase } from "packages/survey-core/src/base";
8407
8350
  export var surveyTimerFunctions: {
8408
8351
  setTimeout: (func: () => any) => number;
8409
8352
  clearTimeout: (timerId: number) => void;
@@ -8425,11 +8368,11 @@ declare module "surveytimer" {
8425
8368
  doTimer(): void;
8426
8369
  }
8427
8370
  }
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";
8371
+ declare module "packages/survey-core/src/surveyTimerModel" {
8372
+ import { ISurvey } from "packages/survey-core/src/base-interfaces";
8373
+ import { Base, EventBase } from "packages/survey-core/src/base";
8374
+ import { PageModel } from "packages/survey-core/src/page";
8375
+ import { SurveyModel } from "packages/survey-core/src/survey";
8433
8376
  export interface ISurveyTimerText {
8434
8377
  timerInfoText: string;
8435
8378
  timerInfo: {
@@ -8474,10 +8417,10 @@ declare module "surveyTimerModel" {
8474
8417
  get majorTextCss(): string;
8475
8418
  }
8476
8419
  }
8477
- declare module "expressionItems" {
8478
- import { Base } from "base";
8479
- import { ISurvey } from "base-interfaces";
8480
- import { ILocalizableOwner, LocalizableString } from "localizablestring";
8420
+ declare module "packages/survey-core/src/expressionItems" {
8421
+ import { Base } from "packages/survey-core/src/base";
8422
+ import { ISurvey } from "packages/survey-core/src/base-interfaces";
8423
+ import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
8481
8424
  /**
8482
8425
  * Base class for HtmlConditionItem and UrlConditionItem classes.
8483
8426
  */
@@ -8533,10 +8476,10 @@ declare module "expressionItems" {
8533
8476
  get locUrl(): LocalizableString;
8534
8477
  }
8535
8478
  }
8536
- declare module "notifier" {
8537
- import { Base } from "base";
8538
- import { ActionContainer } from "actions/container";
8539
- import { IAction } from "actions/action";
8479
+ declare module "packages/survey-core/src/notifier" {
8480
+ import { Base } from "packages/survey-core/src/base";
8481
+ import { ActionContainer } from "packages/survey-core/src/actions/container";
8482
+ import { IAction } from "packages/survey-core/src/actions/action";
8540
8483
  interface INotifierCssClasses {
8541
8484
  root: string;
8542
8485
  rootWithButtons: string;
@@ -8564,12 +8507,12 @@ declare module "notifier" {
8564
8507
  addAction(action: IAction, notificationType: string): void;
8565
8508
  }
8566
8509
  }
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";
8510
+ declare module "packages/survey-core/src/question_textbase" {
8511
+ import { Question } from "packages/survey-core/src/question";
8512
+ import { CssClassBuilder } from "packages/survey-core/src/utils/cssClassBuilder";
8513
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
8514
+ import { Base } from "packages/survey-core/src/base";
8515
+ import { ISurveyImpl } from "packages/survey-core/src/base-interfaces";
8573
8516
  export class CharacterCounter extends Base {
8574
8517
  remainingCharacterCounter: string;
8575
8518
  updateRemainingCharacterCounter(newValue: string, maxLength: number): void;
@@ -8619,6 +8562,7 @@ declare module "question_textbase" {
8619
8562
  onSurveyLoad(): void;
8620
8563
  localeChanged(): void;
8621
8564
  setSurveyImpl(value: ISurveyImpl, isLight?: boolean): void;
8565
+ protected supportEmptyValidation(): boolean;
8622
8566
  protected calcRenderedPlaceholder(): void;
8623
8567
  protected hasPlaceholder(): boolean;
8624
8568
  protected setNewValue(newValue: any): void;
@@ -8631,7 +8575,7 @@ declare module "question_textbase" {
8631
8575
  onKeyDownPreprocess: (event: any) => void;
8632
8576
  }
8633
8577
  }
8634
- declare module "mask/mask_utils" {
8578
+ declare module "packages/survey-core/src/mask/mask_utils" {
8635
8579
  export var numberDefinition: RegExp;
8636
8580
  export interface IMaskedInputResult {
8637
8581
  value: string;
@@ -8651,11 +8595,12 @@ declare module "mask/mask_utils" {
8651
8595
  processInput(args: ITextInputParams): IMaskedInputResult;
8652
8596
  getTextAlignment(): "left" | "right" | "auto";
8653
8597
  }
8598
+ export function getAvailableMaskTypeChoices(): string[];
8654
8599
  }
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";
8600
+ declare module "packages/survey-core/src/mask/mask_base" {
8601
+ import { Base } from "packages/survey-core/src/base";
8602
+ import { ISurvey } from "packages/survey-core/src/base-interfaces";
8603
+ import { IInputMask, IMaskedInputResult, ITextInputParams } from "packages/survey-core/src/mask/mask_utils";
8659
8604
  /**
8660
8605
  * A base class for classes that implement input masks:
8661
8606
  *
@@ -8682,9 +8627,9 @@ declare module "mask/mask_base" {
8682
8627
  getTextAlignment(): "left" | "right" | "auto";
8683
8628
  }
8684
8629
  }
8685
- declare module "mask/input_element_adapter" {
8686
- import { InputMaskBase } from "mask/mask_base";
8687
- import { ITextInputParams } from "mask/mask_utils";
8630
+ declare module "packages/survey-core/src/mask/input_element_adapter" {
8631
+ import { InputMaskBase } from "packages/survey-core/src/mask/mask_base";
8632
+ import { ITextInputParams } from "packages/survey-core/src/mask/mask_utils";
8688
8633
  export class InputElementAdapter {
8689
8634
  private inputMaskInstance;
8690
8635
  private inputElement;
@@ -8700,14 +8645,14 @@ declare module "mask/input_element_adapter" {
8700
8645
  dispose(): void;
8701
8646
  }
8702
8647
  }
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";
8648
+ declare module "packages/survey-core/src/question_text" {
8649
+ import { LocalizableString, LocalizableStrings } from "packages/survey-core/src/localizablestring";
8650
+ import { HashTable } from "packages/survey-core/src/helpers";
8651
+ import { SurveyError } from "packages/survey-core/src/survey-error";
8652
+ import { QuestionTextBase } from "packages/survey-core/src/question_textbase";
8653
+ import { CssClassBuilder } from "packages/survey-core/src/utils/cssClassBuilder";
8654
+ import { InputMaskBase } from "packages/survey-core/src/mask/mask_base";
8655
+ import { IInputMask } from "packages/survey-core/src/mask/mask_utils";
8711
8656
  /**
8712
8657
  * A class that describes the Single-Line Input question type.
8713
8658
  *
@@ -8886,24 +8831,24 @@ declare module "question_text" {
8886
8831
  private updateDateValidationMessage;
8887
8832
  onKeyDown: (event: any) => void;
8888
8833
  onChange: (event: any) => void;
8889
- onBlur: (event: any) => void;
8890
- onFocus: (event: any) => void;
8834
+ protected onBlurCore(event: any): void;
8835
+ protected onFocusCore(event: any): void;
8891
8836
  afterRenderQuestionElement(el: HTMLElement): void;
8892
8837
  beforeDestroyQuestionElement(el: HTMLElement): void;
8893
8838
  }
8894
8839
  export function isMinMaxType(obj: any): boolean;
8895
8840
  }
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";
8841
+ declare module "packages/survey-core/src/question_multipletext" {
8842
+ import { Base } from "packages/survey-core/src/base";
8843
+ import { ISurveyData, ISurveyImpl, ISurvey, IPanel, IElement, IQuestion, ITextProcessor, IProgressInfo } from "packages/survey-core/src/base-interfaces";
8844
+ import { SurveyValidator, IValidatorOwner } from "packages/survey-core/src/validator";
8845
+ import { Question, IConditionObject } from "packages/survey-core/src/question";
8846
+ import { QuestionTextModel } from "packages/survey-core/src/question_text";
8847
+ import { SurveyError } from "packages/survey-core/src/survey-error";
8848
+ import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
8849
+ import { HashTable } from "packages/survey-core/src/helpers";
8850
+ import { InputMaskBase } from "packages/survey-core/src/mask/mask_base";
8851
+ import { PanelLayoutColumnModel } from "packages/survey-core/src/panel-layout-column";
8907
8852
  export interface IMultipleTextData extends ILocalizableOwner, IPanel {
8908
8853
  getSurvey(): ISurvey;
8909
8854
  getTextProcessor(): ITextProcessor;
@@ -9239,11 +9184,11 @@ declare module "question_multipletext" {
9239
9184
  protected getClassName(): string;
9240
9185
  }
9241
9186
  }
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";
9187
+ declare module "packages/survey-core/src/header" {
9188
+ import { Base } from "packages/survey-core/src/base";
9189
+ import { HorizontalAlignment, VerticalAlignment } from "packages/survey-core/src/base-interfaces";
9190
+ import { SurveyModel } from "packages/survey-core/src/survey";
9191
+ import { ITheme } from "packages/survey-core/src/themes";
9247
9192
  export class CoverCell {
9248
9193
  private cover;
9249
9194
  private positionX;
@@ -9325,8 +9270,8 @@ declare module "header" {
9325
9270
  get hasBackground(): boolean;
9326
9271
  }
9327
9272
  }
9328
- declare module "surveyTaskManager" {
9329
- import { Base } from "base";
9273
+ declare module "packages/survey-core/src/surveyTaskManager" {
9274
+ import { Base } from "packages/survey-core/src/base";
9330
9275
  class SurveyTaskModel {
9331
9276
  type: string;
9332
9277
  private timestamp;
@@ -9342,10 +9287,10 @@ declare module "surveyTaskManager" {
9342
9287
  private taskFinished;
9343
9288
  }
9344
9289
  }
9345
- declare module "progress-buttons" {
9346
- import { Base, EventBase } from "base";
9347
- import { PageModel } from "page";
9348
- import { SurveyModel } from "survey";
9290
+ declare module "packages/survey-core/src/progress-buttons" {
9291
+ import { Base, EventBase } from "packages/survey-core/src/base";
9292
+ import { PageModel } from "packages/survey-core/src/page";
9293
+ import { SurveyModel } from "packages/survey-core/src/survey";
9349
9294
  export class ProgressButtons extends Base {
9350
9295
  survey: SurveyModel;
9351
9296
  constructor(survey: SurveyModel);
@@ -9388,12 +9333,12 @@ declare module "progress-buttons" {
9388
9333
  dispose(): void;
9389
9334
  }
9390
9335
  }
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";
9336
+ declare module "packages/survey-core/src/surveyToc" {
9337
+ import { Action } from "packages/survey-core/src/actions/action";
9338
+ import { ListModel } from "packages/survey-core/src/list";
9339
+ import { PanelModelBase } from "packages/survey-core/src/panel";
9340
+ import { PopupModel } from "packages/survey-core/src/popup";
9341
+ import { SurveyModel } from "packages/survey-core/src/survey";
9397
9342
  export function tryFocusPage(survey: SurveyModel, panel: PanelModelBase): boolean;
9398
9343
  export function createTOCListModel(survey: SurveyModel, onAction?: () => void): ListModel<Action>;
9399
9344
  export function getTocRootCss(survey: SurveyModel, isMobile?: boolean): string;
@@ -9413,36 +9358,36 @@ declare module "surveyToc" {
9413
9358
  dispose(): void;
9414
9359
  }
9415
9360
  }
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";
9361
+ declare module "packages/survey-core/src/survey" {
9362
+ import { JsonError } from "packages/survey-core/src/jsonobject";
9363
+ import { Base, EventBase } from "packages/survey-core/src/base";
9364
+ 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";
9365
+ import { SurveyElementCore } from "packages/survey-core/src/survey-element";
9366
+ import { ISurveyTriggerOwner, SurveyTrigger, Trigger } from "packages/survey-core/src/trigger";
9367
+ import { CalculatedValue } from "packages/survey-core/src/calculatedValue";
9368
+ import { PageModel } from "packages/survey-core/src/page";
9369
+ import { dxSurveyService } from "packages/survey-core/src/dxSurveyService";
9370
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
9371
+ import { SurveyTimerModel, ISurveyTimerText } from "packages/survey-core/src/surveyTimerModel";
9372
+ import { IQuestionPlainData, Question } from "packages/survey-core/src/question";
9373
+ import { QuestionSelectBase } from "packages/survey-core/src/question_baseselect";
9374
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
9375
+ import { PanelModel, QuestionRowModel } from "packages/survey-core/src/panel";
9376
+ import { HtmlConditionItem, UrlConditionItem } from "packages/survey-core/src/expressionItems";
9377
+ import { SurveyError } from "packages/survey-core/src/survey-error";
9378
+ import { IAction, Action } from "packages/survey-core/src/actions/action";
9379
+ import { ActionContainer } from "packages/survey-core/src/actions/container";
9380
+ import { QuestionPanelDynamicModel } from "packages/survey-core/src/question_paneldynamic";
9381
+ import { Notifier } from "packages/survey-core/src/notifier";
9382
+ 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";
9383
+ import { QuestionMatrixDropdownModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
9384
+ import { QuestionMatrixDynamicModel } from "packages/survey-core/src/question_matrixdynamic";
9385
+ import { QuestionFileModel } from "packages/survey-core/src/question_file";
9386
+ import { QuestionMultipleTextModel } from "packages/survey-core/src/question_multipletext";
9387
+ import { ITheme, ImageFit, ImageAttachment } from "packages/survey-core/src/themes";
9388
+ import { PopupModel } from "packages/survey-core/src/popup";
9389
+ import { Cover } from "packages/survey-core/src/header";
9390
+ import { QuestionSignaturePadModel } from "packages/survey-core/src/question_signaturepad";
9446
9391
  /**
9447
9392
  * The `SurveyModel` object contains properties and methods that allow you to control the survey and access its elements.
9448
9393
  *
@@ -9450,10 +9395,7 @@ declare module "survey" {
9450
9395
  */
9451
9396
  export class SurveyModel extends SurveyElementCore implements ISurvey, ISurveyData, ISurveyImpl, ISurveyTriggerOwner, ISurveyErrorOwner, ISurveyTimerText {
9452
9397
  static readonly TemplateRendererComponentName: string;
9453
- static get cssType(): string;
9454
- static set cssType(value: string);
9455
9398
  [index: string]: any;
9456
- private static stylesManager;
9457
9399
  static platform: string;
9458
9400
  get platformName(): string;
9459
9401
  notifier: Notifier;
@@ -10484,6 +10426,24 @@ declare module "survey" {
10484
10426
  */
10485
10427
  get checkErrorsMode(): string;
10486
10428
  set checkErrorsMode(val: string);
10429
+ /**
10430
+ * 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"`.
10431
+ *
10432
+ * Default value: `false`
10433
+ *
10434
+ * This property changes validation behavior for the following question types:
10435
+ *
10436
+ * - [Single-Line Input](https://surveyjs.io/form-library/documentation/api-reference/text-entry-question-model)
10437
+ * - [Long Text](https://surveyjs.io/form-library/documentation/api-reference/comment-field-model)
10438
+ * - [Dropdown](https://surveyjs.io/form-library/documentation/api-reference/dropdown-menu-model)
10439
+ * @see validationEnabled
10440
+ * @see validationAllowSwitchPages
10441
+ * @see validationAllowComplete
10442
+ * @see validate
10443
+ */
10444
+ get validateVisitedEmptyFields(): boolean;
10445
+ set validateVisitedEmptyFields(val: boolean);
10446
+ getValidateVisitedEmptyFields(): boolean;
10487
10447
  /**
10488
10448
  * 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
10449
  *
@@ -11624,6 +11584,7 @@ declare module "survey" {
11624
11584
  matrixCellValueChanging(question: QuestionMatrixDropdownModelBase, options: MatrixCellValueChangingEvent): void;
11625
11585
  get isValidateOnValueChanging(): boolean;
11626
11586
  get isValidateOnValueChanged(): boolean;
11587
+ private get isValidateOnValueChange();
11627
11588
  private get isValidateOnComplete();
11628
11589
  matrixCellValidate(question: QuestionMatrixDropdownModelBase, options: MatrixCellValidateEvent): SurveyError;
11629
11590
  dynamicPanelAdded(question: QuestionPanelDynamicModel, panelIndex?: number, panel?: PanelModel): void;
@@ -11920,6 +11881,7 @@ declare module "survey" {
11920
11881
  private updateNavigationBarCss;
11921
11882
  protected createNavigationBar(): ActionContainer;
11922
11883
  protected createNavigationActions(): Array<IAction>;
11884
+ protected onBeforeRunConstructor(): void;
11923
11885
  protected onBeforeCreating(): void;
11924
11886
  protected onCreating(): void;
11925
11887
  private getProcessedTextValue;
@@ -12304,14 +12266,14 @@ declare module "survey" {
12304
12266
  questionErrorComponent: string;
12305
12267
  }
12306
12268
  }
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";
12269
+ declare module "packages/survey-core/src/survey-element" {
12270
+ import { Base } from "packages/survey-core/src/base";
12271
+ import { IAction } from "packages/survey-core/src/actions/action";
12272
+ import { AdaptiveActionContainer } from "packages/survey-core/src/actions/adaptive-container";
12273
+ import { ISurveyElement, IPage, IPanel, IProgressInfo, ISurvey, ISurveyData, ISurveyImpl, ITextProcessor, ITitleOwner } from "packages/survey-core/src/base-interfaces";
12274
+ import { SurveyError } from "packages/survey-core/src/survey-error";
12275
+ import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
12276
+ import { ActionContainer } from "packages/survey-core/src/actions/container";
12315
12277
  /**
12316
12278
  * A base class for the [`SurveyElement`](https://surveyjs.io/form-library/documentation/surveyelement) and [`SurveyModel`](https://surveyjs.io/form-library/documentation/surveymodel) classes.
12317
12279
  */
@@ -12736,9 +12698,9 @@ declare module "survey-element" {
12736
12698
  dispose(): void;
12737
12699
  }
12738
12700
  }
12739
- declare module "questionCustomWidgets" {
12740
- import { Event } from "base";
12741
- import { IQuestion } from "base-interfaces";
12701
+ declare module "packages/survey-core/src/questionCustomWidgets" {
12702
+ import { Event } from "packages/survey-core/src/base";
12703
+ import { IQuestion } from "packages/survey-core/src/base-interfaces";
12742
12704
  export class QuestionCustomWidget {
12743
12705
  name: string;
12744
12706
  widgetJson: any;
@@ -12784,8 +12746,8 @@ declare module "questionCustomWidgets" {
12784
12746
  getCustomWidget(question: IQuestion): QuestionCustomWidget;
12785
12747
  }
12786
12748
  }
12787
- declare module "rendererFactory" {
12788
- import { Question } from "question";
12749
+ declare module "packages/survey-core/src/rendererFactory" {
12750
+ import { Question } from "packages/survey-core/src/question";
12789
12751
  export class RendererFactory {
12790
12752
  static Instance: RendererFactory;
12791
12753
  private renderersHash;
@@ -12797,19 +12759,19 @@ declare module "rendererFactory" {
12797
12759
  clear(): void;
12798
12760
  }
12799
12761
  }
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";
12762
+ declare module "packages/survey-core/src/question" {
12763
+ import { HashTable } from "packages/survey-core/src/helpers";
12764
+ import { EventBase } from "packages/survey-core/src/base";
12765
+ import { IElement, IQuestion, IPanel, IConditionRunner, ISurveyImpl, IPage, ITitleOwner, IProgressInfo, ISurvey, IPlainDataOptions, IDropdownMenuOptions } from "packages/survey-core/src/base-interfaces";
12766
+ import { SurveyElement } from "packages/survey-core/src/survey-element";
12767
+ import { SurveyValidator, IValidatorOwner } from "packages/survey-core/src/validator";
12768
+ import { TextPreProcessorValue } from "packages/survey-core/src/textPreProcessor";
12769
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
12770
+ import { ExpressionRunner } from "packages/survey-core/src/conditions";
12771
+ import { QuestionCustomWidget } from "packages/survey-core/src/questionCustomWidgets";
12772
+ import { SurveyError } from "packages/survey-core/src/survey-error";
12773
+ import { PopupModel } from "packages/survey-core/src/popup";
12774
+ import { ITheme } from "packages/survey-core/src/themes";
12813
12775
  export interface IConditionObject {
12814
12776
  name: string;
12815
12777
  text: string;
@@ -13231,6 +13193,13 @@ declare module "question" {
13231
13193
  focus(onError?: boolean, scrollIfVisible?: boolean): void;
13232
13194
  private focuscore;
13233
13195
  focusInputElement(onError: boolean): void;
13196
+ private get isValidateVisitedEmptyFields();
13197
+ private isFocusEmpty;
13198
+ protected supportEmptyValidation(): boolean;
13199
+ onBlur(event: any): void;
13200
+ onFocus(event: any): void;
13201
+ protected onBlurCore(event: any): void;
13202
+ protected onFocusCore(event: any): void;
13234
13203
  expandAllParents(): void;
13235
13204
  private expandAllParentsCore;
13236
13205
  focusIn(): void;
@@ -13713,11 +13682,11 @@ declare module "question" {
13713
13682
  get a11y_input_ariaErrormessage(): string;
13714
13683
  }
13715
13684
  }
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";
13685
+ declare module "packages/survey-core/src/itemvalue" {
13686
+ import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
13687
+ import { ConditionRunner } from "packages/survey-core/src/conditions";
13688
+ import { IShortcutText, ISurvey } from "packages/survey-core/src/base-interfaces";
13689
+ import { BaseAction } from "packages/survey-core/src/actions/action";
13721
13690
  /**
13722
13691
  * Array of ItemValue is used in checkbox, dropdown and radiogroup choices, matrix columns and rows.
13723
13692
  * It has two main properties: value and text. If text is empty, value is used for displaying.
@@ -13804,10 +13773,10 @@ declare module "itemvalue" {
13804
13773
  icon: string;
13805
13774
  }
13806
13775
  }
13807
- declare module "martixBase" {
13808
- import { HashTable } from "helpers";
13809
- import { ItemValue } from "itemvalue";
13810
- import { Question } from "question";
13776
+ declare module "packages/survey-core/src/martixBase" {
13777
+ import { HashTable } from "packages/survey-core/src/helpers";
13778
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
13779
+ import { Question } from "packages/survey-core/src/question";
13811
13780
  /**
13812
13781
  * A base class for all matrix question types.
13813
13782
  */
@@ -13926,18 +13895,18 @@ declare module "martixBase" {
13926
13895
  get isNewA11yStructure(): boolean;
13927
13896
  }
13928
13897
  }
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";
13898
+ declare module "packages/survey-core/src/question_matrixdropdownbase" {
13899
+ import { QuestionMatrixBaseModel } from "packages/survey-core/src/martixBase";
13900
+ import { Question, IConditionObject, IQuestionPlainData } from "packages/survey-core/src/question";
13901
+ import { HashTable } from "packages/survey-core/src/helpers";
13902
+ import { Base } from "packages/survey-core/src/base";
13903
+ import { IElement, IQuestion, ISurveyData, ISurvey, ISurveyImpl, ITextProcessor, IProgressInfo, IPanel, IPlainDataOptions } from "packages/survey-core/src/base-interfaces";
13904
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
13905
+ import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
13906
+ import { PanelModel } from "packages/survey-core/src/panel";
13907
+ import { SurveyError } from "packages/survey-core/src/survey-error";
13908
+ import { IMatrixColumnOwner, MatrixDropdownColumn } from "packages/survey-core/src/question_matrixdropdowncolumn";
13909
+ import { QuestionMatrixDropdownRenderedCell, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedTable } from "packages/survey-core/src/question_matrixdropdownrendered";
13941
13910
  export interface IMatrixDropdownData {
13942
13911
  value: any;
13943
13912
  onRowChanged(row: MatrixDropdownRowModelBase, columnName: string, newRowValue: any, isDeletingValue: boolean): void;
@@ -13953,6 +13922,7 @@ declare module "question_matrixdropdownbase" {
13953
13922
  validateCell(row: MatrixDropdownRowModelBase, columnName: string, rowValue: any): SurveyError;
13954
13923
  columns: Array<MatrixDropdownColumn>;
13955
13924
  createQuestion(row: MatrixDropdownRowModelBase, column: MatrixDropdownColumn): Question;
13925
+ choices: Array<ItemValue>;
13956
13926
  getLocale(): string;
13957
13927
  getMarkdownHtml(text: string, name: string): string;
13958
13928
  getRenderer(name: string): string;
@@ -14046,6 +14016,7 @@ declare module "question_matrixdropdownbase" {
14046
14016
  getEditingSurveyElement(): Base;
14047
14017
  private setValueCore;
14048
14018
  private updateQuestionsValue;
14019
+ private updateSharedQuestionsValue;
14049
14020
  runTriggers(name: string, value: any): void;
14050
14021
  private hasQuestonError;
14051
14022
  get isEmpty(): boolean;
@@ -14056,6 +14027,7 @@ declare module "question_matrixdropdownbase" {
14056
14027
  get questions(): Array<Question>;
14057
14028
  getQuestionByName(name: string): Question;
14058
14029
  getQuestionsByName(name: string): Array<Question>;
14030
+ getQuestionsByValueName(name: string): Array<Question>;
14059
14031
  protected getSharedQuestionByName(columnName: string): Question;
14060
14032
  clearIncorrectValues(val: any): void;
14061
14033
  getLocale(): string;
@@ -14461,19 +14433,19 @@ declare module "question_matrixdropdownbase" {
14461
14433
  getRootCss(): string;
14462
14434
  }
14463
14435
  }
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";
14436
+ declare module "packages/survey-core/src/base-interfaces" {
14437
+ import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
14438
+ import { HashTable } from "packages/survey-core/src/helpers";
14439
+ import { MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
14440
+ import { AdaptiveActionContainer } from "packages/survey-core/src/actions/adaptive-container";
14441
+ import { SurveyError } from "packages/survey-core/src/survey-error";
14442
+ import { Base } from "packages/survey-core/src/base";
14443
+ import { IAction } from "packages/survey-core/src/actions/action";
14444
+ import { PanelModel } from "packages/survey-core/src/panel";
14445
+ import { PanelLayoutColumnModel } from "packages/survey-core/src/panel-layout-column";
14446
+ import { QuestionPanelDynamicModel } from "packages/survey-core/src/question_paneldynamic";
14447
+ import { DragDropAllowEvent } from "packages/survey-core/src/survey-events-api";
14448
+ import { PopupModel } from "packages/survey-core/src/popup";
14477
14449
  export interface ISurveyData {
14478
14450
  getValue(name: string): any;
14479
14451
  setValue(name: string, newValue: any, locNotification: any, allowNotifyValueChanged?: boolean, questionName?: string): any;
@@ -14613,6 +14585,7 @@ declare module "base-interfaces" {
14613
14585
  matrixCellValueChanging(question: IQuestion, options: any): any;
14614
14586
  isValidateOnValueChanging: boolean;
14615
14587
  isValidateOnValueChanged: boolean;
14588
+ getValidateVisitedEmptyFields(): boolean;
14616
14589
  multipleTextItemAdded(question: IQuestion, item: any): void;
14617
14590
  matrixCellValidate(question: IQuestion, options: any): SurveyError;
14618
14591
  dynamicPanelAdded(question: IQuestion, panelIndex?: number, panel?: IPanel): void;
@@ -14803,9 +14776,9 @@ declare module "base-interfaces" {
14803
14776
  screenWidth: number;
14804
14777
  }
14805
14778
  }
14806
- declare module "jsonobject" {
14807
- import { Base } from "base";
14808
- import { ILoadFromJSONOptions, ISaveToJSONOptions } from "base-interfaces";
14779
+ declare module "packages/survey-core/src/jsonobject" {
14780
+ import { Base } from "packages/survey-core/src/base";
14781
+ import { ILoadFromJSONOptions, ISaveToJSONOptions } from "packages/survey-core/src/base-interfaces";
14809
14782
  export interface IPropertyDecoratorOptions<T = any> {
14810
14783
  defaultValue?: T;
14811
14784
  defaultSource?: string;
@@ -15175,8 +15148,8 @@ declare module "jsonobject" {
15175
15148
  */
15176
15149
  export var Serializer: JsonMetadata;
15177
15150
  }
15178
- declare module "localizablestring" {
15179
- import { EventBase } from "base";
15151
+ declare module "packages/survey-core/src/localizablestring" {
15152
+ import { EventBase } from "packages/survey-core/src/base";
15180
15153
  export interface ILocalizableOwner {
15181
15154
  getLocale(): string;
15182
15155
  getMarkdownHtml(text: string, name: string): string;
@@ -15301,13 +15274,13 @@ declare module "localizablestring" {
15301
15274
  private getValuesKeys;
15302
15275
  }
15303
15276
  }
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";
15277
+ declare module "packages/survey-core/src/base" {
15278
+ import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
15279
+ import { HashTable } from "packages/survey-core/src/helpers";
15280
+ import { JsonObjectProperty } from "packages/survey-core/src/jsonobject";
15281
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
15282
+ import { IElement, IFindElement, IProgressInfo, ISurvey, ILoadFromJSONOptions, ISaveToJSONOptions } from "packages/survey-core/src/base-interfaces";
15283
+ import { ExpressionRunner } from "packages/survey-core/src/conditions";
15311
15284
  export class Bindings {
15312
15285
  private obj;
15313
15286
  private properties;
@@ -15637,7 +15610,7 @@ declare module "base" {
15637
15610
  export class EventBase<Sender, Options = any> extends Event<(sender: Sender, options: Options) => any, Sender, Options> {
15638
15611
  }
15639
15612
  }
15640
- declare module "utils/popup" {
15613
+ declare module "packages/survey-core/src/utils/popup" {
15641
15614
  export type VerticalPosition = "top" | "bottom" | "middle";
15642
15615
  export type HorizontalPosition = "left" | "right" | "center";
15643
15616
  export type PositionMode = "flex" | "fixed";
@@ -15681,10 +15654,10 @@ declare module "utils/popup" {
15681
15654
  static calculatePointerTarget(targetRect: Rect, top: number, left: number, verticalPosition: VerticalPosition, horizontalPosition: HorizontalPosition, marginLeft?: number, marginRight?: number): INumberPosition;
15682
15655
  }
15683
15656
  }
15684
- declare module "popup" {
15685
- import { Base, EventBase } from "base";
15686
- import { IAction } from "actions/action";
15687
- import { VerticalPosition, HorizontalPosition, PositionMode } from "utils/popup";
15657
+ declare module "packages/survey-core/src/popup" {
15658
+ import { Base, EventBase } from "packages/survey-core/src/base";
15659
+ import { IAction } from "packages/survey-core/src/actions/action";
15660
+ import { VerticalPosition, HorizontalPosition, PositionMode } from "packages/survey-core/src/utils/popup";
15688
15661
  export interface IPopupOptionsBase {
15689
15662
  onHide?: () => void;
15690
15663
  onShow?: () => void;
@@ -15746,8 +15719,8 @@ declare module "popup" {
15746
15719
  }
15747
15720
  export function createDialogOptions(componentName: string, data: any, onApply: () => boolean, onCancel?: () => void, onHide?: () => void, onShow?: () => void, cssClass?: string, title?: string, displayMode?: "popup" | "overlay"): IDialogOptions;
15748
15721
  }
15749
- declare module "settings" {
15750
- import { IDialogOptions } from "popup";
15722
+ declare module "packages/survey-core/src/settings" {
15723
+ import { IDialogOptions } from "packages/survey-core/src/popup";
15751
15724
  export type ISurveyEnvironment = {
15752
15725
  root: Document | ShadowRoot;
15753
15726
  rootElement: HTMLElement | ShadowRoot;
@@ -16394,11 +16367,11 @@ declare module "settings" {
16394
16367
  parseNumber: (stringValue: any, numericValue: number) => number;
16395
16368
  };
16396
16369
  }
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";
16370
+ declare module "packages/survey-core/src/question_matrixdropdown" {
16371
+ import { QuestionMatrixDropdownModelBase, MatrixDropdownRowModelBase, IMatrixDropdownData } from "packages/survey-core/src/question_matrixdropdownbase";
16372
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
16373
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
16374
+ import { IProgressInfo } from "packages/survey-core/src/base-interfaces";
16402
16375
  export class MatrixDropdownRowModel extends MatrixDropdownRowModelBase {
16403
16376
  name: string;
16404
16377
  private item;
@@ -16449,11 +16422,11 @@ declare module "question_matrixdropdown" {
16449
16422
  protected updateProgressInfoByValues(res: IProgressInfo): void;
16450
16423
  }
16451
16424
  }
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";
16425
+ declare module "packages/survey-core/src/popup-dropdown-view-model" {
16426
+ import { IPosition, Rect } from "packages/survey-core/src/utils/popup";
16427
+ import { CssClassBuilder } from "packages/survey-core/src/utils/cssClassBuilder";
16428
+ import { PopupModel } from "packages/survey-core/src/popup";
16429
+ import { PopupBaseViewModel } from "packages/survey-core/src/popup-view-model";
16457
16430
  export function calculateIsTablet(windowWidth?: number, windowHeight?: number): boolean;
16458
16431
  export class PopupDropdownViewModel extends PopupBaseViewModel {
16459
16432
  targetElement?: HTMLElement;
@@ -16488,13 +16461,13 @@ declare module "popup-dropdown-view-model" {
16488
16461
  dispose(): void;
16489
16462
  }
16490
16463
  }
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";
16464
+ declare module "packages/survey-core/src/dropdownListModel" {
16465
+ import { IAction } from "packages/survey-core/src/actions/action";
16466
+ import { Base } from "packages/survey-core/src/base";
16467
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
16468
+ import { ListModel } from "packages/survey-core/src/list";
16469
+ import { PopupModel } from "packages/survey-core/src/popup";
16470
+ import { Question } from "packages/survey-core/src/question";
16498
16471
  export class DropdownListModel extends Base {
16499
16472
  protected question: Question;
16500
16473
  protected onSelectionChanged?: (item: IAction, ...params: any[]) => void;
@@ -16586,13 +16559,13 @@ declare module "dropdownListModel" {
16586
16559
  scrollToFocusedItem(): void;
16587
16560
  }
16588
16561
  }
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";
16562
+ declare module "packages/survey-core/src/question_dropdown" {
16563
+ import { QuestionSelectBase } from "packages/survey-core/src/question_baseselect";
16564
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
16565
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
16566
+ import { PopupModel } from "packages/survey-core/src/popup";
16567
+ import { EventBase } from "packages/survey-core/src/base";
16568
+ import { DropdownListModel } from "packages/survey-core/src/dropdownListModel";
16596
16569
  /**
16597
16570
  * A class that describes the Dropdown question type.
16598
16571
  *
@@ -16735,18 +16708,21 @@ declare module "question_dropdown" {
16735
16708
  afterRenderCore(el: any): void;
16736
16709
  onClick(e: any): void;
16737
16710
  onKeyUp(event: any): void;
16711
+ protected supportEmptyValidation(): boolean;
16712
+ protected onBlurCore(event: any): void;
16713
+ protected onFocusCore(event: any): void;
16738
16714
  dispose(): void;
16739
16715
  }
16740
16716
  }
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";
16717
+ declare module "packages/survey-core/src/question_matrix" {
16718
+ import { HashTable } from "packages/survey-core/src/helpers";
16719
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
16720
+ import { QuestionMatrixBaseModel } from "packages/survey-core/src/martixBase";
16721
+ import { Base } from "packages/survey-core/src/base";
16722
+ import { SurveyError } from "packages/survey-core/src/survey-error";
16723
+ import { LocalizableString, ILocalizableOwner } from "packages/survey-core/src/localizablestring";
16724
+ import { IConditionObject, IQuestionPlainData } from "packages/survey-core/src/question";
16725
+ import { IPlainDataOptions } from "packages/survey-core/src/base-interfaces";
16750
16726
  export interface IMatrixData {
16751
16727
  onMatrixRowChanged(row: MatrixRowModel): void;
16752
16728
  getCorrectedRowValue(value: any): any;
@@ -16912,11 +16888,11 @@ declare module "question_matrix" {
16912
16888
  getRowHeaderWrapperComponentData(cell: ItemValue): any;
16913
16889
  }
16914
16890
  }
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";
16891
+ declare module "packages/survey-core/src/flowpanel" {
16892
+ import { IElement } from "packages/survey-core/src/base-interfaces";
16893
+ import { PanelModel } from "packages/survey-core/src/panel";
16894
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
16895
+ import { Question } from "packages/survey-core/src/question";
16920
16896
  /**
16921
16897
  * The flow panel object. It is a container with flow layout where you can mix questions with markdown text.
16922
16898
  *
@@ -16948,7 +16924,7 @@ declare module "flowpanel" {
16948
16924
  getElementContentText(element: IElement): string;
16949
16925
  }
16950
16926
  }
16951
- declare module "template-renderer" {
16927
+ declare module "packages/survey-core/src/template-renderer" {
16952
16928
  export interface SurveyTemplateRendererTemplateData {
16953
16929
  name: string;
16954
16930
  data: any;
@@ -16960,14 +16936,14 @@ declare module "template-renderer" {
16960
16936
  templateData: SurveyTemplateRendererTemplateData;
16961
16937
  }
16962
16938
  }
16963
- declare module "defaultTitle" {
16939
+ declare module "packages/survey-core/src/defaultTitle" {
16964
16940
  export class DefaultTitleModel {
16965
16941
  static getIconCss(cssClasses: any, isCollapsed: boolean): string;
16966
16942
  }
16967
16943
  }
16968
- declare module "questionnonvalue" {
16969
- import { Question, IConditionObject } from "question";
16970
- import { SurveyError } from "survey-error";
16944
+ declare module "packages/survey-core/src/questionnonvalue" {
16945
+ import { Question, IConditionObject } from "packages/survey-core/src/question";
16946
+ import { SurveyError } from "packages/survey-core/src/survey-error";
16971
16947
  /**
16972
16948
  * 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
16949
  *
@@ -16989,8 +16965,8 @@ declare module "questionnonvalue" {
16989
16965
  get ariaRequired(): any;
16990
16966
  }
16991
16967
  }
16992
- declare module "question_empty" {
16993
- import { Question } from "question";
16968
+ declare module "packages/survey-core/src/question_empty" {
16969
+ import { Question } from "packages/survey-core/src/question";
16994
16970
  /**
16995
16971
  * A Model for an question that renders empty "div" tag. It used as a base class for some custom widgets
16996
16972
  */
@@ -16999,12 +16975,12 @@ declare module "question_empty" {
16999
16975
  getType(): string;
17000
16976
  }
17001
16977
  }
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";
16978
+ declare module "packages/survey-core/src/question_checkbox" {
16979
+ import { QuestionCheckboxBase } from "packages/survey-core/src/question_baseselect";
16980
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
16981
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
16982
+ import { IQuestion } from "packages/survey-core/src/base-interfaces";
16983
+ import { SurveyError } from "packages/survey-core/src/survey-error";
17008
16984
  /**
17009
16985
  * A class that describes the Checkboxes question type.
17010
16986
  *
@@ -17154,9 +17130,9 @@ declare module "question_checkbox" {
17154
17130
  get a11y_input_ariaRequired(): "true" | "false";
17155
17131
  }
17156
17132
  }
17157
- declare module "multiSelectListModel" {
17158
- import { Action, BaseAction, IAction } from "actions/action";
17159
- import { IListModel, ListModel } from "list";
17133
+ declare module "packages/survey-core/src/multiSelectListModel" {
17134
+ import { Action, BaseAction, IAction } from "packages/survey-core/src/actions/action";
17135
+ import { IListModel, ListModel } from "packages/survey-core/src/list";
17160
17136
  export interface IMultiSelectListModel extends IListModel {
17161
17137
  selectedItems?: Array<IAction>;
17162
17138
  }
@@ -17173,12 +17149,12 @@ declare module "multiSelectListModel" {
17173
17149
  selectFocusedItem(): void;
17174
17150
  }
17175
17151
  }
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";
17152
+ declare module "packages/survey-core/src/dropdownMultiSelectListModel" {
17153
+ import { IAction } from "packages/survey-core/src/actions/action";
17154
+ import { DropdownListModel } from "packages/survey-core/src/dropdownListModel";
17155
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
17156
+ import { MultiSelectListModel } from "packages/survey-core/src/multiSelectListModel";
17157
+ import { Question } from "packages/survey-core/src/question";
17182
17158
  export class DropdownMultiSelectListModel extends DropdownListModel {
17183
17159
  protected popupCssClasses: string;
17184
17160
  filterStringPlaceholder: string;
@@ -17212,13 +17188,13 @@ declare module "dropdownMultiSelectListModel" {
17212
17188
  protected onPropertyChangedHandler(sender: any, options: any): void;
17213
17189
  }
17214
17190
  }
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";
17191
+ declare module "packages/survey-core/src/question_tagbox" {
17192
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
17193
+ import { QuestionCheckboxModel } from "packages/survey-core/src/question_checkbox";
17194
+ import { PopupModel } from "packages/survey-core/src/popup";
17195
+ import { DropdownMultiSelectListModel } from "packages/survey-core/src/dropdownMultiSelectListModel";
17196
+ import { EventBase } from "packages/survey-core/src/base";
17197
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
17222
17198
  /**
17223
17199
  * A class that describes the Multi-Select Dropdown (Tag Box) question type.
17224
17200
  *
@@ -17299,16 +17275,19 @@ declare module "question_tagbox" {
17299
17275
  updateItemDisplayNameMap(): void;
17300
17276
  protected getFirstInputElementId(): string;
17301
17277
  getInputId(): string;
17278
+ protected supportEmptyValidation(): boolean;
17279
+ protected onBlurCore(event: any): void;
17280
+ protected onFocusCore(event: any): void;
17302
17281
  dispose(): void;
17303
17282
  clearValue(keepComment?: boolean): void;
17304
17283
  get showClearButton(): boolean;
17305
17284
  get isNewA11yStructure(): boolean;
17306
17285
  }
17307
17286
  }
17308
- declare module "question_imagepicker" {
17309
- import { QuestionCheckboxBase } from "question_baseselect";
17310
- import { ItemValue } from "itemvalue";
17311
- import { ILocalizableOwner, LocalizableString } from "localizablestring";
17287
+ declare module "packages/survey-core/src/question_imagepicker" {
17288
+ import { QuestionCheckboxBase } from "packages/survey-core/src/question_baseselect";
17289
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
17290
+ import { ILocalizableOwner, LocalizableString } from "packages/survey-core/src/localizablestring";
17312
17291
  export class ImageItemValue extends ItemValue implements ILocalizableOwner {
17313
17292
  protected typeName: string;
17314
17293
  private videoNotLoaded;
@@ -17473,10 +17452,10 @@ declare module "question_imagepicker" {
17473
17452
  afterRender(el: HTMLElement): void;
17474
17453
  }
17475
17454
  }
17476
- declare module "dragdrop/choices" {
17477
- import { ItemValue } from "itemvalue";
17478
- import { QuestionSelectBase } from "question_baseselect";
17479
- import { DragDropCore } from "dragdrop/core";
17455
+ declare module "packages/survey-core/src/dragdrop/choices" {
17456
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
17457
+ import { QuestionSelectBase } from "packages/survey-core/src/question_baseselect";
17458
+ import { DragDropCore } from "packages/survey-core/src/dragdrop/core";
17480
17459
  export class DragDropChoices extends DragDropCore<QuestionSelectBase> {
17481
17460
  private imagepickerControlsNode;
17482
17461
  protected get draggedElementType(): string;
@@ -17495,10 +17474,10 @@ declare module "dragdrop/choices" {
17495
17474
  private updateVisibleChoices;
17496
17475
  }
17497
17476
  }
17498
- declare module "dragdrop/ranking-choices" {
17499
- import { ItemValue } from "itemvalue";
17500
- import { DragDropChoices } from "dragdrop/choices";
17501
- import { QuestionRankingModel } from "question_ranking";
17477
+ declare module "packages/survey-core/src/dragdrop/ranking-choices" {
17478
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
17479
+ import { DragDropChoices } from "packages/survey-core/src/dragdrop/choices";
17480
+ import { QuestionRankingModel } from "packages/survey-core/src/question_ranking";
17502
17481
  export class DragDropRankingChoices extends DragDropChoices {
17503
17482
  protected get draggedElementType(): string;
17504
17483
  protected createDraggedElementShortcut(text: string, draggedElementNode: HTMLElement, event: PointerEvent): HTMLElement;
@@ -17523,10 +17502,10 @@ declare module "dragdrop/ranking-choices" {
17523
17502
  clear(): void;
17524
17503
  }
17525
17504
  }
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";
17505
+ declare module "packages/survey-core/src/dragdrop/ranking-select-to-rank" {
17506
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
17507
+ import { DragDropRankingChoices } from "packages/survey-core/src/dragdrop/ranking-choices";
17508
+ import { QuestionRankingModel } from "packages/survey-core/src/question_ranking";
17530
17509
  export class DragDropRankingSelectToRank extends DragDropRankingChoices {
17531
17510
  protected findDropTargetNodeByDragOverNode(dragOverNode: HTMLElement): HTMLElement;
17532
17511
  protected getDropTargetByDataAttributeValue(dataAttributeValue: string): ItemValue;
@@ -17542,12 +17521,12 @@ declare module "dragdrop/ranking-select-to-rank" {
17542
17521
  unselectFromRank: (questionModel: QuestionRankingModel, fromIndex: number, toIndex?: number) => void;
17543
17522
  }
17544
17523
  }
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";
17524
+ declare module "packages/survey-core/src/question_ranking" {
17525
+ import { ISurveyImpl } from "packages/survey-core/src/base-interfaces";
17526
+ import { DragDropRankingChoices } from "packages/survey-core/src/dragdrop/ranking-choices";
17527
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
17528
+ import { QuestionCheckboxModel } from "packages/survey-core/src/question_checkbox";
17529
+ import { AnimationGroup } from "packages/survey-core/src/utils/animation";
17551
17530
  /**
17552
17531
  * A class that describes the Ranking question type.
17553
17532
  *
@@ -17607,7 +17586,7 @@ declare module "question_ranking" {
17607
17586
  startDrag: (event: PointerEvent) => void;
17608
17587
  handlePointerUp: (event: PointerEvent, choice: ItemValue, node: HTMLElement) => void;
17609
17588
  private isDragStartNodeValid;
17610
- private get allowStartDrag();
17589
+ private isAllowStartDrag;
17611
17590
  private canStartDragDueMaxSelectedChoices;
17612
17591
  private canStartDragDueItemEnabled;
17613
17592
  checkMaxSelectedChoicesUnreached(): boolean;
@@ -17676,8 +17655,8 @@ declare module "question_ranking" {
17676
17655
  get isNewA11yStructure(): boolean;
17677
17656
  }
17678
17657
  }
17679
- declare module "question_comment" {
17680
- import { QuestionTextBase } from "question_textbase";
17658
+ declare module "packages/survey-core/src/question_comment" {
17659
+ import { QuestionTextBase } from "packages/survey-core/src/question_textbase";
17681
17660
  /**
17682
17661
  * A class that describes the Long Text question type.
17683
17662
  *
@@ -17724,6 +17703,7 @@ declare module "question_comment" {
17724
17703
  updateElement(): void;
17725
17704
  beforeDestroyQuestionElement(el: HTMLElement): void;
17726
17705
  onInput(event: any): void;
17706
+ protected onBlurCore(event: any): void;
17727
17707
  onKeyDown(event: any): void;
17728
17708
  protected setQuestionValue(newValue: any, updateIsAnswered?: boolean): void;
17729
17709
  onValueChanged(): void;
@@ -17732,9 +17712,9 @@ declare module "question_comment" {
17732
17712
  get className(): string;
17733
17713
  }
17734
17714
  }
17735
- declare module "question_html" {
17736
- import { QuestionNonValue } from "questionnonvalue";
17737
- import { LocalizableString } from "localizablestring";
17715
+ declare module "packages/survey-core/src/question_html" {
17716
+ import { QuestionNonValue } from "packages/survey-core/src/questionnonvalue";
17717
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
17738
17718
  /**
17739
17719
  * A class that describes the HTML question type. Unlike other question types, HTML cannot have a title or value.
17740
17720
  *
@@ -17760,10 +17740,10 @@ declare module "question_html" {
17760
17740
  get renderCssRoot(): string;
17761
17741
  }
17762
17742
  }
17763
- declare module "question_radiogroup" {
17764
- import { QuestionCheckboxBase } from "question_baseselect";
17765
- import { ItemValue } from "itemvalue";
17766
- import { Action } from "actions/action";
17743
+ declare module "packages/survey-core/src/question_radiogroup" {
17744
+ import { QuestionCheckboxBase } from "packages/survey-core/src/question_baseselect";
17745
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
17746
+ import { Action } from "packages/survey-core/src/actions/action";
17767
17747
  /**
17768
17748
  * A class that describes the Radio Button Group question type.
17769
17749
  *
@@ -17797,14 +17777,14 @@ declare module "question_radiogroup" {
17797
17777
  get a11y_input_ariaRole(): string;
17798
17778
  }
17799
17779
  }
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";
17780
+ declare module "packages/survey-core/src/question_rating" {
17781
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
17782
+ import { Question } from "packages/survey-core/src/question";
17783
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
17784
+ import { Base } from "packages/survey-core/src/base";
17785
+ import { DropdownListModel } from "packages/survey-core/src/dropdownListModel";
17786
+ import { ISurveyImpl } from "packages/survey-core/src/base-interfaces";
17787
+ import { ITheme } from "packages/survey-core/src/themes";
17808
17788
  export class RenderedRatingItem extends Base {
17809
17789
  itemValue: ItemValue;
17810
17790
  private locString;
@@ -17915,6 +17895,7 @@ declare module "question_rating" {
17915
17895
  private updateColors;
17916
17896
  protected getDisplayValueCore(keysAsText: boolean, value: any): any;
17917
17897
  get visibleRateValues(): ItemValue[];
17898
+ protected supportEmptyValidation(): boolean;
17918
17899
  itemValuePropertyChanged(item: ItemValue, name: string, oldValue: any, newValue: any): void;
17919
17900
  private createRenderedRateItems;
17920
17901
  renderedRateItems: Array<RenderedRatingItem>;
@@ -18088,10 +18069,10 @@ declare module "question_rating" {
18088
18069
  dispose(): void;
18089
18070
  }
18090
18071
  }
18091
- declare module "question_boolean" {
18092
- import { Question } from "question";
18093
- import { LocalizableString } from "localizablestring";
18094
- import { ActionContainer } from "actions/container";
18072
+ declare module "packages/survey-core/src/question_boolean" {
18073
+ import { Question } from "packages/survey-core/src/question";
18074
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
18075
+ import { ActionContainer } from "packages/survey-core/src/actions/container";
18095
18076
  /**
18096
18077
  * A class that describes the Yes/No (Boolean) question type.
18097
18078
  *
@@ -18202,9 +18183,9 @@ declare module "question_boolean" {
18202
18183
  get a11y_input_ariaRole(): string;
18203
18184
  }
18204
18185
  }
18205
- declare module "question_image" {
18206
- import { QuestionNonValue } from "questionnonvalue";
18207
- import { LocalizableString } from "localizablestring";
18186
+ declare module "packages/survey-core/src/question_image" {
18187
+ import { QuestionNonValue } from "packages/survey-core/src/questionnonvalue";
18188
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
18208
18189
  /**
18209
18190
  * A class that describes the Image question type. Unlike other question types, Image cannot have a title or value.
18210
18191
  *
@@ -18290,16 +18271,16 @@ declare module "question_image" {
18290
18271
  private isVideo;
18291
18272
  }
18292
18273
  }
18293
- declare module "surveyProgress" {
18274
+ declare module "packages/survey-core/src/surveyProgress" {
18294
18275
  export class SurveyProgressModel {
18295
18276
  static getProgressTextInBarCss(css: any): string;
18296
18277
  static getProgressTextUnderBarCss(css: any): string;
18297
18278
  }
18298
18279
  }
18299
- declare module "popup-survey" {
18300
- import { Base } from "base";
18301
- import { SurveyModel } from "survey";
18302
- import { LocalizableString } from "localizablestring";
18280
+ declare module "packages/survey-core/src/popup-survey" {
18281
+ import { Base } from "packages/survey-core/src/base";
18282
+ import { SurveyModel } from "packages/survey-core/src/survey";
18283
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
18303
18284
  /**
18304
18285
  * A class that renders a survey in a pop-up window.
18305
18286
  *
@@ -18430,10 +18411,10 @@ declare module "popup-survey" {
18430
18411
  export class SurveyWindowModel extends PopupSurveyModel {
18431
18412
  }
18432
18413
  }
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";
18414
+ declare module "packages/survey-core/src/popup-modal-view-model" {
18415
+ import { CssClassBuilder } from "packages/survey-core/src/utils/cssClassBuilder";
18416
+ import { PopupModel } from "packages/survey-core/src/popup";
18417
+ import { PopupBaseViewModel } from "packages/survey-core/src/popup-view-model";
18437
18418
  export class PopupModalViewModel extends PopupBaseViewModel {
18438
18419
  protected getStyleClass(): CssClassBuilder;
18439
18420
  protected getShowFooter(): boolean;
@@ -18448,16 +18429,16 @@ declare module "popup-modal-view-model" {
18448
18429
  updateOnHiding(): void;
18449
18430
  }
18450
18431
  }
18451
- declare module "popup-utils" {
18452
- import { IDialogOptions, PopupModel } from "popup";
18453
- import { PopupBaseViewModel } from "popup-view-model";
18432
+ declare module "packages/survey-core/src/popup-utils" {
18433
+ import { IDialogOptions, PopupModel } from "packages/survey-core/src/popup";
18434
+ import { PopupBaseViewModel } from "packages/survey-core/src/popup-view-model";
18454
18435
  export function createPopupModalViewModel(options: IDialogOptions, rootElement?: HTMLElement): PopupBaseViewModel;
18455
18436
  export function createPopupViewModel(model: PopupModel, targetElement?: HTMLElement): PopupBaseViewModel;
18456
18437
  }
18457
- declare module "question_buttongroup" {
18458
- import { ItemValue } from "itemvalue";
18459
- import { QuestionCheckboxBase } from "question_baseselect";
18460
- import { LocalizableString } from "localizablestring";
18438
+ declare module "packages/survey-core/src/question_buttongroup" {
18439
+ import { ItemValue } from "packages/survey-core/src/itemvalue";
18440
+ import { QuestionCheckboxBase } from "packages/survey-core/src/question_baseselect";
18441
+ import { LocalizableString } from "packages/survey-core/src/localizablestring";
18461
18442
  export class ButtonGroupItemValue extends ItemValue {
18462
18443
  protected typeName: string;
18463
18444
  constructor(value: any, text?: string, typeName?: string);
@@ -18507,10 +18488,10 @@ declare module "question_buttongroup" {
18507
18488
  onChange(): void;
18508
18489
  }
18509
18490
  }
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";
18491
+ declare module "packages/survey-core/src/mask/mask_pattern" {
18492
+ import { InputMaskBase } from "packages/survey-core/src/mask/mask_base";
18493
+ import { IMaskedInputResult, ITextInputParams } from "packages/survey-core/src/mask/mask_utils";
18494
+ import { ILoadFromJSONOptions } from "packages/survey-core/src/base-interfaces";
18514
18495
  export interface IMaskLiteral {
18515
18496
  type: "const" | "regex" | "fixed";
18516
18497
  value: any;
@@ -18587,9 +18568,9 @@ declare module "mask/mask_pattern" {
18587
18568
  getUnmaskedValue(src: string): any;
18588
18569
  }
18589
18570
  }
18590
- declare module "mask/mask_numeric" {
18591
- import { InputMaskBase } from "mask/mask_base";
18592
- import { IMaskedInputResult, ITextInputParams } from "mask/mask_utils";
18571
+ declare module "packages/survey-core/src/mask/mask_numeric" {
18572
+ import { InputMaskBase } from "packages/survey-core/src/mask/mask_base";
18573
+ import { IMaskedInputResult, ITextInputParams } from "packages/survey-core/src/mask/mask_utils";
18593
18574
  interface INumericalComposition {
18594
18575
  integralPart: string;
18595
18576
  fractionalPart: string;
@@ -18678,9 +18659,9 @@ declare module "mask/mask_numeric" {
18678
18659
  protected isPropertyEmpty(value: any): boolean;
18679
18660
  }
18680
18661
  }
18681
- declare module "mask/mask_datetime" {
18682
- import { InputMaskPattern } from "mask/mask_pattern";
18683
- import { IMaskedInputResult, ITextInputParams } from "mask/mask_utils";
18662
+ declare module "packages/survey-core/src/mask/mask_datetime" {
18663
+ import { InputMaskPattern } from "packages/survey-core/src/mask/mask_pattern";
18664
+ import { IMaskedInputResult, ITextInputParams } from "packages/survey-core/src/mask/mask_utils";
18684
18665
  type DateTimeMaskLexemType = "month" | "day" | "year" | "hour" | "minute" | "second" | "timeMarker" | "separator";
18685
18666
  export interface IDateTimeMaskLexem {
18686
18667
  type: DateTimeMaskLexemType;
@@ -18769,9 +18750,9 @@ declare module "mask/mask_datetime" {
18769
18750
  processInput(args: ITextInputParams): IMaskedInputResult;
18770
18751
  }
18771
18752
  }
18772
- declare module "mask/mask_currency" {
18773
- import { InputMaskNumeric } from "mask/mask_numeric";
18774
- import { IMaskedInputResult, ITextInputParams } from "mask/mask_utils";
18753
+ declare module "packages/survey-core/src/mask/mask_currency" {
18754
+ import { InputMaskNumeric } from "packages/survey-core/src/mask/mask_numeric";
18755
+ import { IMaskedInputResult, ITextInputParams } from "packages/survey-core/src/mask/mask_utils";
18775
18756
  /**
18776
18757
  * 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
18758
  *
@@ -18812,110 +18793,175 @@ declare module "mask/mask_currency" {
18812
18793
  getMaskedValue(src: any): string;
18813
18794
  }
18814
18795
  }
18815
- declare module "entries/chunks/model" {
18796
+ declare module "packages/survey-core/entries/chunks/model" {
18816
18797
  export var Version: string;
18817
18798
  export var ReleaseDate: string;
18818
18799
  export function checkLibraryVersion(ver: string, libraryName: string): void;
18819
18800
  export function setLicenseKey(key: string): void;
18820
18801
  export function slk(key: string): void;
18821
18802
  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" {
18803
+ export { settings, ISurveyEnvironment } from "packages/survey-core/src/settings";
18804
+ export { Helpers, HashTable } from "packages/survey-core/src/helpers";
18805
+ export { AnswerCountValidator, EmailValidator, NumericValidator, RegexValidator, SurveyValidator, TextValidator, ValidatorResult, ExpressionValidator, ValidatorRunner } from "packages/survey-core/src/validator";
18806
+ export { ItemValue } from "packages/survey-core/src/itemvalue";
18807
+ export { Base, Event, EventBase, ArrayChanges, ComputedUpdater } from "packages/survey-core/src/base";
18808
+ 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";
18809
+ export { SurveyError } from "packages/survey-core/src/survey-error";
18810
+ export { SurveyElementCore, SurveyElement, DragTypeOverMeEnum } from "packages/survey-core/src/survey-element";
18811
+ export { CalculatedValue } from "packages/survey-core/src/calculatedValue";
18812
+ export { CustomError, AnswerRequiredError, OneAnswerRequiredError, RequreNumericError, ExceedSizeError } from "packages/survey-core/src/error";
18813
+ export { ILocalizableOwner, ILocalizableString, LocalizableString, LocalizableStrings } from "packages/survey-core/src/localizablestring";
18814
+ export { HtmlConditionItem, UrlConditionItem } from "packages/survey-core/src/expressionItems";
18815
+ export { ChoicesRestful, ChoicesRestfull } from "packages/survey-core/src/choicesRestful";
18816
+ export { FunctionFactory, registerFunction } from "packages/survey-core/src/functionsfactory";
18817
+ export { ConditionRunner, ExpressionRunner, IExpresionExecutor, ExpressionExecutor } from "packages/survey-core/src/conditions";
18818
+ export { Operand, Const, BinaryOperand, Variable, FunctionOperand, ArrayOperand, UnaryOperand } from "packages/survey-core/src/expressions/expressions";
18819
+ export { ConditionsParser } from "packages/survey-core/src/conditionsParser";
18820
+ export { ProcessValue } from "packages/survey-core/src/conditionProcessValue";
18821
+ export { JsonError, JsonIncorrectTypeError, JsonMetadata, JsonMetadataClass, JsonMissingTypeError, JsonMissingTypeErrorBase, JsonObject, IJsonPropertyInfo, JsonObjectProperty, JsonRequiredPropertyError, JsonUnknownPropertyError, Serializer, property, propertyArray } from "packages/survey-core/src/jsonobject";
18822
+ export { IMatrixDropdownData, MatrixDropdownCell, MatrixDropdownRowModelBase, QuestionMatrixDropdownModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
18823
+ export { MatrixDropdownColumn, matrixDropdownColumnTypes } from "packages/survey-core/src/question_matrixdropdowncolumn";
18824
+ export { QuestionMatrixDropdownRenderedCell, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedErrorRow, QuestionMatrixDropdownRenderedTable } from "packages/survey-core/src/question_matrixdropdownrendered";
18825
+ export { MatrixDropdownRowModel, QuestionMatrixDropdownModel } from "packages/survey-core/src/question_matrixdropdown";
18826
+ export { MatrixDynamicRowModel, QuestionMatrixDynamicModel } from "packages/survey-core/src/question_matrixdynamic";
18827
+ export { MatrixRowModel, MatrixCells, QuestionMatrixModel, IMatrixData } from "packages/survey-core/src/question_matrix";
18828
+ export { QuestionMatrixBaseModel } from "packages/survey-core/src/martixBase";
18829
+ export { MultipleTextItemModel, MultipleTextCell, MultipleTextErrorCell, MutlipleTextErrorRow, MutlipleTextRow, QuestionMultipleTextModel, MultipleTextEditorModel } from "packages/survey-core/src/question_multipletext";
18830
+ export { PanelModel, PanelModelBase, QuestionRowModel } from "packages/survey-core/src/panel";
18831
+ export { FlowPanelModel } from "packages/survey-core/src/flowpanel";
18832
+ export { PageModel } from "packages/survey-core/src/page";
18833
+ export * from "packages/survey-core/src/template-renderer";
18834
+ export { DefaultTitleModel } from "packages/survey-core/src/defaultTitle";
18835
+ export { Question } from "packages/survey-core/src/question";
18836
+ export { QuestionNonValue } from "packages/survey-core/src/questionnonvalue";
18837
+ export { QuestionEmptyModel } from "packages/survey-core/src/question_empty";
18838
+ export { QuestionCheckboxBase, QuestionSelectBase } from "packages/survey-core/src/question_baseselect";
18839
+ export { QuestionCheckboxModel } from "packages/survey-core/src/question_checkbox";
18840
+ export { QuestionTagboxModel } from "packages/survey-core/src/question_tagbox";
18841
+ export { QuestionRankingModel } from "packages/survey-core/src/question_ranking";
18842
+ export { QuestionCommentModel } from "packages/survey-core/src/question_comment";
18843
+ export { QuestionDropdownModel } from "packages/survey-core/src/question_dropdown";
18844
+ export { QuestionFactory, ElementFactory } from "packages/survey-core/src/questionfactory";
18845
+ export { QuestionFileModel } from "packages/survey-core/src/question_file";
18846
+ export { QuestionHtmlModel } from "packages/survey-core/src/question_html";
18847
+ export { QuestionRadiogroupModel } from "packages/survey-core/src/question_radiogroup";
18848
+ export { QuestionRatingModel, RenderedRatingItem } from "packages/survey-core/src/question_rating";
18849
+ export { QuestionExpressionModel } from "packages/survey-core/src/question_expression";
18850
+ export { QuestionTextBase, CharacterCounter } from "packages/survey-core/src/question_textbase";
18851
+ export { QuestionTextModel } from "packages/survey-core/src/question_text";
18852
+ export { QuestionBooleanModel } from "packages/survey-core/src/question_boolean";
18853
+ export { QuestionImagePickerModel, ImageItemValue } from "packages/survey-core/src/question_imagepicker";
18854
+ export { QuestionImageModel } from "packages/survey-core/src/question_image";
18855
+ export { QuestionSignaturePadModel } from "packages/survey-core/src/question_signaturepad";
18856
+ export { QuestionPanelDynamicModel, QuestionPanelDynamicItem } from "packages/survey-core/src/question_paneldynamic";
18857
+ export { SurveyTimer } from "packages/survey-core/src/surveytimer";
18858
+ export { SurveyTimerModel } from "packages/survey-core/src/surveyTimerModel";
18859
+ export * from "packages/survey-core/src/surveyToc";
18860
+ export { SurveyProgressModel } from "packages/survey-core/src/surveyProgress";
18861
+ export { ProgressButtons, ProgressButtonsResponsivityManager, IProgressButtonsViewModel } from "packages/survey-core/src/progress-buttons";
18862
+ export * from "packages/survey-core/src/themes";
18863
+ export { SurveyModel } from "packages/survey-core/src/survey";
18864
+ export * from "packages/survey-core/src/survey-events-api";
18865
+ export { SurveyTrigger, SurveyTriggerComplete, SurveyTriggerSetValue, SurveyTriggerVisible, SurveyTriggerCopyValue, SurveyTriggerRunExpression, SurveyTriggerSkip, Trigger } from "packages/survey-core/src/trigger";
18866
+ export { PopupSurveyModel, SurveyWindowModel } from "packages/survey-core/src/popup-survey";
18867
+ export { TextPreProcessor } from "packages/survey-core/src/textPreProcessor";
18868
+ export { Notifier } from "packages/survey-core/src/notifier";
18869
+ export { Cover, CoverCell } from "packages/survey-core/src/header";
18870
+ export { dxSurveyService } from "packages/survey-core/src/dxSurveyService";
18871
+ export { englishStrings } from "packages/survey-core/src/localization/english";
18872
+ export { surveyLocalization, surveyStrings } from "packages/survey-core/src/surveyStrings";
18873
+ export { QuestionCustomWidget, CustomWidgetCollection, } from "packages/survey-core/src/questionCustomWidgets";
18874
+ export { QuestionCustomModel, QuestionCompositeModel, ComponentQuestionJSON, ComponentCollection, ICustomQuestionTypeConfiguration } from "packages/survey-core/src/question_custom";
18875
+ export { ListModel } from "packages/survey-core/src/list";
18876
+ export { MultiSelectListModel } from "packages/survey-core/src/multiSelectListModel";
18877
+ export { PopupModel, createDialogOptions, IDialogOptions } from "packages/survey-core/src/popup";
18878
+ export { PopupBaseViewModel } from "packages/survey-core/src/popup-view-model";
18879
+ export { PopupDropdownViewModel } from "packages/survey-core/src/popup-dropdown-view-model";
18880
+ export { PopupModalViewModel } from "packages/survey-core/src/popup-modal-view-model";
18881
+ export { createPopupViewModel, createPopupModalViewModel } from "packages/survey-core/src/popup-utils";
18882
+ export { DropdownListModel } from "packages/survey-core/src/dropdownListModel";
18883
+ export { DropdownMultiSelectListModel } from "packages/survey-core/src/dropdownMultiSelectListModel";
18884
+ export { QuestionButtonGroupModel, ButtonGroupItemModel, ButtonGroupItemValue } from "packages/survey-core/src/question_buttongroup";
18885
+ export { IsMobile, IsTouch, _setIsTouch } from "packages/survey-core/src/utils/devices";
18886
+ export { confirmAction, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, chooseFiles, sanitizeEditableContent, IAttachKey2clickOptions } from "packages/survey-core/src/utils/utils";
18887
+ export { InputMaskBase } from "packages/survey-core/src/mask/mask_base";
18888
+ export { InputMaskPattern } from "packages/survey-core/src/mask/mask_pattern";
18889
+ export { InputMaskNumeric } from "packages/survey-core/src/mask/mask_numeric";
18890
+ export { InputMaskDateTime } from "packages/survey-core/src/mask/mask_datetime";
18891
+ export { InputMaskCurrency } from "packages/survey-core/src/mask/mask_currency";
18892
+ export * from "packages/survey-core/src/utils/cssClassBuilder";
18893
+ export { surveyCss, defaultV2Css, defaultV2ThemeName } from "packages/survey-core/src/defaultCss/defaultV2Css";
18894
+ export { DragDropCore } from "packages/survey-core/src/dragdrop/core";
18895
+ export { DragDropChoices } from "packages/survey-core/src/dragdrop/choices";
18896
+ export { DragDropRankingSelectToRank } from "packages/survey-core/src/dragdrop/ranking-select-to-rank";
18897
+ }
18898
+ declare module "src/stylesmanager" {
18899
+ import { Logger } from "packages/survey-core/src/utils/utils";
18900
+ export const modernThemeColors: {
18901
+ [key: string]: string;
18902
+ };
18903
+ export const defaultThemeColors: {
18904
+ [key: string]: string;
18905
+ };
18906
+ export const orangeThemeColors: {
18907
+ [key: string]: string;
18908
+ };
18909
+ export const darkblueThemeColors: {
18910
+ [key: string]: string;
18911
+ };
18912
+ export const darkroseThemeColors: {
18913
+ [key: string]: string;
18914
+ };
18915
+ export const stoneThemeColors: {
18916
+ [key: string]: string;
18917
+ };
18918
+ export const winterThemeColors: {
18919
+ [key: string]: string;
18920
+ };
18921
+ export const winterstoneThemeColors: {
18922
+ [key: string]: string;
18923
+ };
18924
+ export class StylesManager {
18925
+ private static SurveyJSStylesSheetId;
18926
+ static Logger: Logger;
18927
+ static Styles: {
18928
+ [key: string]: string;
18929
+ };
18930
+ static Media: {
18931
+ [key: string]: {
18932
+ media: string;
18933
+ style: string;
18934
+ };
18935
+ };
18936
+ static ThemeColors: {
18937
+ [key: string]: {
18938
+ [key: string]: string;
18939
+ };
18940
+ };
18941
+ static ThemeCss: {
18942
+ [key: string]: {
18943
+ [key: string]: string;
18944
+ };
18945
+ };
18946
+ static ThemeSelector: {
18947
+ [key: string]: string;
18948
+ };
18949
+ static autoApplyTheme(): void;
18950
+ static getAvailableThemes(): Array<any>;
18951
+ static getIncludedThemeCss(): Array<any>;
18952
+ static findSheet(styleSheetId: string): any;
18953
+ static createSheet(styleSheetId: string): any;
18954
+ static applyTheme(themeName?: string, themeSelector?: string): void;
18955
+ static Enabled: boolean;
18956
+ constructor();
18957
+ static insertStylesRulesIntoDocument(): any;
18958
+ }
18959
+ }
18960
+ declare module "src/entries/chunks/model" {
18961
+ export * from "packages/survey-core/entries/chunks/model";
18962
+ export { StylesManager } from "src/stylesmanager";
18963
+ }
18964
+ declare module "src/defaultCss/cssstandard" {
18919
18965
  export var defaultStandardCss: {
18920
18966
  root: string;
18921
18967
  rootProgress: string;
@@ -19325,7 +19371,7 @@ declare module "defaultCss/cssstandard" {
19325
19371
  };
19326
19372
  };
19327
19373
  }
19328
- declare module "defaultCss/cssmodern" {
19374
+ declare module "src/defaultCss/cssmodern" {
19329
19375
  export var modernCss: {
19330
19376
  root: string;
19331
19377
  rootProgress: string;
@@ -19779,7 +19825,7 @@ declare module "defaultCss/cssmodern" {
19779
19825
  };
19780
19826
  };
19781
19827
  }
19782
- declare module "svgbundle" {
19828
+ declare module "packages/survey-core/src/svgbundle" {
19783
19829
  class SvgIconData {
19784
19830
  [key: string]: string;
19785
19831
  }
@@ -19796,25 +19842,29 @@ declare module "svgbundle" {
19796
19842
  export var SvgRegistry: SvgIconRegistry;
19797
19843
  export var SvgBundleViewModel: any;
19798
19844
  }
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" {
19845
+ declare module "packages/survey-core/entries/chunks/core-wo-model" {
19846
+ export * from "packages/survey-core/entries/chunks/model";
19847
+ export * from "packages/survey-core/src/svgbundle";
19848
+ export * from "packages/survey-core/src/rendererFactory";
19849
+ export * from "packages/survey-core/src/utils/responsivity-manager";
19850
+ export { unwrap, getOriginalEvent, getElement } from "packages/survey-core/src/utils/utils";
19851
+ export * from "packages/survey-core/src/actions/action";
19852
+ export * from "packages/survey-core/src/utils/animation";
19853
+ export * from "packages/survey-core/src/actions/adaptive-container";
19854
+ export * from "packages/survey-core/src/actions/container";
19855
+ export * from "packages/survey-core/src/utils/dragOrClickHelper";
19856
+ }
19857
+ declare module "src/entries/core-wo-model" {
19858
+ export * from "src/entries/chunks/model";
19859
+ export { defaultStandardCss } from "src/defaultCss/cssstandard";
19860
+ export { modernCss } from "src/defaultCss/cssmodern";
19861
+ export * from "packages/survey-core/entries/chunks/core-wo-model";
19862
+ }
19863
+ declare module "src/entries/core" {
19864
+ export * from "src/entries/core-wo-model";
19865
+ export { SurveyModel as Model } from "packages/survey-core/src/survey";
19866
+ }
19867
+ declare module "src/plugins/themes/bootstrap-integration/cssbootstrap" {
19818
19868
  export var defaultCss: {
19819
19869
  root: string;
19820
19870
  container: string;
@@ -20173,7 +20223,7 @@ declare module "plugins/themes/bootstrap/cssbootstrap" {
20173
20223
  };
20174
20224
  };
20175
20225
  }
20176
- declare module "plugins/themes/bootstrapmaterial/cssbootstrapmaterial" {
20226
+ declare module "src/plugins/themes/bootstrap-material-integration/cssbootstrapmaterial" {
20177
20227
  export var defaultCss: {
20178
20228
  root: string;
20179
20229
  container: string;
@@ -20536,11 +20586,11 @@ declare module "plugins/themes/bootstrapmaterial/cssbootstrapmaterial" {
20536
20586
  };
20537
20587
  };
20538
20588
  }
20539
- declare module "plugins/themes/common-theme-settings" {
20589
+ declare module "src/plugins/themes/common-theme-settings" {
20540
20590
  export function setMediaStyles(): void;
20541
20591
  export function setStyles(): void;
20542
20592
  }
20543
- declare module "plugins/themes/bootstrap/theme-settings" {
20593
+ declare module "src/plugins/themes/bootstrap-integration/theme-settings" {
20544
20594
  export const bootstrapThemeName = "bootstrap";
20545
20595
  export const bootstrapThemeColors: {
20546
20596
  [key: string]: string;
@@ -20583,7 +20633,7 @@ declare module "plugins/themes/bootstrap/theme-settings" {
20583
20633
  ".sv-skeleton-element": string;
20584
20634
  };
20585
20635
  }
20586
- declare module "plugins/themes/bootstrapmaterial/theme-settings" {
20636
+ declare module "src/plugins/themes/bootstrap-material-integration/theme-settings" {
20587
20637
  export const bootstrapMaterialThemeName = "bootstrapmaterial";
20588
20638
  export const bootstrapMaterialThemeColors: {
20589
20639
  [key: string]: string;
@@ -20644,9 +20694,9 @@ declare module "plugins/themes/bootstrapmaterial/theme-settings" {
20644
20694
  ".sv-skeleton-element": string;
20645
20695
  };
20646
20696
  }
20647
- declare module "entries/plugins" {
20648
- export * from "plugins/themes/bootstrap/theme-settings";
20649
- export * from "plugins/themes/bootstrapmaterial/theme-settings";
20697
+ declare module "src/entries/plugins" {
20698
+ export * from "src/plugins/themes/bootstrap-integration/theme-settings";
20699
+ export * from "src/plugins/themes/bootstrap-material-integration/theme-settings";
20650
20700
  export var defaultBootstrapCss: {
20651
20701
  root: string;
20652
20702
  container: string;
@@ -21366,7 +21416,7 @@ declare module "entries/plugins" {
21366
21416
  };
21367
21417
  };
21368
21418
  }
21369
- declare module "localization/arabic" {
21419
+ declare module "packages/survey-core/src/localization/arabic" {
21370
21420
  export var arabicSurveyStrings: {
21371
21421
  pagePrevText: string;
21372
21422
  pageNextText: string;
@@ -21475,7 +21525,7 @@ declare module "localization/arabic" {
21475
21525
  cancel: string;
21476
21526
  };
21477
21527
  }
21478
- declare module "localization/basque" {
21528
+ declare module "packages/survey-core/src/localization/basque" {
21479
21529
  export var basqueSurveyStrings: {
21480
21530
  pagePrevText: string;
21481
21531
  pageNextText: string;
@@ -21584,7 +21634,7 @@ declare module "localization/basque" {
21584
21634
  cancel: string;
21585
21635
  };
21586
21636
  }
21587
- declare module "localization/bulgarian" {
21637
+ declare module "packages/survey-core/src/localization/bulgarian" {
21588
21638
  export var bulgarianStrings: {
21589
21639
  pagePrevText: string;
21590
21640
  pageNextText: string;
@@ -21693,7 +21743,7 @@ declare module "localization/bulgarian" {
21693
21743
  cancel: string;
21694
21744
  };
21695
21745
  }
21696
- declare module "localization/catalan" {
21746
+ declare module "packages/survey-core/src/localization/catalan" {
21697
21747
  export var catalanSurveyStrings: {
21698
21748
  pagePrevText: string;
21699
21749
  pageNextText: string;
@@ -21802,7 +21852,7 @@ declare module "localization/catalan" {
21802
21852
  cancel: string;
21803
21853
  };
21804
21854
  }
21805
- declare module "localization/croatian" {
21855
+ declare module "packages/survey-core/src/localization/croatian" {
21806
21856
  export var croatianStrings: {
21807
21857
  pagePrevText: string;
21808
21858
  pageNextText: string;
@@ -21911,7 +21961,7 @@ declare module "localization/croatian" {
21911
21961
  cancel: string;
21912
21962
  };
21913
21963
  }
21914
- declare module "localization/czech" {
21964
+ declare module "packages/survey-core/src/localization/czech" {
21915
21965
  export var czechSurveyStrings: {
21916
21966
  pagePrevText: string;
21917
21967
  pageNextText: string;
@@ -22020,7 +22070,7 @@ declare module "localization/czech" {
22020
22070
  cancel: string;
22021
22071
  };
22022
22072
  }
22023
- declare module "localization/danish" {
22073
+ declare module "packages/survey-core/src/localization/danish" {
22024
22074
  export var danishSurveyStrings: {
22025
22075
  pagePrevText: string;
22026
22076
  pageNextText: string;
@@ -22129,7 +22179,7 @@ declare module "localization/danish" {
22129
22179
  cancel: string;
22130
22180
  };
22131
22181
  }
22132
- declare module "localization/dutch" {
22182
+ declare module "packages/survey-core/src/localization/dutch" {
22133
22183
  export var dutchSurveyStrings: {
22134
22184
  pagePrevText: string;
22135
22185
  pageNextText: string;
@@ -22238,8 +22288,8 @@ declare module "localization/dutch" {
22238
22288
  cancel: string;
22239
22289
  };
22240
22290
  }
22241
- declare module "localization/nl-BE" { }
22242
- declare module "localization/estonian" {
22291
+ declare module "packages/survey-core/src/localization/nl-BE" { }
22292
+ declare module "packages/survey-core/src/localization/estonian" {
22243
22293
  export var estonianSurveyStrings: {
22244
22294
  pagePrevText: string;
22245
22295
  pageNextText: string;
@@ -22348,7 +22398,7 @@ declare module "localization/estonian" {
22348
22398
  cancel: string;
22349
22399
  };
22350
22400
  }
22351
- declare module "localization/finnish" {
22401
+ declare module "packages/survey-core/src/localization/finnish" {
22352
22402
  export var finnishSurveyStrings: {
22353
22403
  pagePrevText: string;
22354
22404
  pageNextText: string;
@@ -22457,7 +22507,7 @@ declare module "localization/finnish" {
22457
22507
  cancel: string;
22458
22508
  };
22459
22509
  }
22460
- declare module "localization/french" {
22510
+ declare module "packages/survey-core/src/localization/french" {
22461
22511
  export var frenchSurveyStrings: {
22462
22512
  pagePrevText: string;
22463
22513
  pageNextText: string;
@@ -22566,7 +22616,7 @@ declare module "localization/french" {
22566
22616
  cancel: string;
22567
22617
  };
22568
22618
  }
22569
- declare module "localization/georgian" {
22619
+ declare module "packages/survey-core/src/localization/georgian" {
22570
22620
  export var georgianSurveyStrings: {
22571
22621
  pagePrevText: string;
22572
22622
  pageNextText: string;
@@ -22675,7 +22725,7 @@ declare module "localization/georgian" {
22675
22725
  cancel: string;
22676
22726
  };
22677
22727
  }
22678
- declare module "localization/german" {
22728
+ declare module "packages/survey-core/src/localization/german" {
22679
22729
  export var germanSurveyStrings: {
22680
22730
  pagePrevText: string;
22681
22731
  pageNextText: string;
@@ -22784,7 +22834,7 @@ declare module "localization/german" {
22784
22834
  cancel: string;
22785
22835
  };
22786
22836
  }
22787
- declare module "localization/greek" {
22837
+ declare module "packages/survey-core/src/localization/greek" {
22788
22838
  export var greekSurveyStrings: {
22789
22839
  pagePrevText: string;
22790
22840
  pageNextText: string;
@@ -22893,7 +22943,7 @@ declare module "localization/greek" {
22893
22943
  cancel: string;
22894
22944
  };
22895
22945
  }
22896
- declare module "localization/hebrew" {
22946
+ declare module "packages/survey-core/src/localization/hebrew" {
22897
22947
  export var hebrewSurveyStrings: {
22898
22948
  pagePrevText: string;
22899
22949
  pageNextText: string;
@@ -23002,7 +23052,7 @@ declare module "localization/hebrew" {
23002
23052
  cancel: string;
23003
23053
  };
23004
23054
  }
23005
- declare module "localization/hindi" {
23055
+ declare module "packages/survey-core/src/localization/hindi" {
23006
23056
  export var hindiStrings: {
23007
23057
  pagePrevText: string;
23008
23058
  pageNextText: string;
@@ -23111,7 +23161,7 @@ declare module "localization/hindi" {
23111
23161
  cancel: string;
23112
23162
  };
23113
23163
  }
23114
- declare module "localization/hungarian" {
23164
+ declare module "packages/survey-core/src/localization/hungarian" {
23115
23165
  export var hungarianSurveyStrings: {
23116
23166
  pagePrevText: string;
23117
23167
  pageNextText: string;
@@ -23220,7 +23270,7 @@ declare module "localization/hungarian" {
23220
23270
  cancel: string;
23221
23271
  };
23222
23272
  }
23223
- declare module "localization/icelandic" {
23273
+ declare module "packages/survey-core/src/localization/icelandic" {
23224
23274
  export var icelandicSurveyStrings: {
23225
23275
  pagePrevText: string;
23226
23276
  pageNextText: string;
@@ -23329,7 +23379,7 @@ declare module "localization/icelandic" {
23329
23379
  cancel: string;
23330
23380
  };
23331
23381
  }
23332
- declare module "localization/indonesian" {
23382
+ declare module "packages/survey-core/src/localization/indonesian" {
23333
23383
  export var indonesianStrings: {
23334
23384
  pagePrevText: string;
23335
23385
  pageNextText: string;
@@ -23438,7 +23488,7 @@ declare module "localization/indonesian" {
23438
23488
  cancel: string;
23439
23489
  };
23440
23490
  }
23441
- declare module "localization/italian" {
23491
+ declare module "packages/survey-core/src/localization/italian" {
23442
23492
  export var italianSurveyStrings: {
23443
23493
  pagePrevText: string;
23444
23494
  pageNextText: string;
@@ -23547,7 +23597,7 @@ declare module "localization/italian" {
23547
23597
  cancel: string;
23548
23598
  };
23549
23599
  }
23550
- declare module "localization/japanese" {
23600
+ declare module "packages/survey-core/src/localization/japanese" {
23551
23601
  export var japaneseSurveyStrings: {
23552
23602
  pagePrevText: string;
23553
23603
  pageNextText: string;
@@ -23656,7 +23706,7 @@ declare module "localization/japanese" {
23656
23706
  cancel: string;
23657
23707
  };
23658
23708
  }
23659
- declare module "localization/kazakh" {
23709
+ declare module "packages/survey-core/src/localization/kazakh" {
23660
23710
  export var kazakhStrings: {
23661
23711
  pagePrevText: string;
23662
23712
  pageNextText: string;
@@ -23765,7 +23815,7 @@ declare module "localization/kazakh" {
23765
23815
  cancel: string;
23766
23816
  };
23767
23817
  }
23768
- declare module "localization/korean" {
23818
+ declare module "packages/survey-core/src/localization/korean" {
23769
23819
  export var koreanStrings: {
23770
23820
  pagePrevText: string;
23771
23821
  pageNextText: string;
@@ -23874,7 +23924,7 @@ declare module "localization/korean" {
23874
23924
  cancel: string;
23875
23925
  };
23876
23926
  }
23877
- declare module "localization/latvian" {
23927
+ declare module "packages/survey-core/src/localization/latvian" {
23878
23928
  export var latvianSurveyStrings: {
23879
23929
  pagePrevText: string;
23880
23930
  pageNextText: string;
@@ -23983,7 +24033,7 @@ declare module "localization/latvian" {
23983
24033
  cancel: string;
23984
24034
  };
23985
24035
  }
23986
- declare module "localization/lithuanian" {
24036
+ declare module "packages/survey-core/src/localization/lithuanian" {
23987
24037
  export var lithuaniaSurveyStrings: {
23988
24038
  pagePrevText: string;
23989
24039
  pageNextText: string;
@@ -24092,7 +24142,7 @@ declare module "localization/lithuanian" {
24092
24142
  cancel: string;
24093
24143
  };
24094
24144
  }
24095
- declare module "localization/macedonian" {
24145
+ declare module "packages/survey-core/src/localization/macedonian" {
24096
24146
  export var macedonianSurveyStrings: {
24097
24147
  pagePrevText: string;
24098
24148
  pageNextText: string;
@@ -24201,7 +24251,7 @@ declare module "localization/macedonian" {
24201
24251
  cancel: string;
24202
24252
  };
24203
24253
  }
24204
- declare module "localization/malay" {
24254
+ declare module "packages/survey-core/src/localization/malay" {
24205
24255
  export var malaySurveyStrings: {
24206
24256
  pagePrevText: string;
24207
24257
  pageNextText: string;
@@ -24310,7 +24360,7 @@ declare module "localization/malay" {
24310
24360
  cancel: string;
24311
24361
  };
24312
24362
  }
24313
- declare module "localization/norwegian" {
24363
+ declare module "packages/survey-core/src/localization/norwegian" {
24314
24364
  export var norwegianSurveyStrings: {
24315
24365
  pagePrevText: string;
24316
24366
  pageNextText: string;
@@ -24419,7 +24469,7 @@ declare module "localization/norwegian" {
24419
24469
  cancel: string;
24420
24470
  };
24421
24471
  }
24422
- declare module "localization/persian" {
24472
+ declare module "packages/survey-core/src/localization/persian" {
24423
24473
  export var persianSurveyStrings: {
24424
24474
  pagePrevText: string;
24425
24475
  pageNextText: string;
@@ -24528,7 +24578,7 @@ declare module "localization/persian" {
24528
24578
  cancel: string;
24529
24579
  };
24530
24580
  }
24531
- declare module "localization/polish" {
24581
+ declare module "packages/survey-core/src/localization/polish" {
24532
24582
  export var polishSurveyStrings: {
24533
24583
  pagePrevText: string;
24534
24584
  pageNextText: string;
@@ -24637,7 +24687,7 @@ declare module "localization/polish" {
24637
24687
  cancel: string;
24638
24688
  };
24639
24689
  }
24640
- declare module "localization/portuguese" {
24690
+ declare module "packages/survey-core/src/localization/portuguese" {
24641
24691
  export var portugueseSurveyStrings: {
24642
24692
  pagePrevText: string;
24643
24693
  pageNextText: string;
@@ -24746,7 +24796,7 @@ declare module "localization/portuguese" {
24746
24796
  cancel: string;
24747
24797
  };
24748
24798
  }
24749
- declare module "localization/portuguese-br" {
24799
+ declare module "packages/survey-core/src/localization/portuguese-br" {
24750
24800
  /**
24751
24801
  * You don't need to translate strings that have the same value as Portuguese translation
24752
24802
  */
@@ -24858,10 +24908,10 @@ declare module "localization/portuguese-br" {
24858
24908
  cancel: string;
24859
24909
  };
24860
24910
  }
24861
- declare module "localization/romanian" {
24911
+ declare module "packages/survey-core/src/localization/romanian" {
24862
24912
  export var romanianSurveyStrings: any;
24863
24913
  }
24864
- declare module "localization/russian" {
24914
+ declare module "packages/survey-core/src/localization/russian" {
24865
24915
  export var russianSurveyStrings: {
24866
24916
  pagePrevText: string;
24867
24917
  pageNextText: string;
@@ -24970,7 +25020,7 @@ declare module "localization/russian" {
24970
25020
  cancel: string;
24971
25021
  };
24972
25022
  }
24973
- declare module "localization/serbian" {
25023
+ declare module "packages/survey-core/src/localization/serbian" {
24974
25024
  export var serbianStrings: {
24975
25025
  pagePrevText: string;
24976
25026
  pageNextText: string;
@@ -25079,7 +25129,7 @@ declare module "localization/serbian" {
25079
25129
  cancel: string;
25080
25130
  };
25081
25131
  }
25082
- declare module "localization/simplified-chinese" {
25132
+ declare module "packages/survey-core/src/localization/simplified-chinese" {
25083
25133
  export var simplifiedChineseSurveyStrings: {
25084
25134
  pagePrevText: string;
25085
25135
  pageNextText: string;
@@ -25188,7 +25238,7 @@ declare module "localization/simplified-chinese" {
25188
25238
  cancel: string;
25189
25239
  };
25190
25240
  }
25191
- declare module "localization/slovak" {
25241
+ declare module "packages/survey-core/src/localization/slovak" {
25192
25242
  export var slovakSurveyStrings: {
25193
25243
  pagePrevText: string;
25194
25244
  pageNextText: string;
@@ -25297,7 +25347,7 @@ declare module "localization/slovak" {
25297
25347
  cancel: string;
25298
25348
  };
25299
25349
  }
25300
- declare module "localization/spanish" {
25350
+ declare module "packages/survey-core/src/localization/spanish" {
25301
25351
  export var spanishSurveyStrings: {
25302
25352
  pagePrevText: string;
25303
25353
  pageNextText: string;
@@ -25406,7 +25456,7 @@ declare module "localization/spanish" {
25406
25456
  cancel: string;
25407
25457
  };
25408
25458
  }
25409
- declare module "localization/swahili" {
25459
+ declare module "packages/survey-core/src/localization/swahili" {
25410
25460
  export var swahiliStrings: {
25411
25461
  pagePrevText: string;
25412
25462
  pageNextText: string;
@@ -25515,7 +25565,7 @@ declare module "localization/swahili" {
25515
25565
  cancel: string;
25516
25566
  };
25517
25567
  }
25518
- declare module "localization/swedish" {
25568
+ declare module "packages/survey-core/src/localization/swedish" {
25519
25569
  export var swedishSurveyStrings: {
25520
25570
  pagePrevText: string;
25521
25571
  pageNextText: string;
@@ -25624,7 +25674,7 @@ declare module "localization/swedish" {
25624
25674
  cancel: string;
25625
25675
  };
25626
25676
  }
25627
- declare module "localization/tajik" {
25677
+ declare module "packages/survey-core/src/localization/tajik" {
25628
25678
  export var tajikSurveyStrings: {
25629
25679
  pagePrevText: string;
25630
25680
  pageNextText: string;
@@ -25688,7 +25738,7 @@ declare module "localization/tajik" {
25688
25738
  removeFileCaption: string;
25689
25739
  };
25690
25740
  }
25691
- declare module "localization/thai" {
25741
+ declare module "packages/survey-core/src/localization/thai" {
25692
25742
  export var thaiStrings: {
25693
25743
  pagePrevText: string;
25694
25744
  pageNextText: string;
@@ -25797,7 +25847,7 @@ declare module "localization/thai" {
25797
25847
  cancel: string;
25798
25848
  };
25799
25849
  }
25800
- declare module "localization/traditional-chinese" {
25850
+ declare module "packages/survey-core/src/localization/traditional-chinese" {
25801
25851
  export var traditionalChineseSurveyStrings: {
25802
25852
  pagePrevText: string;
25803
25853
  pageNextText: string;
@@ -25906,7 +25956,7 @@ declare module "localization/traditional-chinese" {
25906
25956
  cancel: string;
25907
25957
  };
25908
25958
  }
25909
- declare module "localization/turkish" {
25959
+ declare module "packages/survey-core/src/localization/turkish" {
25910
25960
  export var turkishSurveyStrings: {
25911
25961
  pagePrevText: string;
25912
25962
  pageNextText: string;
@@ -26015,7 +26065,7 @@ declare module "localization/turkish" {
26015
26065
  cancel: string;
26016
26066
  };
26017
26067
  }
26018
- declare module "localization/ukrainian" {
26068
+ declare module "packages/survey-core/src/localization/ukrainian" {
26019
26069
  export var ukrainianSurveyStrings: {
26020
26070
  pagePrevText: string;
26021
26071
  pageNextText: string;
@@ -26124,7 +26174,7 @@ declare module "localization/ukrainian" {
26124
26174
  cancel: string;
26125
26175
  };
26126
26176
  }
26127
- declare module "localization/vietnamese" {
26177
+ declare module "packages/survey-core/src/localization/vietnamese" {
26128
26178
  export var vietnameseSurveyStrings: {
26129
26179
  pagePrevText: string;
26130
26180
  pageNextText: string;
@@ -26233,7 +26283,7 @@ declare module "localization/vietnamese" {
26233
26283
  cancel: string;
26234
26284
  };
26235
26285
  }
26236
- declare module "localization/welsh" {
26286
+ declare module "packages/survey-core/src/localization/welsh" {
26237
26287
  export var welshSurveyStrings: {
26238
26288
  pagePrevText: string;
26239
26289
  pageNextText: string;
@@ -26342,7 +26392,7 @@ declare module "localization/welsh" {
26342
26392
  cancel: string;
26343
26393
  };
26344
26394
  }
26345
- declare module "localization/telugu" {
26395
+ declare module "packages/survey-core/src/localization/telugu" {
26346
26396
  export var teluguStrings: {
26347
26397
  pagePrevText: string;
26348
26398
  pageNextText: string;
@@ -26451,7 +26501,7 @@ declare module "localization/telugu" {
26451
26501
  cancel: string;
26452
26502
  };
26453
26503
  }
26454
- declare module "localization/philippines" {
26504
+ declare module "packages/survey-core/src/localization/philippines" {
26455
26505
  export var philippinesStrings: {
26456
26506
  pagePrevText: string;
26457
26507
  pageNextText: string;
@@ -26560,59 +26610,62 @@ declare module "localization/philippines" {
26560
26610
  cancel: string;
26561
26611
  };
26562
26612
  }
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" {
26613
+ declare module "packages/survey-core/entries/chunks/localization" {
26614
+ import "packages/survey-core/src/localization/arabic";
26615
+ import "packages/survey-core/src/localization/basque";
26616
+ import "packages/survey-core/src/localization/bulgarian";
26617
+ import "packages/survey-core/src/localization/catalan";
26618
+ import "packages/survey-core/src/localization/croatian";
26619
+ import "packages/survey-core/src/localization/czech";
26620
+ import "packages/survey-core/src/localization/danish";
26621
+ import "packages/survey-core/src/localization/dutch";
26622
+ import "packages/survey-core/src/localization/nl-BE";
26623
+ import "packages/survey-core/src/localization/estonian";
26624
+ import "packages/survey-core/src/localization/finnish";
26625
+ import "packages/survey-core/src/localization/french";
26626
+ import "packages/survey-core/src/localization/georgian";
26627
+ import "packages/survey-core/src/localization/german";
26628
+ import "packages/survey-core/src/localization/greek";
26629
+ import "packages/survey-core/src/localization/hebrew";
26630
+ import "packages/survey-core/src/localization/hindi";
26631
+ import "packages/survey-core/src/localization/hungarian";
26632
+ import "packages/survey-core/src/localization/icelandic";
26633
+ import "packages/survey-core/src/localization/indonesian";
26634
+ import "packages/survey-core/src/localization/italian";
26635
+ import "packages/survey-core/src/localization/japanese";
26636
+ import "packages/survey-core/src/localization/kazakh";
26637
+ import "packages/survey-core/src/localization/korean";
26638
+ import "packages/survey-core/src/localization/latvian";
26639
+ import "packages/survey-core/src/localization/lithuanian";
26640
+ import "packages/survey-core/src/localization/macedonian";
26641
+ import "packages/survey-core/src/localization/malay";
26642
+ import "packages/survey-core/src/localization/norwegian";
26643
+ import "packages/survey-core/src/localization/persian";
26644
+ import "packages/survey-core/src/localization/polish";
26645
+ import "packages/survey-core/src/localization/portuguese";
26646
+ import "packages/survey-core/src/localization/portuguese-br";
26647
+ import "packages/survey-core/src/localization/romanian";
26648
+ import "packages/survey-core/src/localization/russian";
26649
+ import "packages/survey-core/src/localization/serbian";
26650
+ import "packages/survey-core/src/localization/simplified-chinese";
26651
+ import "packages/survey-core/src/localization/slovak";
26652
+ import "packages/survey-core/src/localization/spanish";
26653
+ import "packages/survey-core/src/localization/swahili";
26654
+ import "packages/survey-core/src/localization/swedish";
26655
+ import "packages/survey-core/src/localization/tajik";
26656
+ import "packages/survey-core/src/localization/thai";
26657
+ import "packages/survey-core/src/localization/traditional-chinese";
26658
+ import "packages/survey-core/src/localization/turkish";
26659
+ import "packages/survey-core/src/localization/ukrainian";
26660
+ import "packages/survey-core/src/localization/vietnamese";
26661
+ import "packages/survey-core/src/localization/welsh";
26662
+ import "packages/survey-core/src/localization/telugu";
26663
+ import "packages/survey-core/src/localization/philippines";
26664
+ }
26665
+ declare module "src/entries/chunks/localization" {
26666
+ import "packages/survey-core/entries/chunks/localization";
26667
+ }
26668
+ declare module "packages/survey-react-ui/src/element-factory" {
26616
26669
  export class ReactElementFactory {
26617
26670
  static Instance: ReactElementFactory;
26618
26671
  private creatorHash;
@@ -26622,8 +26675,8 @@ declare module "react/element-factory" {
26622
26675
  createElement(elementType: string, params: any): JSX.Element | any;
26623
26676
  }
26624
26677
  }
26625
- declare module "react/reactsurveymodel" {
26626
- import { SurveyModel, QuestionMatrixDropdownRenderedCell, SurveyElement, QuestionRowModel, ItemValue, QuestionSelectBase } from "entries/core";
26678
+ declare module "packages/survey-react-ui/src/reactsurveymodel" {
26679
+ import { SurveyModel, QuestionMatrixDropdownRenderedCell, SurveyElement, QuestionRowModel, ItemValue, QuestionSelectBase } from "src/entries/core";
26627
26680
  export class ReactSurveyElementsWrapper {
26628
26681
  static wrapRow(survey: SurveyModel, element: JSX.Element, row: QuestionRowModel): JSX.Element;
26629
26682
  static wrapElement(survey: SurveyModel, element: JSX.Element, question: SurveyElement): JSX.Element;
@@ -26632,7 +26685,7 @@ declare module "react/reactsurveymodel" {
26632
26685
  static wrapMatrixCell(survey: SurveyModel, element: JSX.Element, cell: QuestionMatrixDropdownRenderedCell, reason?: string): JSX.Element;
26633
26686
  }
26634
26687
  }
26635
- declare module "react/reactquestion_factory" {
26688
+ declare module "packages/survey-react-ui/src/reactquestion_factory" {
26636
26689
  export class ReactQuestionFactory {
26637
26690
  static Instance: ReactQuestionFactory;
26638
26691
  private creatorHash;
@@ -26641,9 +26694,9 @@ declare module "react/reactquestion_factory" {
26641
26694
  createQuestion(questionType: string, params: any): JSX.Element | null;
26642
26695
  }
26643
26696
  }
26644
- declare module "react/components/character-counter" {
26645
- import { Base, CharacterCounter } from "entries/core";
26646
- import { SurveyElementBase } from "react/reactquestion_element";
26697
+ declare module "packages/survey-react-ui/src/components/character-counter" {
26698
+ import { Base, CharacterCounter } from "src/entries/core";
26699
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
26647
26700
  export interface ICharacterCounterComponentProps {
26648
26701
  counter: CharacterCounter;
26649
26702
  remainingCharacterCounter: string;
@@ -26653,9 +26706,9 @@ declare module "react/components/character-counter" {
26653
26706
  renderElement(): JSX.Element | null;
26654
26707
  }
26655
26708
  }
26656
- declare module "react/reactquestion_comment" {
26657
- import { ReactSurveyElement, SurveyQuestionUncontrolledElement } from "react/reactquestion_element";
26658
- import { QuestionCommentModel } from "entries/core";
26709
+ declare module "packages/survey-react-ui/src/reactquestion_comment" {
26710
+ import { ReactSurveyElement, SurveyQuestionUncontrolledElement } from "packages/survey-react-ui/src/reactquestion_element";
26711
+ import { QuestionCommentModel } from "src/entries/core";
26659
26712
  export class SurveyQuestionComment extends SurveyQuestionUncontrolledElement<QuestionCommentModel> {
26660
26713
  constructor(props: any);
26661
26714
  protected renderElement(): JSX.Element;
@@ -26685,8 +26738,8 @@ declare module "react/reactquestion_comment" {
26685
26738
  protected getPlaceholder(): string;
26686
26739
  }
26687
26740
  }
26688
- declare module "react/custom-widget" {
26689
- import { SurveyQuestionElementBase } from "react/reactquestion_element";
26741
+ declare module "packages/survey-react-ui/src/custom-widget" {
26742
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
26690
26743
  export class SurveyCustomWidget extends SurveyQuestionElementBase {
26691
26744
  private widgetRef;
26692
26745
  constructor(props: any);
@@ -26698,7 +26751,7 @@ declare module "react/custom-widget" {
26698
26751
  protected renderElement(): JSX.Element;
26699
26752
  }
26700
26753
  }
26701
- declare module "react/components/svg-icon/svg-icon" {
26754
+ declare module "packages/survey-react-ui/src/components/svg-icon/svg-icon" {
26702
26755
  import React from "react";
26703
26756
  export class SvgIcon extends React.Component<any, any> {
26704
26757
  private svgIconRef;
@@ -26709,16 +26762,16 @@ declare module "react/components/svg-icon/svg-icon" {
26709
26762
  componentDidMount(): void;
26710
26763
  }
26711
26764
  }
26712
- declare module "react/components/action-bar/action-bar-separator" {
26765
+ declare module "packages/survey-react-ui/src/components/action-bar/action-bar-separator" {
26713
26766
  import React from "react";
26714
26767
  export class SurveyActionBarSeparator extends React.Component<any, any> {
26715
26768
  constructor(props: any);
26716
26769
  render(): JSX.Element;
26717
26770
  }
26718
26771
  }
26719
- declare module "react/components/action-bar/action-bar-item" {
26720
- import { Base, Action } from "entries/core";
26721
- import { SurveyElementBase } from "react/reactquestion_element";
26772
+ declare module "packages/survey-react-ui/src/components/action-bar/action-bar-item" {
26773
+ import { Base, Action } from "src/entries/core";
26774
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
26722
26775
  interface IActionBarItemProps {
26723
26776
  item: Action;
26724
26777
  }
@@ -26736,9 +26789,9 @@ declare module "react/components/action-bar/action-bar-item" {
26736
26789
  renderInnerButton(): JSX.Element;
26737
26790
  }
26738
26791
  }
26739
- declare module "react/components/popup/popup" {
26740
- import { Base, PopupModel, PopupBaseViewModel, IDialogOptions } from "entries/core";
26741
- import { SurveyElementBase } from "react/reactquestion_element";
26792
+ declare module "packages/survey-react-ui/src/components/popup/popup" {
26793
+ import { Base, PopupModel, PopupBaseViewModel, IDialogOptions } from "src/entries/core";
26794
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
26742
26795
  interface IPopupProps {
26743
26796
  model: PopupModel;
26744
26797
  getTarget?: (container: HTMLElement) => HTMLElement;
@@ -26778,8 +26831,8 @@ declare module "react/components/popup/popup" {
26778
26831
  export function showModal(componentName: string, data: any, onApply: () => boolean, onCancel?: () => void, cssClass?: string, title?: string, displayMode?: "popup" | "overlay"): PopupBaseViewModel;
26779
26832
  export function showDialog(dialogOptions: IDialogOptions, rootElement?: HTMLElement): PopupBaseViewModel;
26780
26833
  }
26781
- declare module "react/components/action-bar/action-bar-item-dropdown" {
26782
- import { SurveyActionBarItem } from "react/components/action-bar/action-bar-item";
26834
+ declare module "packages/survey-react-ui/src/components/action-bar/action-bar-item-dropdown" {
26835
+ import { SurveyActionBarItem } from "packages/survey-react-ui/src/components/action-bar/action-bar-item";
26783
26836
  export class SurveyActionBarItemDropdown extends SurveyActionBarItem {
26784
26837
  private viewModel;
26785
26838
  constructor(props: any);
@@ -26787,11 +26840,11 @@ declare module "react/components/action-bar/action-bar-item-dropdown" {
26787
26840
  componentWillUnmount(): void;
26788
26841
  }
26789
26842
  }
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";
26843
+ declare module "packages/survey-react-ui/src/components/action-bar/action-bar" {
26844
+ import { Base, Action, ActionContainer } from "src/entries/core";
26845
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
26846
+ export * from "packages/survey-react-ui/src/components/action-bar/action-bar-item-dropdown";
26847
+ export * from "packages/survey-react-ui/src/components/action-bar/action-bar-separator";
26795
26848
  interface IActionBarProps {
26796
26849
  model: ActionContainer<Action>;
26797
26850
  handleClick?: boolean;
@@ -26809,9 +26862,9 @@ declare module "react/components/action-bar/action-bar" {
26809
26862
  renderItems(): JSX.Element[];
26810
26863
  }
26811
26864
  }
26812
- declare module "react/components/title/title-content" {
26865
+ declare module "packages/survey-react-ui/src/components/title/title-content" {
26813
26866
  import React from "react";
26814
- import { ITitleOwner } from "entries/core";
26867
+ import { ITitleOwner } from "src/entries/core";
26815
26868
  export class TitleContent extends React.Component<any, any> {
26816
26869
  constructor(props: any);
26817
26870
  private get cssClasses();
@@ -26821,16 +26874,16 @@ declare module "react/components/title/title-content" {
26821
26874
  private renderRequireText;
26822
26875
  }
26823
26876
  }
26824
- declare module "react/components/title/title-actions" {
26877
+ declare module "packages/survey-react-ui/src/components/title/title-actions" {
26825
26878
  import React from "react";
26826
- import { SurveyElement } from "entries/core";
26879
+ import { SurveyElement } from "src/entries/core";
26827
26880
  export class TitleActions extends React.Component<any, any> {
26828
26881
  protected get cssClasses(): any;
26829
26882
  protected get element(): SurveyElement;
26830
26883
  render(): JSX.Element;
26831
26884
  }
26832
26885
  }
26833
- declare module "react/components/title/title-element" {
26886
+ declare module "packages/survey-react-ui/src/components/title/title-element" {
26834
26887
  import React from "react";
26835
26888
  export class TitleElement extends React.Component<any, any> {
26836
26889
  constructor(props: any);
@@ -26838,17 +26891,17 @@ declare module "react/components/title/title-element" {
26838
26891
  render(): JSX.Element | any;
26839
26892
  }
26840
26893
  }
26841
- declare module "react/element-header" {
26894
+ declare module "packages/survey-react-ui/src/element-header" {
26842
26895
  import React from "react";
26843
26896
  export class SurveyElementHeader extends React.Component<any, any> {
26844
26897
  private get element();
26845
26898
  render(): JSX.Element;
26846
26899
  }
26847
26900
  }
26848
- declare module "react/reactquestion" {
26901
+ declare module "packages/survey-react-ui/src/reactquestion" {
26849
26902
  import * as React from "react";
26850
- import { Base, SurveyElement, SurveyError, Question, QuestionMatrixDropdownRenderedCell } from "entries/core";
26851
- import { SurveyElementBase, ReactSurveyElement } from "react/reactquestion_element";
26903
+ import { Base, SurveyElement, SurveyError, Question, QuestionMatrixDropdownRenderedCell } from "src/entries/core";
26904
+ import { SurveyElementBase, ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
26852
26905
  export interface ISurveyCreator {
26853
26906
  createQuestionElement(question: Question): JSX.Element | null;
26854
26907
  renderError(key: string, error: SurveyError, cssClasses: any, element?: any): JSX.Element;
@@ -26928,10 +26981,10 @@ declare module "react/reactquestion" {
26928
26981
  render(): JSX.Element;
26929
26982
  }
26930
26983
  }
26931
- declare module "react/reactquestion_element" {
26984
+ declare module "packages/survey-react-ui/src/reactquestion_element" {
26932
26985
  import * as React from "react";
26933
- import { Base, PanelModel, LocalizableString, Question } from "entries/core";
26934
- import { ISurveyCreator } from "react/reactquestion";
26986
+ import { Base, PanelModel, LocalizableString, Question } from "src/entries/core";
26987
+ import { ISurveyCreator } from "packages/survey-react-ui/src/reactquestion";
26935
26988
  export class SurveyElementBase<P, S> extends React.Component<P, S> {
26936
26989
  static renderLocString(locStr: LocalizableString, style?: any, key?: string): JSX.Element;
26937
26990
  static renderQuestionDescription(question: Question | PanelModel): JSX.Element;
@@ -26995,9 +27048,9 @@ declare module "react/reactquestion_element" {
26995
27048
  private getValue;
26996
27049
  }
26997
27050
  }
26998
- declare module "react/element" {
26999
- import { IElement } from "entries/core";
27000
- import { SurveyElementBase } from "react/reactquestion_element";
27051
+ declare module "packages/survey-react-ui/src/element" {
27052
+ import { IElement } from "src/entries/core";
27053
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27001
27054
  export class SurveyRowElement extends SurveyElementBase<any, any> {
27002
27055
  private rootRef;
27003
27056
  constructor(props: any);
@@ -27015,9 +27068,9 @@ declare module "react/element" {
27015
27068
  protected createElement(element: IElement, elementIndex?: number): JSX.Element;
27016
27069
  }
27017
27070
  }
27018
- declare module "react/row" {
27019
- import { IElement, Base } from "entries/core";
27020
- import { SurveyElementBase } from "react/reactquestion_element";
27071
+ declare module "packages/survey-react-ui/src/row" {
27072
+ import { IElement, Base } from "src/entries/core";
27073
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27021
27074
  export class SurveyRow extends SurveyElementBase<any, any> {
27022
27075
  private rootRef;
27023
27076
  constructor(props: any);
@@ -27037,11 +27090,11 @@ declare module "react/row" {
27037
27090
  protected createElement(element: IElement, elementIndex?: number): JSX.Element;
27038
27091
  }
27039
27092
  }
27040
- declare module "react/panel-base" {
27093
+ declare module "packages/survey-react-ui/src/panel-base" {
27041
27094
  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";
27095
+ import { ISurveyCreator } from "packages/survey-react-ui/src/reactquestion";
27096
+ import { Base, SurveyModel, QuestionRowModel, PanelModelBase } from "src/entries/core";
27097
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27045
27098
  export class SurveyPanelBase extends SurveyElementBase<any, any> {
27046
27099
  protected rootRef: React.RefObject<HTMLDivElement>;
27047
27100
  constructor(props: any);
@@ -27064,9 +27117,9 @@ declare module "react/panel-base" {
27064
27117
  protected createRow(row: QuestionRowModel, css: any): JSX.Element;
27065
27118
  }
27066
27119
  }
27067
- declare module "react/page" {
27068
- import { PageModel, PanelModelBase } from "entries/core";
27069
- import { SurveyPanelBase } from "react/panel-base";
27120
+ declare module "packages/survey-react-ui/src/page" {
27121
+ import { PageModel, PanelModelBase } from "src/entries/core";
27122
+ import { SurveyPanelBase } from "packages/survey-react-ui/src/panel-base";
27070
27123
  export class SurveyPage extends SurveyPanelBase {
27071
27124
  constructor(props: any);
27072
27125
  protected getPanelBase(): PanelModelBase;
@@ -27076,7 +27129,7 @@ declare module "react/page" {
27076
27129
  protected renderDescription(): JSX.Element | null;
27077
27130
  }
27078
27131
  }
27079
- declare module "react/string-viewer" {
27132
+ declare module "packages/survey-react-ui/src/string-viewer" {
27080
27133
  import React from "react";
27081
27134
  export class SurveyLocStringViewer extends React.Component<any, any> {
27082
27135
  constructor(props: any);
@@ -27093,9 +27146,9 @@ declare module "react/string-viewer" {
27093
27146
  protected renderString(): JSX.Element;
27094
27147
  }
27095
27148
  }
27096
- declare module "react/components/survey-header/survey-header" {
27149
+ declare module "packages/survey-react-ui/src/components/survey-header/survey-header" {
27097
27150
  import React from "react";
27098
- import { SurveyModel } from "entries/core";
27151
+ import { SurveyModel } from "src/entries/core";
27099
27152
  interface ISurveyHeaderProps {
27100
27153
  survey: SurveyModel;
27101
27154
  }
@@ -27111,15 +27164,15 @@ declare module "react/components/survey-header/survey-header" {
27111
27164
  render(): JSX.Element | null;
27112
27165
  }
27113
27166
  }
27114
- declare module "react/components/brand-info" {
27167
+ declare module "packages/survey-react-ui/src/components/brand-info" {
27115
27168
  import React from "react";
27116
27169
  export class BrandInfo extends React.Component<any, any> {
27117
27170
  render(): JSX.Element;
27118
27171
  }
27119
27172
  }
27120
- declare module "react/components/notifier" {
27121
- import { Base, Notifier } from "entries/core";
27122
- import { SurveyElementBase } from "react/reactquestion_element";
27173
+ declare module "packages/survey-react-ui/src/components/notifier" {
27174
+ import { Base, Notifier } from "src/entries/core";
27175
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27123
27176
  export interface INotifierComponentProps {
27124
27177
  notifier: Notifier;
27125
27178
  }
@@ -27129,13 +27182,13 @@ declare module "react/components/notifier" {
27129
27182
  renderElement(): JSX.Element | null;
27130
27183
  }
27131
27184
  }
27132
- declare module "react/components/components-container" {
27185
+ declare module "packages/survey-react-ui/src/components/components-container" {
27133
27186
  import React from "react";
27134
27187
  export class ComponentsContainer extends React.Component<any, any> {
27135
27188
  render(): JSX.Element | null;
27136
27189
  }
27137
27190
  }
27138
- declare module "react/svgbundle" {
27191
+ declare module "packages/survey-react-ui/src/svgbundle" {
27139
27192
  import React from "react";
27140
27193
  export class SvgBundleComponent extends React.Component {
27141
27194
  private containerRef;
@@ -27144,10 +27197,10 @@ declare module "react/svgbundle" {
27144
27197
  render(): JSX.Element;
27145
27198
  }
27146
27199
  }
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";
27200
+ declare module "packages/survey-react-ui/src/reactSurvey" {
27201
+ import { Base, Question, PageModel, SurveyError, SurveyModel, IAttachKey2clickOptions } from "src/entries/core";
27202
+ import { ISurveyCreator } from "packages/survey-react-ui/src/reactquestion";
27203
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27151
27204
  export class Survey extends SurveyElementBase<any, any> implements ISurveyCreator {
27152
27205
  private previousJSON;
27153
27206
  private rootRef;
@@ -27186,9 +27239,9 @@ declare module "react/reactSurvey" {
27186
27239
  }
27187
27240
  export function attachKey2click(element: JSX.Element, viewModel?: any, options?: IAttachKey2clickOptions): JSX.Element;
27188
27241
  }
27189
- declare module "react/reactSurveyNavigationBase" {
27242
+ declare module "packages/survey-react-ui/src/reactSurveyNavigationBase" {
27190
27243
  import * as React from "react";
27191
- import { SurveyModel } from "entries/core";
27244
+ import { SurveyModel } from "src/entries/core";
27192
27245
  export class SurveyNavigationBase extends React.Component<any, any> {
27193
27246
  constructor(props: any);
27194
27247
  protected get survey(): SurveyModel;
@@ -27198,9 +27251,9 @@ declare module "react/reactSurveyNavigationBase" {
27198
27251
  componentWillUnmount(): void;
27199
27252
  }
27200
27253
  }
27201
- declare module "react/reacttimerpanel" {
27202
- import { Base, SurveyTimerModel } from "entries/core";
27203
- import { ReactSurveyElement } from "react/reactquestion_element";
27254
+ declare module "packages/survey-react-ui/src/reacttimerpanel" {
27255
+ import { Base, SurveyTimerModel } from "src/entries/core";
27256
+ import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
27204
27257
  export class SurveyTimerPanel extends ReactSurveyElement {
27205
27258
  constructor(props: any);
27206
27259
  protected getStateElement(): Base;
@@ -27210,9 +27263,9 @@ declare module "react/reacttimerpanel" {
27210
27263
  render(): JSX.Element | null;
27211
27264
  }
27212
27265
  }
27213
- declare module "react/panel" {
27214
- import { SurveyPanelBase } from "react/panel-base";
27215
- import { PanelModel } from "entries/core";
27266
+ declare module "packages/survey-react-ui/src/panel" {
27267
+ import { SurveyPanelBase } from "packages/survey-react-ui/src/panel-base";
27268
+ import { PanelModel } from "src/entries/core";
27216
27269
  export class SurveyPanel extends SurveyPanelBase {
27217
27270
  private hasBeenExpanded;
27218
27271
  constructor(props: any);
@@ -27227,9 +27280,9 @@ declare module "react/panel" {
27227
27280
  protected getIsVisible(): boolean;
27228
27281
  }
27229
27282
  }
27230
- declare module "react/flow-panel" {
27231
- import { FlowPanelModel, Question } from "entries/core";
27232
- import { SurveyPanel } from "react/panel";
27283
+ declare module "packages/survey-react-ui/src/flow-panel" {
27284
+ import { FlowPanelModel, Question } from "src/entries/core";
27285
+ import { SurveyPanel } from "packages/survey-react-ui/src/panel";
27233
27286
  export class SurveyFlowPanel extends SurveyPanel {
27234
27287
  constructor(props: any);
27235
27288
  get flowPanel(): FlowPanelModel;
@@ -27250,9 +27303,9 @@ declare module "react/flow-panel" {
27250
27303
  protected renderContent(style: any, rows: JSX.Element[]): JSX.Element;
27251
27304
  }
27252
27305
  }
27253
- declare module "react/reactquestion_checkbox" {
27254
- import { ReactSurveyElement, SurveyQuestionElementBase } from "react/reactquestion_element";
27255
- import { Base, ItemValue, QuestionCheckboxModel } from "entries/core";
27306
+ declare module "packages/survey-react-ui/src/reactquestion_checkbox" {
27307
+ import { ReactSurveyElement, SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27308
+ import { Base, ItemValue, QuestionCheckboxModel } from "src/entries/core";
27256
27309
  export class SurveyQuestionCheckbox extends SurveyQuestionElementBase {
27257
27310
  constructor(props: any);
27258
27311
  protected get question(): QuestionCheckboxModel;
@@ -27284,9 +27337,9 @@ declare module "react/reactquestion_checkbox" {
27284
27337
  protected renderCheckbox(isChecked: boolean, otherItem: JSX.Element | null): JSX.Element;
27285
27338
  }
27286
27339
  }
27287
- declare module "react/reactquestion_ranking" {
27288
- import { ReactSurveyElement, SurveyQuestionElementBase } from "react/reactquestion_element";
27289
- import { QuestionRankingModel, ItemValue } from "entries/core";
27340
+ declare module "packages/survey-react-ui/src/reactquestion_ranking" {
27341
+ import { ReactSurveyElement, SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27342
+ import { QuestionRankingModel, ItemValue } from "src/entries/core";
27290
27343
  export class SurveyQuestionRanking extends SurveyQuestionElementBase {
27291
27344
  protected get question(): QuestionRankingModel;
27292
27345
  protected renderElement(): JSX.Element;
@@ -27315,9 +27368,9 @@ declare module "react/reactquestion_ranking" {
27315
27368
  protected renderElement(): JSX.Element;
27316
27369
  }
27317
27370
  }
27318
- declare module "react/components/rating/rating-item" {
27319
- import { Base, QuestionRatingModel, RenderedRatingItem } from "entries/core";
27320
- import { SurveyElementBase } from "react/reactquestion_element";
27371
+ declare module "packages/survey-react-ui/src/components/rating/rating-item" {
27372
+ import { Base, QuestionRatingModel, RenderedRatingItem } from "src/entries/core";
27373
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27321
27374
  export interface IRatingItemProps {
27322
27375
  question: QuestionRatingModel;
27323
27376
  item: RenderedRatingItem;
@@ -27338,20 +27391,20 @@ declare module "react/components/rating/rating-item" {
27338
27391
  componentDidMount(): void;
27339
27392
  }
27340
27393
  }
27341
- declare module "react/components/rating/rating-item-star" {
27342
- import { RatingItemBase } from "react/components/rating/rating-item";
27394
+ declare module "packages/survey-react-ui/src/components/rating/rating-item-star" {
27395
+ import { RatingItemBase } from "packages/survey-react-ui/src/components/rating/rating-item";
27343
27396
  export class RatingItemStar extends RatingItemBase {
27344
27397
  render(): JSX.Element | null;
27345
27398
  }
27346
27399
  }
27347
- declare module "react/components/rating/rating-item-smiley" {
27348
- import { RatingItemBase } from "react/components/rating/rating-item";
27400
+ declare module "packages/survey-react-ui/src/components/rating/rating-item-smiley" {
27401
+ import { RatingItemBase } from "packages/survey-react-ui/src/components/rating/rating-item";
27349
27402
  export class RatingItemSmiley extends RatingItemBase {
27350
27403
  render(): JSX.Element | null;
27351
27404
  }
27352
27405
  }
27353
- declare module "react/components/rating/rating-dropdown-item" {
27354
- import { SurveyElementBase } from "react/reactquestion_element";
27406
+ declare module "packages/survey-react-ui/src/components/rating/rating-dropdown-item" {
27407
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27355
27408
  interface IRatingItemProps {
27356
27409
  item: any;
27357
27410
  }
@@ -27362,9 +27415,9 @@ declare module "react/components/rating/rating-dropdown-item" {
27362
27415
  renderDescription(item: any): JSX.Element;
27363
27416
  }
27364
27417
  }
27365
- declare module "react/tagbox-filter" {
27366
- import { DropdownMultiSelectListModel, QuestionTagboxModel } from "entries/core";
27367
- import { SurveyElementBase } from "react/reactquestion_element";
27418
+ declare module "packages/survey-react-ui/src/tagbox-filter" {
27419
+ import { DropdownMultiSelectListModel, QuestionTagboxModel } from "src/entries/core";
27420
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27368
27421
  interface ITagboxFilterProps {
27369
27422
  model: DropdownMultiSelectListModel;
27370
27423
  question: QuestionTagboxModel;
@@ -27385,9 +27438,9 @@ declare module "react/tagbox-filter" {
27385
27438
  render(): JSX.Element;
27386
27439
  }
27387
27440
  }
27388
- declare module "react/dropdown-item" {
27389
- import { ReactSurveyElement } from "react/reactquestion_element";
27390
- import { Base } from "entries/core";
27441
+ declare module "packages/survey-react-ui/src/dropdown-item" {
27442
+ import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
27443
+ import { Base } from "src/entries/core";
27391
27444
  export class SurveyQuestionOptionItem extends ReactSurveyElement {
27392
27445
  constructor(props: any);
27393
27446
  componentDidUpdate(prevProps: any, prevState: any): void;
@@ -27399,9 +27452,9 @@ declare module "react/dropdown-item" {
27399
27452
  protected renderElement(): JSX.Element;
27400
27453
  }
27401
27454
  }
27402
- declare module "react/dropdown-base" {
27403
- import { Question, DropdownListModel } from "entries/core";
27404
- import { SurveyQuestionUncontrolledElement } from "react/reactquestion_element";
27455
+ declare module "packages/survey-react-ui/src/dropdown-base" {
27456
+ import { Question, DropdownListModel } from "src/entries/core";
27457
+ import { SurveyQuestionUncontrolledElement } from "packages/survey-react-ui/src/reactquestion_element";
27405
27458
  export class SurveyQuestionDropdownBase<T extends Question> extends SurveyQuestionUncontrolledElement<T> {
27406
27459
  inputElement: HTMLInputElement | null;
27407
27460
  click: (event: any) => void;
@@ -27425,17 +27478,17 @@ declare module "react/dropdown-base" {
27425
27478
  updateInputDomElement(): void;
27426
27479
  }
27427
27480
  }
27428
- declare module "react/reactquestion_dropdown" {
27429
- import { Question } from "entries/core";
27430
- import { SurveyQuestionDropdownBase } from "react/dropdown-base";
27481
+ declare module "packages/survey-react-ui/src/reactquestion_dropdown" {
27482
+ import { Question } from "src/entries/core";
27483
+ import { SurveyQuestionDropdownBase } from "packages/survey-react-ui/src/dropdown-base";
27431
27484
  export class SurveyQuestionDropdown extends SurveyQuestionDropdownBase<Question> {
27432
27485
  constructor(props: any);
27433
27486
  protected renderElement(): JSX.Element;
27434
27487
  }
27435
27488
  }
27436
- declare module "react/tagbox-item" {
27437
- import { ReactSurveyElement } from "react/reactquestion_element";
27438
- import { QuestionTagboxModel, ItemValue } from "entries/core";
27489
+ declare module "packages/survey-react-ui/src/tagbox-item" {
27490
+ import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
27491
+ import { QuestionTagboxModel, ItemValue } from "src/entries/core";
27439
27492
  export class SurveyQuestionTagboxItem extends ReactSurveyElement {
27440
27493
  constructor(props: any);
27441
27494
  protected get question(): QuestionTagboxModel;
@@ -27444,9 +27497,9 @@ declare module "react/tagbox-item" {
27444
27497
  protected renderElement(): JSX.Element;
27445
27498
  }
27446
27499
  }
27447
- declare module "react/reactquestion_tagbox" {
27448
- import { QuestionTagboxModel, DropdownListModel } from "entries/core";
27449
- import { SurveyQuestionDropdownBase } from "react/dropdown-base";
27500
+ declare module "packages/survey-react-ui/src/reactquestion_tagbox" {
27501
+ import { QuestionTagboxModel, DropdownListModel } from "src/entries/core";
27502
+ import { SurveyQuestionDropdownBase } from "packages/survey-react-ui/src/dropdown-base";
27450
27503
  export class SurveyQuestionTagbox extends SurveyQuestionDropdownBase<QuestionTagboxModel> {
27451
27504
  constructor(props: any);
27452
27505
  protected renderItem(key: string, item: any): JSX.Element;
@@ -27455,16 +27508,16 @@ declare module "react/reactquestion_tagbox" {
27455
27508
  protected renderReadOnlyElement(): JSX.Element | null;
27456
27509
  }
27457
27510
  }
27458
- declare module "react/dropdown-select" {
27459
- import { SurveyQuestionDropdown } from "react/reactquestion_dropdown";
27511
+ declare module "packages/survey-react-ui/src/dropdown-select" {
27512
+ import { SurveyQuestionDropdown } from "packages/survey-react-ui/src/reactquestion_dropdown";
27460
27513
  export class SurveyQuestionDropdownSelect extends SurveyQuestionDropdown {
27461
27514
  constructor(props: any);
27462
27515
  protected renderSelect(cssClasses: any): JSX.Element;
27463
27516
  }
27464
27517
  }
27465
- declare module "react/reactquestion_matrix" {
27466
- import { ReactSurveyElement, SurveyQuestionElementBase } from "react/reactquestion_element";
27467
- import { QuestionMatrixModel, Base } from "entries/core";
27518
+ declare module "packages/survey-react-ui/src/reactquestion_matrix" {
27519
+ import { ReactSurveyElement, SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27520
+ import { QuestionMatrixModel, Base } from "src/entries/core";
27468
27521
  export class SurveyQuestionMatrix extends SurveyQuestionElementBase {
27469
27522
  constructor(props: any);
27470
27523
  protected get question(): QuestionMatrixModel;
@@ -27496,9 +27549,9 @@ declare module "react/reactquestion_matrix" {
27496
27549
  protected renderInput(inputId: string, isChecked: boolean): JSX.Element;
27497
27550
  }
27498
27551
  }
27499
- declare module "react/reactquestion_html" {
27500
- import { SurveyQuestionElementBase } from "react/reactquestion_element";
27501
- import { QuestionHtmlModel } from "entries/core";
27552
+ declare module "packages/survey-react-ui/src/reactquestion_html" {
27553
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27554
+ import { QuestionHtmlModel } from "src/entries/core";
27502
27555
  export class SurveyQuestionHtml extends SurveyQuestionElementBase {
27503
27556
  constructor(props: any);
27504
27557
  protected get question(): QuestionHtmlModel;
@@ -27510,24 +27563,24 @@ declare module "react/reactquestion_html" {
27510
27563
  protected renderElement(): JSX.Element;
27511
27564
  }
27512
27565
  }
27513
- declare module "react/components/loading-indicator" {
27566
+ declare module "packages/survey-react-ui/src/components/loading-indicator" {
27514
27567
  import * as React from "react";
27515
27568
  export class LoadingIndicatorComponent extends React.Component<any, any> {
27516
27569
  render(): JSX.Element | null;
27517
27570
  }
27518
27571
  }
27519
- declare module "react/components/file/file-choose-button" {
27520
- import { ReactSurveyElement } from "react/reactquestion_element";
27521
- import { QuestionFileModel } from "entries/core";
27572
+ declare module "packages/survey-react-ui/src/components/file/file-choose-button" {
27573
+ import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
27574
+ import { QuestionFileModel } from "src/entries/core";
27522
27575
  export class SurveyFileChooseButton extends ReactSurveyElement {
27523
27576
  constructor(props: any);
27524
27577
  protected get question(): QuestionFileModel;
27525
27578
  render(): JSX.Element;
27526
27579
  }
27527
27580
  }
27528
- declare module "react/reactquestion_file" {
27529
- import { QuestionFileModel } from "entries/core";
27530
- import { SurveyQuestionElementBase } from "react/reactquestion_element";
27581
+ declare module "packages/survey-react-ui/src/reactquestion_file" {
27582
+ import { QuestionFileModel } from "src/entries/core";
27583
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27531
27584
  export class SurveyQuestionFile extends SurveyQuestionElementBase {
27532
27585
  constructor(props: any);
27533
27586
  protected get question(): QuestionFileModel;
@@ -27540,9 +27593,9 @@ declare module "react/reactquestion_file" {
27540
27593
  protected renderVideo(): JSX.Element;
27541
27594
  }
27542
27595
  }
27543
- declare module "react/components/file/file-preview" {
27544
- import { SurveyElementBase } from "react/reactquestion_element";
27545
- import { QuestionFileModel } from "entries/core";
27596
+ declare module "packages/survey-react-ui/src/components/file/file-preview" {
27597
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27598
+ import { QuestionFileModel } from "src/entries/core";
27546
27599
  export class SurveyFilePreview extends SurveyElementBase<{
27547
27600
  question: QuestionFileModel;
27548
27601
  }, {}> {
@@ -27552,11 +27605,11 @@ declare module "react/components/file/file-preview" {
27552
27605
  protected canRender(): boolean;
27553
27606
  }
27554
27607
  }
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";
27608
+ declare module "packages/survey-react-ui/src/reactquestion_multipletext" {
27609
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27610
+ import { SurveyQuestionAndErrorsWrapped } from "packages/survey-react-ui/src/reactquestion";
27611
+ import { QuestionMultipleTextModel, MultipleTextItemModel, MultipleTextCell } from "src/entries/core";
27612
+ import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
27560
27613
  export class SurveyQuestionMultipleText extends SurveyQuestionElementBase {
27561
27614
  constructor(props: any);
27562
27615
  protected get question(): QuestionMultipleTextModel;
@@ -27567,7 +27620,7 @@ declare module "react/reactquestion_multipletext" {
27567
27620
  export class SurveyMultipleTextItem extends ReactSurveyElement {
27568
27621
  private get question();
27569
27622
  private get item();
27570
- protected getStateElements(): (import("question_multipletext").MultipleTextEditorModel | MultipleTextItemModel)[];
27623
+ protected getStateElements(): (import("survey-core").MultipleTextEditorModel | MultipleTextItemModel)[];
27571
27624
  private get creator();
27572
27625
  protected renderElement(): JSX.Element;
27573
27626
  }
@@ -27575,9 +27628,9 @@ declare module "react/reactquestion_multipletext" {
27575
27628
  protected renderElement(): JSX.Element;
27576
27629
  }
27577
27630
  }
27578
- declare module "react/reactquestion_radiogroup" {
27579
- import { SurveyQuestionElementBase, ReactSurveyElement } from "react/reactquestion_element";
27580
- import { QuestionRadiogroupModel, ItemValue, Base } from "entries/core";
27631
+ declare module "packages/survey-react-ui/src/reactquestion_radiogroup" {
27632
+ import { SurveyQuestionElementBase, ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
27633
+ import { QuestionRadiogroupModel, ItemValue, Base } from "src/entries/core";
27581
27634
  export class SurveyQuestionRadiogroup extends SurveyQuestionElementBase {
27582
27635
  constructor(props: any);
27583
27636
  protected get question(): QuestionRadiogroupModel;
@@ -27608,9 +27661,9 @@ declare module "react/reactquestion_radiogroup" {
27608
27661
  protected renderElement(): JSX.Element;
27609
27662
  }
27610
27663
  }
27611
- declare module "react/reactquestion_text" {
27612
- import { SurveyQuestionUncontrolledElement } from "react/reactquestion_element";
27613
- import { QuestionTextModel } from "entries/core";
27664
+ declare module "packages/survey-react-ui/src/reactquestion_text" {
27665
+ import { SurveyQuestionUncontrolledElement } from "packages/survey-react-ui/src/reactquestion_element";
27666
+ import { QuestionTextModel } from "src/entries/core";
27614
27667
  export class SurveyQuestionText extends SurveyQuestionUncontrolledElement<QuestionTextModel> {
27615
27668
  constructor(props: any);
27616
27669
  protected renderInput(): JSX.Element;
@@ -27620,10 +27673,10 @@ declare module "react/reactquestion_text" {
27620
27673
  private renderDataList;
27621
27674
  }
27622
27675
  }
27623
- declare module "react/boolean" {
27676
+ declare module "packages/survey-react-ui/src/boolean" {
27624
27677
  import * as React from "react";
27625
- import { QuestionBooleanModel, Base } from "entries/core";
27626
- import { SurveyQuestionElementBase } from "react/reactquestion_element";
27678
+ import { QuestionBooleanModel, Base } from "src/entries/core";
27679
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27627
27680
  export class SurveyQuestionBoolean extends SurveyQuestionElementBase {
27628
27681
  protected checkRef: React.RefObject<HTMLInputElement>;
27629
27682
  constructor(props: any);
@@ -27639,15 +27692,15 @@ declare module "react/boolean" {
27639
27692
  protected renderElement(): JSX.Element;
27640
27693
  }
27641
27694
  }
27642
- declare module "react/boolean-checkbox" {
27643
- import { SurveyQuestionBoolean } from "react/boolean";
27695
+ declare module "packages/survey-react-ui/src/boolean-checkbox" {
27696
+ import { SurveyQuestionBoolean } from "packages/survey-react-ui/src/boolean";
27644
27697
  export class SurveyQuestionBooleanCheckbox extends SurveyQuestionBoolean {
27645
27698
  constructor(props: any);
27646
27699
  protected renderElement(): JSX.Element;
27647
27700
  }
27648
27701
  }
27649
- declare module "react/boolean-radio" {
27650
- import { SurveyQuestionBoolean } from "react/boolean";
27702
+ declare module "packages/survey-react-ui/src/boolean-radio" {
27703
+ import { SurveyQuestionBoolean } from "packages/survey-react-ui/src/boolean";
27651
27704
  export class SurveyQuestionBooleanRadio extends SurveyQuestionBoolean {
27652
27705
  constructor(props: any);
27653
27706
  private renderRadioItem;
@@ -27655,18 +27708,18 @@ declare module "react/boolean-radio" {
27655
27708
  protected renderElement(): JSX.Element;
27656
27709
  }
27657
27710
  }
27658
- declare module "react/reactquestion_empty" {
27659
- import { SurveyQuestionElementBase } from "react/reactquestion_element";
27660
- import { QuestionEmptyModel } from "entries/core";
27711
+ declare module "packages/survey-react-ui/src/reactquestion_empty" {
27712
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27713
+ import { QuestionEmptyModel } from "src/entries/core";
27661
27714
  export class SurveyQuestionEmpty extends SurveyQuestionElementBase {
27662
27715
  constructor(props: any);
27663
27716
  protected get question(): QuestionEmptyModel;
27664
27717
  protected renderElement(): JSX.Element;
27665
27718
  }
27666
27719
  }
27667
- declare module "react/components/matrix/row" {
27668
- import { QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownModelBase } from "entries/core";
27669
- import { SurveyElementBase } from "react/reactquestion_element";
27720
+ declare module "packages/survey-react-ui/src/components/matrix/row" {
27721
+ import { QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownModelBase } from "src/entries/core";
27722
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27670
27723
  interface IMatrixRowProps {
27671
27724
  model: QuestionMatrixDropdownRenderedRow;
27672
27725
  parentMatrix: QuestionMatrixDropdownModelBase;
@@ -27684,17 +27737,17 @@ declare module "react/components/matrix/row" {
27684
27737
  render(): JSX.Element;
27685
27738
  }
27686
27739
  }
27687
- declare module "react/components/matrix-actions/drag-drop-icon/drag-drop-icon" {
27688
- import { ReactSurveyElement } from "react/reactquestion_element";
27740
+ declare module "packages/survey-react-ui/src/components/matrix-actions/drag-drop-icon/drag-drop-icon" {
27741
+ import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
27689
27742
  export class SurveyQuestionMatrixDynamicDragDropIcon extends ReactSurveyElement {
27690
27743
  private get question();
27691
27744
  protected renderElement(): JSX.Element;
27692
27745
  }
27693
27746
  }
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";
27747
+ declare module "packages/survey-react-ui/src/reactquestion_matrixdropdownbase" {
27748
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27749
+ import { SurveyQuestionAndErrorsCell } from "packages/survey-react-ui/src/reactquestion";
27750
+ import { QuestionMatrixDropdownModelBase, Question } from "src/entries/core";
27698
27751
  export class SurveyQuestionMatrixDropdownBase extends SurveyQuestionElementBase {
27699
27752
  constructor(props: any);
27700
27753
  protected get question(): QuestionMatrixDropdownModelBase;
@@ -27721,16 +27774,16 @@ declare module "react/reactquestion_matrixdropdownbase" {
27721
27774
  private renderCellRadiogroupButton;
27722
27775
  }
27723
27776
  }
27724
- declare module "react/reactquestion_matrixdropdown" {
27725
- import { SurveyQuestionMatrixDropdownBase } from "react/reactquestion_matrixdropdownbase";
27777
+ declare module "packages/survey-react-ui/src/reactquestion_matrixdropdown" {
27778
+ import { SurveyQuestionMatrixDropdownBase } from "packages/survey-react-ui/src/reactquestion_matrixdropdownbase";
27726
27779
  export class SurveyQuestionMatrixDropdown extends SurveyQuestionMatrixDropdownBase {
27727
27780
  constructor(props: any);
27728
27781
  }
27729
27782
  }
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";
27783
+ declare module "packages/survey-react-ui/src/reactquestion_matrixdynamic" {
27784
+ import { SurveyQuestionMatrixDropdownBase } from "packages/survey-react-ui/src/reactquestion_matrixdropdownbase";
27785
+ import { QuestionMatrixDynamicModel } from "src/entries/core";
27786
+ import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
27734
27787
  export class SurveyQuestionMatrixDynamic extends SurveyQuestionMatrixDropdownBase {
27735
27788
  constructor(props: any);
27736
27789
  protected get matrix(): QuestionMatrixDynamicModel;
@@ -27748,9 +27801,9 @@ declare module "react/reactquestion_matrixdynamic" {
27748
27801
  protected renderElement(): JSX.Element;
27749
27802
  }
27750
27803
  }
27751
- declare module "react/components/paneldynamic-actions/paneldynamic-add-btn" {
27752
- import { QuestionPanelDynamicModel } from "entries/core";
27753
- import { ReactSurveyElement } from "react/reactquestion_element";
27804
+ declare module "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-add-btn" {
27805
+ import { QuestionPanelDynamicModel } from "src/entries/core";
27806
+ import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
27754
27807
  export class SurveyQuestionPanelDynamicAction extends ReactSurveyElement {
27755
27808
  constructor(props: any);
27756
27809
  protected get data(): any;
@@ -27761,30 +27814,30 @@ declare module "react/components/paneldynamic-actions/paneldynamic-add-btn" {
27761
27814
  protected renderElement(): JSX.Element | null;
27762
27815
  }
27763
27816
  }
27764
- declare module "react/components/paneldynamic-actions/paneldynamic-next-btn" {
27765
- import { SurveyQuestionPanelDynamicAction } from "react/components/paneldynamic-actions/paneldynamic-add-btn";
27817
+ declare module "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-next-btn" {
27818
+ import { SurveyQuestionPanelDynamicAction } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-add-btn";
27766
27819
  export class SurveyQuestionPanelDynamicNextButton extends SurveyQuestionPanelDynamicAction {
27767
27820
  protected handleClick: (event: any) => void;
27768
27821
  protected renderElement(): JSX.Element;
27769
27822
  }
27770
27823
  }
27771
- declare module "react/components/paneldynamic-actions/paneldynamic-prev-btn" {
27772
- import { SurveyQuestionPanelDynamicAction } from "react/components/paneldynamic-actions/paneldynamic-add-btn";
27824
+ declare module "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-prev-btn" {
27825
+ import { SurveyQuestionPanelDynamicAction } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-add-btn";
27773
27826
  export class SurveyQuestionPanelDynamicPrevButton extends SurveyQuestionPanelDynamicAction {
27774
27827
  protected handleClick: (event: any) => void;
27775
27828
  protected renderElement(): JSX.Element;
27776
27829
  }
27777
27830
  }
27778
- declare module "react/components/paneldynamic-actions/paneldynamic-progress-text" {
27779
- import { SurveyQuestionPanelDynamicAction } from "react/components/paneldynamic-actions/paneldynamic-add-btn";
27831
+ declare module "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-progress-text" {
27832
+ import { SurveyQuestionPanelDynamicAction } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-add-btn";
27780
27833
  export class SurveyQuestionPanelDynamicProgressText extends SurveyQuestionPanelDynamicAction {
27781
27834
  protected renderElement(): JSX.Element;
27782
27835
  }
27783
27836
  }
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";
27837
+ declare module "packages/survey-react-ui/src/reactquestion_paneldynamic" {
27838
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27839
+ import { SurveyModel, QuestionPanelDynamicModel } from "src/entries/core";
27840
+ import { SurveyPanel } from "packages/survey-react-ui/src/panel";
27788
27841
  export class SurveyQuestionPanelDynamic extends SurveyQuestionElementBase {
27789
27842
  constructor(props: any);
27790
27843
  protected get question(): QuestionPanelDynamicModel;
@@ -27810,8 +27863,8 @@ declare module "react/reactquestion_paneldynamic" {
27810
27863
  protected renderButton(): JSX.Element | null;
27811
27864
  }
27812
27865
  }
27813
- declare module "react/progress" {
27814
- import { SurveyNavigationBase } from "react/reactSurveyNavigationBase";
27866
+ declare module "packages/survey-react-ui/src/progress" {
27867
+ import { SurveyNavigationBase } from "packages/survey-react-ui/src/reactSurveyNavigationBase";
27815
27868
  export class SurveyProgress extends SurveyNavigationBase {
27816
27869
  constructor(props: any);
27817
27870
  protected get isTop(): boolean;
@@ -27820,9 +27873,9 @@ declare module "react/progress" {
27820
27873
  render(): JSX.Element;
27821
27874
  }
27822
27875
  }
27823
- declare module "react/progressButtons" {
27824
- import { ProgressButtons, PageModel, IProgressButtonsViewModel } from "entries/core";
27825
- import { SurveyNavigationBase } from "react/reactSurveyNavigationBase";
27876
+ declare module "packages/survey-react-ui/src/progressButtons" {
27877
+ import { ProgressButtons, PageModel, IProgressButtonsViewModel } from "src/entries/core";
27878
+ import { SurveyNavigationBase } from "packages/survey-react-ui/src/reactSurveyNavigationBase";
27826
27879
  export class SurveyProgressButtons extends SurveyNavigationBase implements IProgressButtonsViewModel {
27827
27880
  private respManager;
27828
27881
  private listContainerRef;
@@ -27840,9 +27893,9 @@ declare module "react/progressButtons" {
27840
27893
  componentWillUnmount(): void;
27841
27894
  }
27842
27895
  }
27843
- declare module "react/components/list/list-item" {
27844
- import { ListModel } from "entries/core";
27845
- import { SurveyElementBase } from "react/reactquestion_element";
27896
+ declare module "packages/survey-react-ui/src/components/list/list-item" {
27897
+ import { ListModel } from "src/entries/core";
27898
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27846
27899
  interface IListItemProps {
27847
27900
  model: ListModel;
27848
27901
  item: any;
@@ -27856,9 +27909,9 @@ declare module "react/components/list/list-item" {
27856
27909
  componentDidMount(): void;
27857
27910
  }
27858
27911
  }
27859
- declare module "react/components/list/list" {
27860
- import { ListModel } from "entries/core";
27861
- import { SurveyElementBase } from "react/reactquestion_element";
27912
+ declare module "packages/survey-react-ui/src/components/list/list" {
27913
+ import { ListModel } from "src/entries/core";
27914
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27862
27915
  interface IListProps {
27863
27916
  model: ListModel;
27864
27917
  }
@@ -27879,15 +27932,15 @@ declare module "react/components/list/list" {
27879
27932
  emptyContent(): JSX.Element;
27880
27933
  }
27881
27934
  }
27882
- declare module "react/progressToc" {
27883
- import { SurveyNavigationBase } from "react/reactSurveyNavigationBase";
27935
+ declare module "packages/survey-react-ui/src/progressToc" {
27936
+ import { SurveyNavigationBase } from "packages/survey-react-ui/src/reactSurveyNavigationBase";
27884
27937
  export class SurveyProgressToc extends SurveyNavigationBase {
27885
27938
  render(): JSX.Element;
27886
27939
  }
27887
27940
  }
27888
- declare module "react/reactquestion_rating" {
27889
- import { SurveyQuestionElementBase } from "react/reactquestion_element";
27890
- import { QuestionRatingModel } from "entries/core";
27941
+ declare module "packages/survey-react-ui/src/reactquestion_rating" {
27942
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27943
+ import { QuestionRatingModel } from "src/entries/core";
27891
27944
  export class SurveyQuestionRating extends SurveyQuestionElementBase {
27892
27945
  constructor(props: any);
27893
27946
  protected get question(): QuestionRatingModel;
@@ -27896,27 +27949,27 @@ declare module "react/reactquestion_rating" {
27896
27949
  protected renderElement(): JSX.Element;
27897
27950
  }
27898
27951
  }
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";
27952
+ declare module "packages/survey-react-ui/src/rating-dropdown" {
27953
+ import { QuestionRatingModel } from "src/entries/core";
27954
+ import { SurveyQuestionDropdownBase } from "packages/survey-react-ui/src/dropdown-base";
27955
+ export * from "packages/survey-react-ui/src/components/rating/rating-dropdown-item";
27903
27956
  export class SurveyQuestionRatingDropdown extends SurveyQuestionDropdownBase<QuestionRatingModel> {
27904
27957
  constructor(props: any);
27905
27958
  protected renderElement(): JSX.Element;
27906
27959
  }
27907
27960
  }
27908
- declare module "react/reactquestion_expression" {
27909
- import { SurveyQuestionElementBase } from "react/reactquestion_element";
27910
- import { QuestionExpressionModel } from "entries/core";
27961
+ declare module "packages/survey-react-ui/src/reactquestion_expression" {
27962
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27963
+ import { QuestionExpressionModel } from "src/entries/core";
27911
27964
  export class SurveyQuestionExpression extends SurveyQuestionElementBase {
27912
27965
  constructor(props: any);
27913
27966
  protected get question(): QuestionExpressionModel;
27914
27967
  protected renderElement(): JSX.Element;
27915
27968
  }
27916
27969
  }
27917
- declare module "react/react-popup-survey" {
27918
- import { Base, PopupSurveyModel } from "entries/core";
27919
- import { Survey } from "react/reactSurvey";
27970
+ declare module "packages/survey-react-ui/src/react-popup-survey" {
27971
+ import { Base, PopupSurveyModel } from "src/entries/core";
27972
+ import { Survey } from "packages/survey-react-ui/src/reactSurvey";
27920
27973
  export class PopupSurvey extends Survey {
27921
27974
  protected popup: PopupSurveyModel;
27922
27975
  constructor(props: any);
@@ -27939,9 +27992,9 @@ declare module "react/react-popup-survey" {
27939
27992
  export class SurveyWindow extends PopupSurvey {
27940
27993
  }
27941
27994
  }
27942
- declare module "react/imagepicker" {
27943
- import { ReactSurveyElement, SurveyQuestionElementBase } from "react/reactquestion_element";
27944
- import { QuestionImagePickerModel, ImageItemValue } from "entries/core";
27995
+ declare module "packages/survey-react-ui/src/imagepicker" {
27996
+ import { ReactSurveyElement, SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
27997
+ import { QuestionImagePickerModel, ImageItemValue } from "src/entries/core";
27945
27998
  export class SurveyQuestionImagePicker extends SurveyQuestionElementBase {
27946
27999
  constructor(props: any);
27947
28000
  protected get question(): QuestionImagePickerModel;
@@ -27965,9 +28018,9 @@ declare module "react/imagepicker" {
27965
28018
  protected renderElement(): JSX.Element;
27966
28019
  }
27967
28020
  }
27968
- declare module "react/image" {
27969
- import { SurveyQuestionElementBase } from "react/reactquestion_element";
27970
- import { QuestionImageModel } from "entries/core";
28021
+ declare module "packages/survey-react-ui/src/image" {
28022
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
28023
+ import { QuestionImageModel } from "src/entries/core";
27971
28024
  export class SurveyQuestionImage extends SurveyQuestionElementBase {
27972
28025
  constructor(props: any);
27973
28026
  componentDidMount(): void;
@@ -27976,9 +28029,9 @@ declare module "react/image" {
27976
28029
  protected renderElement(): JSX.Element;
27977
28030
  }
27978
28031
  }
27979
- declare module "react/signaturepad" {
27980
- import { SurveyQuestionElementBase } from "react/reactquestion_element";
27981
- import { QuestionSignaturePadModel } from "entries/core";
28032
+ declare module "packages/survey-react-ui/src/signaturepad" {
28033
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
28034
+ import { QuestionSignaturePadModel } from "src/entries/core";
27982
28035
  export class SurveyQuestionSignaturePad extends SurveyQuestionElementBase {
27983
28036
  constructor(props: any);
27984
28037
  protected get question(): QuestionSignaturePadModel;
@@ -27988,10 +28041,10 @@ declare module "react/signaturepad" {
27988
28041
  renderCleanButton(): JSX.Element | null;
27989
28042
  }
27990
28043
  }
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";
28044
+ declare module "packages/survey-react-ui/src/reactquestion_buttongroup" {
28045
+ import { SurveyQuestionElementBase } from "packages/survey-react-ui/src/reactquestion_element";
28046
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
28047
+ import { QuestionButtonGroupModel, ButtonGroupItemValue, ButtonGroupItemModel } from "src/entries/core";
27995
28048
  export class SurveyQuestionButtonGroup extends SurveyQuestionElementBase {
27996
28049
  constructor(props: any);
27997
28050
  protected get question(): QuestionButtonGroupModel;
@@ -28012,9 +28065,9 @@ declare module "react/reactquestion_buttongroup" {
28012
28065
  protected renderCaption(): JSX.Element;
28013
28066
  }
28014
28067
  }
28015
- declare module "react/reactquestion_custom" {
28016
- import { SurveyQuestionUncontrolledElement } from "react/reactquestion_element";
28017
- import { Base, QuestionCustomModel, QuestionCompositeModel } from "entries/core";
28068
+ declare module "packages/survey-react-ui/src/reactquestion_custom" {
28069
+ import { SurveyQuestionUncontrolledElement } from "packages/survey-react-ui/src/reactquestion_element";
28070
+ import { Base, QuestionCustomModel, QuestionCompositeModel } from "src/entries/core";
28018
28071
  export class SurveyQuestionCustom extends SurveyQuestionUncontrolledElement<QuestionCustomModel> {
28019
28072
  constructor(props: any);
28020
28073
  protected getStateElements(): Array<Base>;
@@ -28026,9 +28079,9 @@ declare module "react/reactquestion_custom" {
28026
28079
  protected renderElement(): JSX.Element;
28027
28080
  }
28028
28081
  }
28029
- declare module "react/components/list/list-item-content" {
28030
- import { ListModel } from "entries/core";
28031
- import { SurveyElementBase } from "react/reactquestion_element";
28082
+ declare module "packages/survey-react-ui/src/components/list/list-item-content" {
28083
+ import { ListModel } from "src/entries/core";
28084
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
28032
28085
  interface IListItemProps {
28033
28086
  model: ListModel;
28034
28087
  item: any;
@@ -28040,9 +28093,9 @@ declare module "react/components/list/list-item-content" {
28040
28093
  render(): JSX.Element | null;
28041
28094
  }
28042
28095
  }
28043
- declare module "react/components/list/list-item-group" {
28044
- import { ListModel } from "entries/core";
28045
- import { SurveyElementBase } from "react/reactquestion_element";
28096
+ declare module "packages/survey-react-ui/src/components/list/list-item-group" {
28097
+ import { ListModel } from "src/entries/core";
28098
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
28046
28099
  interface IListItemProps {
28047
28100
  model: ListModel;
28048
28101
  item: any;
@@ -28054,9 +28107,9 @@ declare module "react/components/list/list-item-group" {
28054
28107
  render(): JSX.Element | null;
28055
28108
  }
28056
28109
  }
28057
- declare module "react/components/survey-header/logo-image" {
28110
+ declare module "packages/survey-react-ui/src/components/survey-header/logo-image" {
28058
28111
  import React from "react";
28059
- import { SurveyModel } from "entries/core";
28112
+ import { SurveyModel } from "src/entries/core";
28060
28113
  interface ILogoImageProps {
28061
28114
  data: SurveyModel;
28062
28115
  }
@@ -28066,8 +28119,8 @@ declare module "react/components/survey-header/logo-image" {
28066
28119
  render(): JSX.Element;
28067
28120
  }
28068
28121
  }
28069
- declare module "react/components/matrix-actions/remove-button/remove-button" {
28070
- import { ReactSurveyElement } from "react/reactquestion_element";
28122
+ declare module "packages/survey-react-ui/src/components/matrix-actions/remove-button/remove-button" {
28123
+ import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
28071
28124
  export class SurveyQuestionMatrixDynamicRemoveButton extends ReactSurveyElement {
28072
28125
  constructor(props: any);
28073
28126
  private get question();
@@ -28076,9 +28129,9 @@ declare module "react/components/matrix-actions/remove-button/remove-button" {
28076
28129
  protected renderElement(): JSX.Element;
28077
28130
  }
28078
28131
  }
28079
- declare module "react/components/matrix-actions/detail-button/detail-button" {
28080
- import { Action } from "entries/core";
28081
- import { ReactSurveyElement } from "react/reactquestion_element";
28132
+ declare module "packages/survey-react-ui/src/components/matrix-actions/detail-button/detail-button" {
28133
+ import { Action } from "src/entries/core";
28134
+ import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
28082
28135
  export class SurveyQuestionMatrixDetailButton extends ReactSurveyElement {
28083
28136
  constructor(props: any);
28084
28137
  protected getStateElement(): any;
@@ -28089,25 +28142,25 @@ declare module "react/components/matrix-actions/detail-button/detail-button" {
28089
28142
  protected renderElement(): JSX.Element;
28090
28143
  }
28091
28144
  }
28092
- declare module "react/components/paneldynamic-actions/paneldynamic-remove-btn" {
28093
- import { SurveyQuestionPanelDynamicAction } from "react/components/paneldynamic-actions/paneldynamic-add-btn";
28145
+ declare module "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-remove-btn" {
28146
+ import { SurveyQuestionPanelDynamicAction } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-add-btn";
28094
28147
  export class SurveyQuestionPanelDynamicRemoveButton extends SurveyQuestionPanelDynamicAction {
28095
28148
  protected handleClick: (event: any) => void;
28096
28149
  protected renderElement(): JSX.Element;
28097
28150
  }
28098
28151
  }
28099
- declare module "react/components/survey-actions/survey-nav-button" {
28100
- import { Action } from "entries/core";
28101
- import { ReactSurveyElement } from "react/reactquestion_element";
28152
+ declare module "packages/survey-react-ui/src/components/survey-actions/survey-nav-button" {
28153
+ import { Action } from "src/entries/core";
28154
+ import { ReactSurveyElement } from "packages/survey-react-ui/src/reactquestion_element";
28102
28155
  export class SurveyNavigationButton extends ReactSurveyElement {
28103
28156
  protected get item(): Action;
28104
28157
  protected canRender(): boolean;
28105
28158
  protected renderElement(): JSX.Element;
28106
28159
  }
28107
28160
  }
28108
- declare module "react/components/question-error" {
28161
+ declare module "packages/survey-react-ui/src/components/question-error" {
28109
28162
  import React from "react";
28110
- import { SurveyError } from "entries/core";
28163
+ import { SurveyError } from "src/entries/core";
28111
28164
  export interface IQuestionErrorComponentProps {
28112
28165
  error: SurveyError;
28113
28166
  cssClasses: any;
@@ -28117,16 +28170,16 @@ declare module "react/components/question-error" {
28117
28170
  render(): JSX.Element | null;
28118
28171
  }
28119
28172
  }
28120
- declare module "react/components/skeleton" {
28173
+ declare module "packages/survey-react-ui/src/components/skeleton" {
28121
28174
  import React from "react";
28122
28175
  export class Skeleton extends React.Component<any, any> {
28123
28176
  render(): JSX.Element;
28124
28177
  }
28125
28178
  }
28126
- declare module "react/components/header" {
28179
+ declare module "packages/survey-react-ui/src/components/header" {
28127
28180
  import React from "react";
28128
- import { Base, SurveyModel, Cover, CoverCell } from "entries/core";
28129
- import { SurveyElementBase } from "react/reactquestion_element";
28181
+ import { Base, SurveyModel, Cover, CoverCell } from "src/entries/core";
28182
+ import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
28130
28183
  export interface ILayoutElementProps<T = Base> {
28131
28184
  survey: SurveyModel;
28132
28185
  model: T;
@@ -28147,7 +28200,7 @@ declare module "react/components/header" {
28147
28200
  renderElement(): JSX.Element | null;
28148
28201
  }
28149
28202
  }
28150
- declare module "react/string-editor" {
28203
+ declare module "packages/survey-react-ui/src/string-editor" {
28151
28204
  import React from "react";
28152
28205
  export class SurveyLocStringEditor extends React.Component<any, any> {
28153
28206
  constructor(props: any);
@@ -28160,97 +28213,98 @@ declare module "react/string-editor" {
28160
28213
  render(): JSX.Element | null;
28161
28214
  }
28162
28215
  }
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";
28216
+ declare module "packages/survey-react-ui/entries/react-ui-model" {
28217
+ export { Survey, attachKey2click } from "packages/survey-react-ui/src/reactSurvey";
28218
+ export { ReactSurveyElementsWrapper } from "packages/survey-react-ui/src/reactsurveymodel";
28219
+ export { SurveyNavigationBase } from "packages/survey-react-ui/src/reactSurveyNavigationBase";
28220
+ export { SurveyTimerPanel } from "packages/survey-react-ui/src/reacttimerpanel";
28221
+ export { SurveyPage } from "packages/survey-react-ui/src/page";
28222
+ export { SurveyRow } from "packages/survey-react-ui/src/row";
28223
+ export { SurveyPanel } from "packages/survey-react-ui/src/panel";
28224
+ export { SurveyFlowPanel } from "packages/survey-react-ui/src/flow-panel";
28225
+ export { SurveyQuestion, SurveyElementErrors, SurveyQuestionAndErrorsCell, } from "packages/survey-react-ui/src/reactquestion";
28226
+ export type { ISurveyCreator } from "packages/survey-react-ui/src/reactquestion";
28227
+ export { ReactSurveyElement, SurveyElementBase, SurveyQuestionElementBase, } from "packages/survey-react-ui/src/reactquestion_element";
28228
+ export { SurveyQuestionCommentItem, SurveyQuestionComment, } from "packages/survey-react-ui/src/reactquestion_comment";
28229
+ export { SurveyQuestionCheckbox, SurveyQuestionCheckboxItem, } from "packages/survey-react-ui/src/reactquestion_checkbox";
28230
+ export { SurveyQuestionRanking, SurveyQuestionRankingItem, SurveyQuestionRankingItemContent } from "packages/survey-react-ui/src/reactquestion_ranking";
28231
+ export { RatingItem } from "packages/survey-react-ui/src/components/rating/rating-item";
28232
+ export { RatingItemStar } from "packages/survey-react-ui/src/components/rating/rating-item-star";
28233
+ export { RatingItemSmiley } from "packages/survey-react-ui/src/components/rating/rating-item-smiley";
28234
+ export { RatingDropdownItem } from "packages/survey-react-ui/src/components/rating/rating-dropdown-item";
28235
+ export { TagboxFilterString } from "packages/survey-react-ui/src/tagbox-filter";
28236
+ export { SurveyQuestionOptionItem } from "packages/survey-react-ui/src/dropdown-item";
28237
+ export { SurveyQuestionDropdownBase } from "packages/survey-react-ui/src/dropdown-base";
28238
+ export { SurveyQuestionDropdown } from "packages/survey-react-ui/src/reactquestion_dropdown";
28239
+ export { SurveyQuestionTagboxItem } from "packages/survey-react-ui/src/tagbox-item";
28240
+ export { SurveyQuestionTagbox } from "packages/survey-react-ui/src/reactquestion_tagbox";
28241
+ export { SurveyQuestionDropdownSelect } from "packages/survey-react-ui/src/dropdown-select";
28242
+ export { SurveyQuestionMatrix, SurveyQuestionMatrixRow, SurveyQuestionMatrixCell } from "packages/survey-react-ui/src/reactquestion_matrix";
28243
+ export { SurveyQuestionHtml } from "packages/survey-react-ui/src/reactquestion_html";
28244
+ export { SurveyQuestionFile } from "packages/survey-react-ui/src/reactquestion_file";
28245
+ export { SurveyFileChooseButton } from "packages/survey-react-ui/src/components/file/file-choose-button";
28246
+ export { SurveyFilePreview } from "packages/survey-react-ui/src/components/file/file-preview";
28247
+ export { SurveyQuestionMultipleText } from "packages/survey-react-ui/src/reactquestion_multipletext";
28248
+ export { SurveyQuestionRadiogroup, SurveyQuestionRadioItem } from "packages/survey-react-ui/src/reactquestion_radiogroup";
28249
+ export { SurveyQuestionText } from "packages/survey-react-ui/src/reactquestion_text";
28250
+ export { SurveyQuestionBoolean } from "packages/survey-react-ui/src/boolean";
28251
+ export { SurveyQuestionBooleanCheckbox } from "packages/survey-react-ui/src/boolean-checkbox";
28252
+ export { SurveyQuestionBooleanRadio } from "packages/survey-react-ui/src/boolean-radio";
28253
+ export { SurveyQuestionEmpty } from "packages/survey-react-ui/src/reactquestion_empty";
28254
+ export { SurveyQuestionMatrixDropdownCell, SurveyQuestionMatrixDropdownBase } from "packages/survey-react-ui/src/reactquestion_matrixdropdownbase";
28255
+ export { SurveyQuestionMatrixDropdown } from "packages/survey-react-ui/src/reactquestion_matrixdropdown";
28256
+ export { SurveyQuestionMatrixDynamic, SurveyQuestionMatrixDynamicAddButton } from "packages/survey-react-ui/src/reactquestion_matrixdynamic";
28257
+ export { SurveyQuestionPanelDynamic } from "packages/survey-react-ui/src/reactquestion_paneldynamic";
28258
+ export { SurveyProgress } from "packages/survey-react-ui/src/progress";
28259
+ export { SurveyProgressButtons } from "packages/survey-react-ui/src/progressButtons";
28260
+ export { SurveyProgressToc } from "packages/survey-react-ui/src/progressToc";
28261
+ export { SurveyQuestionRating } from "packages/survey-react-ui/src/reactquestion_rating";
28262
+ export { SurveyQuestionRatingDropdown } from "packages/survey-react-ui/src/rating-dropdown";
28263
+ export { SurveyQuestionExpression } from "packages/survey-react-ui/src/reactquestion_expression";
28264
+ export { PopupSurvey, SurveyWindow } from "packages/survey-react-ui/src/react-popup-survey";
28265
+ export { ReactQuestionFactory } from "packages/survey-react-ui/src/reactquestion_factory";
28266
+ export { ReactElementFactory } from "packages/survey-react-ui/src/element-factory";
28267
+ export { SurveyQuestionImagePicker } from "packages/survey-react-ui/src/imagepicker";
28268
+ export { SurveyQuestionImage } from "packages/survey-react-ui/src/image";
28269
+ export { SurveyQuestionSignaturePad } from "packages/survey-react-ui/src/signaturepad";
28270
+ export { SurveyQuestionButtonGroup } from "packages/survey-react-ui/src/reactquestion_buttongroup";
28271
+ export { SurveyQuestionCustom, SurveyQuestionComposite } from "packages/survey-react-ui/src/reactquestion_custom";
28272
+ export { Popup } from "packages/survey-react-ui/src/components/popup/popup";
28273
+ export { ListItemContent } from "packages/survey-react-ui/src/components/list/list-item-content";
28274
+ export { ListItemGroup } from "packages/survey-react-ui/src/components/list/list-item-group";
28275
+ export { List } from "packages/survey-react-ui/src/components/list/list";
28276
+ export { TitleActions } from "packages/survey-react-ui/src/components/title/title-actions";
28277
+ export { TitleElement } from "packages/survey-react-ui/src/components/title/title-element";
28278
+ export { SurveyActionBar } from "packages/survey-react-ui/src/components/action-bar/action-bar";
28279
+ export { LogoImage } from "packages/survey-react-ui/src/components/survey-header/logo-image";
28280
+ export { SurveyHeader } from "packages/survey-react-ui/src/components/survey-header/survey-header";
28281
+ export { SvgIcon } from "packages/survey-react-ui/src/components/svg-icon/svg-icon";
28282
+ export { SurveyQuestionMatrixDynamicRemoveButton } from "packages/survey-react-ui/src/components/matrix-actions/remove-button/remove-button";
28283
+ export { SurveyQuestionMatrixDetailButton } from "packages/survey-react-ui/src/components/matrix-actions/detail-button/detail-button";
28284
+ export { SurveyQuestionMatrixDynamicDragDropIcon } from "packages/survey-react-ui/src/components/matrix-actions/drag-drop-icon/drag-drop-icon";
28285
+ export { SurveyQuestionPanelDynamicAddButton } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-add-btn";
28286
+ export { SurveyQuestionPanelDynamicRemoveButton } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-remove-btn";
28287
+ export { SurveyQuestionPanelDynamicPrevButton } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-prev-btn";
28288
+ export { SurveyQuestionPanelDynamicNextButton } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-next-btn";
28289
+ export { SurveyQuestionPanelDynamicProgressText } from "packages/survey-react-ui/src/components/paneldynamic-actions/paneldynamic-progress-text";
28290
+ export { SurveyNavigationButton } from "packages/survey-react-ui/src/components/survey-actions/survey-nav-button";
28291
+ export { QuestionErrorComponent } from "packages/survey-react-ui/src/components/question-error";
28292
+ export { MatrixRow } from "packages/survey-react-ui/src/components/matrix/row";
28293
+ export { Skeleton } from "packages/survey-react-ui/src/components/skeleton";
28294
+ export { NotifierComponent } from "packages/survey-react-ui/src/components/notifier";
28295
+ export { ComponentsContainer } from "packages/survey-react-ui/src/components/components-container";
28296
+ export { CharacterCounterComponent } from "packages/survey-react-ui/src/components/character-counter";
28297
+ export * from "packages/survey-react-ui/src/components/header";
28298
+ export { SurveyLocStringViewer } from "packages/survey-react-ui/src/string-viewer";
28299
+ export { SurveyLocStringEditor } from "packages/survey-react-ui/src/string-editor";
28300
+ export { LoadingIndicatorComponent } from "packages/survey-react-ui/src/components/loading-indicator";
28301
+ export { SvgBundleComponent } from "packages/survey-react-ui/src/svgbundle";
28302
+ }
28303
+ declare module "src/entries/react" {
28304
+ export * from "src/entries/core";
28305
+ export * from "src/entries/plugins";
28306
+ import "src/entries/chunks/localization";
28307
+ export * from "packages/survey-react-ui/entries/react-ui-model";
28254
28308
  }
28255
28309
 
28256
- declare module "survey-react" { import main = require("entries/react"); export = main; }
28310
+ declare module "survey-react" { import main = require("src/entries/react"); export = main; }