survey-react 1.11.12 → 1.11.13

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/modern.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.11.12
2
+ * surveyjs - Survey JavaScript library v1.11.13
3
3
  * Copyright (c) 2015-2024 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
package/modern.min.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.11.12
2
+ * surveyjs - Survey JavaScript library v1.11.13
3
3
  * Copyright (c) 2015-2024 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "survey-react",
3
- "version": "1.11.12",
3
+ "version": "1.11.13",
4
4
  "description": "survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.",
5
5
  "keywords": [
6
6
  "Survey",
package/survey.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.11.12
2
+ * surveyjs - Survey JavaScript library v1.11.13
3
3
  * Copyright (c) 2015-2024 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
package/survey.min.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.11.12
2
+ * surveyjs - Survey JavaScript library v1.11.13
3
3
  * Copyright (c) 2015-2024 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
package/survey.react.d.ts CHANGED
@@ -193,14 +193,21 @@ declare module "packages/survey-core/src/surveyStrings" {
193
193
  localeNames: {
194
194
  [index: string]: any;
195
195
  };
196
+ localeNamesInEnglish: {
197
+ [index: string]: any;
198
+ };
196
199
  localeDirections: {
197
200
  [index: string]: any;
198
201
  };
199
202
  supportedLocales: any[];
203
+ useEnglishNames: boolean;
204
+ showNamesInEnglish: boolean;
205
+ setupLocale(loc: string, strings: any, name: string, nameInEngish: string, direction?: string): void;
200
206
  currentLocale: string;
201
207
  defaultLocale: string;
202
208
  getLocaleStrings(loc: string): any;
203
209
  getString: (strName: string, locale?: string) => any;
210
+ getLocaleName(loc: string, inEnglish?: boolean): string;
204
211
  getLocales: (removeDefaultLoc?: boolean) => Array<string>;
205
212
  onGetExternalString: (name: string, locale: string) => string;
206
213
  };
@@ -364,6 +371,11 @@ declare module "packages/survey-core/src/functionsfactory" {
364
371
  declare module "packages/survey-core/src/expressions/expressions" {
365
372
  import { HashTable } from "packages/survey-core/src/helpers";
366
373
  import { ProcessValue } from "packages/survey-core/src/conditionProcessValue";
374
+ export interface AsyncFunctionItem {
375
+ operand?: FunctionOperand;
376
+ parent?: AsyncFunctionItem;
377
+ children?: Array<AsyncFunctionItem>;
378
+ }
367
379
  export abstract class Operand {
368
380
  toString(func?: (op: Operand) => string): string;
369
381
  abstract getType(): string;
@@ -371,7 +383,7 @@ declare module "packages/survey-core/src/expressions/expressions" {
371
383
  abstract setVariables(variables: Array<string>): any;
372
384
  hasFunction(): boolean;
373
385
  hasAsyncFunction(): boolean;
374
- addToAsyncList(list: Array<FunctionOperand>): void;
386
+ addToAsyncList(list: Array<AsyncFunctionItem>): void;
375
387
  isEqual(op: Operand): boolean;
376
388
  protected abstract isContentEqual(op: Operand): boolean;
377
389
  protected areOperatorsEquals(op1: Operand, op2: Operand): boolean;
@@ -399,7 +411,7 @@ declare module "packages/survey-core/src/expressions/expressions" {
399
411
  setVariables(variables: Array<string>): void;
400
412
  hasFunction(): boolean;
401
413
  hasAsyncFunction(): boolean;
402
- addToAsyncList(list: Array<FunctionOperand>): void;
414
+ addToAsyncList(list: Array<AsyncFunctionItem>): void;
403
415
  }
404
416
  export class UnaryOperand extends Operand {
405
417
  private expressionValue;
@@ -413,7 +425,7 @@ declare module "packages/survey-core/src/expressions/expressions" {
413
425
  protected isContentEqual(op: Operand): boolean;
414
426
  hasFunction(): boolean;
415
427
  hasAsyncFunction(): boolean;
416
- addToAsyncList(list: Array<FunctionOperand>): void;
428
+ addToAsyncList(list: Array<AsyncFunctionItem>): void;
417
429
  evaluate(processValue?: ProcessValue): boolean;
418
430
  setVariables(variables: Array<string>): void;
419
431
  }
@@ -426,7 +438,7 @@ declare module "packages/survey-core/src/expressions/expressions" {
426
438
  setVariables(variables: Array<string>): void;
427
439
  hasFunction(): boolean;
428
440
  hasAsyncFunction(): boolean;
429
- addToAsyncList(list: Array<FunctionOperand>): void;
441
+ addToAsyncList(list: Array<AsyncFunctionItem>): void;
430
442
  protected isContentEqual(op: Operand): boolean;
431
443
  }
432
444
  export class Const extends Operand {
@@ -474,7 +486,8 @@ declare module "packages/survey-core/src/expressions/expressions" {
474
486
  get isReady(): boolean;
475
487
  hasFunction(): boolean;
476
488
  hasAsyncFunction(): boolean;
477
- addToAsyncList(list: Array<FunctionOperand>): void;
489
+ private isAsyncFunction;
490
+ addToAsyncList(list: Array<AsyncFunctionItem>): void;
478
491
  protected isContentEqual(op: Operand): boolean;
479
492
  }
480
493
  export class OperandMaker {
@@ -620,7 +633,11 @@ declare module "packages/survey-core/src/conditions" {
620
633
  get isAsync(): boolean;
621
634
  canRun(): boolean;
622
635
  run(values: HashTable<any>, properties?: HashTable<any>): any;
636
+ private runAsyncItem;
637
+ private runAsyncItemCore;
623
638
  private doAsyncFunctionReady;
639
+ private isAsyncFuncReady;
640
+ private isAsyncChildrenReady;
624
641
  private runValues;
625
642
  }
626
643
  export class ExpressionRunnerBase {
@@ -3832,12 +3849,12 @@ declare module "packages/survey-core/src/utils/camera" {
3832
3849
  width?: number;
3833
3850
  height?: number;
3834
3851
  }): MediaStreamConstraints;
3835
- startVideo(videoElementId: string, callback: (stream: MediaStream) => void, imageWidth?: number, imageHeight?: number): void;
3852
+ startVideo(videoElement: HTMLVideoElement, callback: (stream: MediaStream) => void, imageWidth?: number, imageHeight?: number): void;
3836
3853
  getImageSize(videoEl: HTMLVideoElement): {
3837
3854
  width: number;
3838
3855
  height: number;
3839
3856
  };
3840
- snap(videoElementId: string, callback: BlobCallback): boolean;
3857
+ snap(videoElement: HTMLVideoElement, callback: BlobCallback): boolean;
3841
3858
  private canFlipValue;
3842
3859
  private updateCanFlipValue;
3843
3860
  private onCanFlipChangedCallback?;
@@ -3946,6 +3963,7 @@ declare module "packages/survey-core/src/question_file" {
3946
3963
  get hasFileUI(): boolean;
3947
3964
  private videoStream;
3948
3965
  startVideo(): void;
3966
+ private get videoHtmlElement();
3949
3967
  private startVideoInCamera;
3950
3968
  stopVideo(): void;
3951
3969
  snapPicture(): void;
@@ -4526,9 +4544,6 @@ declare module "packages/survey-core/src/question_baseselect" {
4526
4544
  protected hasUnknownValue(val: any, includeOther?: boolean, isFilteredChoices?: boolean, checkEmptyValue?: boolean): boolean;
4527
4545
  protected hasUnknownValueItem(val: any, includeOther?: boolean, isFilteredChoices?: boolean, checkEmptyValue?: boolean): boolean;
4528
4546
  protected isValueDisabled(val: any): boolean;
4529
- /**
4530
- * If the clearIncorrectValuesCallback is set, it is used to clear incorrect values instead of default behaviour.
4531
- */
4532
4547
  clearIncorrectValuesCallback: () => void;
4533
4548
  /**
4534
4549
  * Configures access to a RESTful service that returns choice items. Refer to the [`ChoicesRestful`](https://surveyjs.io/form-library/documentation/choicesrestful) class description for more information. You can also specify additional application-wide settings using the [`settings.web`](https://surveyjs.io/form-library/documentation/api-reference/settings#web) object.
@@ -5670,6 +5685,7 @@ declare module "packages/survey-core/src/question_matrixdropdownrendered" {
5670
5685
  set className(val: string);
5671
5686
  get className(): string;
5672
5687
  get cellQuestionWrapperClassName(): string;
5688
+ get isVisible(): boolean;
5673
5689
  get showResponsiveTitle(): boolean;
5674
5690
  get responsiveTitleCss(): string;
5675
5691
  get responsiveLocTitle(): LocalizableString;
@@ -6415,7 +6431,7 @@ declare module "packages/survey-core/src/question_paneldynamic" {
6415
6431
  set templateTitle(newValue: string);
6416
6432
  get locTemplateTitle(): LocalizableString;
6417
6433
  /**
6418
- * A template for tab titles. Applies when [`renderMode`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#renderMode) is `"tab"`.
6434
+ * A template for tab titles. Applies when [`displayMode`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#displayMode) is `"tab"`.
6419
6435
  *
6420
6436
  * The template can contain the following placeholders:
6421
6437
  *
@@ -6427,7 +6443,7 @@ declare module "packages/survey-core/src/question_paneldynamic" {
6427
6443
  * [View Demo](https://surveyjs.io/form-library/examples/tabbed-interface-for-duplicate-group-option/ (linkStyle))
6428
6444
  * @see templateTitle
6429
6445
  * @see tabTitlePlaceholder
6430
- * @see renderMode
6446
+ * @see displayMode
6431
6447
  */
6432
6448
  get templateTabTitle(): string;
6433
6449
  set templateTabTitle(newValue: string);
@@ -6485,22 +6501,22 @@ declare module "packages/survey-core/src/question_paneldynamic" {
6485
6501
  /**
6486
6502
  * A zero-based index of the currently displayed panel.
6487
6503
  *
6488
- * When `renderMode` is `"list"` or Dynamic Panel is empty (`panelCount` is 0), this property contains -1.
6504
+ * When `displayMode` is `"list"` or Dynamic Panel is empty (`panelCount` is 0), this property contains -1.
6489
6505
  * @see currentPanel
6490
6506
  * @see panels
6491
6507
  * @see panelCount
6492
- * @see renderMode
6508
+ * @see displayMode
6493
6509
  */
6494
6510
  get currentIndex(): number;
6495
6511
  set currentIndex(val: number);
6496
6512
  /**
6497
6513
  * A `PanelModel` object that is the currently displayed panel.
6498
6514
  *
6499
- * When `renderMode` is `"list"` or Dynamic Panel is empty (`panelCount` is 0), this property contains `null`.
6515
+ * When `displayMode` is `"list"` or Dynamic Panel is empty (`panelCount` is 0), this property contains `null`.
6500
6516
  * @see currentIndex
6501
6517
  * @see panels
6502
6518
  * @see panelCount
6503
- * @see renderMode
6519
+ * @see displayMode
6504
6520
  */
6505
6521
  get currentPanel(): PanelModel;
6506
6522
  set currentPanel(val: PanelModel);
@@ -6545,16 +6561,16 @@ declare module "packages/survey-core/src/question_paneldynamic" {
6545
6561
  set keyDuplicationError(val: string);
6546
6562
  get locKeyDuplicationError(): LocalizableString;
6547
6563
  /**
6548
- * A caption for the Previous button. Applies only if `renderMode` is different from `"list"`.
6549
- * @see renderMode
6564
+ * A caption for the Previous button. Applies only if `displayMode` is different from `"list"`.
6565
+ * @see displayMode
6550
6566
  * @see isPrevButtonVisible
6551
6567
  */
6552
6568
  get panelPrevText(): string;
6553
6569
  set panelPrevText(val: string);
6554
6570
  get locPanelPrevText(): LocalizableString;
6555
6571
  /**
6556
- * A caption for the Next button. Applies only if `renderMode` is different from `"list"`.
6557
- * @see renderMode
6572
+ * A caption for the Next button. Applies only if `displayMode` is different from `"list"`.
6573
+ * @see displayMode
6558
6574
  * @see isNextButtonVisible
6559
6575
  */
6560
6576
  get panelNextText(): string;
@@ -6573,13 +6589,7 @@ declare module "packages/survey-core/src/question_paneldynamic" {
6573
6589
  get panelRemoveText(): string;
6574
6590
  set panelRemoveText(val: string);
6575
6591
  get locPanelRemoveText(): LocalizableString;
6576
- /**
6577
- * Returns true when the renderMode equals to "progressTop" or "progressTopBottom"
6578
- */
6579
6592
  get isProgressTopShowing(): boolean;
6580
- /**
6581
- * Returns true when the renderMode equals to "progressBottom" or "progressTopBottom"
6582
- */
6583
6593
  get isProgressBottomShowing(): boolean;
6584
6594
  /**
6585
6595
  * Indicates whether the Previous button is visible.
@@ -6597,9 +6607,6 @@ declare module "packages/survey-core/src/question_paneldynamic" {
6597
6607
  */
6598
6608
  get isNextButtonVisible(): boolean;
6599
6609
  get isNextButtonShowing(): boolean;
6600
- /**
6601
- * Returns true when showRangeInProgress equals to true, renderMode doesn't equal to "list" and visiblePanelCount is >= 2.
6602
- */
6603
6610
  get isRangeShowing(): boolean;
6604
6611
  getElementsInDesign(includeHidden?: boolean): Array<IElement>;
6605
6612
  private isAddingNewPanels;
@@ -6624,7 +6631,7 @@ declare module "packages/survey-core/src/question_paneldynamic" {
6624
6631
  */
6625
6632
  get visiblePanelCount(): number;
6626
6633
  /**
6627
- * Specifies whether users can expand and collapse panels. Applies if `renderMode` is `"list"` and the `templateTitle` property is specified.
6634
+ * Specifies whether users can expand and collapse panels. Applies if `displayMode` is `"list"` and the `templateTitle` property is specified.
6628
6635
  *
6629
6636
  * Possible values:
6630
6637
  *
@@ -6632,7 +6639,7 @@ declare module "packages/survey-core/src/question_paneldynamic" {
6632
6639
  * - `"expanded"` - All panels are displayed in full and can be collapsed in the UI.
6633
6640
  * - `"collapsed"` - All panels display only their titles and descriptions and can be expanded in the UI.
6634
6641
  * - `"firstExpanded"` - Only the first panel is displayed in full; other panels are collapsed and can be expanded in the UI.
6635
- * @see renderMode
6642
+ * @see displayMode
6636
6643
  * @see templateTitle
6637
6644
  */
6638
6645
  get panelsState(): string;
@@ -6735,25 +6742,47 @@ declare module "packages/survey-core/src/question_paneldynamic" {
6735
6742
  get panelRemoveButtonLocation(): string;
6736
6743
  set panelRemoveButtonLocation(val: string);
6737
6744
  /**
6738
- * Shows the range from 1 to panelCount when renderMode doesn't equal to "list". Set to false to hide this element.
6739
- * @see panelCount
6740
- * @see renderMode
6745
+ * Obsolete. Use the [`showProgressBar`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#showProgressBar) property instead.
6746
+ * @deprecated
6741
6747
  */
6742
6748
  get showRangeInProgress(): boolean;
6743
6749
  set showRangeInProgress(val: boolean);
6744
6750
  /**
6745
- * Specifies how to render panels.
6751
+ * Obsolete. Use the [`displayMode`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#displayMode) property instead.
6752
+ * @deprecated
6753
+ */
6754
+ get renderMode(): string;
6755
+ set renderMode(val: string);
6756
+ private updatePanelView;
6757
+ /**
6758
+ * Specifies how to display panels.
6746
6759
  *
6747
6760
  * Possible values:
6748
6761
  *
6749
- * - `"list"` (default) - Renders panels one under the other. [View Demo](https://surveyjs.io/form-library/examples/how-to-use-expressions-in-dynamic-panel/)
6750
- * - `"progressTop"` - Renders each panel as a card and displays a progress bar at the top. [View Demo](https://surveyjs.io/form-library/examples/questiontype-paneldynamic/)
6751
- * - `"progressBottom"` - Renders each panel panel as a card and displays a progress bar at the bottom.
6752
- * - `"progressTopBottom"` - Renders each panel as a card and displays a progress bar at the top and bottom.
6753
- * - `"tab"` - Renders each panel within a tab. Use the [`templateTabTitle`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#templateTabTitle) to specify a template for tab titles. [View Demo](https://surveyjs.io/form-library/examples/tabbed-interface-for-duplicate-group-option/)
6762
+ * - `"list"` (default) - Displays panels one under the other. [View Demo](https://surveyjs.io/form-library/examples/duplicate-group-of-fields-in-form/)
6763
+ * - `"carousel"` - Displays panels in a carousel. Users can switch between panels using navigation buttons.
6764
+ * - `"tab"` - Displays each panel within a tab. Use the [`templateTabTitle`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#templateTabTitle) to specify a template for tab titles. [View Demo](https://surveyjs.io/form-library/examples/tabbed-interface-for-duplicate-group-option/)
6765
+ * @see showProgressBar
6766
+ * @see progressBarLocation
6754
6767
  */
6755
- get renderMode(): string;
6756
- set renderMode(val: string);
6768
+ displayMode: "list" | "carousel" | "tab";
6769
+ /**
6770
+ * Specifies whether to display the progress bar. Applies only if [`displayMode`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#displayMode) is `"carousel"`.
6771
+ *
6772
+ * Default value: `true`
6773
+ * @see progressBarLocation
6774
+ */
6775
+ showProgressBar: true | false;
6776
+ /**
6777
+ * Specifies the alignment of the [progress bar](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#showProgressBar) relative to the currently displayed panel. Applies only if [`displayMode`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#displayMode) is `"carousel"`.
6778
+ *
6779
+ * Possible values:
6780
+ *
6781
+ * - `"top"` (default) - Displays the progress bar at the top of the current panel.
6782
+ * - `"bottom"` - Displays the progress bar at the bottom of the current panel.
6783
+ * - `"topBottom"` - Displays the progress bar at the top and bottom of the current panel.
6784
+ */
6785
+ progressBarLocation: "top" | "bottom" | "topBottom";
6757
6786
  get tabAlign(): "center" | "left" | "right";
6758
6787
  set tabAlign(val: "center" | "left" | "right");
6759
6788
  get isRenderModeList(): boolean;
@@ -6815,7 +6844,7 @@ declare module "packages/survey-core/src/question_paneldynamic" {
6815
6844
  private isRowEmpty;
6816
6845
  /**
6817
6846
  * Add a new dynamic panel based on the template Panel. It checks if canAddPanel returns true and then calls addPanel method.
6818
- * If a renderMode is different from "list" and the current panel has erros, then
6847
+ * If a displayMode is different from "list" and the current panel has erros, then
6819
6848
  * @see template
6820
6849
  * @see panelCount
6821
6850
  * @see panels
@@ -6826,7 +6855,7 @@ declare module "packages/survey-core/src/question_paneldynamic" {
6826
6855
  private focusNewPanel;
6827
6856
  /**
6828
6857
  * Adds a new panel based on the [template](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#template).
6829
- * @param index *(Optional)* An index at which to insert the new panel. `undefined` adds the panel to the end or inserts it after the current panel if [`renderMode`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#renderMode) is `"tab"`. A negative index (for instance, -1) adds the panel to the end in all cases, regardless of the `renderMode` value.
6858
+ * @param index *(Optional)* An index at which to insert the new panel. `undefined` adds the panel to the end or inserts it after the current panel if [`displayMode`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#renderMode) is `"tab"`. A negative index (for instance, -1) adds the panel to the end in all cases, regardless of the `displayMode` value.
6830
6859
  * @see panelCount
6831
6860
  * @see panels
6832
6861
  * @see allowAddPanel
@@ -6848,8 +6877,8 @@ declare module "packages/survey-core/src/question_paneldynamic" {
6848
6877
  removePanelUI(value: any): void;
6849
6878
  isRequireConfirmOnDelete(val: any): boolean;
6850
6879
  /**
6851
- * Switches Dynamic Panel to the next panel. Returns `true` in case of success, or `false` if `renderMode` is `"list"` or the current panel contains validation errors.
6852
- * @see renderMode
6880
+ * Switches Dynamic Panel to the next panel. Returns `true` in case of success, or `false` if `displayMode` is `"list"` or the current panel contains validation errors.
6881
+ * @see displayMode
6853
6882
  */
6854
6883
  goToNextPanel(): boolean;
6855
6884
  /**
@@ -8682,6 +8711,15 @@ declare module "packages/survey-core/src/question_text" {
8682
8711
  * @see maskSettings
8683
8712
  */
8684
8713
  maskType: string;
8714
+ /**
8715
+ * Specifies text alignment within the input field.
8716
+ *
8717
+ * Possible values:
8718
+ *
8719
+ * - `"left"` - Aligns input text to the left side.
8720
+ * - `"right"` - Aligns input text to the right side.
8721
+ * - `"auto"` (default) - Applies right alignment if a [numeric or currency input mask](https://surveyjs.io/form-library/documentation/api-reference/text-entry-question-model#maskType) is specified. Otherwise, applies left alignment.
8722
+ */
8685
8723
  inputTextAlignment: "left" | "right" | "auto";
8686
8724
  get maskTypeIsEmpty(): boolean;
8687
8725
  /**
@@ -9002,6 +9040,15 @@ declare module "packages/survey-core/src/question_multipletext" {
9002
9040
  */
9003
9041
  get maskSettings(): InputMaskBase;
9004
9042
  set maskSettings(val: InputMaskBase);
9043
+ /**
9044
+ * Specifies text alignment within the input field.
9045
+ *
9046
+ * Possible values:
9047
+ *
9048
+ * - `"left"` - Aligns input text to the left side.
9049
+ * - `"right"` - Aligns input text to the right side.
9050
+ * - `"auto"` (default) - Applies right alignment if a [numeric or currency input mask](https://surveyjs.io/form-library/documentation/api-reference/multipletextitemmodel#maskType) is specified. Otherwise, applies left alignment.
9051
+ */
9005
9052
  get inputTextAlignment(): "left" | "right" | "auto";
9006
9053
  set inputTextAlignment(val: "left" | "right" | "auto");
9007
9054
  /**
@@ -26974,6 +27021,7 @@ declare module "packages/survey-react-ui/src/reactquestion" {
26974
27021
  constructor(props: any);
26975
27022
  private get question();
26976
27023
  private update;
27024
+ protected getQuestionPropertiesToTrack(): string[];
26977
27025
  private registerCallback;
26978
27026
  private unRegisterCallback;
26979
27027
  componentDidUpdate(prevProps: Readonly<any>): void;
@@ -27767,6 +27815,7 @@ declare module "packages/survey-react-ui/src/reactquestion_matrixdropdownbase" {
27767
27815
  protected getShowErrors(): boolean;
27768
27816
  protected getCellStyle(): any;
27769
27817
  protected getHeaderText(): string;
27818
+ protected renderElement(): JSX.Element | null;
27770
27819
  protected renderCellContent(): JSX.Element;
27771
27820
  protected renderQuestion(): JSX.Element;
27772
27821
  private renderOtherComment;