survey-react 1.11.11 → 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/defaultV2.css +34 -14
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +27 -7
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +27 -7
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +100 -46
- package/survey.react.js +423 -238
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
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<
|
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<
|
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<
|
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<
|
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
|
-
|
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 {
|
@@ -3406,6 +3423,7 @@ declare module "packages/survey-core/src/panel" {
|
|
3406
3423
|
*/
|
3407
3424
|
getElementByName(name: string): IElement;
|
3408
3425
|
getQuestionByValueName(valueName: string): Question;
|
3426
|
+
getQuestionsByValueName(valueName: string): Array<Question>;
|
3409
3427
|
/**
|
3410
3428
|
* Returns a JSON object with question values nested in the panel/page.
|
3411
3429
|
* @see getDisplayValue
|
@@ -3831,12 +3849,12 @@ declare module "packages/survey-core/src/utils/camera" {
|
|
3831
3849
|
width?: number;
|
3832
3850
|
height?: number;
|
3833
3851
|
}): MediaStreamConstraints;
|
3834
|
-
startVideo(
|
3852
|
+
startVideo(videoElement: HTMLVideoElement, callback: (stream: MediaStream) => void, imageWidth?: number, imageHeight?: number): void;
|
3835
3853
|
getImageSize(videoEl: HTMLVideoElement): {
|
3836
3854
|
width: number;
|
3837
3855
|
height: number;
|
3838
3856
|
};
|
3839
|
-
snap(
|
3857
|
+
snap(videoElement: HTMLVideoElement, callback: BlobCallback): boolean;
|
3840
3858
|
private canFlipValue;
|
3841
3859
|
private updateCanFlipValue;
|
3842
3860
|
private onCanFlipChangedCallback?;
|
@@ -3945,6 +3963,7 @@ declare module "packages/survey-core/src/question_file" {
|
|
3945
3963
|
get hasFileUI(): boolean;
|
3946
3964
|
private videoStream;
|
3947
3965
|
startVideo(): void;
|
3966
|
+
private get videoHtmlElement();
|
3948
3967
|
private startVideoInCamera;
|
3949
3968
|
stopVideo(): void;
|
3950
3969
|
snapPicture(): void;
|
@@ -4525,9 +4544,6 @@ declare module "packages/survey-core/src/question_baseselect" {
|
|
4525
4544
|
protected hasUnknownValue(val: any, includeOther?: boolean, isFilteredChoices?: boolean, checkEmptyValue?: boolean): boolean;
|
4526
4545
|
protected hasUnknownValueItem(val: any, includeOther?: boolean, isFilteredChoices?: boolean, checkEmptyValue?: boolean): boolean;
|
4527
4546
|
protected isValueDisabled(val: any): boolean;
|
4528
|
-
/**
|
4529
|
-
* If the clearIncorrectValuesCallback is set, it is used to clear incorrect values instead of default behaviour.
|
4530
|
-
*/
|
4531
4547
|
clearIncorrectValuesCallback: () => void;
|
4532
4548
|
/**
|
4533
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.
|
@@ -5669,6 +5685,7 @@ declare module "packages/survey-core/src/question_matrixdropdownrendered" {
|
|
5669
5685
|
set className(val: string);
|
5670
5686
|
get className(): string;
|
5671
5687
|
get cellQuestionWrapperClassName(): string;
|
5688
|
+
get isVisible(): boolean;
|
5672
5689
|
get showResponsiveTitle(): boolean;
|
5673
5690
|
get responsiveTitleCss(): string;
|
5674
5691
|
get responsiveLocTitle(): LocalizableString;
|
@@ -6414,7 +6431,7 @@ declare module "packages/survey-core/src/question_paneldynamic" {
|
|
6414
6431
|
set templateTitle(newValue: string);
|
6415
6432
|
get locTemplateTitle(): LocalizableString;
|
6416
6433
|
/**
|
6417
|
-
* A template for tab titles. Applies when [`
|
6434
|
+
* A template for tab titles. Applies when [`displayMode`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#displayMode) is `"tab"`.
|
6418
6435
|
*
|
6419
6436
|
* The template can contain the following placeholders:
|
6420
6437
|
*
|
@@ -6426,7 +6443,7 @@ declare module "packages/survey-core/src/question_paneldynamic" {
|
|
6426
6443
|
* [View Demo](https://surveyjs.io/form-library/examples/tabbed-interface-for-duplicate-group-option/ (linkStyle))
|
6427
6444
|
* @see templateTitle
|
6428
6445
|
* @see tabTitlePlaceholder
|
6429
|
-
* @see
|
6446
|
+
* @see displayMode
|
6430
6447
|
*/
|
6431
6448
|
get templateTabTitle(): string;
|
6432
6449
|
set templateTabTitle(newValue: string);
|
@@ -6484,22 +6501,22 @@ declare module "packages/survey-core/src/question_paneldynamic" {
|
|
6484
6501
|
/**
|
6485
6502
|
* A zero-based index of the currently displayed panel.
|
6486
6503
|
*
|
6487
|
-
* When `
|
6504
|
+
* When `displayMode` is `"list"` or Dynamic Panel is empty (`panelCount` is 0), this property contains -1.
|
6488
6505
|
* @see currentPanel
|
6489
6506
|
* @see panels
|
6490
6507
|
* @see panelCount
|
6491
|
-
* @see
|
6508
|
+
* @see displayMode
|
6492
6509
|
*/
|
6493
6510
|
get currentIndex(): number;
|
6494
6511
|
set currentIndex(val: number);
|
6495
6512
|
/**
|
6496
6513
|
* A `PanelModel` object that is the currently displayed panel.
|
6497
6514
|
*
|
6498
|
-
* When `
|
6515
|
+
* When `displayMode` is `"list"` or Dynamic Panel is empty (`panelCount` is 0), this property contains `null`.
|
6499
6516
|
* @see currentIndex
|
6500
6517
|
* @see panels
|
6501
6518
|
* @see panelCount
|
6502
|
-
* @see
|
6519
|
+
* @see displayMode
|
6503
6520
|
*/
|
6504
6521
|
get currentPanel(): PanelModel;
|
6505
6522
|
set currentPanel(val: PanelModel);
|
@@ -6544,16 +6561,16 @@ declare module "packages/survey-core/src/question_paneldynamic" {
|
|
6544
6561
|
set keyDuplicationError(val: string);
|
6545
6562
|
get locKeyDuplicationError(): LocalizableString;
|
6546
6563
|
/**
|
6547
|
-
* A caption for the Previous button. Applies only if `
|
6548
|
-
* @see
|
6564
|
+
* A caption for the Previous button. Applies only if `displayMode` is different from `"list"`.
|
6565
|
+
* @see displayMode
|
6549
6566
|
* @see isPrevButtonVisible
|
6550
6567
|
*/
|
6551
6568
|
get panelPrevText(): string;
|
6552
6569
|
set panelPrevText(val: string);
|
6553
6570
|
get locPanelPrevText(): LocalizableString;
|
6554
6571
|
/**
|
6555
|
-
* A caption for the Next button. Applies only if `
|
6556
|
-
* @see
|
6572
|
+
* A caption for the Next button. Applies only if `displayMode` is different from `"list"`.
|
6573
|
+
* @see displayMode
|
6557
6574
|
* @see isNextButtonVisible
|
6558
6575
|
*/
|
6559
6576
|
get panelNextText(): string;
|
@@ -6572,13 +6589,7 @@ declare module "packages/survey-core/src/question_paneldynamic" {
|
|
6572
6589
|
get panelRemoveText(): string;
|
6573
6590
|
set panelRemoveText(val: string);
|
6574
6591
|
get locPanelRemoveText(): LocalizableString;
|
6575
|
-
/**
|
6576
|
-
* Returns true when the renderMode equals to "progressTop" or "progressTopBottom"
|
6577
|
-
*/
|
6578
6592
|
get isProgressTopShowing(): boolean;
|
6579
|
-
/**
|
6580
|
-
* Returns true when the renderMode equals to "progressBottom" or "progressTopBottom"
|
6581
|
-
*/
|
6582
6593
|
get isProgressBottomShowing(): boolean;
|
6583
6594
|
/**
|
6584
6595
|
* Indicates whether the Previous button is visible.
|
@@ -6596,9 +6607,6 @@ declare module "packages/survey-core/src/question_paneldynamic" {
|
|
6596
6607
|
*/
|
6597
6608
|
get isNextButtonVisible(): boolean;
|
6598
6609
|
get isNextButtonShowing(): boolean;
|
6599
|
-
/**
|
6600
|
-
* Returns true when showRangeInProgress equals to true, renderMode doesn't equal to "list" and visiblePanelCount is >= 2.
|
6601
|
-
*/
|
6602
6610
|
get isRangeShowing(): boolean;
|
6603
6611
|
getElementsInDesign(includeHidden?: boolean): Array<IElement>;
|
6604
6612
|
private isAddingNewPanels;
|
@@ -6623,7 +6631,7 @@ declare module "packages/survey-core/src/question_paneldynamic" {
|
|
6623
6631
|
*/
|
6624
6632
|
get visiblePanelCount(): number;
|
6625
6633
|
/**
|
6626
|
-
* Specifies whether users can expand and collapse panels. Applies if `
|
6634
|
+
* Specifies whether users can expand and collapse panels. Applies if `displayMode` is `"list"` and the `templateTitle` property is specified.
|
6627
6635
|
*
|
6628
6636
|
* Possible values:
|
6629
6637
|
*
|
@@ -6631,7 +6639,7 @@ declare module "packages/survey-core/src/question_paneldynamic" {
|
|
6631
6639
|
* - `"expanded"` - All panels are displayed in full and can be collapsed in the UI.
|
6632
6640
|
* - `"collapsed"` - All panels display only their titles and descriptions and can be expanded in the UI.
|
6633
6641
|
* - `"firstExpanded"` - Only the first panel is displayed in full; other panels are collapsed and can be expanded in the UI.
|
6634
|
-
* @see
|
6642
|
+
* @see displayMode
|
6635
6643
|
* @see templateTitle
|
6636
6644
|
*/
|
6637
6645
|
get panelsState(): string;
|
@@ -6734,25 +6742,47 @@ declare module "packages/survey-core/src/question_paneldynamic" {
|
|
6734
6742
|
get panelRemoveButtonLocation(): string;
|
6735
6743
|
set panelRemoveButtonLocation(val: string);
|
6736
6744
|
/**
|
6737
|
-
*
|
6738
|
-
* @
|
6739
|
-
* @see renderMode
|
6745
|
+
* Obsolete. Use the [`showProgressBar`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#showProgressBar) property instead.
|
6746
|
+
* @deprecated
|
6740
6747
|
*/
|
6741
6748
|
get showRangeInProgress(): boolean;
|
6742
6749
|
set showRangeInProgress(val: boolean);
|
6743
6750
|
/**
|
6744
|
-
*
|
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.
|
6745
6759
|
*
|
6746
6760
|
* Possible values:
|
6747
6761
|
*
|
6748
|
-
* - `"list"` (default) -
|
6749
|
-
* - `"
|
6750
|
-
* - `"
|
6751
|
-
*
|
6752
|
-
*
|
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
|
6753
6767
|
*/
|
6754
|
-
|
6755
|
-
|
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";
|
6756
6786
|
get tabAlign(): "center" | "left" | "right";
|
6757
6787
|
set tabAlign(val: "center" | "left" | "right");
|
6758
6788
|
get isRenderModeList(): boolean;
|
@@ -6814,7 +6844,7 @@ declare module "packages/survey-core/src/question_paneldynamic" {
|
|
6814
6844
|
private isRowEmpty;
|
6815
6845
|
/**
|
6816
6846
|
* Add a new dynamic panel based on the template Panel. It checks if canAddPanel returns true and then calls addPanel method.
|
6817
|
-
* If a
|
6847
|
+
* If a displayMode is different from "list" and the current panel has erros, then
|
6818
6848
|
* @see template
|
6819
6849
|
* @see panelCount
|
6820
6850
|
* @see panels
|
@@ -6825,7 +6855,7 @@ declare module "packages/survey-core/src/question_paneldynamic" {
|
|
6825
6855
|
private focusNewPanel;
|
6826
6856
|
/**
|
6827
6857
|
* Adds a new panel based on the [template](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#template).
|
6828
|
-
* @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 [`
|
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.
|
6829
6859
|
* @see panelCount
|
6830
6860
|
* @see panels
|
6831
6861
|
* @see allowAddPanel
|
@@ -6847,8 +6877,8 @@ declare module "packages/survey-core/src/question_paneldynamic" {
|
|
6847
6877
|
removePanelUI(value: any): void;
|
6848
6878
|
isRequireConfirmOnDelete(val: any): boolean;
|
6849
6879
|
/**
|
6850
|
-
* Switches Dynamic Panel to the next panel. Returns `true` in case of success, or `false` if `
|
6851
|
-
* @see
|
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
|
6852
6882
|
*/
|
6853
6883
|
goToNextPanel(): boolean;
|
6854
6884
|
/**
|
@@ -8594,6 +8624,7 @@ declare module "packages/survey-core/src/mask/mask_utils" {
|
|
8594
8624
|
processInput(args: ITextInputParams): IMaskedInputResult;
|
8595
8625
|
getTextAlignment(): "left" | "right" | "auto";
|
8596
8626
|
}
|
8627
|
+
export function getAvailableMaskTypeChoices(): string[];
|
8597
8628
|
}
|
8598
8629
|
declare module "packages/survey-core/src/mask/mask_base" {
|
8599
8630
|
import { Base } from "packages/survey-core/src/base";
|
@@ -8680,6 +8711,15 @@ declare module "packages/survey-core/src/question_text" {
|
|
8680
8711
|
* @see maskSettings
|
8681
8712
|
*/
|
8682
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
|
+
*/
|
8683
8723
|
inputTextAlignment: "left" | "right" | "auto";
|
8684
8724
|
get maskTypeIsEmpty(): boolean;
|
8685
8725
|
/**
|
@@ -9000,6 +9040,15 @@ declare module "packages/survey-core/src/question_multipletext" {
|
|
9000
9040
|
*/
|
9001
9041
|
get maskSettings(): InputMaskBase;
|
9002
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
|
+
*/
|
9003
9052
|
get inputTextAlignment(): "left" | "right" | "auto";
|
9004
9053
|
set inputTextAlignment(val: "left" | "right" | "auto");
|
9005
9054
|
/**
|
@@ -13920,6 +13969,7 @@ declare module "packages/survey-core/src/question_matrixdropdownbase" {
|
|
13920
13969
|
validateCell(row: MatrixDropdownRowModelBase, columnName: string, rowValue: any): SurveyError;
|
13921
13970
|
columns: Array<MatrixDropdownColumn>;
|
13922
13971
|
createQuestion(row: MatrixDropdownRowModelBase, column: MatrixDropdownColumn): Question;
|
13972
|
+
choices: Array<ItemValue>;
|
13923
13973
|
getLocale(): string;
|
13924
13974
|
getMarkdownHtml(text: string, name: string): string;
|
13925
13975
|
getRenderer(name: string): string;
|
@@ -14013,6 +14063,7 @@ declare module "packages/survey-core/src/question_matrixdropdownbase" {
|
|
14013
14063
|
getEditingSurveyElement(): Base;
|
14014
14064
|
private setValueCore;
|
14015
14065
|
private updateQuestionsValue;
|
14066
|
+
private updateSharedQuestionsValue;
|
14016
14067
|
runTriggers(name: string, value: any): void;
|
14017
14068
|
private hasQuestonError;
|
14018
14069
|
get isEmpty(): boolean;
|
@@ -14023,6 +14074,7 @@ declare module "packages/survey-core/src/question_matrixdropdownbase" {
|
|
14023
14074
|
get questions(): Array<Question>;
|
14024
14075
|
getQuestionByName(name: string): Question;
|
14025
14076
|
getQuestionsByName(name: string): Array<Question>;
|
14077
|
+
getQuestionsByValueName(name: string): Array<Question>;
|
14026
14078
|
protected getSharedQuestionByName(columnName: string): Question;
|
14027
14079
|
clearIncorrectValues(val: any): void;
|
14028
14080
|
getLocale(): string;
|
@@ -26969,6 +27021,7 @@ declare module "packages/survey-react-ui/src/reactquestion" {
|
|
26969
27021
|
constructor(props: any);
|
26970
27022
|
private get question();
|
26971
27023
|
private update;
|
27024
|
+
protected getQuestionPropertiesToTrack(): string[];
|
26972
27025
|
private registerCallback;
|
26973
27026
|
private unRegisterCallback;
|
26974
27027
|
componentDidUpdate(prevProps: Readonly<any>): void;
|
@@ -27762,6 +27815,7 @@ declare module "packages/survey-react-ui/src/reactquestion_matrixdropdownbase" {
|
|
27762
27815
|
protected getShowErrors(): boolean;
|
27763
27816
|
protected getCellStyle(): any;
|
27764
27817
|
protected getHeaderText(): string;
|
27818
|
+
protected renderElement(): JSX.Element | null;
|
27765
27819
|
protected renderCellContent(): JSX.Element;
|
27766
27820
|
protected renderQuestion(): JSX.Element;
|
27767
27821
|
private renderOtherComment;
|