survey-react 1.9.124 → 1.9.126

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.
@@ -1376,7 +1379,7 @@ declare module "survey-error" {
1376
1379
  private locTextValue;
1377
1380
  visible: boolean;
1378
1381
  constructor(text?: string, errorOwner?: ISurveyErrorOwner);
1379
- equalsTo(error: SurveyError): boolean;
1382
+ equals(error: SurveyError): boolean;
1380
1383
  get locText(): LocalizableString;
1381
1384
  getText(): string;
1382
1385
  getErrorType(): string;
@@ -1546,6 +1549,7 @@ declare module "defaultCss/defaultV2Css" {
1546
1549
  headerTop: string;
1547
1550
  headerBottom: string;
1548
1551
  content: string;
1552
+ contentSupportContainerQueries: string;
1549
1553
  contentLeft: string;
1550
1554
  titleNumInline: string;
1551
1555
  titleLeftRoot: string;
@@ -1784,6 +1788,7 @@ declare module "defaultCss/defaultV2Css" {
1784
1788
  rowError: string;
1785
1789
  cell: string;
1786
1790
  row: string;
1791
+ rowDisabled: string;
1787
1792
  headerCell: string;
1788
1793
  rowTextCell: string;
1789
1794
  label: string;
@@ -2020,13 +2025,18 @@ declare module "defaultCss/defaultV2Css" {
2020
2025
  };
2021
2026
  window: {
2022
2027
  root: string;
2028
+ rootCollapsedMod: string;
2029
+ rootContent: string;
2023
2030
  body: string;
2024
2031
  header: {
2025
2032
  root: string;
2026
- title: string;
2033
+ titleCollapsed: string;
2034
+ buttonsContainer: string;
2027
2035
  button: string;
2028
2036
  buttonExpanded: string;
2029
2037
  buttonCollapsed: string;
2038
+ collapseButton: string;
2039
+ closeButton: string;
2030
2040
  };
2031
2041
  };
2032
2042
  ranking: {
@@ -2423,13 +2433,37 @@ declare module "question_custom" {
2423
2433
  */
2424
2434
  onInit?(): void;
2425
2435
  /**
2426
- * Specifies whether the custom question type is available in the Toolbox and the Add Question menu.
2436
+ * Specifies whether the custom question type is available in the Toolbox and the Add Question menu in Survey Creator.
2427
2437
  *
2428
2438
  * Default value: `true`
2429
2439
  *
2430
2440
  * 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
2441
  */
2432
2442
  showInToolbox?: boolean;
2443
+ /**
2444
+ * 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.
2445
+ *
2446
+ * You can specify the question title with a string value or with an object that defines different titles for different locales:
2447
+ *
2448
+ * ```js
2449
+ * import { ComponentCollection } from "survey-core";
2450
+ *
2451
+ * ComponentCollection.Instance.add({
2452
+ * // ...
2453
+ * defaultQuestionTitle: "Default title"
2454
+ * });
2455
+ * // ===== OR =====
2456
+ * ComponentCollection.Instance.add({
2457
+ * // ...
2458
+ * defaultQuestionTitle: {
2459
+ * en: "Default title",
2460
+ * de: "Standardtitel",
2461
+ * fr: "Titre par défaut"
2462
+ * }
2463
+ * });
2464
+ * ```
2465
+ */
2466
+ defaultQuestionTitle?: any;
2433
2467
  /**
2434
2468
  * 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
2469
  *
@@ -2594,6 +2628,7 @@ declare module "question_custom" {
2594
2628
  onValueChanging(question: Question, name: string, newValue: any): any;
2595
2629
  onItemValuePropertyChanged(question: Question, item: ItemValue, propertyName: string, name: string, newValue: any): void;
2596
2630
  getDisplayValue(keyAsText: boolean, value: any, question: Question): any;
2631
+ get defaultQuestionTitle(): any;
2597
2632
  setValueToQuestion(val: any): any;
2598
2633
  getValueFromQuestion(val: any): any;
2599
2634
  get isComposite(): boolean;
@@ -2617,10 +2652,12 @@ declare module "question_custom" {
2617
2652
  }
2618
2653
  export abstract class QuestionCustomModelBase extends Question implements ISurveyImpl, ISurveyData, IPanel {
2619
2654
  customQuestion: ComponentQuestionJSON;
2655
+ private locQuestionTitle;
2620
2656
  constructor(name: string, customQuestion: ComponentQuestionJSON);
2621
2657
  getType(): string;
2622
2658
  locStrsChanged(): void;
2623
2659
  localeChanged(): void;
2660
+ protected getDefaultTitle(): string;
2624
2661
  addUsedLocales(locales: Array<string>): void;
2625
2662
  needResponsiveWidth(): boolean;
2626
2663
  protected createWrapper(): void;
@@ -2829,6 +2866,12 @@ declare module "error" {
2829
2866
  getErrorType(): string;
2830
2867
  protected getDefaultText(): string;
2831
2868
  }
2869
+ export class EachRowUniqueError extends SurveyError {
2870
+ text: string;
2871
+ constructor(text: string, errorOwner?: ISurveyErrorOwner);
2872
+ getErrorType(): string;
2873
+ protected getDefaultText(): string;
2874
+ }
2832
2875
  export class MinRowCountError extends SurveyError {
2833
2876
  minRowCount: number;
2834
2877
  constructor(minRowCount: number, errorOwner?: ISurveyErrorOwner);
@@ -3002,7 +3045,7 @@ declare module "panel" {
3002
3045
  *
3003
3046
  * A survey parses and runs all expressions on startup. If any values used in the expression change, the survey re-evaluates it.
3004
3047
  *
3005
- * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility)
3048
+ * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility).
3006
3049
  * @see visible
3007
3050
  * @see isVisible
3008
3051
  */
@@ -3095,7 +3138,7 @@ declare module "panel" {
3095
3138
  *
3096
3139
  * A survey parses and runs all expressions on startup. If any values used in the expression change, the survey re-evaluates it.
3097
3140
  *
3098
- * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility)
3141
+ * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility).
3099
3142
  * @see isRequired
3100
3143
  */
3101
3144
  get requiredIf(): string;
@@ -3218,7 +3261,7 @@ declare module "panel" {
3218
3261
  *
3219
3262
  * A survey parses and runs all expressions on startup. If any values used in the expression change, the survey re-evaluates it.
3220
3263
  *
3221
- * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility)
3264
+ * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility).
3222
3265
  * @see readOnly
3223
3266
  * @see isReadOnly
3224
3267
  */
@@ -4202,7 +4245,7 @@ declare module "question_baseselect" {
4202
4245
  get otherPlaceHolder(): string;
4203
4246
  set otherPlaceHolder(newValue: string);
4204
4247
  /**
4205
- * Get or sets an error message displayed when users select the "Other" choice item but leave the comment area empty.
4248
+ * Gets or sets an error message displayed when users select the "Other" choice item but leave the comment area empty.
4206
4249
  * @see showOtherItem
4207
4250
  */
4208
4251
  get otherErrorText(): string;
@@ -4285,6 +4328,8 @@ declare module "question_baseselect" {
4285
4328
  private isFirstLoadChoicesFromUrl;
4286
4329
  protected onBeforeSendRequest(): void;
4287
4330
  protected onLoadChoicesFromUrl(array: Array<ItemValue>): void;
4331
+ private canAvoidSettChoicesFromUrl;
4332
+ private setChoicesFromUrl;
4288
4333
  private createCachedValueForUrlRequests;
4289
4334
  private updateCachedValueForUrlRequests;
4290
4335
  private isUpdatingChoicesDependedQuestions;
@@ -4369,7 +4414,7 @@ declare module "question_baseselect" {
4369
4414
  colCountChangedCallback: () => void;
4370
4415
  constructor(name: string);
4371
4416
  /**
4372
- * Get or sets the number of columns used to arrange choice items.
4417
+ * Gets or sets the number of columns used to arrange choice items.
4373
4418
  *
4374
4419
  * Set this property to 0 if you want to display all items in one line. The default value depends on the available width.
4375
4420
  * @see separateSpecialChoices
@@ -4675,6 +4720,11 @@ declare module "question_matrixdropdowncolumn" {
4675
4720
  getCellAriaLabel(rowTitle: string, columnTitle: string): string;
4676
4721
  }
4677
4722
  export var matrixDropdownColumnTypes: any;
4723
+ /**
4724
+ * 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).
4725
+ *
4726
+ * 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.
4727
+ */
4678
4728
  export class MatrixDropdownColumn extends Base implements ILocalizableOwner, IWrapperObject {
4679
4729
  static getColumnTypes(): Array<string>;
4680
4730
  private templateQuestionValue;
@@ -4696,12 +4746,39 @@ declare module "question_matrixdropdowncolumn" {
4696
4746
  get index(): number;
4697
4747
  setIndex(val: number): void;
4698
4748
  getType(): string;
4749
+ /**
4750
+ * Specifies the type of column cells.
4751
+ *
4752
+ * Possible values:
4753
+ *
4754
+ * - [`"dropdown"`](https://surveyjs.io/form-library/documentation/api-reference/dropdown-menu-model)
4755
+ * - [`"checkbox"`](https://surveyjs.io/form-library/documentation/api-reference/checkbox-question-model)
4756
+ * - [`"radiogroup"`](https://surveyjs.io/form-library/documentation/api-reference/radio-button-question-model)
4757
+ * - [`"tagbox"`](https://surveyjs.io/form-library/documentation/api-reference/dropdown-tag-box-model)
4758
+ * - [`"text"`](https://surveyjs.io/form-library/documentation/api-reference/text-entry-question-model)
4759
+ * - [`"comment"`](https://surveyjs.io/form-library/documentation/api-reference/comment-field-model)
4760
+ * - [`"boolean"`](https://surveyjs.io/form-library/documentation/api-reference/boolean-question-model)
4761
+ * - [`"expression"`](https://surveyjs.io/form-library/documentation/api-reference/expression-model)
4762
+ * - [`"rating"`](https://surveyjs.io/form-library/documentation/api-reference/rating-scale-question-model)
4763
+ * - `"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.
4764
+ *
4765
+ * 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.
4766
+ *
4767
+ * [View Demo](https://surveyjs.io/form-library/examples/aggregate-data-within-form/ (linkStyle))
4768
+ */
4699
4769
  get cellType(): string;
4700
4770
  set cellType(val: string);
4701
4771
  get templateQuestion(): Question;
4702
4772
  get value(): string;
4703
4773
  get isVisible(): boolean;
4704
4774
  get isColumnVisible(): boolean;
4775
+ /**
4776
+ * Gets or sets column visibility.
4777
+ *
4778
+ * If you want to display or hide a column based on a condition, specify the [`visibleIf`](#visibleIf) property.
4779
+ * @see isRequired
4780
+ * @see readOnly
4781
+ */
4705
4782
  get visible(): boolean;
4706
4783
  set visible(val: boolean);
4707
4784
  get hasVisibleCell(): boolean;
@@ -4710,52 +4787,167 @@ declare module "question_matrixdropdowncolumn" {
4710
4787
  get getVisibleChoicesInCell(): Array<any>;
4711
4788
  setVisibleChoicesInCell(val: Array<any>): void;
4712
4789
  get isFilteredMultipleColumns(): boolean;
4790
+ /**
4791
+ * A column ID that is not visible to respondents.
4792
+ *
4793
+ * > Column IDs must be unique.
4794
+ * @see title
4795
+ */
4713
4796
  get name(): string;
4714
4797
  set name(val: string);
4798
+ /**
4799
+ * A user-friendly column caption to display. If `title` is undefined, [`name`](#name) is displayed instead.
4800
+ */
4715
4801
  get title(): string;
4716
4802
  set title(val: string);
4717
4803
  get locTitle(): LocalizableString;
4718
4804
  get fullTitle(): string;
4805
+ /**
4806
+ * Marks the column as required. If a respondent skips any cell in a required column, the matrix displays a validation error.
4807
+ *
4808
+ * If you want to mark the column as required based on a condition, specify the [`requiredIf`](#requiredIf) property.
4809
+ * @see requiredErrorText
4810
+ * @see visible
4811
+ * @see readOnly
4812
+ */
4719
4813
  get isRequired(): boolean;
4720
4814
  set isRequired(val: boolean);
4721
4815
  get isRenderedRequired(): boolean;
4722
4816
  set isRenderedRequired(val: boolean);
4723
4817
  updateIsRenderedRequired(val: boolean): void;
4724
4818
  get requiredText(): string;
4819
+ /**
4820
+ * Specifies a custom error message for a required column.
4821
+ * @see isRequired
4822
+ */
4725
4823
  get requiredErrorText(): string;
4726
4824
  set requiredErrorText(val: string);
4727
4825
  get locRequiredErrorText(): LocalizableString;
4826
+ /**
4827
+ * Makes the column read-only.
4828
+ *
4829
+ * If you want to switch the column to the read-only state based on a condition, specify the [`enableIf`](#enableIf) property.
4830
+ * @see visible
4831
+ * @see isRequired
4832
+ */
4728
4833
  get readOnly(): boolean;
4729
4834
  set readOnly(val: boolean);
4730
4835
  get hasOther(): boolean;
4731
4836
  set hasOther(val: boolean);
4837
+ /**
4838
+ * A Boolean expression. If it evaluates to `false`, this column becomes hidden.
4839
+ *
4840
+ * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility).
4841
+ * @see visible
4842
+ */
4732
4843
  get visibleIf(): string;
4733
4844
  set visibleIf(val: string);
4845
+ /**
4846
+ * A Boolean expression. If it evaluates to `false`, this column becomes read-only.
4847
+ *
4848
+ * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility).
4849
+ * @see readOnly
4850
+ */
4734
4851
  get enableIf(): string;
4735
4852
  set enableIf(val: string);
4853
+ /**
4854
+ * A Boolean expression. If it evaluates to `true`, this column becomes required.
4855
+ *
4856
+ * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility).
4857
+ * @see isRequired
4858
+ */
4736
4859
  get requiredIf(): string;
4737
4860
  set requiredIf(val: string);
4861
+ /**
4862
+ * A Boolean expression. If it evaluates to `true`, all cells in this column are set to a value calculated using the [`defaultValueExpression`](#defaultValueExpression).
4863
+ *
4864
+ * [Expressions](https://surveyjs.io/form-library/documentation/design-survey/conditional-logic#expressions (linkStyle))
4865
+ * @see setValueIf
4866
+ */
4738
4867
  get resetValueIf(): string;
4739
4868
  set resetValueIf(val: string);
4869
+ /**
4870
+ * 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.
4871
+ *
4872
+ * [Expressions](https://surveyjs.io/form-library/documentation/design-survey/conditional-logic#expressions (linkStyle))
4873
+ * @see setValueExpression
4874
+ */
4740
4875
  get defaultValueExpression(): string;
4741
4876
  set defaultValueExpression(val: string);
4877
+ /**
4878
+ * A Boolean expression. If it evaluates to `true`, all cells in this column are set to a value calculated using the [`setValueExpression`](#setValueExpression).
4879
+ *
4880
+ * [Expressions](https://surveyjs.io/form-library/documentation/design-survey/conditional-logic#expressions (linkStyle))
4881
+ * @see resetValueIf
4882
+ */
4742
4883
  get setValueIf(): string;
4743
4884
  set setValueIf(val: string);
4885
+ /**
4886
+ * An expression used to calculate a value for all column cells.
4887
+ *
4888
+ * 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`.
4889
+ *
4890
+ * [Expressions](https://surveyjs.io/form-library/documentation/design-survey/conditional-logic#expressions (linkStyle))
4891
+ * @see defaultValueExpression
4892
+ * @see resetValueIf
4893
+ */
4744
4894
  get setValueExpession(): string;
4745
4895
  set setValueExpession(val: string);
4896
+ /**
4897
+ * Specifies whether a respondent is required to provide a unique response for each question within this column.
4898
+ *
4899
+ * Default value: `false`
4900
+ */
4746
4901
  get isUnique(): boolean;
4747
4902
  set isUnique(val: boolean);
4903
+ /**
4904
+ * Specifies whether to create an individual column for each choice option. Applies only to columns of `"checkbox"` or `"radiogroup"` [`cellType`](#cellType).
4905
+ */
4748
4906
  get showInMultipleColumns(): boolean;
4749
4907
  set showInMultipleColumns(val: boolean);
4750
4908
  get isSupportMultipleColumns(): boolean;
4751
4909
  get isShowInMultipleColumns(): boolean;
4910
+ /**
4911
+ * Column validators.
4912
+ *
4913
+ * [Data Validation](https://surveyjs.io/form-library/documentation/data-validation (linkStyle))
4914
+ * @see isRequired
4915
+ */
4752
4916
  get validators(): Array<SurveyValidator>;
4753
4917
  set validators(val: Array<SurveyValidator>);
4918
+ /**
4919
+ * An aggregation method used to calculate the column total.
4920
+ *
4921
+ * Possible values:
4922
+ *
4923
+ * - `"none"` (default) - Disables total calculations.
4924
+ * - `"sum"`
4925
+ * - `"count"`
4926
+ * - `"min"`
4927
+ * - `"max"`
4928
+ * - `"avg"`
4929
+ *
4930
+ * [View Demo](https://surveyjs.io/form-library/examples/aggregate-data-within-form/ (linkStyle))
4931
+ * @see totalFormat
4932
+ * @see totalDisplayStyle
4933
+ */
4754
4934
  get totalType(): string;
4755
4935
  set totalType(val: string);
4936
+ /**
4937
+ * An expression used to calculate total values. Overrides the [`totalType`](#totalType) property.
4938
+ *
4939
+ * [Expressions](https://surveyjs.io/form-library/documentation/design-survey/conditional-logic#expressions (linkStyle))
4940
+ */
4756
4941
  get totalExpression(): string;
4757
4942
  set totalExpression(val: string);
4758
4943
  get hasTotal(): boolean;
4944
+ /**
4945
+ * A string pattern used to display column totals. To reference a total value within this pattern, use the `{0}` placeholder.
4946
+ *
4947
+ * [View Demo](https://surveyjs.io/form-library/examples/aggregate-data-within-form/ (linkStyle))
4948
+ * @see totalType
4949
+ * @see totalDisplayStyle
4950
+ */
4759
4951
  get totalFormat(): string;
4760
4952
  set totalFormat(val: string);
4761
4953
  get locTotalFormat(): LocalizableString;
@@ -4768,14 +4960,46 @@ declare module "question_matrixdropdowncolumn" {
4768
4960
  set totalMaximumFractionDigits(val: number);
4769
4961
  get totalMinimumFractionDigits(): number;
4770
4962
  set totalMinimumFractionDigits(val: number);
4963
+ /**
4964
+ * A format for calculated total values.
4965
+ *
4966
+ * Possible values:
4967
+ *
4968
+ * - `"none"` (default)
4969
+ * - `"decimal"`
4970
+ * - `"currency"`
4971
+ * - `"percent"`
4972
+ *
4973
+ * [View Demo](https://surveyjs.io/form-library/examples/aggregate-data-within-form/ (linkStyle))
4974
+ * @see totalType
4975
+ * @see totalFormat
4976
+ * @see totalCurrency
4977
+ */
4771
4978
  get totalDisplayStyle(): string;
4772
4979
  set totalDisplayStyle(val: string);
4980
+ /**
4981
+ * Specifies a currency used to display calculated total values. Applies only if [`totalDisplayStyle`](#totalDisplayStyle) is set to `"currency"`.
4982
+ * @see totalType
4983
+ */
4773
4984
  get totalCurrency(): string;
4774
4985
  set totalCurrency(val: string);
4986
+ /**
4987
+ * Gets or sets minimum column width in CSS values. By default, the matrix calculates column widths to optimally fit the content of all columns.
4988
+ * @see width
4989
+ */
4775
4990
  get minWidth(): string;
4776
4991
  set minWidth(val: string);
4992
+ /**
4993
+ * Gets or sets column width in CSS values. By default, the matrix calculates column widths to optimally fit the content of all columns.
4994
+ * @see minWidth
4995
+ */
4777
4996
  get width(): string;
4778
4997
  set width(val: string);
4998
+ /**
4999
+ * Gets or sets the number of columns used to arrange choice options. Applies only to columns of `"checkbox"` or `"radiogroup"` [`cellType`](#cellType).
5000
+ *
5001
+ * 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)
5002
+ */
4779
5003
  get colCount(): number;
4780
5004
  set colCount(val: number);
4781
5005
  getLocale(): string;
@@ -5450,6 +5674,20 @@ declare module "themes" {
5450
5674
  * An object with [advanced survey header settings](https://surveyjs.io/form-library/documentation/api-reference/iheader). Applies when `SurveyModel`'s [`headerView`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#headerView) property is set to `"advanced"`.
5451
5675
  */
5452
5676
  header?: IHeader;
5677
+ /**
5678
+ * Specifies whether the survey header uses only basic appearance settings or applies advanced settings from the survey theme.
5679
+ *
5680
+ * Possible values:
5681
+ *
5682
+ * - `"basic"` (default)\
5683
+ * A basic header view applies only the [`title`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#title), [`description`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#description), and logo-related properties ([`logo`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#logo), [`logoPosition`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#logoPosition), etc.).
5684
+ *
5685
+ * - `"advanced"`\
5686
+ * An advanced header view applies the same properties as the basic view, plus [header settings](https://surveyjs.io/form-library/documentation/api-reference/iheader) from the [survey theme](https://surveyjs.io/form-library/documentation/api-reference/itheme#header). The advanced view features a more flexible header layout, a capability to specify a background image, and other settings that give a more professional look to the survey header.
5687
+ *
5688
+ * [View Demo](https://surveyjs.io/form-library/examples/brand-your-survey-header/ (linkStyle))
5689
+ */
5690
+ headerView?: "advanced" | "basic";
5453
5691
  /**
5454
5692
  * An object with CSS variables.
5455
5693
  */
@@ -5759,6 +5997,8 @@ declare module "question_paneldynamic" {
5759
5997
  * @see templateVisibleIf
5760
5998
  */
5761
5999
  get visiblePanels(): Array<PanelModel>;
6000
+ protected get panelsCore(): Array<PanelModel>;
6001
+ protected get visiblePanelsCore(): Array<PanelModel>;
5762
6002
  private onPanelAdded;
5763
6003
  private onPanelRemoved;
5764
6004
  private onPanelRemovedCore;
@@ -6144,6 +6384,11 @@ declare module "question_paneldynamic" {
6144
6384
  protected onReadOnlyChanged(): void;
6145
6385
  private updateNoEntriesTextDefaultLoc;
6146
6386
  onSurveyLoad(): void;
6387
+ private hasPanelBuildFirstTime;
6388
+ private isBuildingPanelsFirstTime;
6389
+ private buildPanelsFirstTime;
6390
+ private get wasNotRenderedInSurvey();
6391
+ private get canBuildPanels();
6147
6392
  onFirstRendering(): void;
6148
6393
  localeChanged(): void;
6149
6394
  runCondition(values: HashTable<any>, properties: HashTable<any>): void;
@@ -7064,7 +7309,7 @@ declare module "survey-events-api" {
7064
7309
  }
7065
7310
  export interface MatrixCellCreatingBaseEvent extends MatrixDropdownQuestionEventMixin {
7066
7311
  /**
7067
- * A matrix column to which the cell belongs.
7312
+ * A [matrix column](https://surveyjs.io/form-library/documentation/api-reference/multi-select-matrix-column-values) to which the cell belongs.
7068
7313
  */
7069
7314
  column: MatrixDropdownColumn;
7070
7315
  /**
@@ -7111,7 +7356,7 @@ declare module "survey-events-api" {
7111
7356
  */
7112
7357
  row: MatrixDropdownRowModelBase;
7113
7358
  /**
7114
- * A matrix column to which the cell belongs.
7359
+ * A [matrix column](https://surveyjs.io/form-library/documentation/api-reference/multi-select-matrix-column-values) to which the cell belongs.
7115
7360
  */
7116
7361
  column: MatrixDropdownColumn | MatrixDropdownCell;
7117
7362
  }
@@ -7121,7 +7366,7 @@ declare module "survey-events-api" {
7121
7366
  */
7122
7367
  row: MatrixDropdownRowModelBase;
7123
7368
  /**
7124
- * A matrix column to which the cell belongs.
7369
+ * A [matrix column](https://surveyjs.io/form-library/documentation/api-reference/multi-select-matrix-column-values) to which the cell belongs.
7125
7370
  */
7126
7371
  column: MatrixDropdownColumn;
7127
7372
  /**
@@ -8301,6 +8546,27 @@ declare module "surveyTaskManager" {
8301
8546
  private taskFinished;
8302
8547
  }
8303
8548
  }
8549
+ declare module "surveyToc" {
8550
+ import { Action } from "actions/action";
8551
+ import { ListModel } from "list";
8552
+ import { PanelModelBase } from "panel";
8553
+ import { PopupModel } from "popup";
8554
+ import { SurveyModel } from "survey";
8555
+ export function tryFocusPage(survey: SurveyModel, panel: PanelModelBase): boolean;
8556
+ export function createTOCListModel(survey: SurveyModel, onAction?: () => void): ListModel<Action>;
8557
+ export function getTocRootCss(survey: SurveyModel, isMobile?: boolean): string;
8558
+ export class TOCModel {
8559
+ survey: SurveyModel;
8560
+ constructor(survey: SurveyModel);
8561
+ get isMobile(): boolean;
8562
+ get containerCss(): string;
8563
+ listModel: ListModel<Action>;
8564
+ popupModel: PopupModel;
8565
+ icon: string;
8566
+ togglePopup: () => void;
8567
+ dispose(): void;
8568
+ }
8569
+ }
8304
8570
  declare module "survey" {
8305
8571
  import { JsonError } from "jsonobject";
8306
8572
  import { Base, EventBase } from "base";
@@ -9085,6 +9351,9 @@ declare module "survey" {
9085
9351
  get lazyRendering(): boolean;
9086
9352
  set lazyRendering(val: boolean);
9087
9353
  get isLazyRendering(): boolean;
9354
+ lazyRenderingFirstBatchSizeValue: number;
9355
+ get lazyRenderingFirstBatchSize(): number;
9356
+ set lazyRenderingFirstBatchSize(val: number);
9088
9357
  private updateLazyRenderingRowsOnRemovingElements;
9089
9358
  /**
9090
9359
  * A list of triggers in the survey.
@@ -9924,6 +10193,7 @@ declare module "survey" {
9924
10193
  */
9925
10194
  get currentPage(): any;
9926
10195
  set currentPage(value: any);
10196
+ tryNavigateToPage(page: PageModel): boolean;
9927
10197
  private updateCurrentPage;
9928
10198
  private get isCurrentPageAvailable();
9929
10199
  private isPageExistsInSurvey;
@@ -10702,6 +10972,7 @@ declare module "survey" {
10702
10972
  private getProcessedValuesWithoutQuestion;
10703
10973
  private getFirstName;
10704
10974
  private reduceFirstName;
10975
+ private isClearingUnsedValues;
10705
10976
  private clearUnusedValues;
10706
10977
  hasVisibleQuestionByValueName(valueName: string): boolean;
10707
10978
  questionsByValueName(valueName: string): Array<IQuestion>;
@@ -11046,6 +11317,7 @@ declare module "survey" {
11046
11317
  * @returns The configuration of the previous layout element with the same `id`.
11047
11318
  */
11048
11319
  addLayoutElement(layoutElement: ISurveyLayoutElement): ISurveyLayoutElement;
11320
+ findLayoutElement(layoutElementId: string): ISurveyLayoutElement;
11049
11321
  removeLayoutElement(layoutElementId: string): ISurveyLayoutElement;
11050
11322
  getContainerContent(container: LayoutElementContainer): any[];
11051
11323
  processPopupVisiblityChanged(question: Question, popup: PopupModel<any>, visible: boolean): void;
@@ -11345,6 +11617,8 @@ declare module "survey-element" {
11345
11617
  set selectedElementInDesign(val: SurveyElement);
11346
11618
  updateCustomWidgets(): void;
11347
11619
  onSurveyLoad(): void;
11620
+ private wasRenderedValue;
11621
+ get wasRendered(): boolean;
11348
11622
  onFirstRendering(): void;
11349
11623
  endLoadingFromJson(): void;
11350
11624
  setVisibleIndex(index: number): number;
@@ -11692,7 +11966,7 @@ declare module "question" {
11692
11966
  *
11693
11967
  * A survey parses and runs all expressions on startup. If any values used in the expression change, the survey re-evaluates it.
11694
11968
  *
11695
- * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility)
11969
+ * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility).
11696
11970
  * @see visible
11697
11971
  * @see isVisible
11698
11972
  */
@@ -11923,6 +12197,7 @@ declare module "question" {
11923
12197
  get cssHeader(): string;
11924
12198
  protected setCssHeader(val: string): void;
11925
12199
  protected getCssHeader(cssClasses: any): string;
12200
+ protected supportContainerQueries(): boolean;
11926
12201
  get cssContent(): string;
11927
12202
  protected setCssContent(val: string): void;
11928
12203
  protected getCssContent(cssClasses: any): string;
@@ -11982,7 +12257,7 @@ declare module "question" {
11982
12257
  *
11983
12258
  * A survey parses and runs all expressions on startup. If any values used in the expression change, the survey re-evaluates it.
11984
12259
  *
11985
- * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility)
12260
+ * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility).
11986
12261
  * @see isRequired
11987
12262
  */
11988
12263
  get requiredIf(): string;
@@ -12029,7 +12304,7 @@ declare module "question" {
12029
12304
  *
12030
12305
  * A survey parses and runs all expressions on startup. If any values used in the expression change, the survey re-evaluates it.
12031
12306
  *
12032
- * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility)
12307
+ * Refer to the following help topic for more information: [Conditional Visibility](https://surveyjs.io/form-library/documentation/design-survey-conditional-logic#conditional-visibility).
12033
12308
  * @see readOnly
12034
12309
  * @see isReadOnly
12035
12310
  */
@@ -12543,9 +12818,13 @@ declare module "martixBase" {
12543
12818
  /**
12544
12819
  * An array of matrix columns.
12545
12820
  *
12546
- * This array can contain primitive values or objects with the `text` (display value) and `value` (value to be saved in survey results) properties.
12821
+ * For a Single-Select Matrix, the `columns` array can contain configuration objects with the `text` (display value) and `value` (value to be saved in survey results) properties. Alternatively, the array can contain primitive values that will be used as both the display values and values to be saved in survey results.
12547
12822
  *
12548
- * [View Demo](https://surveyjs.io/form-library/examples/single-selection-matrix-table-question/ (linkStyle))
12823
+ * [View "Single-Select Matrix" Demo](https://surveyjs.io/form-library/examples/single-selection-matrix-table-question/ (linkStyle))
12824
+ *
12825
+ * 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.
12826
+ *
12827
+ * [View "Multi-Select Matrix" Demo](https://surveyjs.io/form-library/examples/questiontype-matrixdropdown/ (linkStyle))
12549
12828
  */
12550
12829
  get columns(): Array<any>;
12551
12830
  set columns(newValue: Array<any>);
@@ -12936,14 +13215,15 @@ declare module "question_matrixdropdownbase" {
12936
13215
  *
12937
13216
  * Possible values:
12938
13217
  *
12939
- * - `"dropdown"`
12940
- * - `"checkbox"`
12941
- * - `"radiogroup"`
12942
- * - `"text"`
12943
- * - `"comment"`
12944
- * - `"boolean"`
12945
- * - `"expression"`
12946
- * - `"rating"`
13218
+ * - [`"dropdown"`](https://surveyjs.io/form-library/documentation/api-reference/dropdown-menu-model)
13219
+ * - [`"checkbox"`](https://surveyjs.io/form-library/documentation/api-reference/checkbox-question-model)
13220
+ * - [`"radiogroup"`](https://surveyjs.io/form-library/documentation/api-reference/radio-button-question-model)
13221
+ * - [`"tagbox"`](https://surveyjs.io/form-library/documentation/api-reference/dropdown-tag-box-model)
13222
+ * - [`"text"`](https://surveyjs.io/form-library/documentation/api-reference/text-entry-question-model)
13223
+ * - [`"comment"`](https://surveyjs.io/form-library/documentation/api-reference/comment-field-model)
13224
+ * - [`"boolean"`](https://surveyjs.io/form-library/documentation/api-reference/boolean-question-model)
13225
+ * - [`"expression"`](https://surveyjs.io/form-library/documentation/api-reference/expression-model)
13226
+ * - [`"rating"`](https://surveyjs.io/form-library/documentation/api-reference/rating-scale-question-model)
12947
13227
  *
12948
13228
  * Default value: `"dropdown"` (inherited from [`settings.matrix.defaultCellType`](https://surveyjs.io/form-library/documentation/settings#matrixDefaultCellType))
12949
13229
  */
@@ -13224,6 +13504,7 @@ declare module "base-interfaces" {
13224
13504
  allowResizeComment: boolean;
13225
13505
  state: string;
13226
13506
  isLazyRendering: boolean;
13507
+ lazyRenderingFirstBatchSize: number;
13227
13508
  cancelPreviewByPage(panel: IPanel): any;
13228
13509
  locEditText: LocalizableString;
13229
13510
  cssNavigationEdit: string;
@@ -13613,11 +13894,13 @@ declare module "jsonobject" {
13613
13894
  properties: Array<JsonObjectProperty>;
13614
13895
  private isCustomValue;
13615
13896
  private allProperties;
13897
+ private requiredProperties;
13616
13898
  private hashProperties;
13617
13899
  constructor(name: string, properties: Array<any>, creator?: (json?: any) => any, parentName?: string);
13618
13900
  find(name: string): JsonObjectProperty;
13619
13901
  findProperty(name: string): JsonObjectProperty;
13620
13902
  getAllProperties(): Array<JsonObjectProperty>;
13903
+ getRequiredProperties(): Array<JsonObjectProperty>;
13621
13904
  resetAllProperties(): void;
13622
13905
  get isCustom(): boolean;
13623
13906
  private fillAllProperties;
@@ -13638,6 +13921,7 @@ declare module "jsonobject" {
13638
13921
  private classes;
13639
13922
  private alternativeNames;
13640
13923
  private childrenClasses;
13924
+ private dynamicPropsCache;
13641
13925
  onSerializingProperty: ((obj: Base, prop: JsonObjectProperty, value: any, json: any) => boolean) | undefined;
13642
13926
  getObjPropertyValue(obj: any, name: string): any;
13643
13927
  setObjPropertyValue(obj: any, name: string, val: any): void;
@@ -13665,6 +13949,7 @@ declare module "jsonobject" {
13665
13949
  addProperty(className: string, propertyInfo: any): JsonObjectProperty;
13666
13950
  private addCustomPropertyCore;
13667
13951
  removeProperty(className: string, propertyName: string): boolean;
13952
+ private clearDynamicPropsCache;
13668
13953
  private removePropertyFromClass;
13669
13954
  private fillChildrenClasses;
13670
13955
  findClass(name: string): JsonMetadataClass;
@@ -13836,6 +14121,8 @@ declare module "base" {
13836
14121
  * @param trimString *(Optional)* When this parameter is `true`, the method ignores whitespace characters at the beginning and end of a string value. Pass `false` to disable this functionality.
13837
14122
  */
13838
14123
  isValueEmpty(value: any, trimString?: boolean): boolean;
14124
+ equals(obj: Base): boolean;
14125
+ protected equalsCore(obj: Base): boolean;
13839
14126
  protected trimValue(value: any): any;
13840
14127
  protected isPropertyEmpty(value: any): boolean;
13841
14128
  static createPropertiesHash(): {};
@@ -14028,7 +14315,7 @@ declare module "base" {
14028
14315
  registerFunctionOnPropertiesValueChanged(names: Array<string>, func: any, key?: string): void;
14029
14316
  unRegisterFunctionOnPropertyValueChanged(name: string, key?: string): void;
14030
14317
  unRegisterFunctionOnPropertiesValueChanged(names: Array<string>, key?: string): void;
14031
- createCustomLocalizableObj(name: string): void;
14318
+ createCustomLocalizableObj(name: string): LocalizableString;
14032
14319
  getLocale(): string;
14033
14320
  getLocalizationString(strName: string): string;
14034
14321
  getLocalizationFormatString(strName: string, ...args: any[]): string;
@@ -14320,12 +14607,12 @@ declare module "settings" {
14320
14607
  * import { ItemValue, settings } from "survey-core";
14321
14608
  *
14322
14609
  * // `itemValueSerializeAsObject` example
14323
- * settings.localization.itemValueSerializeAsObject = true;
14610
+ * settings.serialization.itemValueSerializeAsObject = true;
14324
14611
  * const item = new ItemValue(5);
14325
14612
  * const itemString = item.toJSON(); // Produces { value: 5 } instead of 5
14326
14613
  *
14327
14614
  * // `itemValueSerializeDisplayText` example
14328
- * settings.localization.itemValueSerializeDisplayText = true;
14615
+ * settings.serialization.itemValueSerializeDisplayText = true;
14329
14616
  * const item = new ItemValue("item1");
14330
14617
  * const itemString = item.toJSON(); // Produces { value: "item1", text: "item1" } instead of "item1"
14331
14618
  * ```
@@ -14964,6 +15251,7 @@ declare module "question_dropdown" {
14964
15251
  }
14965
15252
  }
14966
15253
  declare module "question_matrix" {
15254
+ import { HashTable } from "helpers";
14967
15255
  import { ItemValue } from "itemvalue";
14968
15256
  import { QuestionMatrixBaseModel } from "martixBase";
14969
15257
  import { Base } from "base";
@@ -14974,18 +15262,24 @@ declare module "question_matrix" {
14974
15262
  export interface IMatrixData {
14975
15263
  onMatrixRowChanged(row: MatrixRowModel): void;
14976
15264
  getCorrectedRowValue(value: any): any;
15265
+ cssClasses: any;
15266
+ isInputReadOnly: boolean;
15267
+ hasErrorInRow(row: MatrixRowModel): boolean;
14977
15268
  }
14978
15269
  export class MatrixRowModel extends Base {
15270
+ item: ItemValue;
14979
15271
  fullName: string;
14980
15272
  private data;
14981
- private item;
14982
15273
  cellClick: any;
14983
15274
  constructor(item: ItemValue, fullName: string, data: IMatrixData, value: any);
14984
15275
  get name(): string;
14985
15276
  get text(): string;
14986
15277
  get locText(): LocalizableString;
14987
15278
  get value(): any;
14988
- set value(newValue: any);
15279
+ set value(val: any);
15280
+ setValueDirectly(val: any): void;
15281
+ get isReadOnly(): boolean;
15282
+ get rowTextClasses(): string;
14989
15283
  get rowClasses(): string;
14990
15284
  }
14991
15285
  export interface IMatrixCellsOwner extends ILocalizableOwner {
@@ -15034,9 +15328,18 @@ declare module "question_matrix" {
15034
15328
  /**
15035
15329
  * Specifies whether each row requires an answer. If a respondent skips a row, the question displays a validation error.
15036
15330
  * @see isRequired
15331
+ * @see eachRowUnique
15332
+ * @see validators
15037
15333
  */
15038
15334
  get isAllRowRequired(): boolean;
15039
15335
  set isAllRowRequired(val: boolean);
15336
+ /**
15337
+ * Specifies whether answers in all rows should be unique. If any answers duplicate, the question displays a validation error.
15338
+ * @see isAllRowRequired
15339
+ * @see validators
15340
+ */
15341
+ get eachRowUnique(): boolean;
15342
+ set eachRowUnique(val: boolean);
15040
15343
  get hasRows(): boolean;
15041
15344
  /**
15042
15345
  * Specifies a sort order for matrix rows.
@@ -15063,6 +15366,7 @@ declare module "question_matrix" {
15063
15366
  locStrsChanged(): void;
15064
15367
  protected getQuizQuestionCount(): number;
15065
15368
  protected getCorrectAnswerCount(): number;
15369
+ protected runItemsCondition(values: HashTable<any>, properties: HashTable<any>): boolean;
15066
15370
  protected getVisibleRows(): Array<MatrixRowModel>;
15067
15371
  protected sortVisibleRows(array: Array<MatrixRowModel>): Array<MatrixRowModel>;
15068
15372
  endLoadingFromJson(): void;
@@ -15081,9 +15385,13 @@ declare module "question_matrix" {
15081
15385
  private emptyLocalizableString;
15082
15386
  getCellDisplayLocText(row: any, column: any): LocalizableString;
15083
15387
  supportGoNextPageAutomatic(): boolean;
15388
+ private errorsInRow;
15084
15389
  protected onCheckForErrors(errors: Array<SurveyError>, isOnValueChanged: boolean): void;
15085
- private hasErrorInRows;
15390
+ private hasErrorAllRowsRequired;
15391
+ private hasErrorEachRowUnique;
15086
15392
  private hasValuesInAllRows;
15393
+ private hasNonUniqueValueInRow;
15394
+ private addErrorIntoRow;
15087
15395
  protected getIsAnswered(): boolean;
15088
15396
  private createMatrixRow;
15089
15397
  protected onMatrixRowCreated(row: MatrixRowModel): void;
@@ -15096,6 +15404,7 @@ declare module "question_matrix" {
15096
15404
  protected getFirstInputElementId(): string;
15097
15405
  onMatrixRowChanged(row: MatrixRowModel): void;
15098
15406
  getCorrectedRowValue(value: any): any;
15407
+ hasErrorInRow(row: MatrixRowModel): boolean;
15099
15408
  protected getSearchableItemValueKeys(keys: Array<string>): void;
15100
15409
  private get SurveyModel();
15101
15410
  getColumnHeaderWrapperComponentName(cell: ItemValue): string;
@@ -15697,6 +16006,7 @@ declare module "question_ranking" {
15697
16006
  protected getDefaultItemComponent(): string;
15698
16007
  getType(): string;
15699
16008
  getItemTabIndex(item: ItemValue): number;
16009
+ protected supportContainerQueries(): boolean;
15700
16010
  get rootClass(): string;
15701
16011
  protected getItemClassCore(item: ItemValue, options: any): string;
15702
16012
  getContainerClasses(containerType?: string): string;
@@ -16377,29 +16687,6 @@ declare module "question_image" {
16377
16687
  private isVideo;
16378
16688
  }
16379
16689
  }
16380
- declare module "surveyToc" {
16381
- import { Action } from "actions/action";
16382
- import { ListModel } from "list";
16383
- import { PageModel } from "page";
16384
- import { PanelModelBase } from "panel";
16385
- import { PopupModel } from "popup";
16386
- import { SurveyModel } from "survey";
16387
- export function tryNavigateToPage(survey: SurveyModel, page: PageModel): boolean;
16388
- export function tryFocusPage(survey: SurveyModel, panel: PanelModelBase): boolean;
16389
- export function createTOCListModel(survey: SurveyModel, onAction?: () => void): ListModel<Action>;
16390
- export function getTocRootCss(survey: SurveyModel, isMobile?: boolean): string;
16391
- export class TOCModel {
16392
- survey: SurveyModel;
16393
- constructor(survey: SurveyModel);
16394
- get isMobile(): boolean;
16395
- get containerCss(): string;
16396
- listModel: ListModel<Action>;
16397
- popupModel: PopupModel;
16398
- icon: string;
16399
- togglePopup: () => void;
16400
- dispose(): void;
16401
- }
16402
- }
16403
16690
  declare module "surveyProgress" {
16404
16691
  export class SurveyProgressModel {
16405
16692
  static getProgressTextInBarCss(css: any): string;
@@ -16477,6 +16764,7 @@ declare module "popup-survey" {
16477
16764
  */
16478
16765
  get isExpanded(): boolean;
16479
16766
  set isExpanded(val: boolean);
16767
+ get isCollapsed(): boolean;
16480
16768
  protected onExpandedChanged(): void;
16481
16769
  /**
16482
16770
  * A title for the pop-up window. If this property is undefined, the title is taken from [`SurveyModel`](#survey)'s [`title`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#title) property.
@@ -16484,6 +16772,7 @@ declare module "popup-survey" {
16484
16772
  get title(): string;
16485
16773
  set title(value: string);
16486
16774
  get locTitle(): LocalizableString;
16775
+ get locDescription(): LocalizableString;
16487
16776
  /**
16488
16777
  * Expands the pop-up window.
16489
16778
  *
@@ -16514,10 +16803,14 @@ declare module "popup-survey" {
16514
16803
  get css(): any;
16515
16804
  get cssButton(): string;
16516
16805
  get cssRoot(): string;
16806
+ get cssRootCollapsedMod(): string;
16807
+ get cssRootContent(): string;
16517
16808
  get cssBody(): string;
16518
16809
  get cssHeaderRoot(): string;
16519
- get cssHeaderTitle(): string;
16520
- get cssHeaderButton(): string;
16810
+ get cssHeaderTitleCollapsed(): string;
16811
+ get cssHeaderButtonsContainer(): string;
16812
+ get cssHeaderCollapseButton(): string;
16813
+ get cssHeaderCloseButton(): string;
16521
16814
  get renderedWidth(): string;
16522
16815
  width: string;
16523
16816
  private updateCss;
@@ -17105,13 +17398,18 @@ declare module "defaultCss/cssstandard" {
17105
17398
  };
17106
17399
  window: {
17107
17400
  root: string;
17401
+ rootCollapsedMod: string;
17402
+ rootContent: string;
17108
17403
  body: string;
17109
17404
  header: {
17110
17405
  root: string;
17111
- title: string;
17406
+ titleCollapsed: string;
17407
+ buttonsContainer: string;
17112
17408
  button: string;
17113
17409
  buttonExpanded: string;
17114
17410
  buttonCollapsed: string;
17411
+ collapseButton: string;
17412
+ closeButton: string;
17115
17413
  };
17116
17414
  };
17117
17415
  variables: {
@@ -17570,13 +17868,18 @@ declare module "defaultCss/cssmodern" {
17570
17868
  };
17571
17869
  window: {
17572
17870
  root: string;
17871
+ rootCollapsedMod: string;
17872
+ rootContent: string;
17573
17873
  body: string;
17574
17874
  header: {
17575
17875
  root: string;
17576
- title: string;
17876
+ titleCollapsed: string;
17877
+ buttonsContainer: string;
17577
17878
  button: string;
17578
17879
  buttonExpanded: string;
17579
17880
  buttonCollapsed: string;
17881
+ collapseButton: string;
17882
+ closeButton: string;
17580
17883
  };
17581
17884
  };
17582
17885
  variables: {
@@ -19197,6 +19500,7 @@ declare module "localization/arabic" {
19197
19500
  requiredError: string;
19198
19501
  requiredErrorInPanel: string;
19199
19502
  requiredInAllRowsError: string;
19503
+ eachRowUniqueError: string;
19200
19504
  numericError: string;
19201
19505
  minError: string;
19202
19506
  maxError: string;
@@ -19214,6 +19518,7 @@ declare module "localization/arabic" {
19214
19518
  urlRequestError: string;
19215
19519
  urlGetChoicesError: string;
19216
19520
  exceedMaxSize: string;
19521
+ noUploadFilesHandler: string;
19217
19522
  otherRequiredError: string;
19218
19523
  uploadingFile: string;
19219
19524
  loadingFile: string;
@@ -19228,6 +19533,8 @@ declare module "localization/arabic" {
19228
19533
  emptyRowsText: string;
19229
19534
  addPanel: string;
19230
19535
  removePanel: string;
19536
+ showDetails: string;
19537
+ hideDetails: string;
19231
19538
  choices_Item: string;
19232
19539
  matrix_column: string;
19233
19540
  matrix_row: string;
@@ -19267,6 +19574,8 @@ declare module "localization/arabic" {
19267
19574
  tagboxDoneButtonCaption: string;
19268
19575
  selectToRankEmptyRankedAreaText: string;
19269
19576
  selectToRankEmptyUnrankedAreaText: string;
19577
+ ok: string;
19578
+ cancel: string;
19270
19579
  };
19271
19580
  }
19272
19581
  declare module "localization/basque" {
@@ -19295,6 +19604,7 @@ declare module "localization/basque" {
19295
19604
  requiredError: string;
19296
19605
  requiredErrorInPanel: string;
19297
19606
  requiredInAllRowsError: string;
19607
+ eachRowUniqueError: string;
19298
19608
  numericError: string;
19299
19609
  minError: string;
19300
19610
  maxError: string;
@@ -19312,6 +19622,7 @@ declare module "localization/basque" {
19312
19622
  urlRequestError: string;
19313
19623
  urlGetChoicesError: string;
19314
19624
  exceedMaxSize: string;
19625
+ noUploadFilesHandler: string;
19315
19626
  otherRequiredError: string;
19316
19627
  uploadingFile: string;
19317
19628
  loadingFile: string;
@@ -19326,6 +19637,8 @@ declare module "localization/basque" {
19326
19637
  emptyRowsText: string;
19327
19638
  addPanel: string;
19328
19639
  removePanel: string;
19640
+ showDetails: string;
19641
+ hideDetails: string;
19329
19642
  choices_Item: string;
19330
19643
  matrix_column: string;
19331
19644
  matrix_row: string;
@@ -19365,6 +19678,8 @@ declare module "localization/basque" {
19365
19678
  tagboxDoneButtonCaption: string;
19366
19679
  selectToRankEmptyRankedAreaText: string;
19367
19680
  selectToRankEmptyUnrankedAreaText: string;
19681
+ ok: string;
19682
+ cancel: string;
19368
19683
  };
19369
19684
  }
19370
19685
  declare module "localization/bulgarian" {
@@ -19393,6 +19708,7 @@ declare module "localization/bulgarian" {
19393
19708
  requiredError: string;
19394
19709
  requiredErrorInPanel: string;
19395
19710
  requiredInAllRowsError: string;
19711
+ eachRowUniqueError: string;
19396
19712
  numericError: string;
19397
19713
  minError: string;
19398
19714
  maxError: string;
@@ -19410,6 +19726,7 @@ declare module "localization/bulgarian" {
19410
19726
  urlRequestError: string;
19411
19727
  urlGetChoicesError: string;
19412
19728
  exceedMaxSize: string;
19729
+ noUploadFilesHandler: string;
19413
19730
  otherRequiredError: string;
19414
19731
  uploadingFile: string;
19415
19732
  loadingFile: string;
@@ -19424,6 +19741,8 @@ declare module "localization/bulgarian" {
19424
19741
  emptyRowsText: string;
19425
19742
  addPanel: string;
19426
19743
  removePanel: string;
19744
+ showDetails: string;
19745
+ hideDetails: string;
19427
19746
  choices_Item: string;
19428
19747
  matrix_column: string;
19429
19748
  matrix_row: string;
@@ -19463,6 +19782,8 @@ declare module "localization/bulgarian" {
19463
19782
  tagboxDoneButtonCaption: string;
19464
19783
  selectToRankEmptyRankedAreaText: string;
19465
19784
  selectToRankEmptyUnrankedAreaText: string;
19785
+ ok: string;
19786
+ cancel: string;
19466
19787
  };
19467
19788
  }
19468
19789
  declare module "localization/catalan" {
@@ -19491,6 +19812,7 @@ declare module "localization/catalan" {
19491
19812
  requiredError: string;
19492
19813
  requiredErrorInPanel: string;
19493
19814
  requiredInAllRowsError: string;
19815
+ eachRowUniqueError: string;
19494
19816
  numericError: string;
19495
19817
  minError: string;
19496
19818
  maxError: string;
@@ -19508,6 +19830,7 @@ declare module "localization/catalan" {
19508
19830
  urlRequestError: string;
19509
19831
  urlGetChoicesError: string;
19510
19832
  exceedMaxSize: string;
19833
+ noUploadFilesHandler: string;
19511
19834
  otherRequiredError: string;
19512
19835
  uploadingFile: string;
19513
19836
  loadingFile: string;
@@ -19522,6 +19845,8 @@ declare module "localization/catalan" {
19522
19845
  emptyRowsText: string;
19523
19846
  addPanel: string;
19524
19847
  removePanel: string;
19848
+ showDetails: string;
19849
+ hideDetails: string;
19525
19850
  choices_Item: string;
19526
19851
  matrix_column: string;
19527
19852
  matrix_row: string;
@@ -19561,6 +19886,8 @@ declare module "localization/catalan" {
19561
19886
  tagboxDoneButtonCaption: string;
19562
19887
  selectToRankEmptyRankedAreaText: string;
19563
19888
  selectToRankEmptyUnrankedAreaText: string;
19889
+ ok: string;
19890
+ cancel: string;
19564
19891
  };
19565
19892
  }
19566
19893
  declare module "localization/croatian" {
@@ -19589,6 +19916,7 @@ declare module "localization/croatian" {
19589
19916
  requiredError: string;
19590
19917
  requiredErrorInPanel: string;
19591
19918
  requiredInAllRowsError: string;
19919
+ eachRowUniqueError: string;
19592
19920
  numericError: string;
19593
19921
  minError: string;
19594
19922
  maxError: string;
@@ -19606,6 +19934,7 @@ declare module "localization/croatian" {
19606
19934
  urlRequestError: string;
19607
19935
  urlGetChoicesError: string;
19608
19936
  exceedMaxSize: string;
19937
+ noUploadFilesHandler: string;
19609
19938
  otherRequiredError: string;
19610
19939
  uploadingFile: string;
19611
19940
  loadingFile: string;
@@ -19620,6 +19949,8 @@ declare module "localization/croatian" {
19620
19949
  emptyRowsText: string;
19621
19950
  addPanel: string;
19622
19951
  removePanel: string;
19952
+ showDetails: string;
19953
+ hideDetails: string;
19623
19954
  choices_Item: string;
19624
19955
  matrix_column: string;
19625
19956
  matrix_row: string;
@@ -19659,6 +19990,8 @@ declare module "localization/croatian" {
19659
19990
  tagboxDoneButtonCaption: string;
19660
19991
  selectToRankEmptyRankedAreaText: string;
19661
19992
  selectToRankEmptyUnrankedAreaText: string;
19993
+ ok: string;
19994
+ cancel: string;
19662
19995
  };
19663
19996
  }
19664
19997
  declare module "localization/czech" {
@@ -19687,6 +20020,7 @@ declare module "localization/czech" {
19687
20020
  requiredError: string;
19688
20021
  requiredErrorInPanel: string;
19689
20022
  requiredInAllRowsError: string;
20023
+ eachRowUniqueError: string;
19690
20024
  numericError: string;
19691
20025
  minError: string;
19692
20026
  maxError: string;
@@ -19704,6 +20038,7 @@ declare module "localization/czech" {
19704
20038
  urlRequestError: string;
19705
20039
  urlGetChoicesError: string;
19706
20040
  exceedMaxSize: string;
20041
+ noUploadFilesHandler: string;
19707
20042
  otherRequiredError: string;
19708
20043
  uploadingFile: string;
19709
20044
  loadingFile: string;
@@ -19718,6 +20053,8 @@ declare module "localization/czech" {
19718
20053
  emptyRowsText: string;
19719
20054
  addPanel: string;
19720
20055
  removePanel: string;
20056
+ showDetails: string;
20057
+ hideDetails: string;
19721
20058
  choices_Item: string;
19722
20059
  matrix_column: string;
19723
20060
  matrix_row: string;
@@ -19757,6 +20094,8 @@ declare module "localization/czech" {
19757
20094
  tagboxDoneButtonCaption: string;
19758
20095
  selectToRankEmptyRankedAreaText: string;
19759
20096
  selectToRankEmptyUnrankedAreaText: string;
20097
+ ok: string;
20098
+ cancel: string;
19760
20099
  };
19761
20100
  }
19762
20101
  declare module "localization/danish" {
@@ -19785,6 +20124,7 @@ declare module "localization/danish" {
19785
20124
  requiredError: string;
19786
20125
  requiredErrorInPanel: string;
19787
20126
  requiredInAllRowsError: string;
20127
+ eachRowUniqueError: string;
19788
20128
  numericError: string;
19789
20129
  minError: string;
19790
20130
  maxError: string;
@@ -19802,6 +20142,7 @@ declare module "localization/danish" {
19802
20142
  urlRequestError: string;
19803
20143
  urlGetChoicesError: string;
19804
20144
  exceedMaxSize: string;
20145
+ noUploadFilesHandler: string;
19805
20146
  otherRequiredError: string;
19806
20147
  uploadingFile: string;
19807
20148
  loadingFile: string;
@@ -19816,6 +20157,8 @@ declare module "localization/danish" {
19816
20157
  emptyRowsText: string;
19817
20158
  addPanel: string;
19818
20159
  removePanel: string;
20160
+ showDetails: string;
20161
+ hideDetails: string;
19819
20162
  choices_Item: string;
19820
20163
  matrix_column: string;
19821
20164
  matrix_row: string;
@@ -19855,6 +20198,8 @@ declare module "localization/danish" {
19855
20198
  tagboxDoneButtonCaption: string;
19856
20199
  selectToRankEmptyRankedAreaText: string;
19857
20200
  selectToRankEmptyUnrankedAreaText: string;
20201
+ ok: string;
20202
+ cancel: string;
19858
20203
  };
19859
20204
  }
19860
20205
  declare module "localization/dutch" {
@@ -19883,6 +20228,7 @@ declare module "localization/dutch" {
19883
20228
  requiredError: string;
19884
20229
  requiredErrorInPanel: string;
19885
20230
  requiredInAllRowsError: string;
20231
+ eachRowUniqueError: string;
19886
20232
  numericError: string;
19887
20233
  minError: string;
19888
20234
  maxError: string;
@@ -19900,6 +20246,7 @@ declare module "localization/dutch" {
19900
20246
  urlRequestError: string;
19901
20247
  urlGetChoicesError: string;
19902
20248
  exceedMaxSize: string;
20249
+ noUploadFilesHandler: string;
19903
20250
  otherRequiredError: string;
19904
20251
  uploadingFile: string;
19905
20252
  loadingFile: string;
@@ -19914,6 +20261,8 @@ declare module "localization/dutch" {
19914
20261
  emptyRowsText: string;
19915
20262
  addPanel: string;
19916
20263
  removePanel: string;
20264
+ showDetails: string;
20265
+ hideDetails: string;
19917
20266
  choices_Item: string;
19918
20267
  matrix_column: string;
19919
20268
  matrix_row: string;
@@ -19953,6 +20302,8 @@ declare module "localization/dutch" {
19953
20302
  tagboxDoneButtonCaption: string;
19954
20303
  selectToRankEmptyRankedAreaText: string;
19955
20304
  selectToRankEmptyUnrankedAreaText: string;
20305
+ ok: string;
20306
+ cancel: string;
19956
20307
  };
19957
20308
  }
19958
20309
  declare module "localization/nl-BE" { }
@@ -19982,6 +20333,7 @@ declare module "localization/estonian" {
19982
20333
  requiredError: string;
19983
20334
  requiredErrorInPanel: string;
19984
20335
  requiredInAllRowsError: string;
20336
+ eachRowUniqueError: string;
19985
20337
  numericError: string;
19986
20338
  minError: string;
19987
20339
  maxError: string;
@@ -19999,6 +20351,7 @@ declare module "localization/estonian" {
19999
20351
  urlRequestError: string;
20000
20352
  urlGetChoicesError: string;
20001
20353
  exceedMaxSize: string;
20354
+ noUploadFilesHandler: string;
20002
20355
  otherRequiredError: string;
20003
20356
  uploadingFile: string;
20004
20357
  loadingFile: string;
@@ -20013,6 +20366,8 @@ declare module "localization/estonian" {
20013
20366
  emptyRowsText: string;
20014
20367
  addPanel: string;
20015
20368
  removePanel: string;
20369
+ showDetails: string;
20370
+ hideDetails: string;
20016
20371
  choices_Item: string;
20017
20372
  matrix_column: string;
20018
20373
  matrix_row: string;
@@ -20052,6 +20407,8 @@ declare module "localization/estonian" {
20052
20407
  tagboxDoneButtonCaption: string;
20053
20408
  selectToRankEmptyRankedAreaText: string;
20054
20409
  selectToRankEmptyUnrankedAreaText: string;
20410
+ ok: string;
20411
+ cancel: string;
20055
20412
  };
20056
20413
  }
20057
20414
  declare module "localization/finnish" {
@@ -20080,6 +20437,7 @@ declare module "localization/finnish" {
20080
20437
  requiredError: string;
20081
20438
  requiredErrorInPanel: string;
20082
20439
  requiredInAllRowsError: string;
20440
+ eachRowUniqueError: string;
20083
20441
  numericError: string;
20084
20442
  minError: string;
20085
20443
  maxError: string;
@@ -20097,6 +20455,7 @@ declare module "localization/finnish" {
20097
20455
  urlRequestError: string;
20098
20456
  urlGetChoicesError: string;
20099
20457
  exceedMaxSize: string;
20458
+ noUploadFilesHandler: string;
20100
20459
  otherRequiredError: string;
20101
20460
  uploadingFile: string;
20102
20461
  loadingFile: string;
@@ -20111,6 +20470,8 @@ declare module "localization/finnish" {
20111
20470
  emptyRowsText: string;
20112
20471
  addPanel: string;
20113
20472
  removePanel: string;
20473
+ showDetails: string;
20474
+ hideDetails: string;
20114
20475
  choices_Item: string;
20115
20476
  matrix_column: string;
20116
20477
  matrix_row: string;
@@ -20150,6 +20511,8 @@ declare module "localization/finnish" {
20150
20511
  tagboxDoneButtonCaption: string;
20151
20512
  selectToRankEmptyRankedAreaText: string;
20152
20513
  selectToRankEmptyUnrankedAreaText: string;
20514
+ ok: string;
20515
+ cancel: string;
20153
20516
  };
20154
20517
  }
20155
20518
  declare module "localization/french" {
@@ -20178,6 +20541,7 @@ declare module "localization/french" {
20178
20541
  requiredError: string;
20179
20542
  requiredErrorInPanel: string;
20180
20543
  requiredInAllRowsError: string;
20544
+ eachRowUniqueError: string;
20181
20545
  numericError: string;
20182
20546
  minError: string;
20183
20547
  maxError: string;
@@ -20195,6 +20559,7 @@ declare module "localization/french" {
20195
20559
  urlRequestError: string;
20196
20560
  urlGetChoicesError: string;
20197
20561
  exceedMaxSize: string;
20562
+ noUploadFilesHandler: string;
20198
20563
  otherRequiredError: string;
20199
20564
  uploadingFile: string;
20200
20565
  loadingFile: string;
@@ -20209,6 +20574,8 @@ declare module "localization/french" {
20209
20574
  emptyRowsText: string;
20210
20575
  addPanel: string;
20211
20576
  removePanel: string;
20577
+ showDetails: string;
20578
+ hideDetails: string;
20212
20579
  choices_Item: string;
20213
20580
  matrix_column: string;
20214
20581
  matrix_row: string;
@@ -20248,6 +20615,8 @@ declare module "localization/french" {
20248
20615
  tagboxDoneButtonCaption: string;
20249
20616
  selectToRankEmptyRankedAreaText: string;
20250
20617
  selectToRankEmptyUnrankedAreaText: string;
20618
+ ok: string;
20619
+ cancel: string;
20251
20620
  };
20252
20621
  }
20253
20622
  declare module "localization/georgian" {
@@ -20276,6 +20645,7 @@ declare module "localization/georgian" {
20276
20645
  requiredError: string;
20277
20646
  requiredErrorInPanel: string;
20278
20647
  requiredInAllRowsError: string;
20648
+ eachRowUniqueError: string;
20279
20649
  numericError: string;
20280
20650
  minError: string;
20281
20651
  maxError: string;
@@ -20293,6 +20663,7 @@ declare module "localization/georgian" {
20293
20663
  urlRequestError: string;
20294
20664
  urlGetChoicesError: string;
20295
20665
  exceedMaxSize: string;
20666
+ noUploadFilesHandler: string;
20296
20667
  otherRequiredError: string;
20297
20668
  uploadingFile: string;
20298
20669
  loadingFile: string;
@@ -20307,6 +20678,8 @@ declare module "localization/georgian" {
20307
20678
  emptyRowsText: string;
20308
20679
  addPanel: string;
20309
20680
  removePanel: string;
20681
+ showDetails: string;
20682
+ hideDetails: string;
20310
20683
  choices_Item: string;
20311
20684
  matrix_column: string;
20312
20685
  matrix_row: string;
@@ -20346,6 +20719,8 @@ declare module "localization/georgian" {
20346
20719
  tagboxDoneButtonCaption: string;
20347
20720
  selectToRankEmptyRankedAreaText: string;
20348
20721
  selectToRankEmptyUnrankedAreaText: string;
20722
+ ok: string;
20723
+ cancel: string;
20349
20724
  };
20350
20725
  }
20351
20726
  declare module "localization/german" {
@@ -20374,6 +20749,7 @@ declare module "localization/german" {
20374
20749
  requiredError: string;
20375
20750
  requiredErrorInPanel: string;
20376
20751
  requiredInAllRowsError: string;
20752
+ eachRowUniqueError: string;
20377
20753
  numericError: string;
20378
20754
  minError: string;
20379
20755
  maxError: string;
@@ -20391,6 +20767,7 @@ declare module "localization/german" {
20391
20767
  urlRequestError: string;
20392
20768
  urlGetChoicesError: string;
20393
20769
  exceedMaxSize: string;
20770
+ noUploadFilesHandler: string;
20394
20771
  otherRequiredError: string;
20395
20772
  uploadingFile: string;
20396
20773
  loadingFile: string;
@@ -20405,6 +20782,8 @@ declare module "localization/german" {
20405
20782
  emptyRowsText: string;
20406
20783
  addPanel: string;
20407
20784
  removePanel: string;
20785
+ showDetails: string;
20786
+ hideDetails: string;
20408
20787
  choices_Item: string;
20409
20788
  matrix_column: string;
20410
20789
  matrix_row: string;
@@ -20444,6 +20823,8 @@ declare module "localization/german" {
20444
20823
  tagboxDoneButtonCaption: string;
20445
20824
  selectToRankEmptyRankedAreaText: string;
20446
20825
  selectToRankEmptyUnrankedAreaText: string;
20826
+ ok: string;
20827
+ cancel: string;
20447
20828
  };
20448
20829
  }
20449
20830
  declare module "localization/greek" {
@@ -20472,6 +20853,7 @@ declare module "localization/greek" {
20472
20853
  requiredError: string;
20473
20854
  requiredErrorInPanel: string;
20474
20855
  requiredInAllRowsError: string;
20856
+ eachRowUniqueError: string;
20475
20857
  numericError: string;
20476
20858
  minError: string;
20477
20859
  maxError: string;
@@ -20489,6 +20871,7 @@ declare module "localization/greek" {
20489
20871
  urlRequestError: string;
20490
20872
  urlGetChoicesError: string;
20491
20873
  exceedMaxSize: string;
20874
+ noUploadFilesHandler: string;
20492
20875
  otherRequiredError: string;
20493
20876
  uploadingFile: string;
20494
20877
  loadingFile: string;
@@ -20503,6 +20886,8 @@ declare module "localization/greek" {
20503
20886
  emptyRowsText: string;
20504
20887
  addPanel: string;
20505
20888
  removePanel: string;
20889
+ showDetails: string;
20890
+ hideDetails: string;
20506
20891
  choices_Item: string;
20507
20892
  matrix_column: string;
20508
20893
  matrix_row: string;
@@ -20542,6 +20927,8 @@ declare module "localization/greek" {
20542
20927
  tagboxDoneButtonCaption: string;
20543
20928
  selectToRankEmptyRankedAreaText: string;
20544
20929
  selectToRankEmptyUnrankedAreaText: string;
20930
+ ok: string;
20931
+ cancel: string;
20545
20932
  };
20546
20933
  }
20547
20934
  declare module "localization/hebrew" {
@@ -20570,6 +20957,7 @@ declare module "localization/hebrew" {
20570
20957
  requiredError: string;
20571
20958
  requiredErrorInPanel: string;
20572
20959
  requiredInAllRowsError: string;
20960
+ eachRowUniqueError: string;
20573
20961
  numericError: string;
20574
20962
  minError: string;
20575
20963
  maxError: string;
@@ -20587,6 +20975,7 @@ declare module "localization/hebrew" {
20587
20975
  urlRequestError: string;
20588
20976
  urlGetChoicesError: string;
20589
20977
  exceedMaxSize: string;
20978
+ noUploadFilesHandler: string;
20590
20979
  otherRequiredError: string;
20591
20980
  uploadingFile: string;
20592
20981
  loadingFile: string;
@@ -20601,6 +20990,8 @@ declare module "localization/hebrew" {
20601
20990
  emptyRowsText: string;
20602
20991
  addPanel: string;
20603
20992
  removePanel: string;
20993
+ showDetails: string;
20994
+ hideDetails: string;
20604
20995
  choices_Item: string;
20605
20996
  matrix_column: string;
20606
20997
  matrix_row: string;
@@ -20640,6 +21031,8 @@ declare module "localization/hebrew" {
20640
21031
  tagboxDoneButtonCaption: string;
20641
21032
  selectToRankEmptyRankedAreaText: string;
20642
21033
  selectToRankEmptyUnrankedAreaText: string;
21034
+ ok: string;
21035
+ cancel: string;
20643
21036
  };
20644
21037
  }
20645
21038
  declare module "localization/hindi" {
@@ -20668,6 +21061,7 @@ declare module "localization/hindi" {
20668
21061
  requiredError: string;
20669
21062
  requiredErrorInPanel: string;
20670
21063
  requiredInAllRowsError: string;
21064
+ eachRowUniqueError: string;
20671
21065
  numericError: string;
20672
21066
  minError: string;
20673
21067
  maxError: string;
@@ -20685,6 +21079,7 @@ declare module "localization/hindi" {
20685
21079
  urlRequestError: string;
20686
21080
  urlGetChoicesError: string;
20687
21081
  exceedMaxSize: string;
21082
+ noUploadFilesHandler: string;
20688
21083
  otherRequiredError: string;
20689
21084
  uploadingFile: string;
20690
21085
  loadingFile: string;
@@ -20699,6 +21094,8 @@ declare module "localization/hindi" {
20699
21094
  emptyRowsText: string;
20700
21095
  addPanel: string;
20701
21096
  removePanel: string;
21097
+ showDetails: string;
21098
+ hideDetails: string;
20702
21099
  choices_Item: string;
20703
21100
  matrix_column: string;
20704
21101
  matrix_row: string;
@@ -20738,6 +21135,8 @@ declare module "localization/hindi" {
20738
21135
  tagboxDoneButtonCaption: string;
20739
21136
  selectToRankEmptyRankedAreaText: string;
20740
21137
  selectToRankEmptyUnrankedAreaText: string;
21138
+ ok: string;
21139
+ cancel: string;
20741
21140
  };
20742
21141
  }
20743
21142
  declare module "localization/hungarian" {
@@ -20766,6 +21165,7 @@ declare module "localization/hungarian" {
20766
21165
  requiredError: string;
20767
21166
  requiredErrorInPanel: string;
20768
21167
  requiredInAllRowsError: string;
21168
+ eachRowUniqueError: string;
20769
21169
  numericError: string;
20770
21170
  minError: string;
20771
21171
  maxError: string;
@@ -20783,6 +21183,7 @@ declare module "localization/hungarian" {
20783
21183
  urlRequestError: string;
20784
21184
  urlGetChoicesError: string;
20785
21185
  exceedMaxSize: string;
21186
+ noUploadFilesHandler: string;
20786
21187
  otherRequiredError: string;
20787
21188
  uploadingFile: string;
20788
21189
  loadingFile: string;
@@ -20797,6 +21198,8 @@ declare module "localization/hungarian" {
20797
21198
  emptyRowsText: string;
20798
21199
  addPanel: string;
20799
21200
  removePanel: string;
21201
+ showDetails: string;
21202
+ hideDetails: string;
20800
21203
  choices_Item: string;
20801
21204
  matrix_column: string;
20802
21205
  matrix_row: string;
@@ -20836,6 +21239,8 @@ declare module "localization/hungarian" {
20836
21239
  tagboxDoneButtonCaption: string;
20837
21240
  selectToRankEmptyRankedAreaText: string;
20838
21241
  selectToRankEmptyUnrankedAreaText: string;
21242
+ ok: string;
21243
+ cancel: string;
20839
21244
  };
20840
21245
  }
20841
21246
  declare module "localization/icelandic" {
@@ -20864,6 +21269,7 @@ declare module "localization/icelandic" {
20864
21269
  requiredError: string;
20865
21270
  requiredErrorInPanel: string;
20866
21271
  requiredInAllRowsError: string;
21272
+ eachRowUniqueError: string;
20867
21273
  numericError: string;
20868
21274
  minError: string;
20869
21275
  maxError: string;
@@ -20881,6 +21287,7 @@ declare module "localization/icelandic" {
20881
21287
  urlRequestError: string;
20882
21288
  urlGetChoicesError: string;
20883
21289
  exceedMaxSize: string;
21290
+ noUploadFilesHandler: string;
20884
21291
  otherRequiredError: string;
20885
21292
  uploadingFile: string;
20886
21293
  loadingFile: string;
@@ -20895,6 +21302,8 @@ declare module "localization/icelandic" {
20895
21302
  emptyRowsText: string;
20896
21303
  addPanel: string;
20897
21304
  removePanel: string;
21305
+ showDetails: string;
21306
+ hideDetails: string;
20898
21307
  choices_Item: string;
20899
21308
  matrix_column: string;
20900
21309
  matrix_row: string;
@@ -20934,6 +21343,8 @@ declare module "localization/icelandic" {
20934
21343
  tagboxDoneButtonCaption: string;
20935
21344
  selectToRankEmptyRankedAreaText: string;
20936
21345
  selectToRankEmptyUnrankedAreaText: string;
21346
+ ok: string;
21347
+ cancel: string;
20937
21348
  };
20938
21349
  }
20939
21350
  declare module "localization/indonesian" {
@@ -20962,6 +21373,7 @@ declare module "localization/indonesian" {
20962
21373
  requiredError: string;
20963
21374
  requiredErrorInPanel: string;
20964
21375
  requiredInAllRowsError: string;
21376
+ eachRowUniqueError: string;
20965
21377
  numericError: string;
20966
21378
  minError: string;
20967
21379
  maxError: string;
@@ -20979,6 +21391,7 @@ declare module "localization/indonesian" {
20979
21391
  urlRequestError: string;
20980
21392
  urlGetChoicesError: string;
20981
21393
  exceedMaxSize: string;
21394
+ noUploadFilesHandler: string;
20982
21395
  otherRequiredError: string;
20983
21396
  uploadingFile: string;
20984
21397
  loadingFile: string;
@@ -20993,6 +21406,8 @@ declare module "localization/indonesian" {
20993
21406
  emptyRowsText: string;
20994
21407
  addPanel: string;
20995
21408
  removePanel: string;
21409
+ showDetails: string;
21410
+ hideDetails: string;
20996
21411
  choices_Item: string;
20997
21412
  matrix_column: string;
20998
21413
  matrix_row: string;
@@ -21032,6 +21447,8 @@ declare module "localization/indonesian" {
21032
21447
  tagboxDoneButtonCaption: string;
21033
21448
  selectToRankEmptyRankedAreaText: string;
21034
21449
  selectToRankEmptyUnrankedAreaText: string;
21450
+ ok: string;
21451
+ cancel: string;
21035
21452
  };
21036
21453
  }
21037
21454
  declare module "localization/italian" {
@@ -21060,6 +21477,7 @@ declare module "localization/italian" {
21060
21477
  requiredError: string;
21061
21478
  requiredErrorInPanel: string;
21062
21479
  requiredInAllRowsError: string;
21480
+ eachRowUniqueError: string;
21063
21481
  numericError: string;
21064
21482
  minError: string;
21065
21483
  maxError: string;
@@ -21077,6 +21495,7 @@ declare module "localization/italian" {
21077
21495
  urlRequestError: string;
21078
21496
  urlGetChoicesError: string;
21079
21497
  exceedMaxSize: string;
21498
+ noUploadFilesHandler: string;
21080
21499
  otherRequiredError: string;
21081
21500
  uploadingFile: string;
21082
21501
  loadingFile: string;
@@ -21091,6 +21510,8 @@ declare module "localization/italian" {
21091
21510
  emptyRowsText: string;
21092
21511
  addPanel: string;
21093
21512
  removePanel: string;
21513
+ showDetails: string;
21514
+ hideDetails: string;
21094
21515
  choices_Item: string;
21095
21516
  matrix_column: string;
21096
21517
  matrix_row: string;
@@ -21130,6 +21551,8 @@ declare module "localization/italian" {
21130
21551
  tagboxDoneButtonCaption: string;
21131
21552
  selectToRankEmptyRankedAreaText: string;
21132
21553
  selectToRankEmptyUnrankedAreaText: string;
21554
+ ok: string;
21555
+ cancel: string;
21133
21556
  };
21134
21557
  }
21135
21558
  declare module "localization/japanese" {
@@ -21158,6 +21581,7 @@ declare module "localization/japanese" {
21158
21581
  requiredError: string;
21159
21582
  requiredErrorInPanel: string;
21160
21583
  requiredInAllRowsError: string;
21584
+ eachRowUniqueError: string;
21161
21585
  numericError: string;
21162
21586
  minError: string;
21163
21587
  maxError: string;
@@ -21175,6 +21599,7 @@ declare module "localization/japanese" {
21175
21599
  urlRequestError: string;
21176
21600
  urlGetChoicesError: string;
21177
21601
  exceedMaxSize: string;
21602
+ noUploadFilesHandler: string;
21178
21603
  otherRequiredError: string;
21179
21604
  uploadingFile: string;
21180
21605
  loadingFile: string;
@@ -21189,6 +21614,8 @@ declare module "localization/japanese" {
21189
21614
  emptyRowsText: string;
21190
21615
  addPanel: string;
21191
21616
  removePanel: string;
21617
+ showDetails: string;
21618
+ hideDetails: string;
21192
21619
  choices_Item: string;
21193
21620
  matrix_column: string;
21194
21621
  matrix_row: string;
@@ -21228,6 +21655,8 @@ declare module "localization/japanese" {
21228
21655
  tagboxDoneButtonCaption: string;
21229
21656
  selectToRankEmptyRankedAreaText: string;
21230
21657
  selectToRankEmptyUnrankedAreaText: string;
21658
+ ok: string;
21659
+ cancel: string;
21231
21660
  };
21232
21661
  }
21233
21662
  declare module "localization/kazakh" {
@@ -21256,6 +21685,7 @@ declare module "localization/kazakh" {
21256
21685
  requiredError: string;
21257
21686
  requiredErrorInPanel: string;
21258
21687
  requiredInAllRowsError: string;
21688
+ eachRowUniqueError: string;
21259
21689
  numericError: string;
21260
21690
  minError: string;
21261
21691
  maxError: string;
@@ -21273,6 +21703,7 @@ declare module "localization/kazakh" {
21273
21703
  urlRequestError: string;
21274
21704
  urlGetChoicesError: string;
21275
21705
  exceedMaxSize: string;
21706
+ noUploadFilesHandler: string;
21276
21707
  otherRequiredError: string;
21277
21708
  uploadingFile: string;
21278
21709
  loadingFile: string;
@@ -21287,6 +21718,8 @@ declare module "localization/kazakh" {
21287
21718
  emptyRowsText: string;
21288
21719
  addPanel: string;
21289
21720
  removePanel: string;
21721
+ showDetails: string;
21722
+ hideDetails: string;
21290
21723
  choices_Item: string;
21291
21724
  matrix_column: string;
21292
21725
  matrix_row: string;
@@ -21326,6 +21759,8 @@ declare module "localization/kazakh" {
21326
21759
  tagboxDoneButtonCaption: string;
21327
21760
  selectToRankEmptyRankedAreaText: string;
21328
21761
  selectToRankEmptyUnrankedAreaText: string;
21762
+ ok: string;
21763
+ cancel: string;
21329
21764
  };
21330
21765
  }
21331
21766
  declare module "localization/korean" {
@@ -21354,6 +21789,7 @@ declare module "localization/korean" {
21354
21789
  requiredError: string;
21355
21790
  requiredErrorInPanel: string;
21356
21791
  requiredInAllRowsError: string;
21792
+ eachRowUniqueError: string;
21357
21793
  numericError: string;
21358
21794
  minError: string;
21359
21795
  maxError: string;
@@ -21371,6 +21807,7 @@ declare module "localization/korean" {
21371
21807
  urlRequestError: string;
21372
21808
  urlGetChoicesError: string;
21373
21809
  exceedMaxSize: string;
21810
+ noUploadFilesHandler: string;
21374
21811
  otherRequiredError: string;
21375
21812
  uploadingFile: string;
21376
21813
  loadingFile: string;
@@ -21385,6 +21822,8 @@ declare module "localization/korean" {
21385
21822
  emptyRowsText: string;
21386
21823
  addPanel: string;
21387
21824
  removePanel: string;
21825
+ showDetails: string;
21826
+ hideDetails: string;
21388
21827
  choices_Item: string;
21389
21828
  matrix_column: string;
21390
21829
  matrix_row: string;
@@ -21424,6 +21863,8 @@ declare module "localization/korean" {
21424
21863
  tagboxDoneButtonCaption: string;
21425
21864
  selectToRankEmptyRankedAreaText: string;
21426
21865
  selectToRankEmptyUnrankedAreaText: string;
21866
+ ok: string;
21867
+ cancel: string;
21427
21868
  };
21428
21869
  }
21429
21870
  declare module "localization/latvian" {
@@ -21452,6 +21893,7 @@ declare module "localization/latvian" {
21452
21893
  requiredError: string;
21453
21894
  requiredErrorInPanel: string;
21454
21895
  requiredInAllRowsError: string;
21896
+ eachRowUniqueError: string;
21455
21897
  numericError: string;
21456
21898
  minError: string;
21457
21899
  maxError: string;
@@ -21469,6 +21911,7 @@ declare module "localization/latvian" {
21469
21911
  urlRequestError: string;
21470
21912
  urlGetChoicesError: string;
21471
21913
  exceedMaxSize: string;
21914
+ noUploadFilesHandler: string;
21472
21915
  otherRequiredError: string;
21473
21916
  uploadingFile: string;
21474
21917
  loadingFile: string;
@@ -21483,6 +21926,8 @@ declare module "localization/latvian" {
21483
21926
  emptyRowsText: string;
21484
21927
  addPanel: string;
21485
21928
  removePanel: string;
21929
+ showDetails: string;
21930
+ hideDetails: string;
21486
21931
  choices_Item: string;
21487
21932
  matrix_column: string;
21488
21933
  matrix_row: string;
@@ -21522,6 +21967,8 @@ declare module "localization/latvian" {
21522
21967
  tagboxDoneButtonCaption: string;
21523
21968
  selectToRankEmptyRankedAreaText: string;
21524
21969
  selectToRankEmptyUnrankedAreaText: string;
21970
+ ok: string;
21971
+ cancel: string;
21525
21972
  };
21526
21973
  }
21527
21974
  declare module "localization/lithuanian" {
@@ -21550,6 +21997,7 @@ declare module "localization/lithuanian" {
21550
21997
  requiredError: string;
21551
21998
  requiredErrorInPanel: string;
21552
21999
  requiredInAllRowsError: string;
22000
+ eachRowUniqueError: string;
21553
22001
  numericError: string;
21554
22002
  minError: string;
21555
22003
  maxError: string;
@@ -21567,6 +22015,7 @@ declare module "localization/lithuanian" {
21567
22015
  urlRequestError: string;
21568
22016
  urlGetChoicesError: string;
21569
22017
  exceedMaxSize: string;
22018
+ noUploadFilesHandler: string;
21570
22019
  otherRequiredError: string;
21571
22020
  uploadingFile: string;
21572
22021
  loadingFile: string;
@@ -21581,6 +22030,8 @@ declare module "localization/lithuanian" {
21581
22030
  emptyRowsText: string;
21582
22031
  addPanel: string;
21583
22032
  removePanel: string;
22033
+ showDetails: string;
22034
+ hideDetails: string;
21584
22035
  choices_Item: string;
21585
22036
  matrix_column: string;
21586
22037
  matrix_row: string;
@@ -21620,6 +22071,8 @@ declare module "localization/lithuanian" {
21620
22071
  tagboxDoneButtonCaption: string;
21621
22072
  selectToRankEmptyRankedAreaText: string;
21622
22073
  selectToRankEmptyUnrankedAreaText: string;
22074
+ ok: string;
22075
+ cancel: string;
21623
22076
  };
21624
22077
  }
21625
22078
  declare module "localization/macedonian" {
@@ -21648,6 +22101,7 @@ declare module "localization/macedonian" {
21648
22101
  requiredError: string;
21649
22102
  requiredErrorInPanel: string;
21650
22103
  requiredInAllRowsError: string;
22104
+ eachRowUniqueError: string;
21651
22105
  numericError: string;
21652
22106
  minError: string;
21653
22107
  maxError: string;
@@ -21665,6 +22119,7 @@ declare module "localization/macedonian" {
21665
22119
  urlRequestError: string;
21666
22120
  urlGetChoicesError: string;
21667
22121
  exceedMaxSize: string;
22122
+ noUploadFilesHandler: string;
21668
22123
  otherRequiredError: string;
21669
22124
  uploadingFile: string;
21670
22125
  loadingFile: string;
@@ -21679,6 +22134,8 @@ declare module "localization/macedonian" {
21679
22134
  emptyRowsText: string;
21680
22135
  addPanel: string;
21681
22136
  removePanel: string;
22137
+ showDetails: string;
22138
+ hideDetails: string;
21682
22139
  choices_Item: string;
21683
22140
  matrix_column: string;
21684
22141
  matrix_row: string;
@@ -21718,6 +22175,8 @@ declare module "localization/macedonian" {
21718
22175
  tagboxDoneButtonCaption: string;
21719
22176
  selectToRankEmptyRankedAreaText: string;
21720
22177
  selectToRankEmptyUnrankedAreaText: string;
22178
+ ok: string;
22179
+ cancel: string;
21721
22180
  };
21722
22181
  }
21723
22182
  declare module "localization/malay" {
@@ -21746,6 +22205,7 @@ declare module "localization/malay" {
21746
22205
  requiredError: string;
21747
22206
  requiredErrorInPanel: string;
21748
22207
  requiredInAllRowsError: string;
22208
+ eachRowUniqueError: string;
21749
22209
  numericError: string;
21750
22210
  minError: string;
21751
22211
  maxError: string;
@@ -21763,6 +22223,7 @@ declare module "localization/malay" {
21763
22223
  urlRequestError: string;
21764
22224
  urlGetChoicesError: string;
21765
22225
  exceedMaxSize: string;
22226
+ noUploadFilesHandler: string;
21766
22227
  otherRequiredError: string;
21767
22228
  uploadingFile: string;
21768
22229
  loadingFile: string;
@@ -21777,6 +22238,8 @@ declare module "localization/malay" {
21777
22238
  emptyRowsText: string;
21778
22239
  addPanel: string;
21779
22240
  removePanel: string;
22241
+ showDetails: string;
22242
+ hideDetails: string;
21780
22243
  choices_Item: string;
21781
22244
  matrix_column: string;
21782
22245
  matrix_row: string;
@@ -21816,6 +22279,8 @@ declare module "localization/malay" {
21816
22279
  tagboxDoneButtonCaption: string;
21817
22280
  selectToRankEmptyRankedAreaText: string;
21818
22281
  selectToRankEmptyUnrankedAreaText: string;
22282
+ ok: string;
22283
+ cancel: string;
21819
22284
  };
21820
22285
  }
21821
22286
  declare module "localization/norwegian" {
@@ -21844,6 +22309,7 @@ declare module "localization/norwegian" {
21844
22309
  requiredError: string;
21845
22310
  requiredErrorInPanel: string;
21846
22311
  requiredInAllRowsError: string;
22312
+ eachRowUniqueError: string;
21847
22313
  numericError: string;
21848
22314
  minError: string;
21849
22315
  maxError: string;
@@ -21861,6 +22327,7 @@ declare module "localization/norwegian" {
21861
22327
  urlRequestError: string;
21862
22328
  urlGetChoicesError: string;
21863
22329
  exceedMaxSize: string;
22330
+ noUploadFilesHandler: string;
21864
22331
  otherRequiredError: string;
21865
22332
  uploadingFile: string;
21866
22333
  loadingFile: string;
@@ -21875,6 +22342,8 @@ declare module "localization/norwegian" {
21875
22342
  emptyRowsText: string;
21876
22343
  addPanel: string;
21877
22344
  removePanel: string;
22345
+ showDetails: string;
22346
+ hideDetails: string;
21878
22347
  choices_Item: string;
21879
22348
  matrix_column: string;
21880
22349
  matrix_row: string;
@@ -21914,6 +22383,8 @@ declare module "localization/norwegian" {
21914
22383
  tagboxDoneButtonCaption: string;
21915
22384
  selectToRankEmptyRankedAreaText: string;
21916
22385
  selectToRankEmptyUnrankedAreaText: string;
22386
+ ok: string;
22387
+ cancel: string;
21917
22388
  };
21918
22389
  }
21919
22390
  declare module "localization/persian" {
@@ -21942,6 +22413,7 @@ declare module "localization/persian" {
21942
22413
  requiredError: string;
21943
22414
  requiredErrorInPanel: string;
21944
22415
  requiredInAllRowsError: string;
22416
+ eachRowUniqueError: string;
21945
22417
  numericError: string;
21946
22418
  minError: string;
21947
22419
  maxError: string;
@@ -21959,6 +22431,7 @@ declare module "localization/persian" {
21959
22431
  urlRequestError: string;
21960
22432
  urlGetChoicesError: string;
21961
22433
  exceedMaxSize: string;
22434
+ noUploadFilesHandler: string;
21962
22435
  otherRequiredError: string;
21963
22436
  uploadingFile: string;
21964
22437
  loadingFile: string;
@@ -21973,6 +22446,8 @@ declare module "localization/persian" {
21973
22446
  emptyRowsText: string;
21974
22447
  addPanel: string;
21975
22448
  removePanel: string;
22449
+ showDetails: string;
22450
+ hideDetails: string;
21976
22451
  choices_Item: string;
21977
22452
  matrix_column: string;
21978
22453
  matrix_row: string;
@@ -22012,6 +22487,8 @@ declare module "localization/persian" {
22012
22487
  tagboxDoneButtonCaption: string;
22013
22488
  selectToRankEmptyRankedAreaText: string;
22014
22489
  selectToRankEmptyUnrankedAreaText: string;
22490
+ ok: string;
22491
+ cancel: string;
22015
22492
  };
22016
22493
  }
22017
22494
  declare module "localization/polish" {
@@ -22040,6 +22517,7 @@ declare module "localization/polish" {
22040
22517
  requiredError: string;
22041
22518
  requiredErrorInPanel: string;
22042
22519
  requiredInAllRowsError: string;
22520
+ eachRowUniqueError: string;
22043
22521
  numericError: string;
22044
22522
  minError: string;
22045
22523
  maxError: string;
@@ -22057,6 +22535,7 @@ declare module "localization/polish" {
22057
22535
  urlRequestError: string;
22058
22536
  urlGetChoicesError: string;
22059
22537
  exceedMaxSize: string;
22538
+ noUploadFilesHandler: string;
22060
22539
  otherRequiredError: string;
22061
22540
  uploadingFile: string;
22062
22541
  loadingFile: string;
@@ -22071,6 +22550,8 @@ declare module "localization/polish" {
22071
22550
  emptyRowsText: string;
22072
22551
  addPanel: string;
22073
22552
  removePanel: string;
22553
+ showDetails: string;
22554
+ hideDetails: string;
22074
22555
  choices_Item: string;
22075
22556
  matrix_column: string;
22076
22557
  matrix_row: string;
@@ -22110,6 +22591,8 @@ declare module "localization/polish" {
22110
22591
  tagboxDoneButtonCaption: string;
22111
22592
  selectToRankEmptyRankedAreaText: string;
22112
22593
  selectToRankEmptyUnrankedAreaText: string;
22594
+ ok: string;
22595
+ cancel: string;
22113
22596
  };
22114
22597
  }
22115
22598
  declare module "localization/portuguese" {
@@ -22138,6 +22621,7 @@ declare module "localization/portuguese" {
22138
22621
  requiredError: string;
22139
22622
  requiredErrorInPanel: string;
22140
22623
  requiredInAllRowsError: string;
22624
+ eachRowUniqueError: string;
22141
22625
  numericError: string;
22142
22626
  minError: string;
22143
22627
  maxError: string;
@@ -22155,6 +22639,7 @@ declare module "localization/portuguese" {
22155
22639
  urlRequestError: string;
22156
22640
  urlGetChoicesError: string;
22157
22641
  exceedMaxSize: string;
22642
+ noUploadFilesHandler: string;
22158
22643
  otherRequiredError: string;
22159
22644
  uploadingFile: string;
22160
22645
  loadingFile: string;
@@ -22169,6 +22654,8 @@ declare module "localization/portuguese" {
22169
22654
  emptyRowsText: string;
22170
22655
  addPanel: string;
22171
22656
  removePanel: string;
22657
+ showDetails: string;
22658
+ hideDetails: string;
22172
22659
  choices_Item: string;
22173
22660
  matrix_column: string;
22174
22661
  matrix_row: string;
@@ -22208,6 +22695,8 @@ declare module "localization/portuguese" {
22208
22695
  tagboxDoneButtonCaption: string;
22209
22696
  selectToRankEmptyRankedAreaText: string;
22210
22697
  selectToRankEmptyUnrankedAreaText: string;
22698
+ ok: string;
22699
+ cancel: string;
22211
22700
  };
22212
22701
  }
22213
22702
  declare module "localization/portuguese-br" {
@@ -22239,6 +22728,7 @@ declare module "localization/portuguese-br" {
22239
22728
  requiredError: string;
22240
22729
  requiredErrorInPanel: string;
22241
22730
  requiredInAllRowsError: string;
22731
+ eachRowUniqueError: string;
22242
22732
  numericError: string;
22243
22733
  minError: string;
22244
22734
  maxError: string;
@@ -22256,6 +22746,7 @@ declare module "localization/portuguese-br" {
22256
22746
  urlRequestError: string;
22257
22747
  urlGetChoicesError: string;
22258
22748
  exceedMaxSize: string;
22749
+ noUploadFilesHandler: string;
22259
22750
  otherRequiredError: string;
22260
22751
  uploadingFile: string;
22261
22752
  loadingFile: string;
@@ -22270,6 +22761,8 @@ declare module "localization/portuguese-br" {
22270
22761
  emptyRowsText: string;
22271
22762
  addPanel: string;
22272
22763
  removePanel: string;
22764
+ showDetails: string;
22765
+ hideDetails: string;
22273
22766
  choices_Item: string;
22274
22767
  matrix_column: string;
22275
22768
  matrix_row: string;
@@ -22309,6 +22802,8 @@ declare module "localization/portuguese-br" {
22309
22802
  tagboxDoneButtonCaption: string;
22310
22803
  selectToRankEmptyRankedAreaText: string;
22311
22804
  selectToRankEmptyUnrankedAreaText: string;
22805
+ ok: string;
22806
+ cancel: string;
22312
22807
  };
22313
22808
  }
22314
22809
  declare module "localization/romanian" {
@@ -22340,6 +22835,7 @@ declare module "localization/russian" {
22340
22835
  requiredError: string;
22341
22836
  requiredErrorInPanel: string;
22342
22837
  requiredInAllRowsError: string;
22838
+ eachRowUniqueError: string;
22343
22839
  numericError: string;
22344
22840
  minError: string;
22345
22841
  maxError: string;
@@ -22357,6 +22853,7 @@ declare module "localization/russian" {
22357
22853
  urlRequestError: string;
22358
22854
  urlGetChoicesError: string;
22359
22855
  exceedMaxSize: string;
22856
+ noUploadFilesHandler: string;
22360
22857
  otherRequiredError: string;
22361
22858
  uploadingFile: string;
22362
22859
  loadingFile: string;
@@ -22371,6 +22868,8 @@ declare module "localization/russian" {
22371
22868
  emptyRowsText: string;
22372
22869
  addPanel: string;
22373
22870
  removePanel: string;
22871
+ showDetails: string;
22872
+ hideDetails: string;
22374
22873
  choices_Item: string;
22375
22874
  matrix_column: string;
22376
22875
  matrix_row: string;
@@ -22410,6 +22909,8 @@ declare module "localization/russian" {
22410
22909
  tagboxDoneButtonCaption: string;
22411
22910
  selectToRankEmptyRankedAreaText: string;
22412
22911
  selectToRankEmptyUnrankedAreaText: string;
22912
+ ok: string;
22913
+ cancel: string;
22413
22914
  };
22414
22915
  }
22415
22916
  declare module "localization/serbian" {
@@ -22438,6 +22939,7 @@ declare module "localization/serbian" {
22438
22939
  requiredError: string;
22439
22940
  requiredErrorInPanel: string;
22440
22941
  requiredInAllRowsError: string;
22942
+ eachRowUniqueError: string;
22441
22943
  numericError: string;
22442
22944
  minError: string;
22443
22945
  maxError: string;
@@ -22455,6 +22957,7 @@ declare module "localization/serbian" {
22455
22957
  urlRequestError: string;
22456
22958
  urlGetChoicesError: string;
22457
22959
  exceedMaxSize: string;
22960
+ noUploadFilesHandler: string;
22458
22961
  otherRequiredError: string;
22459
22962
  uploadingFile: string;
22460
22963
  loadingFile: string;
@@ -22469,6 +22972,8 @@ declare module "localization/serbian" {
22469
22972
  emptyRowsText: string;
22470
22973
  addPanel: string;
22471
22974
  removePanel: string;
22975
+ showDetails: string;
22976
+ hideDetails: string;
22472
22977
  choices_Item: string;
22473
22978
  matrix_column: string;
22474
22979
  matrix_row: string;
@@ -22508,6 +23013,8 @@ declare module "localization/serbian" {
22508
23013
  tagboxDoneButtonCaption: string;
22509
23014
  selectToRankEmptyRankedAreaText: string;
22510
23015
  selectToRankEmptyUnrankedAreaText: string;
23016
+ ok: string;
23017
+ cancel: string;
22511
23018
  };
22512
23019
  }
22513
23020
  declare module "localization/simplified-chinese" {
@@ -22536,6 +23043,7 @@ declare module "localization/simplified-chinese" {
22536
23043
  requiredError: string;
22537
23044
  requiredErrorInPanel: string;
22538
23045
  requiredInAllRowsError: string;
23046
+ eachRowUniqueError: string;
22539
23047
  numericError: string;
22540
23048
  minError: string;
22541
23049
  maxError: string;
@@ -22553,6 +23061,7 @@ declare module "localization/simplified-chinese" {
22553
23061
  urlRequestError: string;
22554
23062
  urlGetChoicesError: string;
22555
23063
  exceedMaxSize: string;
23064
+ noUploadFilesHandler: string;
22556
23065
  otherRequiredError: string;
22557
23066
  uploadingFile: string;
22558
23067
  loadingFile: string;
@@ -22567,6 +23076,8 @@ declare module "localization/simplified-chinese" {
22567
23076
  emptyRowsText: string;
22568
23077
  addPanel: string;
22569
23078
  removePanel: string;
23079
+ showDetails: string;
23080
+ hideDetails: string;
22570
23081
  choices_Item: string;
22571
23082
  matrix_column: string;
22572
23083
  matrix_row: string;
@@ -22606,6 +23117,8 @@ declare module "localization/simplified-chinese" {
22606
23117
  tagboxDoneButtonCaption: string;
22607
23118
  selectToRankEmptyRankedAreaText: string;
22608
23119
  selectToRankEmptyUnrankedAreaText: string;
23120
+ ok: string;
23121
+ cancel: string;
22609
23122
  };
22610
23123
  }
22611
23124
  declare module "localization/slovak" {
@@ -22634,6 +23147,7 @@ declare module "localization/slovak" {
22634
23147
  requiredError: string;
22635
23148
  requiredErrorInPanel: string;
22636
23149
  requiredInAllRowsError: string;
23150
+ eachRowUniqueError: string;
22637
23151
  numericError: string;
22638
23152
  minError: string;
22639
23153
  maxError: string;
@@ -22651,6 +23165,7 @@ declare module "localization/slovak" {
22651
23165
  urlRequestError: string;
22652
23166
  urlGetChoicesError: string;
22653
23167
  exceedMaxSize: string;
23168
+ noUploadFilesHandler: string;
22654
23169
  otherRequiredError: string;
22655
23170
  uploadingFile: string;
22656
23171
  loadingFile: string;
@@ -22665,6 +23180,8 @@ declare module "localization/slovak" {
22665
23180
  emptyRowsText: string;
22666
23181
  addPanel: string;
22667
23182
  removePanel: string;
23183
+ showDetails: string;
23184
+ hideDetails: string;
22668
23185
  choices_Item: string;
22669
23186
  matrix_column: string;
22670
23187
  matrix_row: string;
@@ -22704,6 +23221,8 @@ declare module "localization/slovak" {
22704
23221
  tagboxDoneButtonCaption: string;
22705
23222
  selectToRankEmptyRankedAreaText: string;
22706
23223
  selectToRankEmptyUnrankedAreaText: string;
23224
+ ok: string;
23225
+ cancel: string;
22707
23226
  };
22708
23227
  }
22709
23228
  declare module "localization/spanish" {
@@ -22732,6 +23251,7 @@ declare module "localization/spanish" {
22732
23251
  requiredError: string;
22733
23252
  requiredErrorInPanel: string;
22734
23253
  requiredInAllRowsError: string;
23254
+ eachRowUniqueError: string;
22735
23255
  numericError: string;
22736
23256
  minError: string;
22737
23257
  maxError: string;
@@ -22749,6 +23269,7 @@ declare module "localization/spanish" {
22749
23269
  urlRequestError: string;
22750
23270
  urlGetChoicesError: string;
22751
23271
  exceedMaxSize: string;
23272
+ noUploadFilesHandler: string;
22752
23273
  otherRequiredError: string;
22753
23274
  uploadingFile: string;
22754
23275
  loadingFile: string;
@@ -22763,6 +23284,8 @@ declare module "localization/spanish" {
22763
23284
  emptyRowsText: string;
22764
23285
  addPanel: string;
22765
23286
  removePanel: string;
23287
+ showDetails: string;
23288
+ hideDetails: string;
22766
23289
  choices_Item: string;
22767
23290
  matrix_column: string;
22768
23291
  matrix_row: string;
@@ -22802,6 +23325,8 @@ declare module "localization/spanish" {
22802
23325
  tagboxDoneButtonCaption: string;
22803
23326
  selectToRankEmptyRankedAreaText: string;
22804
23327
  selectToRankEmptyUnrankedAreaText: string;
23328
+ ok: string;
23329
+ cancel: string;
22805
23330
  };
22806
23331
  }
22807
23332
  declare module "localization/swahili" {
@@ -22830,6 +23355,7 @@ declare module "localization/swahili" {
22830
23355
  requiredError: string;
22831
23356
  requiredErrorInPanel: string;
22832
23357
  requiredInAllRowsError: string;
23358
+ eachRowUniqueError: string;
22833
23359
  numericError: string;
22834
23360
  minError: string;
22835
23361
  maxError: string;
@@ -22847,6 +23373,7 @@ declare module "localization/swahili" {
22847
23373
  urlRequestError: string;
22848
23374
  urlGetChoicesError: string;
22849
23375
  exceedMaxSize: string;
23376
+ noUploadFilesHandler: string;
22850
23377
  otherRequiredError: string;
22851
23378
  uploadingFile: string;
22852
23379
  loadingFile: string;
@@ -22861,6 +23388,8 @@ declare module "localization/swahili" {
22861
23388
  emptyRowsText: string;
22862
23389
  addPanel: string;
22863
23390
  removePanel: string;
23391
+ showDetails: string;
23392
+ hideDetails: string;
22864
23393
  choices_Item: string;
22865
23394
  matrix_column: string;
22866
23395
  matrix_row: string;
@@ -22900,6 +23429,8 @@ declare module "localization/swahili" {
22900
23429
  tagboxDoneButtonCaption: string;
22901
23430
  selectToRankEmptyRankedAreaText: string;
22902
23431
  selectToRankEmptyUnrankedAreaText: string;
23432
+ ok: string;
23433
+ cancel: string;
22903
23434
  };
22904
23435
  }
22905
23436
  declare module "localization/swedish" {
@@ -22928,6 +23459,7 @@ declare module "localization/swedish" {
22928
23459
  requiredError: string;
22929
23460
  requiredErrorInPanel: string;
22930
23461
  requiredInAllRowsError: string;
23462
+ eachRowUniqueError: string;
22931
23463
  numericError: string;
22932
23464
  minError: string;
22933
23465
  maxError: string;
@@ -22945,6 +23477,7 @@ declare module "localization/swedish" {
22945
23477
  urlRequestError: string;
22946
23478
  urlGetChoicesError: string;
22947
23479
  exceedMaxSize: string;
23480
+ noUploadFilesHandler: string;
22948
23481
  otherRequiredError: string;
22949
23482
  uploadingFile: string;
22950
23483
  loadingFile: string;
@@ -22959,6 +23492,8 @@ declare module "localization/swedish" {
22959
23492
  emptyRowsText: string;
22960
23493
  addPanel: string;
22961
23494
  removePanel: string;
23495
+ showDetails: string;
23496
+ hideDetails: string;
22962
23497
  choices_Item: string;
22963
23498
  matrix_column: string;
22964
23499
  matrix_row: string;
@@ -22998,6 +23533,8 @@ declare module "localization/swedish" {
22998
23533
  tagboxDoneButtonCaption: string;
22999
23534
  selectToRankEmptyRankedAreaText: string;
23000
23535
  selectToRankEmptyUnrankedAreaText: string;
23536
+ ok: string;
23537
+ cancel: string;
23001
23538
  };
23002
23539
  }
23003
23540
  declare module "localization/tajik" {
@@ -23090,6 +23627,7 @@ declare module "localization/thai" {
23090
23627
  requiredError: string;
23091
23628
  requiredErrorInPanel: string;
23092
23629
  requiredInAllRowsError: string;
23630
+ eachRowUniqueError: string;
23093
23631
  numericError: string;
23094
23632
  minError: string;
23095
23633
  maxError: string;
@@ -23107,6 +23645,7 @@ declare module "localization/thai" {
23107
23645
  urlRequestError: string;
23108
23646
  urlGetChoicesError: string;
23109
23647
  exceedMaxSize: string;
23648
+ noUploadFilesHandler: string;
23110
23649
  otherRequiredError: string;
23111
23650
  uploadingFile: string;
23112
23651
  loadingFile: string;
@@ -23121,6 +23660,8 @@ declare module "localization/thai" {
23121
23660
  emptyRowsText: string;
23122
23661
  addPanel: string;
23123
23662
  removePanel: string;
23663
+ showDetails: string;
23664
+ hideDetails: string;
23124
23665
  choices_Item: string;
23125
23666
  matrix_column: string;
23126
23667
  matrix_row: string;
@@ -23160,6 +23701,8 @@ declare module "localization/thai" {
23160
23701
  tagboxDoneButtonCaption: string;
23161
23702
  selectToRankEmptyRankedAreaText: string;
23162
23703
  selectToRankEmptyUnrankedAreaText: string;
23704
+ ok: string;
23705
+ cancel: string;
23163
23706
  };
23164
23707
  }
23165
23708
  declare module "localization/traditional-chinese" {
@@ -23188,6 +23731,7 @@ declare module "localization/traditional-chinese" {
23188
23731
  requiredError: string;
23189
23732
  requiredErrorInPanel: string;
23190
23733
  requiredInAllRowsError: string;
23734
+ eachRowUniqueError: string;
23191
23735
  numericError: string;
23192
23736
  minError: string;
23193
23737
  maxError: string;
@@ -23205,6 +23749,7 @@ declare module "localization/traditional-chinese" {
23205
23749
  urlRequestError: string;
23206
23750
  urlGetChoicesError: string;
23207
23751
  exceedMaxSize: string;
23752
+ noUploadFilesHandler: string;
23208
23753
  otherRequiredError: string;
23209
23754
  uploadingFile: string;
23210
23755
  loadingFile: string;
@@ -23219,6 +23764,8 @@ declare module "localization/traditional-chinese" {
23219
23764
  emptyRowsText: string;
23220
23765
  addPanel: string;
23221
23766
  removePanel: string;
23767
+ showDetails: string;
23768
+ hideDetails: string;
23222
23769
  choices_Item: string;
23223
23770
  matrix_column: string;
23224
23771
  matrix_row: string;
@@ -23258,6 +23805,8 @@ declare module "localization/traditional-chinese" {
23258
23805
  tagboxDoneButtonCaption: string;
23259
23806
  selectToRankEmptyRankedAreaText: string;
23260
23807
  selectToRankEmptyUnrankedAreaText: string;
23808
+ ok: string;
23809
+ cancel: string;
23261
23810
  };
23262
23811
  }
23263
23812
  declare module "localization/turkish" {
@@ -23286,6 +23835,7 @@ declare module "localization/turkish" {
23286
23835
  requiredError: string;
23287
23836
  requiredErrorInPanel: string;
23288
23837
  requiredInAllRowsError: string;
23838
+ eachRowUniqueError: string;
23289
23839
  numericError: string;
23290
23840
  minError: string;
23291
23841
  maxError: string;
@@ -23303,6 +23853,7 @@ declare module "localization/turkish" {
23303
23853
  urlRequestError: string;
23304
23854
  urlGetChoicesError: string;
23305
23855
  exceedMaxSize: string;
23856
+ noUploadFilesHandler: string;
23306
23857
  otherRequiredError: string;
23307
23858
  uploadingFile: string;
23308
23859
  loadingFile: string;
@@ -23317,6 +23868,8 @@ declare module "localization/turkish" {
23317
23868
  emptyRowsText: string;
23318
23869
  addPanel: string;
23319
23870
  removePanel: string;
23871
+ showDetails: string;
23872
+ hideDetails: string;
23320
23873
  choices_Item: string;
23321
23874
  matrix_column: string;
23322
23875
  matrix_row: string;
@@ -23356,6 +23909,8 @@ declare module "localization/turkish" {
23356
23909
  tagboxDoneButtonCaption: string;
23357
23910
  selectToRankEmptyRankedAreaText: string;
23358
23911
  selectToRankEmptyUnrankedAreaText: string;
23912
+ ok: string;
23913
+ cancel: string;
23359
23914
  };
23360
23915
  }
23361
23916
  declare module "localization/ukrainian" {
@@ -23384,6 +23939,7 @@ declare module "localization/ukrainian" {
23384
23939
  requiredError: string;
23385
23940
  requiredErrorInPanel: string;
23386
23941
  requiredInAllRowsError: string;
23942
+ eachRowUniqueError: string;
23387
23943
  numericError: string;
23388
23944
  minError: string;
23389
23945
  maxError: string;
@@ -23401,6 +23957,7 @@ declare module "localization/ukrainian" {
23401
23957
  urlRequestError: string;
23402
23958
  urlGetChoicesError: string;
23403
23959
  exceedMaxSize: string;
23960
+ noUploadFilesHandler: string;
23404
23961
  otherRequiredError: string;
23405
23962
  uploadingFile: string;
23406
23963
  loadingFile: string;
@@ -23415,6 +23972,8 @@ declare module "localization/ukrainian" {
23415
23972
  emptyRowsText: string;
23416
23973
  addPanel: string;
23417
23974
  removePanel: string;
23975
+ showDetails: string;
23976
+ hideDetails: string;
23418
23977
  choices_Item: string;
23419
23978
  matrix_column: string;
23420
23979
  matrix_row: string;
@@ -23454,6 +24013,8 @@ declare module "localization/ukrainian" {
23454
24013
  tagboxDoneButtonCaption: string;
23455
24014
  selectToRankEmptyRankedAreaText: string;
23456
24015
  selectToRankEmptyUnrankedAreaText: string;
24016
+ ok: string;
24017
+ cancel: string;
23457
24018
  };
23458
24019
  }
23459
24020
  declare module "localization/vietnamese" {
@@ -23482,6 +24043,7 @@ declare module "localization/vietnamese" {
23482
24043
  requiredError: string;
23483
24044
  requiredErrorInPanel: string;
23484
24045
  requiredInAllRowsError: string;
24046
+ eachRowUniqueError: string;
23485
24047
  numericError: string;
23486
24048
  minError: string;
23487
24049
  maxError: string;
@@ -23499,6 +24061,7 @@ declare module "localization/vietnamese" {
23499
24061
  urlRequestError: string;
23500
24062
  urlGetChoicesError: string;
23501
24063
  exceedMaxSize: string;
24064
+ noUploadFilesHandler: string;
23502
24065
  otherRequiredError: string;
23503
24066
  uploadingFile: string;
23504
24067
  loadingFile: string;
@@ -23513,6 +24076,8 @@ declare module "localization/vietnamese" {
23513
24076
  emptyRowsText: string;
23514
24077
  addPanel: string;
23515
24078
  removePanel: string;
24079
+ showDetails: string;
24080
+ hideDetails: string;
23516
24081
  choices_Item: string;
23517
24082
  matrix_column: string;
23518
24083
  matrix_row: string;
@@ -23552,6 +24117,8 @@ declare module "localization/vietnamese" {
23552
24117
  tagboxDoneButtonCaption: string;
23553
24118
  selectToRankEmptyRankedAreaText: string;
23554
24119
  selectToRankEmptyUnrankedAreaText: string;
24120
+ ok: string;
24121
+ cancel: string;
23555
24122
  };
23556
24123
  }
23557
24124
  declare module "localization/welsh" {
@@ -23580,6 +24147,7 @@ declare module "localization/welsh" {
23580
24147
  requiredError: string;
23581
24148
  requiredErrorInPanel: string;
23582
24149
  requiredInAllRowsError: string;
24150
+ eachRowUniqueError: string;
23583
24151
  numericError: string;
23584
24152
  minError: string;
23585
24153
  maxError: string;
@@ -23597,6 +24165,7 @@ declare module "localization/welsh" {
23597
24165
  urlRequestError: string;
23598
24166
  urlGetChoicesError: string;
23599
24167
  exceedMaxSize: string;
24168
+ noUploadFilesHandler: string;
23600
24169
  otherRequiredError: string;
23601
24170
  uploadingFile: string;
23602
24171
  loadingFile: string;
@@ -23611,6 +24180,8 @@ declare module "localization/welsh" {
23611
24180
  emptyRowsText: string;
23612
24181
  addPanel: string;
23613
24182
  removePanel: string;
24183
+ showDetails: string;
24184
+ hideDetails: string;
23614
24185
  choices_Item: string;
23615
24186
  matrix_column: string;
23616
24187
  matrix_row: string;
@@ -23650,6 +24221,8 @@ declare module "localization/welsh" {
23650
24221
  tagboxDoneButtonCaption: string;
23651
24222
  selectToRankEmptyRankedAreaText: string;
23652
24223
  selectToRankEmptyUnrankedAreaText: string;
24224
+ ok: string;
24225
+ cancel: string;
23653
24226
  };
23654
24227
  }
23655
24228
  declare module "localization/telugu" {
@@ -23678,6 +24251,7 @@ declare module "localization/telugu" {
23678
24251
  requiredError: string;
23679
24252
  requiredErrorInPanel: string;
23680
24253
  requiredInAllRowsError: string;
24254
+ eachRowUniqueError: string;
23681
24255
  numericError: string;
23682
24256
  minError: string;
23683
24257
  maxError: string;
@@ -23695,6 +24269,7 @@ declare module "localization/telugu" {
23695
24269
  urlRequestError: string;
23696
24270
  urlGetChoicesError: string;
23697
24271
  exceedMaxSize: string;
24272
+ noUploadFilesHandler: string;
23698
24273
  otherRequiredError: string;
23699
24274
  uploadingFile: string;
23700
24275
  loadingFile: string;
@@ -23709,6 +24284,8 @@ declare module "localization/telugu" {
23709
24284
  emptyRowsText: string;
23710
24285
  addPanel: string;
23711
24286
  removePanel: string;
24287
+ showDetails: string;
24288
+ hideDetails: string;
23712
24289
  choices_Item: string;
23713
24290
  matrix_column: string;
23714
24291
  matrix_row: string;
@@ -23748,6 +24325,8 @@ declare module "localization/telugu" {
23748
24325
  tagboxDoneButtonCaption: string;
23749
24326
  selectToRankEmptyRankedAreaText: string;
23750
24327
  selectToRankEmptyUnrankedAreaText: string;
24328
+ ok: string;
24329
+ cancel: string;
23751
24330
  };
23752
24331
  }
23753
24332
  declare module "entries/chunks/localization" {
@@ -24636,7 +25215,7 @@ declare module "react/dropdown-select" {
24636
25215
  }
24637
25216
  declare module "react/reactquestion_matrix" {
24638
25217
  import { ReactSurveyElement, SurveyQuestionElementBase } from "react/reactquestion_element";
24639
- import { QuestionMatrixModel } from "entries/core";
25218
+ import { QuestionMatrixModel, Base } from "entries/core";
24640
25219
  export class SurveyQuestionMatrix extends SurveyQuestionElementBase {
24641
25220
  constructor(props: any);
24642
25221
  protected get question(): QuestionMatrixModel;
@@ -24646,6 +25225,7 @@ declare module "react/reactquestion_matrix" {
24646
25225
  }
24647
25226
  export class SurveyQuestionMatrixRow extends ReactSurveyElement {
24648
25227
  constructor(props: any);
25228
+ protected getStateElement(): Base | null;
24649
25229
  private get question();
24650
25230
  private get row();
24651
25231
  protected wrapCell(cell: any, element: JSX.Element, reason: string): JSX.Element;
@@ -25091,8 +25671,8 @@ declare module "react/reactquestion_expression" {
25091
25671
  }
25092
25672
  }
25093
25673
  declare module "react/react-popup-survey" {
25094
- import { Survey } from "react/reactSurvey";
25095
25674
  import { Base, PopupSurveyModel } from "entries/core";
25675
+ import { Survey } from "react/reactSurvey";
25096
25676
  export class PopupSurvey extends Survey {
25097
25677
  protected popup: PopupSurveyModel;
25098
25678
  constructor(props: any);
@@ -25101,6 +25681,10 @@ declare module "react/react-popup-survey" {
25101
25681
  protected canRender(): boolean;
25102
25682
  protected renderElement(): JSX.Element;
25103
25683
  protected renderWindowHeader(): JSX.Element;
25684
+ protected renderTitleCollapsed(popup: PopupSurveyModel): JSX.Element | null;
25685
+ protected renderExpandIcon(): JSX.Element;
25686
+ protected renderCollapseIcon(): JSX.Element;
25687
+ protected renderCloseButton(popup: PopupSurveyModel): JSX.Element;
25104
25688
  protected renderBody(): JSX.Element;
25105
25689
  protected createSurvey(newProps: any): void;
25106
25690
  }