survey-react 1.9.123 → 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
  */
@@ -3946,6 +3982,8 @@ declare module "question_baseselect" {
3946
3982
  get isUsingCarryForward(): boolean;
3947
3983
  get carryForwardQuestionType(): string;
3948
3984
  private setCarryForwardQuestionType;
3985
+ get isUsingRestful(): boolean;
3986
+ updateIsUsingRestful(): void;
3949
3987
  supportGoNextPageError(): boolean;
3950
3988
  isLayoutTypeSupported(layoutType: string): boolean;
3951
3989
  localeChanged(): void;
@@ -4200,7 +4238,7 @@ declare module "question_baseselect" {
4200
4238
  get otherPlaceHolder(): string;
4201
4239
  set otherPlaceHolder(newValue: string);
4202
4240
  /**
4203
- * 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.
4204
4242
  * @see showOtherItem
4205
4243
  */
4206
4244
  get otherErrorText(): string;
@@ -4294,6 +4332,7 @@ declare module "question_baseselect" {
4294
4332
  private sortVisibleChoices;
4295
4333
  private sortArray;
4296
4334
  private randomizeArray;
4335
+ private get hasChoicesUrl();
4297
4336
  clearIncorrectValues(): void;
4298
4337
  protected hasValueToClearIncorrectValues(): boolean;
4299
4338
  protected clearValueIfInvisibleCore(reason: string): void;
@@ -4366,7 +4405,7 @@ declare module "question_baseselect" {
4366
4405
  colCountChangedCallback: () => void;
4367
4406
  constructor(name: string);
4368
4407
  /**
4369
- * 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.
4370
4409
  *
4371
4410
  * Set this property to 0 if you want to display all items in one line. The default value depends on the available width.
4372
4411
  * @see separateSpecialChoices
@@ -4503,6 +4542,9 @@ declare module "validator" {
4503
4542
  */
4504
4543
  get regex(): string;
4505
4544
  set regex(val: string);
4545
+ get insensitive(): boolean;
4546
+ set insensitive(val: boolean);
4547
+ private createRegExp;
4506
4548
  }
4507
4549
  /**
4508
4550
  * Validate e-mail address in the text input
@@ -4669,6 +4711,11 @@ declare module "question_matrixdropdowncolumn" {
4669
4711
  getCellAriaLabel(rowTitle: string, columnTitle: string): string;
4670
4712
  }
4671
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
+ */
4672
4719
  export class MatrixDropdownColumn extends Base implements ILocalizableOwner, IWrapperObject {
4673
4720
  static getColumnTypes(): Array<string>;
4674
4721
  private templateQuestionValue;
@@ -4690,12 +4737,39 @@ declare module "question_matrixdropdowncolumn" {
4690
4737
  get index(): number;
4691
4738
  setIndex(val: number): void;
4692
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
+ */
4693
4760
  get cellType(): string;
4694
4761
  set cellType(val: string);
4695
4762
  get templateQuestion(): Question;
4696
4763
  get value(): string;
4697
4764
  get isVisible(): boolean;
4698
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
+ */
4699
4773
  get visible(): boolean;
4700
4774
  set visible(val: boolean);
4701
4775
  get hasVisibleCell(): boolean;
@@ -4704,52 +4778,167 @@ declare module "question_matrixdropdowncolumn" {
4704
4778
  get getVisibleChoicesInCell(): Array<any>;
4705
4779
  setVisibleChoicesInCell(val: Array<any>): void;
4706
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
+ */
4707
4787
  get name(): string;
4708
4788
  set name(val: string);
4789
+ /**
4790
+ * A user-friendly column caption to display. If `title` is undefined, [`name`](#name) is displayed instead.
4791
+ */
4709
4792
  get title(): string;
4710
4793
  set title(val: string);
4711
4794
  get locTitle(): LocalizableString;
4712
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
+ */
4713
4804
  get isRequired(): boolean;
4714
4805
  set isRequired(val: boolean);
4715
4806
  get isRenderedRequired(): boolean;
4716
4807
  set isRenderedRequired(val: boolean);
4717
4808
  updateIsRenderedRequired(val: boolean): void;
4718
4809
  get requiredText(): string;
4810
+ /**
4811
+ * Specifies a custom error message for a required column.
4812
+ * @see isRequired
4813
+ */
4719
4814
  get requiredErrorText(): string;
4720
4815
  set requiredErrorText(val: string);
4721
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
+ */
4722
4824
  get readOnly(): boolean;
4723
4825
  set readOnly(val: boolean);
4724
4826
  get hasOther(): boolean;
4725
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
+ */
4726
4834
  get visibleIf(): string;
4727
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
+ */
4728
4842
  get enableIf(): string;
4729
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
+ */
4730
4850
  get requiredIf(): string;
4731
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
+ */
4732
4858
  get resetValueIf(): string;
4733
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
+ */
4734
4866
  get defaultValueExpression(): string;
4735
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
+ */
4736
4874
  get setValueIf(): string;
4737
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
+ */
4738
4885
  get setValueExpession(): string;
4739
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
+ */
4740
4892
  get isUnique(): boolean;
4741
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
+ */
4742
4897
  get showInMultipleColumns(): boolean;
4743
4898
  set showInMultipleColumns(val: boolean);
4744
4899
  get isSupportMultipleColumns(): boolean;
4745
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
+ */
4746
4907
  get validators(): Array<SurveyValidator>;
4747
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
+ */
4748
4925
  get totalType(): string;
4749
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
+ */
4750
4932
  get totalExpression(): string;
4751
4933
  set totalExpression(val: string);
4752
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
+ */
4753
4942
  get totalFormat(): string;
4754
4943
  set totalFormat(val: string);
4755
4944
  get locTotalFormat(): LocalizableString;
@@ -4762,14 +4951,46 @@ declare module "question_matrixdropdowncolumn" {
4762
4951
  set totalMaximumFractionDigits(val: number);
4763
4952
  get totalMinimumFractionDigits(): number;
4764
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
+ */
4765
4969
  get totalDisplayStyle(): string;
4766
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
+ */
4767
4975
  get totalCurrency(): string;
4768
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
+ */
4769
4981
  get minWidth(): string;
4770
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
+ */
4771
4987
  get width(): string;
4772
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
+ */
4773
4994
  get colCount(): number;
4774
4995
  set colCount(val: number);
4775
4996
  getLocale(): string;
@@ -4809,6 +5030,11 @@ declare module "dragdrop/engine" {
4809
5030
  }
4810
5031
  declare module "utils/devices" {
4811
5032
  export const IsMobile: boolean;
5033
+ export var mouseInfo: {
5034
+ readonly isTouch: boolean;
5035
+ readonly hasTouchEvent: boolean;
5036
+ hasMouse: boolean;
5037
+ };
4812
5038
  export let IsTouch: boolean;
4813
5039
  export function _setIsTouch(val: boolean): void;
4814
5040
  }
@@ -4955,7 +5181,6 @@ declare module "question_matrixdropdownrendered" {
4955
5181
  choiceIndex: number;
4956
5182
  isOtherChoice: boolean;
4957
5183
  matrix: QuestionMatrixDropdownModelBase;
4958
- requiredText: string;
4959
5184
  isEmpty: boolean;
4960
5185
  colSpans: number;
4961
5186
  panel: PanelModel;
@@ -4966,6 +5191,7 @@ declare module "question_matrixdropdownrendered" {
4966
5191
  isDetailRowCell: boolean;
4967
5192
  private classNameValue;
4968
5193
  constructor();
5194
+ get requiredText(): string;
4969
5195
  get hasQuestion(): boolean;
4970
5196
  get hasTitle(): boolean;
4971
5197
  get hasPanel(): boolean;
@@ -5034,7 +5260,7 @@ declare module "question_matrixdropdownrendered" {
5034
5260
  isRequireReset(): boolean;
5035
5261
  get headerRow(): QuestionMatrixDropdownRenderedRow;
5036
5262
  get footerRow(): QuestionMatrixDropdownRenderedRow;
5037
- get allowRowsDragAndDrop(): boolean;
5263
+ get isRowsDragAndDrop(): boolean;
5038
5264
  private get showCellErrorsTop();
5039
5265
  private get showCellErrorsBottom();
5040
5266
  protected build(): void;
@@ -5083,8 +5309,6 @@ declare module "question_matrixdropdownrendered" {
5083
5309
  private createHeaderCell;
5084
5310
  private setHeaderCell;
5085
5311
  private setHeaderCellWidth;
5086
- private setRequriedToHeaderCell;
5087
- private createRemoveRowCell;
5088
5312
  private createTextCell;
5089
5313
  private createEmptyCell;
5090
5314
  }
@@ -5200,6 +5424,7 @@ declare module "question_matrixdynamic" {
5200
5424
  */
5201
5425
  get allowRowsDragAndDrop(): boolean;
5202
5426
  set allowRowsDragAndDrop(val: boolean);
5427
+ get isRowsDragAndDrop(): boolean;
5203
5428
  get iconDragElement(): string;
5204
5429
  protected createRenderedTable(): QuestionMatrixDropdownRenderedTable;
5205
5430
  private get rowCountValue();
@@ -7054,7 +7279,7 @@ declare module "survey-events-api" {
7054
7279
  }
7055
7280
  export interface MatrixCellCreatingBaseEvent extends MatrixDropdownQuestionEventMixin {
7056
7281
  /**
7057
- * 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.
7058
7283
  */
7059
7284
  column: MatrixDropdownColumn;
7060
7285
  /**
@@ -7101,7 +7326,7 @@ declare module "survey-events-api" {
7101
7326
  */
7102
7327
  row: MatrixDropdownRowModelBase;
7103
7328
  /**
7104
- * 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.
7105
7330
  */
7106
7331
  column: MatrixDropdownColumn | MatrixDropdownCell;
7107
7332
  }
@@ -7111,7 +7336,7 @@ declare module "survey-events-api" {
7111
7336
  */
7112
7337
  row: MatrixDropdownRowModelBase;
7113
7338
  /**
7114
- * 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.
7115
7340
  */
7116
7341
  column: MatrixDropdownColumn;
7117
7342
  /**
@@ -9075,6 +9300,9 @@ declare module "survey" {
9075
9300
  get lazyRendering(): boolean;
9076
9301
  set lazyRendering(val: boolean);
9077
9302
  get isLazyRendering(): boolean;
9303
+ lazyRenderingFirstBatchSizeValue: number;
9304
+ get lazyRenderingFirstBatchSize(): number;
9305
+ set lazyRenderingFirstBatchSize(val: number);
9078
9306
  private updateLazyRenderingRowsOnRemovingElements;
9079
9307
  /**
9080
9308
  * A list of triggers in the survey.
@@ -9169,15 +9397,24 @@ declare module "survey" {
9169
9397
  * - `"none"` - Hides the navigation buttons. This setting may be useful if you [implement custom external navigation](https://surveyjs.io/form-library/examples/external-form-navigation-system/).
9170
9398
  * @see goNextPageAutomatic
9171
9399
  * @see showPrevButton
9400
+ * @see showCompleteButton
9172
9401
  */
9173
9402
  get showNavigationButtons(): string | any;
9174
9403
  set showNavigationButtons(val: string | any);
9175
9404
  /**
9176
9405
  * Specifies whether to display the Previous button. Set this property to `false` if respondents should not move backward along the survey.
9177
9406
  * @see showNavigationButtons
9407
+ * @see showCompleteButton
9178
9408
  */
9179
9409
  get showPrevButton(): boolean;
9180
9410
  set showPrevButton(val: boolean);
9411
+ /**
9412
+ * Specifies whether to display the Complete button. Set this property to `false` if respondents should not complete the survey.
9413
+ * @see showNavigationButtons
9414
+ * @see showPrevButton
9415
+ */
9416
+ get showCompleteButton(): boolean;
9417
+ set showCompleteButton(val: boolean);
9181
9418
  /**
9182
9419
  * Gets or sets the visibility of the table of contents.
9183
9420
  *
@@ -9905,6 +10142,7 @@ declare module "survey" {
9905
10142
  */
9906
10143
  get currentPage(): any;
9907
10144
  set currentPage(value: any);
10145
+ tryNavigateToPage(page: PageModel): boolean;
9908
10146
  private updateCurrentPage;
9909
10147
  private get isCurrentPageAvailable();
9910
10148
  private isPageExistsInSurvey;
@@ -10779,6 +11017,7 @@ declare module "survey" {
10779
11017
  panelVisibilityChanged(panel: PanelModel, newValue: boolean): void;
10780
11018
  questionCreated(question: Question): any;
10781
11019
  questionAdded(question: Question, index: number, parentPanel: any, rootPanel: any): void;
11020
+ private canFireAddElement;
10782
11021
  questionRemoved(question: Question): void;
10783
11022
  questionRenamed(question: IQuestion, oldName: string, oldValueName: string): any;
10784
11023
  private questionHashes;
@@ -11672,7 +11911,7 @@ declare module "question" {
11672
11911
  *
11673
11912
  * A survey parses and runs all expressions on startup. If any values used in the expression change, the survey re-evaluates it.
11674
11913
  *
11675
- * 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).
11676
11915
  * @see visible
11677
11916
  * @see isVisible
11678
11917
  */
@@ -11962,7 +12201,7 @@ declare module "question" {
11962
12201
  *
11963
12202
  * A survey parses and runs all expressions on startup. If any values used in the expression change, the survey re-evaluates it.
11964
12203
  *
11965
- * 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).
11966
12205
  * @see isRequired
11967
12206
  */
11968
12207
  get requiredIf(): string;
@@ -12009,7 +12248,7 @@ declare module "question" {
12009
12248
  *
12010
12249
  * A survey parses and runs all expressions on startup. If any values used in the expression change, the survey re-evaluates it.
12011
12250
  *
12012
- * 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).
12013
12252
  * @see readOnly
12014
12253
  * @see isReadOnly
12015
12254
  */
@@ -12523,9 +12762,13 @@ declare module "martixBase" {
12523
12762
  /**
12524
12763
  * An array of matrix columns.
12525
12764
  *
12526
- * 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.
12527
12766
  *
12528
- * [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))
12529
12772
  */
12530
12773
  get columns(): Array<any>;
12531
12774
  set columns(newValue: Array<any>);
@@ -12916,14 +13159,15 @@ declare module "question_matrixdropdownbase" {
12916
13159
  *
12917
13160
  * Possible values:
12918
13161
  *
12919
- * - `"dropdown"`
12920
- * - `"checkbox"`
12921
- * - `"radiogroup"`
12922
- * - `"text"`
12923
- * - `"comment"`
12924
- * - `"boolean"`
12925
- * - `"expression"`
12926
- * - `"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)
12927
13171
  *
12928
13172
  * Default value: `"dropdown"` (inherited from [`settings.matrix.defaultCellType`](https://surveyjs.io/form-library/documentation/settings#matrixDefaultCellType))
12929
13173
  */
@@ -13204,6 +13448,7 @@ declare module "base-interfaces" {
13204
13448
  allowResizeComment: boolean;
13205
13449
  state: string;
13206
13450
  isLazyRendering: boolean;
13451
+ lazyRenderingFirstBatchSize: number;
13207
13452
  cancelPreviewByPage(panel: IPanel): any;
13208
13453
  locEditText: LocalizableString;
13209
13454
  cssNavigationEdit: string;
@@ -13593,11 +13838,13 @@ declare module "jsonobject" {
13593
13838
  properties: Array<JsonObjectProperty>;
13594
13839
  private isCustomValue;
13595
13840
  private allProperties;
13841
+ private requiredProperties;
13596
13842
  private hashProperties;
13597
13843
  constructor(name: string, properties: Array<any>, creator?: (json?: any) => any, parentName?: string);
13598
13844
  find(name: string): JsonObjectProperty;
13599
13845
  findProperty(name: string): JsonObjectProperty;
13600
13846
  getAllProperties(): Array<JsonObjectProperty>;
13847
+ getRequiredProperties(): Array<JsonObjectProperty>;
13601
13848
  resetAllProperties(): void;
13602
13849
  get isCustom(): boolean;
13603
13850
  private fillAllProperties;
@@ -13618,6 +13865,7 @@ declare module "jsonobject" {
13618
13865
  private classes;
13619
13866
  private alternativeNames;
13620
13867
  private childrenClasses;
13868
+ private dynamicPropsCache;
13621
13869
  onSerializingProperty: ((obj: Base, prop: JsonObjectProperty, value: any, json: any) => boolean) | undefined;
13622
13870
  getObjPropertyValue(obj: any, name: string): any;
13623
13871
  setObjPropertyValue(obj: any, name: string, val: any): void;
@@ -13645,6 +13893,7 @@ declare module "jsonobject" {
13645
13893
  addProperty(className: string, propertyInfo: any): JsonObjectProperty;
13646
13894
  private addCustomPropertyCore;
13647
13895
  removeProperty(className: string, propertyName: string): boolean;
13896
+ private clearDynamicPropsCache;
13648
13897
  private removePropertyFromClass;
13649
13898
  private fillChildrenClasses;
13650
13899
  findClass(name: string): JsonMetadataClass;
@@ -13890,6 +14139,7 @@ declare module "base" {
13890
14139
  * Returns `true` if the survey is being designed in Survey Creator.
13891
14140
  */
13892
14141
  get isDesignMode(): boolean;
14142
+ get isDesignModeV2(): boolean;
13893
14143
  /**
13894
14144
  * Returns `true` if the object is included in a survey.
13895
14145
  *
@@ -14007,7 +14257,7 @@ declare module "base" {
14007
14257
  registerFunctionOnPropertiesValueChanged(names: Array<string>, func: any, key?: string): void;
14008
14258
  unRegisterFunctionOnPropertyValueChanged(name: string, key?: string): void;
14009
14259
  unRegisterFunctionOnPropertiesValueChanged(names: Array<string>, key?: string): void;
14010
- createCustomLocalizableObj(name: string): void;
14260
+ createCustomLocalizableObj(name: string): LocalizableString;
14011
14261
  getLocale(): string;
14012
14262
  getLocalizationString(strName: string): string;
14013
14263
  getLocalizationFormatString(strName: string, ...args: any[]): string;
@@ -14299,12 +14549,12 @@ declare module "settings" {
14299
14549
  * import { ItemValue, settings } from "survey-core";
14300
14550
  *
14301
14551
  * // `itemValueSerializeAsObject` example
14302
- * settings.localization.itemValueSerializeAsObject = true;
14552
+ * settings.serialization.itemValueSerializeAsObject = true;
14303
14553
  * const item = new ItemValue(5);
14304
14554
  * const itemString = item.toJSON(); // Produces { value: 5 } instead of 5
14305
14555
  *
14306
14556
  * // `itemValueSerializeDisplayText` example
14307
- * settings.localization.itemValueSerializeDisplayText = true;
14557
+ * settings.serialization.itemValueSerializeDisplayText = true;
14308
14558
  * const item = new ItemValue("item1");
14309
14559
  * const itemString = item.toJSON(); // Produces { value: "item1", text: "item1" } instead of "item1"
14310
14560
  * ```
@@ -14953,6 +15203,7 @@ declare module "question_matrix" {
14953
15203
  export interface IMatrixData {
14954
15204
  onMatrixRowChanged(row: MatrixRowModel): void;
14955
15205
  getCorrectedRowValue(value: any): any;
15206
+ hasErrorInRow(row: MatrixRowModel): boolean;
14956
15207
  }
14957
15208
  export class MatrixRowModel extends Base {
14958
15209
  fullName: string;
@@ -14964,7 +15215,7 @@ declare module "question_matrix" {
14964
15215
  get text(): string;
14965
15216
  get locText(): LocalizableString;
14966
15217
  get value(): any;
14967
- set value(newValue: any);
15218
+ set value(val: any);
14968
15219
  get rowClasses(): string;
14969
15220
  }
14970
15221
  export interface IMatrixCellsOwner extends ILocalizableOwner {
@@ -15004,13 +15255,27 @@ declare module "question_matrix" {
15004
15255
  private cellsValue;
15005
15256
  constructor(name: string);
15006
15257
  getType(): string;
15258
+ /**
15259
+ * The name of a component used to render cells.
15260
+ */
15261
+ get cellComponent(): string;
15262
+ set itemComponent(value: string);
15007
15263
  get hasSingleInput(): boolean;
15008
15264
  /**
15009
15265
  * Specifies whether each row requires an answer. If a respondent skips a row, the question displays a validation error.
15010
15266
  * @see isRequired
15267
+ * @see eachRowUnique
15268
+ * @see validators
15011
15269
  */
15012
15270
  get isAllRowRequired(): boolean;
15013
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);
15014
15279
  get hasRows(): boolean;
15015
15280
  /**
15016
15281
  * Specifies a sort order for matrix rows.
@@ -15055,9 +15320,13 @@ declare module "question_matrix" {
15055
15320
  private emptyLocalizableString;
15056
15321
  getCellDisplayLocText(row: any, column: any): LocalizableString;
15057
15322
  supportGoNextPageAutomatic(): boolean;
15323
+ private errorsInRow;
15058
15324
  protected onCheckForErrors(errors: Array<SurveyError>, isOnValueChanged: boolean): void;
15059
- private hasErrorInRows;
15325
+ private hasErrorAllRowsRequired;
15326
+ private hasErrorEachRowUnique;
15060
15327
  private hasValuesInAllRows;
15328
+ private hasNonUniqueValueInRow;
15329
+ private addErrorIntoRow;
15061
15330
  protected getIsAnswered(): boolean;
15062
15331
  private createMatrixRow;
15063
15332
  protected onMatrixRowCreated(row: MatrixRowModel): void;
@@ -15070,6 +15339,7 @@ declare module "question_matrix" {
15070
15339
  protected getFirstInputElementId(): string;
15071
15340
  onMatrixRowChanged(row: MatrixRowModel): void;
15072
15341
  getCorrectedRowValue(value: any): any;
15342
+ hasErrorInRow(row: MatrixRowModel): boolean;
15073
15343
  protected getSearchableItemValueKeys(keys: Array<string>): void;
15074
15344
  private get SurveyModel();
15075
15345
  getColumnHeaderWrapperComponentName(cell: ItemValue): string;
@@ -16210,8 +16480,8 @@ declare module "question_boolean" {
16210
16480
  * @see valueTrue
16211
16481
  * @see valueFalse
16212
16482
  */
16213
- get labelTrue(): any;
16214
- set labelTrue(val: any);
16483
+ get labelTrue(): string;
16484
+ set labelTrue(val: string);
16215
16485
  get locLabelTrue(): LocalizableString;
16216
16486
  get isDeterminated(): boolean;
16217
16487
  /**
@@ -16221,8 +16491,8 @@ declare module "question_boolean" {
16221
16491
  * @see valueTrue
16222
16492
  * @see valueFalse
16223
16493
  */
16224
- get labelFalse(): any;
16225
- set labelFalse(val: any);
16494
+ get labelFalse(): string;
16495
+ set labelFalse(val: string);
16226
16496
  get locLabelFalse(): LocalizableString;
16227
16497
  /**
16228
16498
  * A value to save in survey results when respondents give a positive answer.
@@ -16354,11 +16624,9 @@ declare module "question_image" {
16354
16624
  declare module "surveyToc" {
16355
16625
  import { Action } from "actions/action";
16356
16626
  import { ListModel } from "list";
16357
- import { PageModel } from "page";
16358
16627
  import { PanelModelBase } from "panel";
16359
16628
  import { PopupModel } from "popup";
16360
16629
  import { SurveyModel } from "survey";
16361
- export function tryNavigateToPage(survey: SurveyModel, page: PageModel): boolean;
16362
16630
  export function tryFocusPage(survey: SurveyModel, panel: PanelModelBase): boolean;
16363
16631
  export function createTOCListModel(survey: SurveyModel, onAction?: () => void): ListModel<Action>;
16364
16632
  export function getTocRootCss(survey: SurveyModel, isMobile?: boolean): string;
@@ -19171,6 +19439,7 @@ declare module "localization/arabic" {
19171
19439
  requiredError: string;
19172
19440
  requiredErrorInPanel: string;
19173
19441
  requiredInAllRowsError: string;
19442
+ eachRowUniqueError: string;
19174
19443
  numericError: string;
19175
19444
  minError: string;
19176
19445
  maxError: string;
@@ -19188,6 +19457,7 @@ declare module "localization/arabic" {
19188
19457
  urlRequestError: string;
19189
19458
  urlGetChoicesError: string;
19190
19459
  exceedMaxSize: string;
19460
+ noUploadFilesHandler: string;
19191
19461
  otherRequiredError: string;
19192
19462
  uploadingFile: string;
19193
19463
  loadingFile: string;
@@ -19202,6 +19472,8 @@ declare module "localization/arabic" {
19202
19472
  emptyRowsText: string;
19203
19473
  addPanel: string;
19204
19474
  removePanel: string;
19475
+ showDetails: string;
19476
+ hideDetails: string;
19205
19477
  choices_Item: string;
19206
19478
  matrix_column: string;
19207
19479
  matrix_row: string;
@@ -19241,6 +19513,8 @@ declare module "localization/arabic" {
19241
19513
  tagboxDoneButtonCaption: string;
19242
19514
  selectToRankEmptyRankedAreaText: string;
19243
19515
  selectToRankEmptyUnrankedAreaText: string;
19516
+ ok: string;
19517
+ cancel: string;
19244
19518
  };
19245
19519
  }
19246
19520
  declare module "localization/basque" {
@@ -19269,6 +19543,7 @@ declare module "localization/basque" {
19269
19543
  requiredError: string;
19270
19544
  requiredErrorInPanel: string;
19271
19545
  requiredInAllRowsError: string;
19546
+ eachRowUniqueError: string;
19272
19547
  numericError: string;
19273
19548
  minError: string;
19274
19549
  maxError: string;
@@ -19286,6 +19561,7 @@ declare module "localization/basque" {
19286
19561
  urlRequestError: string;
19287
19562
  urlGetChoicesError: string;
19288
19563
  exceedMaxSize: string;
19564
+ noUploadFilesHandler: string;
19289
19565
  otherRequiredError: string;
19290
19566
  uploadingFile: string;
19291
19567
  loadingFile: string;
@@ -19300,6 +19576,8 @@ declare module "localization/basque" {
19300
19576
  emptyRowsText: string;
19301
19577
  addPanel: string;
19302
19578
  removePanel: string;
19579
+ showDetails: string;
19580
+ hideDetails: string;
19303
19581
  choices_Item: string;
19304
19582
  matrix_column: string;
19305
19583
  matrix_row: string;
@@ -19339,6 +19617,8 @@ declare module "localization/basque" {
19339
19617
  tagboxDoneButtonCaption: string;
19340
19618
  selectToRankEmptyRankedAreaText: string;
19341
19619
  selectToRankEmptyUnrankedAreaText: string;
19620
+ ok: string;
19621
+ cancel: string;
19342
19622
  };
19343
19623
  }
19344
19624
  declare module "localization/bulgarian" {
@@ -19367,6 +19647,7 @@ declare module "localization/bulgarian" {
19367
19647
  requiredError: string;
19368
19648
  requiredErrorInPanel: string;
19369
19649
  requiredInAllRowsError: string;
19650
+ eachRowUniqueError: string;
19370
19651
  numericError: string;
19371
19652
  minError: string;
19372
19653
  maxError: string;
@@ -19384,6 +19665,7 @@ declare module "localization/bulgarian" {
19384
19665
  urlRequestError: string;
19385
19666
  urlGetChoicesError: string;
19386
19667
  exceedMaxSize: string;
19668
+ noUploadFilesHandler: string;
19387
19669
  otherRequiredError: string;
19388
19670
  uploadingFile: string;
19389
19671
  loadingFile: string;
@@ -19398,6 +19680,8 @@ declare module "localization/bulgarian" {
19398
19680
  emptyRowsText: string;
19399
19681
  addPanel: string;
19400
19682
  removePanel: string;
19683
+ showDetails: string;
19684
+ hideDetails: string;
19401
19685
  choices_Item: string;
19402
19686
  matrix_column: string;
19403
19687
  matrix_row: string;
@@ -19437,6 +19721,8 @@ declare module "localization/bulgarian" {
19437
19721
  tagboxDoneButtonCaption: string;
19438
19722
  selectToRankEmptyRankedAreaText: string;
19439
19723
  selectToRankEmptyUnrankedAreaText: string;
19724
+ ok: string;
19725
+ cancel: string;
19440
19726
  };
19441
19727
  }
19442
19728
  declare module "localization/catalan" {
@@ -19465,6 +19751,7 @@ declare module "localization/catalan" {
19465
19751
  requiredError: string;
19466
19752
  requiredErrorInPanel: string;
19467
19753
  requiredInAllRowsError: string;
19754
+ eachRowUniqueError: string;
19468
19755
  numericError: string;
19469
19756
  minError: string;
19470
19757
  maxError: string;
@@ -19482,6 +19769,7 @@ declare module "localization/catalan" {
19482
19769
  urlRequestError: string;
19483
19770
  urlGetChoicesError: string;
19484
19771
  exceedMaxSize: string;
19772
+ noUploadFilesHandler: string;
19485
19773
  otherRequiredError: string;
19486
19774
  uploadingFile: string;
19487
19775
  loadingFile: string;
@@ -19496,6 +19784,8 @@ declare module "localization/catalan" {
19496
19784
  emptyRowsText: string;
19497
19785
  addPanel: string;
19498
19786
  removePanel: string;
19787
+ showDetails: string;
19788
+ hideDetails: string;
19499
19789
  choices_Item: string;
19500
19790
  matrix_column: string;
19501
19791
  matrix_row: string;
@@ -19535,6 +19825,8 @@ declare module "localization/catalan" {
19535
19825
  tagboxDoneButtonCaption: string;
19536
19826
  selectToRankEmptyRankedAreaText: string;
19537
19827
  selectToRankEmptyUnrankedAreaText: string;
19828
+ ok: string;
19829
+ cancel: string;
19538
19830
  };
19539
19831
  }
19540
19832
  declare module "localization/croatian" {
@@ -19563,6 +19855,7 @@ declare module "localization/croatian" {
19563
19855
  requiredError: string;
19564
19856
  requiredErrorInPanel: string;
19565
19857
  requiredInAllRowsError: string;
19858
+ eachRowUniqueError: string;
19566
19859
  numericError: string;
19567
19860
  minError: string;
19568
19861
  maxError: string;
@@ -19580,6 +19873,7 @@ declare module "localization/croatian" {
19580
19873
  urlRequestError: string;
19581
19874
  urlGetChoicesError: string;
19582
19875
  exceedMaxSize: string;
19876
+ noUploadFilesHandler: string;
19583
19877
  otherRequiredError: string;
19584
19878
  uploadingFile: string;
19585
19879
  loadingFile: string;
@@ -19594,6 +19888,8 @@ declare module "localization/croatian" {
19594
19888
  emptyRowsText: string;
19595
19889
  addPanel: string;
19596
19890
  removePanel: string;
19891
+ showDetails: string;
19892
+ hideDetails: string;
19597
19893
  choices_Item: string;
19598
19894
  matrix_column: string;
19599
19895
  matrix_row: string;
@@ -19633,6 +19929,8 @@ declare module "localization/croatian" {
19633
19929
  tagboxDoneButtonCaption: string;
19634
19930
  selectToRankEmptyRankedAreaText: string;
19635
19931
  selectToRankEmptyUnrankedAreaText: string;
19932
+ ok: string;
19933
+ cancel: string;
19636
19934
  };
19637
19935
  }
19638
19936
  declare module "localization/czech" {
@@ -19661,6 +19959,7 @@ declare module "localization/czech" {
19661
19959
  requiredError: string;
19662
19960
  requiredErrorInPanel: string;
19663
19961
  requiredInAllRowsError: string;
19962
+ eachRowUniqueError: string;
19664
19963
  numericError: string;
19665
19964
  minError: string;
19666
19965
  maxError: string;
@@ -19678,6 +19977,7 @@ declare module "localization/czech" {
19678
19977
  urlRequestError: string;
19679
19978
  urlGetChoicesError: string;
19680
19979
  exceedMaxSize: string;
19980
+ noUploadFilesHandler: string;
19681
19981
  otherRequiredError: string;
19682
19982
  uploadingFile: string;
19683
19983
  loadingFile: string;
@@ -19692,6 +19992,8 @@ declare module "localization/czech" {
19692
19992
  emptyRowsText: string;
19693
19993
  addPanel: string;
19694
19994
  removePanel: string;
19995
+ showDetails: string;
19996
+ hideDetails: string;
19695
19997
  choices_Item: string;
19696
19998
  matrix_column: string;
19697
19999
  matrix_row: string;
@@ -19731,6 +20033,8 @@ declare module "localization/czech" {
19731
20033
  tagboxDoneButtonCaption: string;
19732
20034
  selectToRankEmptyRankedAreaText: string;
19733
20035
  selectToRankEmptyUnrankedAreaText: string;
20036
+ ok: string;
20037
+ cancel: string;
19734
20038
  };
19735
20039
  }
19736
20040
  declare module "localization/danish" {
@@ -19759,6 +20063,7 @@ declare module "localization/danish" {
19759
20063
  requiredError: string;
19760
20064
  requiredErrorInPanel: string;
19761
20065
  requiredInAllRowsError: string;
20066
+ eachRowUniqueError: string;
19762
20067
  numericError: string;
19763
20068
  minError: string;
19764
20069
  maxError: string;
@@ -19776,6 +20081,7 @@ declare module "localization/danish" {
19776
20081
  urlRequestError: string;
19777
20082
  urlGetChoicesError: string;
19778
20083
  exceedMaxSize: string;
20084
+ noUploadFilesHandler: string;
19779
20085
  otherRequiredError: string;
19780
20086
  uploadingFile: string;
19781
20087
  loadingFile: string;
@@ -19790,6 +20096,8 @@ declare module "localization/danish" {
19790
20096
  emptyRowsText: string;
19791
20097
  addPanel: string;
19792
20098
  removePanel: string;
20099
+ showDetails: string;
20100
+ hideDetails: string;
19793
20101
  choices_Item: string;
19794
20102
  matrix_column: string;
19795
20103
  matrix_row: string;
@@ -19829,6 +20137,8 @@ declare module "localization/danish" {
19829
20137
  tagboxDoneButtonCaption: string;
19830
20138
  selectToRankEmptyRankedAreaText: string;
19831
20139
  selectToRankEmptyUnrankedAreaText: string;
20140
+ ok: string;
20141
+ cancel: string;
19832
20142
  };
19833
20143
  }
19834
20144
  declare module "localization/dutch" {
@@ -19857,6 +20167,7 @@ declare module "localization/dutch" {
19857
20167
  requiredError: string;
19858
20168
  requiredErrorInPanel: string;
19859
20169
  requiredInAllRowsError: string;
20170
+ eachRowUniqueError: string;
19860
20171
  numericError: string;
19861
20172
  minError: string;
19862
20173
  maxError: string;
@@ -19874,6 +20185,7 @@ declare module "localization/dutch" {
19874
20185
  urlRequestError: string;
19875
20186
  urlGetChoicesError: string;
19876
20187
  exceedMaxSize: string;
20188
+ noUploadFilesHandler: string;
19877
20189
  otherRequiredError: string;
19878
20190
  uploadingFile: string;
19879
20191
  loadingFile: string;
@@ -19888,6 +20200,8 @@ declare module "localization/dutch" {
19888
20200
  emptyRowsText: string;
19889
20201
  addPanel: string;
19890
20202
  removePanel: string;
20203
+ showDetails: string;
20204
+ hideDetails: string;
19891
20205
  choices_Item: string;
19892
20206
  matrix_column: string;
19893
20207
  matrix_row: string;
@@ -19927,6 +20241,8 @@ declare module "localization/dutch" {
19927
20241
  tagboxDoneButtonCaption: string;
19928
20242
  selectToRankEmptyRankedAreaText: string;
19929
20243
  selectToRankEmptyUnrankedAreaText: string;
20244
+ ok: string;
20245
+ cancel: string;
19930
20246
  };
19931
20247
  }
19932
20248
  declare module "localization/nl-BE" { }
@@ -19956,6 +20272,7 @@ declare module "localization/estonian" {
19956
20272
  requiredError: string;
19957
20273
  requiredErrorInPanel: string;
19958
20274
  requiredInAllRowsError: string;
20275
+ eachRowUniqueError: string;
19959
20276
  numericError: string;
19960
20277
  minError: string;
19961
20278
  maxError: string;
@@ -19973,6 +20290,7 @@ declare module "localization/estonian" {
19973
20290
  urlRequestError: string;
19974
20291
  urlGetChoicesError: string;
19975
20292
  exceedMaxSize: string;
20293
+ noUploadFilesHandler: string;
19976
20294
  otherRequiredError: string;
19977
20295
  uploadingFile: string;
19978
20296
  loadingFile: string;
@@ -19987,6 +20305,8 @@ declare module "localization/estonian" {
19987
20305
  emptyRowsText: string;
19988
20306
  addPanel: string;
19989
20307
  removePanel: string;
20308
+ showDetails: string;
20309
+ hideDetails: string;
19990
20310
  choices_Item: string;
19991
20311
  matrix_column: string;
19992
20312
  matrix_row: string;
@@ -20026,6 +20346,8 @@ declare module "localization/estonian" {
20026
20346
  tagboxDoneButtonCaption: string;
20027
20347
  selectToRankEmptyRankedAreaText: string;
20028
20348
  selectToRankEmptyUnrankedAreaText: string;
20349
+ ok: string;
20350
+ cancel: string;
20029
20351
  };
20030
20352
  }
20031
20353
  declare module "localization/finnish" {
@@ -20054,6 +20376,7 @@ declare module "localization/finnish" {
20054
20376
  requiredError: string;
20055
20377
  requiredErrorInPanel: string;
20056
20378
  requiredInAllRowsError: string;
20379
+ eachRowUniqueError: string;
20057
20380
  numericError: string;
20058
20381
  minError: string;
20059
20382
  maxError: string;
@@ -20071,6 +20394,7 @@ declare module "localization/finnish" {
20071
20394
  urlRequestError: string;
20072
20395
  urlGetChoicesError: string;
20073
20396
  exceedMaxSize: string;
20397
+ noUploadFilesHandler: string;
20074
20398
  otherRequiredError: string;
20075
20399
  uploadingFile: string;
20076
20400
  loadingFile: string;
@@ -20085,6 +20409,8 @@ declare module "localization/finnish" {
20085
20409
  emptyRowsText: string;
20086
20410
  addPanel: string;
20087
20411
  removePanel: string;
20412
+ showDetails: string;
20413
+ hideDetails: string;
20088
20414
  choices_Item: string;
20089
20415
  matrix_column: string;
20090
20416
  matrix_row: string;
@@ -20124,6 +20450,8 @@ declare module "localization/finnish" {
20124
20450
  tagboxDoneButtonCaption: string;
20125
20451
  selectToRankEmptyRankedAreaText: string;
20126
20452
  selectToRankEmptyUnrankedAreaText: string;
20453
+ ok: string;
20454
+ cancel: string;
20127
20455
  };
20128
20456
  }
20129
20457
  declare module "localization/french" {
@@ -20152,6 +20480,7 @@ declare module "localization/french" {
20152
20480
  requiredError: string;
20153
20481
  requiredErrorInPanel: string;
20154
20482
  requiredInAllRowsError: string;
20483
+ eachRowUniqueError: string;
20155
20484
  numericError: string;
20156
20485
  minError: string;
20157
20486
  maxError: string;
@@ -20169,6 +20498,7 @@ declare module "localization/french" {
20169
20498
  urlRequestError: string;
20170
20499
  urlGetChoicesError: string;
20171
20500
  exceedMaxSize: string;
20501
+ noUploadFilesHandler: string;
20172
20502
  otherRequiredError: string;
20173
20503
  uploadingFile: string;
20174
20504
  loadingFile: string;
@@ -20183,6 +20513,8 @@ declare module "localization/french" {
20183
20513
  emptyRowsText: string;
20184
20514
  addPanel: string;
20185
20515
  removePanel: string;
20516
+ showDetails: string;
20517
+ hideDetails: string;
20186
20518
  choices_Item: string;
20187
20519
  matrix_column: string;
20188
20520
  matrix_row: string;
@@ -20222,6 +20554,8 @@ declare module "localization/french" {
20222
20554
  tagboxDoneButtonCaption: string;
20223
20555
  selectToRankEmptyRankedAreaText: string;
20224
20556
  selectToRankEmptyUnrankedAreaText: string;
20557
+ ok: string;
20558
+ cancel: string;
20225
20559
  };
20226
20560
  }
20227
20561
  declare module "localization/georgian" {
@@ -20250,6 +20584,7 @@ declare module "localization/georgian" {
20250
20584
  requiredError: string;
20251
20585
  requiredErrorInPanel: string;
20252
20586
  requiredInAllRowsError: string;
20587
+ eachRowUniqueError: string;
20253
20588
  numericError: string;
20254
20589
  minError: string;
20255
20590
  maxError: string;
@@ -20267,6 +20602,7 @@ declare module "localization/georgian" {
20267
20602
  urlRequestError: string;
20268
20603
  urlGetChoicesError: string;
20269
20604
  exceedMaxSize: string;
20605
+ noUploadFilesHandler: string;
20270
20606
  otherRequiredError: string;
20271
20607
  uploadingFile: string;
20272
20608
  loadingFile: string;
@@ -20281,6 +20617,8 @@ declare module "localization/georgian" {
20281
20617
  emptyRowsText: string;
20282
20618
  addPanel: string;
20283
20619
  removePanel: string;
20620
+ showDetails: string;
20621
+ hideDetails: string;
20284
20622
  choices_Item: string;
20285
20623
  matrix_column: string;
20286
20624
  matrix_row: string;
@@ -20320,6 +20658,8 @@ declare module "localization/georgian" {
20320
20658
  tagboxDoneButtonCaption: string;
20321
20659
  selectToRankEmptyRankedAreaText: string;
20322
20660
  selectToRankEmptyUnrankedAreaText: string;
20661
+ ok: string;
20662
+ cancel: string;
20323
20663
  };
20324
20664
  }
20325
20665
  declare module "localization/german" {
@@ -20348,6 +20688,7 @@ declare module "localization/german" {
20348
20688
  requiredError: string;
20349
20689
  requiredErrorInPanel: string;
20350
20690
  requiredInAllRowsError: string;
20691
+ eachRowUniqueError: string;
20351
20692
  numericError: string;
20352
20693
  minError: string;
20353
20694
  maxError: string;
@@ -20365,6 +20706,7 @@ declare module "localization/german" {
20365
20706
  urlRequestError: string;
20366
20707
  urlGetChoicesError: string;
20367
20708
  exceedMaxSize: string;
20709
+ noUploadFilesHandler: string;
20368
20710
  otherRequiredError: string;
20369
20711
  uploadingFile: string;
20370
20712
  loadingFile: string;
@@ -20379,6 +20721,8 @@ declare module "localization/german" {
20379
20721
  emptyRowsText: string;
20380
20722
  addPanel: string;
20381
20723
  removePanel: string;
20724
+ showDetails: string;
20725
+ hideDetails: string;
20382
20726
  choices_Item: string;
20383
20727
  matrix_column: string;
20384
20728
  matrix_row: string;
@@ -20418,6 +20762,8 @@ declare module "localization/german" {
20418
20762
  tagboxDoneButtonCaption: string;
20419
20763
  selectToRankEmptyRankedAreaText: string;
20420
20764
  selectToRankEmptyUnrankedAreaText: string;
20765
+ ok: string;
20766
+ cancel: string;
20421
20767
  };
20422
20768
  }
20423
20769
  declare module "localization/greek" {
@@ -20446,6 +20792,7 @@ declare module "localization/greek" {
20446
20792
  requiredError: string;
20447
20793
  requiredErrorInPanel: string;
20448
20794
  requiredInAllRowsError: string;
20795
+ eachRowUniqueError: string;
20449
20796
  numericError: string;
20450
20797
  minError: string;
20451
20798
  maxError: string;
@@ -20463,6 +20810,7 @@ declare module "localization/greek" {
20463
20810
  urlRequestError: string;
20464
20811
  urlGetChoicesError: string;
20465
20812
  exceedMaxSize: string;
20813
+ noUploadFilesHandler: string;
20466
20814
  otherRequiredError: string;
20467
20815
  uploadingFile: string;
20468
20816
  loadingFile: string;
@@ -20477,6 +20825,8 @@ declare module "localization/greek" {
20477
20825
  emptyRowsText: string;
20478
20826
  addPanel: string;
20479
20827
  removePanel: string;
20828
+ showDetails: string;
20829
+ hideDetails: string;
20480
20830
  choices_Item: string;
20481
20831
  matrix_column: string;
20482
20832
  matrix_row: string;
@@ -20516,6 +20866,8 @@ declare module "localization/greek" {
20516
20866
  tagboxDoneButtonCaption: string;
20517
20867
  selectToRankEmptyRankedAreaText: string;
20518
20868
  selectToRankEmptyUnrankedAreaText: string;
20869
+ ok: string;
20870
+ cancel: string;
20519
20871
  };
20520
20872
  }
20521
20873
  declare module "localization/hebrew" {
@@ -20544,6 +20896,7 @@ declare module "localization/hebrew" {
20544
20896
  requiredError: string;
20545
20897
  requiredErrorInPanel: string;
20546
20898
  requiredInAllRowsError: string;
20899
+ eachRowUniqueError: string;
20547
20900
  numericError: string;
20548
20901
  minError: string;
20549
20902
  maxError: string;
@@ -20561,6 +20914,7 @@ declare module "localization/hebrew" {
20561
20914
  urlRequestError: string;
20562
20915
  urlGetChoicesError: string;
20563
20916
  exceedMaxSize: string;
20917
+ noUploadFilesHandler: string;
20564
20918
  otherRequiredError: string;
20565
20919
  uploadingFile: string;
20566
20920
  loadingFile: string;
@@ -20575,6 +20929,8 @@ declare module "localization/hebrew" {
20575
20929
  emptyRowsText: string;
20576
20930
  addPanel: string;
20577
20931
  removePanel: string;
20932
+ showDetails: string;
20933
+ hideDetails: string;
20578
20934
  choices_Item: string;
20579
20935
  matrix_column: string;
20580
20936
  matrix_row: string;
@@ -20614,6 +20970,8 @@ declare module "localization/hebrew" {
20614
20970
  tagboxDoneButtonCaption: string;
20615
20971
  selectToRankEmptyRankedAreaText: string;
20616
20972
  selectToRankEmptyUnrankedAreaText: string;
20973
+ ok: string;
20974
+ cancel: string;
20617
20975
  };
20618
20976
  }
20619
20977
  declare module "localization/hindi" {
@@ -20642,6 +21000,7 @@ declare module "localization/hindi" {
20642
21000
  requiredError: string;
20643
21001
  requiredErrorInPanel: string;
20644
21002
  requiredInAllRowsError: string;
21003
+ eachRowUniqueError: string;
20645
21004
  numericError: string;
20646
21005
  minError: string;
20647
21006
  maxError: string;
@@ -20659,6 +21018,7 @@ declare module "localization/hindi" {
20659
21018
  urlRequestError: string;
20660
21019
  urlGetChoicesError: string;
20661
21020
  exceedMaxSize: string;
21021
+ noUploadFilesHandler: string;
20662
21022
  otherRequiredError: string;
20663
21023
  uploadingFile: string;
20664
21024
  loadingFile: string;
@@ -20673,6 +21033,8 @@ declare module "localization/hindi" {
20673
21033
  emptyRowsText: string;
20674
21034
  addPanel: string;
20675
21035
  removePanel: string;
21036
+ showDetails: string;
21037
+ hideDetails: string;
20676
21038
  choices_Item: string;
20677
21039
  matrix_column: string;
20678
21040
  matrix_row: string;
@@ -20712,6 +21074,8 @@ declare module "localization/hindi" {
20712
21074
  tagboxDoneButtonCaption: string;
20713
21075
  selectToRankEmptyRankedAreaText: string;
20714
21076
  selectToRankEmptyUnrankedAreaText: string;
21077
+ ok: string;
21078
+ cancel: string;
20715
21079
  };
20716
21080
  }
20717
21081
  declare module "localization/hungarian" {
@@ -20740,6 +21104,7 @@ declare module "localization/hungarian" {
20740
21104
  requiredError: string;
20741
21105
  requiredErrorInPanel: string;
20742
21106
  requiredInAllRowsError: string;
21107
+ eachRowUniqueError: string;
20743
21108
  numericError: string;
20744
21109
  minError: string;
20745
21110
  maxError: string;
@@ -20757,6 +21122,7 @@ declare module "localization/hungarian" {
20757
21122
  urlRequestError: string;
20758
21123
  urlGetChoicesError: string;
20759
21124
  exceedMaxSize: string;
21125
+ noUploadFilesHandler: string;
20760
21126
  otherRequiredError: string;
20761
21127
  uploadingFile: string;
20762
21128
  loadingFile: string;
@@ -20771,6 +21137,8 @@ declare module "localization/hungarian" {
20771
21137
  emptyRowsText: string;
20772
21138
  addPanel: string;
20773
21139
  removePanel: string;
21140
+ showDetails: string;
21141
+ hideDetails: string;
20774
21142
  choices_Item: string;
20775
21143
  matrix_column: string;
20776
21144
  matrix_row: string;
@@ -20810,6 +21178,8 @@ declare module "localization/hungarian" {
20810
21178
  tagboxDoneButtonCaption: string;
20811
21179
  selectToRankEmptyRankedAreaText: string;
20812
21180
  selectToRankEmptyUnrankedAreaText: string;
21181
+ ok: string;
21182
+ cancel: string;
20813
21183
  };
20814
21184
  }
20815
21185
  declare module "localization/icelandic" {
@@ -20838,6 +21208,7 @@ declare module "localization/icelandic" {
20838
21208
  requiredError: string;
20839
21209
  requiredErrorInPanel: string;
20840
21210
  requiredInAllRowsError: string;
21211
+ eachRowUniqueError: string;
20841
21212
  numericError: string;
20842
21213
  minError: string;
20843
21214
  maxError: string;
@@ -20855,6 +21226,7 @@ declare module "localization/icelandic" {
20855
21226
  urlRequestError: string;
20856
21227
  urlGetChoicesError: string;
20857
21228
  exceedMaxSize: string;
21229
+ noUploadFilesHandler: string;
20858
21230
  otherRequiredError: string;
20859
21231
  uploadingFile: string;
20860
21232
  loadingFile: string;
@@ -20869,6 +21241,8 @@ declare module "localization/icelandic" {
20869
21241
  emptyRowsText: string;
20870
21242
  addPanel: string;
20871
21243
  removePanel: string;
21244
+ showDetails: string;
21245
+ hideDetails: string;
20872
21246
  choices_Item: string;
20873
21247
  matrix_column: string;
20874
21248
  matrix_row: string;
@@ -20908,6 +21282,8 @@ declare module "localization/icelandic" {
20908
21282
  tagboxDoneButtonCaption: string;
20909
21283
  selectToRankEmptyRankedAreaText: string;
20910
21284
  selectToRankEmptyUnrankedAreaText: string;
21285
+ ok: string;
21286
+ cancel: string;
20911
21287
  };
20912
21288
  }
20913
21289
  declare module "localization/indonesian" {
@@ -20936,6 +21312,7 @@ declare module "localization/indonesian" {
20936
21312
  requiredError: string;
20937
21313
  requiredErrorInPanel: string;
20938
21314
  requiredInAllRowsError: string;
21315
+ eachRowUniqueError: string;
20939
21316
  numericError: string;
20940
21317
  minError: string;
20941
21318
  maxError: string;
@@ -20953,6 +21330,7 @@ declare module "localization/indonesian" {
20953
21330
  urlRequestError: string;
20954
21331
  urlGetChoicesError: string;
20955
21332
  exceedMaxSize: string;
21333
+ noUploadFilesHandler: string;
20956
21334
  otherRequiredError: string;
20957
21335
  uploadingFile: string;
20958
21336
  loadingFile: string;
@@ -20967,6 +21345,8 @@ declare module "localization/indonesian" {
20967
21345
  emptyRowsText: string;
20968
21346
  addPanel: string;
20969
21347
  removePanel: string;
21348
+ showDetails: string;
21349
+ hideDetails: string;
20970
21350
  choices_Item: string;
20971
21351
  matrix_column: string;
20972
21352
  matrix_row: string;
@@ -21006,6 +21386,8 @@ declare module "localization/indonesian" {
21006
21386
  tagboxDoneButtonCaption: string;
21007
21387
  selectToRankEmptyRankedAreaText: string;
21008
21388
  selectToRankEmptyUnrankedAreaText: string;
21389
+ ok: string;
21390
+ cancel: string;
21009
21391
  };
21010
21392
  }
21011
21393
  declare module "localization/italian" {
@@ -21034,6 +21416,7 @@ declare module "localization/italian" {
21034
21416
  requiredError: string;
21035
21417
  requiredErrorInPanel: string;
21036
21418
  requiredInAllRowsError: string;
21419
+ eachRowUniqueError: string;
21037
21420
  numericError: string;
21038
21421
  minError: string;
21039
21422
  maxError: string;
@@ -21051,6 +21434,7 @@ declare module "localization/italian" {
21051
21434
  urlRequestError: string;
21052
21435
  urlGetChoicesError: string;
21053
21436
  exceedMaxSize: string;
21437
+ noUploadFilesHandler: string;
21054
21438
  otherRequiredError: string;
21055
21439
  uploadingFile: string;
21056
21440
  loadingFile: string;
@@ -21065,6 +21449,8 @@ declare module "localization/italian" {
21065
21449
  emptyRowsText: string;
21066
21450
  addPanel: string;
21067
21451
  removePanel: string;
21452
+ showDetails: string;
21453
+ hideDetails: string;
21068
21454
  choices_Item: string;
21069
21455
  matrix_column: string;
21070
21456
  matrix_row: string;
@@ -21104,6 +21490,8 @@ declare module "localization/italian" {
21104
21490
  tagboxDoneButtonCaption: string;
21105
21491
  selectToRankEmptyRankedAreaText: string;
21106
21492
  selectToRankEmptyUnrankedAreaText: string;
21493
+ ok: string;
21494
+ cancel: string;
21107
21495
  };
21108
21496
  }
21109
21497
  declare module "localization/japanese" {
@@ -21132,6 +21520,7 @@ declare module "localization/japanese" {
21132
21520
  requiredError: string;
21133
21521
  requiredErrorInPanel: string;
21134
21522
  requiredInAllRowsError: string;
21523
+ eachRowUniqueError: string;
21135
21524
  numericError: string;
21136
21525
  minError: string;
21137
21526
  maxError: string;
@@ -21149,6 +21538,7 @@ declare module "localization/japanese" {
21149
21538
  urlRequestError: string;
21150
21539
  urlGetChoicesError: string;
21151
21540
  exceedMaxSize: string;
21541
+ noUploadFilesHandler: string;
21152
21542
  otherRequiredError: string;
21153
21543
  uploadingFile: string;
21154
21544
  loadingFile: string;
@@ -21163,6 +21553,8 @@ declare module "localization/japanese" {
21163
21553
  emptyRowsText: string;
21164
21554
  addPanel: string;
21165
21555
  removePanel: string;
21556
+ showDetails: string;
21557
+ hideDetails: string;
21166
21558
  choices_Item: string;
21167
21559
  matrix_column: string;
21168
21560
  matrix_row: string;
@@ -21202,6 +21594,8 @@ declare module "localization/japanese" {
21202
21594
  tagboxDoneButtonCaption: string;
21203
21595
  selectToRankEmptyRankedAreaText: string;
21204
21596
  selectToRankEmptyUnrankedAreaText: string;
21597
+ ok: string;
21598
+ cancel: string;
21205
21599
  };
21206
21600
  }
21207
21601
  declare module "localization/kazakh" {
@@ -21230,6 +21624,7 @@ declare module "localization/kazakh" {
21230
21624
  requiredError: string;
21231
21625
  requiredErrorInPanel: string;
21232
21626
  requiredInAllRowsError: string;
21627
+ eachRowUniqueError: string;
21233
21628
  numericError: string;
21234
21629
  minError: string;
21235
21630
  maxError: string;
@@ -21247,6 +21642,7 @@ declare module "localization/kazakh" {
21247
21642
  urlRequestError: string;
21248
21643
  urlGetChoicesError: string;
21249
21644
  exceedMaxSize: string;
21645
+ noUploadFilesHandler: string;
21250
21646
  otherRequiredError: string;
21251
21647
  uploadingFile: string;
21252
21648
  loadingFile: string;
@@ -21261,6 +21657,8 @@ declare module "localization/kazakh" {
21261
21657
  emptyRowsText: string;
21262
21658
  addPanel: string;
21263
21659
  removePanel: string;
21660
+ showDetails: string;
21661
+ hideDetails: string;
21264
21662
  choices_Item: string;
21265
21663
  matrix_column: string;
21266
21664
  matrix_row: string;
@@ -21300,6 +21698,8 @@ declare module "localization/kazakh" {
21300
21698
  tagboxDoneButtonCaption: string;
21301
21699
  selectToRankEmptyRankedAreaText: string;
21302
21700
  selectToRankEmptyUnrankedAreaText: string;
21701
+ ok: string;
21702
+ cancel: string;
21303
21703
  };
21304
21704
  }
21305
21705
  declare module "localization/korean" {
@@ -21328,6 +21728,7 @@ declare module "localization/korean" {
21328
21728
  requiredError: string;
21329
21729
  requiredErrorInPanel: string;
21330
21730
  requiredInAllRowsError: string;
21731
+ eachRowUniqueError: string;
21331
21732
  numericError: string;
21332
21733
  minError: string;
21333
21734
  maxError: string;
@@ -21345,6 +21746,7 @@ declare module "localization/korean" {
21345
21746
  urlRequestError: string;
21346
21747
  urlGetChoicesError: string;
21347
21748
  exceedMaxSize: string;
21749
+ noUploadFilesHandler: string;
21348
21750
  otherRequiredError: string;
21349
21751
  uploadingFile: string;
21350
21752
  loadingFile: string;
@@ -21359,6 +21761,8 @@ declare module "localization/korean" {
21359
21761
  emptyRowsText: string;
21360
21762
  addPanel: string;
21361
21763
  removePanel: string;
21764
+ showDetails: string;
21765
+ hideDetails: string;
21362
21766
  choices_Item: string;
21363
21767
  matrix_column: string;
21364
21768
  matrix_row: string;
@@ -21398,6 +21802,8 @@ declare module "localization/korean" {
21398
21802
  tagboxDoneButtonCaption: string;
21399
21803
  selectToRankEmptyRankedAreaText: string;
21400
21804
  selectToRankEmptyUnrankedAreaText: string;
21805
+ ok: string;
21806
+ cancel: string;
21401
21807
  };
21402
21808
  }
21403
21809
  declare module "localization/latvian" {
@@ -21426,6 +21832,7 @@ declare module "localization/latvian" {
21426
21832
  requiredError: string;
21427
21833
  requiredErrorInPanel: string;
21428
21834
  requiredInAllRowsError: string;
21835
+ eachRowUniqueError: string;
21429
21836
  numericError: string;
21430
21837
  minError: string;
21431
21838
  maxError: string;
@@ -21443,6 +21850,7 @@ declare module "localization/latvian" {
21443
21850
  urlRequestError: string;
21444
21851
  urlGetChoicesError: string;
21445
21852
  exceedMaxSize: string;
21853
+ noUploadFilesHandler: string;
21446
21854
  otherRequiredError: string;
21447
21855
  uploadingFile: string;
21448
21856
  loadingFile: string;
@@ -21457,6 +21865,8 @@ declare module "localization/latvian" {
21457
21865
  emptyRowsText: string;
21458
21866
  addPanel: string;
21459
21867
  removePanel: string;
21868
+ showDetails: string;
21869
+ hideDetails: string;
21460
21870
  choices_Item: string;
21461
21871
  matrix_column: string;
21462
21872
  matrix_row: string;
@@ -21496,6 +21906,8 @@ declare module "localization/latvian" {
21496
21906
  tagboxDoneButtonCaption: string;
21497
21907
  selectToRankEmptyRankedAreaText: string;
21498
21908
  selectToRankEmptyUnrankedAreaText: string;
21909
+ ok: string;
21910
+ cancel: string;
21499
21911
  };
21500
21912
  }
21501
21913
  declare module "localization/lithuanian" {
@@ -21524,6 +21936,7 @@ declare module "localization/lithuanian" {
21524
21936
  requiredError: string;
21525
21937
  requiredErrorInPanel: string;
21526
21938
  requiredInAllRowsError: string;
21939
+ eachRowUniqueError: string;
21527
21940
  numericError: string;
21528
21941
  minError: string;
21529
21942
  maxError: string;
@@ -21541,6 +21954,7 @@ declare module "localization/lithuanian" {
21541
21954
  urlRequestError: string;
21542
21955
  urlGetChoicesError: string;
21543
21956
  exceedMaxSize: string;
21957
+ noUploadFilesHandler: string;
21544
21958
  otherRequiredError: string;
21545
21959
  uploadingFile: string;
21546
21960
  loadingFile: string;
@@ -21555,6 +21969,8 @@ declare module "localization/lithuanian" {
21555
21969
  emptyRowsText: string;
21556
21970
  addPanel: string;
21557
21971
  removePanel: string;
21972
+ showDetails: string;
21973
+ hideDetails: string;
21558
21974
  choices_Item: string;
21559
21975
  matrix_column: string;
21560
21976
  matrix_row: string;
@@ -21594,6 +22010,8 @@ declare module "localization/lithuanian" {
21594
22010
  tagboxDoneButtonCaption: string;
21595
22011
  selectToRankEmptyRankedAreaText: string;
21596
22012
  selectToRankEmptyUnrankedAreaText: string;
22013
+ ok: string;
22014
+ cancel: string;
21597
22015
  };
21598
22016
  }
21599
22017
  declare module "localization/macedonian" {
@@ -21622,6 +22040,7 @@ declare module "localization/macedonian" {
21622
22040
  requiredError: string;
21623
22041
  requiredErrorInPanel: string;
21624
22042
  requiredInAllRowsError: string;
22043
+ eachRowUniqueError: string;
21625
22044
  numericError: string;
21626
22045
  minError: string;
21627
22046
  maxError: string;
@@ -21639,6 +22058,7 @@ declare module "localization/macedonian" {
21639
22058
  urlRequestError: string;
21640
22059
  urlGetChoicesError: string;
21641
22060
  exceedMaxSize: string;
22061
+ noUploadFilesHandler: string;
21642
22062
  otherRequiredError: string;
21643
22063
  uploadingFile: string;
21644
22064
  loadingFile: string;
@@ -21653,6 +22073,8 @@ declare module "localization/macedonian" {
21653
22073
  emptyRowsText: string;
21654
22074
  addPanel: string;
21655
22075
  removePanel: string;
22076
+ showDetails: string;
22077
+ hideDetails: string;
21656
22078
  choices_Item: string;
21657
22079
  matrix_column: string;
21658
22080
  matrix_row: string;
@@ -21692,6 +22114,8 @@ declare module "localization/macedonian" {
21692
22114
  tagboxDoneButtonCaption: string;
21693
22115
  selectToRankEmptyRankedAreaText: string;
21694
22116
  selectToRankEmptyUnrankedAreaText: string;
22117
+ ok: string;
22118
+ cancel: string;
21695
22119
  };
21696
22120
  }
21697
22121
  declare module "localization/malay" {
@@ -21720,6 +22144,7 @@ declare module "localization/malay" {
21720
22144
  requiredError: string;
21721
22145
  requiredErrorInPanel: string;
21722
22146
  requiredInAllRowsError: string;
22147
+ eachRowUniqueError: string;
21723
22148
  numericError: string;
21724
22149
  minError: string;
21725
22150
  maxError: string;
@@ -21737,6 +22162,7 @@ declare module "localization/malay" {
21737
22162
  urlRequestError: string;
21738
22163
  urlGetChoicesError: string;
21739
22164
  exceedMaxSize: string;
22165
+ noUploadFilesHandler: string;
21740
22166
  otherRequiredError: string;
21741
22167
  uploadingFile: string;
21742
22168
  loadingFile: string;
@@ -21751,6 +22177,8 @@ declare module "localization/malay" {
21751
22177
  emptyRowsText: string;
21752
22178
  addPanel: string;
21753
22179
  removePanel: string;
22180
+ showDetails: string;
22181
+ hideDetails: string;
21754
22182
  choices_Item: string;
21755
22183
  matrix_column: string;
21756
22184
  matrix_row: string;
@@ -21790,6 +22218,8 @@ declare module "localization/malay" {
21790
22218
  tagboxDoneButtonCaption: string;
21791
22219
  selectToRankEmptyRankedAreaText: string;
21792
22220
  selectToRankEmptyUnrankedAreaText: string;
22221
+ ok: string;
22222
+ cancel: string;
21793
22223
  };
21794
22224
  }
21795
22225
  declare module "localization/norwegian" {
@@ -21818,6 +22248,7 @@ declare module "localization/norwegian" {
21818
22248
  requiredError: string;
21819
22249
  requiredErrorInPanel: string;
21820
22250
  requiredInAllRowsError: string;
22251
+ eachRowUniqueError: string;
21821
22252
  numericError: string;
21822
22253
  minError: string;
21823
22254
  maxError: string;
@@ -21835,6 +22266,7 @@ declare module "localization/norwegian" {
21835
22266
  urlRequestError: string;
21836
22267
  urlGetChoicesError: string;
21837
22268
  exceedMaxSize: string;
22269
+ noUploadFilesHandler: string;
21838
22270
  otherRequiredError: string;
21839
22271
  uploadingFile: string;
21840
22272
  loadingFile: string;
@@ -21849,6 +22281,8 @@ declare module "localization/norwegian" {
21849
22281
  emptyRowsText: string;
21850
22282
  addPanel: string;
21851
22283
  removePanel: string;
22284
+ showDetails: string;
22285
+ hideDetails: string;
21852
22286
  choices_Item: string;
21853
22287
  matrix_column: string;
21854
22288
  matrix_row: string;
@@ -21888,6 +22322,8 @@ declare module "localization/norwegian" {
21888
22322
  tagboxDoneButtonCaption: string;
21889
22323
  selectToRankEmptyRankedAreaText: string;
21890
22324
  selectToRankEmptyUnrankedAreaText: string;
22325
+ ok: string;
22326
+ cancel: string;
21891
22327
  };
21892
22328
  }
21893
22329
  declare module "localization/persian" {
@@ -21916,6 +22352,7 @@ declare module "localization/persian" {
21916
22352
  requiredError: string;
21917
22353
  requiredErrorInPanel: string;
21918
22354
  requiredInAllRowsError: string;
22355
+ eachRowUniqueError: string;
21919
22356
  numericError: string;
21920
22357
  minError: string;
21921
22358
  maxError: string;
@@ -21933,6 +22370,7 @@ declare module "localization/persian" {
21933
22370
  urlRequestError: string;
21934
22371
  urlGetChoicesError: string;
21935
22372
  exceedMaxSize: string;
22373
+ noUploadFilesHandler: string;
21936
22374
  otherRequiredError: string;
21937
22375
  uploadingFile: string;
21938
22376
  loadingFile: string;
@@ -21947,6 +22385,8 @@ declare module "localization/persian" {
21947
22385
  emptyRowsText: string;
21948
22386
  addPanel: string;
21949
22387
  removePanel: string;
22388
+ showDetails: string;
22389
+ hideDetails: string;
21950
22390
  choices_Item: string;
21951
22391
  matrix_column: string;
21952
22392
  matrix_row: string;
@@ -21986,6 +22426,8 @@ declare module "localization/persian" {
21986
22426
  tagboxDoneButtonCaption: string;
21987
22427
  selectToRankEmptyRankedAreaText: string;
21988
22428
  selectToRankEmptyUnrankedAreaText: string;
22429
+ ok: string;
22430
+ cancel: string;
21989
22431
  };
21990
22432
  }
21991
22433
  declare module "localization/polish" {
@@ -22014,6 +22456,7 @@ declare module "localization/polish" {
22014
22456
  requiredError: string;
22015
22457
  requiredErrorInPanel: string;
22016
22458
  requiredInAllRowsError: string;
22459
+ eachRowUniqueError: string;
22017
22460
  numericError: string;
22018
22461
  minError: string;
22019
22462
  maxError: string;
@@ -22031,6 +22474,7 @@ declare module "localization/polish" {
22031
22474
  urlRequestError: string;
22032
22475
  urlGetChoicesError: string;
22033
22476
  exceedMaxSize: string;
22477
+ noUploadFilesHandler: string;
22034
22478
  otherRequiredError: string;
22035
22479
  uploadingFile: string;
22036
22480
  loadingFile: string;
@@ -22045,6 +22489,8 @@ declare module "localization/polish" {
22045
22489
  emptyRowsText: string;
22046
22490
  addPanel: string;
22047
22491
  removePanel: string;
22492
+ showDetails: string;
22493
+ hideDetails: string;
22048
22494
  choices_Item: string;
22049
22495
  matrix_column: string;
22050
22496
  matrix_row: string;
@@ -22084,6 +22530,8 @@ declare module "localization/polish" {
22084
22530
  tagboxDoneButtonCaption: string;
22085
22531
  selectToRankEmptyRankedAreaText: string;
22086
22532
  selectToRankEmptyUnrankedAreaText: string;
22533
+ ok: string;
22534
+ cancel: string;
22087
22535
  };
22088
22536
  }
22089
22537
  declare module "localization/portuguese" {
@@ -22112,6 +22560,7 @@ declare module "localization/portuguese" {
22112
22560
  requiredError: string;
22113
22561
  requiredErrorInPanel: string;
22114
22562
  requiredInAllRowsError: string;
22563
+ eachRowUniqueError: string;
22115
22564
  numericError: string;
22116
22565
  minError: string;
22117
22566
  maxError: string;
@@ -22129,6 +22578,7 @@ declare module "localization/portuguese" {
22129
22578
  urlRequestError: string;
22130
22579
  urlGetChoicesError: string;
22131
22580
  exceedMaxSize: string;
22581
+ noUploadFilesHandler: string;
22132
22582
  otherRequiredError: string;
22133
22583
  uploadingFile: string;
22134
22584
  loadingFile: string;
@@ -22143,6 +22593,8 @@ declare module "localization/portuguese" {
22143
22593
  emptyRowsText: string;
22144
22594
  addPanel: string;
22145
22595
  removePanel: string;
22596
+ showDetails: string;
22597
+ hideDetails: string;
22146
22598
  choices_Item: string;
22147
22599
  matrix_column: string;
22148
22600
  matrix_row: string;
@@ -22182,6 +22634,8 @@ declare module "localization/portuguese" {
22182
22634
  tagboxDoneButtonCaption: string;
22183
22635
  selectToRankEmptyRankedAreaText: string;
22184
22636
  selectToRankEmptyUnrankedAreaText: string;
22637
+ ok: string;
22638
+ cancel: string;
22185
22639
  };
22186
22640
  }
22187
22641
  declare module "localization/portuguese-br" {
@@ -22213,6 +22667,7 @@ declare module "localization/portuguese-br" {
22213
22667
  requiredError: string;
22214
22668
  requiredErrorInPanel: string;
22215
22669
  requiredInAllRowsError: string;
22670
+ eachRowUniqueError: string;
22216
22671
  numericError: string;
22217
22672
  minError: string;
22218
22673
  maxError: string;
@@ -22230,6 +22685,7 @@ declare module "localization/portuguese-br" {
22230
22685
  urlRequestError: string;
22231
22686
  urlGetChoicesError: string;
22232
22687
  exceedMaxSize: string;
22688
+ noUploadFilesHandler: string;
22233
22689
  otherRequiredError: string;
22234
22690
  uploadingFile: string;
22235
22691
  loadingFile: string;
@@ -22244,6 +22700,8 @@ declare module "localization/portuguese-br" {
22244
22700
  emptyRowsText: string;
22245
22701
  addPanel: string;
22246
22702
  removePanel: string;
22703
+ showDetails: string;
22704
+ hideDetails: string;
22247
22705
  choices_Item: string;
22248
22706
  matrix_column: string;
22249
22707
  matrix_row: string;
@@ -22283,6 +22741,8 @@ declare module "localization/portuguese-br" {
22283
22741
  tagboxDoneButtonCaption: string;
22284
22742
  selectToRankEmptyRankedAreaText: string;
22285
22743
  selectToRankEmptyUnrankedAreaText: string;
22744
+ ok: string;
22745
+ cancel: string;
22286
22746
  };
22287
22747
  }
22288
22748
  declare module "localization/romanian" {
@@ -22314,6 +22774,7 @@ declare module "localization/russian" {
22314
22774
  requiredError: string;
22315
22775
  requiredErrorInPanel: string;
22316
22776
  requiredInAllRowsError: string;
22777
+ eachRowUniqueError: string;
22317
22778
  numericError: string;
22318
22779
  minError: string;
22319
22780
  maxError: string;
@@ -22331,6 +22792,7 @@ declare module "localization/russian" {
22331
22792
  urlRequestError: string;
22332
22793
  urlGetChoicesError: string;
22333
22794
  exceedMaxSize: string;
22795
+ noUploadFilesHandler: string;
22334
22796
  otherRequiredError: string;
22335
22797
  uploadingFile: string;
22336
22798
  loadingFile: string;
@@ -22345,6 +22807,8 @@ declare module "localization/russian" {
22345
22807
  emptyRowsText: string;
22346
22808
  addPanel: string;
22347
22809
  removePanel: string;
22810
+ showDetails: string;
22811
+ hideDetails: string;
22348
22812
  choices_Item: string;
22349
22813
  matrix_column: string;
22350
22814
  matrix_row: string;
@@ -22384,6 +22848,8 @@ declare module "localization/russian" {
22384
22848
  tagboxDoneButtonCaption: string;
22385
22849
  selectToRankEmptyRankedAreaText: string;
22386
22850
  selectToRankEmptyUnrankedAreaText: string;
22851
+ ok: string;
22852
+ cancel: string;
22387
22853
  };
22388
22854
  }
22389
22855
  declare module "localization/serbian" {
@@ -22412,6 +22878,7 @@ declare module "localization/serbian" {
22412
22878
  requiredError: string;
22413
22879
  requiredErrorInPanel: string;
22414
22880
  requiredInAllRowsError: string;
22881
+ eachRowUniqueError: string;
22415
22882
  numericError: string;
22416
22883
  minError: string;
22417
22884
  maxError: string;
@@ -22429,6 +22896,7 @@ declare module "localization/serbian" {
22429
22896
  urlRequestError: string;
22430
22897
  urlGetChoicesError: string;
22431
22898
  exceedMaxSize: string;
22899
+ noUploadFilesHandler: string;
22432
22900
  otherRequiredError: string;
22433
22901
  uploadingFile: string;
22434
22902
  loadingFile: string;
@@ -22443,6 +22911,8 @@ declare module "localization/serbian" {
22443
22911
  emptyRowsText: string;
22444
22912
  addPanel: string;
22445
22913
  removePanel: string;
22914
+ showDetails: string;
22915
+ hideDetails: string;
22446
22916
  choices_Item: string;
22447
22917
  matrix_column: string;
22448
22918
  matrix_row: string;
@@ -22482,6 +22952,8 @@ declare module "localization/serbian" {
22482
22952
  tagboxDoneButtonCaption: string;
22483
22953
  selectToRankEmptyRankedAreaText: string;
22484
22954
  selectToRankEmptyUnrankedAreaText: string;
22955
+ ok: string;
22956
+ cancel: string;
22485
22957
  };
22486
22958
  }
22487
22959
  declare module "localization/simplified-chinese" {
@@ -22510,6 +22982,7 @@ declare module "localization/simplified-chinese" {
22510
22982
  requiredError: string;
22511
22983
  requiredErrorInPanel: string;
22512
22984
  requiredInAllRowsError: string;
22985
+ eachRowUniqueError: string;
22513
22986
  numericError: string;
22514
22987
  minError: string;
22515
22988
  maxError: string;
@@ -22527,6 +23000,7 @@ declare module "localization/simplified-chinese" {
22527
23000
  urlRequestError: string;
22528
23001
  urlGetChoicesError: string;
22529
23002
  exceedMaxSize: string;
23003
+ noUploadFilesHandler: string;
22530
23004
  otherRequiredError: string;
22531
23005
  uploadingFile: string;
22532
23006
  loadingFile: string;
@@ -22541,6 +23015,8 @@ declare module "localization/simplified-chinese" {
22541
23015
  emptyRowsText: string;
22542
23016
  addPanel: string;
22543
23017
  removePanel: string;
23018
+ showDetails: string;
23019
+ hideDetails: string;
22544
23020
  choices_Item: string;
22545
23021
  matrix_column: string;
22546
23022
  matrix_row: string;
@@ -22580,6 +23056,8 @@ declare module "localization/simplified-chinese" {
22580
23056
  tagboxDoneButtonCaption: string;
22581
23057
  selectToRankEmptyRankedAreaText: string;
22582
23058
  selectToRankEmptyUnrankedAreaText: string;
23059
+ ok: string;
23060
+ cancel: string;
22583
23061
  };
22584
23062
  }
22585
23063
  declare module "localization/slovak" {
@@ -22608,6 +23086,7 @@ declare module "localization/slovak" {
22608
23086
  requiredError: string;
22609
23087
  requiredErrorInPanel: string;
22610
23088
  requiredInAllRowsError: string;
23089
+ eachRowUniqueError: string;
22611
23090
  numericError: string;
22612
23091
  minError: string;
22613
23092
  maxError: string;
@@ -22625,6 +23104,7 @@ declare module "localization/slovak" {
22625
23104
  urlRequestError: string;
22626
23105
  urlGetChoicesError: string;
22627
23106
  exceedMaxSize: string;
23107
+ noUploadFilesHandler: string;
22628
23108
  otherRequiredError: string;
22629
23109
  uploadingFile: string;
22630
23110
  loadingFile: string;
@@ -22639,6 +23119,8 @@ declare module "localization/slovak" {
22639
23119
  emptyRowsText: string;
22640
23120
  addPanel: string;
22641
23121
  removePanel: string;
23122
+ showDetails: string;
23123
+ hideDetails: string;
22642
23124
  choices_Item: string;
22643
23125
  matrix_column: string;
22644
23126
  matrix_row: string;
@@ -22678,6 +23160,8 @@ declare module "localization/slovak" {
22678
23160
  tagboxDoneButtonCaption: string;
22679
23161
  selectToRankEmptyRankedAreaText: string;
22680
23162
  selectToRankEmptyUnrankedAreaText: string;
23163
+ ok: string;
23164
+ cancel: string;
22681
23165
  };
22682
23166
  }
22683
23167
  declare module "localization/spanish" {
@@ -22706,6 +23190,7 @@ declare module "localization/spanish" {
22706
23190
  requiredError: string;
22707
23191
  requiredErrorInPanel: string;
22708
23192
  requiredInAllRowsError: string;
23193
+ eachRowUniqueError: string;
22709
23194
  numericError: string;
22710
23195
  minError: string;
22711
23196
  maxError: string;
@@ -22723,6 +23208,7 @@ declare module "localization/spanish" {
22723
23208
  urlRequestError: string;
22724
23209
  urlGetChoicesError: string;
22725
23210
  exceedMaxSize: string;
23211
+ noUploadFilesHandler: string;
22726
23212
  otherRequiredError: string;
22727
23213
  uploadingFile: string;
22728
23214
  loadingFile: string;
@@ -22737,6 +23223,8 @@ declare module "localization/spanish" {
22737
23223
  emptyRowsText: string;
22738
23224
  addPanel: string;
22739
23225
  removePanel: string;
23226
+ showDetails: string;
23227
+ hideDetails: string;
22740
23228
  choices_Item: string;
22741
23229
  matrix_column: string;
22742
23230
  matrix_row: string;
@@ -22776,6 +23264,8 @@ declare module "localization/spanish" {
22776
23264
  tagboxDoneButtonCaption: string;
22777
23265
  selectToRankEmptyRankedAreaText: string;
22778
23266
  selectToRankEmptyUnrankedAreaText: string;
23267
+ ok: string;
23268
+ cancel: string;
22779
23269
  };
22780
23270
  }
22781
23271
  declare module "localization/swahili" {
@@ -22804,6 +23294,7 @@ declare module "localization/swahili" {
22804
23294
  requiredError: string;
22805
23295
  requiredErrorInPanel: string;
22806
23296
  requiredInAllRowsError: string;
23297
+ eachRowUniqueError: string;
22807
23298
  numericError: string;
22808
23299
  minError: string;
22809
23300
  maxError: string;
@@ -22821,6 +23312,7 @@ declare module "localization/swahili" {
22821
23312
  urlRequestError: string;
22822
23313
  urlGetChoicesError: string;
22823
23314
  exceedMaxSize: string;
23315
+ noUploadFilesHandler: string;
22824
23316
  otherRequiredError: string;
22825
23317
  uploadingFile: string;
22826
23318
  loadingFile: string;
@@ -22835,6 +23327,8 @@ declare module "localization/swahili" {
22835
23327
  emptyRowsText: string;
22836
23328
  addPanel: string;
22837
23329
  removePanel: string;
23330
+ showDetails: string;
23331
+ hideDetails: string;
22838
23332
  choices_Item: string;
22839
23333
  matrix_column: string;
22840
23334
  matrix_row: string;
@@ -22874,6 +23368,8 @@ declare module "localization/swahili" {
22874
23368
  tagboxDoneButtonCaption: string;
22875
23369
  selectToRankEmptyRankedAreaText: string;
22876
23370
  selectToRankEmptyUnrankedAreaText: string;
23371
+ ok: string;
23372
+ cancel: string;
22877
23373
  };
22878
23374
  }
22879
23375
  declare module "localization/swedish" {
@@ -22902,6 +23398,7 @@ declare module "localization/swedish" {
22902
23398
  requiredError: string;
22903
23399
  requiredErrorInPanel: string;
22904
23400
  requiredInAllRowsError: string;
23401
+ eachRowUniqueError: string;
22905
23402
  numericError: string;
22906
23403
  minError: string;
22907
23404
  maxError: string;
@@ -22919,6 +23416,7 @@ declare module "localization/swedish" {
22919
23416
  urlRequestError: string;
22920
23417
  urlGetChoicesError: string;
22921
23418
  exceedMaxSize: string;
23419
+ noUploadFilesHandler: string;
22922
23420
  otherRequiredError: string;
22923
23421
  uploadingFile: string;
22924
23422
  loadingFile: string;
@@ -22933,6 +23431,8 @@ declare module "localization/swedish" {
22933
23431
  emptyRowsText: string;
22934
23432
  addPanel: string;
22935
23433
  removePanel: string;
23434
+ showDetails: string;
23435
+ hideDetails: string;
22936
23436
  choices_Item: string;
22937
23437
  matrix_column: string;
22938
23438
  matrix_row: string;
@@ -22972,6 +23472,8 @@ declare module "localization/swedish" {
22972
23472
  tagboxDoneButtonCaption: string;
22973
23473
  selectToRankEmptyRankedAreaText: string;
22974
23474
  selectToRankEmptyUnrankedAreaText: string;
23475
+ ok: string;
23476
+ cancel: string;
22975
23477
  };
22976
23478
  }
22977
23479
  declare module "localization/tajik" {
@@ -23064,6 +23566,7 @@ declare module "localization/thai" {
23064
23566
  requiredError: string;
23065
23567
  requiredErrorInPanel: string;
23066
23568
  requiredInAllRowsError: string;
23569
+ eachRowUniqueError: string;
23067
23570
  numericError: string;
23068
23571
  minError: string;
23069
23572
  maxError: string;
@@ -23081,6 +23584,7 @@ declare module "localization/thai" {
23081
23584
  urlRequestError: string;
23082
23585
  urlGetChoicesError: string;
23083
23586
  exceedMaxSize: string;
23587
+ noUploadFilesHandler: string;
23084
23588
  otherRequiredError: string;
23085
23589
  uploadingFile: string;
23086
23590
  loadingFile: string;
@@ -23095,6 +23599,8 @@ declare module "localization/thai" {
23095
23599
  emptyRowsText: string;
23096
23600
  addPanel: string;
23097
23601
  removePanel: string;
23602
+ showDetails: string;
23603
+ hideDetails: string;
23098
23604
  choices_Item: string;
23099
23605
  matrix_column: string;
23100
23606
  matrix_row: string;
@@ -23134,6 +23640,8 @@ declare module "localization/thai" {
23134
23640
  tagboxDoneButtonCaption: string;
23135
23641
  selectToRankEmptyRankedAreaText: string;
23136
23642
  selectToRankEmptyUnrankedAreaText: string;
23643
+ ok: string;
23644
+ cancel: string;
23137
23645
  };
23138
23646
  }
23139
23647
  declare module "localization/traditional-chinese" {
@@ -23162,6 +23670,7 @@ declare module "localization/traditional-chinese" {
23162
23670
  requiredError: string;
23163
23671
  requiredErrorInPanel: string;
23164
23672
  requiredInAllRowsError: string;
23673
+ eachRowUniqueError: string;
23165
23674
  numericError: string;
23166
23675
  minError: string;
23167
23676
  maxError: string;
@@ -23179,6 +23688,7 @@ declare module "localization/traditional-chinese" {
23179
23688
  urlRequestError: string;
23180
23689
  urlGetChoicesError: string;
23181
23690
  exceedMaxSize: string;
23691
+ noUploadFilesHandler: string;
23182
23692
  otherRequiredError: string;
23183
23693
  uploadingFile: string;
23184
23694
  loadingFile: string;
@@ -23193,6 +23703,8 @@ declare module "localization/traditional-chinese" {
23193
23703
  emptyRowsText: string;
23194
23704
  addPanel: string;
23195
23705
  removePanel: string;
23706
+ showDetails: string;
23707
+ hideDetails: string;
23196
23708
  choices_Item: string;
23197
23709
  matrix_column: string;
23198
23710
  matrix_row: string;
@@ -23232,6 +23744,8 @@ declare module "localization/traditional-chinese" {
23232
23744
  tagboxDoneButtonCaption: string;
23233
23745
  selectToRankEmptyRankedAreaText: string;
23234
23746
  selectToRankEmptyUnrankedAreaText: string;
23747
+ ok: string;
23748
+ cancel: string;
23235
23749
  };
23236
23750
  }
23237
23751
  declare module "localization/turkish" {
@@ -23260,6 +23774,7 @@ declare module "localization/turkish" {
23260
23774
  requiredError: string;
23261
23775
  requiredErrorInPanel: string;
23262
23776
  requiredInAllRowsError: string;
23777
+ eachRowUniqueError: string;
23263
23778
  numericError: string;
23264
23779
  minError: string;
23265
23780
  maxError: string;
@@ -23277,6 +23792,7 @@ declare module "localization/turkish" {
23277
23792
  urlRequestError: string;
23278
23793
  urlGetChoicesError: string;
23279
23794
  exceedMaxSize: string;
23795
+ noUploadFilesHandler: string;
23280
23796
  otherRequiredError: string;
23281
23797
  uploadingFile: string;
23282
23798
  loadingFile: string;
@@ -23291,6 +23807,8 @@ declare module "localization/turkish" {
23291
23807
  emptyRowsText: string;
23292
23808
  addPanel: string;
23293
23809
  removePanel: string;
23810
+ showDetails: string;
23811
+ hideDetails: string;
23294
23812
  choices_Item: string;
23295
23813
  matrix_column: string;
23296
23814
  matrix_row: string;
@@ -23330,6 +23848,8 @@ declare module "localization/turkish" {
23330
23848
  tagboxDoneButtonCaption: string;
23331
23849
  selectToRankEmptyRankedAreaText: string;
23332
23850
  selectToRankEmptyUnrankedAreaText: string;
23851
+ ok: string;
23852
+ cancel: string;
23333
23853
  };
23334
23854
  }
23335
23855
  declare module "localization/ukrainian" {
@@ -23358,6 +23878,7 @@ declare module "localization/ukrainian" {
23358
23878
  requiredError: string;
23359
23879
  requiredErrorInPanel: string;
23360
23880
  requiredInAllRowsError: string;
23881
+ eachRowUniqueError: string;
23361
23882
  numericError: string;
23362
23883
  minError: string;
23363
23884
  maxError: string;
@@ -23375,6 +23896,7 @@ declare module "localization/ukrainian" {
23375
23896
  urlRequestError: string;
23376
23897
  urlGetChoicesError: string;
23377
23898
  exceedMaxSize: string;
23899
+ noUploadFilesHandler: string;
23378
23900
  otherRequiredError: string;
23379
23901
  uploadingFile: string;
23380
23902
  loadingFile: string;
@@ -23389,6 +23911,8 @@ declare module "localization/ukrainian" {
23389
23911
  emptyRowsText: string;
23390
23912
  addPanel: string;
23391
23913
  removePanel: string;
23914
+ showDetails: string;
23915
+ hideDetails: string;
23392
23916
  choices_Item: string;
23393
23917
  matrix_column: string;
23394
23918
  matrix_row: string;
@@ -23428,6 +23952,8 @@ declare module "localization/ukrainian" {
23428
23952
  tagboxDoneButtonCaption: string;
23429
23953
  selectToRankEmptyRankedAreaText: string;
23430
23954
  selectToRankEmptyUnrankedAreaText: string;
23955
+ ok: string;
23956
+ cancel: string;
23431
23957
  };
23432
23958
  }
23433
23959
  declare module "localization/vietnamese" {
@@ -23456,6 +23982,7 @@ declare module "localization/vietnamese" {
23456
23982
  requiredError: string;
23457
23983
  requiredErrorInPanel: string;
23458
23984
  requiredInAllRowsError: string;
23985
+ eachRowUniqueError: string;
23459
23986
  numericError: string;
23460
23987
  minError: string;
23461
23988
  maxError: string;
@@ -23473,6 +24000,7 @@ declare module "localization/vietnamese" {
23473
24000
  urlRequestError: string;
23474
24001
  urlGetChoicesError: string;
23475
24002
  exceedMaxSize: string;
24003
+ noUploadFilesHandler: string;
23476
24004
  otherRequiredError: string;
23477
24005
  uploadingFile: string;
23478
24006
  loadingFile: string;
@@ -23487,6 +24015,8 @@ declare module "localization/vietnamese" {
23487
24015
  emptyRowsText: string;
23488
24016
  addPanel: string;
23489
24017
  removePanel: string;
24018
+ showDetails: string;
24019
+ hideDetails: string;
23490
24020
  choices_Item: string;
23491
24021
  matrix_column: string;
23492
24022
  matrix_row: string;
@@ -23526,6 +24056,8 @@ declare module "localization/vietnamese" {
23526
24056
  tagboxDoneButtonCaption: string;
23527
24057
  selectToRankEmptyRankedAreaText: string;
23528
24058
  selectToRankEmptyUnrankedAreaText: string;
24059
+ ok: string;
24060
+ cancel: string;
23529
24061
  };
23530
24062
  }
23531
24063
  declare module "localization/welsh" {
@@ -23554,6 +24086,7 @@ declare module "localization/welsh" {
23554
24086
  requiredError: string;
23555
24087
  requiredErrorInPanel: string;
23556
24088
  requiredInAllRowsError: string;
24089
+ eachRowUniqueError: string;
23557
24090
  numericError: string;
23558
24091
  minError: string;
23559
24092
  maxError: string;
@@ -23571,6 +24104,7 @@ declare module "localization/welsh" {
23571
24104
  urlRequestError: string;
23572
24105
  urlGetChoicesError: string;
23573
24106
  exceedMaxSize: string;
24107
+ noUploadFilesHandler: string;
23574
24108
  otherRequiredError: string;
23575
24109
  uploadingFile: string;
23576
24110
  loadingFile: string;
@@ -23585,6 +24119,8 @@ declare module "localization/welsh" {
23585
24119
  emptyRowsText: string;
23586
24120
  addPanel: string;
23587
24121
  removePanel: string;
24122
+ showDetails: string;
24123
+ hideDetails: string;
23588
24124
  choices_Item: string;
23589
24125
  matrix_column: string;
23590
24126
  matrix_row: string;
@@ -23624,6 +24160,8 @@ declare module "localization/welsh" {
23624
24160
  tagboxDoneButtonCaption: string;
23625
24161
  selectToRankEmptyRankedAreaText: string;
23626
24162
  selectToRankEmptyUnrankedAreaText: string;
24163
+ ok: string;
24164
+ cancel: string;
23627
24165
  };
23628
24166
  }
23629
24167
  declare module "localization/telugu" {
@@ -23652,6 +24190,7 @@ declare module "localization/telugu" {
23652
24190
  requiredError: string;
23653
24191
  requiredErrorInPanel: string;
23654
24192
  requiredInAllRowsError: string;
24193
+ eachRowUniqueError: string;
23655
24194
  numericError: string;
23656
24195
  minError: string;
23657
24196
  maxError: string;
@@ -23669,6 +24208,7 @@ declare module "localization/telugu" {
23669
24208
  urlRequestError: string;
23670
24209
  urlGetChoicesError: string;
23671
24210
  exceedMaxSize: string;
24211
+ noUploadFilesHandler: string;
23672
24212
  otherRequiredError: string;
23673
24213
  uploadingFile: string;
23674
24214
  loadingFile: string;
@@ -23683,6 +24223,8 @@ declare module "localization/telugu" {
23683
24223
  emptyRowsText: string;
23684
24224
  addPanel: string;
23685
24225
  removePanel: string;
24226
+ showDetails: string;
24227
+ hideDetails: string;
23686
24228
  choices_Item: string;
23687
24229
  matrix_column: string;
23688
24230
  matrix_row: string;
@@ -23722,6 +24264,8 @@ declare module "localization/telugu" {
23722
24264
  tagboxDoneButtonCaption: string;
23723
24265
  selectToRankEmptyRankedAreaText: string;
23724
24266
  selectToRankEmptyUnrankedAreaText: string;
24267
+ ok: string;
24268
+ cancel: string;
23725
24269
  };
23726
24270
  }
23727
24271
  declare module "entries/chunks/localization" {
@@ -24622,14 +25166,24 @@ declare module "react/reactquestion_matrix" {
24622
25166
  constructor(props: any);
24623
25167
  private get question();
24624
25168
  private get row();
24625
- handleOnChange(event: any): void;
24626
- handleOnMouseDown(event: any): void;
24627
25169
  protected wrapCell(cell: any, element: JSX.Element, reason: string): JSX.Element;
24628
25170
  protected canRender(): boolean;
24629
25171
  protected renderElement(): JSX.Element;
24630
- generateTds(): JSX.Element[];
25172
+ generateTds(): Array<JSX.Element>;
24631
25173
  cellClick(row: any, column: any): void;
24632
25174
  }
25175
+ export class SurveyQuestionMatrixCell extends ReactSurveyElement {
25176
+ constructor(props: any);
25177
+ handleOnChange(event: any): void;
25178
+ handleOnMouseDown(event: any): void;
25179
+ private get question();
25180
+ private get row();
25181
+ private get column();
25182
+ private get columnIndex();
25183
+ protected canRender(): boolean;
25184
+ protected renderElement(): JSX.Element;
25185
+ protected renderInput(inputId: string, isChecked: boolean): JSX.Element;
25186
+ }
24633
25187
  }
24634
25188
  declare module "react/reactquestion_html" {
24635
25189
  import { SurveyQuestionElementBase } from "react/reactquestion_element";
@@ -25273,7 +25827,7 @@ declare module "entries/react-ui-model" {
25273
25827
  export { SurveyQuestionTagboxItem } from "react/tagbox-item";
25274
25828
  export { SurveyQuestionTagbox } from "react/reactquestion_tagbox";
25275
25829
  export { SurveyQuestionDropdownSelect } from "react/dropdown-select";
25276
- export { SurveyQuestionMatrix, SurveyQuestionMatrixRow, } from "react/reactquestion_matrix";
25830
+ export { SurveyQuestionMatrix, SurveyQuestionMatrixRow, SurveyQuestionMatrixCell } from "react/reactquestion_matrix";
25277
25831
  export { SurveyQuestionHtml } from "react/reactquestion_html";
25278
25832
  export { SurveyQuestionFile } from "react/reactquestion_file";
25279
25833
  export { SurveyFileChooseButton } from "react/components/file/file-choose-button";