survey-react 1.9.100 → 1.9.102

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;
@@ -705,6 +706,8 @@ declare module "expressions/expressions" {
705
706
  private consumer;
706
707
  private isArithmeticValue;
707
708
  constructor(operatorName: string, left?: any, right?: any, isArithmeticOp?: boolean);
709
+ private get requireStrictCompare();
710
+ private getIsOperandRequireStrict;
708
711
  getType(): string;
709
712
  get isArithmetic(): boolean;
710
713
  get isConjunction(): boolean;
@@ -752,6 +755,7 @@ declare module "expressions/expressions" {
752
755
  getType(): string;
753
756
  toString(func?: (op: Operand) => string): string;
754
757
  get correctValue(): any;
758
+ get requireStrictCompare(): boolean;
755
759
  evaluate(): any;
756
760
  setVariables(variables: Array<string>): void;
757
761
  protected getCorrectValue(value: any): any;
@@ -766,6 +770,7 @@ declare module "expressions/expressions" {
766
770
  private valueInfo;
767
771
  private useValueAsItIs;
768
772
  constructor(variableName: string);
773
+ get requireStrictCompare(): boolean;
769
774
  getType(): string;
770
775
  toString(func?: (op: Operand) => string): string;
771
776
  get variable(): string;
@@ -804,7 +809,7 @@ declare module "expressions/expressions" {
804
809
  static plusMinus(a: number, b: number, res: number): number;
805
810
  static unaryFunctions: HashTable<Function>;
806
811
  static binaryFunctions: HashTable<Function>;
807
- static isTwoValueEquals(x: any, y: any): boolean;
812
+ static isTwoValueEquals(x: any, y: any, ignoreOrder?: boolean): boolean;
808
813
  static operatorToString(operatorName: string): string;
809
814
  static convertValForDateCompare(val: any, second: any): any;
810
815
  static signs: HashTable<string>;
@@ -1560,6 +1565,7 @@ declare module "defaultCss/defaultV2Css" {
1560
1565
  root: string;
1561
1566
  rootMobile: string;
1562
1567
  rootReadOnly: string;
1568
+ rootCompact: string;
1563
1569
  rootBackgroundImage: string;
1564
1570
  container: string;
1565
1571
  header: string;
@@ -1813,6 +1819,8 @@ declare module "defaultCss/defaultV2Css" {
1813
1819
  itemDisabled: string;
1814
1820
  itemHover: string;
1815
1821
  label: string;
1822
+ labelTrue: string;
1823
+ labelFalse: string;
1816
1824
  switch: string;
1817
1825
  disabledLabel: string;
1818
1826
  sliderText: string;
@@ -1948,6 +1956,9 @@ declare module "defaultCss/defaultV2Css" {
1948
1956
  tableWrapper: string;
1949
1957
  rootAlternateRows: string;
1950
1958
  cell: string;
1959
+ errorsCell: string;
1960
+ errorsCellTop: string;
1961
+ errorsCellBottom: string;
1951
1962
  itemCell: string;
1952
1963
  row: string;
1953
1964
  headerCell: string;
@@ -2001,6 +2012,9 @@ declare module "defaultCss/defaultV2Css" {
2001
2012
  emptyCell: string;
2002
2013
  verticalCell: string;
2003
2014
  cellQuestionWrapper: string;
2015
+ errorsCell: string;
2016
+ errorsCellTop: string;
2017
+ errorsCellBottom: string;
2004
2018
  compact: string;
2005
2019
  };
2006
2020
  rating: {
@@ -2626,6 +2640,8 @@ declare module "panel" {
2626
2640
  endLoadingFromJson(): void;
2627
2641
  showTitle: boolean;
2628
2642
  get hasTitle(): boolean;
2643
+ delete(): void;
2644
+ protected removeFromParent(): void;
2629
2645
  protected canShowTitle(): boolean;
2630
2646
  showDescription: boolean;
2631
2647
  get _showDescription(): boolean;
@@ -2708,6 +2724,7 @@ declare module "panel" {
2708
2724
  * @see elements
2709
2725
  */
2710
2726
  get questions(): Array<Question>;
2727
+ getQuestions(includeNested: boolean): Array<Question>;
2711
2728
  protected getValidName(name: string): string;
2712
2729
  /**
2713
2730
  * Returns a question with a specified `name`. This method does not find questions within nested panels.
@@ -2979,7 +2996,7 @@ declare module "panel" {
2979
2996
  */
2980
2997
  get page(): IPage;
2981
2998
  set page(val: IPage);
2982
- delete(): void;
2999
+ protected removeFromParent(): void;
2983
3000
  moveTo(container: IPanel, insertBefore?: any): boolean;
2984
3001
  /**
2985
3002
  * Returns the visible index of the panel in the survey. Commonly it is -1 and it doesn't show.
@@ -3036,6 +3053,7 @@ declare module "panel" {
3036
3053
  */
3037
3054
  get no(): string;
3038
3055
  protected setNo(visibleIndex: number): void;
3056
+ protected createLocTitleProperty(): LocalizableString;
3039
3057
  protected beforeSetVisibleIndex(index: number): number;
3040
3058
  protected getPanelStartIndex(index: number): number;
3041
3059
  protected isContinueNumbering(): boolean;
@@ -4432,6 +4450,7 @@ declare module "question_matrixdropdownrendered" {
4432
4450
  panel: PanelModel;
4433
4451
  isShowHideDetail: boolean;
4434
4452
  isActionsCell: boolean;
4453
+ isErrorsCell: boolean;
4435
4454
  isDragHandlerCell: boolean;
4436
4455
  private classNameValue;
4437
4456
  constructor();
@@ -4439,10 +4458,6 @@ declare module "question_matrixdropdownrendered" {
4439
4458
  get hasTitle(): boolean;
4440
4459
  get hasPanel(): boolean;
4441
4460
  get id(): number;
4442
- get showErrorOnTop(): boolean;
4443
- get showErrorOnBottom(): boolean;
4444
- private showErrorOnCore;
4445
- private getShowErrorLocation;
4446
4461
  get item(): ItemValue;
4447
4462
  set item(val: ItemValue);
4448
4463
  get isChoice(): boolean;
@@ -4462,7 +4477,9 @@ declare module "question_matrixdropdownrendered" {
4462
4477
  isDetailRow: boolean;
4463
4478
  isGhostRow: boolean;
4464
4479
  isAdditionalClasses: boolean;
4480
+ visible: boolean;
4465
4481
  row: MatrixDropdownRowModelBase;
4482
+ isErrorsRow: boolean;
4466
4483
  private static counter;
4467
4484
  private idValue;
4468
4485
  cells: Array<QuestionMatrixDropdownRenderedCell>;
@@ -4475,6 +4492,13 @@ declare module "question_matrixdropdownrendered" {
4475
4492
  };
4476
4493
  get className(): string;
4477
4494
  }
4495
+ export class QuestionMatrixDropdownRenderedErrorRow extends QuestionMatrixDropdownRenderedRow {
4496
+ isErrorsRow: boolean;
4497
+ constructor(cssClasses: any);
4498
+ get attributes(): {};
4499
+ get className(): string;
4500
+ onAfterCreated(): void;
4501
+ }
4478
4502
  export class QuestionMatrixDropdownRenderedTable extends Base {
4479
4503
  matrix: QuestionMatrixDropdownModelBase;
4480
4504
  private headerRowValue;
@@ -4496,6 +4520,8 @@ declare module "question_matrixdropdownrendered" {
4496
4520
  get headerRow(): QuestionMatrixDropdownRenderedRow;
4497
4521
  get footerRow(): QuestionMatrixDropdownRenderedRow;
4498
4522
  get allowRowsDragAndDrop(): boolean;
4523
+ private get showCellErrorsTop();
4524
+ private get showCellErrorsBottom();
4499
4525
  protected build(): void;
4500
4526
  updateShowTableAndAddRow(): void;
4501
4527
  onAddedRow(row: MatrixDropdownRowModelBase, index: number): void;
@@ -4506,6 +4532,7 @@ declare module "question_matrixdropdownrendered" {
4506
4532
  private getRenderedRowIndex;
4507
4533
  protected buildRowsActions(): void;
4508
4534
  protected createRenderedRow(cssClasses: any, isDetailRow?: boolean): QuestionMatrixDropdownRenderedRow;
4535
+ protected createErrorRenderedRow(cssClasses: any): QuestionMatrixDropdownRenderedErrorRow;
4509
4536
  protected buildHeader(): void;
4510
4537
  protected buildFooter(): void;
4511
4538
  protected buildRows(): void;
@@ -4522,6 +4549,7 @@ declare module "question_matrixdropdownrendered" {
4522
4549
  private buildRowActions;
4523
4550
  private get showRemoveButtonAsIcon();
4524
4551
  protected setDefaultRowActions(row: MatrixDropdownRowModelBase, actions: Array<IAction>): void;
4552
+ private createErrorRow;
4525
4553
  private createHorizontalRow;
4526
4554
  private addRowActionsCell;
4527
4555
  private createDetailPanelRow;
@@ -4532,6 +4560,7 @@ declare module "question_matrixdropdownrendered" {
4532
4560
  private createMutlipleEditCells;
4533
4561
  private setItemCellCssClasses;
4534
4562
  private createEditCell;
4563
+ private createErrorCell;
4535
4564
  private createMutlipleColumnsFooter;
4536
4565
  private createMutlipleColumnsHeader;
4537
4566
  private getMultipleColumnChoices;
@@ -4631,6 +4660,7 @@ declare module "question_matrixdynamic" {
4631
4660
  set defaultValueFromLastRow(val: boolean);
4632
4661
  protected isDefaultValueEmpty(): boolean;
4633
4662
  protected valueFromData(val: any): any;
4663
+ protected isNewValueCorrect(val: any): boolean;
4634
4664
  protected setDefaultValue(): void;
4635
4665
  moveRowByIndex(fromIndex: number, toIndex: number): void;
4636
4666
  clearOnDrop(): void;
@@ -5424,6 +5454,7 @@ declare module "question_paneldynamic" {
5424
5454
  private onReadyChangedCallback;
5425
5455
  recalculateIsReadyValue(): void;
5426
5456
  protected onSetData(): void;
5457
+ protected isNewValueCorrect(val: any): boolean;
5427
5458
  getItemIndex(item: ISurveyData): number;
5428
5459
  getVisibleItemIndex(item: ISurveyData): number;
5429
5460
  getPanelItemData(item: ISurveyData): any;
@@ -6477,7 +6508,7 @@ declare module "page" {
6477
6508
  navigationLocStrChanged(): void;
6478
6509
  get passed(): boolean;
6479
6510
  set passed(val: boolean);
6480
- delete(): void;
6511
+ protected removeFromParent(): void;
6481
6512
  onFirstRendering(): void;
6482
6513
  /**
6483
6514
  * The visible index of the page. It has values from 0 to visible page count - 1.
@@ -6859,7 +6890,6 @@ declare module "question_textbase" {
6859
6890
  declare module "question_text" {
6860
6891
  import { LocalizableString, LocalizableStrings } from "localizablestring";
6861
6892
  import { HashTable } from "helpers";
6862
- import { SurveyValidator } from "validator";
6863
6893
  import { SurveyError } from "survey-error";
6864
6894
  import { QuestionTextBase } from "question_textbase";
6865
6895
  /**
@@ -6881,7 +6911,6 @@ declare module "question_text" {
6881
6911
  get inputType(): string;
6882
6912
  set inputType(val: string);
6883
6913
  runCondition(values: HashTable<any>, properties: HashTable<any>): void;
6884
- getValidators(): Array<SurveyValidator>;
6885
6914
  isLayoutTypeSupported(layoutType: string): boolean;
6886
6915
  /**
6887
6916
  * A value passed on to the [`size`](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/size) attribute of the underlying `<input>` element.
@@ -7162,6 +7191,7 @@ declare module "question_multipletext" {
7162
7191
  getConditionJson(operator?: string, path?: string): any;
7163
7192
  locStrsChanged(): void;
7164
7193
  localeChanged(): void;
7194
+ protected isNewValueCorrect(val: any): boolean;
7165
7195
  supportGoNextPageAutomatic(): boolean;
7166
7196
  /**
7167
7197
  * The number of columns used to arrange input items. Accepts the following values: 1, 2, 3, 4, 5.
@@ -7288,6 +7318,7 @@ declare module "survey" {
7288
7318
  private textPreProcessor;
7289
7319
  private timerModelValue;
7290
7320
  private navigationBarValue;
7321
+ onThemeApplying: EventBase<SurveyModel>;
7291
7322
  onThemeApplied: EventBase<SurveyModel>;
7292
7323
  /**
7293
7324
  * An event that is raised after a [trigger](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#triggers) is executed.
@@ -8613,6 +8644,7 @@ declare module "survey" {
8613
8644
  set progressBarType(newValue: string);
8614
8645
  get isShowProgressBarOnTop(): boolean;
8615
8646
  get isShowProgressBarOnBottom(): boolean;
8647
+ getProgressTypeComponent(): string;
8616
8648
  getProgressCssClasses(): string;
8617
8649
  private canShowProresBar;
8618
8650
  get processedTitle(): string;
@@ -9793,8 +9825,7 @@ declare module "survey" {
9793
9825
  setTriggerValue(name: string, value: any, isVariable: boolean): void;
9794
9826
  copyTriggerValue(name: string, fromName: string, copyDisplayValue: boolean): void;
9795
9827
  triggerExecuted(trigger: Trigger): void;
9796
- private isFocusingQuestion;
9797
- private afterRenderPageTasks;
9828
+ private focusingQuestionInfo;
9798
9829
  private isMovingQuestion;
9799
9830
  startMovingQuestion(): void;
9800
9831
  stopMovingQuestion(): void;
@@ -9808,6 +9839,8 @@ declare module "survey" {
9808
9839
  * @see focusFirstQuestionAutomatic
9809
9840
  */
9810
9841
  focusQuestion(name: string): boolean;
9842
+ focusQuestionByInstance(question: Question, onError?: boolean): boolean;
9843
+ private focusQuestionInfo;
9811
9844
  questionEditFinishCallback(question: Question, event: any): void;
9812
9845
  getElementWrapperComponentName(element: any, reason?: string): string;
9813
9846
  getQuestionContentWrapperComponentName(element: any): string;
@@ -10303,6 +10336,13 @@ declare module "questionCustomWidgets" {
10303
10336
  getCustomWidget(question: IQuestion): QuestionCustomWidget;
10304
10337
  }
10305
10338
  }
10339
+ declare module "console-warnings" {
10340
+ export class ConsoleWarnings {
10341
+ static disposedObjectChangedProperty(propName: string, objType: string): void;
10342
+ static inCorrectQuestionValue(questionName: string, val: any): void;
10343
+ static warn(text: string): void;
10344
+ }
10345
+ }
10306
10346
  declare module "question" {
10307
10347
  import { HashTable } from "helpers";
10308
10348
  import { EventBase } from "base";
@@ -10410,6 +10450,7 @@ declare module "question" {
10410
10450
  set page(val: IPage);
10411
10451
  getPanel(): IPanel;
10412
10452
  delete(): void;
10453
+ protected removeFromParent(): void;
10413
10454
  get isFlowLayout(): boolean;
10414
10455
  getLayoutType(): string;
10415
10456
  isLayoutTypeSupported(layoutType: string): boolean;
@@ -10992,9 +11033,11 @@ declare module "question" {
10992
11033
  private isValueChangedInSurvey;
10993
11034
  protected allowNotifyValueChanged: boolean;
10994
11035
  protected setNewValue(newValue: any): void;
11036
+ protected isNewValueCorrect(val: any): boolean;
10995
11037
  protected isNewValueEqualsToValue(newValue: any): boolean;
10996
11038
  protected isTextValue(): boolean;
10997
11039
  get isSurveyInputTextUpdate(): boolean;
11040
+ get requireStrictCompare(): boolean;
10998
11041
  private getDataLocNotification;
10999
11042
  get isInputTextUpdate(): boolean;
11000
11043
  protected setNewValueInData(newValue: any): void;
@@ -11697,6 +11740,7 @@ declare module "base-interfaces" {
11697
11740
  export interface ISurvey extends ITextProcessor, ISurveyErrorOwner {
11698
11741
  getSkeletonComponentName(element: ISurveyElement): string;
11699
11742
  currentPage: IPage;
11743
+ activePage: IPage;
11700
11744
  pages: Array<IPage>;
11701
11745
  getCss(): any;
11702
11746
  isPageStarted(page: IPage): boolean;
@@ -11715,6 +11759,7 @@ declare module "base-interfaces" {
11715
11759
  questionRemoved(question: IQuestion): any;
11716
11760
  panelRemoved(panel: IElement): any;
11717
11761
  questionRenamed(question: IQuestion, oldName: string, oldValueName: string): any;
11762
+ focusQuestionByInstance(question: IQuestion, onError: boolean): boolean;
11718
11763
  validateQuestion(question: IQuestion): SurveyError;
11719
11764
  validatePanel(panel: IPanel): SurveyError;
11720
11765
  hasVisibleQuestionByValueName(valueName: string): boolean;
@@ -12127,6 +12172,7 @@ declare module "base" {
12127
12172
  private onPropChangeFunctions;
12128
12173
  protected isLoadingFromJsonValue: boolean;
12129
12174
  loadingOwner: Base;
12175
+ protected jsonObj: any;
12130
12176
  /**
12131
12177
  * An event that is raised when a property of this SurveyJS object has changed.
12132
12178
  *
@@ -13000,7 +13046,7 @@ declare module "question_matrixdropdown" {
13000
13046
  protected getConditionObjectRowName(index: number): string;
13001
13047
  protected getConditionObjectRowText(index: number): string;
13002
13048
  protected getConditionObjectsRowIndeces(): Array<number>;
13003
- protected setNewValue(newValue: any): void;
13049
+ protected isNewValueCorrect(val: any): boolean;
13004
13050
  clearIncorrectValues(): void;
13005
13051
  protected clearValueIfInvisibleCore(reason: string): void;
13006
13052
  protected generateRows(): Array<MatrixDropdownRowModel>;
@@ -13321,6 +13367,7 @@ declare module "question_matrix" {
13321
13367
  protected getVisibleRows(): Array<MatrixRowModel>;
13322
13368
  protected sortVisibleRows(array: Array<MatrixRowModel>): Array<MatrixRowModel>;
13323
13369
  endLoadingFromJson(): void;
13370
+ protected isNewValueCorrect(val: any): boolean;
13324
13371
  protected processRowsOnSet(newRows: Array<any>): MatrixRowModel[];
13325
13372
  get visibleRows(): Array<MatrixRowModel>;
13326
13373
  get cells(): MatrixCells;
@@ -13453,6 +13500,7 @@ declare module "question_checkbox" {
13453
13500
  import { ItemValue } from "itemvalue";
13454
13501
  import { LocalizableString } from "localizablestring";
13455
13502
  import { IQuestion } from "base-interfaces";
13503
+ import { SurveyError } from "survey-error";
13456
13504
  /**
13457
13505
  * A class that describes the Checkbox question type.
13458
13506
  *
@@ -13515,14 +13563,25 @@ declare module "question_checkbox" {
13515
13563
  protected isItemSelectedCore(item: ItemValue): boolean;
13516
13564
  private getRealValue;
13517
13565
  /**
13518
- * Sets a limit on the number of selected choices.
13566
+ * Specifies the maximum number of selected choices.
13519
13567
  *
13520
13568
  * Default value: 0 (unlimited)
13521
13569
  *
13522
13570
  * > This property only limits the number of choice items that can be selected by users. You can select any number of choice items in code, regardless of the `maxSelectedChoices` value.
13571
+ * @see minSelectedChoices
13523
13572
  */
13524
13573
  get maxSelectedChoices(): number;
13525
13574
  set maxSelectedChoices(val: number);
13575
+ /**
13576
+ * Specifies the minimum number of selected choices.
13577
+ *
13578
+ * Default value: 0 (unlimited)
13579
+ *
13580
+ * > This property only limits the number of choice items that can be selected by users. You can select any number of choice items in code, regardless of the `minSelectedChoices` value.
13581
+ * @see maxSelectedChoices
13582
+ */
13583
+ get minSelectedChoices(): number;
13584
+ set minSelectedChoices(val: number);
13526
13585
  /**
13527
13586
  * An array of selected choice items. Includes the "Other" and "None" choice items if they are selected, but not "Select All". Items are sorted in the order they were selected.
13528
13587
  * @see visibleChoices
@@ -13532,9 +13591,11 @@ declare module "question_checkbox" {
13532
13591
  get selectedItems(): Array<ItemValue>;
13533
13592
  protected getMultipleSelectedItems(): Array<ItemValue>;
13534
13593
  protected validateItemValues(itemValues: Array<ItemValue>): Array<ItemValue>;
13594
+ protected onCheckForErrors(errors: Array<SurveyError>, isOnValueChanged: boolean): void;
13535
13595
  protected onEnableItemCallBack(item: ItemValue): boolean;
13536
13596
  protected onAfterRunItemsEnableCondition(): void;
13537
13597
  private shouldCheckMaxSelectedChoices;
13598
+ private checkMinSelectedChoicesUnreached;
13538
13599
  protected getItemClassCore(item: any, options: any): string;
13539
13600
  updateValueFromSurvey(newValue: any): void;
13540
13601
  protected setDefaultValue(): void;
@@ -13926,6 +13987,7 @@ declare module "question_ranking" {
13926
13987
  getNumberByIndex(index: number): string;
13927
13988
  setSurveyImpl(value: ISurveyImpl, isLight?: boolean): void;
13928
13989
  isAnswerCorrect(): boolean;
13990
+ get requireStrictCompare(): boolean;
13929
13991
  onSurveyValueChanged(newValue: any): void;
13930
13992
  protected onVisibleChoicesChanged: () => void;
13931
13993
  localeChanged: () => void;
@@ -14117,6 +14179,7 @@ declare module "question_rating" {
14117
14179
  import { LocalizableString } from "localizablestring";
14118
14180
  import { Base } from "base";
14119
14181
  import { DropdownListModel } from "dropdownListModel";
14182
+ import { ISurveyImpl } from "base-interfaces";
14120
14183
  export class RenderedRatingItem extends Base {
14121
14184
  itemValue: ItemValue;
14122
14185
  private locString;
@@ -14135,9 +14198,7 @@ declare module "question_rating" {
14135
14198
  */
14136
14199
  export class QuestionRatingModel extends Question {
14137
14200
  constructor(name: string);
14138
- private jsonObj;
14139
14201
  private setIconsToRateValues;
14140
- startLoadingFromJson(jsonObj: any): void;
14141
14202
  endLoadingFromJson(): void;
14142
14203
  private _syncPropertiesChanging;
14143
14204
  private registerSychProperties;
@@ -14146,6 +14207,9 @@ declare module "question_rating" {
14146
14207
  private updateRateMin;
14147
14208
  private updateRateCount;
14148
14209
  initPropertyDependencies(): void;
14210
+ inputHasValue: boolean;
14211
+ get showSelectedItemLocText(): boolean;
14212
+ get selectedItemLocText(): LocalizableString;
14149
14213
  autoGenerate: boolean;
14150
14214
  /**
14151
14215
  * A list of rate values.
@@ -14216,13 +14280,14 @@ declare module "question_rating" {
14216
14280
  * [View Demo](/form-library/examples/rating-scale/ (linkStyle))
14217
14281
  */
14218
14282
  rateCount: number;
14283
+ private static colorsCalculated;
14219
14284
  private static badColor;
14220
14285
  private static normalColor;
14221
14286
  private static goodColor;
14222
14287
  private static badColorLight;
14223
14288
  private static normalColorLight;
14224
14289
  private static goodColorLight;
14225
- private initColors;
14290
+ private updateColors;
14226
14291
  protected getDisplayValueCore(keysAsText: boolean, value: any): any;
14227
14292
  get visibleRateValues(): ItemValue[];
14228
14293
  itemValuePropertyChanged(item: ItemValue, name: string, oldValue: any, newValue: any): void;
@@ -14365,6 +14430,7 @@ declare module "question_rating" {
14365
14430
  get dropdownListModel(): DropdownListModel;
14366
14431
  protected updateCssClasses(res: any, css: any): void;
14367
14432
  protected calcCssClasses(css: any): any;
14433
+ setSurveyImpl(value: ISurveyImpl, isLight?: boolean): void;
14368
14434
  dispose(): void;
14369
14435
  }
14370
14436
  }
@@ -14556,6 +14622,7 @@ declare module "question_image" {
14556
14622
  }
14557
14623
  declare module "question_signaturepad" {
14558
14624
  import { Question } from "question";
14625
+ import { ISurveyImpl } from "base-interfaces";
14559
14626
  /**
14560
14627
  * A class that describes the Signature Page question type.
14561
14628
  *
@@ -14564,12 +14631,14 @@ declare module "question_signaturepad" {
14564
14631
  export class QuestionSignaturePadModel extends Question {
14565
14632
  isDrawingValue: boolean;
14566
14633
  private getPenColorFromTheme;
14634
+ private updateColors;
14567
14635
  protected getCssRoot(cssClasses: any): string;
14568
14636
  protected updateValue(): void;
14569
14637
  constructor(name: string);
14570
14638
  getType(): string;
14571
14639
  afterRenderQuestionElement(el: HTMLElement): void;
14572
14640
  beforeDestroyQuestionElement(el: HTMLElement): void;
14641
+ setSurveyImpl(value: ISurveyImpl, isLight?: boolean): void;
14573
14642
  initSignaturePad(el: HTMLElement): void;
14574
14643
  destroySignaturePad(el: HTMLElement): void;
14575
14644
  /**
@@ -15167,6 +15236,7 @@ declare module "popup-view-model" {
15167
15236
  dispose(): void;
15168
15237
  initializePopupContainer(): void;
15169
15238
  setComponentElement(componentRoot: HTMLElement, targetElement?: HTMLElement | null): void;
15239
+ resetComponentElement(): void;
15170
15240
  protected preventScrollOuside(event: any, deltaY: number): void;
15171
15241
  }
15172
15242
  }
@@ -15280,7 +15350,10 @@ declare module "question_buttongroup" {
15280
15350
  }
15281
15351
  declare module "entries/chunks/model" {
15282
15352
  export var Version: string;
15353
+ export var ReleaseDate: string;
15283
15354
  export function checkLibraryVersion(ver: string, libraryName: string): void;
15355
+ export function setLicenseKey(key: string): void;
15356
+ export function hasLicense(index: number): boolean;
15284
15357
  export { settings, ISurveyEnvironment } from "settings";
15285
15358
  export { Helpers, HashTable } from "helpers";
15286
15359
  export { AnswerCountValidator, EmailValidator, NumericValidator, RegexValidator, SurveyValidator, TextValidator, ValidatorResult, ExpressionValidator, ValidatorRunner } from "validator";
@@ -15740,6 +15813,7 @@ declare module "defaultCss/cssstandard" {
15740
15813
  };
15741
15814
  };
15742
15815
  variables: {
15816
+ mobileWidth: string;
15743
15817
  themeMark: string;
15744
15818
  };
15745
15819
  tagbox: {
@@ -16201,6 +16275,7 @@ declare module "defaultCss/cssmodern" {
16201
16275
  };
16202
16276
  };
16203
16277
  variables: {
16278
+ mobileWidth: string;
16204
16279
  themeMark: string;
16205
16280
  };
16206
16281
  };
@@ -17805,18 +17880,23 @@ declare module "localization/arabic" {
17805
17880
  noneItemText: string;
17806
17881
  selectAllItemText: string;
17807
17882
  progressText: string;
17883
+ indexText: string;
17808
17884
  panelDynamicProgressText: string;
17885
+ panelDynamicTabTextFormat: string;
17809
17886
  questionsProgressText: string;
17810
17887
  emptySurvey: string;
17811
17888
  completingSurvey: string;
17812
17889
  completingSurveyBefore: string;
17813
17890
  loadingSurvey: string;
17814
17891
  placeholder: string;
17892
+ ratingOptionsCaption: string;
17815
17893
  value: string;
17816
17894
  requiredError: string;
17817
17895
  requiredErrorInPanel: string;
17818
17896
  requiredInAllRowsError: string;
17819
17897
  numericError: string;
17898
+ minError: string;
17899
+ maxError: string;
17820
17900
  textMinLength: string;
17821
17901
  textMaxLength: string;
17822
17902
  textMinMaxLength: string;
@@ -17836,16 +17916,19 @@ declare module "localization/arabic" {
17836
17916
  loadingFile: string;
17837
17917
  chooseFile: string;
17838
17918
  noFileChosen: string;
17919
+ fileDragAreaPlaceholder: string;
17839
17920
  confirmDelete: string;
17840
17921
  keyDuplicationError: string;
17841
17922
  addColumn: string;
17842
17923
  addRow: string;
17843
17924
  removeRow: string;
17925
+ emptyRowsText: string;
17844
17926
  addPanel: string;
17845
17927
  removePanel: string;
17846
17928
  choices_Item: string;
17847
17929
  matrix_column: string;
17848
17930
  matrix_row: string;
17931
+ multipletext_itemname: string;
17849
17932
  savingData: string;
17850
17933
  savingDataError: string;
17851
17934
  savingDataSuccess: string;
@@ -17859,6 +17942,7 @@ declare module "localization/arabic" {
17859
17942
  timerLimitPage: string;
17860
17943
  timerLimitSurvey: string;
17861
17944
  clearCaption: string;
17945
+ signaturePlaceHolder: string;
17862
17946
  chooseFileCaption: string;
17863
17947
  removeFileCaption: string;
17864
17948
  booleanCheckedLabel: string;
@@ -17866,6 +17950,16 @@ declare module "localization/arabic" {
17866
17950
  confirmRemoveFile: string;
17867
17951
  confirmRemoveAllFiles: string;
17868
17952
  questionTitlePatternText: string;
17953
+ modalCancelButtonText: string;
17954
+ modalApplyButtonText: string;
17955
+ filterStringPlaceholder: string;
17956
+ emptyMessage: string;
17957
+ noEntriesText: string;
17958
+ noEntriesReadonlyText: string;
17959
+ more: string;
17960
+ tagboxDoneButtonCaption: string;
17961
+ selectToRankEmptyRankedAreaText: string;
17962
+ selectToRankEmptyUnrankedAreaText: string;
17869
17963
  };
17870
17964
  }
17871
17965
  declare module "localization/basque" {
@@ -17880,13 +17974,16 @@ declare module "localization/basque" {
17880
17974
  noneItemText: string;
17881
17975
  selectAllItemText: string;
17882
17976
  progressText: string;
17977
+ indexText: string;
17883
17978
  panelDynamicProgressText: string;
17979
+ panelDynamicTabTextFormat: string;
17884
17980
  questionsProgressText: string;
17885
17981
  emptySurvey: string;
17886
17982
  completingSurvey: string;
17887
17983
  completingSurveyBefore: string;
17888
17984
  loadingSurvey: string;
17889
17985
  placeholder: string;
17986
+ ratingOptionsCaption: string;
17890
17987
  value: string;
17891
17988
  requiredError: string;
17892
17989
  requiredErrorInPanel: string;
@@ -17913,6 +18010,7 @@ declare module "localization/basque" {
17913
18010
  loadingFile: string;
17914
18011
  chooseFile: string;
17915
18012
  noFileChosen: string;
18013
+ fileDragAreaPlaceholder: string;
17916
18014
  confirmDelete: string;
17917
18015
  keyDuplicationError: string;
17918
18016
  addColumn: string;
@@ -17948,6 +18046,14 @@ declare module "localization/basque" {
17948
18046
  questionTitlePatternText: string;
17949
18047
  modalCancelButtonText: string;
17950
18048
  modalApplyButtonText: string;
18049
+ filterStringPlaceholder: string;
18050
+ emptyMessage: string;
18051
+ noEntriesText: string;
18052
+ noEntriesReadonlyText: string;
18053
+ more: string;
18054
+ tagboxDoneButtonCaption: string;
18055
+ selectToRankEmptyRankedAreaText: string;
18056
+ selectToRankEmptyUnrankedAreaText: string;
17951
18057
  };
17952
18058
  }
17953
18059
  declare module "localization/bulgarian" {
@@ -17962,18 +18068,23 @@ declare module "localization/bulgarian" {
17962
18068
  noneItemText: string;
17963
18069
  selectAllItemText: string;
17964
18070
  progressText: string;
18071
+ indexText: string;
17965
18072
  panelDynamicProgressText: string;
18073
+ panelDynamicTabTextFormat: string;
17966
18074
  questionsProgressText: string;
17967
18075
  emptySurvey: string;
17968
18076
  completingSurvey: string;
17969
18077
  completingSurveyBefore: string;
17970
18078
  loadingSurvey: string;
17971
18079
  placeholder: string;
18080
+ ratingOptionsCaption: string;
17972
18081
  value: string;
17973
18082
  requiredError: string;
17974
18083
  requiredErrorInPanel: string;
17975
18084
  requiredInAllRowsError: string;
17976
18085
  numericError: string;
18086
+ minError: string;
18087
+ maxError: string;
17977
18088
  textMinLength: string;
17978
18089
  textMaxLength: string;
17979
18090
  textMinMaxLength: string;
@@ -17993,16 +18104,19 @@ declare module "localization/bulgarian" {
17993
18104
  loadingFile: string;
17994
18105
  chooseFile: string;
17995
18106
  noFileChosen: string;
18107
+ fileDragAreaPlaceholder: string;
17996
18108
  confirmDelete: string;
17997
18109
  keyDuplicationError: string;
17998
18110
  addColumn: string;
17999
18111
  addRow: string;
18000
18112
  removeRow: string;
18113
+ emptyRowsText: string;
18001
18114
  addPanel: string;
18002
18115
  removePanel: string;
18003
18116
  choices_Item: string;
18004
18117
  matrix_column: string;
18005
18118
  matrix_row: string;
18119
+ multipletext_itemname: string;
18006
18120
  savingData: string;
18007
18121
  savingDataError: string;
18008
18122
  savingDataSuccess: string;
@@ -18016,6 +18130,7 @@ declare module "localization/bulgarian" {
18016
18130
  timerLimitPage: string;
18017
18131
  timerLimitSurvey: string;
18018
18132
  clearCaption: string;
18133
+ signaturePlaceHolder: string;
18019
18134
  chooseFileCaption: string;
18020
18135
  removeFileCaption: string;
18021
18136
  booleanCheckedLabel: string;
@@ -18023,6 +18138,16 @@ declare module "localization/bulgarian" {
18023
18138
  confirmRemoveFile: string;
18024
18139
  confirmRemoveAllFiles: string;
18025
18140
  questionTitlePatternText: string;
18141
+ modalCancelButtonText: string;
18142
+ modalApplyButtonText: string;
18143
+ filterStringPlaceholder: string;
18144
+ emptyMessage: string;
18145
+ noEntriesText: string;
18146
+ noEntriesReadonlyText: string;
18147
+ more: string;
18148
+ tagboxDoneButtonCaption: string;
18149
+ selectToRankEmptyRankedAreaText: string;
18150
+ selectToRankEmptyUnrankedAreaText: string;
18026
18151
  };
18027
18152
  }
18028
18153
  declare module "localization/catalan" {
@@ -18030,15 +18155,30 @@ declare module "localization/catalan" {
18030
18155
  pagePrevText: string;
18031
18156
  pageNextText: string;
18032
18157
  completeText: string;
18158
+ previewText: string;
18159
+ editText: string;
18160
+ startSurveyText: string;
18033
18161
  otherItemText: string;
18162
+ noneItemText: string;
18163
+ selectAllItemText: string;
18034
18164
  progressText: string;
18165
+ indexText: string;
18166
+ panelDynamicProgressText: string;
18167
+ panelDynamicTabTextFormat: string;
18168
+ questionsProgressText: string;
18035
18169
  emptySurvey: string;
18036
18170
  completingSurvey: string;
18171
+ completingSurveyBefore: string;
18037
18172
  loadingSurvey: string;
18038
18173
  placeholder: string;
18174
+ ratingOptionsCaption: string;
18175
+ value: string;
18039
18176
  requiredError: string;
18177
+ requiredErrorInPanel: string;
18040
18178
  requiredInAllRowsError: string;
18041
18179
  numericError: string;
18180
+ minError: string;
18181
+ maxError: string;
18042
18182
  textMinLength: string;
18043
18183
  textMaxLength: string;
18044
18184
  textMinMaxLength: string;
@@ -18049,15 +18189,59 @@ declare module "localization/catalan" {
18049
18189
  numericMin: string;
18050
18190
  numericMax: string;
18051
18191
  invalidEmail: string;
18192
+ invalidExpression: string;
18052
18193
  urlRequestError: string;
18053
18194
  urlGetChoicesError: string;
18054
18195
  exceedMaxSize: string;
18055
18196
  otherRequiredError: string;
18056
18197
  uploadingFile: string;
18198
+ loadingFile: string;
18199
+ chooseFile: string;
18200
+ noFileChosen: string;
18201
+ fileDragAreaPlaceholder: string;
18202
+ confirmDelete: string;
18203
+ keyDuplicationError: string;
18204
+ addColumn: string;
18057
18205
  addRow: string;
18058
18206
  removeRow: string;
18207
+ emptyRowsText: string;
18208
+ addPanel: string;
18209
+ removePanel: string;
18210
+ choices_Item: string;
18059
18211
  matrix_column: string;
18060
18212
  matrix_row: string;
18213
+ multipletext_itemname: string;
18214
+ savingData: string;
18215
+ savingDataError: string;
18216
+ savingDataSuccess: string;
18217
+ saveAgainButton: string;
18218
+ timerMin: string;
18219
+ timerSec: string;
18220
+ timerSpentAll: string;
18221
+ timerSpentPage: string;
18222
+ timerSpentSurvey: string;
18223
+ timerLimitAll: string;
18224
+ timerLimitPage: string;
18225
+ timerLimitSurvey: string;
18226
+ clearCaption: string;
18227
+ signaturePlaceHolder: string;
18228
+ chooseFileCaption: string;
18229
+ removeFileCaption: string;
18230
+ booleanCheckedLabel: string;
18231
+ booleanUncheckedLabel: string;
18232
+ confirmRemoveFile: string;
18233
+ confirmRemoveAllFiles: string;
18234
+ questionTitlePatternText: string;
18235
+ modalCancelButtonText: string;
18236
+ modalApplyButtonText: string;
18237
+ filterStringPlaceholder: string;
18238
+ emptyMessage: string;
18239
+ noEntriesText: string;
18240
+ noEntriesReadonlyText: string;
18241
+ more: string;
18242
+ tagboxDoneButtonCaption: string;
18243
+ selectToRankEmptyRankedAreaText: string;
18244
+ selectToRankEmptyUnrankedAreaText: string;
18061
18245
  };
18062
18246
  }
18063
18247
  declare module "localization/croatian" {
@@ -18072,18 +18256,23 @@ declare module "localization/croatian" {
18072
18256
  noneItemText: string;
18073
18257
  selectAllItemText: string;
18074
18258
  progressText: string;
18259
+ indexText: string;
18075
18260
  panelDynamicProgressText: string;
18261
+ panelDynamicTabTextFormat: string;
18076
18262
  questionsProgressText: string;
18077
18263
  emptySurvey: string;
18078
18264
  completingSurvey: string;
18079
18265
  completingSurveyBefore: string;
18080
18266
  loadingSurvey: string;
18081
18267
  placeholder: string;
18268
+ ratingOptionsCaption: string;
18082
18269
  value: string;
18083
18270
  requiredError: string;
18084
18271
  requiredErrorInPanel: string;
18085
18272
  requiredInAllRowsError: string;
18086
18273
  numericError: string;
18274
+ minError: string;
18275
+ maxError: string;
18087
18276
  textMinLength: string;
18088
18277
  textMaxLength: string;
18089
18278
  textMinMaxLength: string;
@@ -18103,16 +18292,19 @@ declare module "localization/croatian" {
18103
18292
  loadingFile: string;
18104
18293
  chooseFile: string;
18105
18294
  noFileChosen: string;
18295
+ fileDragAreaPlaceholder: string;
18106
18296
  confirmDelete: string;
18107
18297
  keyDuplicationError: string;
18108
18298
  addColumn: string;
18109
18299
  addRow: string;
18110
18300
  removeRow: string;
18301
+ emptyRowsText: string;
18111
18302
  addPanel: string;
18112
18303
  removePanel: string;
18113
18304
  choices_Item: string;
18114
18305
  matrix_column: string;
18115
18306
  matrix_row: string;
18307
+ multipletext_itemname: string;
18116
18308
  savingData: string;
18117
18309
  savingDataError: string;
18118
18310
  savingDataSuccess: string;
@@ -18126,6 +18318,7 @@ declare module "localization/croatian" {
18126
18318
  timerLimitPage: string;
18127
18319
  timerLimitSurvey: string;
18128
18320
  clearCaption: string;
18321
+ signaturePlaceHolder: string;
18129
18322
  chooseFileCaption: string;
18130
18323
  removeFileCaption: string;
18131
18324
  booleanCheckedLabel: string;
@@ -18135,6 +18328,14 @@ declare module "localization/croatian" {
18135
18328
  questionTitlePatternText: string;
18136
18329
  modalCancelButtonText: string;
18137
18330
  modalApplyButtonText: string;
18331
+ filterStringPlaceholder: string;
18332
+ emptyMessage: string;
18333
+ noEntriesText: string;
18334
+ noEntriesReadonlyText: string;
18335
+ more: string;
18336
+ tagboxDoneButtonCaption: string;
18337
+ selectToRankEmptyRankedAreaText: string;
18338
+ selectToRankEmptyUnrankedAreaText: string;
18138
18339
  };
18139
18340
  }
18140
18341
  declare module "localization/czech" {
@@ -18149,18 +18350,23 @@ declare module "localization/czech" {
18149
18350
  noneItemText: string;
18150
18351
  selectAllItemText: string;
18151
18352
  progressText: string;
18353
+ indexText: string;
18152
18354
  panelDynamicProgressText: string;
18355
+ panelDynamicTabTextFormat: string;
18153
18356
  questionsProgressText: string;
18154
18357
  emptySurvey: string;
18155
18358
  completingSurvey: string;
18156
18359
  completingSurveyBefore: string;
18157
18360
  loadingSurvey: string;
18158
18361
  placeholder: string;
18362
+ ratingOptionsCaption: string;
18159
18363
  value: string;
18160
18364
  requiredError: string;
18161
18365
  requiredErrorInPanel: string;
18162
18366
  requiredInAllRowsError: string;
18163
18367
  numericError: string;
18368
+ minError: string;
18369
+ maxError: string;
18164
18370
  textMinLength: string;
18165
18371
  textMaxLength: string;
18166
18372
  textMinMaxLength: string;
@@ -18180,16 +18386,19 @@ declare module "localization/czech" {
18180
18386
  loadingFile: string;
18181
18387
  chooseFile: string;
18182
18388
  noFileChosen: string;
18389
+ fileDragAreaPlaceholder: string;
18183
18390
  confirmDelete: string;
18184
18391
  keyDuplicationError: string;
18185
18392
  addColumn: string;
18186
18393
  addRow: string;
18187
18394
  removeRow: string;
18395
+ emptyRowsText: string;
18188
18396
  addPanel: string;
18189
18397
  removePanel: string;
18190
18398
  choices_Item: string;
18191
18399
  matrix_column: string;
18192
18400
  matrix_row: string;
18401
+ multipletext_itemname: string;
18193
18402
  savingData: string;
18194
18403
  savingDataError: string;
18195
18404
  savingDataSuccess: string;
@@ -18203,6 +18412,7 @@ declare module "localization/czech" {
18203
18412
  timerLimitPage: string;
18204
18413
  timerLimitSurvey: string;
18205
18414
  clearCaption: string;
18415
+ signaturePlaceHolder: string;
18206
18416
  chooseFileCaption: string;
18207
18417
  removeFileCaption: string;
18208
18418
  booleanCheckedLabel: string;
@@ -18210,6 +18420,16 @@ declare module "localization/czech" {
18210
18420
  confirmRemoveFile: string;
18211
18421
  confirmRemoveAllFiles: string;
18212
18422
  questionTitlePatternText: string;
18423
+ modalCancelButtonText: string;
18424
+ modalApplyButtonText: string;
18425
+ filterStringPlaceholder: string;
18426
+ emptyMessage: string;
18427
+ noEntriesText: string;
18428
+ noEntriesReadonlyText: string;
18429
+ more: string;
18430
+ tagboxDoneButtonCaption: string;
18431
+ selectToRankEmptyRankedAreaText: string;
18432
+ selectToRankEmptyUnrankedAreaText: string;
18213
18433
  };
18214
18434
  }
18215
18435
  declare module "localization/danish" {
@@ -18224,18 +18444,23 @@ declare module "localization/danish" {
18224
18444
  noneItemText: string;
18225
18445
  selectAllItemText: string;
18226
18446
  progressText: string;
18447
+ indexText: string;
18227
18448
  panelDynamicProgressText: string;
18449
+ panelDynamicTabTextFormat: string;
18228
18450
  questionsProgressText: string;
18229
18451
  emptySurvey: string;
18230
18452
  completingSurvey: string;
18231
18453
  completingSurveyBefore: string;
18232
18454
  loadingSurvey: string;
18233
18455
  placeholder: string;
18456
+ ratingOptionsCaption: string;
18234
18457
  value: string;
18235
18458
  requiredError: string;
18236
18459
  requiredErrorInPanel: string;
18237
18460
  requiredInAllRowsError: string;
18238
18461
  numericError: string;
18462
+ minError: string;
18463
+ maxError: string;
18239
18464
  textMinLength: string;
18240
18465
  textMaxLength: string;
18241
18466
  textMinMaxLength: string;
@@ -18255,16 +18480,19 @@ declare module "localization/danish" {
18255
18480
  loadingFile: string;
18256
18481
  chooseFile: string;
18257
18482
  noFileChosen: string;
18483
+ fileDragAreaPlaceholder: string;
18258
18484
  confirmDelete: string;
18259
18485
  keyDuplicationError: string;
18260
18486
  addColumn: string;
18261
18487
  addRow: string;
18262
18488
  removeRow: string;
18489
+ emptyRowsText: string;
18263
18490
  addPanel: string;
18264
18491
  removePanel: string;
18265
18492
  choices_Item: string;
18266
18493
  matrix_column: string;
18267
18494
  matrix_row: string;
18495
+ multipletext_itemname: string;
18268
18496
  savingData: string;
18269
18497
  savingDataError: string;
18270
18498
  savingDataSuccess: string;
@@ -18278,6 +18506,7 @@ declare module "localization/danish" {
18278
18506
  timerLimitPage: string;
18279
18507
  timerLimitSurvey: string;
18280
18508
  clearCaption: string;
18509
+ signaturePlaceHolder: string;
18281
18510
  chooseFileCaption: string;
18282
18511
  removeFileCaption: string;
18283
18512
  booleanCheckedLabel: string;
@@ -18285,6 +18514,16 @@ declare module "localization/danish" {
18285
18514
  confirmRemoveFile: string;
18286
18515
  confirmRemoveAllFiles: string;
18287
18516
  questionTitlePatternText: string;
18517
+ modalCancelButtonText: string;
18518
+ modalApplyButtonText: string;
18519
+ filterStringPlaceholder: string;
18520
+ emptyMessage: string;
18521
+ noEntriesText: string;
18522
+ noEntriesReadonlyText: string;
18523
+ more: string;
18524
+ tagboxDoneButtonCaption: string;
18525
+ selectToRankEmptyRankedAreaText: string;
18526
+ selectToRankEmptyUnrankedAreaText: string;
18288
18527
  };
18289
18528
  }
18290
18529
  declare module "localization/dutch" {
@@ -18299,18 +18538,23 @@ declare module "localization/dutch" {
18299
18538
  noneItemText: string;
18300
18539
  selectAllItemText: string;
18301
18540
  progressText: string;
18541
+ indexText: string;
18302
18542
  panelDynamicProgressText: string;
18543
+ panelDynamicTabTextFormat: string;
18303
18544
  questionsProgressText: string;
18304
18545
  emptySurvey: string;
18305
18546
  completingSurvey: string;
18306
18547
  completingSurveyBefore: string;
18307
18548
  loadingSurvey: string;
18308
18549
  placeholder: string;
18550
+ ratingOptionsCaption: string;
18309
18551
  value: string;
18310
18552
  requiredError: string;
18311
18553
  requiredErrorInPanel: string;
18312
18554
  requiredInAllRowsError: string;
18313
18555
  numericError: string;
18556
+ minError: string;
18557
+ maxError: string;
18314
18558
  textMinLength: string;
18315
18559
  textMaxLength: string;
18316
18560
  textMinMaxLength: string;
@@ -18336,11 +18580,13 @@ declare module "localization/dutch" {
18336
18580
  addColumn: string;
18337
18581
  addRow: string;
18338
18582
  removeRow: string;
18583
+ emptyRowsText: string;
18339
18584
  addPanel: string;
18340
18585
  removePanel: string;
18341
18586
  choices_Item: string;
18342
18587
  matrix_column: string;
18343
18588
  matrix_row: string;
18589
+ multipletext_itemname: string;
18344
18590
  savingData: string;
18345
18591
  savingDataError: string;
18346
18592
  savingDataSuccess: string;
@@ -18362,6 +18608,16 @@ declare module "localization/dutch" {
18362
18608
  confirmRemoveFile: string;
18363
18609
  confirmRemoveAllFiles: string;
18364
18610
  questionTitlePatternText: string;
18611
+ modalCancelButtonText: string;
18612
+ modalApplyButtonText: string;
18613
+ filterStringPlaceholder: string;
18614
+ emptyMessage: string;
18615
+ noEntriesText: string;
18616
+ noEntriesReadonlyText: string;
18617
+ more: string;
18618
+ tagboxDoneButtonCaption: string;
18619
+ selectToRankEmptyRankedAreaText: string;
18620
+ selectToRankEmptyUnrankedAreaText: string;
18365
18621
  };
18366
18622
  }
18367
18623
  declare module "localization/nl-BE" { }
@@ -18377,18 +18633,23 @@ declare module "localization/estonian" {
18377
18633
  noneItemText: string;
18378
18634
  selectAllItemText: string;
18379
18635
  progressText: string;
18636
+ indexText: string;
18380
18637
  panelDynamicProgressText: string;
18638
+ panelDynamicTabTextFormat: string;
18381
18639
  questionsProgressText: string;
18382
18640
  emptySurvey: string;
18383
18641
  completingSurvey: string;
18384
18642
  completingSurveyBefore: string;
18385
18643
  loadingSurvey: string;
18386
18644
  placeholder: string;
18645
+ ratingOptionsCaption: string;
18387
18646
  value: string;
18388
18647
  requiredError: string;
18389
18648
  requiredErrorInPanel: string;
18390
18649
  requiredInAllRowsError: string;
18391
18650
  numericError: string;
18651
+ minError: string;
18652
+ maxError: string;
18392
18653
  textMinLength: string;
18393
18654
  textMaxLength: string;
18394
18655
  textMinMaxLength: string;
@@ -18408,16 +18669,19 @@ declare module "localization/estonian" {
18408
18669
  loadingFile: string;
18409
18670
  chooseFile: string;
18410
18671
  noFileChosen: string;
18672
+ fileDragAreaPlaceholder: string;
18411
18673
  confirmDelete: string;
18412
18674
  keyDuplicationError: string;
18413
18675
  addColumn: string;
18414
18676
  addRow: string;
18415
18677
  removeRow: string;
18678
+ emptyRowsText: string;
18416
18679
  addPanel: string;
18417
18680
  removePanel: string;
18418
18681
  choices_Item: string;
18419
18682
  matrix_column: string;
18420
18683
  matrix_row: string;
18684
+ multipletext_itemname: string;
18421
18685
  savingData: string;
18422
18686
  savingDataError: string;
18423
18687
  savingDataSuccess: string;
@@ -18431,6 +18695,7 @@ declare module "localization/estonian" {
18431
18695
  timerLimitPage: string;
18432
18696
  timerLimitSurvey: string;
18433
18697
  clearCaption: string;
18698
+ signaturePlaceHolder: string;
18434
18699
  chooseFileCaption: string;
18435
18700
  removeFileCaption: string;
18436
18701
  booleanCheckedLabel: string;
@@ -18438,6 +18703,16 @@ declare module "localization/estonian" {
18438
18703
  confirmRemoveFile: string;
18439
18704
  confirmRemoveAllFiles: string;
18440
18705
  questionTitlePatternText: string;
18706
+ modalCancelButtonText: string;
18707
+ modalApplyButtonText: string;
18708
+ filterStringPlaceholder: string;
18709
+ emptyMessage: string;
18710
+ noEntriesText: string;
18711
+ noEntriesReadonlyText: string;
18712
+ more: string;
18713
+ tagboxDoneButtonCaption: string;
18714
+ selectToRankEmptyRankedAreaText: string;
18715
+ selectToRankEmptyUnrankedAreaText: string;
18441
18716
  };
18442
18717
  }
18443
18718
  declare module "localization/finnish" {
@@ -18454,6 +18729,7 @@ declare module "localization/finnish" {
18454
18729
  progressText: string;
18455
18730
  indexText: string;
18456
18731
  panelDynamicProgressText: string;
18732
+ panelDynamicTabTextFormat: string;
18457
18733
  questionsProgressText: string;
18458
18734
  emptySurvey: string;
18459
18735
  completingSurvey: string;
@@ -18524,7 +18800,13 @@ declare module "localization/finnish" {
18524
18800
  modalCancelButtonText: string;
18525
18801
  modalApplyButtonText: string;
18526
18802
  filterStringPlaceholder: string;
18803
+ emptyMessage: string;
18527
18804
  noEntriesText: string;
18805
+ noEntriesReadonlyText: string;
18806
+ more: string;
18807
+ tagboxDoneButtonCaption: string;
18808
+ selectToRankEmptyRankedAreaText: string;
18809
+ selectToRankEmptyUnrankedAreaText: string;
18528
18810
  };
18529
18811
  }
18530
18812
  declare module "localization/french" {
@@ -18541,6 +18823,7 @@ declare module "localization/french" {
18541
18823
  progressText: string;
18542
18824
  indexText: string;
18543
18825
  panelDynamicProgressText: string;
18826
+ panelDynamicTabTextFormat: string;
18544
18827
  questionsProgressText: string;
18545
18828
  emptySurvey: string;
18546
18829
  completingSurvey: string;
@@ -18611,7 +18894,13 @@ declare module "localization/french" {
18611
18894
  modalCancelButtonText: string;
18612
18895
  modalApplyButtonText: string;
18613
18896
  filterStringPlaceholder: string;
18897
+ emptyMessage: string;
18614
18898
  noEntriesText: string;
18899
+ noEntriesReadonlyText: string;
18900
+ more: string;
18901
+ tagboxDoneButtonCaption: string;
18902
+ selectToRankEmptyRankedAreaText: string;
18903
+ selectToRankEmptyUnrankedAreaText: string;
18615
18904
  };
18616
18905
  }
18617
18906
  declare module "localization/georgian" {
@@ -18619,21 +18908,93 @@ declare module "localization/georgian" {
18619
18908
  pagePrevText: string;
18620
18909
  pageNextText: string;
18621
18910
  completeText: string;
18911
+ previewText: string;
18912
+ editText: string;
18913
+ startSurveyText: string;
18622
18914
  otherItemText: string;
18915
+ noneItemText: string;
18916
+ selectAllItemText: string;
18623
18917
  progressText: string;
18918
+ indexText: string;
18919
+ panelDynamicProgressText: string;
18920
+ panelDynamicTabTextFormat: string;
18921
+ questionsProgressText: string;
18624
18922
  emptySurvey: string;
18625
18923
  completingSurvey: string;
18924
+ completingSurveyBefore: string;
18626
18925
  loadingSurvey: string;
18627
18926
  placeholder: string;
18927
+ ratingOptionsCaption: string;
18928
+ value: string;
18628
18929
  requiredError: string;
18930
+ requiredErrorInPanel: string;
18931
+ requiredInAllRowsError: string;
18629
18932
  numericError: string;
18933
+ minError: string;
18934
+ maxError: string;
18630
18935
  textMinLength: string;
18936
+ textMaxLength: string;
18937
+ textMinMaxLength: string;
18938
+ minRowCountError: string;
18631
18939
  minSelectError: string;
18632
18940
  maxSelectError: string;
18633
18941
  numericMinMax: string;
18634
18942
  numericMin: string;
18635
18943
  numericMax: string;
18636
18944
  invalidEmail: string;
18945
+ invalidExpression: string;
18946
+ urlRequestError: string;
18947
+ urlGetChoicesError: string;
18948
+ exceedMaxSize: string;
18949
+ otherRequiredError: string;
18950
+ uploadingFile: string;
18951
+ loadingFile: string;
18952
+ chooseFile: string;
18953
+ noFileChosen: string;
18954
+ fileDragAreaPlaceholder: string;
18955
+ confirmDelete: string;
18956
+ keyDuplicationError: string;
18957
+ addColumn: string;
18958
+ addRow: string;
18959
+ removeRow: string;
18960
+ emptyRowsText: string;
18961
+ addPanel: string;
18962
+ removePanel: string;
18963
+ choices_Item: string;
18964
+ matrix_column: string;
18965
+ matrix_row: string;
18966
+ multipletext_itemname: string;
18967
+ savingData: string;
18968
+ savingDataError: string;
18969
+ savingDataSuccess: string;
18970
+ saveAgainButton: string;
18971
+ timerMin: string;
18972
+ timerSec: string;
18973
+ timerSpentAll: string;
18974
+ timerSpentPage: string;
18975
+ timerSpentSurvey: string;
18976
+ timerLimitAll: string;
18977
+ timerLimitPage: string;
18978
+ timerLimitSurvey: string;
18979
+ clearCaption: string;
18980
+ signaturePlaceHolder: string;
18981
+ chooseFileCaption: string;
18982
+ removeFileCaption: string;
18983
+ booleanCheckedLabel: string;
18984
+ booleanUncheckedLabel: string;
18985
+ confirmRemoveFile: string;
18986
+ confirmRemoveAllFiles: string;
18987
+ questionTitlePatternText: string;
18988
+ modalCancelButtonText: string;
18989
+ modalApplyButtonText: string;
18990
+ filterStringPlaceholder: string;
18991
+ emptyMessage: string;
18992
+ noEntriesText: string;
18993
+ noEntriesReadonlyText: string;
18994
+ more: string;
18995
+ tagboxDoneButtonCaption: string;
18996
+ selectToRankEmptyRankedAreaText: string;
18997
+ selectToRankEmptyUnrankedAreaText: string;
18637
18998
  };
18638
18999
  }
18639
19000
  declare module "localization/german" {
@@ -18650,6 +19011,7 @@ declare module "localization/german" {
18650
19011
  progressText: string;
18651
19012
  indexText: string;
18652
19013
  panelDynamicProgressText: string;
19014
+ panelDynamicTabTextFormat: string;
18653
19015
  questionsProgressText: string;
18654
19016
  emptySurvey: string;
18655
19017
  completingSurvey: string;
@@ -18722,7 +19084,11 @@ declare module "localization/german" {
18722
19084
  filterStringPlaceholder: string;
18723
19085
  emptyMessage: string;
18724
19086
  noEntriesText: string;
19087
+ noEntriesReadonlyText: string;
18725
19088
  more: string;
19089
+ tagboxDoneButtonCaption: string;
19090
+ selectToRankEmptyRankedAreaText: string;
19091
+ selectToRankEmptyUnrankedAreaText: string;
18726
19092
  };
18727
19093
  }
18728
19094
  declare module "localization/greek" {
@@ -18739,6 +19105,7 @@ declare module "localization/greek" {
18739
19105
  progressText: string;
18740
19106
  indexText: string;
18741
19107
  panelDynamicProgressText: string;
19108
+ panelDynamicTabTextFormat: string;
18742
19109
  questionsProgressText: string;
18743
19110
  emptySurvey: string;
18744
19111
  completingSurvey: string;
@@ -18811,8 +19178,11 @@ declare module "localization/greek" {
18811
19178
  filterStringPlaceholder: string;
18812
19179
  emptyMessage: string;
18813
19180
  noEntriesText: string;
19181
+ noEntriesReadonlyText: string;
18814
19182
  more: string;
18815
19183
  tagboxDoneButtonCaption: string;
19184
+ selectToRankEmptyRankedAreaText: string;
19185
+ selectToRankEmptyUnrankedAreaText: string;
18816
19186
  };
18817
19187
  }
18818
19188
  declare module "localization/hebrew" {
@@ -18827,18 +19197,23 @@ declare module "localization/hebrew" {
18827
19197
  noneItemText: string;
18828
19198
  selectAllItemText: string;
18829
19199
  progressText: string;
19200
+ indexText: string;
18830
19201
  panelDynamicProgressText: string;
19202
+ panelDynamicTabTextFormat: string;
18831
19203
  questionsProgressText: string;
18832
19204
  emptySurvey: string;
18833
19205
  completingSurvey: string;
18834
19206
  completingSurveyBefore: string;
18835
19207
  loadingSurvey: string;
18836
19208
  placeholder: string;
19209
+ ratingOptionsCaption: string;
18837
19210
  value: string;
18838
19211
  requiredError: string;
18839
19212
  requiredErrorInPanel: string;
18840
19213
  requiredInAllRowsError: string;
18841
19214
  numericError: string;
19215
+ minError: string;
19216
+ maxError: string;
18842
19217
  textMinLength: string;
18843
19218
  textMaxLength: string;
18844
19219
  textMinMaxLength: string;
@@ -18858,16 +19233,19 @@ declare module "localization/hebrew" {
18858
19233
  loadingFile: string;
18859
19234
  chooseFile: string;
18860
19235
  noFileChosen: string;
19236
+ fileDragAreaPlaceholder: string;
18861
19237
  confirmDelete: string;
18862
19238
  keyDuplicationError: string;
18863
19239
  addColumn: string;
18864
19240
  addRow: string;
18865
19241
  removeRow: string;
19242
+ emptyRowsText: string;
18866
19243
  addPanel: string;
18867
19244
  removePanel: string;
18868
19245
  choices_Item: string;
18869
19246
  matrix_column: string;
18870
19247
  matrix_row: string;
19248
+ multipletext_itemname: string;
18871
19249
  savingData: string;
18872
19250
  savingDataError: string;
18873
19251
  savingDataSuccess: string;
@@ -18881,6 +19259,7 @@ declare module "localization/hebrew" {
18881
19259
  timerLimitPage: string;
18882
19260
  timerLimitSurvey: string;
18883
19261
  clearCaption: string;
19262
+ signaturePlaceHolder: string;
18884
19263
  chooseFileCaption: string;
18885
19264
  removeFileCaption: string;
18886
19265
  booleanCheckedLabel: string;
@@ -18888,6 +19267,16 @@ declare module "localization/hebrew" {
18888
19267
  confirmRemoveFile: string;
18889
19268
  confirmRemoveAllFiles: string;
18890
19269
  questionTitlePatternText: string;
19270
+ modalCancelButtonText: string;
19271
+ modalApplyButtonText: string;
19272
+ filterStringPlaceholder: string;
19273
+ emptyMessage: string;
19274
+ noEntriesText: string;
19275
+ noEntriesReadonlyText: string;
19276
+ more: string;
19277
+ tagboxDoneButtonCaption: string;
19278
+ selectToRankEmptyRankedAreaText: string;
19279
+ selectToRankEmptyUnrankedAreaText: string;
18891
19280
  };
18892
19281
  }
18893
19282
  declare module "localization/hindi" {
@@ -18899,20 +19288,26 @@ declare module "localization/hindi" {
18899
19288
  editText: string;
18900
19289
  startSurveyText: string;
18901
19290
  otherItemText: string;
19291
+ noneItemText: string;
18902
19292
  selectAllItemText: string;
18903
19293
  progressText: string;
19294
+ indexText: string;
18904
19295
  panelDynamicProgressText: string;
19296
+ panelDynamicTabTextFormat: string;
18905
19297
  questionsProgressText: string;
18906
19298
  emptySurvey: string;
18907
19299
  completingSurvey: string;
18908
19300
  completingSurveyBefore: string;
18909
19301
  loadingSurvey: string;
18910
19302
  placeholder: string;
19303
+ ratingOptionsCaption: string;
18911
19304
  value: string;
18912
19305
  requiredError: string;
18913
19306
  requiredErrorInPanel: string;
18914
19307
  requiredInAllRowsError: string;
18915
19308
  numericError: string;
19309
+ minError: string;
19310
+ maxError: string;
18916
19311
  textMinLength: string;
18917
19312
  textMaxLength: string;
18918
19313
  textMinMaxLength: string;
@@ -18932,16 +19327,19 @@ declare module "localization/hindi" {
18932
19327
  loadingFile: string;
18933
19328
  chooseFile: string;
18934
19329
  noFileChosen: string;
19330
+ fileDragAreaPlaceholder: string;
18935
19331
  confirmDelete: string;
18936
19332
  keyDuplicationError: string;
18937
19333
  addColumn: string;
18938
19334
  addRow: string;
18939
19335
  removeRow: string;
19336
+ emptyRowsText: string;
18940
19337
  addPanel: string;
18941
19338
  removePanel: string;
18942
19339
  choices_Item: string;
18943
19340
  matrix_column: string;
18944
19341
  matrix_row: string;
19342
+ multipletext_itemname: string;
18945
19343
  savingData: string;
18946
19344
  savingDataError: string;
18947
19345
  savingDataSuccess: string;
@@ -18955,6 +19353,7 @@ declare module "localization/hindi" {
18955
19353
  timerLimitPage: string;
18956
19354
  timerLimitSurvey: string;
18957
19355
  clearCaption: string;
19356
+ signaturePlaceHolder: string;
18958
19357
  chooseFileCaption: string;
18959
19358
  removeFileCaption: string;
18960
19359
  booleanCheckedLabel: string;
@@ -18962,6 +19361,16 @@ declare module "localization/hindi" {
18962
19361
  confirmRemoveFile: string;
18963
19362
  confirmRemoveAllFiles: string;
18964
19363
  questionTitlePatternText: string;
19364
+ modalCancelButtonText: string;
19365
+ modalApplyButtonText: string;
19366
+ filterStringPlaceholder: string;
19367
+ emptyMessage: string;
19368
+ noEntriesText: string;
19369
+ noEntriesReadonlyText: string;
19370
+ more: string;
19371
+ tagboxDoneButtonCaption: string;
19372
+ selectToRankEmptyRankedAreaText: string;
19373
+ selectToRankEmptyUnrankedAreaText: string;
18965
19374
  };
18966
19375
  }
18967
19376
  declare module "localization/hungarian" {
@@ -18976,18 +19385,23 @@ declare module "localization/hungarian" {
18976
19385
  noneItemText: string;
18977
19386
  selectAllItemText: string;
18978
19387
  progressText: string;
19388
+ indexText: string;
18979
19389
  panelDynamicProgressText: string;
19390
+ panelDynamicTabTextFormat: string;
18980
19391
  questionsProgressText: string;
18981
19392
  emptySurvey: string;
18982
19393
  completingSurvey: string;
18983
19394
  completingSurveyBefore: string;
18984
19395
  loadingSurvey: string;
18985
19396
  placeholder: string;
19397
+ ratingOptionsCaption: string;
18986
19398
  value: string;
18987
19399
  requiredError: string;
18988
19400
  requiredErrorInPanel: string;
18989
19401
  requiredInAllRowsError: string;
18990
19402
  numericError: string;
19403
+ minError: string;
19404
+ maxError: string;
18991
19405
  textMinLength: string;
18992
19406
  textMaxLength: string;
18993
19407
  textMinMaxLength: string;
@@ -19013,11 +19427,13 @@ declare module "localization/hungarian" {
19013
19427
  addColumn: string;
19014
19428
  addRow: string;
19015
19429
  removeRow: string;
19430
+ emptyRowsText: string;
19016
19431
  addPanel: string;
19017
19432
  removePanel: string;
19018
19433
  choices_Item: string;
19019
19434
  matrix_column: string;
19020
19435
  matrix_row: string;
19436
+ multipletext_itemname: string;
19021
19437
  savingData: string;
19022
19438
  savingDataError: string;
19023
19439
  savingDataSuccess: string;
@@ -19031,6 +19447,7 @@ declare module "localization/hungarian" {
19031
19447
  timerLimitPage: string;
19032
19448
  timerLimitSurvey: string;
19033
19449
  clearCaption: string;
19450
+ signaturePlaceHolder: string;
19034
19451
  chooseFileCaption: string;
19035
19452
  removeFileCaption: string;
19036
19453
  booleanCheckedLabel: string;
@@ -19038,6 +19455,16 @@ declare module "localization/hungarian" {
19038
19455
  confirmRemoveFile: string;
19039
19456
  confirmRemoveAllFiles: string;
19040
19457
  questionTitlePatternText: string;
19458
+ modalCancelButtonText: string;
19459
+ modalApplyButtonText: string;
19460
+ filterStringPlaceholder: string;
19461
+ emptyMessage: string;
19462
+ noEntriesText: string;
19463
+ noEntriesReadonlyText: string;
19464
+ more: string;
19465
+ tagboxDoneButtonCaption: string;
19466
+ selectToRankEmptyRankedAreaText: string;
19467
+ selectToRankEmptyUnrankedAreaText: string;
19041
19468
  };
19042
19469
  }
19043
19470
  declare module "localization/icelandic" {
@@ -19052,18 +19479,23 @@ declare module "localization/icelandic" {
19052
19479
  noneItemText: string;
19053
19480
  selectAllItemText: string;
19054
19481
  progressText: string;
19482
+ indexText: string;
19055
19483
  panelDynamicProgressText: string;
19484
+ panelDynamicTabTextFormat: string;
19056
19485
  questionsProgressText: string;
19057
19486
  emptySurvey: string;
19058
19487
  completingSurvey: string;
19059
19488
  completingSurveyBefore: string;
19060
19489
  loadingSurvey: string;
19061
19490
  placeholder: string;
19491
+ ratingOptionsCaption: string;
19062
19492
  value: string;
19063
19493
  requiredError: string;
19064
19494
  requiredErrorInPanel: string;
19065
19495
  requiredInAllRowsError: string;
19066
19496
  numericError: string;
19497
+ minError: string;
19498
+ maxError: string;
19067
19499
  textMinLength: string;
19068
19500
  textMaxLength: string;
19069
19501
  textMinMaxLength: string;
@@ -19083,16 +19515,19 @@ declare module "localization/icelandic" {
19083
19515
  loadingFile: string;
19084
19516
  chooseFile: string;
19085
19517
  noFileChosen: string;
19518
+ fileDragAreaPlaceholder: string;
19086
19519
  confirmDelete: string;
19087
19520
  keyDuplicationError: string;
19088
19521
  addColumn: string;
19089
19522
  addRow: string;
19090
19523
  removeRow: string;
19524
+ emptyRowsText: string;
19091
19525
  addPanel: string;
19092
19526
  removePanel: string;
19093
19527
  choices_Item: string;
19094
19528
  matrix_column: string;
19095
19529
  matrix_row: string;
19530
+ multipletext_itemname: string;
19096
19531
  savingData: string;
19097
19532
  savingDataError: string;
19098
19533
  savingDataSuccess: string;
@@ -19106,6 +19541,7 @@ declare module "localization/icelandic" {
19106
19541
  timerLimitPage: string;
19107
19542
  timerLimitSurvey: string;
19108
19543
  clearCaption: string;
19544
+ signaturePlaceHolder: string;
19109
19545
  chooseFileCaption: string;
19110
19546
  removeFileCaption: string;
19111
19547
  booleanCheckedLabel: string;
@@ -19113,6 +19549,16 @@ declare module "localization/icelandic" {
19113
19549
  confirmRemoveFile: string;
19114
19550
  confirmRemoveAllFiles: string;
19115
19551
  questionTitlePatternText: string;
19552
+ modalCancelButtonText: string;
19553
+ modalApplyButtonText: string;
19554
+ filterStringPlaceholder: string;
19555
+ emptyMessage: string;
19556
+ noEntriesText: string;
19557
+ noEntriesReadonlyText: string;
19558
+ more: string;
19559
+ tagboxDoneButtonCaption: string;
19560
+ selectToRankEmptyRankedAreaText: string;
19561
+ selectToRankEmptyUnrankedAreaText: string;
19116
19562
  };
19117
19563
  }
19118
19564
  declare module "localization/indonesian" {
@@ -19127,18 +19573,23 @@ declare module "localization/indonesian" {
19127
19573
  noneItemText: string;
19128
19574
  selectAllItemText: string;
19129
19575
  progressText: string;
19576
+ indexText: string;
19130
19577
  panelDynamicProgressText: string;
19578
+ panelDynamicTabTextFormat: string;
19131
19579
  questionsProgressText: string;
19132
19580
  emptySurvey: string;
19133
19581
  completingSurvey: string;
19134
19582
  completingSurveyBefore: string;
19135
19583
  loadingSurvey: string;
19136
19584
  placeholder: string;
19585
+ ratingOptionsCaption: string;
19137
19586
  value: string;
19138
19587
  requiredError: string;
19139
19588
  requiredErrorInPanel: string;
19140
19589
  requiredInAllRowsError: string;
19141
19590
  numericError: string;
19591
+ minError: string;
19592
+ maxError: string;
19142
19593
  textMinLength: string;
19143
19594
  textMaxLength: string;
19144
19595
  textMinMaxLength: string;
@@ -19158,16 +19609,19 @@ declare module "localization/indonesian" {
19158
19609
  loadingFile: string;
19159
19610
  chooseFile: string;
19160
19611
  noFileChosen: string;
19612
+ fileDragAreaPlaceholder: string;
19161
19613
  confirmDelete: string;
19162
19614
  keyDuplicationError: string;
19163
19615
  addColumn: string;
19164
19616
  addRow: string;
19165
19617
  removeRow: string;
19618
+ emptyRowsText: string;
19166
19619
  addPanel: string;
19167
19620
  removePanel: string;
19168
19621
  choices_Item: string;
19169
19622
  matrix_column: string;
19170
19623
  matrix_row: string;
19624
+ multipletext_itemname: string;
19171
19625
  savingData: string;
19172
19626
  savingDataError: string;
19173
19627
  savingDataSuccess: string;
@@ -19181,6 +19635,7 @@ declare module "localization/indonesian" {
19181
19635
  timerLimitPage: string;
19182
19636
  timerLimitSurvey: string;
19183
19637
  clearCaption: string;
19638
+ signaturePlaceHolder: string;
19184
19639
  chooseFileCaption: string;
19185
19640
  removeFileCaption: string;
19186
19641
  booleanCheckedLabel: string;
@@ -19188,6 +19643,16 @@ declare module "localization/indonesian" {
19188
19643
  confirmRemoveFile: string;
19189
19644
  confirmRemoveAllFiles: string;
19190
19645
  questionTitlePatternText: string;
19646
+ modalCancelButtonText: string;
19647
+ modalApplyButtonText: string;
19648
+ filterStringPlaceholder: string;
19649
+ emptyMessage: string;
19650
+ noEntriesText: string;
19651
+ noEntriesReadonlyText: string;
19652
+ more: string;
19653
+ tagboxDoneButtonCaption: string;
19654
+ selectToRankEmptyRankedAreaText: string;
19655
+ selectToRankEmptyUnrankedAreaText: string;
19191
19656
  };
19192
19657
  }
19193
19658
  declare module "localization/italian" {
@@ -19204,6 +19669,7 @@ declare module "localization/italian" {
19204
19669
  progressText: string;
19205
19670
  indexText: string;
19206
19671
  panelDynamicProgressText: string;
19672
+ panelDynamicTabTextFormat: string;
19207
19673
  questionsProgressText: string;
19208
19674
  emptySurvey: string;
19209
19675
  completingSurvey: string;
@@ -19274,7 +19740,13 @@ declare module "localization/italian" {
19274
19740
  modalCancelButtonText: string;
19275
19741
  modalApplyButtonText: string;
19276
19742
  filterStringPlaceholder: string;
19743
+ emptyMessage: string;
19277
19744
  noEntriesText: string;
19745
+ noEntriesReadonlyText: string;
19746
+ more: string;
19747
+ tagboxDoneButtonCaption: string;
19748
+ selectToRankEmptyRankedAreaText: string;
19749
+ selectToRankEmptyUnrankedAreaText: string;
19278
19750
  };
19279
19751
  }
19280
19752
  declare module "localization/japanese" {
@@ -19289,18 +19761,23 @@ declare module "localization/japanese" {
19289
19761
  noneItemText: string;
19290
19762
  selectAllItemText: string;
19291
19763
  progressText: string;
19764
+ indexText: string;
19292
19765
  panelDynamicProgressText: string;
19766
+ panelDynamicTabTextFormat: string;
19293
19767
  questionsProgressText: string;
19294
19768
  emptySurvey: string;
19295
19769
  completingSurvey: string;
19296
19770
  completingSurveyBefore: string;
19297
19771
  loadingSurvey: string;
19298
19772
  placeholder: string;
19773
+ ratingOptionsCaption: string;
19299
19774
  value: string;
19300
19775
  requiredError: string;
19301
19776
  requiredErrorInPanel: string;
19302
19777
  requiredInAllRowsError: string;
19303
19778
  numericError: string;
19779
+ minError: string;
19780
+ maxError: string;
19304
19781
  textMinLength: string;
19305
19782
  textMaxLength: string;
19306
19783
  textMinMaxLength: string;
@@ -19320,16 +19797,19 @@ declare module "localization/japanese" {
19320
19797
  loadingFile: string;
19321
19798
  chooseFile: string;
19322
19799
  noFileChosen: string;
19800
+ fileDragAreaPlaceholder: string;
19323
19801
  confirmDelete: string;
19324
19802
  keyDuplicationError: string;
19325
19803
  addColumn: string;
19326
19804
  addRow: string;
19327
19805
  removeRow: string;
19806
+ emptyRowsText: string;
19328
19807
  addPanel: string;
19329
19808
  removePanel: string;
19330
19809
  choices_Item: string;
19331
19810
  matrix_column: string;
19332
19811
  matrix_row: string;
19812
+ multipletext_itemname: string;
19333
19813
  savingData: string;
19334
19814
  savingDataError: string;
19335
19815
  savingDataSuccess: string;
@@ -19343,6 +19823,7 @@ declare module "localization/japanese" {
19343
19823
  timerLimitPage: string;
19344
19824
  timerLimitSurvey: string;
19345
19825
  clearCaption: string;
19826
+ signaturePlaceHolder: string;
19346
19827
  chooseFileCaption: string;
19347
19828
  removeFileCaption: string;
19348
19829
  booleanCheckedLabel: string;
@@ -19350,6 +19831,16 @@ declare module "localization/japanese" {
19350
19831
  confirmRemoveFile: string;
19351
19832
  confirmRemoveAllFiles: string;
19352
19833
  questionTitlePatternText: string;
19834
+ modalCancelButtonText: string;
19835
+ modalApplyButtonText: string;
19836
+ filterStringPlaceholder: string;
19837
+ emptyMessage: string;
19838
+ noEntriesText: string;
19839
+ noEntriesReadonlyText: string;
19840
+ more: string;
19841
+ tagboxDoneButtonCaption: string;
19842
+ selectToRankEmptyRankedAreaText: string;
19843
+ selectToRankEmptyUnrankedAreaText: string;
19353
19844
  };
19354
19845
  }
19355
19846
  declare module "localization/kazakh" {
@@ -19364,18 +19855,23 @@ declare module "localization/kazakh" {
19364
19855
  noneItemText: string;
19365
19856
  selectAllItemText: string;
19366
19857
  progressText: string;
19858
+ indexText: string;
19367
19859
  panelDynamicProgressText: string;
19860
+ panelDynamicTabTextFormat: string;
19368
19861
  questionsProgressText: string;
19369
19862
  emptySurvey: string;
19370
19863
  completingSurvey: string;
19371
19864
  completingSurveyBefore: string;
19372
19865
  loadingSurvey: string;
19373
19866
  placeholder: string;
19867
+ ratingOptionsCaption: string;
19374
19868
  value: string;
19375
19869
  requiredError: string;
19376
19870
  requiredErrorInPanel: string;
19377
19871
  requiredInAllRowsError: string;
19378
19872
  numericError: string;
19873
+ minError: string;
19874
+ maxError: string;
19379
19875
  textMinLength: string;
19380
19876
  textMaxLength: string;
19381
19877
  textMinMaxLength: string;
@@ -19395,16 +19891,19 @@ declare module "localization/kazakh" {
19395
19891
  loadingFile: string;
19396
19892
  chooseFile: string;
19397
19893
  noFileChosen: string;
19894
+ fileDragAreaPlaceholder: string;
19398
19895
  confirmDelete: string;
19399
19896
  keyDuplicationError: string;
19400
19897
  addColumn: string;
19401
19898
  addRow: string;
19402
19899
  removeRow: string;
19900
+ emptyRowsText: string;
19403
19901
  addPanel: string;
19404
19902
  removePanel: string;
19405
19903
  choices_Item: string;
19406
19904
  matrix_column: string;
19407
19905
  matrix_row: string;
19906
+ multipletext_itemname: string;
19408
19907
  savingData: string;
19409
19908
  savingDataError: string;
19410
19909
  savingDataSuccess: string;
@@ -19418,6 +19917,7 @@ declare module "localization/kazakh" {
19418
19917
  timerLimitPage: string;
19419
19918
  timerLimitSurvey: string;
19420
19919
  clearCaption: string;
19920
+ signaturePlaceHolder: string;
19421
19921
  chooseFileCaption: string;
19422
19922
  removeFileCaption: string;
19423
19923
  booleanCheckedLabel: string;
@@ -19425,6 +19925,16 @@ declare module "localization/kazakh" {
19425
19925
  confirmRemoveFile: string;
19426
19926
  confirmRemoveAllFiles: string;
19427
19927
  questionTitlePatternText: string;
19928
+ modalCancelButtonText: string;
19929
+ modalApplyButtonText: string;
19930
+ filterStringPlaceholder: string;
19931
+ emptyMessage: string;
19932
+ noEntriesText: string;
19933
+ noEntriesReadonlyText: string;
19934
+ more: string;
19935
+ tagboxDoneButtonCaption: string;
19936
+ selectToRankEmptyRankedAreaText: string;
19937
+ selectToRankEmptyUnrankedAreaText: string;
19428
19938
  };
19429
19939
  }
19430
19940
  declare module "localization/korean" {
@@ -19441,6 +19951,7 @@ declare module "localization/korean" {
19441
19951
  progressText: string;
19442
19952
  indexText: string;
19443
19953
  panelDynamicProgressText: string;
19954
+ panelDynamicTabTextFormat: string;
19444
19955
  questionsProgressText: string;
19445
19956
  emptySurvey: string;
19446
19957
  completingSurvey: string;
@@ -19511,8 +20022,13 @@ declare module "localization/korean" {
19511
20022
  modalCancelButtonText: string;
19512
20023
  modalApplyButtonText: string;
19513
20024
  filterStringPlaceholder: string;
20025
+ emptyMessage: string;
19514
20026
  noEntriesText: string;
20027
+ noEntriesReadonlyText: string;
19515
20028
  more: string;
20029
+ tagboxDoneButtonCaption: string;
20030
+ selectToRankEmptyRankedAreaText: string;
20031
+ selectToRankEmptyUnrankedAreaText: string;
19516
20032
  };
19517
20033
  }
19518
20034
  declare module "localization/latvian" {
@@ -19529,6 +20045,7 @@ declare module "localization/latvian" {
19529
20045
  progressText: string;
19530
20046
  indexText: string;
19531
20047
  panelDynamicProgressText: string;
20048
+ panelDynamicTabTextFormat: string;
19532
20049
  questionsProgressText: string;
19533
20050
  emptySurvey: string;
19534
20051
  completingSurvey: string;
@@ -19599,7 +20116,13 @@ declare module "localization/latvian" {
19599
20116
  modalCancelButtonText: string;
19600
20117
  modalApplyButtonText: string;
19601
20118
  filterStringPlaceholder: string;
20119
+ emptyMessage: string;
19602
20120
  noEntriesText: string;
20121
+ noEntriesReadonlyText: string;
20122
+ more: string;
20123
+ tagboxDoneButtonCaption: string;
20124
+ selectToRankEmptyRankedAreaText: string;
20125
+ selectToRankEmptyUnrankedAreaText: string;
19603
20126
  };
19604
20127
  }
19605
20128
  declare module "localization/lithuanian" {
@@ -19614,18 +20137,23 @@ declare module "localization/lithuanian" {
19614
20137
  noneItemText: string;
19615
20138
  selectAllItemText: string;
19616
20139
  progressText: string;
20140
+ indexText: string;
19617
20141
  panelDynamicProgressText: string;
20142
+ panelDynamicTabTextFormat: string;
19618
20143
  questionsProgressText: string;
19619
20144
  emptySurvey: string;
19620
20145
  completingSurvey: string;
19621
20146
  completingSurveyBefore: string;
19622
20147
  loadingSurvey: string;
19623
20148
  placeholder: string;
20149
+ ratingOptionsCaption: string;
19624
20150
  value: string;
19625
20151
  requiredError: string;
19626
20152
  requiredErrorInPanel: string;
19627
20153
  requiredInAllRowsError: string;
19628
20154
  numericError: string;
20155
+ minError: string;
20156
+ maxError: string;
19629
20157
  textMinLength: string;
19630
20158
  textMaxLength: string;
19631
20159
  textMinMaxLength: string;
@@ -19645,16 +20173,19 @@ declare module "localization/lithuanian" {
19645
20173
  loadingFile: string;
19646
20174
  chooseFile: string;
19647
20175
  noFileChosen: string;
20176
+ fileDragAreaPlaceholder: string;
19648
20177
  confirmDelete: string;
19649
20178
  keyDuplicationError: string;
19650
20179
  addColumn: string;
19651
20180
  addRow: string;
19652
20181
  removeRow: string;
20182
+ emptyRowsText: string;
19653
20183
  addPanel: string;
19654
20184
  removePanel: string;
19655
20185
  choices_Item: string;
19656
20186
  matrix_column: string;
19657
20187
  matrix_row: string;
20188
+ multipletext_itemname: string;
19658
20189
  savingData: string;
19659
20190
  savingDataError: string;
19660
20191
  savingDataSuccess: string;
@@ -19668,6 +20199,7 @@ declare module "localization/lithuanian" {
19668
20199
  timerLimitPage: string;
19669
20200
  timerLimitSurvey: string;
19670
20201
  clearCaption: string;
20202
+ signaturePlaceHolder: string;
19671
20203
  chooseFileCaption: string;
19672
20204
  removeFileCaption: string;
19673
20205
  booleanCheckedLabel: string;
@@ -19675,6 +20207,16 @@ declare module "localization/lithuanian" {
19675
20207
  confirmRemoveFile: string;
19676
20208
  confirmRemoveAllFiles: string;
19677
20209
  questionTitlePatternText: string;
20210
+ modalCancelButtonText: string;
20211
+ modalApplyButtonText: string;
20212
+ filterStringPlaceholder: string;
20213
+ emptyMessage: string;
20214
+ noEntriesText: string;
20215
+ noEntriesReadonlyText: string;
20216
+ more: string;
20217
+ tagboxDoneButtonCaption: string;
20218
+ selectToRankEmptyRankedAreaText: string;
20219
+ selectToRankEmptyUnrankedAreaText: string;
19678
20220
  };
19679
20221
  }
19680
20222
  declare module "localization/macedonian" {
@@ -19689,13 +20231,16 @@ declare module "localization/macedonian" {
19689
20231
  noneItemText: string;
19690
20232
  selectAllItemText: string;
19691
20233
  progressText: string;
20234
+ indexText: string;
19692
20235
  panelDynamicProgressText: string;
20236
+ panelDynamicTabTextFormat: string;
19693
20237
  questionsProgressText: string;
19694
20238
  emptySurvey: string;
19695
20239
  completingSurvey: string;
19696
20240
  completingSurveyBefore: string;
19697
20241
  loadingSurvey: string;
19698
20242
  placeholder: string;
20243
+ ratingOptionsCaption: string;
19699
20244
  value: string;
19700
20245
  requiredError: string;
19701
20246
  requiredErrorInPanel: string;
@@ -19734,6 +20279,7 @@ declare module "localization/macedonian" {
19734
20279
  choices_Item: string;
19735
20280
  matrix_column: string;
19736
20281
  matrix_row: string;
20282
+ multipletext_itemname: string;
19737
20283
  savingData: string;
19738
20284
  savingDataError: string;
19739
20285
  savingDataSuccess: string;
@@ -19747,6 +20293,7 @@ declare module "localization/macedonian" {
19747
20293
  timerLimitPage: string;
19748
20294
  timerLimitSurvey: string;
19749
20295
  clearCaption: string;
20296
+ signaturePlaceHolder: string;
19750
20297
  chooseFileCaption: string;
19751
20298
  removeFileCaption: string;
19752
20299
  booleanCheckedLabel: string;
@@ -19756,6 +20303,14 @@ declare module "localization/macedonian" {
19756
20303
  questionTitlePatternText: string;
19757
20304
  modalCancelButtonText: string;
19758
20305
  modalApplyButtonText: string;
20306
+ filterStringPlaceholder: string;
20307
+ emptyMessage: string;
20308
+ noEntriesText: string;
20309
+ noEntriesReadonlyText: string;
20310
+ more: string;
20311
+ tagboxDoneButtonCaption: string;
20312
+ selectToRankEmptyRankedAreaText: string;
20313
+ selectToRankEmptyUnrankedAreaText: string;
19759
20314
  };
19760
20315
  }
19761
20316
  declare module "localization/malay" {
@@ -19770,13 +20325,16 @@ declare module "localization/malay" {
19770
20325
  noneItemText: string;
19771
20326
  selectAllItemText: string;
19772
20327
  progressText: string;
20328
+ indexText: string;
19773
20329
  panelDynamicProgressText: string;
20330
+ panelDynamicTabTextFormat: string;
19774
20331
  questionsProgressText: string;
19775
20332
  emptySurvey: string;
19776
20333
  completingSurvey: string;
19777
20334
  completingSurveyBefore: string;
19778
20335
  loadingSurvey: string;
19779
20336
  placeholder: string;
20337
+ ratingOptionsCaption: string;
19780
20338
  value: string;
19781
20339
  requiredError: string;
19782
20340
  requiredErrorInPanel: string;
@@ -19840,7 +20398,13 @@ declare module "localization/malay" {
19840
20398
  modalCancelButtonText: string;
19841
20399
  modalApplyButtonText: string;
19842
20400
  filterStringPlaceholder: string;
20401
+ emptyMessage: string;
19843
20402
  noEntriesText: string;
20403
+ noEntriesReadonlyText: string;
20404
+ more: string;
20405
+ tagboxDoneButtonCaption: string;
20406
+ selectToRankEmptyRankedAreaText: string;
20407
+ selectToRankEmptyUnrankedAreaText: string;
19844
20408
  };
19845
20409
  }
19846
20410
  declare module "localization/norwegian" {
@@ -19855,18 +20419,23 @@ declare module "localization/norwegian" {
19855
20419
  noneItemText: string;
19856
20420
  selectAllItemText: string;
19857
20421
  progressText: string;
20422
+ indexText: string;
19858
20423
  panelDynamicProgressText: string;
20424
+ panelDynamicTabTextFormat: string;
19859
20425
  questionsProgressText: string;
19860
20426
  emptySurvey: string;
19861
20427
  completingSurvey: string;
19862
20428
  completingSurveyBefore: string;
19863
20429
  loadingSurvey: string;
19864
20430
  placeholder: string;
20431
+ ratingOptionsCaption: string;
19865
20432
  value: string;
19866
20433
  requiredError: string;
19867
20434
  requiredErrorInPanel: string;
19868
20435
  requiredInAllRowsError: string;
19869
20436
  numericError: string;
20437
+ minError: string;
20438
+ maxError: string;
19870
20439
  textMinLength: string;
19871
20440
  textMaxLength: string;
19872
20441
  textMinMaxLength: string;
@@ -19886,16 +20455,19 @@ declare module "localization/norwegian" {
19886
20455
  loadingFile: string;
19887
20456
  chooseFile: string;
19888
20457
  noFileChosen: string;
20458
+ fileDragAreaPlaceholder: string;
19889
20459
  confirmDelete: string;
19890
20460
  keyDuplicationError: string;
19891
20461
  addColumn: string;
19892
20462
  addRow: string;
19893
20463
  removeRow: string;
20464
+ emptyRowsText: string;
19894
20465
  addPanel: string;
19895
20466
  removePanel: string;
19896
20467
  choices_Item: string;
19897
20468
  matrix_column: string;
19898
20469
  matrix_row: string;
20470
+ multipletext_itemname: string;
19899
20471
  savingData: string;
19900
20472
  savingDataError: string;
19901
20473
  savingDataSuccess: string;
@@ -19909,6 +20481,7 @@ declare module "localization/norwegian" {
19909
20481
  timerLimitPage: string;
19910
20482
  timerLimitSurvey: string;
19911
20483
  clearCaption: string;
20484
+ signaturePlaceHolder: string;
19912
20485
  chooseFileCaption: string;
19913
20486
  removeFileCaption: string;
19914
20487
  booleanCheckedLabel: string;
@@ -19916,6 +20489,16 @@ declare module "localization/norwegian" {
19916
20489
  confirmRemoveFile: string;
19917
20490
  confirmRemoveAllFiles: string;
19918
20491
  questionTitlePatternText: string;
20492
+ modalCancelButtonText: string;
20493
+ modalApplyButtonText: string;
20494
+ filterStringPlaceholder: string;
20495
+ emptyMessage: string;
20496
+ noEntriesText: string;
20497
+ noEntriesReadonlyText: string;
20498
+ more: string;
20499
+ tagboxDoneButtonCaption: string;
20500
+ selectToRankEmptyRankedAreaText: string;
20501
+ selectToRankEmptyUnrankedAreaText: string;
19919
20502
  };
19920
20503
  }
19921
20504
  declare module "localization/persian" {
@@ -19930,18 +20513,23 @@ declare module "localization/persian" {
19930
20513
  noneItemText: string;
19931
20514
  selectAllItemText: string;
19932
20515
  progressText: string;
20516
+ indexText: string;
19933
20517
  panelDynamicProgressText: string;
20518
+ panelDynamicTabTextFormat: string;
19934
20519
  questionsProgressText: string;
19935
20520
  emptySurvey: string;
19936
20521
  completingSurvey: string;
19937
20522
  completingSurveyBefore: string;
19938
20523
  loadingSurvey: string;
19939
20524
  placeholder: string;
20525
+ ratingOptionsCaption: string;
19940
20526
  value: string;
19941
20527
  requiredError: string;
19942
20528
  requiredErrorInPanel: string;
19943
20529
  requiredInAllRowsError: string;
19944
20530
  numericError: string;
20531
+ minError: string;
20532
+ maxError: string;
19945
20533
  textMinLength: string;
19946
20534
  textMaxLength: string;
19947
20535
  textMinMaxLength: string;
@@ -19961,16 +20549,19 @@ declare module "localization/persian" {
19961
20549
  loadingFile: string;
19962
20550
  chooseFile: string;
19963
20551
  noFileChosen: string;
20552
+ fileDragAreaPlaceholder: string;
19964
20553
  confirmDelete: string;
19965
20554
  keyDuplicationError: string;
19966
20555
  addColumn: string;
19967
20556
  addRow: string;
19968
20557
  removeRow: string;
20558
+ emptyRowsText: string;
19969
20559
  addPanel: string;
19970
20560
  removePanel: string;
19971
20561
  choices_Item: string;
19972
20562
  matrix_column: string;
19973
20563
  matrix_row: string;
20564
+ multipletext_itemname: string;
19974
20565
  savingData: string;
19975
20566
  savingDataError: string;
19976
20567
  savingDataSuccess: string;
@@ -19984,6 +20575,7 @@ declare module "localization/persian" {
19984
20575
  timerLimitPage: string;
19985
20576
  timerLimitSurvey: string;
19986
20577
  clearCaption: string;
20578
+ signaturePlaceHolder: string;
19987
20579
  chooseFileCaption: string;
19988
20580
  removeFileCaption: string;
19989
20581
  booleanCheckedLabel: string;
@@ -19991,6 +20583,16 @@ declare module "localization/persian" {
19991
20583
  confirmRemoveFile: string;
19992
20584
  confirmRemoveAllFiles: string;
19993
20585
  questionTitlePatternText: string;
20586
+ modalCancelButtonText: string;
20587
+ modalApplyButtonText: string;
20588
+ filterStringPlaceholder: string;
20589
+ emptyMessage: string;
20590
+ noEntriesText: string;
20591
+ noEntriesReadonlyText: string;
20592
+ more: string;
20593
+ tagboxDoneButtonCaption: string;
20594
+ selectToRankEmptyRankedAreaText: string;
20595
+ selectToRankEmptyUnrankedAreaText: string;
19994
20596
  };
19995
20597
  }
19996
20598
  declare module "localization/polish" {
@@ -20007,6 +20609,7 @@ declare module "localization/polish" {
20007
20609
  progressText: string;
20008
20610
  indexText: string;
20009
20611
  panelDynamicProgressText: string;
20612
+ panelDynamicTabTextFormat: string;
20010
20613
  questionsProgressText: string;
20011
20614
  emptySurvey: string;
20012
20615
  completingSurvey: string;
@@ -20077,7 +20680,13 @@ declare module "localization/polish" {
20077
20680
  modalCancelButtonText: string;
20078
20681
  modalApplyButtonText: string;
20079
20682
  filterStringPlaceholder: string;
20683
+ emptyMessage: string;
20080
20684
  noEntriesText: string;
20685
+ noEntriesReadonlyText: string;
20686
+ more: string;
20687
+ tagboxDoneButtonCaption: string;
20688
+ selectToRankEmptyRankedAreaText: string;
20689
+ selectToRankEmptyUnrankedAreaText: string;
20081
20690
  };
20082
20691
  }
20083
20692
  declare module "localization/portuguese" {
@@ -20094,6 +20703,7 @@ declare module "localization/portuguese" {
20094
20703
  progressText: string;
20095
20704
  indexText: string;
20096
20705
  panelDynamicProgressText: string;
20706
+ panelDynamicTabTextFormat: string;
20097
20707
  questionsProgressText: string;
20098
20708
  emptySurvey: string;
20099
20709
  completingSurvey: string;
@@ -20166,8 +20776,11 @@ declare module "localization/portuguese" {
20166
20776
  filterStringPlaceholder: string;
20167
20777
  emptyMessage: string;
20168
20778
  noEntriesText: string;
20779
+ noEntriesReadonlyText: string;
20169
20780
  more: string;
20170
20781
  tagboxDoneButtonCaption: string;
20782
+ selectToRankEmptyRankedAreaText: string;
20783
+ selectToRankEmptyUnrankedAreaText: string;
20171
20784
  };
20172
20785
  }
20173
20786
  declare module "localization/portuguese-br" {
@@ -20175,30 +20788,96 @@ declare module "localization/portuguese-br" {
20175
20788
  * You don't need to translate strings that have the same value as Portuguese translation
20176
20789
  */
20177
20790
  export var portugueseBrSurveyStrings: {
20791
+ pagePrevText: string;
20792
+ pageNextText: string;
20793
+ completeText: string;
20794
+ previewText: string;
20795
+ editText: string;
20796
+ startSurveyText: string;
20797
+ otherItemText: string;
20798
+ noneItemText: string;
20799
+ selectAllItemText: string;
20800
+ progressText: string;
20801
+ indexText: string;
20802
+ panelDynamicProgressText: string;
20803
+ panelDynamicTabTextFormat: string;
20804
+ questionsProgressText: string;
20178
20805
  emptySurvey: string;
20179
20806
  completingSurvey: string;
20180
20807
  completingSurveyBefore: string;
20181
20808
  loadingSurvey: string;
20809
+ placeholder: string;
20810
+ ratingOptionsCaption: string;
20811
+ value: string;
20182
20812
  requiredError: string;
20183
20813
  requiredErrorInPanel: string;
20184
20814
  requiredInAllRowsError: string;
20815
+ numericError: string;
20816
+ minError: string;
20817
+ maxError: string;
20818
+ textMinLength: string;
20819
+ textMaxLength: string;
20820
+ textMinMaxLength: string;
20821
+ minRowCountError: string;
20822
+ minSelectError: string;
20185
20823
  maxSelectError: string;
20824
+ numericMinMax: string;
20825
+ numericMin: string;
20826
+ numericMax: string;
20186
20827
  invalidEmail: string;
20828
+ invalidExpression: string;
20187
20829
  urlRequestError: string;
20188
20830
  urlGetChoicesError: string;
20831
+ exceedMaxSize: string;
20189
20832
  otherRequiredError: string;
20190
20833
  uploadingFile: string;
20191
20834
  loadingFile: string;
20835
+ chooseFile: string;
20192
20836
  noFileChosen: string;
20837
+ fileDragAreaPlaceholder: string;
20193
20838
  confirmDelete: string;
20194
20839
  keyDuplicationError: string;
20840
+ addColumn: string;
20841
+ addRow: string;
20842
+ removeRow: string;
20843
+ emptyRowsText: string;
20844
+ addPanel: string;
20845
+ removePanel: string;
20846
+ choices_Item: string;
20847
+ matrix_column: string;
20848
+ matrix_row: string;
20849
+ multipletext_itemname: string;
20195
20850
  savingData: string;
20196
20851
  savingDataError: string;
20197
20852
  savingDataSuccess: string;
20853
+ saveAgainButton: string;
20854
+ timerMin: string;
20855
+ timerSec: string;
20856
+ timerSpentAll: string;
20857
+ timerSpentPage: string;
20858
+ timerSpentSurvey: string;
20859
+ timerLimitAll: string;
20860
+ timerLimitPage: string;
20861
+ timerLimitSurvey: string;
20862
+ clearCaption: string;
20863
+ signaturePlaceHolder: string;
20198
20864
  chooseFileCaption: string;
20199
20865
  removeFileCaption: string;
20866
+ booleanCheckedLabel: string;
20867
+ booleanUncheckedLabel: string;
20200
20868
  confirmRemoveFile: string;
20201
20869
  confirmRemoveAllFiles: string;
20870
+ questionTitlePatternText: string;
20871
+ modalCancelButtonText: string;
20872
+ modalApplyButtonText: string;
20873
+ filterStringPlaceholder: string;
20874
+ emptyMessage: string;
20875
+ noEntriesText: string;
20876
+ noEntriesReadonlyText: string;
20877
+ more: string;
20878
+ tagboxDoneButtonCaption: string;
20879
+ selectToRankEmptyRankedAreaText: string;
20880
+ selectToRankEmptyUnrankedAreaText: string;
20202
20881
  };
20203
20882
  }
20204
20883
  declare module "localization/romanian" {
@@ -20218,6 +20897,7 @@ declare module "localization/russian" {
20218
20897
  progressText: string;
20219
20898
  indexText: string;
20220
20899
  panelDynamicProgressText: string;
20900
+ panelDynamicTabTextFormat: string;
20221
20901
  questionsProgressText: string;
20222
20902
  emptySurvey: string;
20223
20903
  completingSurvey: string;
@@ -20288,7 +20968,13 @@ declare module "localization/russian" {
20288
20968
  modalCancelButtonText: string;
20289
20969
  modalApplyButtonText: string;
20290
20970
  filterStringPlaceholder: string;
20971
+ emptyMessage: string;
20291
20972
  noEntriesText: string;
20973
+ noEntriesReadonlyText: string;
20974
+ more: string;
20975
+ tagboxDoneButtonCaption: string;
20976
+ selectToRankEmptyRankedAreaText: string;
20977
+ selectToRankEmptyUnrankedAreaText: string;
20292
20978
  };
20293
20979
  }
20294
20980
  declare module "localization/serbian" {
@@ -20303,13 +20989,16 @@ declare module "localization/serbian" {
20303
20989
  noneItemText: string;
20304
20990
  selectAllItemText: string;
20305
20991
  progressText: string;
20992
+ indexText: string;
20306
20993
  panelDynamicProgressText: string;
20994
+ panelDynamicTabTextFormat: string;
20307
20995
  questionsProgressText: string;
20308
20996
  emptySurvey: string;
20309
20997
  completingSurvey: string;
20310
20998
  completingSurveyBefore: string;
20311
20999
  loadingSurvey: string;
20312
21000
  placeholder: string;
21001
+ ratingOptionsCaption: string;
20313
21002
  value: string;
20314
21003
  requiredError: string;
20315
21004
  requiredErrorInPanel: string;
@@ -20336,6 +21025,7 @@ declare module "localization/serbian" {
20336
21025
  loadingFile: string;
20337
21026
  chooseFile: string;
20338
21027
  noFileChosen: string;
21028
+ fileDragAreaPlaceholder: string;
20339
21029
  confirmDelete: string;
20340
21030
  keyDuplicationError: string;
20341
21031
  addColumn: string;
@@ -20361,6 +21051,7 @@ declare module "localization/serbian" {
20361
21051
  timerLimitPage: string;
20362
21052
  timerLimitSurvey: string;
20363
21053
  clearCaption: string;
21054
+ signaturePlaceHolder: string;
20364
21055
  chooseFileCaption: string;
20365
21056
  removeFileCaption: string;
20366
21057
  booleanCheckedLabel: string;
@@ -20370,6 +21061,14 @@ declare module "localization/serbian" {
20370
21061
  questionTitlePatternText: string;
20371
21062
  modalCancelButtonText: string;
20372
21063
  modalApplyButtonText: string;
21064
+ filterStringPlaceholder: string;
21065
+ emptyMessage: string;
21066
+ noEntriesText: string;
21067
+ noEntriesReadonlyText: string;
21068
+ more: string;
21069
+ tagboxDoneButtonCaption: string;
21070
+ selectToRankEmptyRankedAreaText: string;
21071
+ selectToRankEmptyUnrankedAreaText: string;
20373
21072
  };
20374
21073
  }
20375
21074
  declare module "localization/simplified-chinese" {
@@ -20384,13 +21083,16 @@ declare module "localization/simplified-chinese" {
20384
21083
  noneItemText: string;
20385
21084
  selectAllItemText: string;
20386
21085
  progressText: string;
21086
+ indexText: string;
20387
21087
  panelDynamicProgressText: string;
21088
+ panelDynamicTabTextFormat: string;
20388
21089
  questionsProgressText: string;
20389
21090
  emptySurvey: string;
20390
21091
  completingSurvey: string;
20391
21092
  completingSurveyBefore: string;
20392
21093
  loadingSurvey: string;
20393
21094
  placeholder: string;
21095
+ ratingOptionsCaption: string;
20394
21096
  value: string;
20395
21097
  requiredError: string;
20396
21098
  requiredErrorInPanel: string;
@@ -20417,6 +21119,7 @@ declare module "localization/simplified-chinese" {
20417
21119
  loadingFile: string;
20418
21120
  chooseFile: string;
20419
21121
  noFileChosen: string;
21122
+ fileDragAreaPlaceholder: string;
20420
21123
  confirmDelete: string;
20421
21124
  keyDuplicationError: string;
20422
21125
  addColumn: string;
@@ -20442,6 +21145,7 @@ declare module "localization/simplified-chinese" {
20442
21145
  timerLimitPage: string;
20443
21146
  timerLimitSurvey: string;
20444
21147
  clearCaption: string;
21148
+ signaturePlaceHolder: string;
20445
21149
  chooseFileCaption: string;
20446
21150
  removeFileCaption: string;
20447
21151
  booleanCheckedLabel: string;
@@ -20451,6 +21155,14 @@ declare module "localization/simplified-chinese" {
20451
21155
  questionTitlePatternText: string;
20452
21156
  modalCancelButtonText: string;
20453
21157
  modalApplyButtonText: string;
21158
+ filterStringPlaceholder: string;
21159
+ emptyMessage: string;
21160
+ noEntriesText: string;
21161
+ noEntriesReadonlyText: string;
21162
+ more: string;
21163
+ tagboxDoneButtonCaption: string;
21164
+ selectToRankEmptyRankedAreaText: string;
21165
+ selectToRankEmptyUnrankedAreaText: string;
20454
21166
  };
20455
21167
  }
20456
21168
  declare module "localization/slovak" {
@@ -20465,13 +21177,16 @@ declare module "localization/slovak" {
20465
21177
  noneItemText: string;
20466
21178
  selectAllItemText: string;
20467
21179
  progressText: string;
21180
+ indexText: string;
20468
21181
  panelDynamicProgressText: string;
21182
+ panelDynamicTabTextFormat: string;
20469
21183
  questionsProgressText: string;
20470
21184
  emptySurvey: string;
20471
21185
  completingSurvey: string;
20472
21186
  completingSurveyBefore: string;
20473
21187
  loadingSurvey: string;
20474
21188
  placeholder: string;
21189
+ ratingOptionsCaption: string;
20475
21190
  value: string;
20476
21191
  requiredError: string;
20477
21192
  requiredErrorInPanel: string;
@@ -20535,7 +21250,13 @@ declare module "localization/slovak" {
20535
21250
  modalCancelButtonText: string;
20536
21251
  modalApplyButtonText: string;
20537
21252
  filterStringPlaceholder: string;
21253
+ emptyMessage: string;
20538
21254
  noEntriesText: string;
21255
+ noEntriesReadonlyText: string;
21256
+ more: string;
21257
+ tagboxDoneButtonCaption: string;
21258
+ selectToRankEmptyRankedAreaText: string;
21259
+ selectToRankEmptyUnrankedAreaText: string;
20539
21260
  };
20540
21261
  }
20541
21262
  declare module "localization/spanish" {
@@ -20552,6 +21273,7 @@ declare module "localization/spanish" {
20552
21273
  progressText: string;
20553
21274
  indexText: string;
20554
21275
  panelDynamicProgressText: string;
21276
+ panelDynamicTabTextFormat: string;
20555
21277
  questionsProgressText: string;
20556
21278
  emptySurvey: string;
20557
21279
  completingSurvey: string;
@@ -20622,7 +21344,13 @@ declare module "localization/spanish" {
20622
21344
  modalCancelButtonText: string;
20623
21345
  modalApplyButtonText: string;
20624
21346
  filterStringPlaceholder: string;
21347
+ emptyMessage: string;
20625
21348
  noEntriesText: string;
21349
+ noEntriesReadonlyText: string;
21350
+ more: string;
21351
+ tagboxDoneButtonCaption: string;
21352
+ selectToRankEmptyRankedAreaText: string;
21353
+ selectToRankEmptyUnrankedAreaText: string;
20626
21354
  };
20627
21355
  }
20628
21356
  declare module "localization/swahili" {
@@ -20637,18 +21365,23 @@ declare module "localization/swahili" {
20637
21365
  noneItemText: string;
20638
21366
  selectAllItemText: string;
20639
21367
  progressText: string;
21368
+ indexText: string;
20640
21369
  panelDynamicProgressText: string;
21370
+ panelDynamicTabTextFormat: string;
20641
21371
  questionsProgressText: string;
20642
21372
  emptySurvey: string;
20643
21373
  completingSurvey: string;
20644
21374
  completingSurveyBefore: string;
20645
21375
  loadingSurvey: string;
20646
21376
  placeholder: string;
21377
+ ratingOptionsCaption: string;
20647
21378
  value: string;
20648
21379
  requiredError: string;
20649
21380
  requiredErrorInPanel: string;
20650
21381
  requiredInAllRowsError: string;
20651
21382
  numericError: string;
21383
+ minError: string;
21384
+ maxError: string;
20652
21385
  textMinLength: string;
20653
21386
  textMaxLength: string;
20654
21387
  textMinMaxLength: string;
@@ -20668,16 +21401,19 @@ declare module "localization/swahili" {
20668
21401
  loadingFile: string;
20669
21402
  chooseFile: string;
20670
21403
  noFileChosen: string;
21404
+ fileDragAreaPlaceholder: string;
20671
21405
  confirmDelete: string;
20672
21406
  keyDuplicationError: string;
20673
21407
  addColumn: string;
20674
21408
  addRow: string;
20675
21409
  removeRow: string;
21410
+ emptyRowsText: string;
20676
21411
  addPanel: string;
20677
21412
  removePanel: string;
20678
21413
  choices_Item: string;
20679
21414
  matrix_column: string;
20680
21415
  matrix_row: string;
21416
+ multipletext_itemname: string;
20681
21417
  savingData: string;
20682
21418
  savingDataError: string;
20683
21419
  savingDataSuccess: string;
@@ -20691,6 +21427,7 @@ declare module "localization/swahili" {
20691
21427
  timerLimitPage: string;
20692
21428
  timerLimitSurvey: string;
20693
21429
  clearCaption: string;
21430
+ signaturePlaceHolder: string;
20694
21431
  chooseFileCaption: string;
20695
21432
  removeFileCaption: string;
20696
21433
  booleanCheckedLabel: string;
@@ -20698,6 +21435,16 @@ declare module "localization/swahili" {
20698
21435
  confirmRemoveFile: string;
20699
21436
  confirmRemoveAllFiles: string;
20700
21437
  questionTitlePatternText: string;
21438
+ modalCancelButtonText: string;
21439
+ modalApplyButtonText: string;
21440
+ filterStringPlaceholder: string;
21441
+ emptyMessage: string;
21442
+ noEntriesText: string;
21443
+ noEntriesReadonlyText: string;
21444
+ more: string;
21445
+ tagboxDoneButtonCaption: string;
21446
+ selectToRankEmptyRankedAreaText: string;
21447
+ selectToRankEmptyUnrankedAreaText: string;
20701
21448
  };
20702
21449
  }
20703
21450
  declare module "localization/swedish" {
@@ -20714,6 +21461,7 @@ declare module "localization/swedish" {
20714
21461
  progressText: string;
20715
21462
  indexText: string;
20716
21463
  panelDynamicProgressText: string;
21464
+ panelDynamicTabTextFormat: string;
20717
21465
  questionsProgressText: string;
20718
21466
  emptySurvey: string;
20719
21467
  completingSurvey: string;
@@ -20747,11 +21495,13 @@ declare module "localization/swedish" {
20747
21495
  loadingFile: string;
20748
21496
  chooseFile: string;
20749
21497
  noFileChosen: string;
21498
+ fileDragAreaPlaceholder: string;
20750
21499
  confirmDelete: string;
20751
21500
  keyDuplicationError: string;
20752
21501
  addColumn: string;
20753
21502
  addRow: string;
20754
21503
  removeRow: string;
21504
+ emptyRowsText: string;
20755
21505
  addPanel: string;
20756
21506
  removePanel: string;
20757
21507
  choices_Item: string;
@@ -20784,7 +21534,11 @@ declare module "localization/swedish" {
20784
21534
  filterStringPlaceholder: string;
20785
21535
  emptyMessage: string;
20786
21536
  noEntriesText: string;
21537
+ noEntriesReadonlyText: string;
20787
21538
  more: string;
21539
+ tagboxDoneButtonCaption: string;
21540
+ selectToRankEmptyRankedAreaText: string;
21541
+ selectToRankEmptyUnrankedAreaText: string;
20788
21542
  };
20789
21543
  }
20790
21544
  declare module "localization/tajik" {
@@ -20863,18 +21617,23 @@ declare module "localization/thai" {
20863
21617
  noneItemText: string;
20864
21618
  selectAllItemText: string;
20865
21619
  progressText: string;
21620
+ indexText: string;
20866
21621
  panelDynamicProgressText: string;
21622
+ panelDynamicTabTextFormat: string;
20867
21623
  questionsProgressText: string;
20868
21624
  emptySurvey: string;
20869
21625
  completingSurvey: string;
20870
21626
  completingSurveyBefore: string;
20871
21627
  loadingSurvey: string;
20872
21628
  placeholder: string;
21629
+ ratingOptionsCaption: string;
20873
21630
  value: string;
20874
21631
  requiredError: string;
20875
21632
  requiredErrorInPanel: string;
20876
21633
  requiredInAllRowsError: string;
20877
21634
  numericError: string;
21635
+ minError: string;
21636
+ maxError: string;
20878
21637
  textMinLength: string;
20879
21638
  textMaxLength: string;
20880
21639
  textMinMaxLength: string;
@@ -20894,16 +21653,19 @@ declare module "localization/thai" {
20894
21653
  loadingFile: string;
20895
21654
  chooseFile: string;
20896
21655
  noFileChosen: string;
21656
+ fileDragAreaPlaceholder: string;
20897
21657
  confirmDelete: string;
20898
21658
  keyDuplicationError: string;
20899
21659
  addColumn: string;
20900
21660
  addRow: string;
20901
21661
  removeRow: string;
21662
+ emptyRowsText: string;
20902
21663
  addPanel: string;
20903
21664
  removePanel: string;
20904
21665
  choices_Item: string;
20905
21666
  matrix_column: string;
20906
21667
  matrix_row: string;
21668
+ multipletext_itemname: string;
20907
21669
  savingData: string;
20908
21670
  savingDataError: string;
20909
21671
  savingDataSuccess: string;
@@ -20917,6 +21679,7 @@ declare module "localization/thai" {
20917
21679
  timerLimitPage: string;
20918
21680
  timerLimitSurvey: string;
20919
21681
  clearCaption: string;
21682
+ signaturePlaceHolder: string;
20920
21683
  chooseFileCaption: string;
20921
21684
  removeFileCaption: string;
20922
21685
  booleanCheckedLabel: string;
@@ -20924,6 +21687,16 @@ declare module "localization/thai" {
20924
21687
  confirmRemoveFile: string;
20925
21688
  confirmRemoveAllFiles: string;
20926
21689
  questionTitlePatternText: string;
21690
+ modalCancelButtonText: string;
21691
+ modalApplyButtonText: string;
21692
+ filterStringPlaceholder: string;
21693
+ emptyMessage: string;
21694
+ noEntriesText: string;
21695
+ noEntriesReadonlyText: string;
21696
+ more: string;
21697
+ tagboxDoneButtonCaption: string;
21698
+ selectToRankEmptyRankedAreaText: string;
21699
+ selectToRankEmptyUnrankedAreaText: string;
20927
21700
  };
20928
21701
  }
20929
21702
  declare module "localization/traditional-chinese" {
@@ -20931,15 +21704,30 @@ declare module "localization/traditional-chinese" {
20931
21704
  pagePrevText: string;
20932
21705
  pageNextText: string;
20933
21706
  completeText: string;
21707
+ previewText: string;
21708
+ editText: string;
21709
+ startSurveyText: string;
20934
21710
  otherItemText: string;
21711
+ noneItemText: string;
21712
+ selectAllItemText: string;
20935
21713
  progressText: string;
21714
+ indexText: string;
21715
+ panelDynamicProgressText: string;
21716
+ panelDynamicTabTextFormat: string;
21717
+ questionsProgressText: string;
20936
21718
  emptySurvey: string;
20937
21719
  completingSurvey: string;
21720
+ completingSurveyBefore: string;
20938
21721
  loadingSurvey: string;
20939
21722
  placeholder: string;
21723
+ ratingOptionsCaption: string;
21724
+ value: string;
20940
21725
  requiredError: string;
21726
+ requiredErrorInPanel: string;
20941
21727
  requiredInAllRowsError: string;
20942
21728
  numericError: string;
21729
+ minError: string;
21730
+ maxError: string;
20943
21731
  textMinLength: string;
20944
21732
  textMaxLength: string;
20945
21733
  textMinMaxLength: string;
@@ -20950,20 +21738,59 @@ declare module "localization/traditional-chinese" {
20950
21738
  numericMin: string;
20951
21739
  numericMax: string;
20952
21740
  invalidEmail: string;
21741
+ invalidExpression: string;
20953
21742
  urlRequestError: string;
20954
21743
  urlGetChoicesError: string;
20955
21744
  exceedMaxSize: string;
20956
21745
  otherRequiredError: string;
20957
21746
  uploadingFile: string;
21747
+ loadingFile: string;
21748
+ chooseFile: string;
21749
+ noFileChosen: string;
21750
+ fileDragAreaPlaceholder: string;
21751
+ confirmDelete: string;
21752
+ keyDuplicationError: string;
21753
+ addColumn: string;
20958
21754
  addRow: string;
20959
21755
  removeRow: string;
21756
+ emptyRowsText: string;
21757
+ addPanel: string;
21758
+ removePanel: string;
20960
21759
  choices_Item: string;
20961
21760
  matrix_column: string;
20962
21761
  matrix_row: string;
21762
+ multipletext_itemname: string;
20963
21763
  savingData: string;
20964
21764
  savingDataError: string;
20965
21765
  savingDataSuccess: string;
20966
21766
  saveAgainButton: string;
21767
+ timerMin: string;
21768
+ timerSec: string;
21769
+ timerSpentAll: string;
21770
+ timerSpentPage: string;
21771
+ timerSpentSurvey: string;
21772
+ timerLimitAll: string;
21773
+ timerLimitPage: string;
21774
+ timerLimitSurvey: string;
21775
+ clearCaption: string;
21776
+ signaturePlaceHolder: string;
21777
+ chooseFileCaption: string;
21778
+ removeFileCaption: string;
21779
+ booleanCheckedLabel: string;
21780
+ booleanUncheckedLabel: string;
21781
+ confirmRemoveFile: string;
21782
+ confirmRemoveAllFiles: string;
21783
+ questionTitlePatternText: string;
21784
+ modalCancelButtonText: string;
21785
+ modalApplyButtonText: string;
21786
+ filterStringPlaceholder: string;
21787
+ emptyMessage: string;
21788
+ noEntriesText: string;
21789
+ noEntriesReadonlyText: string;
21790
+ more: string;
21791
+ tagboxDoneButtonCaption: string;
21792
+ selectToRankEmptyRankedAreaText: string;
21793
+ selectToRankEmptyUnrankedAreaText: string;
20967
21794
  };
20968
21795
  }
20969
21796
  declare module "localization/turkish" {
@@ -21072,18 +21899,23 @@ declare module "localization/ukrainian" {
21072
21899
  noneItemText: string;
21073
21900
  selectAllItemText: string;
21074
21901
  progressText: string;
21902
+ indexText: string;
21075
21903
  panelDynamicProgressText: string;
21904
+ panelDynamicTabTextFormat: string;
21076
21905
  questionsProgressText: string;
21077
21906
  emptySurvey: string;
21078
21907
  completingSurvey: string;
21079
21908
  completingSurveyBefore: string;
21080
21909
  loadingSurvey: string;
21081
21910
  placeholder: string;
21911
+ ratingOptionsCaption: string;
21082
21912
  value: string;
21083
21913
  requiredError: string;
21084
21914
  requiredErrorInPanel: string;
21085
21915
  requiredInAllRowsError: string;
21086
21916
  numericError: string;
21917
+ minError: string;
21918
+ maxError: string;
21087
21919
  textMinLength: string;
21088
21920
  textMaxLength: string;
21089
21921
  textMinMaxLength: string;
@@ -21103,16 +21935,19 @@ declare module "localization/ukrainian" {
21103
21935
  loadingFile: string;
21104
21936
  chooseFile: string;
21105
21937
  noFileChosen: string;
21938
+ fileDragAreaPlaceholder: string;
21106
21939
  confirmDelete: string;
21107
21940
  keyDuplicationError: string;
21108
21941
  addColumn: string;
21109
21942
  addRow: string;
21110
21943
  removeRow: string;
21944
+ emptyRowsText: string;
21111
21945
  addPanel: string;
21112
21946
  removePanel: string;
21113
21947
  choices_Item: string;
21114
21948
  matrix_column: string;
21115
21949
  matrix_row: string;
21950
+ multipletext_itemname: string;
21116
21951
  savingData: string;
21117
21952
  savingDataError: string;
21118
21953
  savingDataSuccess: string;
@@ -21126,6 +21961,7 @@ declare module "localization/ukrainian" {
21126
21961
  timerLimitPage: string;
21127
21962
  timerLimitSurvey: string;
21128
21963
  clearCaption: string;
21964
+ signaturePlaceHolder: string;
21129
21965
  chooseFileCaption: string;
21130
21966
  removeFileCaption: string;
21131
21967
  booleanCheckedLabel: string;
@@ -21133,6 +21969,16 @@ declare module "localization/ukrainian" {
21133
21969
  confirmRemoveFile: string;
21134
21970
  confirmRemoveAllFiles: string;
21135
21971
  questionTitlePatternText: string;
21972
+ modalCancelButtonText: string;
21973
+ modalApplyButtonText: string;
21974
+ filterStringPlaceholder: string;
21975
+ emptyMessage: string;
21976
+ noEntriesText: string;
21977
+ noEntriesReadonlyText: string;
21978
+ more: string;
21979
+ tagboxDoneButtonCaption: string;
21980
+ selectToRankEmptyRankedAreaText: string;
21981
+ selectToRankEmptyUnrankedAreaText: string;
21136
21982
  };
21137
21983
  }
21138
21984
  declare module "localization/vietnamese" {
@@ -21147,18 +21993,23 @@ declare module "localization/vietnamese" {
21147
21993
  noneItemText: string;
21148
21994
  selectAllItemText: string;
21149
21995
  progressText: string;
21996
+ indexText: string;
21150
21997
  panelDynamicProgressText: string;
21998
+ panelDynamicTabTextFormat: string;
21151
21999
  questionsProgressText: string;
21152
22000
  emptySurvey: string;
21153
22001
  completingSurvey: string;
21154
22002
  completingSurveyBefore: string;
21155
22003
  loadingSurvey: string;
21156
22004
  placeholder: string;
22005
+ ratingOptionsCaption: string;
21157
22006
  value: string;
21158
22007
  requiredError: string;
21159
22008
  requiredErrorInPanel: string;
21160
22009
  requiredInAllRowsError: string;
21161
22010
  numericError: string;
22011
+ minError: string;
22012
+ maxError: string;
21162
22013
  textMinLength: string;
21163
22014
  textMaxLength: string;
21164
22015
  textMinMaxLength: string;
@@ -21178,16 +22029,19 @@ declare module "localization/vietnamese" {
21178
22029
  loadingFile: string;
21179
22030
  chooseFile: string;
21180
22031
  noFileChosen: string;
22032
+ fileDragAreaPlaceholder: string;
21181
22033
  confirmDelete: string;
21182
22034
  keyDuplicationError: string;
21183
22035
  addColumn: string;
21184
22036
  addRow: string;
21185
22037
  removeRow: string;
22038
+ emptyRowsText: string;
21186
22039
  addPanel: string;
21187
22040
  removePanel: string;
21188
22041
  choices_Item: string;
21189
22042
  matrix_column: string;
21190
22043
  matrix_row: string;
22044
+ multipletext_itemname: string;
21191
22045
  savingData: string;
21192
22046
  savingDataError: string;
21193
22047
  savingDataSuccess: string;
@@ -21201,6 +22055,7 @@ declare module "localization/vietnamese" {
21201
22055
  timerLimitPage: string;
21202
22056
  timerLimitSurvey: string;
21203
22057
  clearCaption: string;
22058
+ signaturePlaceHolder: string;
21204
22059
  chooseFileCaption: string;
21205
22060
  removeFileCaption: string;
21206
22061
  booleanCheckedLabel: string;
@@ -21208,6 +22063,16 @@ declare module "localization/vietnamese" {
21208
22063
  confirmRemoveFile: string;
21209
22064
  confirmRemoveAllFiles: string;
21210
22065
  questionTitlePatternText: string;
22066
+ modalCancelButtonText: string;
22067
+ modalApplyButtonText: string;
22068
+ filterStringPlaceholder: string;
22069
+ emptyMessage: string;
22070
+ noEntriesText: string;
22071
+ noEntriesReadonlyText: string;
22072
+ more: string;
22073
+ tagboxDoneButtonCaption: string;
22074
+ selectToRankEmptyRankedAreaText: string;
22075
+ selectToRankEmptyUnrankedAreaText: string;
21211
22076
  };
21212
22077
  }
21213
22078
  declare module "localization/welsh" {
@@ -21222,18 +22087,23 @@ declare module "localization/welsh" {
21222
22087
  noneItemText: string;
21223
22088
  selectAllItemText: string;
21224
22089
  progressText: string;
22090
+ indexText: string;
21225
22091
  panelDynamicProgressText: string;
22092
+ panelDynamicTabTextFormat: string;
21226
22093
  questionsProgressText: string;
21227
22094
  emptySurvey: string;
21228
22095
  completingSurvey: string;
21229
22096
  completingSurveyBefore: string;
21230
22097
  loadingSurvey: string;
21231
22098
  placeholder: string;
22099
+ ratingOptionsCaption: string;
21232
22100
  value: string;
21233
22101
  requiredError: string;
21234
22102
  requiredErrorInPanel: string;
21235
22103
  requiredInAllRowsError: string;
21236
22104
  numericError: string;
22105
+ minError: string;
22106
+ maxError: string;
21237
22107
  textMinLength: string;
21238
22108
  textMaxLength: string;
21239
22109
  textMinMaxLength: string;
@@ -21253,16 +22123,19 @@ declare module "localization/welsh" {
21253
22123
  loadingFile: string;
21254
22124
  chooseFile: string;
21255
22125
  noFileChosen: string;
22126
+ fileDragAreaPlaceholder: string;
21256
22127
  confirmDelete: string;
21257
22128
  keyDuplicationError: string;
21258
22129
  addColumn: string;
21259
22130
  addRow: string;
21260
22131
  removeRow: string;
22132
+ emptyRowsText: string;
21261
22133
  addPanel: string;
21262
22134
  removePanel: string;
21263
22135
  choices_Item: string;
21264
22136
  matrix_column: string;
21265
22137
  matrix_row: string;
22138
+ multipletext_itemname: string;
21266
22139
  savingData: string;
21267
22140
  savingDataError: string;
21268
22141
  savingDataSuccess: string;
@@ -21276,6 +22149,7 @@ declare module "localization/welsh" {
21276
22149
  timerLimitPage: string;
21277
22150
  timerLimitSurvey: string;
21278
22151
  clearCaption: string;
22152
+ signaturePlaceHolder: string;
21279
22153
  chooseFileCaption: string;
21280
22154
  removeFileCaption: string;
21281
22155
  booleanCheckedLabel: string;
@@ -21283,6 +22157,16 @@ declare module "localization/welsh" {
21283
22157
  confirmRemoveFile: string;
21284
22158
  confirmRemoveAllFiles: string;
21285
22159
  questionTitlePatternText: string;
22160
+ modalCancelButtonText: string;
22161
+ modalApplyButtonText: string;
22162
+ filterStringPlaceholder: string;
22163
+ emptyMessage: string;
22164
+ noEntriesText: string;
22165
+ noEntriesReadonlyText: string;
22166
+ more: string;
22167
+ tagboxDoneButtonCaption: string;
22168
+ selectToRankEmptyRankedAreaText: string;
22169
+ selectToRankEmptyUnrankedAreaText: string;
21286
22170
  };
21287
22171
  }
21288
22172
  declare module "localization/telugu" {
@@ -21294,20 +22178,26 @@ declare module "localization/telugu" {
21294
22178
  editText: string;
21295
22179
  startSurveyText: string;
21296
22180
  otherItemText: string;
22181
+ noneItemText: string;
21297
22182
  selectAllItemText: string;
21298
22183
  progressText: string;
22184
+ indexText: string;
21299
22185
  panelDynamicProgressText: string;
22186
+ panelDynamicTabTextFormat: string;
21300
22187
  questionsProgressText: string;
21301
22188
  emptySurvey: string;
21302
22189
  completingSurvey: string;
21303
22190
  completingSurveyBefore: string;
21304
22191
  loadingSurvey: string;
21305
22192
  placeholder: string;
22193
+ ratingOptionsCaption: string;
21306
22194
  value: string;
21307
22195
  requiredError: string;
21308
22196
  requiredErrorInPanel: string;
21309
22197
  requiredInAllRowsError: string;
21310
22198
  numericError: string;
22199
+ minError: string;
22200
+ maxError: string;
21311
22201
  textMinLength: string;
21312
22202
  textMaxLength: string;
21313
22203
  textMinMaxLength: string;
@@ -21327,16 +22217,19 @@ declare module "localization/telugu" {
21327
22217
  loadingFile: string;
21328
22218
  chooseFile: string;
21329
22219
  noFileChosen: string;
22220
+ fileDragAreaPlaceholder: string;
21330
22221
  confirmDelete: string;
21331
22222
  keyDuplicationError: string;
21332
22223
  addColumn: string;
21333
22224
  addRow: string;
21334
22225
  removeRow: string;
22226
+ emptyRowsText: string;
21335
22227
  addPanel: string;
21336
22228
  removePanel: string;
21337
22229
  choices_Item: string;
21338
22230
  matrix_column: string;
21339
22231
  matrix_row: string;
22232
+ multipletext_itemname: string;
21340
22233
  savingData: string;
21341
22234
  savingDataError: string;
21342
22235
  savingDataSuccess: string;
@@ -21350,6 +22243,7 @@ declare module "localization/telugu" {
21350
22243
  timerLimitPage: string;
21351
22244
  timerLimitSurvey: string;
21352
22245
  clearCaption: string;
22246
+ signaturePlaceHolder: string;
21353
22247
  chooseFileCaption: string;
21354
22248
  removeFileCaption: string;
21355
22249
  booleanCheckedLabel: string;
@@ -21357,6 +22251,16 @@ declare module "localization/telugu" {
21357
22251
  confirmRemoveFile: string;
21358
22252
  confirmRemoveAllFiles: string;
21359
22253
  questionTitlePatternText: string;
22254
+ modalCancelButtonText: string;
22255
+ modalApplyButtonText: string;
22256
+ filterStringPlaceholder: string;
22257
+ emptyMessage: string;
22258
+ noEntriesText: string;
22259
+ noEntriesReadonlyText: string;
22260
+ more: string;
22261
+ tagboxDoneButtonCaption: string;
22262
+ selectToRankEmptyRankedAreaText: string;
22263
+ selectToRankEmptyUnrankedAreaText: string;
21360
22264
  };
21361
22265
  }
21362
22266
  declare module "entries/chunks/localization" {
@@ -22375,6 +23279,7 @@ declare module "react/components/matrix-actions/drag-drop-icon/drag-drop-icon" {
22375
23279
  }
22376
23280
  }
22377
23281
  declare module "react/reactquestion_matrixdropdownbase" {
23282
+ import * as React from "react";
22378
23283
  import { SurveyQuestionElementBase } from "react/reactquestion_element";
22379
23284
  import { SurveyQuestionAndErrorsCell } from "react/reactquestion";
22380
23285
  import { QuestionMatrixDropdownModelBase, QuestionMatrixDropdownRenderedRow, QuestionMatrixDropdownRenderedCell, Question } from "entries/core";
@@ -22408,6 +23313,16 @@ declare module "react/reactquestion_matrixdropdownbase" {
22408
23313
  private renderCellCheckboxButton;
22409
23314
  private renderCellRadiogroupButton;
22410
23315
  }
23316
+ export class SurveyQuestionMatrixDropdownErrorCell extends React.Component<any, any> {
23317
+ constructor(props: any);
23318
+ private get cell();
23319
+ private update;
23320
+ private registerCallback;
23321
+ private unRegisterCallback;
23322
+ componentDidUpdate(prevProps: Readonly<any>): void;
23323
+ componentWillUnmount(): void;
23324
+ render(): JSX.Element;
23325
+ }
22411
23326
  }
22412
23327
  declare module "react/reactquestion_matrixdropdown" {
22413
23328
  import { SurveyQuestionMatrixDropdownBase } from "react/reactquestion_matrixdropdownbase";