survey-react 1.12.7 → 1.12.8
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 +22 -3
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +17 -1
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +17 -1
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +225 -46
- package/survey.react.js +772 -338
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/survey.react.d.ts
CHANGED
@@ -108,6 +108,7 @@ declare module "packages/survey-core/src/localization/english" {
|
|
108
108
|
numericError: string;
|
109
109
|
minError: string;
|
110
110
|
maxError: string;
|
111
|
+
textNoDigitsAllow: string;
|
111
112
|
textMinLength: string;
|
112
113
|
textMaxLength: string;
|
113
114
|
textMinMaxLength: string;
|
@@ -245,6 +246,7 @@ declare module "packages/survey-core/src/surveyStrings" {
|
|
245
246
|
numericError: string;
|
246
247
|
minError: string;
|
247
248
|
maxError: string;
|
249
|
+
textNoDigitsAllow: string;
|
248
250
|
textMinLength: string;
|
249
251
|
textMaxLength: string;
|
250
252
|
textMinMaxLength: string;
|
@@ -327,6 +329,8 @@ declare module "packages/survey-core/src/conditionProcessValue" {
|
|
327
329
|
export class ProcessValue {
|
328
330
|
values: HashTable<any>;
|
329
331
|
properties: HashTable<any>;
|
332
|
+
asyncValues: HashTable<any>;
|
333
|
+
onCompleteAsyncFunc: (op: any) => void;
|
330
334
|
constructor();
|
331
335
|
getFirstName(text: string, obj?: any): string;
|
332
336
|
hasValue(text: string, values?: HashTable<any>): boolean;
|
@@ -380,6 +384,9 @@ declare module "packages/survey-core/src/expressions/expressions" {
|
|
380
384
|
children?: Array<AsyncFunctionItem>;
|
381
385
|
}
|
382
386
|
export abstract class Operand {
|
387
|
+
private static counter;
|
388
|
+
private _id;
|
389
|
+
get id(): number;
|
383
390
|
toString(func?: (op: Operand) => string): string;
|
384
391
|
abstract getType(): string;
|
385
392
|
abstract evaluate(processValue?: ProcessValue): any;
|
@@ -476,17 +483,14 @@ declare module "packages/survey-core/src/expressions/expressions" {
|
|
476
483
|
export class FunctionOperand extends Operand {
|
477
484
|
private originalValue;
|
478
485
|
private parameters;
|
479
|
-
private isReadyValue;
|
480
|
-
private asynResult;
|
481
|
-
onAsyncReady: () => void;
|
482
486
|
constructor(originalValue: string, parameters: ArrayOperand);
|
483
487
|
getType(): string;
|
484
|
-
evaluateAsync(processValue: ProcessValue): void;
|
485
488
|
evaluate(processValue?: ProcessValue): any;
|
486
489
|
private evaluateCore;
|
487
490
|
toString(func?: (op: Operand) => string): string;
|
488
491
|
setVariables(variables: Array<string>): void;
|
489
|
-
|
492
|
+
isReady(proccessValue: ProcessValue): boolean;
|
493
|
+
private getAsynValue;
|
490
494
|
hasFunction(): boolean;
|
491
495
|
hasAsyncFunction(): boolean;
|
492
496
|
private isAsyncFunction;
|
@@ -582,6 +586,7 @@ declare module "packages/survey-core/src/conditionsParser" {
|
|
582
586
|
}
|
583
587
|
declare module "packages/survey-core/src/conditions" {
|
584
588
|
import { HashTable } from "packages/survey-core/src/helpers";
|
589
|
+
import { Operand } from "packages/survey-core/src/expressions/expressions";
|
585
590
|
/**
|
586
591
|
* Base interface for expression execution
|
587
592
|
*/
|
@@ -589,7 +594,7 @@ declare module "packages/survey-core/src/conditions" {
|
|
589
594
|
/**
|
590
595
|
* This call back runs on executing expression if there is at least one async function
|
591
596
|
*/
|
592
|
-
onComplete: (res: any) => void;
|
597
|
+
onComplete: (res: any, id: number) => void;
|
593
598
|
/**
|
594
599
|
* The expression as string, property with get
|
595
600
|
*/
|
@@ -604,7 +609,7 @@ declare module "packages/survey-core/src/conditions" {
|
|
604
609
|
* @param values has with values names and their results. Normally it is question names and their values
|
605
610
|
* @param properties the list of properties that are available in functions. Commonly it is survey and question, if expression execuited in a question context
|
606
611
|
*/
|
607
|
-
run(values: HashTable<any>, properties: HashTable<any
|
612
|
+
run(values: HashTable<any>, properties: HashTable<any>, id: number): any;
|
608
613
|
/**
|
609
614
|
* Returns the list of variables that used in the expression. They defined as: {variableName} in default parser.
|
610
615
|
*/
|
@@ -618,16 +623,30 @@ declare module "packages/survey-core/src/conditions" {
|
|
618
623
|
*/
|
619
624
|
isAsync: boolean;
|
620
625
|
}
|
626
|
+
export class ExpressionExecutorRunner {
|
627
|
+
private operand;
|
628
|
+
private id;
|
629
|
+
private onComplete;
|
630
|
+
private processValue;
|
631
|
+
private asyncFuncList;
|
632
|
+
constructor(operand: Operand, id: number, onComplete: (res: any, id: number) => void, values: HashTable<any>, properties: HashTable<any>);
|
633
|
+
run(isAsync: boolean): any;
|
634
|
+
private getAsyncItemByOperand;
|
635
|
+
private runAsyncItem;
|
636
|
+
private runAsyncItemCore;
|
637
|
+
private doAsyncFunctionReady;
|
638
|
+
private isAsyncFuncReady;
|
639
|
+
private isAsyncChildrenReady;
|
640
|
+
private runValues;
|
641
|
+
}
|
621
642
|
export class ExpressionExecutor implements IExpresionExecutor {
|
622
643
|
static createExpressionExecutor: (expression: string) => IExpresionExecutor;
|
623
|
-
onComplete: (res: any) => void;
|
644
|
+
onComplete: (res: any, id: number) => void;
|
624
645
|
private expressionValue;
|
625
646
|
private operand;
|
626
|
-
private processValue;
|
627
647
|
private parser;
|
628
648
|
private isAsyncValue;
|
629
649
|
private hasFunctionValue;
|
630
|
-
private asyncFuncList;
|
631
650
|
constructor(expression: string);
|
632
651
|
get expression(): string;
|
633
652
|
private setExpression;
|
@@ -635,24 +654,16 @@ declare module "packages/survey-core/src/conditions" {
|
|
635
654
|
hasFunction(): boolean;
|
636
655
|
get isAsync(): boolean;
|
637
656
|
canRun(): boolean;
|
638
|
-
run(values: HashTable<any>, properties
|
639
|
-
private runAsyncItem;
|
640
|
-
private runAsyncItemCore;
|
641
|
-
private doAsyncFunctionReady;
|
642
|
-
private isAsyncFuncReady;
|
643
|
-
private isAsyncChildrenReady;
|
644
|
-
private runValues;
|
657
|
+
run(values: HashTable<any>, properties: HashTable<any>, id: number): any;
|
645
658
|
}
|
646
659
|
export class ExpressionRunnerBase {
|
647
660
|
private expressionExecutor;
|
648
661
|
private variables;
|
649
662
|
private containsFunc;
|
650
|
-
private static
|
651
|
-
private _id;
|
663
|
+
private static IdRunnerCounter;
|
652
664
|
onBeforeAsyncRun: (id: number) => void;
|
653
665
|
onAfterAsyncRun: (id: number) => void;
|
654
666
|
constructor(expression: string);
|
655
|
-
get id(): number;
|
656
667
|
get expression(): string;
|
657
668
|
set expression(value: string);
|
658
669
|
getVariables(): Array<string>;
|
@@ -660,17 +671,17 @@ declare module "packages/survey-core/src/conditions" {
|
|
660
671
|
get isAsync(): boolean;
|
661
672
|
canRun(): boolean;
|
662
673
|
protected runCore(values: HashTable<any>, properties?: HashTable<any>): any;
|
663
|
-
protected doOnComplete(res: any): void;
|
674
|
+
protected doOnComplete(res: any, id: number): void;
|
664
675
|
}
|
665
676
|
export class ConditionRunner extends ExpressionRunnerBase {
|
666
677
|
onRunComplete: (result: boolean) => void;
|
667
678
|
run(values: HashTable<any>, properties?: HashTable<any>): boolean;
|
668
|
-
protected doOnComplete(res: any): void;
|
679
|
+
protected doOnComplete(res: any, id: number): void;
|
669
680
|
}
|
670
681
|
export class ExpressionRunner extends ExpressionRunnerBase {
|
671
682
|
onRunComplete: (result: any) => void;
|
672
683
|
run(values: HashTable<any>, properties?: HashTable<any>): any;
|
673
|
-
protected doOnComplete(res: any): void;
|
684
|
+
protected doOnComplete(res: any, id: number): void;
|
674
685
|
}
|
675
686
|
}
|
676
687
|
declare module "packages/survey-core/src/utils/cssClassBuilder" {
|
@@ -2129,6 +2140,7 @@ declare module "packages/survey-core/src/defaultCss/defaultV2Css" {
|
|
2129
2140
|
emptyRowsSection: string;
|
2130
2141
|
iconDrag: string;
|
2131
2142
|
ghostRow: string;
|
2143
|
+
draggedRow: string;
|
2132
2144
|
emptyCell: string;
|
2133
2145
|
verticalCell: string;
|
2134
2146
|
cellQuestionWrapper: string;
|
@@ -3958,6 +3970,10 @@ declare module "packages/survey-core/src/question_file" {
|
|
3958
3970
|
protected uploadFiles(files: File[]): void;
|
3959
3971
|
protected loadPreview(newValue: any): void;
|
3960
3972
|
protected onChangeQuestionValue(newValue: any): void;
|
3973
|
+
protected getIsQuestionReady(): boolean;
|
3974
|
+
private isFileLoadingValue;
|
3975
|
+
protected get isFileLoading(): boolean;
|
3976
|
+
protected set isFileLoading(val: boolean);
|
3961
3977
|
}
|
3962
3978
|
export class QuestionFilePage extends Base {
|
3963
3979
|
private question;
|
@@ -4008,9 +4024,6 @@ declare module "packages/survey-core/src/question_file" {
|
|
4008
4024
|
cleanAction: Action;
|
4009
4025
|
actionsContainer: ActionContainer;
|
4010
4026
|
get supportFileNavigator(): boolean;
|
4011
|
-
private isFileLoadingValue;
|
4012
|
-
protected get isFileLoading(): boolean;
|
4013
|
-
protected set isFileLoading(val: boolean);
|
4014
4027
|
get fileNavigatorVisible(): boolean;
|
4015
4028
|
private get pagesCount();
|
4016
4029
|
get actionsContainerVisible(): boolean;
|
@@ -4037,6 +4050,7 @@ declare module "packages/survey-core/src/question_file" {
|
|
4037
4050
|
private prevPreviewLength;
|
4038
4051
|
private previewValueChanged;
|
4039
4052
|
getType(): string;
|
4053
|
+
protected onChangeQuestionValue(newValue: any): void;
|
4040
4054
|
/**
|
4041
4055
|
* Disable this property only to implement a custom preview.
|
4042
4056
|
*
|
@@ -4155,7 +4169,6 @@ declare module "packages/survey-core/src/question_file" {
|
|
4155
4169
|
protected get camera(): Camera;
|
4156
4170
|
canPreviewImage(fileItem: any): boolean;
|
4157
4171
|
protected loadPreview(newValue: any): void;
|
4158
|
-
protected getIsQuestionReady(): boolean;
|
4159
4172
|
private allFilesOk;
|
4160
4173
|
private isFileImage;
|
4161
4174
|
getPlainData(options?: IPlainDataOptions): IQuestionPlainData;
|
@@ -5801,6 +5814,7 @@ declare module "packages/survey-core/src/dragdrop/matrix-rows" {
|
|
5801
5814
|
protected get draggedElementType(): string;
|
5802
5815
|
protected restoreUserSelectValue: string;
|
5803
5816
|
protected onStartDrag(): void;
|
5817
|
+
private get shortcutClass();
|
5804
5818
|
protected createDraggedElementShortcut(text: string, draggedElementNode: HTMLElement, event: PointerEvent): HTMLElement;
|
5805
5819
|
private fromIndex;
|
5806
5820
|
private toIndex;
|
@@ -5896,6 +5910,7 @@ declare module "packages/survey-core/src/question_matrixdropdownrendered" {
|
|
5896
5910
|
private rootElement;
|
5897
5911
|
setRootElement(val: HTMLTableRowElement): void;
|
5898
5912
|
getRootElement(): HTMLTableRowElement;
|
5913
|
+
focusCell(cellIndex: number): void;
|
5899
5914
|
}
|
5900
5915
|
export class QuestionMatrixDropdownRenderedErrorRow extends QuestionMatrixDropdownRenderedRow {
|
5901
5916
|
isErrorsRow: boolean;
|
@@ -5941,6 +5956,7 @@ declare module "packages/survey-core/src/question_matrixdropdownrendered" {
|
|
5941
5956
|
private getRenderedDataRowCount;
|
5942
5957
|
onRemovedRow(row: MatrixDropdownRowModelBase): void;
|
5943
5958
|
onDetailPanelChangeVisibility(row: MatrixDropdownRowModelBase, isShowing: boolean): void;
|
5959
|
+
focusActionCell(row: MatrixDropdownRowModelBase, actionCellIndex: number): void;
|
5944
5960
|
private getRenderedRowIndex;
|
5945
5961
|
protected buildRowsActions(): void;
|
5946
5962
|
protected createRenderedRow(cssClasses: any, isDetailRow?: boolean): QuestionMatrixDropdownRenderedRow;
|
@@ -5979,7 +5995,7 @@ declare module "packages/survey-core/src/question_matrixdropdownrendered" {
|
|
5979
5995
|
private setHeaderCellCssClasses;
|
5980
5996
|
private createHeaderCell;
|
5981
5997
|
private setHeaderCell;
|
5982
|
-
private
|
5998
|
+
private setCellWidth;
|
5983
5999
|
private createTextCell;
|
5984
6000
|
private createEmptyCell;
|
5985
6001
|
}
|
@@ -6192,6 +6208,8 @@ declare module "packages/survey-core/src/question_matrixdynamic" {
|
|
6192
6208
|
protected isValueSurveyElement(val: any): boolean;
|
6193
6209
|
private addRowCore;
|
6194
6210
|
private getDefaultRowValue;
|
6211
|
+
focusAddBUtton(): void;
|
6212
|
+
getActionCellIndex(row: MatrixDropdownRowModelBase): number;
|
6195
6213
|
removeRowUI(value: any): void;
|
6196
6214
|
isRequireConfirmOnRowDelete(index: number): boolean;
|
6197
6215
|
/**
|
@@ -6199,7 +6217,7 @@ declare module "packages/survey-core/src/question_matrixdynamic" {
|
|
6199
6217
|
* @param index A zero-based row index.
|
6200
6218
|
* @param confirmDelete *(Optional)* A Boolean value that specifies whether to display a confirmation dialog. If you do not specify this parameter, the [`confirmDelete`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-matrix-table-question-model#confirmDelete) property value is used.
|
6201
6219
|
*/
|
6202
|
-
removeRow(index: number, confirmDelete?: boolean): void;
|
6220
|
+
removeRow(index: number, confirmDelete?: boolean, onRowRemoved?: () => void): void;
|
6203
6221
|
private removeRowAsync;
|
6204
6222
|
private removeRowCore;
|
6205
6223
|
/**
|
@@ -7217,12 +7235,14 @@ declare module "packages/survey-core/src/question_signaturepad" {
|
|
7217
7235
|
valueWasChangedFromLastUpload: boolean;
|
7218
7236
|
private resizeCanvas;
|
7219
7237
|
private scaleCanvas;
|
7220
|
-
private fromDataUrl;
|
7221
7238
|
private fromUrl;
|
7222
|
-
private
|
7223
|
-
private
|
7239
|
+
private fromDataUrl;
|
7240
|
+
private _loadedData;
|
7241
|
+
get loadedData(): string;
|
7224
7242
|
protected loadPreview(newValue: any): void;
|
7243
|
+
protected onChangeQuestionValue(newValue: any): void;
|
7225
7244
|
onSurveyLoad(): void;
|
7245
|
+
private updateValueHandler;
|
7226
7246
|
initSignaturePad(el: HTMLElement): void;
|
7227
7247
|
destroySignaturePad(el: HTMLElement): void;
|
7228
7248
|
/**
|
@@ -7738,10 +7758,22 @@ declare module "packages/survey-core/src/survey-events-api" {
|
|
7738
7758
|
}
|
7739
7759
|
export interface GetQuestionNoEvent extends QuestionEventMixin {
|
7740
7760
|
/**
|
7741
|
-
*
|
7761
|
+
* Obsolete. Use `options.number` instead.
|
7742
7762
|
*/
|
7743
7763
|
no: string;
|
7744
7764
|
}
|
7765
|
+
export interface GetQuestionNumberEvent extends GetQuestionNoEvent {
|
7766
|
+
/**
|
7767
|
+
* A question number that is calculated based upon the question's [`visibleIndex`](https://surveyjs.io/form-library/documentation/api-reference/question#visibleIndex) and survey's [`questionStartIndex`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#questionStartIndex) properties. You can change this parameter's value.
|
7768
|
+
*/
|
7769
|
+
number: string;
|
7770
|
+
}
|
7771
|
+
export interface GetPageNumberEvent extends PageEventMixin {
|
7772
|
+
/**
|
7773
|
+
* A page number. Note that this is a string value that contains not only the number itself but also the characters that separate the number from the page title: `"1. "`, `"2. "`, etc. You can change this parameter's value.
|
7774
|
+
*/
|
7775
|
+
number: string;
|
7776
|
+
}
|
7745
7777
|
export interface ProgressTextEvent {
|
7746
7778
|
/**
|
7747
7779
|
* The number of questions with input fields. [Image](https://surveyjs.io/form-library/examples/add-image-and-video-to-survey/), [HTML](https://surveyjs.io/form-library/examples/questiontype-html/), and [Expression](https://surveyjs.io/form-library/examples/questiontype-expression/) questions are not counted.
|
@@ -9641,7 +9673,7 @@ declare module "packages/survey-core/src/survey" {
|
|
9641
9673
|
import { ActionContainer } from "packages/survey-core/src/actions/container";
|
9642
9674
|
import { QuestionPanelDynamicModel } from "packages/survey-core/src/question_paneldynamic";
|
9643
9675
|
import { Notifier } from "packages/survey-core/src/notifier";
|
9644
|
-
import { TriggerExecutedEvent, CompletingEvent, CompleteEvent, ShowingPreviewEvent, NavigateToUrlEvent, CurrentPageChangingEvent, CurrentPageChangedEvent, ValueChangingEvent, ValueChangedEvent, VariableChangedEvent, QuestionVisibleChangedEvent, PageVisibleChangedEvent, PanelVisibleChangedEvent, QuestionCreatedEvent, QuestionAddedEvent, QuestionRemovedEvent, PanelAddedEvent, PanelRemovedEvent, PageAddedEvent, ValidateQuestionEvent, SettingQuestionErrorsEvent, ValidatePanelEvent, ErrorCustomTextEvent, ValidatedErrorsOnCurrentPageEvent, ProcessHtmlEvent, GetQuestionTitleEvent, GetTitleTagNameEvent,
|
9676
|
+
import { TriggerExecutedEvent, CompletingEvent, CompleteEvent, ShowingPreviewEvent, NavigateToUrlEvent, CurrentPageChangingEvent, CurrentPageChangedEvent, ValueChangingEvent, ValueChangedEvent, VariableChangedEvent, QuestionVisibleChangedEvent, PageVisibleChangedEvent, PanelVisibleChangedEvent, QuestionCreatedEvent, QuestionAddedEvent, QuestionRemovedEvent, PanelAddedEvent, PanelRemovedEvent, PageAddedEvent, ValidateQuestionEvent, SettingQuestionErrorsEvent, ValidatePanelEvent, ErrorCustomTextEvent, ValidatedErrorsOnCurrentPageEvent, ProcessHtmlEvent, GetQuestionTitleEvent, GetTitleTagNameEvent, GetQuestionNumberEvent, GetPageNumberEvent, ProgressTextEvent, TextMarkdownEvent, SendResultEvent, GetResultEvent, UploadFilesEvent, DownloadFileEvent, ClearFilesEvent, LoadChoicesFromServerEvent, ProcessTextValueEvent, UpdateQuestionCssClassesEvent, UpdatePanelCssClassesEvent, UpdatePageCssClassesEvent, UpdateChoiceItemCssEvent, AfterRenderSurveyEvent, AfterRenderPageEvent, AfterRenderQuestionEvent, AfterRenderQuestionInputEvent, AfterRenderPanelEvent, FocusInQuestionEvent, FocusInPanelEvent, ShowingChoiceItemEvent, ChoicesLazyLoadEvent, GetChoiceDisplayValueEvent, MatrixRowAddedEvent, MatrixBeforeRowAddedEvent, MatrixRowRemovingEvent, MatrixRowRemovedEvent, MatrixAllowRemoveRowEvent, MatrixDetailPanelVisibleChangedEvent, MatrixCellCreatingEvent, MatrixCellCreatedEvent, MatrixAfterCellRenderEvent, MatrixCellValueChangedEvent, MatrixCellValueChangingEvent, MatrixCellValidateEvent, DynamicPanelModifiedEvent, DynamicPanelRemovingEvent, DynamicPanelItemValueChangedEvent, DynamicPanelGetTabTitleEvent, DynamicPanelCurrentIndexChangedEvent, IsAnswerCorrectEvent, DragDropAllowEvent, ScrollingElementToTopEvent, GetQuestionTitleActionsEvent, GetPanelTitleActionsEvent, GetPageTitleActionsEvent, GetPanelFooterActionsEvent, GetMatrixRowActionsEvent, ElementContentVisibilityChangedEvent, GetExpressionDisplayValueEvent, ServerValidateQuestionsEvent, MultipleTextItemAddedEvent, MatrixColumnAddedEvent, GetQuestionDisplayValueEvent, PopupVisibleChangedEvent, ChoicesSearchEvent, OpenFileChooserEvent, OpenDropdownMenuEvent, ResizeEvent } from "packages/survey-core/src/survey-events-api";
|
9645
9677
|
import { QuestionMatrixDropdownModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
|
9646
9678
|
import { QuestionMatrixDynamicModel } from "packages/survey-core/src/question_matrixdynamic";
|
9647
9679
|
import { QuestionFileModel } from "packages/survey-core/src/question_file";
|
@@ -9931,7 +9963,7 @@ declare module "packages/survey-core/src/survey" {
|
|
9931
9963
|
*
|
9932
9964
|
* For information on event handler parameters, refer to descriptions within the interface.
|
9933
9965
|
*
|
9934
|
-
* If you want to modify question numbers, handle the [`
|
9966
|
+
* If you want to modify question numbers, handle the [`onGetQuestionNumber`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#onGetQuestionNumber) event.
|
9935
9967
|
* @see requiredText
|
9936
9968
|
*/
|
9937
9969
|
onGetQuestionTitle: EventBase<SurveyModel, GetQuestionTitleEvent>;
|
@@ -9944,7 +9976,7 @@ declare module "packages/survey-core/src/survey" {
|
|
9944
9976
|
*
|
9945
9977
|
* [View Demo](https://surveyjs.io/form-library/examples/survey-titletagnames/ (linkStyle))
|
9946
9978
|
* @see onGetQuestionTitle
|
9947
|
-
* @see
|
9979
|
+
* @see onGetQuestionNumber
|
9948
9980
|
*/
|
9949
9981
|
onGetTitleTagName: EventBase<SurveyModel, GetTitleTagNameEvent>;
|
9950
9982
|
/**
|
@@ -9956,7 +9988,21 @@ declare module "packages/survey-core/src/survey" {
|
|
9956
9988
|
* @see onGetQuestionTitle
|
9957
9989
|
* @see questionStartIndex
|
9958
9990
|
*/
|
9959
|
-
|
9991
|
+
onGetQuestionNumber: EventBase<SurveyModel, GetQuestionNumberEvent>;
|
9992
|
+
/**
|
9993
|
+
* This event is obsolete. Use the [`onGetQuestionNumber`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#onGetQuestionNumber) event instead.
|
9994
|
+
*/
|
9995
|
+
onGetQuestionNo: EventBase<SurveyModel, GetQuestionNumberEvent>;
|
9996
|
+
/**
|
9997
|
+
* An event that is raised before the survey calculates a page number. Handle this event to modify page numbers.
|
9998
|
+
*
|
9999
|
+
* This event is raised only if the [`showPageNumbers`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#showPageNumbers) property is enabled.
|
10000
|
+
*
|
10001
|
+
* For information on event handler parameters, refer to descriptions within the interface.
|
10002
|
+
* @see onGetQuestionTitle
|
10003
|
+
* @see questionStartIndex
|
10004
|
+
*/
|
10005
|
+
onGetPageNumber: EventBase<SurveyModel, GetPageNumberEvent>;
|
9960
10006
|
/**
|
9961
10007
|
* An event that is raised before the survey displays progress text. Handle this event to change the progress text in code.
|
9962
10008
|
* @see showProgressBar
|
@@ -11091,10 +11137,12 @@ declare module "packages/survey-core/src/survey" {
|
|
11091
11137
|
get locQuestionTitleTemplate(): LocalizableString;
|
11092
11138
|
getUpdatedQuestionTitle(question: Question, title: string): string;
|
11093
11139
|
getUpdatedQuestionNo(question: Question, no: string): string;
|
11140
|
+
getUpdatedPageNo(page: PageModel, no: string): string;
|
11094
11141
|
/**
|
11095
11142
|
* Specifies whether page titles contain page numbers.
|
11096
11143
|
*
|
11097
11144
|
* [View Demo](https://surveyjs.io/form-library/examples/how-to-number-pages-and-questions/ (linkStyle))
|
11145
|
+
* @see onGetPageNumber
|
11098
11146
|
*/
|
11099
11147
|
get showPageNumbers(): boolean;
|
11100
11148
|
set showPageNumbers(value: boolean);
|
@@ -11110,6 +11158,7 @@ declare module "packages/survey-core/src/survey" {
|
|
11110
11158
|
* [View Demo](https://surveyjs.io/form-library/examples/how-to-number-pages-and-questions/ (linkStyle))
|
11111
11159
|
*
|
11112
11160
|
* If you want to hide the number of an individual question, enable its [`hideNumber`](https://surveyjs.io/form-library/documentation/api-reference/question#hideNumber) property.
|
11161
|
+
* @see onGetQuestionNumber
|
11113
11162
|
*/
|
11114
11163
|
get showQuestionNumbers(): string | boolean;
|
11115
11164
|
set showQuestionNumbers(value: string | boolean);
|
@@ -14054,6 +14103,7 @@ declare module "packages/survey-core/src/itemvalue" {
|
|
14054
14103
|
set locOwner(value: ILocalizableOwner);
|
14055
14104
|
get value(): any;
|
14056
14105
|
set value(newValue: any);
|
14106
|
+
private setValue;
|
14057
14107
|
get hasText(): boolean;
|
14058
14108
|
get pureText(): string;
|
14059
14109
|
set pureText(val: string);
|
@@ -14064,7 +14114,7 @@ declare module "packages/survey-core/src/itemvalue" {
|
|
14064
14114
|
private canSerializeValue;
|
14065
14115
|
getData(): any;
|
14066
14116
|
toJSON(): any;
|
14067
|
-
setData(value: any): void;
|
14117
|
+
setData(value: any, isNewItem?: boolean): void;
|
14068
14118
|
get visibleIf(): string;
|
14069
14119
|
set visibleIf(val: string);
|
14070
14120
|
get enableIf(): string;
|
@@ -14795,6 +14845,11 @@ declare module "packages/survey-core/src/question_matrixdropdownbase" {
|
|
14795
14845
|
get showHorizontalScroll(): boolean;
|
14796
14846
|
protected onMobileChanged(): void;
|
14797
14847
|
getRootCss(): string;
|
14848
|
+
afterRenderQuestionElement(el: HTMLElement): void;
|
14849
|
+
beforeDestroyQuestionElement(el: HTMLElement): void;
|
14850
|
+
private rootElement;
|
14851
|
+
setRootElement(val: HTMLElement): void;
|
14852
|
+
getRootElement(): HTMLElement;
|
14798
14853
|
}
|
14799
14854
|
}
|
14800
14855
|
declare module "packages/survey-core/src/base-interfaces" {
|
@@ -14902,6 +14957,7 @@ declare module "packages/survey-core/src/base-interfaces" {
|
|
14902
14957
|
questionTitlePattern: string;
|
14903
14958
|
getUpdatedQuestionTitle(question: IQuestion, title: string): string;
|
14904
14959
|
getUpdatedQuestionNo(question: IQuestion, no: string): string;
|
14960
|
+
getUpdatedPageNo(question: IPage, no: string): string;
|
14905
14961
|
getUpdatedElementTitleActions(element: ISurveyElement, titleActions: Array<IAction>): Array<IAction>;
|
14906
14962
|
getUpdatedMatrixRowActions(question: QuestionMatrixDropdownModelBase, row: MatrixDropdownRowModelBase, actions: Array<IAction>): Array<IAction>;
|
14907
14963
|
getUpdatedPanelFooterActions(panel: PanelModel, actions: Array<IAction>, question?: QuestionPanelDynamicModel): Array<IAction>;
|
@@ -15306,7 +15362,7 @@ declare module "packages/survey-core/src/jsonobject" {
|
|
15306
15362
|
set defaultValue(newValue: any);
|
15307
15363
|
isDefaultValue(value: any): boolean;
|
15308
15364
|
isDefaultValueByObj(obj: Base, value: any): boolean;
|
15309
|
-
getSerializableValue(obj: any): any;
|
15365
|
+
getSerializableValue(obj: any, storeDefaults?: boolean): any;
|
15310
15366
|
getValue(obj: any): any;
|
15311
15367
|
getPropertyValue(obj: any): any;
|
15312
15368
|
get hasToUseSetValue(): string | ((obj: any, value: any, jsonConv: JsonObject) => any);
|
@@ -15575,7 +15631,7 @@ declare module "packages/survey-core/src/localizablestring" {
|
|
15575
15631
|
searchIndex: number;
|
15576
15632
|
disableLocalization: boolean;
|
15577
15633
|
defaultValue: string;
|
15578
|
-
constructor(owner: ILocalizableOwner, useMarkdown?: boolean, name?: string);
|
15634
|
+
constructor(owner: ILocalizableOwner, useMarkdown?: boolean, name?: string, locName?: string);
|
15579
15635
|
getIsMultiple(): boolean;
|
15580
15636
|
get locale(): string;
|
15581
15637
|
strChanged(): void;
|
@@ -15605,7 +15661,7 @@ declare module "packages/survey-core/src/localizablestring" {
|
|
15605
15661
|
hasNonDefaultText(): boolean;
|
15606
15662
|
getLocales(): Array<string>;
|
15607
15663
|
getJson(): any;
|
15608
|
-
setJson(value: any): void;
|
15664
|
+
setJson(value: any, isLoading?: boolean): void;
|
15609
15665
|
get renderAs(): string;
|
15610
15666
|
get renderAsData(): any;
|
15611
15667
|
equals(obj: any): boolean;
|
@@ -15674,7 +15730,7 @@ declare module "packages/survey-core/src/base" {
|
|
15674
15730
|
getValueNameByPropertyName(propertyName: string): string;
|
15675
15731
|
getPropertiesByValueName(valueName: string): Array<string>;
|
15676
15732
|
getJson(): any;
|
15677
|
-
setJson(value: any): void;
|
15733
|
+
setJson(value: any, isLoading?: boolean): void;
|
15678
15734
|
private fillProperties;
|
15679
15735
|
private onChangedJSON;
|
15680
15736
|
}
|
@@ -17166,7 +17222,7 @@ declare module "packages/survey-core/src/question_matrix" {
|
|
17166
17222
|
get columns(): Array<any>;
|
17167
17223
|
private getCellRowColumnValue;
|
17168
17224
|
getJson(): any;
|
17169
|
-
setJson(value: any): void;
|
17225
|
+
setJson(value: any, isLoading?: boolean): void;
|
17170
17226
|
locStrsChanged(): void;
|
17171
17227
|
private runFuncOnLocs;
|
17172
17228
|
protected createString(): LocalizableString;
|
@@ -17441,6 +17497,7 @@ declare module "packages/survey-core/src/question_checkbox" {
|
|
17441
17497
|
selectAll(): void;
|
17442
17498
|
clickItemHandler(item: ItemValue, checked?: boolean): void;
|
17443
17499
|
protected isItemSelectedCore(item: ItemValue): boolean;
|
17500
|
+
protected convertFuncValuetoQuestionValue(val: any): any;
|
17444
17501
|
private getRealValue;
|
17445
17502
|
get isValueArray(): boolean;
|
17446
17503
|
/**
|
@@ -19619,6 +19676,7 @@ declare module "src/defaultCss/cssstandard" {
|
|
19619
19676
|
emptyRowsText: string;
|
19620
19677
|
emptyRowsButton: string;
|
19621
19678
|
ghostRow: string;
|
19679
|
+
draggedRow: string;
|
19622
19680
|
};
|
19623
19681
|
paneldynamic: {
|
19624
19682
|
root: string;
|
@@ -20152,6 +20210,7 @@ declare module "src/defaultCss/cssmodern" {
|
|
20152
20210
|
emptyRowsText: string;
|
20153
20211
|
emptyRowsButton: string;
|
20154
20212
|
ghostRow: string;
|
20213
|
+
draggedRow: string;
|
20155
20214
|
};
|
20156
20215
|
rating: {
|
20157
20216
|
root: string;
|
@@ -20518,6 +20577,7 @@ declare module "src/plugins/themes/bootstrap-integration/cssbootstrap" {
|
|
20518
20577
|
emptyRowsText: string;
|
20519
20578
|
emptyRowsButton: string;
|
20520
20579
|
ghostRow: string;
|
20580
|
+
draggedRow: string;
|
20521
20581
|
};
|
20522
20582
|
paneldynamic: {
|
20523
20583
|
root: string;
|
@@ -20882,6 +20942,7 @@ declare module "src/plugins/themes/bootstrap-material-integration/cssbootstrapma
|
|
20882
20942
|
emptyRowsText: string;
|
20883
20943
|
emptyRowsButton: string;
|
20884
20944
|
ghostRow: string;
|
20945
|
+
draggedRow: string;
|
20885
20946
|
};
|
20886
20947
|
paneldynamic: {
|
20887
20948
|
root: string;
|
@@ -21351,6 +21412,7 @@ declare module "src/entries/plugins" {
|
|
21351
21412
|
emptyRowsText: string;
|
21352
21413
|
emptyRowsButton: string;
|
21353
21414
|
ghostRow: string;
|
21415
|
+
draggedRow: string;
|
21354
21416
|
};
|
21355
21417
|
paneldynamic: {
|
21356
21418
|
root: string;
|
@@ -21713,6 +21775,7 @@ declare module "src/entries/plugins" {
|
|
21713
21775
|
emptyRowsText: string;
|
21714
21776
|
emptyRowsButton: string;
|
21715
21777
|
ghostRow: string;
|
21778
|
+
draggedRow: string;
|
21716
21779
|
};
|
21717
21780
|
paneldynamic: {
|
21718
21781
|
root: string;
|
@@ -21847,6 +21910,7 @@ declare module "packages/survey-core/src/localization/arabic" {
|
|
21847
21910
|
refuseItemText: string;
|
21848
21911
|
dontKnowItemText: string;
|
21849
21912
|
selectAllItemText: string;
|
21913
|
+
deselectAllItemText: string;
|
21850
21914
|
progressText: string;
|
21851
21915
|
indexText: string;
|
21852
21916
|
panelDynamicProgressText: string;
|
@@ -21866,6 +21930,7 @@ declare module "packages/survey-core/src/localization/arabic" {
|
|
21866
21930
|
numericError: string;
|
21867
21931
|
minError: string;
|
21868
21932
|
maxError: string;
|
21933
|
+
textNoDigitsAllow: string;
|
21869
21934
|
textMinLength: string;
|
21870
21935
|
textMaxLength: string;
|
21871
21936
|
textMinMaxLength: string;
|
@@ -21956,6 +22021,7 @@ declare module "packages/survey-core/src/localization/basque" {
|
|
21956
22021
|
refuseItemText: string;
|
21957
22022
|
dontKnowItemText: string;
|
21958
22023
|
selectAllItemText: string;
|
22024
|
+
deselectAllItemText: string;
|
21959
22025
|
progressText: string;
|
21960
22026
|
indexText: string;
|
21961
22027
|
panelDynamicProgressText: string;
|
@@ -21975,6 +22041,7 @@ declare module "packages/survey-core/src/localization/basque" {
|
|
21975
22041
|
numericError: string;
|
21976
22042
|
minError: string;
|
21977
22043
|
maxError: string;
|
22044
|
+
textNoDigitsAllow: string;
|
21978
22045
|
textMinLength: string;
|
21979
22046
|
textMaxLength: string;
|
21980
22047
|
textMinMaxLength: string;
|
@@ -22065,6 +22132,7 @@ declare module "packages/survey-core/src/localization/bulgarian" {
|
|
22065
22132
|
refuseItemText: string;
|
22066
22133
|
dontKnowItemText: string;
|
22067
22134
|
selectAllItemText: string;
|
22135
|
+
deselectAllItemText: string;
|
22068
22136
|
progressText: string;
|
22069
22137
|
indexText: string;
|
22070
22138
|
panelDynamicProgressText: string;
|
@@ -22084,6 +22152,7 @@ declare module "packages/survey-core/src/localization/bulgarian" {
|
|
22084
22152
|
numericError: string;
|
22085
22153
|
minError: string;
|
22086
22154
|
maxError: string;
|
22155
|
+
textNoDigitsAllow: string;
|
22087
22156
|
textMinLength: string;
|
22088
22157
|
textMaxLength: string;
|
22089
22158
|
textMinMaxLength: string;
|
@@ -22174,6 +22243,7 @@ declare module "packages/survey-core/src/localization/catalan" {
|
|
22174
22243
|
refuseItemText: string;
|
22175
22244
|
dontKnowItemText: string;
|
22176
22245
|
selectAllItemText: string;
|
22246
|
+
deselectAllItemText: string;
|
22177
22247
|
progressText: string;
|
22178
22248
|
indexText: string;
|
22179
22249
|
panelDynamicProgressText: string;
|
@@ -22193,6 +22263,7 @@ declare module "packages/survey-core/src/localization/catalan" {
|
|
22193
22263
|
numericError: string;
|
22194
22264
|
minError: string;
|
22195
22265
|
maxError: string;
|
22266
|
+
textNoDigitsAllow: string;
|
22196
22267
|
textMinLength: string;
|
22197
22268
|
textMaxLength: string;
|
22198
22269
|
textMinMaxLength: string;
|
@@ -22283,6 +22354,7 @@ declare module "packages/survey-core/src/localization/croatian" {
|
|
22283
22354
|
refuseItemText: string;
|
22284
22355
|
dontKnowItemText: string;
|
22285
22356
|
selectAllItemText: string;
|
22357
|
+
deselectAllItemText: string;
|
22286
22358
|
progressText: string;
|
22287
22359
|
indexText: string;
|
22288
22360
|
panelDynamicProgressText: string;
|
@@ -22302,6 +22374,7 @@ declare module "packages/survey-core/src/localization/croatian" {
|
|
22302
22374
|
numericError: string;
|
22303
22375
|
minError: string;
|
22304
22376
|
maxError: string;
|
22377
|
+
textNoDigitsAllow: string;
|
22305
22378
|
textMinLength: string;
|
22306
22379
|
textMaxLength: string;
|
22307
22380
|
textMinMaxLength: string;
|
@@ -22392,6 +22465,7 @@ declare module "packages/survey-core/src/localization/czech" {
|
|
22392
22465
|
refuseItemText: string;
|
22393
22466
|
dontKnowItemText: string;
|
22394
22467
|
selectAllItemText: string;
|
22468
|
+
deselectAllItemText: string;
|
22395
22469
|
progressText: string;
|
22396
22470
|
indexText: string;
|
22397
22471
|
panelDynamicProgressText: string;
|
@@ -22411,6 +22485,7 @@ declare module "packages/survey-core/src/localization/czech" {
|
|
22411
22485
|
numericError: string;
|
22412
22486
|
minError: string;
|
22413
22487
|
maxError: string;
|
22488
|
+
textNoDigitsAllow: string;
|
22414
22489
|
textMinLength: string;
|
22415
22490
|
textMaxLength: string;
|
22416
22491
|
textMinMaxLength: string;
|
@@ -22501,6 +22576,7 @@ declare module "packages/survey-core/src/localization/danish" {
|
|
22501
22576
|
refuseItemText: string;
|
22502
22577
|
dontKnowItemText: string;
|
22503
22578
|
selectAllItemText: string;
|
22579
|
+
deselectAllItemText: string;
|
22504
22580
|
progressText: string;
|
22505
22581
|
indexText: string;
|
22506
22582
|
panelDynamicProgressText: string;
|
@@ -22520,6 +22596,7 @@ declare module "packages/survey-core/src/localization/danish" {
|
|
22520
22596
|
numericError: string;
|
22521
22597
|
minError: string;
|
22522
22598
|
maxError: string;
|
22599
|
+
textNoDigitsAllow: string;
|
22523
22600
|
textMinLength: string;
|
22524
22601
|
textMaxLength: string;
|
22525
22602
|
textMinMaxLength: string;
|
@@ -22610,6 +22687,7 @@ declare module "packages/survey-core/src/localization/dutch" {
|
|
22610
22687
|
refuseItemText: string;
|
22611
22688
|
dontKnowItemText: string;
|
22612
22689
|
selectAllItemText: string;
|
22690
|
+
deselectAllItemText: string;
|
22613
22691
|
progressText: string;
|
22614
22692
|
indexText: string;
|
22615
22693
|
panelDynamicProgressText: string;
|
@@ -22629,6 +22707,7 @@ declare module "packages/survey-core/src/localization/dutch" {
|
|
22629
22707
|
numericError: string;
|
22630
22708
|
minError: string;
|
22631
22709
|
maxError: string;
|
22710
|
+
textNoDigitsAllow: string;
|
22632
22711
|
textMinLength: string;
|
22633
22712
|
textMaxLength: string;
|
22634
22713
|
textMinMaxLength: string;
|
@@ -22720,6 +22799,7 @@ declare module "packages/survey-core/src/localization/estonian" {
|
|
22720
22799
|
refuseItemText: string;
|
22721
22800
|
dontKnowItemText: string;
|
22722
22801
|
selectAllItemText: string;
|
22802
|
+
deselectAllItemText: string;
|
22723
22803
|
progressText: string;
|
22724
22804
|
indexText: string;
|
22725
22805
|
panelDynamicProgressText: string;
|
@@ -22739,6 +22819,7 @@ declare module "packages/survey-core/src/localization/estonian" {
|
|
22739
22819
|
numericError: string;
|
22740
22820
|
minError: string;
|
22741
22821
|
maxError: string;
|
22822
|
+
textNoDigitsAllow: string;
|
22742
22823
|
textMinLength: string;
|
22743
22824
|
textMaxLength: string;
|
22744
22825
|
textMinMaxLength: string;
|
@@ -22829,6 +22910,7 @@ declare module "packages/survey-core/src/localization/finnish" {
|
|
22829
22910
|
refuseItemText: string;
|
22830
22911
|
dontKnowItemText: string;
|
22831
22912
|
selectAllItemText: string;
|
22913
|
+
deselectAllItemText: string;
|
22832
22914
|
progressText: string;
|
22833
22915
|
indexText: string;
|
22834
22916
|
panelDynamicProgressText: string;
|
@@ -22848,6 +22930,7 @@ declare module "packages/survey-core/src/localization/finnish" {
|
|
22848
22930
|
numericError: string;
|
22849
22931
|
minError: string;
|
22850
22932
|
maxError: string;
|
22933
|
+
textNoDigitsAllow: string;
|
22851
22934
|
textMinLength: string;
|
22852
22935
|
textMaxLength: string;
|
22853
22936
|
textMinMaxLength: string;
|
@@ -22938,6 +23021,7 @@ declare module "packages/survey-core/src/localization/french" {
|
|
22938
23021
|
refuseItemText: string;
|
22939
23022
|
dontKnowItemText: string;
|
22940
23023
|
selectAllItemText: string;
|
23024
|
+
deselectAllItemText: string;
|
22941
23025
|
progressText: string;
|
22942
23026
|
indexText: string;
|
22943
23027
|
panelDynamicProgressText: string;
|
@@ -22957,6 +23041,7 @@ declare module "packages/survey-core/src/localization/french" {
|
|
22957
23041
|
numericError: string;
|
22958
23042
|
minError: string;
|
22959
23043
|
maxError: string;
|
23044
|
+
textNoDigitsAllow: string;
|
22960
23045
|
textMinLength: string;
|
22961
23046
|
textMaxLength: string;
|
22962
23047
|
textMinMaxLength: string;
|
@@ -23047,6 +23132,7 @@ declare module "packages/survey-core/src/localization/georgian" {
|
|
23047
23132
|
refuseItemText: string;
|
23048
23133
|
dontKnowItemText: string;
|
23049
23134
|
selectAllItemText: string;
|
23135
|
+
deselectAllItemText: string;
|
23050
23136
|
progressText: string;
|
23051
23137
|
indexText: string;
|
23052
23138
|
panelDynamicProgressText: string;
|
@@ -23066,6 +23152,7 @@ declare module "packages/survey-core/src/localization/georgian" {
|
|
23066
23152
|
numericError: string;
|
23067
23153
|
minError: string;
|
23068
23154
|
maxError: string;
|
23155
|
+
textNoDigitsAllow: string;
|
23069
23156
|
textMinLength: string;
|
23070
23157
|
textMaxLength: string;
|
23071
23158
|
textMinMaxLength: string;
|
@@ -23156,6 +23243,7 @@ declare module "packages/survey-core/src/localization/german" {
|
|
23156
23243
|
refuseItemText: string;
|
23157
23244
|
dontKnowItemText: string;
|
23158
23245
|
selectAllItemText: string;
|
23246
|
+
deselectAllItemText: string;
|
23159
23247
|
progressText: string;
|
23160
23248
|
indexText: string;
|
23161
23249
|
panelDynamicProgressText: string;
|
@@ -23175,6 +23263,7 @@ declare module "packages/survey-core/src/localization/german" {
|
|
23175
23263
|
numericError: string;
|
23176
23264
|
minError: string;
|
23177
23265
|
maxError: string;
|
23266
|
+
textNoDigitsAllow: string;
|
23178
23267
|
textMinLength: string;
|
23179
23268
|
textMaxLength: string;
|
23180
23269
|
textMinMaxLength: string;
|
@@ -23265,6 +23354,7 @@ declare module "packages/survey-core/src/localization/greek" {
|
|
23265
23354
|
refuseItemText: string;
|
23266
23355
|
dontKnowItemText: string;
|
23267
23356
|
selectAllItemText: string;
|
23357
|
+
deselectAllItemText: string;
|
23268
23358
|
progressText: string;
|
23269
23359
|
indexText: string;
|
23270
23360
|
panelDynamicProgressText: string;
|
@@ -23284,6 +23374,7 @@ declare module "packages/survey-core/src/localization/greek" {
|
|
23284
23374
|
numericError: string;
|
23285
23375
|
minError: string;
|
23286
23376
|
maxError: string;
|
23377
|
+
textNoDigitsAllow: string;
|
23287
23378
|
textMinLength: string;
|
23288
23379
|
textMaxLength: string;
|
23289
23380
|
textMinMaxLength: string;
|
@@ -23374,6 +23465,7 @@ declare module "packages/survey-core/src/localization/hebrew" {
|
|
23374
23465
|
refuseItemText: string;
|
23375
23466
|
dontKnowItemText: string;
|
23376
23467
|
selectAllItemText: string;
|
23468
|
+
deselectAllItemText: string;
|
23377
23469
|
progressText: string;
|
23378
23470
|
indexText: string;
|
23379
23471
|
panelDynamicProgressText: string;
|
@@ -23393,6 +23485,7 @@ declare module "packages/survey-core/src/localization/hebrew" {
|
|
23393
23485
|
numericError: string;
|
23394
23486
|
minError: string;
|
23395
23487
|
maxError: string;
|
23488
|
+
textNoDigitsAllow: string;
|
23396
23489
|
textMinLength: string;
|
23397
23490
|
textMaxLength: string;
|
23398
23491
|
textMinMaxLength: string;
|
@@ -23483,6 +23576,7 @@ declare module "packages/survey-core/src/localization/hindi" {
|
|
23483
23576
|
refuseItemText: string;
|
23484
23577
|
dontKnowItemText: string;
|
23485
23578
|
selectAllItemText: string;
|
23579
|
+
deselectAllItemText: string;
|
23486
23580
|
progressText: string;
|
23487
23581
|
indexText: string;
|
23488
23582
|
panelDynamicProgressText: string;
|
@@ -23502,6 +23596,7 @@ declare module "packages/survey-core/src/localization/hindi" {
|
|
23502
23596
|
numericError: string;
|
23503
23597
|
minError: string;
|
23504
23598
|
maxError: string;
|
23599
|
+
textNoDigitsAllow: string;
|
23505
23600
|
textMinLength: string;
|
23506
23601
|
textMaxLength: string;
|
23507
23602
|
textMinMaxLength: string;
|
@@ -23592,6 +23687,7 @@ declare module "packages/survey-core/src/localization/hungarian" {
|
|
23592
23687
|
refuseItemText: string;
|
23593
23688
|
dontKnowItemText: string;
|
23594
23689
|
selectAllItemText: string;
|
23690
|
+
deselectAllItemText: string;
|
23595
23691
|
progressText: string;
|
23596
23692
|
indexText: string;
|
23597
23693
|
panelDynamicProgressText: string;
|
@@ -23611,6 +23707,7 @@ declare module "packages/survey-core/src/localization/hungarian" {
|
|
23611
23707
|
numericError: string;
|
23612
23708
|
minError: string;
|
23613
23709
|
maxError: string;
|
23710
|
+
textNoDigitsAllow: string;
|
23614
23711
|
textMinLength: string;
|
23615
23712
|
textMaxLength: string;
|
23616
23713
|
textMinMaxLength: string;
|
@@ -23701,6 +23798,7 @@ declare module "packages/survey-core/src/localization/icelandic" {
|
|
23701
23798
|
refuseItemText: string;
|
23702
23799
|
dontKnowItemText: string;
|
23703
23800
|
selectAllItemText: string;
|
23801
|
+
deselectAllItemText: string;
|
23704
23802
|
progressText: string;
|
23705
23803
|
indexText: string;
|
23706
23804
|
panelDynamicProgressText: string;
|
@@ -23720,6 +23818,7 @@ declare module "packages/survey-core/src/localization/icelandic" {
|
|
23720
23818
|
numericError: string;
|
23721
23819
|
minError: string;
|
23722
23820
|
maxError: string;
|
23821
|
+
textNoDigitsAllow: string;
|
23723
23822
|
textMinLength: string;
|
23724
23823
|
textMaxLength: string;
|
23725
23824
|
textMinMaxLength: string;
|
@@ -23810,6 +23909,7 @@ declare module "packages/survey-core/src/localization/indonesian" {
|
|
23810
23909
|
refuseItemText: string;
|
23811
23910
|
dontKnowItemText: string;
|
23812
23911
|
selectAllItemText: string;
|
23912
|
+
deselectAllItemText: string;
|
23813
23913
|
progressText: string;
|
23814
23914
|
indexText: string;
|
23815
23915
|
panelDynamicProgressText: string;
|
@@ -23829,6 +23929,7 @@ declare module "packages/survey-core/src/localization/indonesian" {
|
|
23829
23929
|
numericError: string;
|
23830
23930
|
minError: string;
|
23831
23931
|
maxError: string;
|
23932
|
+
textNoDigitsAllow: string;
|
23832
23933
|
textMinLength: string;
|
23833
23934
|
textMaxLength: string;
|
23834
23935
|
textMinMaxLength: string;
|
@@ -23919,6 +24020,7 @@ declare module "packages/survey-core/src/localization/italian" {
|
|
23919
24020
|
refuseItemText: string;
|
23920
24021
|
dontKnowItemText: string;
|
23921
24022
|
selectAllItemText: string;
|
24023
|
+
deselectAllItemText: string;
|
23922
24024
|
progressText: string;
|
23923
24025
|
indexText: string;
|
23924
24026
|
panelDynamicProgressText: string;
|
@@ -23938,6 +24040,7 @@ declare module "packages/survey-core/src/localization/italian" {
|
|
23938
24040
|
numericError: string;
|
23939
24041
|
minError: string;
|
23940
24042
|
maxError: string;
|
24043
|
+
textNoDigitsAllow: string;
|
23941
24044
|
textMinLength: string;
|
23942
24045
|
textMaxLength: string;
|
23943
24046
|
textMinMaxLength: string;
|
@@ -24028,6 +24131,7 @@ declare module "packages/survey-core/src/localization/japanese" {
|
|
24028
24131
|
refuseItemText: string;
|
24029
24132
|
dontKnowItemText: string;
|
24030
24133
|
selectAllItemText: string;
|
24134
|
+
deselectAllItemText: string;
|
24031
24135
|
progressText: string;
|
24032
24136
|
indexText: string;
|
24033
24137
|
panelDynamicProgressText: string;
|
@@ -24047,6 +24151,7 @@ declare module "packages/survey-core/src/localization/japanese" {
|
|
24047
24151
|
numericError: string;
|
24048
24152
|
minError: string;
|
24049
24153
|
maxError: string;
|
24154
|
+
textNoDigitsAllow: string;
|
24050
24155
|
textMinLength: string;
|
24051
24156
|
textMaxLength: string;
|
24052
24157
|
textMinMaxLength: string;
|
@@ -24137,6 +24242,7 @@ declare module "packages/survey-core/src/localization/kazakh" {
|
|
24137
24242
|
refuseItemText: string;
|
24138
24243
|
dontKnowItemText: string;
|
24139
24244
|
selectAllItemText: string;
|
24245
|
+
deselectAllItemText: string;
|
24140
24246
|
progressText: string;
|
24141
24247
|
indexText: string;
|
24142
24248
|
panelDynamicProgressText: string;
|
@@ -24156,6 +24262,7 @@ declare module "packages/survey-core/src/localization/kazakh" {
|
|
24156
24262
|
numericError: string;
|
24157
24263
|
minError: string;
|
24158
24264
|
maxError: string;
|
24265
|
+
textNoDigitsAllow: string;
|
24159
24266
|
textMinLength: string;
|
24160
24267
|
textMaxLength: string;
|
24161
24268
|
textMinMaxLength: string;
|
@@ -24246,6 +24353,7 @@ declare module "packages/survey-core/src/localization/korean" {
|
|
24246
24353
|
refuseItemText: string;
|
24247
24354
|
dontKnowItemText: string;
|
24248
24355
|
selectAllItemText: string;
|
24356
|
+
deselectAllItemText: string;
|
24249
24357
|
progressText: string;
|
24250
24358
|
indexText: string;
|
24251
24359
|
panelDynamicProgressText: string;
|
@@ -24265,6 +24373,7 @@ declare module "packages/survey-core/src/localization/korean" {
|
|
24265
24373
|
numericError: string;
|
24266
24374
|
minError: string;
|
24267
24375
|
maxError: string;
|
24376
|
+
textNoDigitsAllow: string;
|
24268
24377
|
textMinLength: string;
|
24269
24378
|
textMaxLength: string;
|
24270
24379
|
textMinMaxLength: string;
|
@@ -24355,6 +24464,7 @@ declare module "packages/survey-core/src/localization/latvian" {
|
|
24355
24464
|
refuseItemText: string;
|
24356
24465
|
dontKnowItemText: string;
|
24357
24466
|
selectAllItemText: string;
|
24467
|
+
deselectAllItemText: string;
|
24358
24468
|
progressText: string;
|
24359
24469
|
indexText: string;
|
24360
24470
|
panelDynamicProgressText: string;
|
@@ -24374,6 +24484,7 @@ declare module "packages/survey-core/src/localization/latvian" {
|
|
24374
24484
|
numericError: string;
|
24375
24485
|
minError: string;
|
24376
24486
|
maxError: string;
|
24487
|
+
textNoDigitsAllow: string;
|
24377
24488
|
textMinLength: string;
|
24378
24489
|
textMaxLength: string;
|
24379
24490
|
textMinMaxLength: string;
|
@@ -24464,6 +24575,7 @@ declare module "packages/survey-core/src/localization/lithuanian" {
|
|
24464
24575
|
refuseItemText: string;
|
24465
24576
|
dontKnowItemText: string;
|
24466
24577
|
selectAllItemText: string;
|
24578
|
+
deselectAllItemText: string;
|
24467
24579
|
progressText: string;
|
24468
24580
|
indexText: string;
|
24469
24581
|
panelDynamicProgressText: string;
|
@@ -24483,6 +24595,7 @@ declare module "packages/survey-core/src/localization/lithuanian" {
|
|
24483
24595
|
numericError: string;
|
24484
24596
|
minError: string;
|
24485
24597
|
maxError: string;
|
24598
|
+
textNoDigitsAllow: string;
|
24486
24599
|
textMinLength: string;
|
24487
24600
|
textMaxLength: string;
|
24488
24601
|
textMinMaxLength: string;
|
@@ -24573,6 +24686,7 @@ declare module "packages/survey-core/src/localization/macedonian" {
|
|
24573
24686
|
refuseItemText: string;
|
24574
24687
|
dontKnowItemText: string;
|
24575
24688
|
selectAllItemText: string;
|
24689
|
+
deselectAllItemText: string;
|
24576
24690
|
progressText: string;
|
24577
24691
|
indexText: string;
|
24578
24692
|
panelDynamicProgressText: string;
|
@@ -24592,6 +24706,7 @@ declare module "packages/survey-core/src/localization/macedonian" {
|
|
24592
24706
|
numericError: string;
|
24593
24707
|
minError: string;
|
24594
24708
|
maxError: string;
|
24709
|
+
textNoDigitsAllow: string;
|
24595
24710
|
textMinLength: string;
|
24596
24711
|
textMaxLength: string;
|
24597
24712
|
textMinMaxLength: string;
|
@@ -24682,6 +24797,7 @@ declare module "packages/survey-core/src/localization/malay" {
|
|
24682
24797
|
refuseItemText: string;
|
24683
24798
|
dontKnowItemText: string;
|
24684
24799
|
selectAllItemText: string;
|
24800
|
+
deselectAllItemText: string;
|
24685
24801
|
progressText: string;
|
24686
24802
|
indexText: string;
|
24687
24803
|
panelDynamicProgressText: string;
|
@@ -24701,6 +24817,7 @@ declare module "packages/survey-core/src/localization/malay" {
|
|
24701
24817
|
numericError: string;
|
24702
24818
|
minError: string;
|
24703
24819
|
maxError: string;
|
24820
|
+
textNoDigitsAllow: string;
|
24704
24821
|
textMinLength: string;
|
24705
24822
|
textMaxLength: string;
|
24706
24823
|
textMinMaxLength: string;
|
@@ -24791,6 +24908,7 @@ declare module "packages/survey-core/src/localization/norwegian" {
|
|
24791
24908
|
refuseItemText: string;
|
24792
24909
|
dontKnowItemText: string;
|
24793
24910
|
selectAllItemText: string;
|
24911
|
+
deselectAllItemText: string;
|
24794
24912
|
progressText: string;
|
24795
24913
|
indexText: string;
|
24796
24914
|
panelDynamicProgressText: string;
|
@@ -24810,6 +24928,7 @@ declare module "packages/survey-core/src/localization/norwegian" {
|
|
24810
24928
|
numericError: string;
|
24811
24929
|
minError: string;
|
24812
24930
|
maxError: string;
|
24931
|
+
textNoDigitsAllow: string;
|
24813
24932
|
textMinLength: string;
|
24814
24933
|
textMaxLength: string;
|
24815
24934
|
textMinMaxLength: string;
|
@@ -24900,6 +25019,7 @@ declare module "packages/survey-core/src/localization/persian" {
|
|
24900
25019
|
refuseItemText: string;
|
24901
25020
|
dontKnowItemText: string;
|
24902
25021
|
selectAllItemText: string;
|
25022
|
+
deselectAllItemText: string;
|
24903
25023
|
progressText: string;
|
24904
25024
|
indexText: string;
|
24905
25025
|
panelDynamicProgressText: string;
|
@@ -24919,6 +25039,7 @@ declare module "packages/survey-core/src/localization/persian" {
|
|
24919
25039
|
numericError: string;
|
24920
25040
|
minError: string;
|
24921
25041
|
maxError: string;
|
25042
|
+
textNoDigitsAllow: string;
|
24922
25043
|
textMinLength: string;
|
24923
25044
|
textMaxLength: string;
|
24924
25045
|
textMinMaxLength: string;
|
@@ -25009,6 +25130,7 @@ declare module "packages/survey-core/src/localization/polish" {
|
|
25009
25130
|
refuseItemText: string;
|
25010
25131
|
dontKnowItemText: string;
|
25011
25132
|
selectAllItemText: string;
|
25133
|
+
deselectAllItemText: string;
|
25012
25134
|
progressText: string;
|
25013
25135
|
indexText: string;
|
25014
25136
|
panelDynamicProgressText: string;
|
@@ -25028,6 +25150,7 @@ declare module "packages/survey-core/src/localization/polish" {
|
|
25028
25150
|
numericError: string;
|
25029
25151
|
minError: string;
|
25030
25152
|
maxError: string;
|
25153
|
+
textNoDigitsAllow: string;
|
25031
25154
|
textMinLength: string;
|
25032
25155
|
textMaxLength: string;
|
25033
25156
|
textMinMaxLength: string;
|
@@ -25118,6 +25241,7 @@ declare module "packages/survey-core/src/localization/portuguese" {
|
|
25118
25241
|
refuseItemText: string;
|
25119
25242
|
dontKnowItemText: string;
|
25120
25243
|
selectAllItemText: string;
|
25244
|
+
deselectAllItemText: string;
|
25121
25245
|
progressText: string;
|
25122
25246
|
indexText: string;
|
25123
25247
|
panelDynamicProgressText: string;
|
@@ -25137,6 +25261,7 @@ declare module "packages/survey-core/src/localization/portuguese" {
|
|
25137
25261
|
numericError: string;
|
25138
25262
|
minError: string;
|
25139
25263
|
maxError: string;
|
25264
|
+
textNoDigitsAllow: string;
|
25140
25265
|
textMinLength: string;
|
25141
25266
|
textMaxLength: string;
|
25142
25267
|
textMinMaxLength: string;
|
@@ -25230,6 +25355,7 @@ declare module "packages/survey-core/src/localization/portuguese-br" {
|
|
25230
25355
|
refuseItemText: string;
|
25231
25356
|
dontKnowItemText: string;
|
25232
25357
|
selectAllItemText: string;
|
25358
|
+
deselectAllItemText: string;
|
25233
25359
|
progressText: string;
|
25234
25360
|
indexText: string;
|
25235
25361
|
panelDynamicProgressText: string;
|
@@ -25249,6 +25375,7 @@ declare module "packages/survey-core/src/localization/portuguese-br" {
|
|
25249
25375
|
numericError: string;
|
25250
25376
|
minError: string;
|
25251
25377
|
maxError: string;
|
25378
|
+
textNoDigitsAllow: string;
|
25252
25379
|
textMinLength: string;
|
25253
25380
|
textMaxLength: string;
|
25254
25381
|
textMinMaxLength: string;
|
@@ -25342,6 +25469,7 @@ declare module "packages/survey-core/src/localization/russian" {
|
|
25342
25469
|
refuseItemText: string;
|
25343
25470
|
dontKnowItemText: string;
|
25344
25471
|
selectAllItemText: string;
|
25472
|
+
deselectAllItemText: string;
|
25345
25473
|
progressText: string;
|
25346
25474
|
indexText: string;
|
25347
25475
|
panelDynamicProgressText: string;
|
@@ -25361,6 +25489,7 @@ declare module "packages/survey-core/src/localization/russian" {
|
|
25361
25489
|
numericError: string;
|
25362
25490
|
minError: string;
|
25363
25491
|
maxError: string;
|
25492
|
+
textNoDigitsAllow: string;
|
25364
25493
|
textMinLength: string;
|
25365
25494
|
textMaxLength: string;
|
25366
25495
|
textMinMaxLength: string;
|
@@ -25451,6 +25580,7 @@ declare module "packages/survey-core/src/localization/serbian" {
|
|
25451
25580
|
refuseItemText: string;
|
25452
25581
|
dontKnowItemText: string;
|
25453
25582
|
selectAllItemText: string;
|
25583
|
+
deselectAllItemText: string;
|
25454
25584
|
progressText: string;
|
25455
25585
|
indexText: string;
|
25456
25586
|
panelDynamicProgressText: string;
|
@@ -25470,6 +25600,7 @@ declare module "packages/survey-core/src/localization/serbian" {
|
|
25470
25600
|
numericError: string;
|
25471
25601
|
minError: string;
|
25472
25602
|
maxError: string;
|
25603
|
+
textNoDigitsAllow: string;
|
25473
25604
|
textMinLength: string;
|
25474
25605
|
textMaxLength: string;
|
25475
25606
|
textMinMaxLength: string;
|
@@ -25560,6 +25691,7 @@ declare module "packages/survey-core/src/localization/simplified-chinese" {
|
|
25560
25691
|
refuseItemText: string;
|
25561
25692
|
dontKnowItemText: string;
|
25562
25693
|
selectAllItemText: string;
|
25694
|
+
deselectAllItemText: string;
|
25563
25695
|
progressText: string;
|
25564
25696
|
indexText: string;
|
25565
25697
|
panelDynamicProgressText: string;
|
@@ -25579,6 +25711,7 @@ declare module "packages/survey-core/src/localization/simplified-chinese" {
|
|
25579
25711
|
numericError: string;
|
25580
25712
|
minError: string;
|
25581
25713
|
maxError: string;
|
25714
|
+
textNoDigitsAllow: string;
|
25582
25715
|
textMinLength: string;
|
25583
25716
|
textMaxLength: string;
|
25584
25717
|
textMinMaxLength: string;
|
@@ -25669,6 +25802,7 @@ declare module "packages/survey-core/src/localization/slovak" {
|
|
25669
25802
|
refuseItemText: string;
|
25670
25803
|
dontKnowItemText: string;
|
25671
25804
|
selectAllItemText: string;
|
25805
|
+
deselectAllItemText: string;
|
25672
25806
|
progressText: string;
|
25673
25807
|
indexText: string;
|
25674
25808
|
panelDynamicProgressText: string;
|
@@ -25688,6 +25822,7 @@ declare module "packages/survey-core/src/localization/slovak" {
|
|
25688
25822
|
numericError: string;
|
25689
25823
|
minError: string;
|
25690
25824
|
maxError: string;
|
25825
|
+
textNoDigitsAllow: string;
|
25691
25826
|
textMinLength: string;
|
25692
25827
|
textMaxLength: string;
|
25693
25828
|
textMinMaxLength: string;
|
@@ -25778,6 +25913,7 @@ declare module "packages/survey-core/src/localization/spanish" {
|
|
25778
25913
|
refuseItemText: string;
|
25779
25914
|
dontKnowItemText: string;
|
25780
25915
|
selectAllItemText: string;
|
25916
|
+
deselectAllItemText: string;
|
25781
25917
|
progressText: string;
|
25782
25918
|
indexText: string;
|
25783
25919
|
panelDynamicProgressText: string;
|
@@ -25797,6 +25933,7 @@ declare module "packages/survey-core/src/localization/spanish" {
|
|
25797
25933
|
numericError: string;
|
25798
25934
|
minError: string;
|
25799
25935
|
maxError: string;
|
25936
|
+
textNoDigitsAllow: string;
|
25800
25937
|
textMinLength: string;
|
25801
25938
|
textMaxLength: string;
|
25802
25939
|
textMinMaxLength: string;
|
@@ -25887,6 +26024,7 @@ declare module "packages/survey-core/src/localization/swahili" {
|
|
25887
26024
|
refuseItemText: string;
|
25888
26025
|
dontKnowItemText: string;
|
25889
26026
|
selectAllItemText: string;
|
26027
|
+
deselectAllItemText: string;
|
25890
26028
|
progressText: string;
|
25891
26029
|
indexText: string;
|
25892
26030
|
panelDynamicProgressText: string;
|
@@ -25906,6 +26044,7 @@ declare module "packages/survey-core/src/localization/swahili" {
|
|
25906
26044
|
numericError: string;
|
25907
26045
|
minError: string;
|
25908
26046
|
maxError: string;
|
26047
|
+
textNoDigitsAllow: string;
|
25909
26048
|
textMinLength: string;
|
25910
26049
|
textMaxLength: string;
|
25911
26050
|
textMinMaxLength: string;
|
@@ -25996,6 +26135,7 @@ declare module "packages/survey-core/src/localization/swedish" {
|
|
25996
26135
|
refuseItemText: string;
|
25997
26136
|
dontKnowItemText: string;
|
25998
26137
|
selectAllItemText: string;
|
26138
|
+
deselectAllItemText: string;
|
25999
26139
|
progressText: string;
|
26000
26140
|
indexText: string;
|
26001
26141
|
panelDynamicProgressText: string;
|
@@ -26015,6 +26155,7 @@ declare module "packages/survey-core/src/localization/swedish" {
|
|
26015
26155
|
numericError: string;
|
26016
26156
|
minError: string;
|
26017
26157
|
maxError: string;
|
26158
|
+
textNoDigitsAllow: string;
|
26018
26159
|
textMinLength: string;
|
26019
26160
|
textMaxLength: string;
|
26020
26161
|
textMinMaxLength: string;
|
@@ -26169,6 +26310,7 @@ declare module "packages/survey-core/src/localization/thai" {
|
|
26169
26310
|
refuseItemText: string;
|
26170
26311
|
dontKnowItemText: string;
|
26171
26312
|
selectAllItemText: string;
|
26313
|
+
deselectAllItemText: string;
|
26172
26314
|
progressText: string;
|
26173
26315
|
indexText: string;
|
26174
26316
|
panelDynamicProgressText: string;
|
@@ -26188,6 +26330,7 @@ declare module "packages/survey-core/src/localization/thai" {
|
|
26188
26330
|
numericError: string;
|
26189
26331
|
minError: string;
|
26190
26332
|
maxError: string;
|
26333
|
+
textNoDigitsAllow: string;
|
26191
26334
|
textMinLength: string;
|
26192
26335
|
textMaxLength: string;
|
26193
26336
|
textMinMaxLength: string;
|
@@ -26278,6 +26421,7 @@ declare module "packages/survey-core/src/localization/traditional-chinese" {
|
|
26278
26421
|
refuseItemText: string;
|
26279
26422
|
dontKnowItemText: string;
|
26280
26423
|
selectAllItemText: string;
|
26424
|
+
deselectAllItemText: string;
|
26281
26425
|
progressText: string;
|
26282
26426
|
indexText: string;
|
26283
26427
|
panelDynamicProgressText: string;
|
@@ -26297,6 +26441,7 @@ declare module "packages/survey-core/src/localization/traditional-chinese" {
|
|
26297
26441
|
numericError: string;
|
26298
26442
|
minError: string;
|
26299
26443
|
maxError: string;
|
26444
|
+
textNoDigitsAllow: string;
|
26300
26445
|
textMinLength: string;
|
26301
26446
|
textMaxLength: string;
|
26302
26447
|
textMinMaxLength: string;
|
@@ -26387,6 +26532,7 @@ declare module "packages/survey-core/src/localization/turkish" {
|
|
26387
26532
|
refuseItemText: string;
|
26388
26533
|
dontKnowItemText: string;
|
26389
26534
|
selectAllItemText: string;
|
26535
|
+
deselectAllItemText: string;
|
26390
26536
|
progressText: string;
|
26391
26537
|
indexText: string;
|
26392
26538
|
panelDynamicProgressText: string;
|
@@ -26406,6 +26552,7 @@ declare module "packages/survey-core/src/localization/turkish" {
|
|
26406
26552
|
numericError: string;
|
26407
26553
|
minError: string;
|
26408
26554
|
maxError: string;
|
26555
|
+
textNoDigitsAllow: string;
|
26409
26556
|
textMinLength: string;
|
26410
26557
|
textMaxLength: string;
|
26411
26558
|
textMinMaxLength: string;
|
@@ -26496,6 +26643,7 @@ declare module "packages/survey-core/src/localization/ukrainian" {
|
|
26496
26643
|
refuseItemText: string;
|
26497
26644
|
dontKnowItemText: string;
|
26498
26645
|
selectAllItemText: string;
|
26646
|
+
deselectAllItemText: string;
|
26499
26647
|
progressText: string;
|
26500
26648
|
indexText: string;
|
26501
26649
|
panelDynamicProgressText: string;
|
@@ -26515,6 +26663,7 @@ declare module "packages/survey-core/src/localization/ukrainian" {
|
|
26515
26663
|
numericError: string;
|
26516
26664
|
minError: string;
|
26517
26665
|
maxError: string;
|
26666
|
+
textNoDigitsAllow: string;
|
26518
26667
|
textMinLength: string;
|
26519
26668
|
textMaxLength: string;
|
26520
26669
|
textMinMaxLength: string;
|
@@ -26605,6 +26754,7 @@ declare module "packages/survey-core/src/localization/vietnamese" {
|
|
26605
26754
|
refuseItemText: string;
|
26606
26755
|
dontKnowItemText: string;
|
26607
26756
|
selectAllItemText: string;
|
26757
|
+
deselectAllItemText: string;
|
26608
26758
|
progressText: string;
|
26609
26759
|
indexText: string;
|
26610
26760
|
panelDynamicProgressText: string;
|
@@ -26624,6 +26774,7 @@ declare module "packages/survey-core/src/localization/vietnamese" {
|
|
26624
26774
|
numericError: string;
|
26625
26775
|
minError: string;
|
26626
26776
|
maxError: string;
|
26777
|
+
textNoDigitsAllow: string;
|
26627
26778
|
textMinLength: string;
|
26628
26779
|
textMaxLength: string;
|
26629
26780
|
textMinMaxLength: string;
|
@@ -26714,6 +26865,7 @@ declare module "packages/survey-core/src/localization/welsh" {
|
|
26714
26865
|
refuseItemText: string;
|
26715
26866
|
dontKnowItemText: string;
|
26716
26867
|
selectAllItemText: string;
|
26868
|
+
deselectAllItemText: string;
|
26717
26869
|
progressText: string;
|
26718
26870
|
indexText: string;
|
26719
26871
|
panelDynamicProgressText: string;
|
@@ -26733,6 +26885,7 @@ declare module "packages/survey-core/src/localization/welsh" {
|
|
26733
26885
|
numericError: string;
|
26734
26886
|
minError: string;
|
26735
26887
|
maxError: string;
|
26888
|
+
textNoDigitsAllow: string;
|
26736
26889
|
textMinLength: string;
|
26737
26890
|
textMaxLength: string;
|
26738
26891
|
textMinMaxLength: string;
|
@@ -26823,6 +26976,7 @@ declare module "packages/survey-core/src/localization/telugu" {
|
|
26823
26976
|
refuseItemText: string;
|
26824
26977
|
dontKnowItemText: string;
|
26825
26978
|
selectAllItemText: string;
|
26979
|
+
deselectAllItemText: string;
|
26826
26980
|
progressText: string;
|
26827
26981
|
indexText: string;
|
26828
26982
|
panelDynamicProgressText: string;
|
@@ -26842,6 +26996,7 @@ declare module "packages/survey-core/src/localization/telugu" {
|
|
26842
26996
|
numericError: string;
|
26843
26997
|
minError: string;
|
26844
26998
|
maxError: string;
|
26999
|
+
textNoDigitsAllow: string;
|
26845
27000
|
textMinLength: string;
|
26846
27001
|
textMaxLength: string;
|
26847
27002
|
textMinMaxLength: string;
|
@@ -26932,6 +27087,7 @@ declare module "packages/survey-core/src/localization/philippines" {
|
|
26932
27087
|
refuseItemText: string;
|
26933
27088
|
dontKnowItemText: string;
|
26934
27089
|
selectAllItemText: string;
|
27090
|
+
deselectAllItemText: string;
|
26935
27091
|
progressText: string;
|
26936
27092
|
indexText: string;
|
26937
27093
|
panelDynamicProgressText: string;
|
@@ -26951,6 +27107,7 @@ declare module "packages/survey-core/src/localization/philippines" {
|
|
26951
27107
|
numericError: string;
|
26952
27108
|
minError: string;
|
26953
27109
|
maxError: string;
|
27110
|
+
textNoDigitsAllow: string;
|
26954
27111
|
textMinLength: string;
|
26955
27112
|
textMaxLength: string;
|
26956
27113
|
textMinMaxLength: string;
|
@@ -27209,7 +27366,7 @@ declare module "packages/survey-react-ui/src/components/action-bar/action-bar-it
|
|
27209
27366
|
}
|
27210
27367
|
}
|
27211
27368
|
declare module "packages/survey-react-ui/src/components/popup/popup" {
|
27212
|
-
import { Base, PopupModel, PopupBaseViewModel
|
27369
|
+
import { Base, PopupModel, PopupBaseViewModel } from "src/entries/core";
|
27213
27370
|
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27214
27371
|
interface IPopupProps {
|
27215
27372
|
model: PopupModel;
|
@@ -27248,8 +27405,6 @@ declare module "packages/survey-react-ui/src/components/popup/popup" {
|
|
27248
27405
|
export class PopupDropdownContainer extends PopupContainer {
|
27249
27406
|
protected renderHeaderPopup(popupModel: PopupBaseViewModel): JSX.Element | null;
|
27250
27407
|
}
|
27251
|
-
export function showModal(componentName: string, data: any, onApply: () => boolean, onCancel?: () => void, cssClass?: string, title?: string, displayMode?: "popup" | "overlay"): PopupBaseViewModel;
|
27252
|
-
export function showDialog(dialogOptions: IDialogOptions, rootElement?: HTMLElement): PopupBaseViewModel;
|
27253
27408
|
}
|
27254
27409
|
declare module "packages/survey-react-ui/src/components/action-bar/action-bar-item-dropdown" {
|
27255
27410
|
import { SurveyActionBarItem } from "packages/survey-react-ui/src/components/action-bar/action-bar-item";
|
@@ -27621,6 +27776,29 @@ declare module "packages/survey-react-ui/src/svgbundle" {
|
|
27621
27776
|
render(): JSX.Element;
|
27622
27777
|
}
|
27623
27778
|
}
|
27779
|
+
declare module "packages/survey-react-ui/src/components/popup/popup-modal" {
|
27780
|
+
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27781
|
+
import { IDialogOptions, PopupBaseViewModel } from "src/entries/core";
|
27782
|
+
interface IModalDescriptor {
|
27783
|
+
init: () => void;
|
27784
|
+
clean: () => void;
|
27785
|
+
}
|
27786
|
+
export class PopupModal extends SurveyElementBase<{}, any> {
|
27787
|
+
private model;
|
27788
|
+
private isInitialized;
|
27789
|
+
private descriptor;
|
27790
|
+
constructor(props: {});
|
27791
|
+
static modalDescriptors: Array<IModalDescriptor>;
|
27792
|
+
static addModalDescriptor(descriptor: IModalDescriptor): void;
|
27793
|
+
static removeModalDescriptor(descriptor: IModalDescriptor): void;
|
27794
|
+
protected renderElement(): JSX.Element | null;
|
27795
|
+
showDialog(dialogOptions: IDialogOptions, rootElement?: HTMLElement): PopupBaseViewModel;
|
27796
|
+
init: () => void;
|
27797
|
+
clean: () => void;
|
27798
|
+
componentDidMount(): void;
|
27799
|
+
componentWillUnmount(): void;
|
27800
|
+
}
|
27801
|
+
}
|
27624
27802
|
declare module "packages/survey-react-ui/src/reactSurvey" {
|
27625
27803
|
import { Base, Question, PageModel, SurveyError, SurveyModel, IAttachKey2clickOptions } from "src/entries/core";
|
27626
27804
|
import { ISurveyCreator } from "packages/survey-react-ui/src/reactquestion";
|
@@ -28760,6 +28938,7 @@ declare module "packages/survey-react-ui/entries/react-ui-model" {
|
|
28760
28938
|
export { SurveyLocStringEditor } from "packages/survey-react-ui/src/string-editor";
|
28761
28939
|
export { LoadingIndicatorComponent } from "packages/survey-react-ui/src/components/loading-indicator";
|
28762
28940
|
export { SvgBundleComponent } from "packages/survey-react-ui/src/svgbundle";
|
28941
|
+
export { PopupModal } from "packages/survey-react-ui/src/components/popup/popup-modal";
|
28763
28942
|
}
|
28764
28943
|
declare module "src/entries/react" {
|
28765
28944
|
export * from "src/entries/core";
|