survey-react 1.9.124 → 1.9.125

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
@@ -65,6 +65,7 @@ declare module "localization/english" {
65
65
  requiredError: string;
66
66
  requiredErrorInPanel: string;
67
67
  requiredInAllRowsError: string;
68
+ eachRowUniqueError: string;
68
69
  numericError: string;
69
70
  minError: string;
70
71
  maxError: string;
@@ -185,6 +186,7 @@ declare module "surveyStrings" {
185
186
  requiredError: string;
186
187
  requiredErrorInPanel: string;
187
188
  requiredInAllRowsError: string;
189
+ eachRowUniqueError: string;
188
190
  numericError: string;
189
191
  minError: string;
190
192
  maxError: string;
@@ -307,6 +309,7 @@ declare module "localizablestring" {
307
309
  searchText: string;
308
310
  searchIndex: number;
309
311
  disableLocalization: boolean;
312
+ defaultValue: string;
310
313
  constructor(owner: ILocalizableOwner, useMarkdown?: boolean, name?: string);
311
314
  getIsMultiple(): boolean;
312
315
  get locale(): string;
@@ -1034,7 +1037,7 @@ declare module "list" {
1034
1037
  }
1035
1038
  declare module "actions/action" {
1036
1039
  import { ILocalizableOwner, LocalizableString } from "localizablestring";
1037
- import { Base } from "base";
1040
+ import { Base, ComputedUpdater } from "base";
1038
1041
  import { IListModel } from "list";
1039
1042
  import { IPopupOptionsBase } from "popup";
1040
1043
  export type actionModeType = "large" | "small" | "popup" | "removed";
@@ -1057,7 +1060,7 @@ declare module "actions/action" {
1057
1060
  * @see enabled
1058
1061
  * @see active
1059
1062
  */
1060
- visible?: boolean;
1063
+ visible?: boolean | ComputedUpdater<boolean>;
1061
1064
  /**
1062
1065
  * The action item's title.
1063
1066
  *
@@ -1078,7 +1081,7 @@ declare module "actions/action" {
1078
1081
  * @see active
1079
1082
  * @see visible
1080
1083
  */
1081
- enabled?: boolean;
1084
+ enabled?: boolean | ComputedUpdater<boolean>;
1082
1085
  enabledIf?: () => boolean;
1083
1086
  /**
1084
1087
  * Specifies the visibility of the action item's title.
@@ -2423,13 +2426,37 @@ declare module "question_custom" {
2423
2426
  */
2424
2427
  onInit?(): void;
2425
2428
  /**
2426
- * Specifies whether the custom question type is available in the Toolbox and the Add Question menu.
2429
+ * Specifies whether the custom question type is available in the Toolbox and the Add Question menu in Survey Creator.
2427
2430
  *
2428
2431
  * Default value: `true`
2429
2432
  *
2430
2433
  * Set this property to `false` if your custom question type is used only to customize Property Grid content and is not meant for a survey.
2431
2434
  */
2432
2435
  showInToolbox?: boolean;
2436
+ /**
2437
+ * A default title for questions created with this question type. Survey authors can change the default title in the JSON object or in Survey Creator's Property Grid.
2438
+ *
2439
+ * You can specify the question title with a string value or with an object that defines different titles for different locales:
2440
+ *
2441
+ * ```js
2442
+ * import { ComponentCollection } from "survey-core";
2443
+ *
2444
+ * ComponentCollection.Instance.add({
2445
+ * // ...
2446
+ * defaultQuestionTitle: "Default title"
2447
+ * });
2448
+ * // ===== OR =====
2449
+ * ComponentCollection.Instance.add({
2450
+ * // ...
2451
+ * defaultQuestionTitle: {
2452
+ * en: "Default title",
2453
+ * de: "Standardtitel",
2454
+ * fr: "Titre par défaut"
2455
+ * }
2456
+ * });
2457
+ * ```
2458
+ */
2459
+ defaultQuestionTitle?: any;
2433
2460
  /**
2434
2461
  * A function that is called when the custom question is created. Use it to access questions nested within a [composite question type](https://surveyjs.io/form-library/documentation/customize-question-types/create-composite-question-types).
2435
2462
  *
@@ -2594,6 +2621,7 @@ declare module "question_custom" {
2594
2621
  onValueChanging(question: Question, name: string, newValue: any): any;
2595
2622
  onItemValuePropertyChanged(question: Question, item: ItemValue, propertyName: string, name: string, newValue: any): void;
2596
2623
  getDisplayValue(keyAsText: boolean, value: any, question: Question): any;
2624
+ get defaultQuestionTitle(): any;
2597
2625
  setValueToQuestion(val: any): any;
2598
2626
  getValueFromQuestion(val: any): any;
2599
2627
  get isComposite(): boolean;
@@ -2617,10 +2645,12 @@ declare module "question_custom" {
2617
2645
  }
2618
2646
  export abstract class QuestionCustomModelBase extends Question implements ISurveyImpl, ISurveyData, IPanel {
2619
2647
  customQuestion: ComponentQuestionJSON;
2648
+ private locQuestionTitle;
2620
2649
  constructor(name: string, customQuestion: ComponentQuestionJSON);
2621
2650
  getType(): string;
2622
2651
  locStrsChanged(): void;
2623
2652
  localeChanged(): void;
2653
+ protected getDefaultTitle(): string;
2624
2654
  addUsedLocales(locales: Array<string>): void;
2625
2655
  needResponsiveWidth(): boolean;
2626
2656
  protected createWrapper(): void;
@@ -2829,6 +2859,12 @@ declare module "error" {
2829
2859
  getErrorType(): string;
2830
2860
  protected getDefaultText(): string;
2831
2861
  }
2862
+ export class EachRowUniqueError extends SurveyError {
2863
+ text: string;
2864
+ constructor(text: string, errorOwner?: ISurveyErrorOwner);
2865
+ getErrorType(): string;
2866
+ protected getDefaultText(): string;
2867
+ }
2832
2868
  export class MinRowCountError extends SurveyError {
2833
2869
  minRowCount: number;
2834
2870
  constructor(minRowCount: number, errorOwner?: ISurveyErrorOwner);
@@ -3002,7 +3038,7 @@ declare module "panel" {
3002
3038
  *
3003
3039
  * A survey parses and runs all expressions on startup. If any values used in the expression change, the survey re-evaluates it.
3004
3040
  *
3005
- * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility)
3041
+ * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility).
3006
3042
  * @see visible
3007
3043
  * @see isVisible
3008
3044
  */
@@ -3095,7 +3131,7 @@ declare module "panel" {
3095
3131
  *
3096
3132
  * A survey parses and runs all expressions on startup. If any values used in the expression change, the survey re-evaluates it.
3097
3133
  *
3098
- * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility)
3134
+ * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility).
3099
3135
  * @see isRequired
3100
3136
  */
3101
3137
  get requiredIf(): string;
@@ -3218,7 +3254,7 @@ declare module "panel" {
3218
3254
  *
3219
3255
  * A survey parses and runs all expressions on startup. If any values used in the expression change, the survey re-evaluates it.
3220
3256
  *
3221
- * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility)
3257
+ * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility).
3222
3258
  * @see readOnly
3223
3259
  * @see isReadOnly
3224
3260
  */
@@ -4202,7 +4238,7 @@ declare module "question_baseselect" {
4202
4238
  get otherPlaceHolder(): string;
4203
4239
  set otherPlaceHolder(newValue: string);
4204
4240
  /**
4205
- * Get or sets an error message displayed when users select the "Other" choice item but leave the comment area empty.
4241
+ * Gets or sets an error message displayed when users select the "Other" choice item but leave the comment area empty.
4206
4242
  * @see showOtherItem
4207
4243
  */
4208
4244
  get otherErrorText(): string;
@@ -4369,7 +4405,7 @@ declare module "question_baseselect" {
4369
4405
  colCountChangedCallback: () => void;
4370
4406
  constructor(name: string);
4371
4407
  /**
4372
- * Get or sets the number of columns used to arrange choice items.
4408
+ * Gets or sets the number of columns used to arrange choice items.
4373
4409
  *
4374
4410
  * Set this property to 0 if you want to display all items in one line. The default value depends on the available width.
4375
4411
  * @see separateSpecialChoices
@@ -4675,6 +4711,11 @@ declare module "question_matrixdropdowncolumn" {
4675
4711
  getCellAriaLabel(rowTitle: string, columnTitle: string): string;
4676
4712
  }
4677
4713
  export var matrixDropdownColumnTypes: any;
4714
+ /**
4715
+ * An auxiliary class that describes a column in a [Multi-Select Matrix](https://surveyjs.io/form-library/documentation/api-reference/matrix-table-with-dropdown-list) or [Dynamic Matrix](https://surveyjs.io/form-library/documentation/api-reference/dynamic-matrix-table-question-model).
4716
+ *
4717
+ * You can get an object of this class from the [`columns`](https://surveyjs.io/form-library/documentation/api-reference/matrix-table-with-dropdown-list#columns) array or by calling the [`getColumnByName()`](https://surveyjs.io/form-library/documentation/api-reference/matrix-table-with-dropdown-list#getColumnByName) method on a matrix instance.
4718
+ */
4678
4719
  export class MatrixDropdownColumn extends Base implements ILocalizableOwner, IWrapperObject {
4679
4720
  static getColumnTypes(): Array<string>;
4680
4721
  private templateQuestionValue;
@@ -4696,12 +4737,39 @@ declare module "question_matrixdropdowncolumn" {
4696
4737
  get index(): number;
4697
4738
  setIndex(val: number): void;
4698
4739
  getType(): string;
4740
+ /**
4741
+ * Specifies the type of column cells.
4742
+ *
4743
+ * Possible values:
4744
+ *
4745
+ * - [`"dropdown"`](https://surveyjs.io/form-library/documentation/api-reference/dropdown-menu-model)
4746
+ * - [`"checkbox"`](https://surveyjs.io/form-library/documentation/api-reference/checkbox-question-model)
4747
+ * - [`"radiogroup"`](https://surveyjs.io/form-library/documentation/api-reference/radio-button-question-model)
4748
+ * - [`"tagbox"`](https://surveyjs.io/form-library/documentation/api-reference/dropdown-tag-box-model)
4749
+ * - [`"text"`](https://surveyjs.io/form-library/documentation/api-reference/text-entry-question-model)
4750
+ * - [`"comment"`](https://surveyjs.io/form-library/documentation/api-reference/comment-field-model)
4751
+ * - [`"boolean"`](https://surveyjs.io/form-library/documentation/api-reference/boolean-question-model)
4752
+ * - [`"expression"`](https://surveyjs.io/form-library/documentation/api-reference/expression-model)
4753
+ * - [`"rating"`](https://surveyjs.io/form-library/documentation/api-reference/rating-scale-question-model)
4754
+ * - `"default"` (default) - Inherits the input type from the [`cellType`](https://surveyjs.io/form-library/documentation/api-reference/matrix-table-with-dropdown-list#cellType) property specified for the parent matrix.
4755
+ *
4756
+ * The input types are based upon standalone question types. Depending on the selected input type, the matrix column can have additional configuration properties inherited from the corresponding question type. For instance, Dropdown, Checkboxes, Radio Button Group, and Tag Box columns can specify the [`choices`](https://surveyjs.io/form-library/documentation/api-reference/radio-button-question-model#choices) array, similar to the question types upon which they are based. Refer to the API Reference of these question types for a full list of available properties.
4757
+ *
4758
+ * [View Demo](https://surveyjs.io/form-library/examples/aggregate-data-within-form/ (linkStyle))
4759
+ */
4699
4760
  get cellType(): string;
4700
4761
  set cellType(val: string);
4701
4762
  get templateQuestion(): Question;
4702
4763
  get value(): string;
4703
4764
  get isVisible(): boolean;
4704
4765
  get isColumnVisible(): boolean;
4766
+ /**
4767
+ * Gets or sets column visibility.
4768
+ *
4769
+ * If you want to display or hide a column based on a condition, specify the [`visibleIf`](#visibleIf) property.
4770
+ * @see isRequired
4771
+ * @see readOnly
4772
+ */
4705
4773
  get visible(): boolean;
4706
4774
  set visible(val: boolean);
4707
4775
  get hasVisibleCell(): boolean;
@@ -4710,52 +4778,167 @@ declare module "question_matrixdropdowncolumn" {
4710
4778
  get getVisibleChoicesInCell(): Array<any>;
4711
4779
  setVisibleChoicesInCell(val: Array<any>): void;
4712
4780
  get isFilteredMultipleColumns(): boolean;
4781
+ /**
4782
+ * A column ID that is not visible to respondents.
4783
+ *
4784
+ * > Column IDs must be unique.
4785
+ * @see title
4786
+ */
4713
4787
  get name(): string;
4714
4788
  set name(val: string);
4789
+ /**
4790
+ * A user-friendly column caption to display. If `title` is undefined, [`name`](#name) is displayed instead.
4791
+ */
4715
4792
  get title(): string;
4716
4793
  set title(val: string);
4717
4794
  get locTitle(): LocalizableString;
4718
4795
  get fullTitle(): string;
4796
+ /**
4797
+ * Marks the column as required. If a respondent skips any cell in a required column, the matrix displays a validation error.
4798
+ *
4799
+ * If you want to mark the column as required based on a condition, specify the [`requiredIf`](#requiredIf) property.
4800
+ * @see requiredErrorText
4801
+ * @see visible
4802
+ * @see readOnly
4803
+ */
4719
4804
  get isRequired(): boolean;
4720
4805
  set isRequired(val: boolean);
4721
4806
  get isRenderedRequired(): boolean;
4722
4807
  set isRenderedRequired(val: boolean);
4723
4808
  updateIsRenderedRequired(val: boolean): void;
4724
4809
  get requiredText(): string;
4810
+ /**
4811
+ * Specifies a custom error message for a required column.
4812
+ * @see isRequired
4813
+ */
4725
4814
  get requiredErrorText(): string;
4726
4815
  set requiredErrorText(val: string);
4727
4816
  get locRequiredErrorText(): LocalizableString;
4817
+ /**
4818
+ * Makes the column read-only.
4819
+ *
4820
+ * If you want to switch the column to the read-only state based on a condition, specify the [`enableIf`](#enableIf) property.
4821
+ * @see visible
4822
+ * @see isRequired
4823
+ */
4728
4824
  get readOnly(): boolean;
4729
4825
  set readOnly(val: boolean);
4730
4826
  get hasOther(): boolean;
4731
4827
  set hasOther(val: boolean);
4828
+ /**
4829
+ * A Boolean expression. If it evaluates to `false`, this column becomes hidden.
4830
+ *
4831
+ * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility).
4832
+ * @see visible
4833
+ */
4732
4834
  get visibleIf(): string;
4733
4835
  set visibleIf(val: string);
4836
+ /**
4837
+ * A Boolean expression. If it evaluates to `false`, this column becomes read-only.
4838
+ *
4839
+ * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility).
4840
+ * @see readOnly
4841
+ */
4734
4842
  get enableIf(): string;
4735
4843
  set enableIf(val: string);
4844
+ /**
4845
+ * A Boolean expression. If it evaluates to `true`, this column becomes required.
4846
+ *
4847
+ * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility).
4848
+ * @see isRequired
4849
+ */
4736
4850
  get requiredIf(): string;
4737
4851
  set requiredIf(val: string);
4852
+ /**
4853
+ * A Boolean expression. If it evaluates to `true`, all cells in this column are set to a value calculated using the [`defaultValueExpression`](#defaultValueExpression).
4854
+ *
4855
+ * [Expressions](https://surveyjs.io/form-library/documentation/design-survey/conditional-logic#expressions (linkStyle))
4856
+ * @see setValueIf
4857
+ */
4738
4858
  get resetValueIf(): string;
4739
4859
  set resetValueIf(val: string);
4860
+ /**
4861
+ * An expression used to calculate the column's default value. This expression applies to all cells of this column until the cell value is specified by an end user or programmatically.
4862
+ *
4863
+ * [Expressions](https://surveyjs.io/form-library/documentation/design-survey/conditional-logic#expressions (linkStyle))
4864
+ * @see setValueExpression
4865
+ */
4740
4866
  get defaultValueExpression(): string;
4741
4867
  set defaultValueExpression(val: string);
4868
+ /**
4869
+ * A Boolean expression. If it evaluates to `true`, all cells in this column are set to a value calculated using the [`setValueExpression`](#setValueExpression).
4870
+ *
4871
+ * [Expressions](https://surveyjs.io/form-library/documentation/design-survey/conditional-logic#expressions (linkStyle))
4872
+ * @see resetValueIf
4873
+ */
4742
4874
  get setValueIf(): string;
4743
4875
  set setValueIf(val: string);
4876
+ /**
4877
+ * An expression used to calculate a value for all column cells.
4878
+ *
4879
+ * You can use `setValueExpression` as a standalone property or in conjunction with the [`setValueIf`](#setValueIf) expression, in which case the calculated cell value applies only when `setValueIf` evaluates to `true`.
4880
+ *
4881
+ * [Expressions](https://surveyjs.io/form-library/documentation/design-survey/conditional-logic#expressions (linkStyle))
4882
+ * @see defaultValueExpression
4883
+ * @see resetValueIf
4884
+ */
4744
4885
  get setValueExpession(): string;
4745
4886
  set setValueExpession(val: string);
4887
+ /**
4888
+ * Specifies whether a respondent is required to provide a unique response for each question within this column.
4889
+ *
4890
+ * Default value: `false`
4891
+ */
4746
4892
  get isUnique(): boolean;
4747
4893
  set isUnique(val: boolean);
4894
+ /**
4895
+ * Specifies whether to create an individual column for each choice option. Applies only to columns of `"checkbox"` or `"radiogroup"` [`cellType`](#cellType).
4896
+ */
4748
4897
  get showInMultipleColumns(): boolean;
4749
4898
  set showInMultipleColumns(val: boolean);
4750
4899
  get isSupportMultipleColumns(): boolean;
4751
4900
  get isShowInMultipleColumns(): boolean;
4901
+ /**
4902
+ * Column validators.
4903
+ *
4904
+ * [Data Validation](https://surveyjs.io/form-library/documentation/data-validation (linkStyle))
4905
+ * @see isRequired
4906
+ */
4752
4907
  get validators(): Array<SurveyValidator>;
4753
4908
  set validators(val: Array<SurveyValidator>);
4909
+ /**
4910
+ * An aggregation method used to calculate the column total.
4911
+ *
4912
+ * Possible values:
4913
+ *
4914
+ * - `"none"` (default) - Disables total calculations.
4915
+ * - `"sum"`
4916
+ * - `"count"`
4917
+ * - `"min"`
4918
+ * - `"max"`
4919
+ * - `"avg"`
4920
+ *
4921
+ * [View Demo](https://surveyjs.io/form-library/examples/aggregate-data-within-form/ (linkStyle))
4922
+ * @see totalFormat
4923
+ * @see totalDisplayStyle
4924
+ */
4754
4925
  get totalType(): string;
4755
4926
  set totalType(val: string);
4927
+ /**
4928
+ * An expression used to calculate total values. Overrides the [`totalType`](#totalType) property.
4929
+ *
4930
+ * [Expressions](https://surveyjs.io/form-library/documentation/design-survey/conditional-logic#expressions (linkStyle))
4931
+ */
4756
4932
  get totalExpression(): string;
4757
4933
  set totalExpression(val: string);
4758
4934
  get hasTotal(): boolean;
4935
+ /**
4936
+ * A string pattern used to display column totals. To reference a total value within this pattern, use the `{0}` placeholder.
4937
+ *
4938
+ * [View Demo](https://surveyjs.io/form-library/examples/aggregate-data-within-form/ (linkStyle))
4939
+ * @see totalType
4940
+ * @see totalDisplayStyle
4941
+ */
4759
4942
  get totalFormat(): string;
4760
4943
  set totalFormat(val: string);
4761
4944
  get locTotalFormat(): LocalizableString;
@@ -4768,14 +4951,46 @@ declare module "question_matrixdropdowncolumn" {
4768
4951
  set totalMaximumFractionDigits(val: number);
4769
4952
  get totalMinimumFractionDigits(): number;
4770
4953
  set totalMinimumFractionDigits(val: number);
4954
+ /**
4955
+ * A format for calculated total values.
4956
+ *
4957
+ * Possible values:
4958
+ *
4959
+ * - `"none"` (default)
4960
+ * - `"decimal"`
4961
+ * - `"currency"`
4962
+ * - `"percent"`
4963
+ *
4964
+ * [View Demo](https://surveyjs.io/form-library/examples/aggregate-data-within-form/ (linkStyle))
4965
+ * @see totalType
4966
+ * @see totalFormat
4967
+ * @see totalCurrency
4968
+ */
4771
4969
  get totalDisplayStyle(): string;
4772
4970
  set totalDisplayStyle(val: string);
4971
+ /**
4972
+ * Specifies a currency used to display calculated total values. Applies only if [`totalDisplayStyle`](#totalDisplayStyle) is set to `"currency"`.
4973
+ * @see totalType
4974
+ */
4773
4975
  get totalCurrency(): string;
4774
4976
  set totalCurrency(val: string);
4977
+ /**
4978
+ * Gets or sets minimum column width in CSS values. By default, the matrix calculates column widths to optimally fit the content of all columns.
4979
+ * @see width
4980
+ */
4775
4981
  get minWidth(): string;
4776
4982
  set minWidth(val: string);
4983
+ /**
4984
+ * Gets or sets column width in CSS values. By default, the matrix calculates column widths to optimally fit the content of all columns.
4985
+ * @see minWidth
4986
+ */
4777
4987
  get width(): string;
4778
4988
  set width(val: string);
4989
+ /**
4990
+ * Gets or sets the number of columns used to arrange choice options. Applies only to columns of `"checkbox"` or `"radiogroup"` [`cellType`](#cellType).
4991
+ *
4992
+ * Default value: -1 (inherits the actual value from the parent matrix's [`columnColCount`](https://surveyjs.io/form-library/documentation/api-reference/matrix-table-with-dropdown-list#columnColCount) property)
4993
+ */
4779
4994
  get colCount(): number;
4780
4995
  set colCount(val: number);
4781
4996
  getLocale(): string;
@@ -7064,7 +7279,7 @@ declare module "survey-events-api" {
7064
7279
  }
7065
7280
  export interface MatrixCellCreatingBaseEvent extends MatrixDropdownQuestionEventMixin {
7066
7281
  /**
7067
- * A matrix column to which the cell belongs.
7282
+ * A [matrix column](https://surveyjs.io/form-library/documentation/api-reference/multi-select-matrix-column-values) to which the cell belongs.
7068
7283
  */
7069
7284
  column: MatrixDropdownColumn;
7070
7285
  /**
@@ -7111,7 +7326,7 @@ declare module "survey-events-api" {
7111
7326
  */
7112
7327
  row: MatrixDropdownRowModelBase;
7113
7328
  /**
7114
- * A matrix column to which the cell belongs.
7329
+ * A [matrix column](https://surveyjs.io/form-library/documentation/api-reference/multi-select-matrix-column-values) to which the cell belongs.
7115
7330
  */
7116
7331
  column: MatrixDropdownColumn | MatrixDropdownCell;
7117
7332
  }
@@ -7121,7 +7336,7 @@ declare module "survey-events-api" {
7121
7336
  */
7122
7337
  row: MatrixDropdownRowModelBase;
7123
7338
  /**
7124
- * A matrix column to which the cell belongs.
7339
+ * A [matrix column](https://surveyjs.io/form-library/documentation/api-reference/multi-select-matrix-column-values) to which the cell belongs.
7125
7340
  */
7126
7341
  column: MatrixDropdownColumn;
7127
7342
  /**
@@ -9085,6 +9300,9 @@ declare module "survey" {
9085
9300
  get lazyRendering(): boolean;
9086
9301
  set lazyRendering(val: boolean);
9087
9302
  get isLazyRendering(): boolean;
9303
+ lazyRenderingFirstBatchSizeValue: number;
9304
+ get lazyRenderingFirstBatchSize(): number;
9305
+ set lazyRenderingFirstBatchSize(val: number);
9088
9306
  private updateLazyRenderingRowsOnRemovingElements;
9089
9307
  /**
9090
9308
  * A list of triggers in the survey.
@@ -9924,6 +10142,7 @@ declare module "survey" {
9924
10142
  */
9925
10143
  get currentPage(): any;
9926
10144
  set currentPage(value: any);
10145
+ tryNavigateToPage(page: PageModel): boolean;
9927
10146
  private updateCurrentPage;
9928
10147
  private get isCurrentPageAvailable();
9929
10148
  private isPageExistsInSurvey;
@@ -11692,7 +11911,7 @@ declare module "question" {
11692
11911
  *
11693
11912
  * A survey parses and runs all expressions on startup. If any values used in the expression change, the survey re-evaluates it.
11694
11913
  *
11695
- * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility)
11914
+ * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility).
11696
11915
  * @see visible
11697
11916
  * @see isVisible
11698
11917
  */
@@ -11982,7 +12201,7 @@ declare module "question" {
11982
12201
  *
11983
12202
  * A survey parses and runs all expressions on startup. If any values used in the expression change, the survey re-evaluates it.
11984
12203
  *
11985
- * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility)
12204
+ * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility).
11986
12205
  * @see isRequired
11987
12206
  */
11988
12207
  get requiredIf(): string;
@@ -12029,7 +12248,7 @@ declare module "question" {
12029
12248
  *
12030
12249
  * A survey parses and runs all expressions on startup. If any values used in the expression change, the survey re-evaluates it.
12031
12250
  *
12032
- * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility)
12251
+ * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility).
12033
12252
  * @see readOnly
12034
12253
  * @see isReadOnly
12035
12254
  */
@@ -12543,9 +12762,13 @@ declare module "martixBase" {
12543
12762
  /**
12544
12763
  * An array of matrix columns.
12545
12764
  *
12546
- * This array can contain primitive values or objects with the `text` (display value) and `value` (value to be saved in survey results) properties.
12765
+ * For a Single-Select Matrix, the `columns` array can contain configuration objects with the `text` (display value) and `value` (value to be saved in survey results) properties. Alternatively, the array can contain primitive values that will be used as both the display values and values to be saved in survey results.
12547
12766
  *
12548
- * [View Demo](https://surveyjs.io/form-library/examples/single-selection-matrix-table-question/ (linkStyle))
12767
+ * [View "Single-Select Matrix" Demo](https://surveyjs.io/form-library/examples/single-selection-matrix-table-question/ (linkStyle))
12768
+ *
12769
+ * For a Multi-Select Matrix or Dynamic Matrix, the `columns` array should contain configuration objects with properties described in the [`MatrixDropdownColumn`](https://surveyjs.io/form-library/documentation/api-reference/multi-select-matrix-column-values) API Reference section.
12770
+ *
12771
+ * [View "Multi-Select Matrix" Demo](https://surveyjs.io/form-library/examples/questiontype-matrixdropdown/ (linkStyle))
12549
12772
  */
12550
12773
  get columns(): Array<any>;
12551
12774
  set columns(newValue: Array<any>);
@@ -12936,14 +13159,15 @@ declare module "question_matrixdropdownbase" {
12936
13159
  *
12937
13160
  * Possible values:
12938
13161
  *
12939
- * - `"dropdown"`
12940
- * - `"checkbox"`
12941
- * - `"radiogroup"`
12942
- * - `"text"`
12943
- * - `"comment"`
12944
- * - `"boolean"`
12945
- * - `"expression"`
12946
- * - `"rating"`
13162
+ * - [`"dropdown"`](https://surveyjs.io/form-library/documentation/api-reference/dropdown-menu-model)
13163
+ * - [`"checkbox"`](https://surveyjs.io/form-library/documentation/api-reference/checkbox-question-model)
13164
+ * - [`"radiogroup"`](https://surveyjs.io/form-library/documentation/api-reference/radio-button-question-model)
13165
+ * - [`"tagbox"`](https://surveyjs.io/form-library/documentation/api-reference/dropdown-tag-box-model)
13166
+ * - [`"text"`](https://surveyjs.io/form-library/documentation/api-reference/text-entry-question-model)
13167
+ * - [`"comment"`](https://surveyjs.io/form-library/documentation/api-reference/comment-field-model)
13168
+ * - [`"boolean"`](https://surveyjs.io/form-library/documentation/api-reference/boolean-question-model)
13169
+ * - [`"expression"`](https://surveyjs.io/form-library/documentation/api-reference/expression-model)
13170
+ * - [`"rating"`](https://surveyjs.io/form-library/documentation/api-reference/rating-scale-question-model)
12947
13171
  *
12948
13172
  * Default value: `"dropdown"` (inherited from [`settings.matrix.defaultCellType`](https://surveyjs.io/form-library/documentation/settings#matrixDefaultCellType))
12949
13173
  */
@@ -13224,6 +13448,7 @@ declare module "base-interfaces" {
13224
13448
  allowResizeComment: boolean;
13225
13449
  state: string;
13226
13450
  isLazyRendering: boolean;
13451
+ lazyRenderingFirstBatchSize: number;
13227
13452
  cancelPreviewByPage(panel: IPanel): any;
13228
13453
  locEditText: LocalizableString;
13229
13454
  cssNavigationEdit: string;
@@ -13613,11 +13838,13 @@ declare module "jsonobject" {
13613
13838
  properties: Array<JsonObjectProperty>;
13614
13839
  private isCustomValue;
13615
13840
  private allProperties;
13841
+ private requiredProperties;
13616
13842
  private hashProperties;
13617
13843
  constructor(name: string, properties: Array<any>, creator?: (json?: any) => any, parentName?: string);
13618
13844
  find(name: string): JsonObjectProperty;
13619
13845
  findProperty(name: string): JsonObjectProperty;
13620
13846
  getAllProperties(): Array<JsonObjectProperty>;
13847
+ getRequiredProperties(): Array<JsonObjectProperty>;
13621
13848
  resetAllProperties(): void;
13622
13849
  get isCustom(): boolean;
13623
13850
  private fillAllProperties;
@@ -13638,6 +13865,7 @@ declare module "jsonobject" {
13638
13865
  private classes;
13639
13866
  private alternativeNames;
13640
13867
  private childrenClasses;
13868
+ private dynamicPropsCache;
13641
13869
  onSerializingProperty: ((obj: Base, prop: JsonObjectProperty, value: any, json: any) => boolean) | undefined;
13642
13870
  getObjPropertyValue(obj: any, name: string): any;
13643
13871
  setObjPropertyValue(obj: any, name: string, val: any): void;
@@ -13665,6 +13893,7 @@ declare module "jsonobject" {
13665
13893
  addProperty(className: string, propertyInfo: any): JsonObjectProperty;
13666
13894
  private addCustomPropertyCore;
13667
13895
  removeProperty(className: string, propertyName: string): boolean;
13896
+ private clearDynamicPropsCache;
13668
13897
  private removePropertyFromClass;
13669
13898
  private fillChildrenClasses;
13670
13899
  findClass(name: string): JsonMetadataClass;
@@ -14028,7 +14257,7 @@ declare module "base" {
14028
14257
  registerFunctionOnPropertiesValueChanged(names: Array<string>, func: any, key?: string): void;
14029
14258
  unRegisterFunctionOnPropertyValueChanged(name: string, key?: string): void;
14030
14259
  unRegisterFunctionOnPropertiesValueChanged(names: Array<string>, key?: string): void;
14031
- createCustomLocalizableObj(name: string): void;
14260
+ createCustomLocalizableObj(name: string): LocalizableString;
14032
14261
  getLocale(): string;
14033
14262
  getLocalizationString(strName: string): string;
14034
14263
  getLocalizationFormatString(strName: string, ...args: any[]): string;
@@ -14320,12 +14549,12 @@ declare module "settings" {
14320
14549
  * import { ItemValue, settings } from "survey-core";
14321
14550
  *
14322
14551
  * // `itemValueSerializeAsObject` example
14323
- * settings.localization.itemValueSerializeAsObject = true;
14552
+ * settings.serialization.itemValueSerializeAsObject = true;
14324
14553
  * const item = new ItemValue(5);
14325
14554
  * const itemString = item.toJSON(); // Produces { value: 5 } instead of 5
14326
14555
  *
14327
14556
  * // `itemValueSerializeDisplayText` example
14328
- * settings.localization.itemValueSerializeDisplayText = true;
14557
+ * settings.serialization.itemValueSerializeDisplayText = true;
14329
14558
  * const item = new ItemValue("item1");
14330
14559
  * const itemString = item.toJSON(); // Produces { value: "item1", text: "item1" } instead of "item1"
14331
14560
  * ```
@@ -14974,6 +15203,7 @@ declare module "question_matrix" {
14974
15203
  export interface IMatrixData {
14975
15204
  onMatrixRowChanged(row: MatrixRowModel): void;
14976
15205
  getCorrectedRowValue(value: any): any;
15206
+ hasErrorInRow(row: MatrixRowModel): boolean;
14977
15207
  }
14978
15208
  export class MatrixRowModel extends Base {
14979
15209
  fullName: string;
@@ -14985,7 +15215,7 @@ declare module "question_matrix" {
14985
15215
  get text(): string;
14986
15216
  get locText(): LocalizableString;
14987
15217
  get value(): any;
14988
- set value(newValue: any);
15218
+ set value(val: any);
14989
15219
  get rowClasses(): string;
14990
15220
  }
14991
15221
  export interface IMatrixCellsOwner extends ILocalizableOwner {
@@ -15034,9 +15264,18 @@ declare module "question_matrix" {
15034
15264
  /**
15035
15265
  * Specifies whether each row requires an answer. If a respondent skips a row, the question displays a validation error.
15036
15266
  * @see isRequired
15267
+ * @see eachRowUnique
15268
+ * @see validators
15037
15269
  */
15038
15270
  get isAllRowRequired(): boolean;
15039
15271
  set isAllRowRequired(val: boolean);
15272
+ /**
15273
+ * Specifies whether answers in all rows should be unique. If any answers duplicate, the question displays a validation error.
15274
+ * @see isAllRowRequired
15275
+ * @see validators
15276
+ */
15277
+ get eachRowUnique(): boolean;
15278
+ set eachRowUnique(val: boolean);
15040
15279
  get hasRows(): boolean;
15041
15280
  /**
15042
15281
  * Specifies a sort order for matrix rows.
@@ -15081,9 +15320,13 @@ declare module "question_matrix" {
15081
15320
  private emptyLocalizableString;
15082
15321
  getCellDisplayLocText(row: any, column: any): LocalizableString;
15083
15322
  supportGoNextPageAutomatic(): boolean;
15323
+ private errorsInRow;
15084
15324
  protected onCheckForErrors(errors: Array<SurveyError>, isOnValueChanged: boolean): void;
15085
- private hasErrorInRows;
15325
+ private hasErrorAllRowsRequired;
15326
+ private hasErrorEachRowUnique;
15086
15327
  private hasValuesInAllRows;
15328
+ private hasNonUniqueValueInRow;
15329
+ private addErrorIntoRow;
15087
15330
  protected getIsAnswered(): boolean;
15088
15331
  private createMatrixRow;
15089
15332
  protected onMatrixRowCreated(row: MatrixRowModel): void;
@@ -15096,6 +15339,7 @@ declare module "question_matrix" {
15096
15339
  protected getFirstInputElementId(): string;
15097
15340
  onMatrixRowChanged(row: MatrixRowModel): void;
15098
15341
  getCorrectedRowValue(value: any): any;
15342
+ hasErrorInRow(row: MatrixRowModel): boolean;
15099
15343
  protected getSearchableItemValueKeys(keys: Array<string>): void;
15100
15344
  private get SurveyModel();
15101
15345
  getColumnHeaderWrapperComponentName(cell: ItemValue): string;
@@ -16380,11 +16624,9 @@ declare module "question_image" {
16380
16624
  declare module "surveyToc" {
16381
16625
  import { Action } from "actions/action";
16382
16626
  import { ListModel } from "list";
16383
- import { PageModel } from "page";
16384
16627
  import { PanelModelBase } from "panel";
16385
16628
  import { PopupModel } from "popup";
16386
16629
  import { SurveyModel } from "survey";
16387
- export function tryNavigateToPage(survey: SurveyModel, page: PageModel): boolean;
16388
16630
  export function tryFocusPage(survey: SurveyModel, panel: PanelModelBase): boolean;
16389
16631
  export function createTOCListModel(survey: SurveyModel, onAction?: () => void): ListModel<Action>;
16390
16632
  export function getTocRootCss(survey: SurveyModel, isMobile?: boolean): string;
@@ -19197,6 +19439,7 @@ declare module "localization/arabic" {
19197
19439
  requiredError: string;
19198
19440
  requiredErrorInPanel: string;
19199
19441
  requiredInAllRowsError: string;
19442
+ eachRowUniqueError: string;
19200
19443
  numericError: string;
19201
19444
  minError: string;
19202
19445
  maxError: string;
@@ -19214,6 +19457,7 @@ declare module "localization/arabic" {
19214
19457
  urlRequestError: string;
19215
19458
  urlGetChoicesError: string;
19216
19459
  exceedMaxSize: string;
19460
+ noUploadFilesHandler: string;
19217
19461
  otherRequiredError: string;
19218
19462
  uploadingFile: string;
19219
19463
  loadingFile: string;
@@ -19228,6 +19472,8 @@ declare module "localization/arabic" {
19228
19472
  emptyRowsText: string;
19229
19473
  addPanel: string;
19230
19474
  removePanel: string;
19475
+ showDetails: string;
19476
+ hideDetails: string;
19231
19477
  choices_Item: string;
19232
19478
  matrix_column: string;
19233
19479
  matrix_row: string;
@@ -19267,6 +19513,8 @@ declare module "localization/arabic" {
19267
19513
  tagboxDoneButtonCaption: string;
19268
19514
  selectToRankEmptyRankedAreaText: string;
19269
19515
  selectToRankEmptyUnrankedAreaText: string;
19516
+ ok: string;
19517
+ cancel: string;
19270
19518
  };
19271
19519
  }
19272
19520
  declare module "localization/basque" {
@@ -19295,6 +19543,7 @@ declare module "localization/basque" {
19295
19543
  requiredError: string;
19296
19544
  requiredErrorInPanel: string;
19297
19545
  requiredInAllRowsError: string;
19546
+ eachRowUniqueError: string;
19298
19547
  numericError: string;
19299
19548
  minError: string;
19300
19549
  maxError: string;
@@ -19312,6 +19561,7 @@ declare module "localization/basque" {
19312
19561
  urlRequestError: string;
19313
19562
  urlGetChoicesError: string;
19314
19563
  exceedMaxSize: string;
19564
+ noUploadFilesHandler: string;
19315
19565
  otherRequiredError: string;
19316
19566
  uploadingFile: string;
19317
19567
  loadingFile: string;
@@ -19326,6 +19576,8 @@ declare module "localization/basque" {
19326
19576
  emptyRowsText: string;
19327
19577
  addPanel: string;
19328
19578
  removePanel: string;
19579
+ showDetails: string;
19580
+ hideDetails: string;
19329
19581
  choices_Item: string;
19330
19582
  matrix_column: string;
19331
19583
  matrix_row: string;
@@ -19365,6 +19617,8 @@ declare module "localization/basque" {
19365
19617
  tagboxDoneButtonCaption: string;
19366
19618
  selectToRankEmptyRankedAreaText: string;
19367
19619
  selectToRankEmptyUnrankedAreaText: string;
19620
+ ok: string;
19621
+ cancel: string;
19368
19622
  };
19369
19623
  }
19370
19624
  declare module "localization/bulgarian" {
@@ -19393,6 +19647,7 @@ declare module "localization/bulgarian" {
19393
19647
  requiredError: string;
19394
19648
  requiredErrorInPanel: string;
19395
19649
  requiredInAllRowsError: string;
19650
+ eachRowUniqueError: string;
19396
19651
  numericError: string;
19397
19652
  minError: string;
19398
19653
  maxError: string;
@@ -19410,6 +19665,7 @@ declare module "localization/bulgarian" {
19410
19665
  urlRequestError: string;
19411
19666
  urlGetChoicesError: string;
19412
19667
  exceedMaxSize: string;
19668
+ noUploadFilesHandler: string;
19413
19669
  otherRequiredError: string;
19414
19670
  uploadingFile: string;
19415
19671
  loadingFile: string;
@@ -19424,6 +19680,8 @@ declare module "localization/bulgarian" {
19424
19680
  emptyRowsText: string;
19425
19681
  addPanel: string;
19426
19682
  removePanel: string;
19683
+ showDetails: string;
19684
+ hideDetails: string;
19427
19685
  choices_Item: string;
19428
19686
  matrix_column: string;
19429
19687
  matrix_row: string;
@@ -19463,6 +19721,8 @@ declare module "localization/bulgarian" {
19463
19721
  tagboxDoneButtonCaption: string;
19464
19722
  selectToRankEmptyRankedAreaText: string;
19465
19723
  selectToRankEmptyUnrankedAreaText: string;
19724
+ ok: string;
19725
+ cancel: string;
19466
19726
  };
19467
19727
  }
19468
19728
  declare module "localization/catalan" {
@@ -19491,6 +19751,7 @@ declare module "localization/catalan" {
19491
19751
  requiredError: string;
19492
19752
  requiredErrorInPanel: string;
19493
19753
  requiredInAllRowsError: string;
19754
+ eachRowUniqueError: string;
19494
19755
  numericError: string;
19495
19756
  minError: string;
19496
19757
  maxError: string;
@@ -19508,6 +19769,7 @@ declare module "localization/catalan" {
19508
19769
  urlRequestError: string;
19509
19770
  urlGetChoicesError: string;
19510
19771
  exceedMaxSize: string;
19772
+ noUploadFilesHandler: string;
19511
19773
  otherRequiredError: string;
19512
19774
  uploadingFile: string;
19513
19775
  loadingFile: string;
@@ -19522,6 +19784,8 @@ declare module "localization/catalan" {
19522
19784
  emptyRowsText: string;
19523
19785
  addPanel: string;
19524
19786
  removePanel: string;
19787
+ showDetails: string;
19788
+ hideDetails: string;
19525
19789
  choices_Item: string;
19526
19790
  matrix_column: string;
19527
19791
  matrix_row: string;
@@ -19561,6 +19825,8 @@ declare module "localization/catalan" {
19561
19825
  tagboxDoneButtonCaption: string;
19562
19826
  selectToRankEmptyRankedAreaText: string;
19563
19827
  selectToRankEmptyUnrankedAreaText: string;
19828
+ ok: string;
19829
+ cancel: string;
19564
19830
  };
19565
19831
  }
19566
19832
  declare module "localization/croatian" {
@@ -19589,6 +19855,7 @@ declare module "localization/croatian" {
19589
19855
  requiredError: string;
19590
19856
  requiredErrorInPanel: string;
19591
19857
  requiredInAllRowsError: string;
19858
+ eachRowUniqueError: string;
19592
19859
  numericError: string;
19593
19860
  minError: string;
19594
19861
  maxError: string;
@@ -19606,6 +19873,7 @@ declare module "localization/croatian" {
19606
19873
  urlRequestError: string;
19607
19874
  urlGetChoicesError: string;
19608
19875
  exceedMaxSize: string;
19876
+ noUploadFilesHandler: string;
19609
19877
  otherRequiredError: string;
19610
19878
  uploadingFile: string;
19611
19879
  loadingFile: string;
@@ -19620,6 +19888,8 @@ declare module "localization/croatian" {
19620
19888
  emptyRowsText: string;
19621
19889
  addPanel: string;
19622
19890
  removePanel: string;
19891
+ showDetails: string;
19892
+ hideDetails: string;
19623
19893
  choices_Item: string;
19624
19894
  matrix_column: string;
19625
19895
  matrix_row: string;
@@ -19659,6 +19929,8 @@ declare module "localization/croatian" {
19659
19929
  tagboxDoneButtonCaption: string;
19660
19930
  selectToRankEmptyRankedAreaText: string;
19661
19931
  selectToRankEmptyUnrankedAreaText: string;
19932
+ ok: string;
19933
+ cancel: string;
19662
19934
  };
19663
19935
  }
19664
19936
  declare module "localization/czech" {
@@ -19687,6 +19959,7 @@ declare module "localization/czech" {
19687
19959
  requiredError: string;
19688
19960
  requiredErrorInPanel: string;
19689
19961
  requiredInAllRowsError: string;
19962
+ eachRowUniqueError: string;
19690
19963
  numericError: string;
19691
19964
  minError: string;
19692
19965
  maxError: string;
@@ -19704,6 +19977,7 @@ declare module "localization/czech" {
19704
19977
  urlRequestError: string;
19705
19978
  urlGetChoicesError: string;
19706
19979
  exceedMaxSize: string;
19980
+ noUploadFilesHandler: string;
19707
19981
  otherRequiredError: string;
19708
19982
  uploadingFile: string;
19709
19983
  loadingFile: string;
@@ -19718,6 +19992,8 @@ declare module "localization/czech" {
19718
19992
  emptyRowsText: string;
19719
19993
  addPanel: string;
19720
19994
  removePanel: string;
19995
+ showDetails: string;
19996
+ hideDetails: string;
19721
19997
  choices_Item: string;
19722
19998
  matrix_column: string;
19723
19999
  matrix_row: string;
@@ -19757,6 +20033,8 @@ declare module "localization/czech" {
19757
20033
  tagboxDoneButtonCaption: string;
19758
20034
  selectToRankEmptyRankedAreaText: string;
19759
20035
  selectToRankEmptyUnrankedAreaText: string;
20036
+ ok: string;
20037
+ cancel: string;
19760
20038
  };
19761
20039
  }
19762
20040
  declare module "localization/danish" {
@@ -19785,6 +20063,7 @@ declare module "localization/danish" {
19785
20063
  requiredError: string;
19786
20064
  requiredErrorInPanel: string;
19787
20065
  requiredInAllRowsError: string;
20066
+ eachRowUniqueError: string;
19788
20067
  numericError: string;
19789
20068
  minError: string;
19790
20069
  maxError: string;
@@ -19802,6 +20081,7 @@ declare module "localization/danish" {
19802
20081
  urlRequestError: string;
19803
20082
  urlGetChoicesError: string;
19804
20083
  exceedMaxSize: string;
20084
+ noUploadFilesHandler: string;
19805
20085
  otherRequiredError: string;
19806
20086
  uploadingFile: string;
19807
20087
  loadingFile: string;
@@ -19816,6 +20096,8 @@ declare module "localization/danish" {
19816
20096
  emptyRowsText: string;
19817
20097
  addPanel: string;
19818
20098
  removePanel: string;
20099
+ showDetails: string;
20100
+ hideDetails: string;
19819
20101
  choices_Item: string;
19820
20102
  matrix_column: string;
19821
20103
  matrix_row: string;
@@ -19855,6 +20137,8 @@ declare module "localization/danish" {
19855
20137
  tagboxDoneButtonCaption: string;
19856
20138
  selectToRankEmptyRankedAreaText: string;
19857
20139
  selectToRankEmptyUnrankedAreaText: string;
20140
+ ok: string;
20141
+ cancel: string;
19858
20142
  };
19859
20143
  }
19860
20144
  declare module "localization/dutch" {
@@ -19883,6 +20167,7 @@ declare module "localization/dutch" {
19883
20167
  requiredError: string;
19884
20168
  requiredErrorInPanel: string;
19885
20169
  requiredInAllRowsError: string;
20170
+ eachRowUniqueError: string;
19886
20171
  numericError: string;
19887
20172
  minError: string;
19888
20173
  maxError: string;
@@ -19900,6 +20185,7 @@ declare module "localization/dutch" {
19900
20185
  urlRequestError: string;
19901
20186
  urlGetChoicesError: string;
19902
20187
  exceedMaxSize: string;
20188
+ noUploadFilesHandler: string;
19903
20189
  otherRequiredError: string;
19904
20190
  uploadingFile: string;
19905
20191
  loadingFile: string;
@@ -19914,6 +20200,8 @@ declare module "localization/dutch" {
19914
20200
  emptyRowsText: string;
19915
20201
  addPanel: string;
19916
20202
  removePanel: string;
20203
+ showDetails: string;
20204
+ hideDetails: string;
19917
20205
  choices_Item: string;
19918
20206
  matrix_column: string;
19919
20207
  matrix_row: string;
@@ -19953,6 +20241,8 @@ declare module "localization/dutch" {
19953
20241
  tagboxDoneButtonCaption: string;
19954
20242
  selectToRankEmptyRankedAreaText: string;
19955
20243
  selectToRankEmptyUnrankedAreaText: string;
20244
+ ok: string;
20245
+ cancel: string;
19956
20246
  };
19957
20247
  }
19958
20248
  declare module "localization/nl-BE" { }
@@ -19982,6 +20272,7 @@ declare module "localization/estonian" {
19982
20272
  requiredError: string;
19983
20273
  requiredErrorInPanel: string;
19984
20274
  requiredInAllRowsError: string;
20275
+ eachRowUniqueError: string;
19985
20276
  numericError: string;
19986
20277
  minError: string;
19987
20278
  maxError: string;
@@ -19999,6 +20290,7 @@ declare module "localization/estonian" {
19999
20290
  urlRequestError: string;
20000
20291
  urlGetChoicesError: string;
20001
20292
  exceedMaxSize: string;
20293
+ noUploadFilesHandler: string;
20002
20294
  otherRequiredError: string;
20003
20295
  uploadingFile: string;
20004
20296
  loadingFile: string;
@@ -20013,6 +20305,8 @@ declare module "localization/estonian" {
20013
20305
  emptyRowsText: string;
20014
20306
  addPanel: string;
20015
20307
  removePanel: string;
20308
+ showDetails: string;
20309
+ hideDetails: string;
20016
20310
  choices_Item: string;
20017
20311
  matrix_column: string;
20018
20312
  matrix_row: string;
@@ -20052,6 +20346,8 @@ declare module "localization/estonian" {
20052
20346
  tagboxDoneButtonCaption: string;
20053
20347
  selectToRankEmptyRankedAreaText: string;
20054
20348
  selectToRankEmptyUnrankedAreaText: string;
20349
+ ok: string;
20350
+ cancel: string;
20055
20351
  };
20056
20352
  }
20057
20353
  declare module "localization/finnish" {
@@ -20080,6 +20376,7 @@ declare module "localization/finnish" {
20080
20376
  requiredError: string;
20081
20377
  requiredErrorInPanel: string;
20082
20378
  requiredInAllRowsError: string;
20379
+ eachRowUniqueError: string;
20083
20380
  numericError: string;
20084
20381
  minError: string;
20085
20382
  maxError: string;
@@ -20097,6 +20394,7 @@ declare module "localization/finnish" {
20097
20394
  urlRequestError: string;
20098
20395
  urlGetChoicesError: string;
20099
20396
  exceedMaxSize: string;
20397
+ noUploadFilesHandler: string;
20100
20398
  otherRequiredError: string;
20101
20399
  uploadingFile: string;
20102
20400
  loadingFile: string;
@@ -20111,6 +20409,8 @@ declare module "localization/finnish" {
20111
20409
  emptyRowsText: string;
20112
20410
  addPanel: string;
20113
20411
  removePanel: string;
20412
+ showDetails: string;
20413
+ hideDetails: string;
20114
20414
  choices_Item: string;
20115
20415
  matrix_column: string;
20116
20416
  matrix_row: string;
@@ -20150,6 +20450,8 @@ declare module "localization/finnish" {
20150
20450
  tagboxDoneButtonCaption: string;
20151
20451
  selectToRankEmptyRankedAreaText: string;
20152
20452
  selectToRankEmptyUnrankedAreaText: string;
20453
+ ok: string;
20454
+ cancel: string;
20153
20455
  };
20154
20456
  }
20155
20457
  declare module "localization/french" {
@@ -20178,6 +20480,7 @@ declare module "localization/french" {
20178
20480
  requiredError: string;
20179
20481
  requiredErrorInPanel: string;
20180
20482
  requiredInAllRowsError: string;
20483
+ eachRowUniqueError: string;
20181
20484
  numericError: string;
20182
20485
  minError: string;
20183
20486
  maxError: string;
@@ -20195,6 +20498,7 @@ declare module "localization/french" {
20195
20498
  urlRequestError: string;
20196
20499
  urlGetChoicesError: string;
20197
20500
  exceedMaxSize: string;
20501
+ noUploadFilesHandler: string;
20198
20502
  otherRequiredError: string;
20199
20503
  uploadingFile: string;
20200
20504
  loadingFile: string;
@@ -20209,6 +20513,8 @@ declare module "localization/french" {
20209
20513
  emptyRowsText: string;
20210
20514
  addPanel: string;
20211
20515
  removePanel: string;
20516
+ showDetails: string;
20517
+ hideDetails: string;
20212
20518
  choices_Item: string;
20213
20519
  matrix_column: string;
20214
20520
  matrix_row: string;
@@ -20248,6 +20554,8 @@ declare module "localization/french" {
20248
20554
  tagboxDoneButtonCaption: string;
20249
20555
  selectToRankEmptyRankedAreaText: string;
20250
20556
  selectToRankEmptyUnrankedAreaText: string;
20557
+ ok: string;
20558
+ cancel: string;
20251
20559
  };
20252
20560
  }
20253
20561
  declare module "localization/georgian" {
@@ -20276,6 +20584,7 @@ declare module "localization/georgian" {
20276
20584
  requiredError: string;
20277
20585
  requiredErrorInPanel: string;
20278
20586
  requiredInAllRowsError: string;
20587
+ eachRowUniqueError: string;
20279
20588
  numericError: string;
20280
20589
  minError: string;
20281
20590
  maxError: string;
@@ -20293,6 +20602,7 @@ declare module "localization/georgian" {
20293
20602
  urlRequestError: string;
20294
20603
  urlGetChoicesError: string;
20295
20604
  exceedMaxSize: string;
20605
+ noUploadFilesHandler: string;
20296
20606
  otherRequiredError: string;
20297
20607
  uploadingFile: string;
20298
20608
  loadingFile: string;
@@ -20307,6 +20617,8 @@ declare module "localization/georgian" {
20307
20617
  emptyRowsText: string;
20308
20618
  addPanel: string;
20309
20619
  removePanel: string;
20620
+ showDetails: string;
20621
+ hideDetails: string;
20310
20622
  choices_Item: string;
20311
20623
  matrix_column: string;
20312
20624
  matrix_row: string;
@@ -20346,6 +20658,8 @@ declare module "localization/georgian" {
20346
20658
  tagboxDoneButtonCaption: string;
20347
20659
  selectToRankEmptyRankedAreaText: string;
20348
20660
  selectToRankEmptyUnrankedAreaText: string;
20661
+ ok: string;
20662
+ cancel: string;
20349
20663
  };
20350
20664
  }
20351
20665
  declare module "localization/german" {
@@ -20374,6 +20688,7 @@ declare module "localization/german" {
20374
20688
  requiredError: string;
20375
20689
  requiredErrorInPanel: string;
20376
20690
  requiredInAllRowsError: string;
20691
+ eachRowUniqueError: string;
20377
20692
  numericError: string;
20378
20693
  minError: string;
20379
20694
  maxError: string;
@@ -20391,6 +20706,7 @@ declare module "localization/german" {
20391
20706
  urlRequestError: string;
20392
20707
  urlGetChoicesError: string;
20393
20708
  exceedMaxSize: string;
20709
+ noUploadFilesHandler: string;
20394
20710
  otherRequiredError: string;
20395
20711
  uploadingFile: string;
20396
20712
  loadingFile: string;
@@ -20405,6 +20721,8 @@ declare module "localization/german" {
20405
20721
  emptyRowsText: string;
20406
20722
  addPanel: string;
20407
20723
  removePanel: string;
20724
+ showDetails: string;
20725
+ hideDetails: string;
20408
20726
  choices_Item: string;
20409
20727
  matrix_column: string;
20410
20728
  matrix_row: string;
@@ -20444,6 +20762,8 @@ declare module "localization/german" {
20444
20762
  tagboxDoneButtonCaption: string;
20445
20763
  selectToRankEmptyRankedAreaText: string;
20446
20764
  selectToRankEmptyUnrankedAreaText: string;
20765
+ ok: string;
20766
+ cancel: string;
20447
20767
  };
20448
20768
  }
20449
20769
  declare module "localization/greek" {
@@ -20472,6 +20792,7 @@ declare module "localization/greek" {
20472
20792
  requiredError: string;
20473
20793
  requiredErrorInPanel: string;
20474
20794
  requiredInAllRowsError: string;
20795
+ eachRowUniqueError: string;
20475
20796
  numericError: string;
20476
20797
  minError: string;
20477
20798
  maxError: string;
@@ -20489,6 +20810,7 @@ declare module "localization/greek" {
20489
20810
  urlRequestError: string;
20490
20811
  urlGetChoicesError: string;
20491
20812
  exceedMaxSize: string;
20813
+ noUploadFilesHandler: string;
20492
20814
  otherRequiredError: string;
20493
20815
  uploadingFile: string;
20494
20816
  loadingFile: string;
@@ -20503,6 +20825,8 @@ declare module "localization/greek" {
20503
20825
  emptyRowsText: string;
20504
20826
  addPanel: string;
20505
20827
  removePanel: string;
20828
+ showDetails: string;
20829
+ hideDetails: string;
20506
20830
  choices_Item: string;
20507
20831
  matrix_column: string;
20508
20832
  matrix_row: string;
@@ -20542,6 +20866,8 @@ declare module "localization/greek" {
20542
20866
  tagboxDoneButtonCaption: string;
20543
20867
  selectToRankEmptyRankedAreaText: string;
20544
20868
  selectToRankEmptyUnrankedAreaText: string;
20869
+ ok: string;
20870
+ cancel: string;
20545
20871
  };
20546
20872
  }
20547
20873
  declare module "localization/hebrew" {
@@ -20570,6 +20896,7 @@ declare module "localization/hebrew" {
20570
20896
  requiredError: string;
20571
20897
  requiredErrorInPanel: string;
20572
20898
  requiredInAllRowsError: string;
20899
+ eachRowUniqueError: string;
20573
20900
  numericError: string;
20574
20901
  minError: string;
20575
20902
  maxError: string;
@@ -20587,6 +20914,7 @@ declare module "localization/hebrew" {
20587
20914
  urlRequestError: string;
20588
20915
  urlGetChoicesError: string;
20589
20916
  exceedMaxSize: string;
20917
+ noUploadFilesHandler: string;
20590
20918
  otherRequiredError: string;
20591
20919
  uploadingFile: string;
20592
20920
  loadingFile: string;
@@ -20601,6 +20929,8 @@ declare module "localization/hebrew" {
20601
20929
  emptyRowsText: string;
20602
20930
  addPanel: string;
20603
20931
  removePanel: string;
20932
+ showDetails: string;
20933
+ hideDetails: string;
20604
20934
  choices_Item: string;
20605
20935
  matrix_column: string;
20606
20936
  matrix_row: string;
@@ -20640,6 +20970,8 @@ declare module "localization/hebrew" {
20640
20970
  tagboxDoneButtonCaption: string;
20641
20971
  selectToRankEmptyRankedAreaText: string;
20642
20972
  selectToRankEmptyUnrankedAreaText: string;
20973
+ ok: string;
20974
+ cancel: string;
20643
20975
  };
20644
20976
  }
20645
20977
  declare module "localization/hindi" {
@@ -20668,6 +21000,7 @@ declare module "localization/hindi" {
20668
21000
  requiredError: string;
20669
21001
  requiredErrorInPanel: string;
20670
21002
  requiredInAllRowsError: string;
21003
+ eachRowUniqueError: string;
20671
21004
  numericError: string;
20672
21005
  minError: string;
20673
21006
  maxError: string;
@@ -20685,6 +21018,7 @@ declare module "localization/hindi" {
20685
21018
  urlRequestError: string;
20686
21019
  urlGetChoicesError: string;
20687
21020
  exceedMaxSize: string;
21021
+ noUploadFilesHandler: string;
20688
21022
  otherRequiredError: string;
20689
21023
  uploadingFile: string;
20690
21024
  loadingFile: string;
@@ -20699,6 +21033,8 @@ declare module "localization/hindi" {
20699
21033
  emptyRowsText: string;
20700
21034
  addPanel: string;
20701
21035
  removePanel: string;
21036
+ showDetails: string;
21037
+ hideDetails: string;
20702
21038
  choices_Item: string;
20703
21039
  matrix_column: string;
20704
21040
  matrix_row: string;
@@ -20738,6 +21074,8 @@ declare module "localization/hindi" {
20738
21074
  tagboxDoneButtonCaption: string;
20739
21075
  selectToRankEmptyRankedAreaText: string;
20740
21076
  selectToRankEmptyUnrankedAreaText: string;
21077
+ ok: string;
21078
+ cancel: string;
20741
21079
  };
20742
21080
  }
20743
21081
  declare module "localization/hungarian" {
@@ -20766,6 +21104,7 @@ declare module "localization/hungarian" {
20766
21104
  requiredError: string;
20767
21105
  requiredErrorInPanel: string;
20768
21106
  requiredInAllRowsError: string;
21107
+ eachRowUniqueError: string;
20769
21108
  numericError: string;
20770
21109
  minError: string;
20771
21110
  maxError: string;
@@ -20783,6 +21122,7 @@ declare module "localization/hungarian" {
20783
21122
  urlRequestError: string;
20784
21123
  urlGetChoicesError: string;
20785
21124
  exceedMaxSize: string;
21125
+ noUploadFilesHandler: string;
20786
21126
  otherRequiredError: string;
20787
21127
  uploadingFile: string;
20788
21128
  loadingFile: string;
@@ -20797,6 +21137,8 @@ declare module "localization/hungarian" {
20797
21137
  emptyRowsText: string;
20798
21138
  addPanel: string;
20799
21139
  removePanel: string;
21140
+ showDetails: string;
21141
+ hideDetails: string;
20800
21142
  choices_Item: string;
20801
21143
  matrix_column: string;
20802
21144
  matrix_row: string;
@@ -20836,6 +21178,8 @@ declare module "localization/hungarian" {
20836
21178
  tagboxDoneButtonCaption: string;
20837
21179
  selectToRankEmptyRankedAreaText: string;
20838
21180
  selectToRankEmptyUnrankedAreaText: string;
21181
+ ok: string;
21182
+ cancel: string;
20839
21183
  };
20840
21184
  }
20841
21185
  declare module "localization/icelandic" {
@@ -20864,6 +21208,7 @@ declare module "localization/icelandic" {
20864
21208
  requiredError: string;
20865
21209
  requiredErrorInPanel: string;
20866
21210
  requiredInAllRowsError: string;
21211
+ eachRowUniqueError: string;
20867
21212
  numericError: string;
20868
21213
  minError: string;
20869
21214
  maxError: string;
@@ -20881,6 +21226,7 @@ declare module "localization/icelandic" {
20881
21226
  urlRequestError: string;
20882
21227
  urlGetChoicesError: string;
20883
21228
  exceedMaxSize: string;
21229
+ noUploadFilesHandler: string;
20884
21230
  otherRequiredError: string;
20885
21231
  uploadingFile: string;
20886
21232
  loadingFile: string;
@@ -20895,6 +21241,8 @@ declare module "localization/icelandic" {
20895
21241
  emptyRowsText: string;
20896
21242
  addPanel: string;
20897
21243
  removePanel: string;
21244
+ showDetails: string;
21245
+ hideDetails: string;
20898
21246
  choices_Item: string;
20899
21247
  matrix_column: string;
20900
21248
  matrix_row: string;
@@ -20934,6 +21282,8 @@ declare module "localization/icelandic" {
20934
21282
  tagboxDoneButtonCaption: string;
20935
21283
  selectToRankEmptyRankedAreaText: string;
20936
21284
  selectToRankEmptyUnrankedAreaText: string;
21285
+ ok: string;
21286
+ cancel: string;
20937
21287
  };
20938
21288
  }
20939
21289
  declare module "localization/indonesian" {
@@ -20962,6 +21312,7 @@ declare module "localization/indonesian" {
20962
21312
  requiredError: string;
20963
21313
  requiredErrorInPanel: string;
20964
21314
  requiredInAllRowsError: string;
21315
+ eachRowUniqueError: string;
20965
21316
  numericError: string;
20966
21317
  minError: string;
20967
21318
  maxError: string;
@@ -20979,6 +21330,7 @@ declare module "localization/indonesian" {
20979
21330
  urlRequestError: string;
20980
21331
  urlGetChoicesError: string;
20981
21332
  exceedMaxSize: string;
21333
+ noUploadFilesHandler: string;
20982
21334
  otherRequiredError: string;
20983
21335
  uploadingFile: string;
20984
21336
  loadingFile: string;
@@ -20993,6 +21345,8 @@ declare module "localization/indonesian" {
20993
21345
  emptyRowsText: string;
20994
21346
  addPanel: string;
20995
21347
  removePanel: string;
21348
+ showDetails: string;
21349
+ hideDetails: string;
20996
21350
  choices_Item: string;
20997
21351
  matrix_column: string;
20998
21352
  matrix_row: string;
@@ -21032,6 +21386,8 @@ declare module "localization/indonesian" {
21032
21386
  tagboxDoneButtonCaption: string;
21033
21387
  selectToRankEmptyRankedAreaText: string;
21034
21388
  selectToRankEmptyUnrankedAreaText: string;
21389
+ ok: string;
21390
+ cancel: string;
21035
21391
  };
21036
21392
  }
21037
21393
  declare module "localization/italian" {
@@ -21060,6 +21416,7 @@ declare module "localization/italian" {
21060
21416
  requiredError: string;
21061
21417
  requiredErrorInPanel: string;
21062
21418
  requiredInAllRowsError: string;
21419
+ eachRowUniqueError: string;
21063
21420
  numericError: string;
21064
21421
  minError: string;
21065
21422
  maxError: string;
@@ -21077,6 +21434,7 @@ declare module "localization/italian" {
21077
21434
  urlRequestError: string;
21078
21435
  urlGetChoicesError: string;
21079
21436
  exceedMaxSize: string;
21437
+ noUploadFilesHandler: string;
21080
21438
  otherRequiredError: string;
21081
21439
  uploadingFile: string;
21082
21440
  loadingFile: string;
@@ -21091,6 +21449,8 @@ declare module "localization/italian" {
21091
21449
  emptyRowsText: string;
21092
21450
  addPanel: string;
21093
21451
  removePanel: string;
21452
+ showDetails: string;
21453
+ hideDetails: string;
21094
21454
  choices_Item: string;
21095
21455
  matrix_column: string;
21096
21456
  matrix_row: string;
@@ -21130,6 +21490,8 @@ declare module "localization/italian" {
21130
21490
  tagboxDoneButtonCaption: string;
21131
21491
  selectToRankEmptyRankedAreaText: string;
21132
21492
  selectToRankEmptyUnrankedAreaText: string;
21493
+ ok: string;
21494
+ cancel: string;
21133
21495
  };
21134
21496
  }
21135
21497
  declare module "localization/japanese" {
@@ -21158,6 +21520,7 @@ declare module "localization/japanese" {
21158
21520
  requiredError: string;
21159
21521
  requiredErrorInPanel: string;
21160
21522
  requiredInAllRowsError: string;
21523
+ eachRowUniqueError: string;
21161
21524
  numericError: string;
21162
21525
  minError: string;
21163
21526
  maxError: string;
@@ -21175,6 +21538,7 @@ declare module "localization/japanese" {
21175
21538
  urlRequestError: string;
21176
21539
  urlGetChoicesError: string;
21177
21540
  exceedMaxSize: string;
21541
+ noUploadFilesHandler: string;
21178
21542
  otherRequiredError: string;
21179
21543
  uploadingFile: string;
21180
21544
  loadingFile: string;
@@ -21189,6 +21553,8 @@ declare module "localization/japanese" {
21189
21553
  emptyRowsText: string;
21190
21554
  addPanel: string;
21191
21555
  removePanel: string;
21556
+ showDetails: string;
21557
+ hideDetails: string;
21192
21558
  choices_Item: string;
21193
21559
  matrix_column: string;
21194
21560
  matrix_row: string;
@@ -21228,6 +21594,8 @@ declare module "localization/japanese" {
21228
21594
  tagboxDoneButtonCaption: string;
21229
21595
  selectToRankEmptyRankedAreaText: string;
21230
21596
  selectToRankEmptyUnrankedAreaText: string;
21597
+ ok: string;
21598
+ cancel: string;
21231
21599
  };
21232
21600
  }
21233
21601
  declare module "localization/kazakh" {
@@ -21256,6 +21624,7 @@ declare module "localization/kazakh" {
21256
21624
  requiredError: string;
21257
21625
  requiredErrorInPanel: string;
21258
21626
  requiredInAllRowsError: string;
21627
+ eachRowUniqueError: string;
21259
21628
  numericError: string;
21260
21629
  minError: string;
21261
21630
  maxError: string;
@@ -21273,6 +21642,7 @@ declare module "localization/kazakh" {
21273
21642
  urlRequestError: string;
21274
21643
  urlGetChoicesError: string;
21275
21644
  exceedMaxSize: string;
21645
+ noUploadFilesHandler: string;
21276
21646
  otherRequiredError: string;
21277
21647
  uploadingFile: string;
21278
21648
  loadingFile: string;
@@ -21287,6 +21657,8 @@ declare module "localization/kazakh" {
21287
21657
  emptyRowsText: string;
21288
21658
  addPanel: string;
21289
21659
  removePanel: string;
21660
+ showDetails: string;
21661
+ hideDetails: string;
21290
21662
  choices_Item: string;
21291
21663
  matrix_column: string;
21292
21664
  matrix_row: string;
@@ -21326,6 +21698,8 @@ declare module "localization/kazakh" {
21326
21698
  tagboxDoneButtonCaption: string;
21327
21699
  selectToRankEmptyRankedAreaText: string;
21328
21700
  selectToRankEmptyUnrankedAreaText: string;
21701
+ ok: string;
21702
+ cancel: string;
21329
21703
  };
21330
21704
  }
21331
21705
  declare module "localization/korean" {
@@ -21354,6 +21728,7 @@ declare module "localization/korean" {
21354
21728
  requiredError: string;
21355
21729
  requiredErrorInPanel: string;
21356
21730
  requiredInAllRowsError: string;
21731
+ eachRowUniqueError: string;
21357
21732
  numericError: string;
21358
21733
  minError: string;
21359
21734
  maxError: string;
@@ -21371,6 +21746,7 @@ declare module "localization/korean" {
21371
21746
  urlRequestError: string;
21372
21747
  urlGetChoicesError: string;
21373
21748
  exceedMaxSize: string;
21749
+ noUploadFilesHandler: string;
21374
21750
  otherRequiredError: string;
21375
21751
  uploadingFile: string;
21376
21752
  loadingFile: string;
@@ -21385,6 +21761,8 @@ declare module "localization/korean" {
21385
21761
  emptyRowsText: string;
21386
21762
  addPanel: string;
21387
21763
  removePanel: string;
21764
+ showDetails: string;
21765
+ hideDetails: string;
21388
21766
  choices_Item: string;
21389
21767
  matrix_column: string;
21390
21768
  matrix_row: string;
@@ -21424,6 +21802,8 @@ declare module "localization/korean" {
21424
21802
  tagboxDoneButtonCaption: string;
21425
21803
  selectToRankEmptyRankedAreaText: string;
21426
21804
  selectToRankEmptyUnrankedAreaText: string;
21805
+ ok: string;
21806
+ cancel: string;
21427
21807
  };
21428
21808
  }
21429
21809
  declare module "localization/latvian" {
@@ -21452,6 +21832,7 @@ declare module "localization/latvian" {
21452
21832
  requiredError: string;
21453
21833
  requiredErrorInPanel: string;
21454
21834
  requiredInAllRowsError: string;
21835
+ eachRowUniqueError: string;
21455
21836
  numericError: string;
21456
21837
  minError: string;
21457
21838
  maxError: string;
@@ -21469,6 +21850,7 @@ declare module "localization/latvian" {
21469
21850
  urlRequestError: string;
21470
21851
  urlGetChoicesError: string;
21471
21852
  exceedMaxSize: string;
21853
+ noUploadFilesHandler: string;
21472
21854
  otherRequiredError: string;
21473
21855
  uploadingFile: string;
21474
21856
  loadingFile: string;
@@ -21483,6 +21865,8 @@ declare module "localization/latvian" {
21483
21865
  emptyRowsText: string;
21484
21866
  addPanel: string;
21485
21867
  removePanel: string;
21868
+ showDetails: string;
21869
+ hideDetails: string;
21486
21870
  choices_Item: string;
21487
21871
  matrix_column: string;
21488
21872
  matrix_row: string;
@@ -21522,6 +21906,8 @@ declare module "localization/latvian" {
21522
21906
  tagboxDoneButtonCaption: string;
21523
21907
  selectToRankEmptyRankedAreaText: string;
21524
21908
  selectToRankEmptyUnrankedAreaText: string;
21909
+ ok: string;
21910
+ cancel: string;
21525
21911
  };
21526
21912
  }
21527
21913
  declare module "localization/lithuanian" {
@@ -21550,6 +21936,7 @@ declare module "localization/lithuanian" {
21550
21936
  requiredError: string;
21551
21937
  requiredErrorInPanel: string;
21552
21938
  requiredInAllRowsError: string;
21939
+ eachRowUniqueError: string;
21553
21940
  numericError: string;
21554
21941
  minError: string;
21555
21942
  maxError: string;
@@ -21567,6 +21954,7 @@ declare module "localization/lithuanian" {
21567
21954
  urlRequestError: string;
21568
21955
  urlGetChoicesError: string;
21569
21956
  exceedMaxSize: string;
21957
+ noUploadFilesHandler: string;
21570
21958
  otherRequiredError: string;
21571
21959
  uploadingFile: string;
21572
21960
  loadingFile: string;
@@ -21581,6 +21969,8 @@ declare module "localization/lithuanian" {
21581
21969
  emptyRowsText: string;
21582
21970
  addPanel: string;
21583
21971
  removePanel: string;
21972
+ showDetails: string;
21973
+ hideDetails: string;
21584
21974
  choices_Item: string;
21585
21975
  matrix_column: string;
21586
21976
  matrix_row: string;
@@ -21620,6 +22010,8 @@ declare module "localization/lithuanian" {
21620
22010
  tagboxDoneButtonCaption: string;
21621
22011
  selectToRankEmptyRankedAreaText: string;
21622
22012
  selectToRankEmptyUnrankedAreaText: string;
22013
+ ok: string;
22014
+ cancel: string;
21623
22015
  };
21624
22016
  }
21625
22017
  declare module "localization/macedonian" {
@@ -21648,6 +22040,7 @@ declare module "localization/macedonian" {
21648
22040
  requiredError: string;
21649
22041
  requiredErrorInPanel: string;
21650
22042
  requiredInAllRowsError: string;
22043
+ eachRowUniqueError: string;
21651
22044
  numericError: string;
21652
22045
  minError: string;
21653
22046
  maxError: string;
@@ -21665,6 +22058,7 @@ declare module "localization/macedonian" {
21665
22058
  urlRequestError: string;
21666
22059
  urlGetChoicesError: string;
21667
22060
  exceedMaxSize: string;
22061
+ noUploadFilesHandler: string;
21668
22062
  otherRequiredError: string;
21669
22063
  uploadingFile: string;
21670
22064
  loadingFile: string;
@@ -21679,6 +22073,8 @@ declare module "localization/macedonian" {
21679
22073
  emptyRowsText: string;
21680
22074
  addPanel: string;
21681
22075
  removePanel: string;
22076
+ showDetails: string;
22077
+ hideDetails: string;
21682
22078
  choices_Item: string;
21683
22079
  matrix_column: string;
21684
22080
  matrix_row: string;
@@ -21718,6 +22114,8 @@ declare module "localization/macedonian" {
21718
22114
  tagboxDoneButtonCaption: string;
21719
22115
  selectToRankEmptyRankedAreaText: string;
21720
22116
  selectToRankEmptyUnrankedAreaText: string;
22117
+ ok: string;
22118
+ cancel: string;
21721
22119
  };
21722
22120
  }
21723
22121
  declare module "localization/malay" {
@@ -21746,6 +22144,7 @@ declare module "localization/malay" {
21746
22144
  requiredError: string;
21747
22145
  requiredErrorInPanel: string;
21748
22146
  requiredInAllRowsError: string;
22147
+ eachRowUniqueError: string;
21749
22148
  numericError: string;
21750
22149
  minError: string;
21751
22150
  maxError: string;
@@ -21763,6 +22162,7 @@ declare module "localization/malay" {
21763
22162
  urlRequestError: string;
21764
22163
  urlGetChoicesError: string;
21765
22164
  exceedMaxSize: string;
22165
+ noUploadFilesHandler: string;
21766
22166
  otherRequiredError: string;
21767
22167
  uploadingFile: string;
21768
22168
  loadingFile: string;
@@ -21777,6 +22177,8 @@ declare module "localization/malay" {
21777
22177
  emptyRowsText: string;
21778
22178
  addPanel: string;
21779
22179
  removePanel: string;
22180
+ showDetails: string;
22181
+ hideDetails: string;
21780
22182
  choices_Item: string;
21781
22183
  matrix_column: string;
21782
22184
  matrix_row: string;
@@ -21816,6 +22218,8 @@ declare module "localization/malay" {
21816
22218
  tagboxDoneButtonCaption: string;
21817
22219
  selectToRankEmptyRankedAreaText: string;
21818
22220
  selectToRankEmptyUnrankedAreaText: string;
22221
+ ok: string;
22222
+ cancel: string;
21819
22223
  };
21820
22224
  }
21821
22225
  declare module "localization/norwegian" {
@@ -21844,6 +22248,7 @@ declare module "localization/norwegian" {
21844
22248
  requiredError: string;
21845
22249
  requiredErrorInPanel: string;
21846
22250
  requiredInAllRowsError: string;
22251
+ eachRowUniqueError: string;
21847
22252
  numericError: string;
21848
22253
  minError: string;
21849
22254
  maxError: string;
@@ -21861,6 +22266,7 @@ declare module "localization/norwegian" {
21861
22266
  urlRequestError: string;
21862
22267
  urlGetChoicesError: string;
21863
22268
  exceedMaxSize: string;
22269
+ noUploadFilesHandler: string;
21864
22270
  otherRequiredError: string;
21865
22271
  uploadingFile: string;
21866
22272
  loadingFile: string;
@@ -21875,6 +22281,8 @@ declare module "localization/norwegian" {
21875
22281
  emptyRowsText: string;
21876
22282
  addPanel: string;
21877
22283
  removePanel: string;
22284
+ showDetails: string;
22285
+ hideDetails: string;
21878
22286
  choices_Item: string;
21879
22287
  matrix_column: string;
21880
22288
  matrix_row: string;
@@ -21914,6 +22322,8 @@ declare module "localization/norwegian" {
21914
22322
  tagboxDoneButtonCaption: string;
21915
22323
  selectToRankEmptyRankedAreaText: string;
21916
22324
  selectToRankEmptyUnrankedAreaText: string;
22325
+ ok: string;
22326
+ cancel: string;
21917
22327
  };
21918
22328
  }
21919
22329
  declare module "localization/persian" {
@@ -21942,6 +22352,7 @@ declare module "localization/persian" {
21942
22352
  requiredError: string;
21943
22353
  requiredErrorInPanel: string;
21944
22354
  requiredInAllRowsError: string;
22355
+ eachRowUniqueError: string;
21945
22356
  numericError: string;
21946
22357
  minError: string;
21947
22358
  maxError: string;
@@ -21959,6 +22370,7 @@ declare module "localization/persian" {
21959
22370
  urlRequestError: string;
21960
22371
  urlGetChoicesError: string;
21961
22372
  exceedMaxSize: string;
22373
+ noUploadFilesHandler: string;
21962
22374
  otherRequiredError: string;
21963
22375
  uploadingFile: string;
21964
22376
  loadingFile: string;
@@ -21973,6 +22385,8 @@ declare module "localization/persian" {
21973
22385
  emptyRowsText: string;
21974
22386
  addPanel: string;
21975
22387
  removePanel: string;
22388
+ showDetails: string;
22389
+ hideDetails: string;
21976
22390
  choices_Item: string;
21977
22391
  matrix_column: string;
21978
22392
  matrix_row: string;
@@ -22012,6 +22426,8 @@ declare module "localization/persian" {
22012
22426
  tagboxDoneButtonCaption: string;
22013
22427
  selectToRankEmptyRankedAreaText: string;
22014
22428
  selectToRankEmptyUnrankedAreaText: string;
22429
+ ok: string;
22430
+ cancel: string;
22015
22431
  };
22016
22432
  }
22017
22433
  declare module "localization/polish" {
@@ -22040,6 +22456,7 @@ declare module "localization/polish" {
22040
22456
  requiredError: string;
22041
22457
  requiredErrorInPanel: string;
22042
22458
  requiredInAllRowsError: string;
22459
+ eachRowUniqueError: string;
22043
22460
  numericError: string;
22044
22461
  minError: string;
22045
22462
  maxError: string;
@@ -22057,6 +22474,7 @@ declare module "localization/polish" {
22057
22474
  urlRequestError: string;
22058
22475
  urlGetChoicesError: string;
22059
22476
  exceedMaxSize: string;
22477
+ noUploadFilesHandler: string;
22060
22478
  otherRequiredError: string;
22061
22479
  uploadingFile: string;
22062
22480
  loadingFile: string;
@@ -22071,6 +22489,8 @@ declare module "localization/polish" {
22071
22489
  emptyRowsText: string;
22072
22490
  addPanel: string;
22073
22491
  removePanel: string;
22492
+ showDetails: string;
22493
+ hideDetails: string;
22074
22494
  choices_Item: string;
22075
22495
  matrix_column: string;
22076
22496
  matrix_row: string;
@@ -22110,6 +22530,8 @@ declare module "localization/polish" {
22110
22530
  tagboxDoneButtonCaption: string;
22111
22531
  selectToRankEmptyRankedAreaText: string;
22112
22532
  selectToRankEmptyUnrankedAreaText: string;
22533
+ ok: string;
22534
+ cancel: string;
22113
22535
  };
22114
22536
  }
22115
22537
  declare module "localization/portuguese" {
@@ -22138,6 +22560,7 @@ declare module "localization/portuguese" {
22138
22560
  requiredError: string;
22139
22561
  requiredErrorInPanel: string;
22140
22562
  requiredInAllRowsError: string;
22563
+ eachRowUniqueError: string;
22141
22564
  numericError: string;
22142
22565
  minError: string;
22143
22566
  maxError: string;
@@ -22155,6 +22578,7 @@ declare module "localization/portuguese" {
22155
22578
  urlRequestError: string;
22156
22579
  urlGetChoicesError: string;
22157
22580
  exceedMaxSize: string;
22581
+ noUploadFilesHandler: string;
22158
22582
  otherRequiredError: string;
22159
22583
  uploadingFile: string;
22160
22584
  loadingFile: string;
@@ -22169,6 +22593,8 @@ declare module "localization/portuguese" {
22169
22593
  emptyRowsText: string;
22170
22594
  addPanel: string;
22171
22595
  removePanel: string;
22596
+ showDetails: string;
22597
+ hideDetails: string;
22172
22598
  choices_Item: string;
22173
22599
  matrix_column: string;
22174
22600
  matrix_row: string;
@@ -22208,6 +22634,8 @@ declare module "localization/portuguese" {
22208
22634
  tagboxDoneButtonCaption: string;
22209
22635
  selectToRankEmptyRankedAreaText: string;
22210
22636
  selectToRankEmptyUnrankedAreaText: string;
22637
+ ok: string;
22638
+ cancel: string;
22211
22639
  };
22212
22640
  }
22213
22641
  declare module "localization/portuguese-br" {
@@ -22239,6 +22667,7 @@ declare module "localization/portuguese-br" {
22239
22667
  requiredError: string;
22240
22668
  requiredErrorInPanel: string;
22241
22669
  requiredInAllRowsError: string;
22670
+ eachRowUniqueError: string;
22242
22671
  numericError: string;
22243
22672
  minError: string;
22244
22673
  maxError: string;
@@ -22256,6 +22685,7 @@ declare module "localization/portuguese-br" {
22256
22685
  urlRequestError: string;
22257
22686
  urlGetChoicesError: string;
22258
22687
  exceedMaxSize: string;
22688
+ noUploadFilesHandler: string;
22259
22689
  otherRequiredError: string;
22260
22690
  uploadingFile: string;
22261
22691
  loadingFile: string;
@@ -22270,6 +22700,8 @@ declare module "localization/portuguese-br" {
22270
22700
  emptyRowsText: string;
22271
22701
  addPanel: string;
22272
22702
  removePanel: string;
22703
+ showDetails: string;
22704
+ hideDetails: string;
22273
22705
  choices_Item: string;
22274
22706
  matrix_column: string;
22275
22707
  matrix_row: string;
@@ -22309,6 +22741,8 @@ declare module "localization/portuguese-br" {
22309
22741
  tagboxDoneButtonCaption: string;
22310
22742
  selectToRankEmptyRankedAreaText: string;
22311
22743
  selectToRankEmptyUnrankedAreaText: string;
22744
+ ok: string;
22745
+ cancel: string;
22312
22746
  };
22313
22747
  }
22314
22748
  declare module "localization/romanian" {
@@ -22340,6 +22774,7 @@ declare module "localization/russian" {
22340
22774
  requiredError: string;
22341
22775
  requiredErrorInPanel: string;
22342
22776
  requiredInAllRowsError: string;
22777
+ eachRowUniqueError: string;
22343
22778
  numericError: string;
22344
22779
  minError: string;
22345
22780
  maxError: string;
@@ -22357,6 +22792,7 @@ declare module "localization/russian" {
22357
22792
  urlRequestError: string;
22358
22793
  urlGetChoicesError: string;
22359
22794
  exceedMaxSize: string;
22795
+ noUploadFilesHandler: string;
22360
22796
  otherRequiredError: string;
22361
22797
  uploadingFile: string;
22362
22798
  loadingFile: string;
@@ -22371,6 +22807,8 @@ declare module "localization/russian" {
22371
22807
  emptyRowsText: string;
22372
22808
  addPanel: string;
22373
22809
  removePanel: string;
22810
+ showDetails: string;
22811
+ hideDetails: string;
22374
22812
  choices_Item: string;
22375
22813
  matrix_column: string;
22376
22814
  matrix_row: string;
@@ -22410,6 +22848,8 @@ declare module "localization/russian" {
22410
22848
  tagboxDoneButtonCaption: string;
22411
22849
  selectToRankEmptyRankedAreaText: string;
22412
22850
  selectToRankEmptyUnrankedAreaText: string;
22851
+ ok: string;
22852
+ cancel: string;
22413
22853
  };
22414
22854
  }
22415
22855
  declare module "localization/serbian" {
@@ -22438,6 +22878,7 @@ declare module "localization/serbian" {
22438
22878
  requiredError: string;
22439
22879
  requiredErrorInPanel: string;
22440
22880
  requiredInAllRowsError: string;
22881
+ eachRowUniqueError: string;
22441
22882
  numericError: string;
22442
22883
  minError: string;
22443
22884
  maxError: string;
@@ -22455,6 +22896,7 @@ declare module "localization/serbian" {
22455
22896
  urlRequestError: string;
22456
22897
  urlGetChoicesError: string;
22457
22898
  exceedMaxSize: string;
22899
+ noUploadFilesHandler: string;
22458
22900
  otherRequiredError: string;
22459
22901
  uploadingFile: string;
22460
22902
  loadingFile: string;
@@ -22469,6 +22911,8 @@ declare module "localization/serbian" {
22469
22911
  emptyRowsText: string;
22470
22912
  addPanel: string;
22471
22913
  removePanel: string;
22914
+ showDetails: string;
22915
+ hideDetails: string;
22472
22916
  choices_Item: string;
22473
22917
  matrix_column: string;
22474
22918
  matrix_row: string;
@@ -22508,6 +22952,8 @@ declare module "localization/serbian" {
22508
22952
  tagboxDoneButtonCaption: string;
22509
22953
  selectToRankEmptyRankedAreaText: string;
22510
22954
  selectToRankEmptyUnrankedAreaText: string;
22955
+ ok: string;
22956
+ cancel: string;
22511
22957
  };
22512
22958
  }
22513
22959
  declare module "localization/simplified-chinese" {
@@ -22536,6 +22982,7 @@ declare module "localization/simplified-chinese" {
22536
22982
  requiredError: string;
22537
22983
  requiredErrorInPanel: string;
22538
22984
  requiredInAllRowsError: string;
22985
+ eachRowUniqueError: string;
22539
22986
  numericError: string;
22540
22987
  minError: string;
22541
22988
  maxError: string;
@@ -22553,6 +23000,7 @@ declare module "localization/simplified-chinese" {
22553
23000
  urlRequestError: string;
22554
23001
  urlGetChoicesError: string;
22555
23002
  exceedMaxSize: string;
23003
+ noUploadFilesHandler: string;
22556
23004
  otherRequiredError: string;
22557
23005
  uploadingFile: string;
22558
23006
  loadingFile: string;
@@ -22567,6 +23015,8 @@ declare module "localization/simplified-chinese" {
22567
23015
  emptyRowsText: string;
22568
23016
  addPanel: string;
22569
23017
  removePanel: string;
23018
+ showDetails: string;
23019
+ hideDetails: string;
22570
23020
  choices_Item: string;
22571
23021
  matrix_column: string;
22572
23022
  matrix_row: string;
@@ -22606,6 +23056,8 @@ declare module "localization/simplified-chinese" {
22606
23056
  tagboxDoneButtonCaption: string;
22607
23057
  selectToRankEmptyRankedAreaText: string;
22608
23058
  selectToRankEmptyUnrankedAreaText: string;
23059
+ ok: string;
23060
+ cancel: string;
22609
23061
  };
22610
23062
  }
22611
23063
  declare module "localization/slovak" {
@@ -22634,6 +23086,7 @@ declare module "localization/slovak" {
22634
23086
  requiredError: string;
22635
23087
  requiredErrorInPanel: string;
22636
23088
  requiredInAllRowsError: string;
23089
+ eachRowUniqueError: string;
22637
23090
  numericError: string;
22638
23091
  minError: string;
22639
23092
  maxError: string;
@@ -22651,6 +23104,7 @@ declare module "localization/slovak" {
22651
23104
  urlRequestError: string;
22652
23105
  urlGetChoicesError: string;
22653
23106
  exceedMaxSize: string;
23107
+ noUploadFilesHandler: string;
22654
23108
  otherRequiredError: string;
22655
23109
  uploadingFile: string;
22656
23110
  loadingFile: string;
@@ -22665,6 +23119,8 @@ declare module "localization/slovak" {
22665
23119
  emptyRowsText: string;
22666
23120
  addPanel: string;
22667
23121
  removePanel: string;
23122
+ showDetails: string;
23123
+ hideDetails: string;
22668
23124
  choices_Item: string;
22669
23125
  matrix_column: string;
22670
23126
  matrix_row: string;
@@ -22704,6 +23160,8 @@ declare module "localization/slovak" {
22704
23160
  tagboxDoneButtonCaption: string;
22705
23161
  selectToRankEmptyRankedAreaText: string;
22706
23162
  selectToRankEmptyUnrankedAreaText: string;
23163
+ ok: string;
23164
+ cancel: string;
22707
23165
  };
22708
23166
  }
22709
23167
  declare module "localization/spanish" {
@@ -22732,6 +23190,7 @@ declare module "localization/spanish" {
22732
23190
  requiredError: string;
22733
23191
  requiredErrorInPanel: string;
22734
23192
  requiredInAllRowsError: string;
23193
+ eachRowUniqueError: string;
22735
23194
  numericError: string;
22736
23195
  minError: string;
22737
23196
  maxError: string;
@@ -22749,6 +23208,7 @@ declare module "localization/spanish" {
22749
23208
  urlRequestError: string;
22750
23209
  urlGetChoicesError: string;
22751
23210
  exceedMaxSize: string;
23211
+ noUploadFilesHandler: string;
22752
23212
  otherRequiredError: string;
22753
23213
  uploadingFile: string;
22754
23214
  loadingFile: string;
@@ -22763,6 +23223,8 @@ declare module "localization/spanish" {
22763
23223
  emptyRowsText: string;
22764
23224
  addPanel: string;
22765
23225
  removePanel: string;
23226
+ showDetails: string;
23227
+ hideDetails: string;
22766
23228
  choices_Item: string;
22767
23229
  matrix_column: string;
22768
23230
  matrix_row: string;
@@ -22802,6 +23264,8 @@ declare module "localization/spanish" {
22802
23264
  tagboxDoneButtonCaption: string;
22803
23265
  selectToRankEmptyRankedAreaText: string;
22804
23266
  selectToRankEmptyUnrankedAreaText: string;
23267
+ ok: string;
23268
+ cancel: string;
22805
23269
  };
22806
23270
  }
22807
23271
  declare module "localization/swahili" {
@@ -22830,6 +23294,7 @@ declare module "localization/swahili" {
22830
23294
  requiredError: string;
22831
23295
  requiredErrorInPanel: string;
22832
23296
  requiredInAllRowsError: string;
23297
+ eachRowUniqueError: string;
22833
23298
  numericError: string;
22834
23299
  minError: string;
22835
23300
  maxError: string;
@@ -22847,6 +23312,7 @@ declare module "localization/swahili" {
22847
23312
  urlRequestError: string;
22848
23313
  urlGetChoicesError: string;
22849
23314
  exceedMaxSize: string;
23315
+ noUploadFilesHandler: string;
22850
23316
  otherRequiredError: string;
22851
23317
  uploadingFile: string;
22852
23318
  loadingFile: string;
@@ -22861,6 +23327,8 @@ declare module "localization/swahili" {
22861
23327
  emptyRowsText: string;
22862
23328
  addPanel: string;
22863
23329
  removePanel: string;
23330
+ showDetails: string;
23331
+ hideDetails: string;
22864
23332
  choices_Item: string;
22865
23333
  matrix_column: string;
22866
23334
  matrix_row: string;
@@ -22900,6 +23368,8 @@ declare module "localization/swahili" {
22900
23368
  tagboxDoneButtonCaption: string;
22901
23369
  selectToRankEmptyRankedAreaText: string;
22902
23370
  selectToRankEmptyUnrankedAreaText: string;
23371
+ ok: string;
23372
+ cancel: string;
22903
23373
  };
22904
23374
  }
22905
23375
  declare module "localization/swedish" {
@@ -22928,6 +23398,7 @@ declare module "localization/swedish" {
22928
23398
  requiredError: string;
22929
23399
  requiredErrorInPanel: string;
22930
23400
  requiredInAllRowsError: string;
23401
+ eachRowUniqueError: string;
22931
23402
  numericError: string;
22932
23403
  minError: string;
22933
23404
  maxError: string;
@@ -22945,6 +23416,7 @@ declare module "localization/swedish" {
22945
23416
  urlRequestError: string;
22946
23417
  urlGetChoicesError: string;
22947
23418
  exceedMaxSize: string;
23419
+ noUploadFilesHandler: string;
22948
23420
  otherRequiredError: string;
22949
23421
  uploadingFile: string;
22950
23422
  loadingFile: string;
@@ -22959,6 +23431,8 @@ declare module "localization/swedish" {
22959
23431
  emptyRowsText: string;
22960
23432
  addPanel: string;
22961
23433
  removePanel: string;
23434
+ showDetails: string;
23435
+ hideDetails: string;
22962
23436
  choices_Item: string;
22963
23437
  matrix_column: string;
22964
23438
  matrix_row: string;
@@ -22998,6 +23472,8 @@ declare module "localization/swedish" {
22998
23472
  tagboxDoneButtonCaption: string;
22999
23473
  selectToRankEmptyRankedAreaText: string;
23000
23474
  selectToRankEmptyUnrankedAreaText: string;
23475
+ ok: string;
23476
+ cancel: string;
23001
23477
  };
23002
23478
  }
23003
23479
  declare module "localization/tajik" {
@@ -23090,6 +23566,7 @@ declare module "localization/thai" {
23090
23566
  requiredError: string;
23091
23567
  requiredErrorInPanel: string;
23092
23568
  requiredInAllRowsError: string;
23569
+ eachRowUniqueError: string;
23093
23570
  numericError: string;
23094
23571
  minError: string;
23095
23572
  maxError: string;
@@ -23107,6 +23584,7 @@ declare module "localization/thai" {
23107
23584
  urlRequestError: string;
23108
23585
  urlGetChoicesError: string;
23109
23586
  exceedMaxSize: string;
23587
+ noUploadFilesHandler: string;
23110
23588
  otherRequiredError: string;
23111
23589
  uploadingFile: string;
23112
23590
  loadingFile: string;
@@ -23121,6 +23599,8 @@ declare module "localization/thai" {
23121
23599
  emptyRowsText: string;
23122
23600
  addPanel: string;
23123
23601
  removePanel: string;
23602
+ showDetails: string;
23603
+ hideDetails: string;
23124
23604
  choices_Item: string;
23125
23605
  matrix_column: string;
23126
23606
  matrix_row: string;
@@ -23160,6 +23640,8 @@ declare module "localization/thai" {
23160
23640
  tagboxDoneButtonCaption: string;
23161
23641
  selectToRankEmptyRankedAreaText: string;
23162
23642
  selectToRankEmptyUnrankedAreaText: string;
23643
+ ok: string;
23644
+ cancel: string;
23163
23645
  };
23164
23646
  }
23165
23647
  declare module "localization/traditional-chinese" {
@@ -23188,6 +23670,7 @@ declare module "localization/traditional-chinese" {
23188
23670
  requiredError: string;
23189
23671
  requiredErrorInPanel: string;
23190
23672
  requiredInAllRowsError: string;
23673
+ eachRowUniqueError: string;
23191
23674
  numericError: string;
23192
23675
  minError: string;
23193
23676
  maxError: string;
@@ -23205,6 +23688,7 @@ declare module "localization/traditional-chinese" {
23205
23688
  urlRequestError: string;
23206
23689
  urlGetChoicesError: string;
23207
23690
  exceedMaxSize: string;
23691
+ noUploadFilesHandler: string;
23208
23692
  otherRequiredError: string;
23209
23693
  uploadingFile: string;
23210
23694
  loadingFile: string;
@@ -23219,6 +23703,8 @@ declare module "localization/traditional-chinese" {
23219
23703
  emptyRowsText: string;
23220
23704
  addPanel: string;
23221
23705
  removePanel: string;
23706
+ showDetails: string;
23707
+ hideDetails: string;
23222
23708
  choices_Item: string;
23223
23709
  matrix_column: string;
23224
23710
  matrix_row: string;
@@ -23258,6 +23744,8 @@ declare module "localization/traditional-chinese" {
23258
23744
  tagboxDoneButtonCaption: string;
23259
23745
  selectToRankEmptyRankedAreaText: string;
23260
23746
  selectToRankEmptyUnrankedAreaText: string;
23747
+ ok: string;
23748
+ cancel: string;
23261
23749
  };
23262
23750
  }
23263
23751
  declare module "localization/turkish" {
@@ -23286,6 +23774,7 @@ declare module "localization/turkish" {
23286
23774
  requiredError: string;
23287
23775
  requiredErrorInPanel: string;
23288
23776
  requiredInAllRowsError: string;
23777
+ eachRowUniqueError: string;
23289
23778
  numericError: string;
23290
23779
  minError: string;
23291
23780
  maxError: string;
@@ -23303,6 +23792,7 @@ declare module "localization/turkish" {
23303
23792
  urlRequestError: string;
23304
23793
  urlGetChoicesError: string;
23305
23794
  exceedMaxSize: string;
23795
+ noUploadFilesHandler: string;
23306
23796
  otherRequiredError: string;
23307
23797
  uploadingFile: string;
23308
23798
  loadingFile: string;
@@ -23317,6 +23807,8 @@ declare module "localization/turkish" {
23317
23807
  emptyRowsText: string;
23318
23808
  addPanel: string;
23319
23809
  removePanel: string;
23810
+ showDetails: string;
23811
+ hideDetails: string;
23320
23812
  choices_Item: string;
23321
23813
  matrix_column: string;
23322
23814
  matrix_row: string;
@@ -23356,6 +23848,8 @@ declare module "localization/turkish" {
23356
23848
  tagboxDoneButtonCaption: string;
23357
23849
  selectToRankEmptyRankedAreaText: string;
23358
23850
  selectToRankEmptyUnrankedAreaText: string;
23851
+ ok: string;
23852
+ cancel: string;
23359
23853
  };
23360
23854
  }
23361
23855
  declare module "localization/ukrainian" {
@@ -23384,6 +23878,7 @@ declare module "localization/ukrainian" {
23384
23878
  requiredError: string;
23385
23879
  requiredErrorInPanel: string;
23386
23880
  requiredInAllRowsError: string;
23881
+ eachRowUniqueError: string;
23387
23882
  numericError: string;
23388
23883
  minError: string;
23389
23884
  maxError: string;
@@ -23401,6 +23896,7 @@ declare module "localization/ukrainian" {
23401
23896
  urlRequestError: string;
23402
23897
  urlGetChoicesError: string;
23403
23898
  exceedMaxSize: string;
23899
+ noUploadFilesHandler: string;
23404
23900
  otherRequiredError: string;
23405
23901
  uploadingFile: string;
23406
23902
  loadingFile: string;
@@ -23415,6 +23911,8 @@ declare module "localization/ukrainian" {
23415
23911
  emptyRowsText: string;
23416
23912
  addPanel: string;
23417
23913
  removePanel: string;
23914
+ showDetails: string;
23915
+ hideDetails: string;
23418
23916
  choices_Item: string;
23419
23917
  matrix_column: string;
23420
23918
  matrix_row: string;
@@ -23454,6 +23952,8 @@ declare module "localization/ukrainian" {
23454
23952
  tagboxDoneButtonCaption: string;
23455
23953
  selectToRankEmptyRankedAreaText: string;
23456
23954
  selectToRankEmptyUnrankedAreaText: string;
23955
+ ok: string;
23956
+ cancel: string;
23457
23957
  };
23458
23958
  }
23459
23959
  declare module "localization/vietnamese" {
@@ -23482,6 +23982,7 @@ declare module "localization/vietnamese" {
23482
23982
  requiredError: string;
23483
23983
  requiredErrorInPanel: string;
23484
23984
  requiredInAllRowsError: string;
23985
+ eachRowUniqueError: string;
23485
23986
  numericError: string;
23486
23987
  minError: string;
23487
23988
  maxError: string;
@@ -23499,6 +24000,7 @@ declare module "localization/vietnamese" {
23499
24000
  urlRequestError: string;
23500
24001
  urlGetChoicesError: string;
23501
24002
  exceedMaxSize: string;
24003
+ noUploadFilesHandler: string;
23502
24004
  otherRequiredError: string;
23503
24005
  uploadingFile: string;
23504
24006
  loadingFile: string;
@@ -23513,6 +24015,8 @@ declare module "localization/vietnamese" {
23513
24015
  emptyRowsText: string;
23514
24016
  addPanel: string;
23515
24017
  removePanel: string;
24018
+ showDetails: string;
24019
+ hideDetails: string;
23516
24020
  choices_Item: string;
23517
24021
  matrix_column: string;
23518
24022
  matrix_row: string;
@@ -23552,6 +24056,8 @@ declare module "localization/vietnamese" {
23552
24056
  tagboxDoneButtonCaption: string;
23553
24057
  selectToRankEmptyRankedAreaText: string;
23554
24058
  selectToRankEmptyUnrankedAreaText: string;
24059
+ ok: string;
24060
+ cancel: string;
23555
24061
  };
23556
24062
  }
23557
24063
  declare module "localization/welsh" {
@@ -23580,6 +24086,7 @@ declare module "localization/welsh" {
23580
24086
  requiredError: string;
23581
24087
  requiredErrorInPanel: string;
23582
24088
  requiredInAllRowsError: string;
24089
+ eachRowUniqueError: string;
23583
24090
  numericError: string;
23584
24091
  minError: string;
23585
24092
  maxError: string;
@@ -23597,6 +24104,7 @@ declare module "localization/welsh" {
23597
24104
  urlRequestError: string;
23598
24105
  urlGetChoicesError: string;
23599
24106
  exceedMaxSize: string;
24107
+ noUploadFilesHandler: string;
23600
24108
  otherRequiredError: string;
23601
24109
  uploadingFile: string;
23602
24110
  loadingFile: string;
@@ -23611,6 +24119,8 @@ declare module "localization/welsh" {
23611
24119
  emptyRowsText: string;
23612
24120
  addPanel: string;
23613
24121
  removePanel: string;
24122
+ showDetails: string;
24123
+ hideDetails: string;
23614
24124
  choices_Item: string;
23615
24125
  matrix_column: string;
23616
24126
  matrix_row: string;
@@ -23650,6 +24160,8 @@ declare module "localization/welsh" {
23650
24160
  tagboxDoneButtonCaption: string;
23651
24161
  selectToRankEmptyRankedAreaText: string;
23652
24162
  selectToRankEmptyUnrankedAreaText: string;
24163
+ ok: string;
24164
+ cancel: string;
23653
24165
  };
23654
24166
  }
23655
24167
  declare module "localization/telugu" {
@@ -23678,6 +24190,7 @@ declare module "localization/telugu" {
23678
24190
  requiredError: string;
23679
24191
  requiredErrorInPanel: string;
23680
24192
  requiredInAllRowsError: string;
24193
+ eachRowUniqueError: string;
23681
24194
  numericError: string;
23682
24195
  minError: string;
23683
24196
  maxError: string;
@@ -23695,6 +24208,7 @@ declare module "localization/telugu" {
23695
24208
  urlRequestError: string;
23696
24209
  urlGetChoicesError: string;
23697
24210
  exceedMaxSize: string;
24211
+ noUploadFilesHandler: string;
23698
24212
  otherRequiredError: string;
23699
24213
  uploadingFile: string;
23700
24214
  loadingFile: string;
@@ -23709,6 +24223,8 @@ declare module "localization/telugu" {
23709
24223
  emptyRowsText: string;
23710
24224
  addPanel: string;
23711
24225
  removePanel: string;
24226
+ showDetails: string;
24227
+ hideDetails: string;
23712
24228
  choices_Item: string;
23713
24229
  matrix_column: string;
23714
24230
  matrix_row: string;
@@ -23748,6 +24264,8 @@ declare module "localization/telugu" {
23748
24264
  tagboxDoneButtonCaption: string;
23749
24265
  selectToRankEmptyRankedAreaText: string;
23750
24266
  selectToRankEmptyUnrankedAreaText: string;
24267
+ ok: string;
24268
+ cancel: string;
23751
24269
  };
23752
24270
  }
23753
24271
  declare module "entries/chunks/localization" {