survey-react 1.9.10 → 1.9.14

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,13 +1,10 @@
1
1
  /*
2
- * Type definition for Survey JavaScript library for React v1.9.10
2
+ * Type definition for Survey JavaScript library for React v1.9.14
3
3
  * Copyright (c) 2015-2022 Devsoft Baltic OÜ - https://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
6
6
  import * as React from "react";
7
7
 
8
- export { ReactSurveyModel as Model };
9
- export { ReactWindowModel as WindowModel };
10
-
11
8
  export enum DragTypeOverMeEnum {
12
9
  InsideEmptyPanel = 1,
13
10
  MultilineRight,
@@ -201,6 +198,9 @@ export interface ISurveyTriggerOwner {
201
198
  copyTriggerValue(name: string, fromName: string): any;
202
199
  focusQuestion(name: string): boolean;
203
200
  }
201
+ export interface ISurveyTimerText {
202
+ timerInfoText: string;
203
+ }
204
204
  export interface IConditionObject {
205
205
  name: string;
206
206
  text: string;
@@ -1167,6 +1167,12 @@ export declare class ReactQuestionFactory {
1167
1167
  getAllTypes(): Array<any>;
1168
1168
  createQuestion(questionType: string, params: any): any;
1169
1169
  }
1170
+ export declare class ReactSurveyElementsWrapper {
1171
+ static wrapRow(survey: any, element: any, row: any): any;
1172
+ static wrapElement(survey: any, element: any, question: any): any;
1173
+ static wrapItemValue(survey: any, element: any, question: any, item: any): any;
1174
+ static wrapMatrixCell(survey: any, element: any, cell: any, reason?: string): any;
1175
+ }
1170
1176
  export declare class RendererFactory {
1171
1177
  static Instance: RendererFactory;
1172
1178
  renderersHash: any;
@@ -1298,9 +1304,6 @@ export declare class SurveyTimer {
1298
1304
  export declare class SurveyTimerPanel extends React.Component<any, any> {
1299
1305
  constructor(props: any);
1300
1306
  protected get survey(): any;
1301
- update: any;
1302
- componentDidMount(): void;
1303
- componentWillUnmount(): void;
1304
1307
  render(): any;
1305
1308
  }
1306
1309
  export declare class SvgIcon extends React.Component<any, any> {
@@ -1700,6 +1703,9 @@ export declare class ExceedSizeError extends SurveyError {
1700
1703
  getErrorType(): string;
1701
1704
  getDefaultText(): string;
1702
1705
  }
1706
+ /*
1707
+ * Base class for HtmlConditionItem and UrlConditionItem classes.
1708
+ */
1703
1709
  export declare class ExpressionItem extends Base implements ILocalizableOwner {
1704
1710
  constructor(expression?: string);
1705
1711
  locOwner: ILocalizableOwner;
@@ -2104,6 +2110,7 @@ export declare class MatrixDropdownColumn extends Base implements ILocalizableOw
2104
2110
  protected calcCellQuestionType(row: MatrixDropdownRowModelBase): string;
2105
2111
  protected updateTemplateQuestion(): void;
2106
2112
  protected createNewQuestion(cellType: string): Question;
2113
+ previousChoicesId: string;
2107
2114
  protected setQuestionProperties(question: Question, onUpdateJson?: any): void;
2108
2115
  protected propertyValueChanged(name: string, oldValue: any, newValue: any): void;
2109
2116
  }
@@ -2554,7 +2561,7 @@ export declare class Survey extends SurveyElementBase<any, any> implements ISurv
2554
2561
  rootRef: any;
2555
2562
  static get cssType(): string;
2556
2563
  static set cssType(val: string);
2557
- protected survey: ReactSurveyModel;
2564
+ protected survey: any;
2558
2565
  rootNodeId: string;
2559
2566
  rootNodeClassName: string;
2560
2567
  protected getStateElement(): Base;
@@ -2570,7 +2577,6 @@ export declare class Survey extends SurveyElementBase<any, any> implements ISurv
2570
2577
  protected renderCompleted(): any;
2571
2578
  protected renderCompletedBefore(): any;
2572
2579
  protected renderLoading(): any;
2573
- protected renderStartPage(): any;
2574
2580
  protected renderSurvey(): any;
2575
2581
  protected renderTimerPanel(location: string): any;
