survey-react 1.9.101 → 1.9.103

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
@@ -17,6 +17,7 @@ declare module "helpers" {
17
17
  static getUnbindValue(value: any): any;
18
18
  static createCopy(obj: any): any;
19
19
  static isConvertibleToNumber(value: any): boolean;
20
+ static isValueObject(val: any): boolean;
20
21
  static isNumber(value: any): boolean;
21
22
  static getNumber(value: any): number;
22
23
  private static prepareStringToNumber;
@@ -114,6 +115,7 @@ declare module "localization/english" {
114
115
  clearCaption: string;
115
116
  signaturePlaceHolder: string;
116
117
  chooseFileCaption: string;
118
+ replaceFileCaption: string;
117
119
  removeFileCaption: string;
118
120
  booleanCheckedLabel: string;
119
121
  booleanUncheckedLabel: string;
@@ -225,6 +227,7 @@ declare module "surveyStrings" {
225
227
  clearCaption: string;
226
228
  signaturePlaceHolder: string;
227
229
  chooseFileCaption: string;
230
+ replaceFileCaption: string;
228
231
  removeFileCaption: string;
229
232
  booleanCheckedLabel: string;
230
233
  booleanUncheckedLabel: string;
@@ -705,6 +708,8 @@ declare module "expressions/expressions" {
705
708
  private consumer;
706
709
  private isArithmeticValue;
707
710
  constructor(operatorName: string, left?: any, right?: any, isArithmeticOp?: boolean);
711
+ private get requireStrictCompare();
712
+ private getIsOperandRequireStrict;
708
713
  getType(): string;
709
714
  get isArithmetic(): boolean;
710
715
  get isConjunction(): boolean;
@@ -752,6 +757,7 @@ declare module "expressions/expressions" {
752
757
  getType(): string;
753
758
  toString(func?: (op: Operand) => string): string;
754
759
  get correctValue(): any;
760
+ get requireStrictCompare(): boolean;
755
761
  evaluate(): any;
756
762
  setVariables(variables: Array<string>): void;
757
763
  protected getCorrectValue(value: any): any;
@@ -766,6 +772,7 @@ declare module "expressions/expressions" {
766
772
  private valueInfo;
767
773
  private useValueAsItIs;
768
774
  constructor(variableName: string);
775
+ get requireStrictCompare(): boolean;
769
776
  getType(): string;
770
777
  toString(func?: (op: Operand) => string): string;
771
778
  get variable(): string;
@@ -804,7 +811,7 @@ declare module "expressions/expressions" {
804
811
  static plusMinus(a: number, b: number, res: number): number;
805
812
  static unaryFunctions: HashTable<Function>;
806
813
  static binaryFunctions: HashTable<Function>;
807
- static isTwoValueEquals(x: any, y: any): boolean;
814
+ static isTwoValueEquals(x: any, y: any, ignoreOrder?: boolean): boolean;
808
815
  static operatorToString(operatorName: string): string;
809
816
  static convertValForDateCompare(val: any, second: any): any;
810
817
  static signs: HashTable<string>;
@@ -1560,6 +1567,7 @@ declare module "defaultCss/defaultV2Css" {
1560
1567
  root: string;
1561
1568
  rootMobile: string;
1562
1569
  rootReadOnly: string;
1570
+ rootCompact: string;
1563
1571
  rootBackgroundImage: string;
1564
1572
  container: string;
1565
1573
  header: string;
@@ -1813,6 +1821,8 @@ declare module "defaultCss/defaultV2Css" {
1813
1821
  itemDisabled: string;
1814
1822
  itemHover: string;
1815
1823
  label: string;
1824
+ labelTrue: string;
1825
+ labelFalse: string;
1816
1826
  switch: string;
1817
1827
  disabledLabel: string;
1818
1828
  sliderText: string;
@@ -1948,6 +1958,9 @@ declare module "defaultCss/defaultV2Css" {
1948
1958
  tableWrapper: string;
1949
1959
  rootAlternateRows: string;
1950
1960
  cell: string;
1961
+ errorsCell: string;
1962
+ errorsCellTop: string;
1963
+ errorsCellBottom: string;
1951
1964
  itemCell: string;
1952
1965
  row: string;
1953
1966
  headerCell: string;
@@ -2001,6 +2014,9 @@ declare module "defaultCss/defaultV2Css" {
2001
2014
  emptyCell: string;
2002
2015
  verticalCell: string;
2003
2016
  cellQuestionWrapper: string;
2017
+ errorsCell: string;
2018
+ errorsCellTop: string;
2019
+ errorsCellBottom: string;
2004
2020
  compact: string;
2005
2021
  };
2006
2022
  rating: {
@@ -2597,7 +2613,6 @@ declare module "panel" {
2597
2613
  addElement(q: IElement): void;
2598
2614
  get index(): number;
2599
2615
  private setWidth;
2600
- setElementMaxMinWidth(el: IElement): void;
2601
2616
  private getRenderedCalcWidth;
2602
2617
  private getElementWidth;
2603
2618
  private getRenderedWidthFromWidth;
@@ -2626,6 +2641,8 @@ declare module "panel" {
2626
2641
  endLoadingFromJson(): void;
2627
2642
  showTitle: boolean;
2628
2643
  get hasTitle(): boolean;
2644
+ delete(): void;
2645
+ protected removeFromParent(): void;
2629
2646
  protected canShowTitle(): boolean;
2630
2647
  showDescription: boolean;
2631
2648
  get _showDescription(): boolean;
@@ -2980,7 +2997,7 @@ declare module "panel" {
2980
2997
  */
2981
2998
  get page(): IPage;
2982
2999
  set page(val: IPage);
2983
- delete(): void;
3000
+ protected removeFromParent(): void;
2984
3001
  moveTo(container: IPanel, insertBefore?: any): boolean;
2985
3002
  /**
2986
3003
  * Returns the visible index of the panel in the survey. Commonly it is -1 and it doesn't show.
@@ -3129,6 +3146,7 @@ declare module "question_file" {
3129
3146
  constructor(name: string);
3130
3147
  protected updateElementCssCore(cssClasses: any): void;
3131
3148
  private getFileIndexCaption;
3149
+ private previewValueChanged;
3132
3150
  isPreviewVisible(index: number): boolean;
3133
3151
  getType(): string;
3134
3152
  clearValue(): void;
@@ -3201,12 +3219,14 @@ declare module "question_file" {
3201
3219
  confirmRemoveAllMessage: string;
3202
3220
  noFileChosenCaption: string;
3203
3221
  chooseButtonCaption: string;
3222
+ replaceButtonCaption: string;
3204
3223
  clearButtonCaption: string;
3205
3224
  removeFileCaption: string;
3206
3225
  loadingFileTitle: string;
3207
3226
  chooseFileTitle: string;
3208
3227
  dragAreaPlaceholder: string;
3209
3228
  get inputTitle(): string;
3229
+ get chooseButtonText(): string;
3210
3230
  clear(doneCallback?: () => void): void;
3211
3231
  get renderCapture(): string;
3212
3232
  get multipleRendered(): string;
@@ -3435,7 +3455,7 @@ declare module "choicesRestful" {
3435
3455
  }
3436
3456
  declare module "question_baseselect" {
3437
3457
  import { SurveyError } from "survey-error";
3438
- import { ISurveyImpl, ISurvey } from "base-interfaces";
3458
+ import { ISurveyImpl, ISurvey, ISurveyData } from "base-interfaces";
3439
3459
  import { Question } from "question";
3440
3460
  import { ItemValue } from "itemvalue";
3441
3461
  import { ChoicesRestful } from "choicesRestful";
@@ -3456,7 +3476,6 @@ declare module "question_baseselect" {
3456
3476
  private cachedValueForUrlRequests;
3457
3477
  private isChoicesLoaded;
3458
3478
  private enableOnLoadingChoices;
3459
- private dependedQuestions;
3460
3479
  private noneItemValue;
3461
3480
  private newItemValue;
3462
3481
  private canShowOptionItemCallback;
@@ -3467,12 +3486,14 @@ declare module "question_baseselect" {
3467
3486
  constructor(name: string);
3468
3487
  getType(): string;
3469
3488
  dispose(): void;
3489
+ protected resetDependedQuestion(): void;
3470
3490
  get otherId(): string;
3471
3491
  protected getCommentElementsId(): Array<string>;
3472
3492
  protected getItemValueType(): string;
3473
3493
  createItemValue(value: any, text?: string): ItemValue;
3474
3494
  get isUsingCarryForward(): boolean;
3475
- private setIsUsingCarrayForward;
3495
+ get carryForwardQuestionType(): string;
3496
+ private setCarryForwardQuestionType;
3476
3497
  supportGoNextPageError(): boolean;
3477
3498
  isLayoutTypeSupported(layoutType: string): boolean;
3478
3499
  localeChanged(): void;
@@ -3639,8 +3660,6 @@ declare module "question_baseselect" {
3639
3660
  get choicesFromQuestion(): string;
3640
3661
  set choicesFromQuestion(val: string);
3641
3662
  private isLockVisibleChoices;
3642
- private addIntoDependedQuestion;
3643
- private removeFromDependedQuestion;
3644
3663
  /**
3645
3664
  * Specifies which choice items to inherit from another question. Applies only when the `choicesFromQuestion` property is specified.
3646
3665
  *
@@ -3656,6 +3675,10 @@ declare module "question_baseselect" {
3656
3675
  */
3657
3676
  get choicesFromQuestionMode(): string;
3658
3677
  set choicesFromQuestionMode(val: string);
3678
+ get choiceValuesFromQuestion(): string;
3679
+ set choiceValuesFromQuestion(val: string);
3680
+ get choiceTextsFromQuestion(): string;
3681
+ set choiceTextsFromQuestion(val: string);
3659
3682
  /**
3660
3683
  * Specifies whether to hide the question if no choice items are visible.
3661
3684
  *
@@ -3755,8 +3778,14 @@ declare module "question_baseselect" {
3755
3778
  private getItemDisplayValue;
3756
3779
  private getFilteredChoices;
3757
3780
  protected get activeChoices(): Array<ItemValue>;
3781
+ getCarryForwardQuestion(data?: ISurveyData): Question;
3758
3782
  private getQuestionWithChoices;
3759
- private getChoicesFromQuestion;
3783
+ private findCarryForwardQuestion;
3784
+ private getQuestionWithChoicesCore;
3785
+ private getQuestionWithArrayValue;
3786
+ private getChoicesFromArrayQuestion;
3787
+ private getValueKeyName;
3788
+ private getChoicesFromSelectQuestion;
3760
3789
  private copyChoiceItem;
3761
3790
  protected get hasActiveChoices(): boolean;
3762
3791
  protected isHeadChoice(item: ItemValue, question: QuestionSelectBase): boolean;
@@ -3786,6 +3815,7 @@ declare module "question_baseselect" {
3786
3815
  private updateCachedValueForUrlRequests;
3787
3816
  private isUpdatingChoicesDependedQuestions;
3788
3817
  protected updateChoicesDependedQuestions(): void;
3818
+ protected updateDependedQuestion(): void;
3789
3819
  onSurveyValueChanged(newValue: any): void;
3790
3820
  protected onVisibleChoicesChanged(): void;
3791
3821
  protected isVisibleCore(): boolean;
@@ -4434,6 +4464,7 @@ declare module "question_matrixdropdownrendered" {
4434
4464
  panel: PanelModel;
4435
4465
  isShowHideDetail: boolean;
4436
4466
  isActionsCell: boolean;
4467
+ isErrorsCell: boolean;
4437
4468
  isDragHandlerCell: boolean;
4438
4469
  private classNameValue;
4439
4470
  constructor();
@@ -4441,10 +4472,6 @@ declare module "question_matrixdropdownrendered" {
4441
4472
  get hasTitle(): boolean;
4442
4473
  get hasPanel(): boolean;
4443
4474
  get id(): number;
4444
- get showErrorOnTop(): boolean;
4445
- get showErrorOnBottom(): boolean;
4446
- private showErrorOnCore;
4447
- private getShowErrorLocation;
4448
4475
  get item(): ItemValue;
4449
4476
  set item(val: ItemValue);
4450
4477
  get isChoice(): boolean;
@@ -4464,7 +4491,9 @@ declare module "question_matrixdropdownrendered" {
4464
4491
  isDetailRow: boolean;
4465
4492
  isGhostRow: boolean;
4466
4493
  isAdditionalClasses: boolean;
4494
+ visible: boolean;
4467
4495
  row: MatrixDropdownRowModelBase;
4496
+ isErrorsRow: boolean;
4468
4497
  private static counter;
4469
4498
  private idValue;
4470
4499
  cells: Array<QuestionMatrixDropdownRenderedCell>;
@@ -4477,6 +4506,13 @@ declare module "question_matrixdropdownrendered" {
4477
4506
  };
4478
4507
  get className(): string;
4479
4508
  }
4509
+ export class QuestionMatrixDropdownRenderedErrorRow extends QuestionMatrixDropdownRenderedRow {
4510
+ isErrorsRow: boolean;
4511
+ constructor(cssClasses: any);
4512
+ get attributes(): {};
4513
+ get className(): string;
4514
+ onAfterCreated(): void;
4515
+ }
4480
4516
  export class QuestionMatrixDropdownRenderedTable extends Base {
4481
4517
  matrix: QuestionMatrixDropdownModelBase;
4482
4518
  private headerRowValue;
@@ -4498,6 +4534,8 @@ declare module "question_matrixdropdownrendered" {
4498
4534
  get headerRow(): QuestionMatrixDropdownRenderedRow;
4499
4535
  get footerRow(): QuestionMatrixDropdownRenderedRow;
4500
4536
  get allowRowsDragAndDrop(): boolean;
4537
+ private get showCellErrorsTop();
4538
+ private get showCellErrorsBottom();
4501
4539
  protected build(): void;
4502
4540
  updateShowTableAndAddRow(): void;
4503
4541
  onAddedRow(row: MatrixDropdownRowModelBase, index: number): void;
@@ -4508,6 +4546,7 @@ declare module "question_matrixdropdownrendered" {
4508
4546
  private getRenderedRowIndex;
4509
4547
  protected buildRowsActions(): void;
4510
4548
  protected createRenderedRow(cssClasses: any, isDetailRow?: boolean): QuestionMatrixDropdownRenderedRow;
4549
+ protected createErrorRenderedRow(cssClasses: any): QuestionMatrixDropdownRenderedErrorRow;
4511
4550
  protected buildHeader(): void;
4512
4551
  protected buildFooter(): void;
4513
4552
  protected buildRows(): void;
@@ -4524,6 +4563,7 @@ declare module "question_matrixdropdownrendered" {
4524
4563
  private buildRowActions;
4525
4564
  private get showRemoveButtonAsIcon();
4526
4565
  protected setDefaultRowActions(row: MatrixDropdownRowModelBase, actions: Array<IAction>): void;
4566
+ private createErrorRow;
4527
4567
  private createHorizontalRow;
4528
4568
  private addRowActionsCell;
4529
4569
  private createDetailPanelRow;
@@ -4534,6 +4574,7 @@ declare module "question_matrixdropdownrendered" {
4534
4574
  private createMutlipleEditCells;
4535
4575
  private setItemCellCssClasses;
4536
4576
  private createEditCell;
4577
+ private createErrorCell;
4537
4578
  private createMutlipleColumnsFooter;
4538
4579
  private createMutlipleColumnsHeader;
4539
4580
  private getMultipleColumnChoices;
@@ -4610,6 +4651,7 @@ declare module "question_matrixdynamic" {
4610
4651
  */
4611
4652
  get confirmDelete(): boolean;
4612
4653
  set confirmDelete(val: boolean);
4654
+ get isValueArray(): boolean;
4613
4655
  /**
4614
4656
  * Specifies a key column. Set this property to a column name, and the question will display `keyDuplicationError` if a user tries to enter a duplicate value in this column.
4615
4657
  * @see keyDuplicationError
@@ -4633,6 +4675,7 @@ declare module "question_matrixdynamic" {
4633
4675
  set defaultValueFromLastRow(val: boolean);
4634
4676
  protected isDefaultValueEmpty(): boolean;
4635
4677
  protected valueFromData(val: any): any;
4678
+ protected isNewValueCorrect(val: any): boolean;
4636
4679
  protected setDefaultValue(): void;
4637
4680
  moveRowByIndex(fromIndex: number, toIndex: number): void;
4638
4681
  clearOnDrop(): void;
@@ -5327,6 +5370,7 @@ declare module "question_paneldynamic" {
5327
5370
  set defaultValueFromLastPanel(val: boolean);
5328
5371
  protected isDefaultValueEmpty(): boolean;
5329
5372
  protected setDefaultValue(): void;
5373
+ get isValueArray(): boolean;
5330
5374
  isEmpty(): boolean;
5331
5375
  getProgressInfo(): IProgressInfo;
5332
5376
  private isRowEmpty;
@@ -5426,6 +5470,7 @@ declare module "question_paneldynamic" {
5426
5470
  private onReadyChangedCallback;
5427
5471
  recalculateIsReadyValue(): void;
5428
5472
  protected onSetData(): void;
5473
+ protected isNewValueCorrect(val: any): boolean;
5429
5474
  getItemIndex(item: ISurveyData): number;
5430
5475
  getVisibleItemIndex(item: ISurveyData): number;
5431
5476
  getPanelItemData(item: ISurveyData): any;
@@ -5859,23 +5904,23 @@ declare module "survey-events-api" {
5859
5904
  }
5860
5905
  export interface GetQuestionTitleEvent extends QuestionEventMixin {
5861
5906
  /**
5862
- * a calculated question title, based on question `title`, `name`
5907
+ * A question title taken from the question's `title` or `name` property. You can change this parameter's value.
5863
5908
  */
5864
5909
  title: string;
5865
5910
  }
5866
5911
  export interface GetTitleTagNameEvent {
5867
5912
  /**
5868
- * an element title tagName that are used to render a title. You can change it from the default value
5913
+ * A survey element (question, panel, page, or the survey itself) for which the event is raised.
5869
5914
  */
5870
- tagName: string;
5915
+ element: Base;
5871
5916
  /**
5872
- * an element (question, panel, page and survey) that SurveyJS is going to render
5917
+ * A heading used to render the title (`"h1"`-`"h6"`). You can change this parameter's value.
5873
5918
  */
5874
- element: Base;
5919
+ tagName: string;
5875
5920
  }
5876
5921
  export interface GetQuestionNoEvent extends QuestionEventMixin {
5877
5922
  /**
5878
- * a calculated question no, based on question `visibleIndex`, survey `.questionStartIndex` properties. You can change it
5923
+ * A question number that is calculated based upon the question's [`visibleIndex`](https://surveyjs.io/form-library/documentation/api-reference/question#visibleIndex) and survey's [`questionStartIndex`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#questionStartIndex) properties. You can change this parameter's value.
5879
5924
  */
5880
5925
  no: string;
5881
5926
  }
@@ -6479,7 +6524,7 @@ declare module "page" {
6479
6524
  navigationLocStrChanged(): void;
6480
6525
  get passed(): boolean;
6481
6526
  set passed(val: boolean);
6482
- delete(): void;
6527
+ protected removeFromParent(): void;
6483
6528
  onFirstRendering(): void;
6484
6529
  /**
6485
6530
  * The visible index of the page. It has values from 0 to visible page count - 1.
@@ -7162,6 +7207,7 @@ declare module "question_multipletext" {
7162
7207
  getConditionJson(operator?: string, path?: string): any;
7163
7208
  locStrsChanged(): void;
7164
7209
  localeChanged(): void;
7210
+ protected isNewValueCorrect(val: any): boolean;
7165
7211
  supportGoNextPageAutomatic(): boolean;
7166
7212
  /**
7167
7213
  * The number of columns used to arrange input items. Accepts the following values: 1, 2, 3, 4, 5.
@@ -7288,6 +7334,7 @@ declare module "survey" {
7288
7334
  private textPreProcessor;
7289
7335
  private timerModelValue;
7290
7336
  private navigationBarValue;
7337
+ onThemeApplying: EventBase<SurveyModel>;
7291
7338
  onThemeApplied: EventBase<SurveyModel>;
7292
7339
  /**
7293
7340
  * An event that is raised after a [trigger](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#triggers) is executed.
@@ -7342,7 +7389,7 @@ declare module "survey" {
7342
7389
  *
7343
7390
  * For information on event handler parameters, refer to descriptions within the interface.
7344
7391
  *
7345
- * [Continue an Incomplete Survey](https://surveyjs.io/form-library/documentation/handle-survey-results-continue-incomplete (linkStyle)).
7392
+ * [Continue an Incomplete Survey](https://surveyjs.io/form-library/documentation/handle-survey-results-continue-incomplete (linkStyle))
7346
7393
  */
7347
7394
  onPartialSend: EventBase<SurveyModel, {}>;
7348
7395
  /**
@@ -7533,26 +7580,37 @@ declare module "survey" {
7533
7580
  */
7534
7581
  onGetQuestionDisplayValue: EventBase<SurveyModel, GetQuestionDisplayValueEvent>;
7535
7582
  /**
7536
- * Use this event to change the question title in code. If you want to remove question numbering then set showQuestionNumbers to "off".
7537
- * @see showQuestionNumbers
7583
+ * An event that is raised before the survey displays a question title. Handle this event to modify question titles.
7584
+ *
7585
+ * For information on event handler parameters, refer to descriptions within the interface.
7586
+ *
7587
+ * If you want to modify question numbers, handle the [`onGetQuestionNo`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#onGetQuestionNo) event.
7538
7588
  * @see requiredText
7539
7589
  */
7540
7590
  onGetQuestionTitle: EventBase<SurveyModel, GetQuestionTitleEvent>;
7541
7591
  /**
7542
- * Use this event to change the element title tag name that renders by default.
7543
- * @see showQuestionNumbers
7544
- * @see requiredText
7592
+ * An event that is raised when the survey calculates heading levels (`<h1>`, `<h2>`, etc.) for a survey, page, panel, and question title. Handle this event to change the heading level of individual titles.
7593
+ *
7594
+ * For information on event handler parameters, refer to descriptions within the interface.
7595
+ *
7596
+ * If you want to specify heading levels for all titles, use the [`titleTags`](https://surveyjs.io/form-library/documentation/api-reference/settings#titleTags) object in [global settings](https://surveyjs.io/form-library/documentation/api-reference/settings).
7597
+ * @see onGetQuestionTitle
7598
+ * @see onGetQuestionNo
7545
7599
  */
7546
7600
  onGetTitleTagName: EventBase<SurveyModel, GetTitleTagNameEvent>;
7547
7601
  /**
7548
- * Use this event to change the question no in code. If you want to remove question numbering then set showQuestionNumbers to "off".
7549
- * @see showQuestionNumbers
7602
+ * An event that is raised before the survey calculates a question number. Handle this event to modify question numbers.
7603
+ *
7604
+ * For information on event handler parameters, refer to descriptions within the interface.
7605
+ *
7606
+ * If you want to hide question numbers, disable the [`showQuestionNumbers`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#showQuestionNumbers) property.
7607
+ * @see onGetQuestionTitle
7550
7608
  * @see questionStartIndex
7551
7609
  */
7552
7610
  onGetQuestionNo: EventBase<SurveyModel, GetQuestionNoEvent>;
7553
7611
  /**
7554
7612
  * Use this event to change the progress text in code.
7555
- * @see progressBarType
7613
+ * @see progressBarType
7556
7614
  */
7557
7615
  onProgressText: EventBase<SurveyModel, ProgressTextEvent>;
7558
7616
  /**
@@ -8570,15 +8628,17 @@ declare module "survey" {
8570
8628
  get showPageNumbers(): boolean;
8571
8629
  set showPageNumbers(value: boolean);
8572
8630
  /**
8573
- * Gets or sets a value that specifies how the question numbers are displayed.
8631
+ * Specifies whether to display question numbers and how to calculate them.
8574
8632
  *
8575
- * The following options are available:
8633
+ * Possible values:
8576
8634
  *
8577
- * - `on` - display question numbers
8578
- * - `onpage` - display question numbers, start numbering on every page
8579
- * - `off` - turn off the numbering for questions titles
8635
+ * - `true` or `"on"` - Displays question numbers.
8636
+ * - `"onpage"` - Displays question numbers and starts numbering on each page from scratch.
8637
+ * - `false` or `"off"` - Hides question numbers.
8580
8638
  *
8581
- * [View Demo](https://surveyjs.io/form-library/examples/survey-options/ (linkStyle))
8639
+ * [View Demo](https://surveyjs.io/form-library/examples/how-to-number-pages-and-questions/ (linkStyle))
8640
+ *
8641
+ * If you want to hide the number of an individual question, enable its [`hideNumber`](https://surveyjs.io/form-library/documentation/api-reference/question#hideNumber) property.
8582
8642
  */
8583
8643
  get showQuestionNumbers(): string | boolean;
8584
8644
  set showQuestionNumbers(value: string | boolean);
@@ -9269,6 +9329,7 @@ declare module "survey" {
9269
9329
  matrixCellValueChanging(question: QuestionMatrixDropdownModelBase, options: MatrixCellValueChangingEvent): void;
9270
9330
  get isValidateOnValueChanging(): boolean;
9271
9331
  get isValidateOnValueChanged(): boolean;
9332
+ private get isValidateOnComplete();
9272
9333
  matrixCellValidate(question: QuestionMatrixDropdownModelBase, options: MatrixCellValidateEvent): SurveyError;
9273
9334
  dynamicPanelAdded(question: QuestionPanelDynamicModel, panelIndex?: number, panel?: PanelModel): void;
9274
9335
  dynamicPanelRemoved(question: QuestionPanelDynamicModel, panelIndex: number, panel: PanelModel): void;
@@ -10305,6 +10366,13 @@ declare module "questionCustomWidgets" {
10305
10366
  getCustomWidget(question: IQuestion): QuestionCustomWidget;
10306
10367
  }
10307
10368
  }
10369
+ declare module "console-warnings" {
10370
+ export class ConsoleWarnings {
10371
+ static disposedObjectChangedProperty(propName: string, objType: string): void;
10372
+ static inCorrectQuestionValue(questionName: string, val: any): void;
10373
+ static warn(text: string): void;
10374
+ }
10375
+ }
10308
10376
  declare module "question" {
10309
10377
  import { HashTable } from "helpers";
10310
10378
  import { EventBase } from "base";
@@ -10367,6 +10435,7 @@ declare module "question" {
10367
10435
  private locProcessedTitle;
10368
10436
  protected isReadyValue: boolean;
10369
10437
  private commentElements;
10438
+ private dependedQuestions;
10370
10439
  /**
10371
10440
  * An event that is raised when the question's ready state has changed (expressions are evaluated, choices are loaded from a web resource specified by the `choicesByUrl` property, etc.).
10372
10441
  *
@@ -10412,6 +10481,12 @@ declare module "question" {
10412
10481
  set page(val: IPage);
10413
10482
  getPanel(): IPanel;
10414
10483
  delete(): void;
10484
+ protected removeFromParent(): void;
10485
+ protected addDependedQuestion(question: Question): void;
10486
+ protected removeDependedQuestion(question: Question): void;
10487
+ protected updateDependedQuestions(): void;
10488
+ protected updateDependedQuestion(): void;
10489
+ protected resetDependedQuestion(): void;
10415
10490
  get isFlowLayout(): boolean;
10416
10491
  getLayoutType(): string;
10417
10492
  isLayoutTypeSupported(layoutType: string): boolean;
@@ -10789,6 +10864,7 @@ declare module "question" {
10789
10864
  private set questionValue(value);
10790
10865
  private get questionComment();
10791
10866
  private set questionComment(value);
10867
+ get isValueArray(): boolean;
10792
10868
  /**
10793
10869
  * Gets or sets the question value.
10794
10870
  * @see SurveyModel.setValue
@@ -10991,12 +11067,16 @@ declare module "question" {
10991
11067
  protected runValidators(): Array<SurveyError>;
10992
11068
  private doOnAsyncCompleted;
10993
11069
  protected raiseOnCompletedAsyncValidators(): void;
11070
+ allowSpaceAsAnswer: boolean;
10994
11071
  private isValueChangedInSurvey;
11072
+ private isOldAnswered;
10995
11073
  protected allowNotifyValueChanged: boolean;
10996
11074
  protected setNewValue(newValue: any): void;
11075
+ protected isNewValueCorrect(val: any): boolean;
10997
11076
  protected isNewValueEqualsToValue(newValue: any): boolean;
10998
11077
  protected isTextValue(): boolean;
10999
11078
  get isSurveyInputTextUpdate(): boolean;
11079
+ get requireStrictCompare(): boolean;
11000
11080
  private getDataLocNotification;
11001
11081
  get isInputTextUpdate(): boolean;
11002
11082
  protected setNewValueInData(newValue: any): void;
@@ -11512,6 +11592,7 @@ declare module "question_matrixdropdownbase" {
11512
11592
  private isColumnVisibilityChanged;
11513
11593
  protected runTotalsCondition(values: HashTable<any>, properties: HashTable<any>): void;
11514
11594
  private getRowConditionValues;
11595
+ IsMultiplyColumn(column: MatrixDropdownColumn): boolean;
11515
11596
  locStrsChanged(): void;
11516
11597
  /**
11517
11598
  * Returns a matrix column with a given `name` or `null` if a column with this is not found.
@@ -12811,12 +12892,6 @@ declare module "settings" {
12811
12892
  *
12812
12893
  * - `caseSensitive`: `Boolean`\
12813
12894
  * Specifies whether to differentiate between capital and lower-case letters. Default value: `false`.
12814
- *
12815
- * - `normalizedTextCallback`: `(str: string, reason: string) => string`
12816
- * Use the following function { str.normalize("NFD").replace(/[\u0300-\u036f]/g, ""); }
12817
- * If you want to 'Brouillé' to be equal to 'Brouille'.
12818
- * Use the following function { return reason === "filter" ? str.normalize("NFD").replace(/[\u0300-\u036f]/g, ""): ""; }
12819
- * If you want to use this functionality during filtering only, for example in list.
12820
12895
  */
12821
12896
  comparator: {
12822
12897
  trimStrings: boolean;
@@ -12947,11 +13022,22 @@ declare module "settings" {
12947
13022
  * - `"icon"` - Users can only use the choice item icon as a drag handle.
12948
13023
  */
12949
13024
  rankingDragHandleArea: string;
13025
+ environment: ISurveyEnvironment;
12950
13026
  /**
12951
- * Specifies environment in which SurveyJS will exist
13027
+ * Allows you to hide the maximum length indicator in text input questions.
13028
+ *
13029
+ * If you specify a question's [`maxLength`](https://surveyjs.io/form-library/documentation/api-reference/text-entry-question-model#maxLength) property or a survey's [`maxTextLength`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#maxTextLength) property, text input questions indicate the number of entered characters and the character limit. Assign `false` to the `settings.showMaxLengthIndicator` property if you want to hide this indicator.
13030
+ *
13031
+ * Default value: `true`
12952
13032
  */
12953
- environment: ISurveyEnvironment;
12954
13033
  showMaxLengthIndicator: boolean;
13034
+ /**
13035
+ * An object that specifies heading levels (`<h1>`, `<h2>`, etc.) to use when rendering survey, page, panel, and question titles.
13036
+ *
13037
+ * Default value: `{ survey: "h3", page: "h4", panel: "h4", question: "h5" }`
13038
+ *
13039
+ * If you want to modify heading levels for individual titles, handle `SurveyModel`'s [`onGetTitleTagName`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#onGetTitleTagName) event.
13040
+ */
12955
13041
  titleTags: {
12956
13042
  survey: string;
12957
13043
  page: string;
@@ -13005,7 +13091,7 @@ declare module "question_matrixdropdown" {
13005
13091
  protected getConditionObjectRowName(index: number): string;
13006
13092
  protected getConditionObjectRowText(index: number): string;
13007
13093
  protected getConditionObjectsRowIndeces(): Array<number>;
13008
- protected setNewValue(newValue: any): void;
13094
+ protected isNewValueCorrect(val: any): boolean;
13009
13095
  clearIncorrectValues(): void;
13010
13096
  protected clearValueIfInvisibleCore(reason: string): void;
13011
13097
  protected generateRows(): Array<MatrixDropdownRowModel>;
@@ -13326,6 +13412,7 @@ declare module "question_matrix" {
13326
13412
  protected getVisibleRows(): Array<MatrixRowModel>;
13327
13413
  protected sortVisibleRows(array: Array<MatrixRowModel>): Array<MatrixRowModel>;
13328
13414
  endLoadingFromJson(): void;
13415
+ protected isNewValueCorrect(val: any): boolean;
13329
13416
  protected processRowsOnSet(newRows: Array<any>): MatrixRowModel[];
13330
13417
  get visibleRows(): Array<MatrixRowModel>;
13331
13418
  get cells(): MatrixCells;
@@ -13520,6 +13607,7 @@ declare module "question_checkbox" {
13520
13607
  selectAll(): void;
13521
13608
  protected isItemSelectedCore(item: ItemValue): boolean;
13522
13609
  private getRealValue;
13610
+ get isValueArray(): boolean;
13523
13611
  /**
13524
13612
  * Specifies the maximum number of selected choices.
13525
13613
  *
@@ -13945,6 +14033,7 @@ declare module "question_ranking" {
13945
14033
  getNumberByIndex(index: number): string;
13946
14034
  setSurveyImpl(value: ISurveyImpl, isLight?: boolean): void;
13947
14035
  isAnswerCorrect(): boolean;
14036
+ get requireStrictCompare(): boolean;
13948
14037
  onSurveyValueChanged(newValue: any): void;
13949
14038
  protected onVisibleChoicesChanged: () => void;
13950
14039
  localeChanged: () => void;
@@ -14136,6 +14225,7 @@ declare module "question_rating" {
14136
14225
  import { LocalizableString } from "localizablestring";
14137
14226
  import { Base } from "base";
14138
14227
  import { DropdownListModel } from "dropdownListModel";
14228
+ import { ISurveyImpl } from "base-interfaces";
14139
14229
  export class RenderedRatingItem extends Base {
14140
14230
  itemValue: ItemValue;
14141
14231
  private locString;
@@ -14236,13 +14326,14 @@ declare module "question_rating" {
14236
14326
  * [View Demo](/form-library/examples/rating-scale/ (linkStyle))
14237
14327
  */
14238
14328
  rateCount: number;
14329
+ private static colorsCalculated;
14239
14330
  private static badColor;
14240
14331
  private static normalColor;
14241
14332
  private static goodColor;
14242
14333
  private static badColorLight;
14243
14334
  private static normalColorLight;
14244
14335
  private static goodColorLight;
14245
- private initColors;
14336
+ private updateColors;
14246
14337
  protected getDisplayValueCore(keysAsText: boolean, value: any): any;
14247
14338
  get visibleRateValues(): ItemValue[];
14248
14339
  itemValuePropertyChanged(item: ItemValue, name: string, oldValue: any, newValue: any): void;
@@ -14385,6 +14476,7 @@ declare module "question_rating" {
14385
14476
  get dropdownListModel(): DropdownListModel;
14386
14477
  protected updateCssClasses(res: any, css: any): void;
14387
14478
  protected calcCssClasses(css: any): any;
14479
+ setSurveyImpl(value: ISurveyImpl, isLight?: boolean): void;
14388
14480
  dispose(): void;
14389
14481
  }
14390
14482
  }
@@ -14816,9 +14908,9 @@ declare module "question_custom" {
14816
14908
  */
14817
14909
  title?: string;
14818
14910
  /**
14819
- * An icon for the custom question type.
14911
+ * An icon name for the custom question type.
14820
14912
  */
14821
- icon?: string;
14913
+ iconName?: string;
14822
14914
  /**
14823
14915
  * A function that is called when the custom question type is initialized. Use it to add, remove, or modify the type's properties (see [Override Base Question Properties](https://surveyjs.io/form-library/documentation/customize-question-types/create-composite-question-types#override-base-question-properties)).
14824
14916
  */
@@ -15767,6 +15859,7 @@ declare module "defaultCss/cssstandard" {
15767
15859
  };
15768
15860
  };
15769
15861
  variables: {
15862
+ mobileWidth: string;
15770
15863
  themeMark: string;
15771
15864
  };
15772
15865
  tagbox: {
@@ -16228,6 +16321,7 @@ declare module "defaultCss/cssmodern" {
16228
16321
  };
16229
16322
  };
16230
16323
  variables: {
16324
+ mobileWidth: string;
16231
16325
  themeMark: string;
16232
16326
  };
16233
16327
  };
@@ -17832,18 +17926,23 @@ declare module "localization/arabic" {
17832
17926
  noneItemText: string;
17833
17927
  selectAllItemText: string;
17834
17928
  progressText: string;
17929
+ indexText: string;
17835
17930
  panelDynamicProgressText: string;
17931
+ panelDynamicTabTextFormat: string;
17836
17932
  questionsProgressText: string;
17837
17933
  emptySurvey: string;
17838
17934
  completingSurvey: string;
17839
17935
  completingSurveyBefore: string;
17840
17936
  loadingSurvey: string;
17841
17937
  placeholder: string;
17938
+ ratingOptionsCaption: string;
17842
17939
  value: string;
17843
17940
  requiredError: string;
17844
17941
  requiredErrorInPanel: string;
17845
17942
  requiredInAllRowsError: string;
17846
17943
  numericError: string;
17944
+ minError: string;
17945
+ maxError: string;
17847
17946
  textMinLength: string;
17848
17947
  textMaxLength: string;
17849
17948
  textMinMaxLength: string;
@@ -17863,16 +17962,19 @@ declare module "localization/arabic" {
17863
17962
  loadingFile: string;
17864
17963
  chooseFile: string;
17865
17964
  noFileChosen: string;
17965
+ fileDragAreaPlaceholder: string;
17866
17966
  confirmDelete: string;
17867
17967
  keyDuplicationError: string;
17868
17968
  addColumn: string;
17869
17969
  addRow: string;
17870
17970
  removeRow: string;
17971
+ emptyRowsText: string;
17871
17972
  addPanel: string;
17872
17973
  removePanel: string;
17873
17974
  choices_Item: string;
17874
17975
  matrix_column: string;
17875
17976
  matrix_row: string;
17977
+ multipletext_itemname: string;
17876
17978
  savingData: string;
17877
17979
  savingDataError: string;
17878
17980
  savingDataSuccess: string;
@@ -17886,6 +17988,7 @@ declare module "localization/arabic" {
17886
17988
  timerLimitPage: string;
17887
17989
  timerLimitSurvey: string;
17888
17990
  clearCaption: string;
17991
+ signaturePlaceHolder: string;
17889
17992
  chooseFileCaption: string;
17890
17993
  removeFileCaption: string;
17891
17994
  booleanCheckedLabel: string;
@@ -17893,6 +17996,16 @@ declare module "localization/arabic" {
17893
17996
  confirmRemoveFile: string;
17894
17997
  confirmRemoveAllFiles: string;
17895
17998
  questionTitlePatternText: string;
17999
+ modalCancelButtonText: string;
18000
+ modalApplyButtonText: string;
18001
+ filterStringPlaceholder: string;
18002
+ emptyMessage: string;
18003
+ noEntriesText: string;
18004
+ noEntriesReadonlyText: string;
18005
+ more: string;
18006
+ tagboxDoneButtonCaption: string;
18007
+ selectToRankEmptyRankedAreaText: string;
18008
+ selectToRankEmptyUnrankedAreaText: string;
17896
18009
  };
17897
18010
  }
17898
18011
  declare module "localization/basque" {
@@ -17907,13 +18020,16 @@ declare module "localization/basque" {
17907
18020
  noneItemText: string;
17908
18021
  selectAllItemText: string;
17909
18022
  progressText: string;
18023
+ indexText: string;
17910
18024
  panelDynamicProgressText: string;
18025
+ panelDynamicTabTextFormat: string;
17911
18026
  questionsProgressText: string;
17912
18027
  emptySurvey: string;
17913
18028
  completingSurvey: string;
17914
18029
  completingSurveyBefore: string;
17915
18030
  loadingSurvey: string;
17916
18031
  placeholder: string;
18032
+ ratingOptionsCaption: string;
17917
18033
  value: string;
17918
18034
  requiredError: string;
17919
18035
  requiredErrorInPanel: string;
@@ -17940,6 +18056,7 @@ declare module "localization/basque" {
17940
18056
  loadingFile: string;
17941
18057
  chooseFile: string;
17942
18058
  noFileChosen: string;
18059
+ fileDragAreaPlaceholder: string;
17943
18060
  confirmDelete: string;
17944
18061
  keyDuplicationError: string;
17945
18062
  addColumn: string;
@@ -17975,6 +18092,14 @@ declare module "localization/basque" {
17975
18092
  questionTitlePatternText: string;
17976
18093
  modalCancelButtonText: string;
17977
18094
  modalApplyButtonText: string;
18095
+ filterStringPlaceholder: string;
18096
+ emptyMessage: string;
18097
+ noEntriesText: string;
18098
+ noEntriesReadonlyText: string;
18099
+ more: string;
18100
+ tagboxDoneButtonCaption: string;
18101
+ selectToRankEmptyRankedAreaText: string;
18102
+ selectToRankEmptyUnrankedAreaText: string;
17978
18103
  };
17979
18104
  }
17980
18105
  declare module "localization/bulgarian" {
@@ -17989,18 +18114,23 @@ declare module "localization/bulgarian" {
17989
18114
  noneItemText: string;
17990
18115
  selectAllItemText: string;
17991
18116
  progressText: string;
18117
+ indexText: string;
17992
18118
  panelDynamicProgressText: string;
18119
+ panelDynamicTabTextFormat: string;
17993
18120
  questionsProgressText: string;
17994
18121
  emptySurvey: string;
17995
18122
  completingSurvey: string;
17996
18123
  completingSurveyBefore: string;
17997
18124
  loadingSurvey: string;
17998
18125
  placeholder: string;
18126
+ ratingOptionsCaption: string;
17999
18127
  value: string;
18000
18128
  requiredError: string;
18001
18129
  requiredErrorInPanel: string;
18002
18130
  requiredInAllRowsError: string;
18003
18131
  numericError: string;
18132
+ minError: string;
18133
+ maxError: string;
18004
18134
  textMinLength: string;
18005
18135
  textMaxLength: string;
18006
18136
  textMinMaxLength: string;
@@ -18020,16 +18150,19 @@ declare module "localization/bulgarian" {
18020
18150
  loadingFile: string;
18021
18151
  chooseFile: string;
18022
18152
  noFileChosen: string;
18153
+ fileDragAreaPlaceholder: string;
18023
18154
  confirmDelete: string;
18024
18155
  keyDuplicationError: string;
18025
18156
  addColumn: string;
18026
18157
  addRow: string;
18027
18158
  removeRow: string;
18159
+ emptyRowsText: string;
18028
18160
  addPanel: string;
18029
18161
  removePanel: string;
18030
18162
  choices_Item: string;
18031
18163
  matrix_column: string;
18032
18164
  matrix_row: string;
18165
+ multipletext_itemname: string;
18033
18166
  savingData: string;
18034
18167
  savingDataError: string;
18035
18168
  savingDataSuccess: string;
@@ -18043,6 +18176,7 @@ declare module "localization/bulgarian" {
18043
18176
  timerLimitPage: string;
18044
18177
  timerLimitSurvey: string;
18045
18178
  clearCaption: string;
18179
+ signaturePlaceHolder: string;
18046
18180
  chooseFileCaption: string;
18047
18181
  removeFileCaption: string;
18048
18182
  booleanCheckedLabel: string;
@@ -18050,6 +18184,16 @@ declare module "localization/bulgarian" {
18050
18184
  confirmRemoveFile: string;
18051
18185
  confirmRemoveAllFiles: string;
18052
18186
  questionTitlePatternText: string;
18187
+ modalCancelButtonText: string;
18188
+ modalApplyButtonText: string;
18189
+ filterStringPlaceholder: string;
18190
+ emptyMessage: string;
18191
+ noEntriesText: string;
18192
+ noEntriesReadonlyText: string;
18193
+ more: string;
18194
+ tagboxDoneButtonCaption: string;
18195
+ selectToRankEmptyRankedAreaText: string;
18196
+ selectToRankEmptyUnrankedAreaText: string;
18053
18197
  };
18054
18198
  }
18055
18199
  declare module "localization/catalan" {
@@ -18057,15 +18201,30 @@ declare module "localization/catalan" {
18057
18201
  pagePrevText: string;
18058
18202
  pageNextText: string;
18059
18203
  completeText: string;
18204
+ previewText: string;
18205
+ editText: string;
18206
+ startSurveyText: string;
18060
18207
  otherItemText: string;
18208
+ noneItemText: string;
18209
+ selectAllItemText: string;
18061
18210
  progressText: string;
18211
+ indexText: string;
18212
+ panelDynamicProgressText: string;
18213
+ panelDynamicTabTextFormat: string;
18214
+ questionsProgressText: string;
18062
18215
  emptySurvey: string;
18063
18216
  completingSurvey: string;
18217
+ completingSurveyBefore: string;
18064
18218
  loadingSurvey: string;
18065
18219
  placeholder: string;
18220
+ ratingOptionsCaption: string;
18221
+ value: string;
18066
18222
  requiredError: string;
18223
+ requiredErrorInPanel: string;
18067
18224
  requiredInAllRowsError: string;
18068
18225
  numericError: string;
18226
+ minError: string;
18227
+ maxError: string;
18069
18228
  textMinLength: string;
18070
18229
  textMaxLength: string;
18071
18230
  textMinMaxLength: string;
@@ -18076,15 +18235,59 @@ declare module "localization/catalan" {
18076
18235
  numericMin: string;
18077
18236
  numericMax: string;
18078
18237
  invalidEmail: string;
18238
+ invalidExpression: string;
18079
18239
  urlRequestError: string;
18080
18240
  urlGetChoicesError: string;
18081
18241
  exceedMaxSize: string;
18082
18242
  otherRequiredError: string;
18083
18243
  uploadingFile: string;
18244
+ loadingFile: string;
18245
+ chooseFile: string;
18246
+ noFileChosen: string;
18247
+ fileDragAreaPlaceholder: string;
18248
+ confirmDelete: string;
18249
+ keyDuplicationError: string;
18250
+ addColumn: string;
18084
18251
  addRow: string;
18085
18252
  removeRow: string;
18253
+ emptyRowsText: string;
18254
+ addPanel: string;
18255
+ removePanel: string;
18256
+ choices_Item: string;
18086
18257
  matrix_column: string;
18087
18258
  matrix_row: string;
18259
+ multipletext_itemname: string;
18260
+ savingData: string;
18261
+ savingDataError: string;
18262
+ savingDataSuccess: string;
18263
+ saveAgainButton: string;
18264
+ timerMin: string;
18265
+ timerSec: string;
18266
+ timerSpentAll: string;
18267
+ timerSpentPage: string;
18268
+ timerSpentSurvey: string;
18269
+ timerLimitAll: string;
18270
+ timerLimitPage: string;
18271
+ timerLimitSurvey: string;
18272
+ clearCaption: string;
18273
+ signaturePlaceHolder: string;
18274
+ chooseFileCaption: string;
18275
+ removeFileCaption: string;
18276
+ booleanCheckedLabel: string;
18277
+ booleanUncheckedLabel: string;
18278
+ confirmRemoveFile: string;
18279
+ confirmRemoveAllFiles: string;
18280
+ questionTitlePatternText: string;
18281
+ modalCancelButtonText: string;
18282
+ modalApplyButtonText: string;
18283
+ filterStringPlaceholder: string;
18284
+ emptyMessage: string;
18285
+ noEntriesText: string;
18286
+ noEntriesReadonlyText: string;
18287
+ more: string;
18288
+ tagboxDoneButtonCaption: string;
18289
+ selectToRankEmptyRankedAreaText: string;
18290
+ selectToRankEmptyUnrankedAreaText: string;
18088
18291
  };
18089
18292
  }
18090
18293
  declare module "localization/croatian" {
@@ -18099,18 +18302,23 @@ declare module "localization/croatian" {
18099
18302
  noneItemText: string;
18100
18303
  selectAllItemText: string;
18101
18304
  progressText: string;
18305
+ indexText: string;
18102
18306
  panelDynamicProgressText: string;
18307
+ panelDynamicTabTextFormat: string;
18103
18308
  questionsProgressText: string;
18104
18309
  emptySurvey: string;
18105
18310
  completingSurvey: string;
18106
18311
  completingSurveyBefore: string;
18107
18312
  loadingSurvey: string;
18108
18313
  placeholder: string;
18314
+ ratingOptionsCaption: string;
18109
18315
  value: string;
18110
18316
  requiredError: string;
18111
18317
  requiredErrorInPanel: string;
18112
18318
  requiredInAllRowsError: string;
18113
18319
  numericError: string;
18320
+ minError: string;
18321
+ maxError: string;
18114
18322
  textMinLength: string;
18115
18323
  textMaxLength: string;
18116
18324
  textMinMaxLength: string;
@@ -18130,16 +18338,19 @@ declare module "localization/croatian" {
18130
18338
  loadingFile: string;
18131
18339
  chooseFile: string;
18132
18340
  noFileChosen: string;
18341
+ fileDragAreaPlaceholder: string;
18133
18342
  confirmDelete: string;
18134
18343
  keyDuplicationError: string;
18135
18344
  addColumn: string;
18136
18345
  addRow: string;
18137
18346
  removeRow: string;
18347
+ emptyRowsText: string;
18138
18348
  addPanel: string;
18139
18349
  removePanel: string;
18140
18350
  choices_Item: string;
18141
18351
  matrix_column: string;
18142
18352
  matrix_row: string;
18353
+ multipletext_itemname: string;
18143
18354
  savingData: string;
18144
18355
  savingDataError: string;
18145
18356
  savingDataSuccess: string;
@@ -18153,6 +18364,7 @@ declare module "localization/croatian" {
18153
18364
  timerLimitPage: string;
18154
18365
  timerLimitSurvey: string;
18155
18366
  clearCaption: string;
18367
+ signaturePlaceHolder: string;
18156
18368
  chooseFileCaption: string;
18157
18369
  removeFileCaption: string;
18158
18370
  booleanCheckedLabel: string;
@@ -18162,6 +18374,14 @@ declare module "localization/croatian" {
18162
18374
  questionTitlePatternText: string;
18163
18375
  modalCancelButtonText: string;
18164
18376
  modalApplyButtonText: string;
18377
+ filterStringPlaceholder: string;
18378
+ emptyMessage: string;
18379
+ noEntriesText: string;
18380
+ noEntriesReadonlyText: string;
18381
+ more: string;
18382
+ tagboxDoneButtonCaption: string;
18383
+ selectToRankEmptyRankedAreaText: string;
18384
+ selectToRankEmptyUnrankedAreaText: string;
18165
18385
  };
18166
18386
  }
18167
18387
  declare module "localization/czech" {
@@ -18176,18 +18396,23 @@ declare module "localization/czech" {
18176
18396
  noneItemText: string;
18177
18397
  selectAllItemText: string;
18178
18398
  progressText: string;
18399
+ indexText: string;
18179
18400
  panelDynamicProgressText: string;
18401
+ panelDynamicTabTextFormat: string;
18180
18402
  questionsProgressText: string;
18181
18403
  emptySurvey: string;
18182
18404
  completingSurvey: string;
18183
18405
  completingSurveyBefore: string;
18184
18406
  loadingSurvey: string;
18185
18407
  placeholder: string;
18408
+ ratingOptionsCaption: string;
18186
18409
  value: string;
18187
18410
  requiredError: string;
18188
18411
  requiredErrorInPanel: string;
18189
18412
  requiredInAllRowsError: string;
18190
18413
  numericError: string;
18414
+ minError: string;
18415
+ maxError: string;
18191
18416
  textMinLength: string;
18192
18417
  textMaxLength: string;
18193
18418
  textMinMaxLength: string;
@@ -18207,16 +18432,19 @@ declare module "localization/czech" {
18207
18432
  loadingFile: string;
18208
18433
  chooseFile: string;
18209
18434
  noFileChosen: string;
18435
+ fileDragAreaPlaceholder: string;
18210
18436
  confirmDelete: string;
18211
18437
  keyDuplicationError: string;
18212
18438
  addColumn: string;
18213
18439
  addRow: string;
18214
18440
  removeRow: string;
18441
+ emptyRowsText: string;
18215
18442
  addPanel: string;
18216
18443
  removePanel: string;
18217
18444
  choices_Item: string;
18218
18445
  matrix_column: string;
18219
18446
  matrix_row: string;
18447
+ multipletext_itemname: string;
18220
18448
  savingData: string;
18221
18449
  savingDataError: string;
18222
18450
  savingDataSuccess: string;
@@ -18230,6 +18458,7 @@ declare module "localization/czech" {
18230
18458
  timerLimitPage: string;
18231
18459
  timerLimitSurvey: string;
18232
18460
  clearCaption: string;
18461
+ signaturePlaceHolder: string;
18233
18462
  chooseFileCaption: string;
18234
18463
  removeFileCaption: string;
18235
18464
  booleanCheckedLabel: string;
@@ -18237,6 +18466,16 @@ declare module "localization/czech" {
18237
18466
  confirmRemoveFile: string;
18238
18467
  confirmRemoveAllFiles: string;
18239
18468
  questionTitlePatternText: string;
18469
+ modalCancelButtonText: string;
18470
+ modalApplyButtonText: string;
18471
+ filterStringPlaceholder: string;
18472
+ emptyMessage: string;
18473
+ noEntriesText: string;
18474
+ noEntriesReadonlyText: string;
18475
+ more: string;
18476
+ tagboxDoneButtonCaption: string;
18477
+ selectToRankEmptyRankedAreaText: string;
18478
+ selectToRankEmptyUnrankedAreaText: string;
18240
18479
  };
18241
18480
  }
18242
18481
  declare module "localization/danish" {
@@ -18251,18 +18490,23 @@ declare module "localization/danish" {
18251
18490
  noneItemText: string;
18252
18491
  selectAllItemText: string;
18253
18492
  progressText: string;
18493
+ indexText: string;
18254
18494
  panelDynamicProgressText: string;
18495
+ panelDynamicTabTextFormat: string;
18255
18496
  questionsProgressText: string;
18256
18497
  emptySurvey: string;
18257
18498
  completingSurvey: string;
18258
18499
  completingSurveyBefore: string;
18259
18500
  loadingSurvey: string;
18260
18501
  placeholder: string;
18502
+ ratingOptionsCaption: string;
18261
18503
  value: string;
18262
18504
  requiredError: string;
18263
18505
  requiredErrorInPanel: string;
18264
18506
  requiredInAllRowsError: string;
18265
18507
  numericError: string;
18508
+ minError: string;
18509
+ maxError: string;
18266
18510
  textMinLength: string;
18267
18511
  textMaxLength: string;
18268
18512
  textMinMaxLength: string;
@@ -18282,16 +18526,19 @@ declare module "localization/danish" {
18282
18526
  loadingFile: string;
18283
18527
  chooseFile: string;
18284
18528
  noFileChosen: string;
18529
+ fileDragAreaPlaceholder: string;
18285
18530
  confirmDelete: string;
18286
18531
  keyDuplicationError: string;
18287
18532
  addColumn: string;
18288
18533
  addRow: string;
18289
18534
  removeRow: string;
18535
+ emptyRowsText: string;
18290
18536
  addPanel: string;
18291
18537
  removePanel: string;
18292
18538
  choices_Item: string;
18293
18539
  matrix_column: string;
18294
18540
  matrix_row: string;
18541
+ multipletext_itemname: string;
18295
18542
  savingData: string;
18296
18543
  savingDataError: string;
18297
18544
  savingDataSuccess: string;
@@ -18305,6 +18552,7 @@ declare module "localization/danish" {
18305
18552
  timerLimitPage: string;
18306
18553
  timerLimitSurvey: string;
18307
18554
  clearCaption: string;
18555
+ signaturePlaceHolder: string;
18308
18556
  chooseFileCaption: string;
18309
18557
  removeFileCaption: string;
18310
18558
  booleanCheckedLabel: string;
@@ -18312,6 +18560,16 @@ declare module "localization/danish" {
18312
18560
  confirmRemoveFile: string;
18313
18561
  confirmRemoveAllFiles: string;
18314
18562
  questionTitlePatternText: string;
18563
+ modalCancelButtonText: string;
18564
+ modalApplyButtonText: string;
18565
+ filterStringPlaceholder: string;
18566
+ emptyMessage: string;
18567
+ noEntriesText: string;
18568
+ noEntriesReadonlyText: string;
18569
+ more: string;
18570
+ tagboxDoneButtonCaption: string;
18571
+ selectToRankEmptyRankedAreaText: string;
18572
+ selectToRankEmptyUnrankedAreaText: string;
18315
18573
  };
18316
18574
  }
18317
18575
  declare module "localization/dutch" {
@@ -18326,18 +18584,23 @@ declare module "localization/dutch" {
18326
18584
  noneItemText: string;
18327
18585
  selectAllItemText: string;
18328
18586
  progressText: string;
18587
+ indexText: string;
18329
18588
  panelDynamicProgressText: string;
18589
+ panelDynamicTabTextFormat: string;
18330
18590
  questionsProgressText: string;
18331
18591
  emptySurvey: string;
18332
18592
  completingSurvey: string;
18333
18593
  completingSurveyBefore: string;
18334
18594
  loadingSurvey: string;
18335
18595
  placeholder: string;
18596
+ ratingOptionsCaption: string;
18336
18597
  value: string;
18337
18598
  requiredError: string;
18338
18599
  requiredErrorInPanel: string;
18339
18600
  requiredInAllRowsError: string;
18340
18601
  numericError: string;
18602
+ minError: string;
18603
+ maxError: string;
18341
18604
  textMinLength: string;
18342
18605
  textMaxLength: string;
18343
18606
  textMinMaxLength: string;
@@ -18363,11 +18626,13 @@ declare module "localization/dutch" {
18363
18626
  addColumn: string;
18364
18627
  addRow: string;
18365
18628
  removeRow: string;
18629
+ emptyRowsText: string;
18366
18630
  addPanel: string;
18367
18631
  removePanel: string;
18368
18632
  choices_Item: string;
18369
18633
  matrix_column: string;
18370
18634
  matrix_row: string;
18635
+ multipletext_itemname: string;
18371
18636
  savingData: string;
18372
18637
  savingDataError: string;
18373
18638
  savingDataSuccess: string;
@@ -18389,6 +18654,16 @@ declare module "localization/dutch" {
18389
18654
  confirmRemoveFile: string;
18390
18655
  confirmRemoveAllFiles: string;
18391
18656
  questionTitlePatternText: string;
18657
+ modalCancelButtonText: string;
18658
+ modalApplyButtonText: string;
18659
+ filterStringPlaceholder: string;
18660
+ emptyMessage: string;
18661
+ noEntriesText: string;
18662
+ noEntriesReadonlyText: string;
18663
+ more: string;
18664
+ tagboxDoneButtonCaption: string;
18665
+ selectToRankEmptyRankedAreaText: string;
18666
+ selectToRankEmptyUnrankedAreaText: string;
18392
18667
  };
18393
18668
  }
18394
18669
  declare module "localization/nl-BE" { }
@@ -18404,18 +18679,23 @@ declare module "localization/estonian" {
18404
18679
  noneItemText: string;
18405
18680
  selectAllItemText: string;
18406
18681
  progressText: string;
18682
+ indexText: string;
18407
18683
  panelDynamicProgressText: string;
18684
+ panelDynamicTabTextFormat: string;
18408
18685
  questionsProgressText: string;
18409
18686
  emptySurvey: string;
18410
18687
  completingSurvey: string;
18411
18688
  completingSurveyBefore: string;
18412
18689
  loadingSurvey: string;
18413
18690
  placeholder: string;
18691
+ ratingOptionsCaption: string;
18414
18692
  value: string;
18415
18693
  requiredError: string;
18416
18694
  requiredErrorInPanel: string;
18417
18695
  requiredInAllRowsError: string;
18418
18696
  numericError: string;
18697
+ minError: string;
18698
+ maxError: string;
18419
18699
  textMinLength: string;
18420
18700
  textMaxLength: string;
18421
18701
  textMinMaxLength: string;
@@ -18435,16 +18715,19 @@ declare module "localization/estonian" {
18435
18715
  loadingFile: string;
18436
18716
  chooseFile: string;
18437
18717
  noFileChosen: string;
18718
+ fileDragAreaPlaceholder: string;
18438
18719
  confirmDelete: string;
18439
18720
  keyDuplicationError: string;
18440
18721
  addColumn: string;
18441
18722
  addRow: string;
18442
18723
  removeRow: string;
18724
+ emptyRowsText: string;
18443
18725
  addPanel: string;
18444
18726
  removePanel: string;
18445
18727
  choices_Item: string;
18446
18728
  matrix_column: string;
18447
18729
  matrix_row: string;
18730
+ multipletext_itemname: string;
18448
18731
  savingData: string;
18449
18732
  savingDataError: string;
18450
18733
  savingDataSuccess: string;
@@ -18458,6 +18741,7 @@ declare module "localization/estonian" {
18458
18741
  timerLimitPage: string;
18459
18742
  timerLimitSurvey: string;
18460
18743
  clearCaption: string;
18744
+ signaturePlaceHolder: string;
18461
18745
  chooseFileCaption: string;
18462
18746
  removeFileCaption: string;
18463
18747
  booleanCheckedLabel: string;
@@ -18465,6 +18749,16 @@ declare module "localization/estonian" {
18465
18749
  confirmRemoveFile: string;
18466
18750
  confirmRemoveAllFiles: string;
18467
18751
  questionTitlePatternText: string;
18752
+ modalCancelButtonText: string;
18753
+ modalApplyButtonText: string;
18754
+ filterStringPlaceholder: string;
18755
+ emptyMessage: string;
18756
+ noEntriesText: string;
18757
+ noEntriesReadonlyText: string;
18758
+ more: string;
18759
+ tagboxDoneButtonCaption: string;
18760
+ selectToRankEmptyRankedAreaText: string;
18761
+ selectToRankEmptyUnrankedAreaText: string;
18468
18762
  };
18469
18763
  }
18470
18764
  declare module "localization/finnish" {
@@ -18481,6 +18775,7 @@ declare module "localization/finnish" {
18481
18775
  progressText: string;
18482
18776
  indexText: string;
18483
18777
  panelDynamicProgressText: string;
18778
+ panelDynamicTabTextFormat: string;
18484
18779
  questionsProgressText: string;
18485
18780
  emptySurvey: string;
18486
18781
  completingSurvey: string;
@@ -18551,8 +18846,14 @@ declare module "localization/finnish" {
18551
18846
  modalCancelButtonText: string;
18552
18847
  modalApplyButtonText: string;
18553
18848
  filterStringPlaceholder: string;
18849
+ emptyMessage: string;
18554
18850
  noEntriesText: string;
18555
- };
18851
+ noEntriesReadonlyText: string;
18852
+ more: string;
18853
+ tagboxDoneButtonCaption: string;
18854
+ selectToRankEmptyRankedAreaText: string;
18855
+ selectToRankEmptyUnrankedAreaText: string;
18856
+ };
18556
18857
  }
18557
18858
  declare module "localization/french" {
18558
18859
  export var frenchSurveyStrings: {
@@ -18568,6 +18869,7 @@ declare module "localization/french" {
18568
18869
  progressText: string;
18569
18870
  indexText: string;
18570
18871
  panelDynamicProgressText: string;
18872
+ panelDynamicTabTextFormat: string;
18571
18873
  questionsProgressText: string;
18572
18874
  emptySurvey: string;
18573
18875
  completingSurvey: string;
@@ -18638,7 +18940,13 @@ declare module "localization/french" {
18638
18940
  modalCancelButtonText: string;
18639
18941
  modalApplyButtonText: string;
18640
18942
  filterStringPlaceholder: string;
18943
+ emptyMessage: string;
18641
18944
  noEntriesText: string;
18945
+ noEntriesReadonlyText: string;
18946
+ more: string;
18947
+ tagboxDoneButtonCaption: string;
18948
+ selectToRankEmptyRankedAreaText: string;
18949
+ selectToRankEmptyUnrankedAreaText: string;
18642
18950
  };
18643
18951
  }
18644
18952
  declare module "localization/georgian" {
@@ -18646,21 +18954,93 @@ declare module "localization/georgian" {
18646
18954
  pagePrevText: string;
18647
18955
  pageNextText: string;
18648
18956
  completeText: string;
18957
+ previewText: string;
18958
+ editText: string;
18959
+ startSurveyText: string;
18649
18960
  otherItemText: string;
18961
+ noneItemText: string;
18962
+ selectAllItemText: string;
18650
18963
  progressText: string;
18964
+ indexText: string;
18965
+ panelDynamicProgressText: string;
18966
+ panelDynamicTabTextFormat: string;
18967
+ questionsProgressText: string;
18651
18968
  emptySurvey: string;
18652
18969
  completingSurvey: string;
18970
+ completingSurveyBefore: string;
18653
18971
  loadingSurvey: string;
18654
18972
  placeholder: string;
18973
+ ratingOptionsCaption: string;
18974
+ value: string;
18655
18975
  requiredError: string;
18976
+ requiredErrorInPanel: string;
18977
+ requiredInAllRowsError: string;
18656
18978
  numericError: string;
18979
+ minError: string;
18980
+ maxError: string;
18657
18981
  textMinLength: string;
18982
+ textMaxLength: string;
18983
+ textMinMaxLength: string;
18984
+ minRowCountError: string;
18658
18985
  minSelectError: string;
18659
18986
  maxSelectError: string;
18660
18987
  numericMinMax: string;
18661
18988
  numericMin: string;
18662
18989
  numericMax: string;
18663
18990
  invalidEmail: string;
18991
+ invalidExpression: string;
18992
+ urlRequestError: string;
18993
+ urlGetChoicesError: string;
18994
+ exceedMaxSize: string;
18995
+ otherRequiredError: string;
18996
+ uploadingFile: string;
18997
+ loadingFile: string;
18998
+ chooseFile: string;
18999
+ noFileChosen: string;
19000
+ fileDragAreaPlaceholder: string;
19001
+ confirmDelete: string;
19002
+ keyDuplicationError: string;
19003
+ addColumn: string;
19004
+ addRow: string;
19005
+ removeRow: string;
19006
+ emptyRowsText: string;
19007
+ addPanel: string;
19008
+ removePanel: string;
19009
+ choices_Item: string;
19010
+ matrix_column: string;
19011
+ matrix_row: string;
19012
+ multipletext_itemname: string;
19013
+ savingData: string;
19014
+ savingDataError: string;
19015
+ savingDataSuccess: string;
19016
+ saveAgainButton: string;
19017
+ timerMin: string;
19018
+ timerSec: string;
19019
+ timerSpentAll: string;
19020
+ timerSpentPage: string;
19021
+ timerSpentSurvey: string;
19022
+ timerLimitAll: string;
19023
+ timerLimitPage: string;
19024
+ timerLimitSurvey: string;
19025
+ clearCaption: string;
19026
+ signaturePlaceHolder: string;
19027
+ chooseFileCaption: string;
19028
+ removeFileCaption: string;
19029
+ booleanCheckedLabel: string;
19030
+ booleanUncheckedLabel: string;
19031
+ confirmRemoveFile: string;
19032
+ confirmRemoveAllFiles: string;
19033
+ questionTitlePatternText: string;
19034
+ modalCancelButtonText: string;
19035
+ modalApplyButtonText: string;
19036
+ filterStringPlaceholder: string;
19037
+ emptyMessage: string;
19038
+ noEntriesText: string;
19039
+ noEntriesReadonlyText: string;
19040
+ more: string;
19041
+ tagboxDoneButtonCaption: string;
19042
+ selectToRankEmptyRankedAreaText: string;
19043
+ selectToRankEmptyUnrankedAreaText: string;
18664
19044
  };
18665
19045
  }
18666
19046
  declare module "localization/german" {
@@ -18677,6 +19057,7 @@ declare module "localization/german" {
18677
19057
  progressText: string;
18678
19058
  indexText: string;
18679
19059
  panelDynamicProgressText: string;
19060
+ panelDynamicTabTextFormat: string;
18680
19061
  questionsProgressText: string;
18681
19062
  emptySurvey: string;
18682
19063
  completingSurvey: string;
@@ -18749,7 +19130,11 @@ declare module "localization/german" {
18749
19130
  filterStringPlaceholder: string;
18750
19131
  emptyMessage: string;
18751
19132
  noEntriesText: string;
19133
+ noEntriesReadonlyText: string;
18752
19134
  more: string;
19135
+ tagboxDoneButtonCaption: string;
19136
+ selectToRankEmptyRankedAreaText: string;
19137
+ selectToRankEmptyUnrankedAreaText: string;
18753
19138
  };
18754
19139
  }
18755
19140
  declare module "localization/greek" {
@@ -18766,6 +19151,7 @@ declare module "localization/greek" {
18766
19151
  progressText: string;
18767
19152
  indexText: string;
18768
19153
  panelDynamicProgressText: string;
19154
+ panelDynamicTabTextFormat: string;
18769
19155
  questionsProgressText: string;
18770
19156
  emptySurvey: string;
18771
19157
  completingSurvey: string;
@@ -18838,8 +19224,11 @@ declare module "localization/greek" {
18838
19224
  filterStringPlaceholder: string;
18839
19225
  emptyMessage: string;
18840
19226
  noEntriesText: string;
19227
+ noEntriesReadonlyText: string;
18841
19228
  more: string;
18842
19229
  tagboxDoneButtonCaption: string;
19230
+ selectToRankEmptyRankedAreaText: string;
19231
+ selectToRankEmptyUnrankedAreaText: string;
18843
19232
  };
18844
19233
  }
18845
19234
  declare module "localization/hebrew" {
@@ -18854,18 +19243,23 @@ declare module "localization/hebrew" {
18854
19243
  noneItemText: string;
18855
19244
  selectAllItemText: string;
18856
19245
  progressText: string;
19246
+ indexText: string;
18857
19247
  panelDynamicProgressText: string;
19248
+ panelDynamicTabTextFormat: string;
18858
19249
  questionsProgressText: string;
18859
19250
  emptySurvey: string;
18860
19251
  completingSurvey: string;
18861
19252
  completingSurveyBefore: string;
18862
19253
  loadingSurvey: string;
18863
19254
  placeholder: string;
19255
+ ratingOptionsCaption: string;
18864
19256
  value: string;
18865
19257
  requiredError: string;
18866
19258
  requiredErrorInPanel: string;
18867
19259
  requiredInAllRowsError: string;
18868
19260
  numericError: string;
19261
+ minError: string;
19262
+ maxError: string;
18869
19263
  textMinLength: string;
18870
19264
  textMaxLength: string;
18871
19265
  textMinMaxLength: string;
@@ -18885,16 +19279,19 @@ declare module "localization/hebrew" {
18885
19279
  loadingFile: string;
18886
19280
  chooseFile: string;
18887
19281
  noFileChosen: string;
19282
+ fileDragAreaPlaceholder: string;
18888
19283
  confirmDelete: string;
18889
19284
  keyDuplicationError: string;
18890
19285
  addColumn: string;
18891
19286
  addRow: string;
18892
19287
  removeRow: string;
19288
+ emptyRowsText: string;
18893
19289
  addPanel: string;
18894
19290
  removePanel: string;
18895
19291
  choices_Item: string;
18896
19292
  matrix_column: string;
18897
19293
  matrix_row: string;
19294
+ multipletext_itemname: string;
18898
19295
  savingData: string;
18899
19296
  savingDataError: string;
18900
19297
  savingDataSuccess: string;
@@ -18908,6 +19305,7 @@ declare module "localization/hebrew" {
18908
19305
  timerLimitPage: string;
18909
19306
  timerLimitSurvey: string;
18910
19307
  clearCaption: string;
19308
+ signaturePlaceHolder: string;
18911
19309
  chooseFileCaption: string;
18912
19310
  removeFileCaption: string;
18913
19311
  booleanCheckedLabel: string;
@@ -18915,6 +19313,16 @@ declare module "localization/hebrew" {
18915
19313
  confirmRemoveFile: string;
18916
19314
  confirmRemoveAllFiles: string;
18917
19315
  questionTitlePatternText: string;
19316
+ modalCancelButtonText: string;
19317
+ modalApplyButtonText: string;
19318
+ filterStringPlaceholder: string;
19319
+ emptyMessage: string;
19320
+ noEntriesText: string;
19321
+ noEntriesReadonlyText: string;
19322
+ more: string;
19323
+ tagboxDoneButtonCaption: string;
19324
+ selectToRankEmptyRankedAreaText: string;
19325
+ selectToRankEmptyUnrankedAreaText: string;
18918
19326
  };
18919
19327
  }
18920
19328
  declare module "localization/hindi" {
@@ -18926,20 +19334,26 @@ declare module "localization/hindi" {
18926
19334
  editText: string;
18927
19335
  startSurveyText: string;
18928
19336
  otherItemText: string;
19337
+ noneItemText: string;
18929
19338
  selectAllItemText: string;
18930
19339
  progressText: string;
19340
+ indexText: string;
18931
19341
  panelDynamicProgressText: string;
19342
+ panelDynamicTabTextFormat: string;
18932
19343
  questionsProgressText: string;
18933
19344
  emptySurvey: string;
18934
19345
  completingSurvey: string;
18935
19346
  completingSurveyBefore: string;
18936
19347
  loadingSurvey: string;
18937
19348
  placeholder: string;
19349
+ ratingOptionsCaption: string;
18938
19350
  value: string;
18939
19351
  requiredError: string;
18940
19352
  requiredErrorInPanel: string;
18941
19353
  requiredInAllRowsError: string;
18942
19354
  numericError: string;
19355
+ minError: string;
19356
+ maxError: string;
18943
19357
  textMinLength: string;
18944
19358
  textMaxLength: string;
18945
19359
  textMinMaxLength: string;
@@ -18959,16 +19373,19 @@ declare module "localization/hindi" {
18959
19373
  loadingFile: string;
18960
19374
  chooseFile: string;
18961
19375
  noFileChosen: string;
19376
+ fileDragAreaPlaceholder: string;
18962
19377
  confirmDelete: string;
18963
19378
  keyDuplicationError: string;
18964
19379
  addColumn: string;
18965
19380
  addRow: string;
18966
19381
  removeRow: string;
19382
+ emptyRowsText: string;
18967
19383
  addPanel: string;
18968
19384
  removePanel: string;
18969
19385
  choices_Item: string;
18970
19386
  matrix_column: string;
18971
19387
  matrix_row: string;
19388
+ multipletext_itemname: string;
18972
19389
  savingData: string;
18973
19390
  savingDataError: string;
18974
19391
  savingDataSuccess: string;
@@ -18982,6 +19399,7 @@ declare module "localization/hindi" {
18982
19399
  timerLimitPage: string;
18983
19400
  timerLimitSurvey: string;
18984
19401
  clearCaption: string;
19402
+ signaturePlaceHolder: string;
18985
19403
  chooseFileCaption: string;
18986
19404
  removeFileCaption: string;
18987
19405
  booleanCheckedLabel: string;
@@ -18989,6 +19407,16 @@ declare module "localization/hindi" {
18989
19407
  confirmRemoveFile: string;
18990
19408
  confirmRemoveAllFiles: string;
18991
19409
  questionTitlePatternText: string;
19410
+ modalCancelButtonText: string;
19411
+ modalApplyButtonText: string;
19412
+ filterStringPlaceholder: string;
19413
+ emptyMessage: string;
19414
+ noEntriesText: string;
19415
+ noEntriesReadonlyText: string;
19416
+ more: string;
19417
+ tagboxDoneButtonCaption: string;
19418
+ selectToRankEmptyRankedAreaText: string;
19419
+ selectToRankEmptyUnrankedAreaText: string;
18992
19420
  };
18993
19421
  }
18994
19422
  declare module "localization/hungarian" {
@@ -19003,18 +19431,23 @@ declare module "localization/hungarian" {
19003
19431
  noneItemText: string;
19004
19432
  selectAllItemText: string;
19005
19433
  progressText: string;
19434
+ indexText: string;
19006
19435
  panelDynamicProgressText: string;
19436
+ panelDynamicTabTextFormat: string;
19007
19437
  questionsProgressText: string;
19008
19438
  emptySurvey: string;
19009
19439
  completingSurvey: string;
19010
19440
  completingSurveyBefore: string;
19011
19441
  loadingSurvey: string;
19012
19442
  placeholder: string;
19443
+ ratingOptionsCaption: string;
19013
19444
  value: string;
19014
19445
  requiredError: string;
19015
19446
  requiredErrorInPanel: string;
19016
19447
  requiredInAllRowsError: string;
19017
19448
  numericError: string;
19449
+ minError: string;
19450
+ maxError: string;
19018
19451
  textMinLength: string;
19019
19452
  textMaxLength: string;
19020
19453
  textMinMaxLength: string;
@@ -19040,11 +19473,13 @@ declare module "localization/hungarian" {
19040
19473
  addColumn: string;
19041
19474
  addRow: string;
19042
19475
  removeRow: string;
19476
+ emptyRowsText: string;
19043
19477
  addPanel: string;
19044
19478
  removePanel: string;
19045
19479
  choices_Item: string;
19046
19480
  matrix_column: string;
19047
19481
  matrix_row: string;
19482
+ multipletext_itemname: string;
19048
19483
  savingData: string;
19049
19484
  savingDataError: string;
19050
19485
  savingDataSuccess: string;
@@ -19058,6 +19493,7 @@ declare module "localization/hungarian" {
19058
19493
  timerLimitPage: string;
19059
19494
  timerLimitSurvey: string;
19060
19495
  clearCaption: string;
19496
+ signaturePlaceHolder: string;
19061
19497
  chooseFileCaption: string;
19062
19498
  removeFileCaption: string;
19063
19499
  booleanCheckedLabel: string;
@@ -19065,6 +19501,16 @@ declare module "localization/hungarian" {
19065
19501
  confirmRemoveFile: string;
19066
19502
  confirmRemoveAllFiles: string;
19067
19503
  questionTitlePatternText: string;
19504
+ modalCancelButtonText: string;
19505
+ modalApplyButtonText: string;
19506
+ filterStringPlaceholder: string;
19507
+ emptyMessage: string;
19508
+ noEntriesText: string;
19509
+ noEntriesReadonlyText: string;
19510
+ more: string;
19511
+ tagboxDoneButtonCaption: string;
19512
+ selectToRankEmptyRankedAreaText: string;
19513
+ selectToRankEmptyUnrankedAreaText: string;
19068
19514
  };
19069
19515
  }
19070
19516
  declare module "localization/icelandic" {
@@ -19079,18 +19525,23 @@ declare module "localization/icelandic" {
19079
19525
  noneItemText: string;
19080
19526
  selectAllItemText: string;
19081
19527
  progressText: string;
19528
+ indexText: string;
19082
19529
  panelDynamicProgressText: string;
19530
+ panelDynamicTabTextFormat: string;
19083
19531
  questionsProgressText: string;
19084
19532
  emptySurvey: string;
19085
19533
  completingSurvey: string;
19086
19534
  completingSurveyBefore: string;
19087
19535
  loadingSurvey: string;
19088
19536
  placeholder: string;
19537
+ ratingOptionsCaption: string;
19089
19538
  value: string;
19090
19539
  requiredError: string;
19091
19540
  requiredErrorInPanel: string;
19092
19541
  requiredInAllRowsError: string;
19093
19542
  numericError: string;
19543
+ minError: string;
19544
+ maxError: string;
19094
19545
  textMinLength: string;
19095
19546
  textMaxLength: string;
19096
19547
  textMinMaxLength: string;
@@ -19110,16 +19561,19 @@ declare module "localization/icelandic" {
19110
19561
  loadingFile: string;
19111
19562
  chooseFile: string;
19112
19563
  noFileChosen: string;
19564
+ fileDragAreaPlaceholder: string;
19113
19565
  confirmDelete: string;
19114
19566
  keyDuplicationError: string;
19115
19567
  addColumn: string;
19116
19568
  addRow: string;
19117
19569
  removeRow: string;
19570
+ emptyRowsText: string;
19118
19571
  addPanel: string;
19119
19572
  removePanel: string;
19120
19573
  choices_Item: string;
19121
19574
  matrix_column: string;
19122
19575
  matrix_row: string;
19576
+ multipletext_itemname: string;
19123
19577
  savingData: string;
19124
19578
  savingDataError: string;
19125
19579
  savingDataSuccess: string;
@@ -19133,6 +19587,7 @@ declare module "localization/icelandic" {
19133
19587
  timerLimitPage: string;
19134
19588
  timerLimitSurvey: string;
19135
19589
  clearCaption: string;
19590
+ signaturePlaceHolder: string;
19136
19591
  chooseFileCaption: string;
19137
19592
  removeFileCaption: string;
19138
19593
  booleanCheckedLabel: string;
@@ -19140,6 +19595,16 @@ declare module "localization/icelandic" {
19140
19595
  confirmRemoveFile: string;
19141
19596
  confirmRemoveAllFiles: string;
19142
19597
  questionTitlePatternText: string;
19598
+ modalCancelButtonText: string;
19599
+ modalApplyButtonText: string;
19600
+ filterStringPlaceholder: string;
19601
+ emptyMessage: string;
19602
+ noEntriesText: string;
19603
+ noEntriesReadonlyText: string;
19604
+ more: string;
19605
+ tagboxDoneButtonCaption: string;
19606
+ selectToRankEmptyRankedAreaText: string;
19607
+ selectToRankEmptyUnrankedAreaText: string;
19143
19608
  };
19144
19609
  }
19145
19610
  declare module "localization/indonesian" {
@@ -19154,18 +19619,23 @@ declare module "localization/indonesian" {
19154
19619
  noneItemText: string;
19155
19620
  selectAllItemText: string;
19156
19621
  progressText: string;
19622
+ indexText: string;
19157
19623
  panelDynamicProgressText: string;
19624
+ panelDynamicTabTextFormat: string;
19158
19625
  questionsProgressText: string;
19159
19626
  emptySurvey: string;
19160
19627
  completingSurvey: string;
19161
19628
  completingSurveyBefore: string;
19162
19629
  loadingSurvey: string;
19163
19630
  placeholder: string;
19631
+ ratingOptionsCaption: string;
19164
19632
  value: string;
19165
19633
  requiredError: string;
19166
19634
  requiredErrorInPanel: string;
19167
19635
  requiredInAllRowsError: string;
19168
19636
  numericError: string;
19637
+ minError: string;
19638
+ maxError: string;
19169
19639
  textMinLength: string;
19170
19640
  textMaxLength: string;
19171
19641
  textMinMaxLength: string;
@@ -19185,16 +19655,19 @@ declare module "localization/indonesian" {
19185
19655
  loadingFile: string;
19186
19656
  chooseFile: string;
19187
19657
  noFileChosen: string;
19658
+ fileDragAreaPlaceholder: string;
19188
19659
  confirmDelete: string;
19189
19660
  keyDuplicationError: string;
19190
19661
  addColumn: string;
19191
19662
  addRow: string;
19192
19663
  removeRow: string;
19664
+ emptyRowsText: string;
19193
19665
  addPanel: string;
19194
19666
  removePanel: string;
19195
19667
  choices_Item: string;
19196
19668
  matrix_column: string;
19197
19669
  matrix_row: string;
19670
+ multipletext_itemname: string;
19198
19671
  savingData: string;
19199
19672
  savingDataError: string;
19200
19673
  savingDataSuccess: string;
@@ -19208,6 +19681,7 @@ declare module "localization/indonesian" {
19208
19681
  timerLimitPage: string;
19209
19682
  timerLimitSurvey: string;
19210
19683
  clearCaption: string;
19684
+ signaturePlaceHolder: string;
19211
19685
  chooseFileCaption: string;
19212
19686
  removeFileCaption: string;
19213
19687
  booleanCheckedLabel: string;
@@ -19215,6 +19689,16 @@ declare module "localization/indonesian" {
19215
19689
  confirmRemoveFile: string;
19216
19690
  confirmRemoveAllFiles: string;
19217
19691
  questionTitlePatternText: string;
19692
+ modalCancelButtonText: string;
19693
+ modalApplyButtonText: string;
19694
+ filterStringPlaceholder: string;
19695
+ emptyMessage: string;
19696
+ noEntriesText: string;
19697
+ noEntriesReadonlyText: string;
19698
+ more: string;
19699
+ tagboxDoneButtonCaption: string;
19700
+ selectToRankEmptyRankedAreaText: string;
19701
+ selectToRankEmptyUnrankedAreaText: string;
19218
19702
  };
19219
19703
  }
19220
19704
  declare module "localization/italian" {
@@ -19231,6 +19715,7 @@ declare module "localization/italian" {
19231
19715
  progressText: string;
19232
19716
  indexText: string;
19233
19717
  panelDynamicProgressText: string;
19718
+ panelDynamicTabTextFormat: string;
19234
19719
  questionsProgressText: string;
19235
19720
  emptySurvey: string;
19236
19721
  completingSurvey: string;
@@ -19301,7 +19786,13 @@ declare module "localization/italian" {
19301
19786
  modalCancelButtonText: string;
19302
19787
  modalApplyButtonText: string;
19303
19788
  filterStringPlaceholder: string;
19789
+ emptyMessage: string;
19304
19790
  noEntriesText: string;
19791
+ noEntriesReadonlyText: string;
19792
+ more: string;
19793
+ tagboxDoneButtonCaption: string;
19794
+ selectToRankEmptyRankedAreaText: string;
19795
+ selectToRankEmptyUnrankedAreaText: string;
19305
19796
  };
19306
19797
  }
19307
19798
  declare module "localization/japanese" {
@@ -19316,18 +19807,23 @@ declare module "localization/japanese" {
19316
19807
  noneItemText: string;
19317
19808
  selectAllItemText: string;
19318
19809
  progressText: string;
19810
+ indexText: string;
19319
19811
  panelDynamicProgressText: string;
19812
+ panelDynamicTabTextFormat: string;
19320
19813
  questionsProgressText: string;
19321
19814
  emptySurvey: string;
19322
19815
  completingSurvey: string;
19323
19816
  completingSurveyBefore: string;
19324
19817
  loadingSurvey: string;
19325
19818
  placeholder: string;
19819
+ ratingOptionsCaption: string;
19326
19820
  value: string;
19327
19821
  requiredError: string;
19328
19822
  requiredErrorInPanel: string;
19329
19823
  requiredInAllRowsError: string;
19330
19824
  numericError: string;
19825
+ minError: string;
19826
+ maxError: string;
19331
19827
  textMinLength: string;
19332
19828
  textMaxLength: string;
19333
19829
  textMinMaxLength: string;
@@ -19347,16 +19843,19 @@ declare module "localization/japanese" {
19347
19843
  loadingFile: string;
19348
19844
  chooseFile: string;
19349
19845
  noFileChosen: string;
19846
+ fileDragAreaPlaceholder: string;
19350
19847
  confirmDelete: string;
19351
19848
  keyDuplicationError: string;
19352
19849
  addColumn: string;
19353
19850
  addRow: string;
19354
19851
  removeRow: string;
19852
+ emptyRowsText: string;
19355
19853
  addPanel: string;
19356
19854
  removePanel: string;
19357
19855
  choices_Item: string;
19358
19856
  matrix_column: string;
19359
19857
  matrix_row: string;
19858
+ multipletext_itemname: string;
19360
19859
  savingData: string;
19361
19860
  savingDataError: string;
19362
19861
  savingDataSuccess: string;
@@ -19370,6 +19869,7 @@ declare module "localization/japanese" {
19370
19869
  timerLimitPage: string;
19371
19870
  timerLimitSurvey: string;
19372
19871
  clearCaption: string;
19872
+ signaturePlaceHolder: string;
19373
19873
  chooseFileCaption: string;
19374
19874
  removeFileCaption: string;
19375
19875
  booleanCheckedLabel: string;
@@ -19377,6 +19877,16 @@ declare module "localization/japanese" {
19377
19877
  confirmRemoveFile: string;
19378
19878
  confirmRemoveAllFiles: string;
19379
19879
  questionTitlePatternText: string;
19880
+ modalCancelButtonText: string;
19881
+ modalApplyButtonText: string;
19882
+ filterStringPlaceholder: string;
19883
+ emptyMessage: string;
19884
+ noEntriesText: string;
19885
+ noEntriesReadonlyText: string;
19886
+ more: string;
19887
+ tagboxDoneButtonCaption: string;
19888
+ selectToRankEmptyRankedAreaText: string;
19889
+ selectToRankEmptyUnrankedAreaText: string;
19380
19890
  };
19381
19891
  }
19382
19892
  declare module "localization/kazakh" {
@@ -19391,18 +19901,23 @@ declare module "localization/kazakh" {
19391
19901
  noneItemText: string;
19392
19902
  selectAllItemText: string;
19393
19903
  progressText: string;
19904
+ indexText: string;
19394
19905
  panelDynamicProgressText: string;
19906
+ panelDynamicTabTextFormat: string;
19395
19907
  questionsProgressText: string;
19396
19908
  emptySurvey: string;
19397
19909
  completingSurvey: string;
19398
19910
  completingSurveyBefore: string;
19399
19911
  loadingSurvey: string;
19400
19912
  placeholder: string;
19913
+ ratingOptionsCaption: string;
19401
19914
  value: string;
19402
19915
  requiredError: string;
19403
19916
  requiredErrorInPanel: string;
19404
19917
  requiredInAllRowsError: string;
19405
19918
  numericError: string;
19919
+ minError: string;
19920
+ maxError: string;
19406
19921
  textMinLength: string;
19407
19922
  textMaxLength: string;
19408
19923
  textMinMaxLength: string;
@@ -19422,16 +19937,19 @@ declare module "localization/kazakh" {
19422
19937
  loadingFile: string;
19423
19938
  chooseFile: string;
19424
19939
  noFileChosen: string;
19940
+ fileDragAreaPlaceholder: string;
19425
19941
  confirmDelete: string;
19426
19942
  keyDuplicationError: string;
19427
19943
  addColumn: string;
19428
19944
  addRow: string;
19429
19945
  removeRow: string;
19946
+ emptyRowsText: string;
19430
19947
  addPanel: string;
19431
19948
  removePanel: string;
19432
19949
  choices_Item: string;
19433
19950
  matrix_column: string;
19434
19951
  matrix_row: string;
19952
+ multipletext_itemname: string;
19435
19953
  savingData: string;
19436
19954
  savingDataError: string;
19437
19955
  savingDataSuccess: string;
@@ -19445,6 +19963,7 @@ declare module "localization/kazakh" {
19445
19963
  timerLimitPage: string;
19446
19964
  timerLimitSurvey: string;
19447
19965
  clearCaption: string;
19966
+ signaturePlaceHolder: string;
19448
19967
  chooseFileCaption: string;
19449
19968
  removeFileCaption: string;
19450
19969
  booleanCheckedLabel: string;
@@ -19452,6 +19971,16 @@ declare module "localization/kazakh" {
19452
19971
  confirmRemoveFile: string;
19453
19972
  confirmRemoveAllFiles: string;
19454
19973
  questionTitlePatternText: string;
19974
+ modalCancelButtonText: string;
19975
+ modalApplyButtonText: string;
19976
+ filterStringPlaceholder: string;
19977
+ emptyMessage: string;
19978
+ noEntriesText: string;
19979
+ noEntriesReadonlyText: string;
19980
+ more: string;
19981
+ tagboxDoneButtonCaption: string;
19982
+ selectToRankEmptyRankedAreaText: string;
19983
+ selectToRankEmptyUnrankedAreaText: string;
19455
19984
  };
19456
19985
  }
19457
19986
  declare module "localization/korean" {
@@ -19468,6 +19997,7 @@ declare module "localization/korean" {
19468
19997
  progressText: string;
19469
19998
  indexText: string;
19470
19999
  panelDynamicProgressText: string;
20000
+ panelDynamicTabTextFormat: string;
19471
20001
  questionsProgressText: string;
19472
20002
  emptySurvey: string;
19473
20003
  completingSurvey: string;
@@ -19538,8 +20068,13 @@ declare module "localization/korean" {
19538
20068
  modalCancelButtonText: string;
19539
20069
  modalApplyButtonText: string;
19540
20070
  filterStringPlaceholder: string;
20071
+ emptyMessage: string;
19541
20072
  noEntriesText: string;
20073
+ noEntriesReadonlyText: string;
19542
20074
  more: string;
20075
+ tagboxDoneButtonCaption: string;
20076
+ selectToRankEmptyRankedAreaText: string;
20077
+ selectToRankEmptyUnrankedAreaText: string;
19543
20078
  };
19544
20079
  }
19545
20080
  declare module "localization/latvian" {
@@ -19556,6 +20091,7 @@ declare module "localization/latvian" {
19556
20091
  progressText: string;
19557
20092
  indexText: string;
19558
20093
  panelDynamicProgressText: string;
20094
+ panelDynamicTabTextFormat: string;
19559
20095
  questionsProgressText: string;
19560
20096
  emptySurvey: string;
19561
20097
  completingSurvey: string;
@@ -19626,7 +20162,13 @@ declare module "localization/latvian" {
19626
20162
  modalCancelButtonText: string;
19627
20163
  modalApplyButtonText: string;
19628
20164
  filterStringPlaceholder: string;
20165
+ emptyMessage: string;
19629
20166
  noEntriesText: string;
20167
+ noEntriesReadonlyText: string;
20168
+ more: string;
20169
+ tagboxDoneButtonCaption: string;
20170
+ selectToRankEmptyRankedAreaText: string;
20171
+ selectToRankEmptyUnrankedAreaText: string;
19630
20172
  };
19631
20173
  }
19632
20174
  declare module "localization/lithuanian" {
@@ -19641,18 +20183,23 @@ declare module "localization/lithuanian" {
19641
20183
  noneItemText: string;
19642
20184
  selectAllItemText: string;
19643
20185
  progressText: string;
20186
+ indexText: string;
19644
20187
  panelDynamicProgressText: string;
20188
+ panelDynamicTabTextFormat: string;
19645
20189
  questionsProgressText: string;
19646
20190
  emptySurvey: string;
19647
20191
  completingSurvey: string;
19648
20192
  completingSurveyBefore: string;
19649
20193
  loadingSurvey: string;
19650
20194
  placeholder: string;
20195
+ ratingOptionsCaption: string;
19651
20196
  value: string;
19652
20197
  requiredError: string;
19653
20198
  requiredErrorInPanel: string;
19654
20199
  requiredInAllRowsError: string;
19655
20200
  numericError: string;
20201
+ minError: string;
20202
+ maxError: string;
19656
20203
  textMinLength: string;
19657
20204
  textMaxLength: string;
19658
20205
  textMinMaxLength: string;
@@ -19672,16 +20219,19 @@ declare module "localization/lithuanian" {
19672
20219
  loadingFile: string;
19673
20220
  chooseFile: string;
19674
20221
  noFileChosen: string;
20222
+ fileDragAreaPlaceholder: string;
19675
20223
  confirmDelete: string;
19676
20224
  keyDuplicationError: string;
19677
20225
  addColumn: string;
19678
20226
  addRow: string;
19679
20227
  removeRow: string;
20228
+ emptyRowsText: string;
19680
20229
  addPanel: string;
19681
20230
  removePanel: string;
19682
20231
  choices_Item: string;
19683
20232
  matrix_column: string;
19684
20233
  matrix_row: string;
20234
+ multipletext_itemname: string;
19685
20235
  savingData: string;
19686
20236
  savingDataError: string;
19687
20237
  savingDataSuccess: string;
@@ -19695,6 +20245,7 @@ declare module "localization/lithuanian" {
19695
20245
  timerLimitPage: string;
19696
20246
  timerLimitSurvey: string;
19697
20247
  clearCaption: string;
20248
+ signaturePlaceHolder: string;
19698
20249
  chooseFileCaption: string;
19699
20250
  removeFileCaption: string;
19700
20251
  booleanCheckedLabel: string;
@@ -19702,6 +20253,16 @@ declare module "localization/lithuanian" {
19702
20253
  confirmRemoveFile: string;
19703
20254
  confirmRemoveAllFiles: string;
19704
20255
  questionTitlePatternText: string;
20256
+ modalCancelButtonText: string;
20257
+ modalApplyButtonText: string;
20258
+ filterStringPlaceholder: string;
20259
+ emptyMessage: string;
20260
+ noEntriesText: string;
20261
+ noEntriesReadonlyText: string;
20262
+ more: string;
20263
+ tagboxDoneButtonCaption: string;
20264
+ selectToRankEmptyRankedAreaText: string;
20265
+ selectToRankEmptyUnrankedAreaText: string;
19705
20266
  };
19706
20267
  }
19707
20268
  declare module "localization/macedonian" {
@@ -19716,13 +20277,16 @@ declare module "localization/macedonian" {
19716
20277
  noneItemText: string;
19717
20278
  selectAllItemText: string;
19718
20279
  progressText: string;
20280
+ indexText: string;
19719
20281
  panelDynamicProgressText: string;
20282
+ panelDynamicTabTextFormat: string;
19720
20283
  questionsProgressText: string;
19721
20284
  emptySurvey: string;
19722
20285
  completingSurvey: string;
19723
20286
  completingSurveyBefore: string;
19724
20287
  loadingSurvey: string;
19725
20288
  placeholder: string;
20289
+ ratingOptionsCaption: string;
19726
20290
  value: string;
19727
20291
  requiredError: string;
19728
20292
  requiredErrorInPanel: string;
@@ -19761,6 +20325,7 @@ declare module "localization/macedonian" {
19761
20325
  choices_Item: string;
19762
20326
  matrix_column: string;
19763
20327
  matrix_row: string;
20328
+ multipletext_itemname: string;
19764
20329
  savingData: string;
19765
20330
  savingDataError: string;
19766
20331
  savingDataSuccess: string;
@@ -19774,6 +20339,7 @@ declare module "localization/macedonian" {
19774
20339
  timerLimitPage: string;
19775
20340
  timerLimitSurvey: string;
19776
20341
  clearCaption: string;
20342
+ signaturePlaceHolder: string;
19777
20343
  chooseFileCaption: string;
19778
20344
  removeFileCaption: string;
19779
20345
  booleanCheckedLabel: string;
@@ -19783,6 +20349,14 @@ declare module "localization/macedonian" {
19783
20349
  questionTitlePatternText: string;
19784
20350
  modalCancelButtonText: string;
19785
20351
  modalApplyButtonText: string;
20352
+ filterStringPlaceholder: string;
20353
+ emptyMessage: string;
20354
+ noEntriesText: string;
20355
+ noEntriesReadonlyText: string;
20356
+ more: string;
20357
+ tagboxDoneButtonCaption: string;
20358
+ selectToRankEmptyRankedAreaText: string;
20359
+ selectToRankEmptyUnrankedAreaText: string;
19786
20360
  };
19787
20361
  }
19788
20362
  declare module "localization/malay" {
@@ -19797,13 +20371,16 @@ declare module "localization/malay" {
19797
20371
  noneItemText: string;
19798
20372
  selectAllItemText: string;
19799
20373
  progressText: string;
20374
+ indexText: string;
19800
20375
  panelDynamicProgressText: string;
20376
+ panelDynamicTabTextFormat: string;
19801
20377
  questionsProgressText: string;
19802
20378
  emptySurvey: string;
19803
20379
  completingSurvey: string;
19804
20380
  completingSurveyBefore: string;
19805
20381
  loadingSurvey: string;
19806
20382
  placeholder: string;
20383
+ ratingOptionsCaption: string;
19807
20384
  value: string;
19808
20385
  requiredError: string;
19809
20386
  requiredErrorInPanel: string;
@@ -19867,7 +20444,13 @@ declare module "localization/malay" {
19867
20444
  modalCancelButtonText: string;
19868
20445
  modalApplyButtonText: string;
19869
20446
  filterStringPlaceholder: string;
20447
+ emptyMessage: string;
19870
20448
  noEntriesText: string;
20449
+ noEntriesReadonlyText: string;
20450
+ more: string;
20451
+ tagboxDoneButtonCaption: string;
20452
+ selectToRankEmptyRankedAreaText: string;
20453
+ selectToRankEmptyUnrankedAreaText: string;
19871
20454
  };
19872
20455
  }
19873
20456
  declare module "localization/norwegian" {
@@ -19882,18 +20465,23 @@ declare module "localization/norwegian" {
19882
20465
  noneItemText: string;
19883
20466
  selectAllItemText: string;
19884
20467
  progressText: string;
20468
+ indexText: string;
19885
20469
  panelDynamicProgressText: string;
20470
+ panelDynamicTabTextFormat: string;
19886
20471
  questionsProgressText: string;
19887
20472
  emptySurvey: string;
19888
20473
  completingSurvey: string;
19889
20474
  completingSurveyBefore: string;
19890
20475
  loadingSurvey: string;
19891
20476
  placeholder: string;
20477
+ ratingOptionsCaption: string;
19892
20478
  value: string;
19893
20479
  requiredError: string;
19894
20480
  requiredErrorInPanel: string;
19895
20481
  requiredInAllRowsError: string;
19896
20482
  numericError: string;
20483
+ minError: string;
20484
+ maxError: string;
19897
20485
  textMinLength: string;
19898
20486
  textMaxLength: string;
19899
20487
  textMinMaxLength: string;
@@ -19913,16 +20501,19 @@ declare module "localization/norwegian" {
19913
20501
  loadingFile: string;
19914
20502
  chooseFile: string;
19915
20503
  noFileChosen: string;
20504
+ fileDragAreaPlaceholder: string;
19916
20505
  confirmDelete: string;
19917
20506
  keyDuplicationError: string;
19918
20507
  addColumn: string;
19919
20508
  addRow: string;
19920
20509
  removeRow: string;
20510
+ emptyRowsText: string;
19921
20511
  addPanel: string;
19922
20512
  removePanel: string;
19923
20513
  choices_Item: string;
19924
20514
  matrix_column: string;
19925
20515
  matrix_row: string;
20516
+ multipletext_itemname: string;
19926
20517
  savingData: string;
19927
20518
  savingDataError: string;
19928
20519
  savingDataSuccess: string;
@@ -19936,6 +20527,7 @@ declare module "localization/norwegian" {
19936
20527
  timerLimitPage: string;
19937
20528
  timerLimitSurvey: string;
19938
20529
  clearCaption: string;
20530
+ signaturePlaceHolder: string;
19939
20531
  chooseFileCaption: string;
19940
20532
  removeFileCaption: string;
19941
20533
  booleanCheckedLabel: string;
@@ -19943,6 +20535,16 @@ declare module "localization/norwegian" {
19943
20535
  confirmRemoveFile: string;
19944
20536
  confirmRemoveAllFiles: string;
19945
20537
  questionTitlePatternText: string;
20538
+ modalCancelButtonText: string;
20539
+ modalApplyButtonText: string;
20540
+ filterStringPlaceholder: string;
20541
+ emptyMessage: string;
20542
+ noEntriesText: string;
20543
+ noEntriesReadonlyText: string;
20544
+ more: string;
20545
+ tagboxDoneButtonCaption: string;
20546
+ selectToRankEmptyRankedAreaText: string;
20547
+ selectToRankEmptyUnrankedAreaText: string;
19946
20548
  };
19947
20549
  }
19948
20550
  declare module "localization/persian" {
@@ -19957,18 +20559,23 @@ declare module "localization/persian" {
19957
20559
  noneItemText: string;
19958
20560
  selectAllItemText: string;
19959
20561
  progressText: string;
20562
+ indexText: string;
19960
20563
  panelDynamicProgressText: string;
20564
+ panelDynamicTabTextFormat: string;
19961
20565
  questionsProgressText: string;
19962
20566
  emptySurvey: string;
19963
20567
  completingSurvey: string;
19964
20568
  completingSurveyBefore: string;
19965
20569
  loadingSurvey: string;
19966
20570
  placeholder: string;
20571
+ ratingOptionsCaption: string;
19967
20572
  value: string;
19968
20573
  requiredError: string;
19969
20574
  requiredErrorInPanel: string;
19970
20575
  requiredInAllRowsError: string;
19971
20576
  numericError: string;
20577
+ minError: string;
20578
+ maxError: string;
19972
20579
  textMinLength: string;
19973
20580
  textMaxLength: string;
19974
20581
  textMinMaxLength: string;
@@ -19988,16 +20595,19 @@ declare module "localization/persian" {
19988
20595
  loadingFile: string;
19989
20596
  chooseFile: string;
19990
20597
  noFileChosen: string;
20598
+ fileDragAreaPlaceholder: string;
19991
20599
  confirmDelete: string;
19992
20600
  keyDuplicationError: string;
19993
20601
  addColumn: string;
19994
20602
  addRow: string;
19995
20603
  removeRow: string;
20604
+ emptyRowsText: string;
19996
20605
  addPanel: string;
19997
20606
  removePanel: string;
19998
20607
  choices_Item: string;
19999
20608
  matrix_column: string;
20000
20609
  matrix_row: string;
20610
+ multipletext_itemname: string;
20001
20611
  savingData: string;
20002
20612
  savingDataError: string;
20003
20613
  savingDataSuccess: string;
@@ -20011,6 +20621,7 @@ declare module "localization/persian" {
20011
20621
  timerLimitPage: string;
20012
20622
  timerLimitSurvey: string;
20013
20623
  clearCaption: string;
20624
+ signaturePlaceHolder: string;
20014
20625
  chooseFileCaption: string;
20015
20626
  removeFileCaption: string;
20016
20627
  booleanCheckedLabel: string;
@@ -20018,6 +20629,16 @@ declare module "localization/persian" {
20018
20629
  confirmRemoveFile: string;
20019
20630
  confirmRemoveAllFiles: string;
20020
20631
  questionTitlePatternText: string;
20632
+ modalCancelButtonText: string;
20633
+ modalApplyButtonText: string;
20634
+ filterStringPlaceholder: string;
20635
+ emptyMessage: string;
20636
+ noEntriesText: string;
20637
+ noEntriesReadonlyText: string;
20638
+ more: string;
20639
+ tagboxDoneButtonCaption: string;
20640
+ selectToRankEmptyRankedAreaText: string;
20641
+ selectToRankEmptyUnrankedAreaText: string;
20021
20642
  };
20022
20643
  }
20023
20644
  declare module "localization/polish" {
@@ -20034,6 +20655,7 @@ declare module "localization/polish" {
20034
20655
  progressText: string;
20035
20656
  indexText: string;
20036
20657
  panelDynamicProgressText: string;
20658
+ panelDynamicTabTextFormat: string;
20037
20659
  questionsProgressText: string;
20038
20660
  emptySurvey: string;
20039
20661
  completingSurvey: string;
@@ -20104,7 +20726,13 @@ declare module "localization/polish" {
20104
20726
  modalCancelButtonText: string;
20105
20727
  modalApplyButtonText: string;
20106
20728
  filterStringPlaceholder: string;
20729
+ emptyMessage: string;
20107
20730
  noEntriesText: string;
20731
+ noEntriesReadonlyText: string;
20732
+ more: string;
20733
+ tagboxDoneButtonCaption: string;
20734
+ selectToRankEmptyRankedAreaText: string;
20735
+ selectToRankEmptyUnrankedAreaText: string;
20108
20736
  };
20109
20737
  }
20110
20738
  declare module "localization/portuguese" {
@@ -20121,6 +20749,7 @@ declare module "localization/portuguese" {
20121
20749
  progressText: string;
20122
20750
  indexText: string;
20123
20751
  panelDynamicProgressText: string;
20752
+ panelDynamicTabTextFormat: string;
20124
20753
  questionsProgressText: string;
20125
20754
  emptySurvey: string;
20126
20755
  completingSurvey: string;
@@ -20193,8 +20822,11 @@ declare module "localization/portuguese" {
20193
20822
  filterStringPlaceholder: string;
20194
20823
  emptyMessage: string;
20195
20824
  noEntriesText: string;
20825
+ noEntriesReadonlyText: string;
20196
20826
  more: string;
20197
20827
  tagboxDoneButtonCaption: string;
20828
+ selectToRankEmptyRankedAreaText: string;
20829
+ selectToRankEmptyUnrankedAreaText: string;
20198
20830
  };
20199
20831
  }
20200
20832
  declare module "localization/portuguese-br" {
@@ -20202,30 +20834,96 @@ declare module "localization/portuguese-br" {
20202
20834
  * You don't need to translate strings that have the same value as Portuguese translation
20203
20835
  */
20204
20836
  export var portugueseBrSurveyStrings: {
20837
+ pagePrevText: string;
20838
+ pageNextText: string;
20839
+ completeText: string;
20840
+ previewText: string;
20841
+ editText: string;
20842
+ startSurveyText: string;
20843
+ otherItemText: string;
20844
+ noneItemText: string;
20845
+ selectAllItemText: string;
20846
+ progressText: string;
20847
+ indexText: string;
20848
+ panelDynamicProgressText: string;
20849
+ panelDynamicTabTextFormat: string;
20850
+ questionsProgressText: string;
20205
20851
  emptySurvey: string;
20206
20852
  completingSurvey: string;
20207
20853
  completingSurveyBefore: string;
20208
20854
  loadingSurvey: string;
20855
+ placeholder: string;
20856
+ ratingOptionsCaption: string;
20857
+ value: string;
20209
20858
  requiredError: string;
20210
20859
  requiredErrorInPanel: string;
20211
20860
  requiredInAllRowsError: string;
20861
+ numericError: string;
20862
+ minError: string;
20863
+ maxError: string;
20864
+ textMinLength: string;
20865
+ textMaxLength: string;
20866
+ textMinMaxLength: string;
20867
+ minRowCountError: string;
20868
+ minSelectError: string;
20212
20869
  maxSelectError: string;
20870
+ numericMinMax: string;
20871
+ numericMin: string;
20872
+ numericMax: string;
20213
20873
  invalidEmail: string;
20874
+ invalidExpression: string;
20214
20875
  urlRequestError: string;
20215
20876
  urlGetChoicesError: string;
20877
+ exceedMaxSize: string;
20216
20878
  otherRequiredError: string;
20217
20879
  uploadingFile: string;
20218
20880
  loadingFile: string;
20881
+ chooseFile: string;
20219
20882
  noFileChosen: string;
20883
+ fileDragAreaPlaceholder: string;
20220
20884
  confirmDelete: string;
20221
20885
  keyDuplicationError: string;
20886
+ addColumn: string;
20887
+ addRow: string;
20888
+ removeRow: string;
20889
+ emptyRowsText: string;
20890
+ addPanel: string;
20891
+ removePanel: string;
20892
+ choices_Item: string;
20893
+ matrix_column: string;
20894
+ matrix_row: string;
20895
+ multipletext_itemname: string;
20222
20896
  savingData: string;
20223
20897
  savingDataError: string;
20224
20898
  savingDataSuccess: string;
20899
+ saveAgainButton: string;
20900
+ timerMin: string;
20901
+ timerSec: string;
20902
+ timerSpentAll: string;
20903
+ timerSpentPage: string;
20904
+ timerSpentSurvey: string;
20905
+ timerLimitAll: string;
20906
+ timerLimitPage: string;
20907
+ timerLimitSurvey: string;
20908
+ clearCaption: string;
20909
+ signaturePlaceHolder: string;
20225
20910
  chooseFileCaption: string;
20226
20911
  removeFileCaption: string;
20912
+ booleanCheckedLabel: string;
20913
+ booleanUncheckedLabel: string;
20227
20914
  confirmRemoveFile: string;
20228
20915
  confirmRemoveAllFiles: string;
20916
+ questionTitlePatternText: string;
20917
+ modalCancelButtonText: string;
20918
+ modalApplyButtonText: string;
20919
+ filterStringPlaceholder: string;
20920
+ emptyMessage: string;
20921
+ noEntriesText: string;
20922
+ noEntriesReadonlyText: string;
20923
+ more: string;
20924
+ tagboxDoneButtonCaption: string;
20925
+ selectToRankEmptyRankedAreaText: string;
20926
+ selectToRankEmptyUnrankedAreaText: string;
20229
20927
  };
20230
20928
  }
20231
20929
  declare module "localization/romanian" {
@@ -20245,6 +20943,7 @@ declare module "localization/russian" {
20245
20943
  progressText: string;
20246
20944
  indexText: string;
20247
20945
  panelDynamicProgressText: string;
20946
+ panelDynamicTabTextFormat: string;
20248
20947
  questionsProgressText: string;
20249
20948
  emptySurvey: string;
20250
20949
  completingSurvey: string;
@@ -20315,7 +21014,13 @@ declare module "localization/russian" {
20315
21014
  modalCancelButtonText: string;
20316
21015
  modalApplyButtonText: string;
20317
21016
  filterStringPlaceholder: string;
21017
+ emptyMessage: string;
20318
21018
  noEntriesText: string;
21019
+ noEntriesReadonlyText: string;
21020
+ more: string;
21021
+ tagboxDoneButtonCaption: string;
21022
+ selectToRankEmptyRankedAreaText: string;
21023
+ selectToRankEmptyUnrankedAreaText: string;
20319
21024
  };
20320
21025
  }
20321
21026
  declare module "localization/serbian" {
@@ -20330,13 +21035,16 @@ declare module "localization/serbian" {
20330
21035
  noneItemText: string;
20331
21036
  selectAllItemText: string;
20332
21037
  progressText: string;
21038
+ indexText: string;
20333
21039
  panelDynamicProgressText: string;
21040
+ panelDynamicTabTextFormat: string;
20334
21041
  questionsProgressText: string;
20335
21042
  emptySurvey: string;
20336
21043
  completingSurvey: string;
20337
21044
  completingSurveyBefore: string;
20338
21045
  loadingSurvey: string;
20339
21046
  placeholder: string;
21047
+ ratingOptionsCaption: string;
20340
21048
  value: string;
20341
21049
  requiredError: string;
20342
21050
  requiredErrorInPanel: string;
@@ -20363,6 +21071,7 @@ declare module "localization/serbian" {
20363
21071
  loadingFile: string;
20364
21072
  chooseFile: string;
20365
21073
  noFileChosen: string;
21074
+ fileDragAreaPlaceholder: string;
20366
21075
  confirmDelete: string;
20367
21076
  keyDuplicationError: string;
20368
21077
  addColumn: string;
@@ -20388,6 +21097,7 @@ declare module "localization/serbian" {
20388
21097
  timerLimitPage: string;
20389
21098
  timerLimitSurvey: string;
20390
21099
  clearCaption: string;
21100
+ signaturePlaceHolder: string;
20391
21101
  chooseFileCaption: string;
20392
21102
  removeFileCaption: string;
20393
21103
  booleanCheckedLabel: string;
@@ -20397,6 +21107,14 @@ declare module "localization/serbian" {
20397
21107
  questionTitlePatternText: string;
20398
21108
  modalCancelButtonText: string;
20399
21109
  modalApplyButtonText: string;
21110
+ filterStringPlaceholder: string;
21111
+ emptyMessage: string;
21112
+ noEntriesText: string;
21113
+ noEntriesReadonlyText: string;
21114
+ more: string;
21115
+ tagboxDoneButtonCaption: string;
21116
+ selectToRankEmptyRankedAreaText: string;
21117
+ selectToRankEmptyUnrankedAreaText: string;
20400
21118
  };
20401
21119
  }
20402
21120
  declare module "localization/simplified-chinese" {
@@ -20411,13 +21129,16 @@ declare module "localization/simplified-chinese" {
20411
21129
  noneItemText: string;
20412
21130
  selectAllItemText: string;
20413
21131
  progressText: string;
21132
+ indexText: string;
20414
21133
  panelDynamicProgressText: string;
21134
+ panelDynamicTabTextFormat: string;
20415
21135
  questionsProgressText: string;
20416
21136
  emptySurvey: string;
20417
21137
  completingSurvey: string;
20418
21138
  completingSurveyBefore: string;
20419
21139
  loadingSurvey: string;
20420
21140
  placeholder: string;
21141
+ ratingOptionsCaption: string;
20421
21142
  value: string;
20422
21143
  requiredError: string;
20423
21144
  requiredErrorInPanel: string;
@@ -20444,6 +21165,7 @@ declare module "localization/simplified-chinese" {
20444
21165
  loadingFile: string;
20445
21166
  chooseFile: string;
20446
21167
  noFileChosen: string;
21168
+ fileDragAreaPlaceholder: string;
20447
21169
  confirmDelete: string;
20448
21170
  keyDuplicationError: string;
20449
21171
  addColumn: string;
@@ -20469,6 +21191,7 @@ declare module "localization/simplified-chinese" {
20469
21191
  timerLimitPage: string;
20470
21192
  timerLimitSurvey: string;
20471
21193
  clearCaption: string;
21194
+ signaturePlaceHolder: string;
20472
21195
  chooseFileCaption: string;
20473
21196
  removeFileCaption: string;
20474
21197
  booleanCheckedLabel: string;
@@ -20478,6 +21201,14 @@ declare module "localization/simplified-chinese" {
20478
21201
  questionTitlePatternText: string;
20479
21202
  modalCancelButtonText: string;
20480
21203
  modalApplyButtonText: string;
21204
+ filterStringPlaceholder: string;
21205
+ emptyMessage: string;
21206
+ noEntriesText: string;
21207
+ noEntriesReadonlyText: string;
21208
+ more: string;
21209
+ tagboxDoneButtonCaption: string;
21210
+ selectToRankEmptyRankedAreaText: string;
21211
+ selectToRankEmptyUnrankedAreaText: string;
20481
21212
  };
20482
21213
  }
20483
21214
  declare module "localization/slovak" {
@@ -20492,13 +21223,16 @@ declare module "localization/slovak" {
20492
21223
  noneItemText: string;
20493
21224
  selectAllItemText: string;
20494
21225
  progressText: string;
21226
+ indexText: string;
20495
21227
  panelDynamicProgressText: string;
21228
+ panelDynamicTabTextFormat: string;
20496
21229
  questionsProgressText: string;
20497
21230
  emptySurvey: string;
20498
21231
  completingSurvey: string;
20499
21232
  completingSurveyBefore: string;
20500
21233
  loadingSurvey: string;
20501
21234
  placeholder: string;
21235
+ ratingOptionsCaption: string;
20502
21236
  value: string;
20503
21237
  requiredError: string;
20504
21238
  requiredErrorInPanel: string;
@@ -20562,7 +21296,13 @@ declare module "localization/slovak" {
20562
21296
  modalCancelButtonText: string;
20563
21297
  modalApplyButtonText: string;
20564
21298
  filterStringPlaceholder: string;
21299
+ emptyMessage: string;
20565
21300
  noEntriesText: string;
21301
+ noEntriesReadonlyText: string;
21302
+ more: string;
21303
+ tagboxDoneButtonCaption: string;
21304
+ selectToRankEmptyRankedAreaText: string;
21305
+ selectToRankEmptyUnrankedAreaText: string;
20566
21306
  };
20567
21307
  }
20568
21308
  declare module "localization/spanish" {
@@ -20579,6 +21319,7 @@ declare module "localization/spanish" {
20579
21319
  progressText: string;
20580
21320
  indexText: string;
20581
21321
  panelDynamicProgressText: string;
21322
+ panelDynamicTabTextFormat: string;
20582
21323
  questionsProgressText: string;
20583
21324
  emptySurvey: string;
20584
21325
  completingSurvey: string;
@@ -20649,7 +21390,13 @@ declare module "localization/spanish" {
20649
21390
  modalCancelButtonText: string;
20650
21391
  modalApplyButtonText: string;
20651
21392
  filterStringPlaceholder: string;
21393
+ emptyMessage: string;
20652
21394
  noEntriesText: string;
21395
+ noEntriesReadonlyText: string;
21396
+ more: string;
21397
+ tagboxDoneButtonCaption: string;
21398
+ selectToRankEmptyRankedAreaText: string;
21399
+ selectToRankEmptyUnrankedAreaText: string;
20653
21400
  };
20654
21401
  }
20655
21402
  declare module "localization/swahili" {
@@ -20664,18 +21411,23 @@ declare module "localization/swahili" {
20664
21411
  noneItemText: string;
20665
21412
  selectAllItemText: string;
20666
21413
  progressText: string;
21414
+ indexText: string;
20667
21415
  panelDynamicProgressText: string;
21416
+ panelDynamicTabTextFormat: string;
20668
21417
  questionsProgressText: string;
20669
21418
  emptySurvey: string;
20670
21419
  completingSurvey: string;
20671
21420
  completingSurveyBefore: string;
20672
21421
  loadingSurvey: string;
20673
21422
  placeholder: string;
21423
+ ratingOptionsCaption: string;
20674
21424
  value: string;
20675
21425
  requiredError: string;
20676
21426
  requiredErrorInPanel: string;
20677
21427
  requiredInAllRowsError: string;
20678
21428
  numericError: string;
21429
+ minError: string;
21430
+ maxError: string;
20679
21431
  textMinLength: string;
20680
21432
  textMaxLength: string;
20681
21433
  textMinMaxLength: string;
@@ -20695,16 +21447,19 @@ declare module "localization/swahili" {
20695
21447
  loadingFile: string;
20696
21448
  chooseFile: string;
20697
21449
  noFileChosen: string;
21450
+ fileDragAreaPlaceholder: string;
20698
21451
  confirmDelete: string;
20699
21452
  keyDuplicationError: string;
20700
21453
  addColumn: string;
20701
21454
  addRow: string;
20702
21455
  removeRow: string;
21456
+ emptyRowsText: string;
20703
21457
  addPanel: string;
20704
21458
  removePanel: string;
20705
21459
  choices_Item: string;
20706
21460
  matrix_column: string;
20707
21461
  matrix_row: string;
21462
+ multipletext_itemname: string;
20708
21463
  savingData: string;
20709
21464
  savingDataError: string;
20710
21465
  savingDataSuccess: string;
@@ -20718,6 +21473,7 @@ declare module "localization/swahili" {
20718
21473
  timerLimitPage: string;
20719
21474
  timerLimitSurvey: string;
20720
21475
  clearCaption: string;
21476
+ signaturePlaceHolder: string;
20721
21477
  chooseFileCaption: string;
20722
21478
  removeFileCaption: string;
20723
21479
  booleanCheckedLabel: string;
@@ -20725,6 +21481,16 @@ declare module "localization/swahili" {
20725
21481
  confirmRemoveFile: string;
20726
21482
  confirmRemoveAllFiles: string;
20727
21483
  questionTitlePatternText: string;
21484
+ modalCancelButtonText: string;
21485
+ modalApplyButtonText: string;
21486
+ filterStringPlaceholder: string;
21487
+ emptyMessage: string;
21488
+ noEntriesText: string;
21489
+ noEntriesReadonlyText: string;
21490
+ more: string;
21491
+ tagboxDoneButtonCaption: string;
21492
+ selectToRankEmptyRankedAreaText: string;
21493
+ selectToRankEmptyUnrankedAreaText: string;
20728
21494
  };
20729
21495
  }
20730
21496
  declare module "localization/swedish" {
@@ -20741,6 +21507,7 @@ declare module "localization/swedish" {
20741
21507
  progressText: string;
20742
21508
  indexText: string;
20743
21509
  panelDynamicProgressText: string;
21510
+ panelDynamicTabTextFormat: string;
20744
21511
  questionsProgressText: string;
20745
21512
  emptySurvey: string;
20746
21513
  completingSurvey: string;
@@ -20774,11 +21541,13 @@ declare module "localization/swedish" {
20774
21541
  loadingFile: string;
20775
21542
  chooseFile: string;
20776
21543
  noFileChosen: string;
21544
+ fileDragAreaPlaceholder: string;
20777
21545
  confirmDelete: string;
20778
21546
  keyDuplicationError: string;
20779
21547
  addColumn: string;
20780
21548
  addRow: string;
20781
21549
  removeRow: string;
21550
+ emptyRowsText: string;
20782
21551
  addPanel: string;
20783
21552
  removePanel: string;
20784
21553
  choices_Item: string;
@@ -20811,7 +21580,11 @@ declare module "localization/swedish" {
20811
21580
  filterStringPlaceholder: string;
20812
21581
  emptyMessage: string;
20813
21582
  noEntriesText: string;
21583
+ noEntriesReadonlyText: string;
20814
21584
  more: string;
21585
+ tagboxDoneButtonCaption: string;
21586
+ selectToRankEmptyRankedAreaText: string;
21587
+ selectToRankEmptyUnrankedAreaText: string;
20815
21588
  };
20816
21589
  }
20817
21590
  declare module "localization/tajik" {
@@ -20890,18 +21663,23 @@ declare module "localization/thai" {
20890
21663
  noneItemText: string;
20891
21664
  selectAllItemText: string;
20892
21665
  progressText: string;
21666
+ indexText: string;
20893
21667
  panelDynamicProgressText: string;
21668
+ panelDynamicTabTextFormat: string;
20894
21669
  questionsProgressText: string;
20895
21670
  emptySurvey: string;
20896
21671
  completingSurvey: string;
20897
21672
  completingSurveyBefore: string;
20898
21673
  loadingSurvey: string;
20899
21674
  placeholder: string;
21675
+ ratingOptionsCaption: string;
20900
21676
  value: string;
20901
21677
  requiredError: string;
20902
21678
  requiredErrorInPanel: string;
20903
21679
  requiredInAllRowsError: string;
20904
21680
  numericError: string;
21681
+ minError: string;
21682
+ maxError: string;
20905
21683
  textMinLength: string;
20906
21684
  textMaxLength: string;
20907
21685
  textMinMaxLength: string;
@@ -20921,16 +21699,19 @@ declare module "localization/thai" {
20921
21699
  loadingFile: string;
20922
21700
  chooseFile: string;
20923
21701
  noFileChosen: string;
21702
+ fileDragAreaPlaceholder: string;
20924
21703
  confirmDelete: string;
20925
21704
  keyDuplicationError: string;
20926
21705
  addColumn: string;
20927
21706
  addRow: string;
20928
21707
  removeRow: string;
21708
+ emptyRowsText: string;
20929
21709
  addPanel: string;
20930
21710
  removePanel: string;
20931
21711
  choices_Item: string;
20932
21712
  matrix_column: string;
20933
21713
  matrix_row: string;
21714
+ multipletext_itemname: string;
20934
21715
  savingData: string;
20935
21716
  savingDataError: string;
20936
21717
  savingDataSuccess: string;
@@ -20944,6 +21725,7 @@ declare module "localization/thai" {
20944
21725
  timerLimitPage: string;
20945
21726
  timerLimitSurvey: string;
20946
21727
  clearCaption: string;
21728
+ signaturePlaceHolder: string;
20947
21729
  chooseFileCaption: string;
20948
21730
  removeFileCaption: string;
20949
21731
  booleanCheckedLabel: string;
@@ -20951,6 +21733,16 @@ declare module "localization/thai" {
20951
21733
  confirmRemoveFile: string;
20952
21734
  confirmRemoveAllFiles: string;
20953
21735
  questionTitlePatternText: string;
21736
+ modalCancelButtonText: string;
21737
+ modalApplyButtonText: string;
21738
+ filterStringPlaceholder: string;
21739
+ emptyMessage: string;
21740
+ noEntriesText: string;
21741
+ noEntriesReadonlyText: string;
21742
+ more: string;
21743
+ tagboxDoneButtonCaption: string;
21744
+ selectToRankEmptyRankedAreaText: string;
21745
+ selectToRankEmptyUnrankedAreaText: string;
20954
21746
  };
20955
21747
  }
20956
21748
  declare module "localization/traditional-chinese" {
@@ -20958,15 +21750,30 @@ declare module "localization/traditional-chinese" {
20958
21750
  pagePrevText: string;
20959
21751
  pageNextText: string;
20960
21752
  completeText: string;
21753
+ previewText: string;
21754
+ editText: string;
21755
+ startSurveyText: string;
20961
21756
  otherItemText: string;
21757
+ noneItemText: string;
21758
+ selectAllItemText: string;
20962
21759
  progressText: string;
21760
+ indexText: string;
21761
+ panelDynamicProgressText: string;
21762
+ panelDynamicTabTextFormat: string;
21763
+ questionsProgressText: string;
20963
21764
  emptySurvey: string;
20964
21765
  completingSurvey: string;
21766
+ completingSurveyBefore: string;
20965
21767
  loadingSurvey: string;
20966
21768
  placeholder: string;
21769
+ ratingOptionsCaption: string;
21770
+ value: string;
20967
21771
  requiredError: string;
21772
+ requiredErrorInPanel: string;
20968
21773
  requiredInAllRowsError: string;
20969
21774
  numericError: string;
21775
+ minError: string;
21776
+ maxError: string;
20970
21777
  textMinLength: string;
20971
21778
  textMaxLength: string;
20972
21779
  textMinMaxLength: string;
@@ -20977,20 +21784,59 @@ declare module "localization/traditional-chinese" {
20977
21784
  numericMin: string;
20978
21785
  numericMax: string;
20979
21786
  invalidEmail: string;
21787
+ invalidExpression: string;
20980
21788
  urlRequestError: string;
20981
21789
  urlGetChoicesError: string;
20982
21790
  exceedMaxSize: string;
20983
21791
  otherRequiredError: string;
20984
21792
  uploadingFile: string;
21793
+ loadingFile: string;
21794
+ chooseFile: string;
21795
+ noFileChosen: string;
21796
+ fileDragAreaPlaceholder: string;
21797
+ confirmDelete: string;
21798
+ keyDuplicationError: string;
21799
+ addColumn: string;
20985
21800
  addRow: string;
20986
21801
  removeRow: string;
21802
+ emptyRowsText: string;
21803
+ addPanel: string;
21804
+ removePanel: string;
20987
21805
  choices_Item: string;
20988
21806
  matrix_column: string;
20989
21807
  matrix_row: string;
21808
+ multipletext_itemname: string;
20990
21809
  savingData: string;
20991
21810
  savingDataError: string;
20992
21811
  savingDataSuccess: string;
20993
21812
  saveAgainButton: string;
21813
+ timerMin: string;
21814
+ timerSec: string;
21815
+ timerSpentAll: string;
21816
+ timerSpentPage: string;
21817
+ timerSpentSurvey: string;
21818
+ timerLimitAll: string;
21819
+ timerLimitPage: string;
21820
+ timerLimitSurvey: string;
21821
+ clearCaption: string;
21822
+ signaturePlaceHolder: string;
21823
+ chooseFileCaption: string;
21824
+ removeFileCaption: string;
21825
+ booleanCheckedLabel: string;
21826
+ booleanUncheckedLabel: string;
21827
+ confirmRemoveFile: string;
21828
+ confirmRemoveAllFiles: string;
21829
+ questionTitlePatternText: string;
21830
+ modalCancelButtonText: string;
21831
+ modalApplyButtonText: string;
21832
+ filterStringPlaceholder: string;
21833
+ emptyMessage: string;
21834
+ noEntriesText: string;
21835
+ noEntriesReadonlyText: string;
21836
+ more: string;
21837
+ tagboxDoneButtonCaption: string;
21838
+ selectToRankEmptyRankedAreaText: string;
21839
+ selectToRankEmptyUnrankedAreaText: string;
20994
21840
  };
20995
21841
  }
20996
21842
  declare module "localization/turkish" {
@@ -21099,18 +21945,23 @@ declare module "localization/ukrainian" {
21099
21945
  noneItemText: string;
21100
21946
  selectAllItemText: string;
21101
21947
  progressText: string;
21948
+ indexText: string;
21102
21949
  panelDynamicProgressText: string;
21950
+ panelDynamicTabTextFormat: string;
21103
21951
  questionsProgressText: string;
21104
21952
  emptySurvey: string;
21105
21953
  completingSurvey: string;
21106
21954
  completingSurveyBefore: string;
21107
21955
  loadingSurvey: string;
21108
21956
  placeholder: string;
21957
+ ratingOptionsCaption: string;
21109
21958
  value: string;
21110
21959
  requiredError: string;
21111
21960
  requiredErrorInPanel: string;
21112
21961
  requiredInAllRowsError: string;
21113
21962
  numericError: string;
21963
+ minError: string;
21964
+ maxError: string;
21114
21965
  textMinLength: string;
21115
21966
  textMaxLength: string;
21116
21967
  textMinMaxLength: string;
@@ -21130,16 +21981,19 @@ declare module "localization/ukrainian" {
21130
21981
  loadingFile: string;
21131
21982
  chooseFile: string;
21132
21983
  noFileChosen: string;
21984
+ fileDragAreaPlaceholder: string;
21133
21985
  confirmDelete: string;
21134
21986
  keyDuplicationError: string;
21135
21987
  addColumn: string;
21136
21988
  addRow: string;
21137
21989
  removeRow: string;
21990
+ emptyRowsText: string;
21138
21991
  addPanel: string;
21139
21992
  removePanel: string;
21140
21993
  choices_Item: string;
21141
21994
  matrix_column: string;
21142
21995
  matrix_row: string;
21996
+ multipletext_itemname: string;
21143
21997
  savingData: string;
21144
21998
  savingDataError: string;
21145
21999
  savingDataSuccess: string;
@@ -21153,6 +22007,7 @@ declare module "localization/ukrainian" {
21153
22007
  timerLimitPage: string;
21154
22008
  timerLimitSurvey: string;
21155
22009
  clearCaption: string;
22010
+ signaturePlaceHolder: string;
21156
22011
  chooseFileCaption: string;
21157
22012
  removeFileCaption: string;
21158
22013
  booleanCheckedLabel: string;
@@ -21160,6 +22015,16 @@ declare module "localization/ukrainian" {
21160
22015
  confirmRemoveFile: string;
21161
22016
  confirmRemoveAllFiles: string;
21162
22017
  questionTitlePatternText: string;
22018
+ modalCancelButtonText: string;
22019
+ modalApplyButtonText: string;
22020
+ filterStringPlaceholder: string;
22021
+ emptyMessage: string;
22022
+ noEntriesText: string;
22023
+ noEntriesReadonlyText: string;
22024
+ more: string;
22025
+ tagboxDoneButtonCaption: string;
22026
+ selectToRankEmptyRankedAreaText: string;
22027
+ selectToRankEmptyUnrankedAreaText: string;
21163
22028
  };
21164
22029
  }
21165
22030
  declare module "localization/vietnamese" {
@@ -21174,18 +22039,23 @@ declare module "localization/vietnamese" {
21174
22039
  noneItemText: string;
21175
22040
  selectAllItemText: string;
21176
22041
  progressText: string;
22042
+ indexText: string;
21177
22043
  panelDynamicProgressText: string;
22044
+ panelDynamicTabTextFormat: string;
21178
22045
  questionsProgressText: string;
21179
22046
  emptySurvey: string;
21180
22047
  completingSurvey: string;
21181
22048
  completingSurveyBefore: string;
21182
22049
  loadingSurvey: string;
21183
22050
  placeholder: string;
22051
+ ratingOptionsCaption: string;
21184
22052
  value: string;
21185
22053
  requiredError: string;
21186
22054
  requiredErrorInPanel: string;
21187
22055
  requiredInAllRowsError: string;
21188
22056
  numericError: string;
22057
+ minError: string;
22058
+ maxError: string;
21189
22059
  textMinLength: string;
21190
22060
  textMaxLength: string;
21191
22061
  textMinMaxLength: string;
@@ -21205,16 +22075,19 @@ declare module "localization/vietnamese" {
21205
22075
  loadingFile: string;
21206
22076
  chooseFile: string;
21207
22077
  noFileChosen: string;
22078
+ fileDragAreaPlaceholder: string;
21208
22079
  confirmDelete: string;
21209
22080
  keyDuplicationError: string;
21210
22081
  addColumn: string;
21211
22082
  addRow: string;
21212
22083
  removeRow: string;
22084
+ emptyRowsText: string;
21213
22085
  addPanel: string;
21214
22086
  removePanel: string;
21215
22087
  choices_Item: string;
21216
22088
  matrix_column: string;
21217
22089
  matrix_row: string;
22090
+ multipletext_itemname: string;
21218
22091
  savingData: string;
21219
22092
  savingDataError: string;
21220
22093
  savingDataSuccess: string;
@@ -21228,6 +22101,7 @@ declare module "localization/vietnamese" {
21228
22101
  timerLimitPage: string;
21229
22102
  timerLimitSurvey: string;
21230
22103
  clearCaption: string;
22104
+ signaturePlaceHolder: string;
21231
22105
  chooseFileCaption: string;
21232
22106
  removeFileCaption: string;
21233
22107
  booleanCheckedLabel: string;
@@ -21235,6 +22109,16 @@ declare module "localization/vietnamese" {
21235
22109
  confirmRemoveFile: string;
21236
22110
  confirmRemoveAllFiles: string;
21237
22111
  questionTitlePatternText: string;
22112
+ modalCancelButtonText: string;
22113
+ modalApplyButtonText: string;
22114
+ filterStringPlaceholder: string;
22115
+ emptyMessage: string;
22116
+ noEntriesText: string;
22117
+ noEntriesReadonlyText: string;
22118
+ more: string;
22119
+ tagboxDoneButtonCaption: string;
22120
+ selectToRankEmptyRankedAreaText: string;
22121
+ selectToRankEmptyUnrankedAreaText: string;
21238
22122
  };
21239
22123
  }
21240
22124
  declare module "localization/welsh" {
@@ -21249,18 +22133,23 @@ declare module "localization/welsh" {
21249
22133
  noneItemText: string;
21250
22134
  selectAllItemText: string;
21251
22135
  progressText: string;
22136
+ indexText: string;
21252
22137
  panelDynamicProgressText: string;
22138
+ panelDynamicTabTextFormat: string;
21253
22139
  questionsProgressText: string;
21254
22140
  emptySurvey: string;
21255
22141
  completingSurvey: string;
21256
22142
  completingSurveyBefore: string;
21257
22143
  loadingSurvey: string;
21258
22144
  placeholder: string;
22145
+ ratingOptionsCaption: string;
21259
22146
  value: string;
21260
22147
  requiredError: string;
21261
22148
  requiredErrorInPanel: string;
21262
22149
  requiredInAllRowsError: string;
21263
22150
  numericError: string;
22151
+ minError: string;
22152
+ maxError: string;
21264
22153
  textMinLength: string;
21265
22154
  textMaxLength: string;
21266
22155
  textMinMaxLength: string;
@@ -21280,16 +22169,19 @@ declare module "localization/welsh" {
21280
22169
  loadingFile: string;
21281
22170
  chooseFile: string;
21282
22171
  noFileChosen: string;
22172
+ fileDragAreaPlaceholder: string;
21283
22173
  confirmDelete: string;
21284
22174
  keyDuplicationError: string;
21285
22175
  addColumn: string;
21286
22176
  addRow: string;
21287
22177
  removeRow: string;
22178
+ emptyRowsText: string;
21288
22179
  addPanel: string;
21289
22180
  removePanel: string;
21290
22181
  choices_Item: string;
21291
22182
  matrix_column: string;
21292
22183
  matrix_row: string;
22184
+ multipletext_itemname: string;
21293
22185
  savingData: string;
21294
22186
  savingDataError: string;
21295
22187
  savingDataSuccess: string;
@@ -21303,6 +22195,7 @@ declare module "localization/welsh" {
21303
22195
  timerLimitPage: string;
21304
22196
  timerLimitSurvey: string;
21305
22197
  clearCaption: string;
22198
+ signaturePlaceHolder: string;
21306
22199
  chooseFileCaption: string;
21307
22200
  removeFileCaption: string;
21308
22201
  booleanCheckedLabel: string;
@@ -21310,6 +22203,16 @@ declare module "localization/welsh" {
21310
22203
  confirmRemoveFile: string;
21311
22204
  confirmRemoveAllFiles: string;
21312
22205
  questionTitlePatternText: string;
22206
+ modalCancelButtonText: string;
22207
+ modalApplyButtonText: string;
22208
+ filterStringPlaceholder: string;
22209
+ emptyMessage: string;
22210
+ noEntriesText: string;
22211
+ noEntriesReadonlyText: string;
22212
+ more: string;
22213
+ tagboxDoneButtonCaption: string;
22214
+ selectToRankEmptyRankedAreaText: string;
22215
+ selectToRankEmptyUnrankedAreaText: string;
21313
22216
  };
21314
22217
  }
21315
22218
  declare module "localization/telugu" {
@@ -21321,20 +22224,26 @@ declare module "localization/telugu" {
21321
22224
  editText: string;
21322
22225
  startSurveyText: string;
21323
22226
  otherItemText: string;
22227
+ noneItemText: string;
21324
22228
  selectAllItemText: string;
21325
22229
  progressText: string;
22230
+ indexText: string;
21326
22231
  panelDynamicProgressText: string;
22232
+ panelDynamicTabTextFormat: string;
21327
22233
  questionsProgressText: string;
21328
22234
  emptySurvey: string;
21329
22235
  completingSurvey: string;
21330
22236
  completingSurveyBefore: string;
21331
22237
  loadingSurvey: string;
21332
22238
  placeholder: string;
22239
+ ratingOptionsCaption: string;
21333
22240
  value: string;
21334
22241
  requiredError: string;
21335
22242
  requiredErrorInPanel: string;
21336
22243
  requiredInAllRowsError: string;
21337
22244
  numericError: string;
22245
+ minError: string;
22246
+ maxError: string;
21338
22247
  textMinLength: string;
21339
22248
  textMaxLength: string;
21340
22249
  textMinMaxLength: string;
@@ -21354,16 +22263,19 @@ declare module "localization/telugu" {
21354
22263
  loadingFile: string;
21355
22264
  chooseFile: string;
21356
22265
  noFileChosen: string;
22266
+ fileDragAreaPlaceholder: string;
21357
22267
  confirmDelete: string;
21358
22268
  keyDuplicationError: string;
21359
22269
  addColumn: string;
21360
22270
  addRow: string;
21361
22271
  removeRow: string;
22272
+ emptyRowsText: string;
21362
22273
  addPanel: string;
21363
22274
  removePanel: string;
21364
22275
  choices_Item: string;
21365
22276
  matrix_column: string;
21366
22277
  matrix_row: string;
22278
+ multipletext_itemname: string;
21367
22279
  savingData: string;
21368
22280
  savingDataError: string;
21369
22281
  savingDataSuccess: string;
@@ -21377,6 +22289,7 @@ declare module "localization/telugu" {
21377
22289
  timerLimitPage: string;
21378
22290
  timerLimitSurvey: string;
21379
22291
  clearCaption: string;
22292
+ signaturePlaceHolder: string;
21380
22293
  chooseFileCaption: string;
21381
22294
  removeFileCaption: string;
21382
22295
  booleanCheckedLabel: string;
@@ -21384,6 +22297,16 @@ declare module "localization/telugu" {
21384
22297
  confirmRemoveFile: string;
21385
22298
  confirmRemoveAllFiles: string;
21386
22299
  questionTitlePatternText: string;
22300
+ modalCancelButtonText: string;
22301
+ modalApplyButtonText: string;
22302
+ filterStringPlaceholder: string;
22303
+ emptyMessage: string;
22304
+ noEntriesText: string;
22305
+ noEntriesReadonlyText: string;
22306
+ more: string;
22307
+ tagboxDoneButtonCaption: string;
22308
+ selectToRankEmptyRankedAreaText: string;
22309
+ selectToRankEmptyUnrankedAreaText: string;
21387
22310
  };
21388
22311
  }
21389
22312
  declare module "entries/chunks/localization" {
@@ -22402,6 +23325,7 @@ declare module "react/components/matrix-actions/drag-drop-icon/drag-drop-icon" {
22402
23325
  }
22403
23326
  }
22404
23327
  declare module "react/reactquestion_matrixdropdownbase" {
23328
+ import * as React from "react";
22405
23329
  import { SurveyQuestionElementBase } from "react/reactquestion_element";
22406
23330
  import { SurveyQuestionAndErrorsCell } from "react/reactquestion";
22407
23331
  import { QuestionMatrixDropdownModelBase, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedCell, Question } from "entries/core";
@@ -22435,6 +23359,16 @@ declare module "react/reactquestion_matrixdropdownbase" {
22435
23359
  private renderCellCheckboxButton;
22436
23360
  private renderCellRadiogroupButton;
22437
23361
  }
23362
+ export class SurveyQuestionMatrixDropdownErrorCell extends React.Component<any, any> {
23363
+ constructor(props: any);
23364
+ private get cell();
23365
+ private update;
23366
+ private registerCallback;
23367
+ private unRegisterCallback;
23368
+ componentDidUpdate(prevProps: Readonly<any>): void;
23369
+ componentWillUnmount(): void;
23370
+ render(): JSX.Element;
23371
+ }
22438
23372
  }
22439
23373
  declare module "react/reactquestion_matrixdropdown" {
22440
23374
  import { SurveyQuestionMatrixDropdownBase } from "react/reactquestion_matrixdropdownbase";