2576
2582
  protected renderPage(page: any): any;
@@ -2667,7 +2673,6 @@ export declare class SurveyElementCore extends Base implements ILocalizableOwner
2667
2673
  }
2668
2674
  export declare class SurveyNavigation extends SurveyNavigationBase {
2669
2675
  constructor(props: any);
2670
- mouseDownPage: any;
2671
2676
  handlePrevClick(event: any): void;
2672
2677
  handleNextClick(event: any): void;
2673
2678
  handleNextMouseDown(event: any): any;
@@ -2768,6 +2773,18 @@ export declare class SurveyRow extends SurveyElementBase<any, any> {
2768
2773
  componentWillUnmount(): void;
2769
2774
  protected createElement(element: any, elementIndex?: number): any;
2770
2775
  }
2776
+ export declare class SurveyTimerModel extends Base {
2777
+ constructor(survey: ISurvey);
2778
+ onTimer: any;
2779
+ surveyValue: ISurvey;
2780
+ text: string;
2781
+ spent: number;
2782
+ get survey(): ISurvey;
2783
+ timerFunc: any;
2784
+ start(): void;
2785
+ stop(): void;
2786
+ get isRunning(): boolean;
2787
+ }
2771
2788
  /*
2772
2789
  * Base SurveyJS validator class.
2773
2790
  */
@@ -2804,7 +2821,7 @@ export declare class SurveyWindowModel extends Base {
2804
2821
  templateValue: string;
2805
2822
  expandedChangedCallback: any;
2806
2823
  showingChangedCallback: any;
2807
- closeWindowOnCompleteCallback: any;
2824
+ protected onCreating(): void;
2808
2825
  getType(): string;
2809
2826
  /*
2810
2827
  * A survey object.
@@ -2832,6 +2849,7 @@ export declare class SurveyWindowModel extends Base {
2832
2849
  */
2833
2850
  get isExpanded(): boolean;
2834
2851
  set isExpanded(val: boolean);
2852
+ protected onExpandedChanged(): void;
2835
2853
  /*
2836
2854
  * The window and survey title.
2837
2855
  */
@@ -2846,10 +2864,15 @@ export declare class SurveyWindowModel extends Base {
2846
2864
  * Collapse the window and show survey title only.
2847
2865
  */
2848
2866
  collapse(): void;
2867
+ changeExpandCollapse(): void;
2868
+ get css(): any;
2869
+ get cssButton(): string;
2870
+ get cssRoot(): string;
2871
+ get cssBody(): string;
2872
+ get cssHeaderRoot(): string;
2873
+ get cssHeaderTitle(): string;
2849
2874
  protected createSurvey(jsonObj: any): SurveyModel;
2850
- protected expandcollapse(value: boolean): void;
2851
2875
  protected onSurveyComplete(): void;
2852
- protected closeWindowOnComplete(): void;
2853
2876
  }
2854
2877
  /*
2855
2878
  * A base class for all triggers.
@@ -3183,12 +3206,6 @@ export declare class QuestionPanelDynamicItemTextProcessor extends QuestionTextP
3183
3206
  protected getQuestionByName(name: string): Question;
3184
3207
  protected onCustomProcessText(textValue: TextPreProcessorValue): boolean;
3185
3208
  }
3186
- export declare class ReactWindowModel extends SurveyWindowModel {
3187
- constructor(jsonObj?: any, model?: ReactSurveyModel);
3188
- protected createSurvey(jsonObj: any): SurveyModel;
3189
- get renderCallback(): any;
3190
- set renderCallback(val: any);
3191
- }
3192
3209
  /*
3193
3210
  * Use it to validate the text by regular expressions.
3194
3211
  */
@@ -3433,9 +3450,11 @@ export declare class SurveyElementErrors extends ReactSurveyElement {
3433
3450
  /*
3434
3451
  * The `Survey` object contains information about the survey, Pages, Questions, flow logic and etc.
3435
3452
  */
3436
- export declare class SurveyModel extends SurveyElementCore implements ISurvey, ISurveyData, ISurveyImpl, ISurveyTriggerOwner, ISurveyErrorOwner {
3437
- constructor(jsonObj?: any);
3453
+ export declare class SurveyModel extends SurveyElementCore implements ISurvey, ISurveyData, ISurveyImpl, ISurveyTriggerOwner, ISurveyErrorOwner, ISurveyTimerText {
3454
+ constructor(jsonObj?: any, renderedElement?: any);
3438
3455
  static TemplateRendererComponentName: string;
3456
+ static get cssType(): string;
3457
+ static set cssType(val: string);
3439
3458
  static stylesManager: StylesManager;
3440
3459
  static platform: string;
3441
3460
  get platformName(): string;
@@ -3450,9 +3469,7 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
3450
3469
  editingObjValue: Base;
3451
3470
  localeValue: string;
3452
3471
  textPreProcessor: TextPreProcessor;
3453
- completedStateValue: string;
3454
- completedStateTextValue: string;
3455
- isTimerStarted: boolean;
3472
+ timerModelValue: SurveyTimerModel;
3456
3473
  /*
3457
3474
  * The event is fired before the survey is completed and the `onComplete` event is fired. You can prevent the survey from completing by setting `options.allowComplete` to `false`
3458
3475
  * <br/> `sender` - the survey object that fires the event.
@@ -4095,6 +4112,9 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
4095
4112
  * Returns a list of all pages in the survey, including invisible pages.
4096
4113
  */
4097
4114
  get pages(): any;
4115
+ renderCallback: any;
4116
+ render(element?: any): void;
4117
+ updateSurvey(newProps: any, oldProps?: any): void;
4098
4118
  getCss(): any;
4099
4119
  cssValue: any;
4100
4120
  get css(): any;
@@ -4108,6 +4128,8 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
4108
4128
  get cssNavigationNext(): string;
4109
4129
  get bodyCss(): string;
4110
4130
  get completedCss(): string;
4131
+ get completedStateCss(): string;
4132
+ getCompletedStateCss(): string;
4111
4133
  lazyRenderingValue: boolean;
4112
4134
  /*
4113
4135
  * By default all rows are rendered no matters if they are visible or not.
@@ -4530,7 +4552,7 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
4530
4552
  */
4531
4553
  get questionTitleLocation(): string;
4532
4554
  set questionTitleLocation(val: string);
4533
- protected updateElementCss(reNew?: boolean): void;
4555
+ updateElementCss(reNew?: boolean): void;
4534
4556
  /*
4535
4557
  * Gets or sets the error message position.
4536
4558
  *
@@ -4591,6 +4613,9 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
4591
4613
  getDataValueCore(valuesHash: any, key: string): any;
4592
4614
  setDataValueCore(valuesHash: any, key: string, value: any): void;
4593
4615
  deleteDataValueCore(valuesHash: any, key: string): void;
4616
+ valueHashGetDataCallback: any;
4617
+ valueHashSetDataCallback: any;
4618
+ valueHashDeleteDataCallback: any;
4594
4619
  /*
4595
4620
  * Returns all comments from the data.
4596
4621
  */
@@ -4629,6 +4654,14 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
4629
4654
  */
4630
4655
  get activePage(): any;
4631
4656
  /*
4657
+ * The started page is showing right now. survey state equals to "starting"
4658
+ */
4659
+ get isShowStartingPage(): boolean;
4660
+ /*
4661
+ * Survey is showing a page right now. It is in "running", "preview" or starting state.
4662
+ */
4663
+ get isShowingPage(): boolean;
4664
+ /*
4632
4665
  * The zero-based index of the current page in the visible pages array.
4633
4666
  */
4634
4667
  get currentPageNo(): number;
@@ -4698,9 +4731,6 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
4698
4731
  * Returns `true` if the survey is in edit mode.
4699
4732
  */
4700
4733
  get isEditMode(): boolean;
4701
- get isCompleteButtonVisible(): boolean;
4702
- get isPreviewButtonVisible(): boolean;
4703
- get isCancelPreviewButtonVisible(): boolean;
4704
4734
  /*
4705
4735
  * Returns `true` if the survey is in display mode or in preview mode.
4706
4736
  */
@@ -4784,6 +4814,9 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
4784
4814
  completeLastPage(): boolean;
4785
4815
  isNavigationButtonPressed: boolean;
4786
4816
  navigationMouseDown(): boolean;
4817
+ mouseDownPage: any;
4818
+ nextPageUIClick(): void;
4819
+ nextPageMouseDown(): boolean;
4787
4820
  /*
4788
4821
  * Shows preview for the survey. Switches the survey to the "preview" state.
4789
4822
  *
@@ -4843,6 +4876,10 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
4843
4876
  get isLastPage(): boolean;
4844
4877
  get isShowPrevButton(): boolean;
4845
4878
  get isShowNextButton(): boolean;
4879
+ get isCompleteButtonVisible(): boolean;
4880
+ get isPreviewButtonVisible(): boolean;
4881
+ get isCancelPreviewButtonVisible(): boolean;
4882
+ calcIsCompleteButtonVisible(): boolean;
4846
4883
  /*
4847
4884
  * Completes the survey.
4848
4885
  *
@@ -4891,7 +4928,7 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
4891
4928
  isCalculatingProgressText: boolean;
4892
4929
  updateProgressText(onValueChanged?: boolean): void;
4893
4930
  getProgressText(): string;
4894
- protected afterRenderSurvey(htmlElement: any): void;
4931
+ afterRenderSurvey(htmlElement: any): void;
4895
4932
  updateQuestionCssClasses(question: IQuestion, cssClasses: any): void;
4896
4933
  updatePanelCssClasses(panel: IPanel, cssClasses: any): void;
4897
4934
  updatePageCssClasses(page: IPage, cssClasses: any): void;
@@ -5014,6 +5051,7 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
5014
5051
  protected updateQuestionValue(valueName: string, newValue: any): void;
5015
5052
  protected notifyQuestionOnValueChanged(valueName: string, newValue: any): void;
5016
5053
  isRunningElementsBindings: boolean;
5054
+ updateVisibleIndexAfterBindings: boolean;
5017
5055
  isTriggerIsRunning: boolean;
5018
5056
  triggerValues: any;
5019
5057
  triggerKeys: any;
@@ -5160,7 +5198,7 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
5160
5198
  set widthMode(val: string);
5161
5199
  calculateWidthMode(): string;
5162
5200
  get timerInfoText(): string;
5163
- timerFunc: any;
5201
+ get timerModel(): SurveyTimerModel;
5164
5202
  /*
5165
5203
  * Starts a timer that will calculate how much time end-user spends on the survey or on pages.
5166
5204
  */
@@ -5173,7 +5211,7 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
5173
5211
  /*
5174
5212
  * Returns the time in seconds an end user spends on the survey
5175
5213
  */
5176
- timeSpent: number;
5214
+ get timeSpent(): number;
5177
5215
  /*
5178
5216
  * Gets or sets the maximum time in seconds that end user has to complete a survey. If the value is 0 or less, an end user has no time limit to finish a survey.
5179
5217
  */
@@ -5186,7 +5224,6 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
5186
5224
  */
5187
5225
  get maxTimeToFinishPage(): number;
5188
5226
  set maxTimeToFinishPage(val: number);
5189
- protected doTimer(): void;
5190
5227
  get inSurvey(): boolean;
5191
5228
  getSurveyData(): ISurveyData;
5192
5229
  getSurvey(): ISurvey;
@@ -5214,6 +5251,7 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
5214
5251
  * Use this method to dispose survey model properly.
5215
5252
  */
5216
5253
  dispose(): void;
5254
+ disposeCallback: any;
5217
5255
  }
5218
5256
  export declare class SurveyPage extends SurveyPanelBase {
5219
5257
  constructor(props: any);
@@ -5284,7 +5322,7 @@ export declare class SurveyQuestionCheckboxItem extends ReactSurveyElement {
5284
5322
  constructor(props: any);
5285
5323
  protected getStateElement(): Base;
5286
5324
  protected get question(): QuestionCheckboxModel;
5287
- protected get item(): ItemValue;
5325
+ protected get item(): any;
5288
5326
  protected get textStyle(): any;
5289
5327
  protected get isFirst(): any;
5290
5328
  protected get index(): number;
@@ -5503,7 +5541,7 @@ export declare class SurveyTrigger extends Trigger {
5503
5541
  }
5504
5542
  export declare class SurveyWindow extends Survey {
5505
5543
  constructor(props: any);
5506
- protected window: ReactWindowModel;
5544
+ protected window: any;
5507
5545
  protected getStateElements(): Array<Base>;
5508
5546
  handleOnExpanded(event: any): void;
5509
5547
  protected canRender(): boolean;
@@ -5876,6 +5914,7 @@ export declare class Question extends SurveyElement implements IQuestion, ICondi
5876
5914
  */
5877
5915
  onReadyChanged: EventBase<Question>;
5878
5916
  isReadOnlyRenderDiv(): boolean;
5917
+ isMobile: boolean;
5879
5918
  protected createLocTitleProperty(): LocalizableString;
5880
5919
  getSurvey(live?: boolean): ISurvey;
5881
5920
  getValueName(): string;
@@ -6364,21 +6403,6 @@ export declare class Question extends SurveyElement implements IQuestion, ICondi
6364
6403
  getAllValues(): any;
6365
6404
  needResponsiveWidth(): boolean;
6366
6405
  }
6367
- export declare class ReactSurveyModel extends SurveyModel {
6368
- constructor(jsonObj?: any);
6369
- renderCallback: any;
6370
- render(): void;
6371
- mergeCss(src: any, dest: any): void;
6372
- doAfterRenderSurvey(el: any): void;
6373
- protected onLoadSurveyFromService(): void;
6374
- protected onLoadingSurveyFromService(): void;
6375
- setCompletedState(value: string, text: string): void;
6376
- start(): boolean;
6377
- wrapRow(element: any, row: any): any;
6378
- wrapElement(element: any, question: any): any;
6379
- wrapItemValue(element: any, question: any, item: any): any;
6380
- wrapMatrixCell(element: any, cell: any, reason?: string): any;
6381
- }
6382
6406
  export declare class SurveyFlowPanel extends SurveyPanel {
6383
6407
  constructor(props: any);
6384
6408
  get flowPanel(): any;
@@ -6411,6 +6435,11 @@ export declare class SurveyQuestionBooleanCheckbox extends SurveyQuestionBoolean
6411
6435
  constructor(props: any);
6412
6436
  protected renderElement(): any;
6413
6437
  }
6438
+ export declare class SurveyQuestionBooleanRadio extends SurveyQuestionBoolean {
6439
+ constructor(props: any);
6440
+ handleOnChange: any;
6441
+ protected renderElement(): any;
6442
+ }
6414
6443
  export declare class SurveyQuestionComment extends SurveyQuestionUncontrolledElement<QuestionCommentModel> {
6415
6444
  constructor(props: any);
6416
6445
  protected renderElement(): any;
@@ -6772,6 +6801,7 @@ export declare class QuestionBooleanModel extends Question {
6772
6801
  protected setQuestionValue(newValue: any, updateIsAnswered?: boolean): void;
6773
6802
  onLabelClick(event: any, value: boolean): boolean;
6774
6803
  onSwitchClickModel(event: any): boolean;
6804
+ getRadioItemClass(css: any, value: any): string;
6775
6805
  }
6776
6806
  export declare class QuestionCustomModelBase extends Question implements ISurveyImpl, ISurveyData, IPanel {
6777
6807
  constructor(name: string, customQuestion: ComponentQuestionJSON);
@@ -6897,6 +6927,15 @@ export declare class QuestionFileModel extends Question {
6897
6927
  onStateChanged: EventBase<QuestionFileModel>;
6898
6928
  previewValue: any;
6899
6929
  currentState: string;
6930
+ indexToShow: number;
6931
+ containsMultiplyFiles: boolean;
6932
+ mobileFileNavigator: any;
6933
+ prevFileAction: Action;
6934
+ nextFileAction: Action;
6935
+ fileIndexAction: Action;
6936
+ get mobileFileNavigatorVisible(): boolean;
6937
+ protected updateElementCssCore(cssClasses: any): void;
6938
+ isPreviewVisible(index: number): boolean;
6900
6939
  getType(): string;
6901
6940
  clearOnDeletingContainer(): void;
6902
6941
  /*
@@ -7029,7 +7068,7 @@ export declare class QuestionFileModel extends Question {
7029
7068
  supportComment(): boolean;
7030
7069
  getChooseFileCss(): string;
7031
7070
  getReadOnlyFileCss(): string;
7032
- getFileRootCss(): string;
7071
+ get fileRootCss(): string;
7033
7072
  getFileDecoratorCss(): string;
7034
7073
  onDragOver: any;
7035
7074
  onDrop: any;
@@ -7550,6 +7589,7 @@ export declare class QuestionRatingModel extends Question {
7550
7589
  export declare class QuestionSelectBase extends Question {
7551
7590
  constructor(name: string);
7552
7591
  visibleChoicesChangedCallback: any;
7592
+ loadedChoicesFromServerCallback: any;
7553
7593
  filteredChoicesValue: any;
7554
7594
  conditionChoicesVisibleIfRunner: ConditionRunner;
7555
7595
  conditionChoicesEnableIfRunner: ConditionRunner;
@@ -8347,6 +8387,8 @@ export declare class QuestionMatrixDropdownModelBase extends QuestionMatrixBaseM
8347
8387
  getColumnHeaderWrapperComponentData(cell: MatrixDropdownCell): any;
8348
8388
  getRowHeaderWrapperComponentName(cell: MatrixDropdownCell): string;
8349
8389
  getRowHeaderWrapperComponentData(cell: MatrixDropdownCell): any;
8390
+ get showHorizontalScroll(): boolean;
8391
+ getRootCss(): string;
8350
8392
  }
8351
8393
  /*
8352
8394
  * A Model for a simple matrix question.
@@ -9524,6 +9566,7 @@ export declare var defaultBootstrapCss: {
9524
9566
  progress: string,
9525
9567
  progressBar: string,
9526
9568
  progressTextUnderBar: string,
9569
+ progressTextInBar: string,
9527
9570
  progressButtonsContainerCenter: string,
9528
9571
  progressButtonsContainer: string,
9529
9572
  progressButtonsImageButtonLeft: string,
@@ -9839,6 +9882,7 @@ export declare var defaultBootstrapMaterialCss: {
9839
9882
  progress: string,
9840
9883
  progressBar: string,
9841
9884
  progressTextUnderBar: string,
9885
+ progressTextInBar: string,
9842
9886
  progressButtonsContainerCenter: string,
9843
9887
  progressButtonsContainer: string,
9844
9888
  progressButtonsImageButtonLeft: string,
@@ -10327,6 +10371,11 @@ export declare var defaultV2Css: {
10327
10371
  mainRoot: string,
10328
10372
  root: string,
10329
10373
  item: string,
10374
+ radioItem: string,
10375
+ radioItemChecked: string,
10376
+ radioLabel: string,
10377
+ radioControlLabel: string,
10378
+ radioFieldset: string,
10330
10379
  itemOnError: string,
10331
10380
  control: string,
10332
10381
  itemChecked: string,
@@ -10337,8 +10386,11 @@ export declare var defaultV2Css: {
10337
10386
  disabledLabel: string,
10338
10387
  itemDecorator: string,
10339
10388
  materialDecorator: string,
10389
+ itemRadioDecorator: string,
10390
+ materialRadioDecorator: string,
10340
10391
  sliderText: string,
10341
10392
  slider: string,
10393
+ itemControl: string,
10342
10394
  },
10343
10395
  text: {
10344
10396
  root: string,
@@ -10413,6 +10465,7 @@ export declare var defaultV2Css: {
10413
10465
  },
10414
10466
  matrixdropdown: {
10415
10467
  mainRoot: string,
10468
+ rootScroll: string,
10416
10469
  root: string,
10417
10470
  cell: string,
10418
10471
  headerCell: string,
@@ -10430,6 +10483,7 @@ export declare var defaultV2Css: {
10430
10483
  },
10431
10484
  matrixdynamic: {
10432
10485
  mainRoot: string,
10486
+ rootScroll: string,
10433
10487
  empty: string,
10434
10488
  root: string,
10435
10489
  cell: string,
@@ -10501,11 +10555,15 @@ export declare var defaultV2Css: {
10501
10555
  removeFileSvgIconId: string,
10502
10556
  wrapper: string,
10503
10557
  defaultImage: string,
10558
+ defaultImageIconId: string,
10559
+ leftIconId: string,
10560
+ rightIconId: string,
10504
10561
  removeFileButton: string,
10505
10562
  dragAreaPlaceholder: string,
10506
10563
  imageWrapper: string,
10507
10564
  single: string,
10508
10565
  singleImage: string,
10566
+ mobile: string,
10509
10567
  },
10510
10568
  signaturepad: {
10511
10569
  mainRoot: string,