survey-react 1.12.6 → 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 +229 -49
- package/survey.react.js +815 -358
- 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;
|
@@ -4972,7 +4985,7 @@ declare module "packages/survey-core/src/question_baseselect" {
|
|
4972
4985
|
*
|
4973
4986
|
* [View Dropdown Demo](https://surveyjs.io/form-library/examples/dropdown-box-with-custom-items/ (linkStyle))
|
4974
4987
|
*
|
4975
|
-
* [View Ranking Demo](https://surveyjs.io/form-library/examples/
|
4988
|
+
* [View Ranking Demo](https://surveyjs.io/form-library/examples/ranking-with-custom-items/ (linkStyle))
|
4976
4989
|
*/
|
4977
4990
|
get itemComponent(): string;
|
4978
4991
|
set itemComponent(value: string);
|
@@ -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
|
/**
|
@@ -7065,6 +7083,7 @@ declare module "packages/survey-core/src/question_paneldynamic" {
|
|
7065
7083
|
* @see addPanelUI
|
7066
7084
|
*/
|
7067
7085
|
removePanelUI(value: any): void;
|
7086
|
+
getPanelRemoveButtonId(panel: PanelModel): string;
|
7068
7087
|
isRequireConfirmOnDelete(val: any): boolean;
|
7069
7088
|
/**
|
7070
7089
|
* 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.
|
@@ -7216,12 +7235,14 @@ declare module "packages/survey-core/src/question_signaturepad" {
|
|
7216
7235
|
valueWasChangedFromLastUpload: boolean;
|
7217
7236
|
private resizeCanvas;
|
7218
7237
|
private scaleCanvas;
|
7219
|
-
private fromDataUrl;
|
7220
7238
|
private fromUrl;
|
7221
|
-
private
|
7222
|
-
private
|
7239
|
+
private fromDataUrl;
|
7240
|
+
private _loadedData;
|
7241
|
+
get loadedData(): string;
|
7223
7242
|
protected loadPreview(newValue: any): void;
|
7243
|
+
protected onChangeQuestionValue(newValue: any): void;
|
7224
7244
|
onSurveyLoad(): void;
|
7245
|
+
private updateValueHandler;
|
7225
7246
|
initSignaturePad(el: HTMLElement): void;
|
7226
7247
|
destroySignaturePad(el: HTMLElement): void;
|
7227
7248
|
/**
|
@@ -7737,10 +7758,22 @@ declare module "packages/survey-core/src/survey-events-api" {
|
|
7737
7758
|
}
|
7738
7759
|
export interface GetQuestionNoEvent extends QuestionEventMixin {
|
7739
7760
|
/**
|
7740
|
-
*
|
7761
|
+
* Obsolete. Use `options.number` instead.
|
7741
7762
|
*/
|
7742
7763
|
no: string;
|
7743
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
|
+
}
|
7744
7777
|
export interface ProgressTextEvent {
|
7745
7778
|
/**
|
7746
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.
|
@@ -9640,7 +9673,7 @@ declare module "packages/survey-core/src/survey" {
|
|
9640
9673
|
import { ActionContainer } from "packages/survey-core/src/actions/container";
|
9641
9674
|
import { QuestionPanelDynamicModel } from "packages/survey-core/src/question_paneldynamic";
|
9642
9675
|
import { Notifier } from "packages/survey-core/src/notifier";
|
9643
|
-
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";
|
9644
9677
|
import { QuestionMatrixDropdownModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
|
9645
9678
|
import { QuestionMatrixDynamicModel } from "packages/survey-core/src/question_matrixdynamic";
|
9646
9679
|
import { QuestionFileModel } from "packages/survey-core/src/question_file";
|
@@ -9930,7 +9963,7 @@ declare module "packages/survey-core/src/survey" {
|
|
9930
9963
|
*
|
9931
9964
|
* For information on event handler parameters, refer to descriptions within the interface.
|
9932
9965
|
*
|
9933
|
-
* 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.
|
9934
9967
|
* @see requiredText
|
9935
9968
|
*/
|
9936
9969
|
onGetQuestionTitle: EventBase<SurveyModel, GetQuestionTitleEvent>;
|
@@ -9943,7 +9976,7 @@ declare module "packages/survey-core/src/survey" {
|
|
9943
9976
|
*
|
9944
9977
|
* [View Demo](https://surveyjs.io/form-library/examples/survey-titletagnames/ (linkStyle))
|
9945
9978
|
* @see onGetQuestionTitle
|
9946
|
-
* @see
|
9979
|
+
* @see onGetQuestionNumber
|
9947
9980
|
*/
|
9948
9981
|
onGetTitleTagName: EventBase<SurveyModel, GetTitleTagNameEvent>;
|
9949
9982
|
/**
|
@@ -9955,7 +9988,21 @@ declare module "packages/survey-core/src/survey" {
|
|
9955
9988
|
* @see onGetQuestionTitle
|
9956
9989
|
* @see questionStartIndex
|
9957
9990
|
*/
|
9958
|
-
|
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>;
|
9959
10006
|
/**
|
9960
10007
|
* An event that is raised before the survey displays progress text. Handle this event to change the progress text in code.
|
9961
10008
|
* @see showProgressBar
|
@@ -10699,7 +10746,7 @@ declare module "packages/survey-core/src/survey" {
|
|
10699
10746
|
* - `"onValueChanged"` - Triggers validation each time a question value is changed.
|
10700
10747
|
* - `"onComplete"` - Triggers validation when a user clicks the Complete button. If previous pages contain errors, the survey switches to the page with the first error.
|
10701
10748
|
*
|
10702
|
-
* >
|
10749
|
+
* > In SurveyJS Form Library v1.12.5 and earlier, the `"onValueChanged"` mode doesn't work with date input fields because of the way browsers process date values. In most browsers, the value is considered changed as soon as a user starts entering the date in a text input field. This means that a user may only enter the day without having the chance to enter the month and year before validation is triggered. For this reason, date input fields are validated before the survey is switched to the next page or completed. Starting with v1.12.6, `"onValueChanged"` works for date input fields as well as for input fields of other types.
|
10703
10750
|
*
|
10704
10751
|
* Refer to the following help topic for more information: [Data Validation](https://surveyjs.io/form-library/documentation/data-validation).
|
10705
10752
|
* @see validationEnabled
|
@@ -11090,10 +11137,12 @@ declare module "packages/survey-core/src/survey" {
|
|
11090
11137
|
get locQuestionTitleTemplate(): LocalizableString;
|
11091
11138
|
getUpdatedQuestionTitle(question: Question, title: string): string;
|
11092
11139
|
getUpdatedQuestionNo(question: Question, no: string): string;
|
11140
|
+
getUpdatedPageNo(page: PageModel, no: string): string;
|
11093
11141
|
/**
|
11094
11142
|
* Specifies whether page titles contain page numbers.
|
11095
11143
|
*
|
11096
11144
|
* [View Demo](https://surveyjs.io/form-library/examples/how-to-number-pages-and-questions/ (linkStyle))
|
11145
|
+
* @see onGetPageNumber
|
11097
11146
|
*/
|
11098
11147
|
get showPageNumbers(): boolean;
|
11099
11148
|
set showPageNumbers(value: boolean);
|
@@ -11109,6 +11158,7 @@ declare module "packages/survey-core/src/survey" {
|
|
11109
11158
|
* [View Demo](https://surveyjs.io/form-library/examples/how-to-number-pages-and-questions/ (linkStyle))
|
11110
11159
|
*
|
11111
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
|
11112
11162
|
*/
|
11113
11163
|
get showQuestionNumbers(): string | boolean;
|
11114
11164
|
set showQuestionNumbers(value: string | boolean);
|
@@ -12671,7 +12721,7 @@ declare module "packages/survey-core/src/survey-element" {
|
|
12671
12721
|
static ScrollElementToTop(elementId: string, scrollIfVisible?: boolean, scrollIntoViewOptions?: ScrollIntoViewOptions, doneCallback?: () => void): boolean;
|
12672
12722
|
static ScrollElementToViewCore(el: HTMLElement, checkLeft: boolean, scrollIfVisible?: boolean, scrollIntoViewOptions?: ScrollIntoViewOptions, doneCallback?: () => void): boolean;
|
12673
12723
|
static GetFirstNonTextElement(elements: any, removeSpaces?: boolean): any;
|
12674
|
-
static FocusElement(elementId: string): boolean;
|
12724
|
+
static FocusElement(elementId: string, isTimeOut?: boolean, containerEl?: HTMLElement): boolean;
|
12675
12725
|
private static focusElementCore;
|
12676
12726
|
static CreateDisabledDesignElements: boolean;
|
12677
12727
|
disableDesignActions: boolean;
|
@@ -14053,6 +14103,7 @@ declare module "packages/survey-core/src/itemvalue" {
|
|
14053
14103
|
set locOwner(value: ILocalizableOwner);
|
14054
14104
|
get value(): any;
|
14055
14105
|
set value(newValue: any);
|
14106
|
+
private setValue;
|
14056
14107
|
get hasText(): boolean;
|
14057
14108
|
get pureText(): string;
|
14058
14109
|
set pureText(val: string);
|
@@ -14063,7 +14114,7 @@ declare module "packages/survey-core/src/itemvalue" {
|
|
14063
14114
|
private canSerializeValue;
|
14064
14115
|
getData(): any;
|
14065
14116
|
toJSON(): any;
|
14066
|
-
setData(value: any): void;
|
14117
|
+
setData(value: any, isNewItem?: boolean): void;
|
14067
14118
|
get visibleIf(): string;
|
14068
14119
|
set visibleIf(val: string);
|
14069
14120
|
get enableIf(): string;
|
@@ -14794,6 +14845,11 @@ declare module "packages/survey-core/src/question_matrixdropdownbase" {
|
|
14794
14845
|
get showHorizontalScroll(): boolean;
|
14795
14846
|
protected onMobileChanged(): void;
|
14796
14847
|
getRootCss(): string;
|
14848
|
+
afterRenderQuestionElement(el: HTMLElement): void;
|
14849
|
+
beforeDestroyQuestionElement(el: HTMLElement): void;
|
14850
|
+
private rootElement;
|
14851
|
+
setRootElement(val: HTMLElement): void;
|
14852
|
+
getRootElement(): HTMLElement;
|
14797
14853
|
}
|
14798
14854
|
}
|
14799
14855
|
declare module "packages/survey-core/src/base-interfaces" {
|
@@ -14901,6 +14957,7 @@ declare module "packages/survey-core/src/base-interfaces" {
|
|
14901
14957
|
questionTitlePattern: string;
|
14902
14958
|
getUpdatedQuestionTitle(question: IQuestion, title: string): string;
|
14903
14959
|
getUpdatedQuestionNo(question: IQuestion, no: string): string;
|
14960
|
+
getUpdatedPageNo(question: IPage, no: string): string;
|
14904
14961
|
getUpdatedElementTitleActions(element: ISurveyElement, titleActions: Array<IAction>): Array<IAction>;
|
14905
14962
|
getUpdatedMatrixRowActions(question: QuestionMatrixDropdownModelBase, row: MatrixDropdownRowModelBase, actions: Array<IAction>): Array<IAction>;
|
14906
14963
|
getUpdatedPanelFooterActions(panel: PanelModel, actions: Array<IAction>, question?: QuestionPanelDynamicModel): Array<IAction>;
|
@@ -15305,7 +15362,7 @@ declare module "packages/survey-core/src/jsonobject" {
|
|
15305
15362
|
set defaultValue(newValue: any);
|
15306
15363
|
isDefaultValue(value: any): boolean;
|
15307
15364
|
isDefaultValueByObj(obj: Base, value: any): boolean;
|
15308
|
-
getSerializableValue(obj: any): any;
|
15365
|
+
getSerializableValue(obj: any, storeDefaults?: boolean): any;
|
15309
15366
|
getValue(obj: any): any;
|
15310
15367
|
getPropertyValue(obj: any): any;
|
15311
15368
|
get hasToUseSetValue(): string | ((obj: any, value: any, jsonConv: JsonObject) => any);
|
@@ -15574,7 +15631,7 @@ declare module "packages/survey-core/src/localizablestring" {
|
|
15574
15631
|
searchIndex: number;
|
15575
15632
|
disableLocalization: boolean;
|
15576
15633
|
defaultValue: string;
|
15577
|
-
constructor(owner: ILocalizableOwner, useMarkdown?: boolean, name?: string);
|
15634
|
+
constructor(owner: ILocalizableOwner, useMarkdown?: boolean, name?: string, locName?: string);
|
15578
15635
|
getIsMultiple(): boolean;
|
15579
15636
|
get locale(): string;
|
15580
15637
|
strChanged(): void;
|
@@ -15604,7 +15661,7 @@ declare module "packages/survey-core/src/localizablestring" {
|
|
15604
15661
|
hasNonDefaultText(): boolean;
|
15605
15662
|
getLocales(): Array<string>;
|
15606
15663
|
getJson(): any;
|
15607
|
-
setJson(value: any): void;
|
15664
|
+
setJson(value: any, isLoading?: boolean): void;
|
15608
15665
|
get renderAs(): string;
|
15609
15666
|
get renderAsData(): any;
|
15610
15667
|
equals(obj: any): boolean;
|
@@ -15673,7 +15730,7 @@ declare module "packages/survey-core/src/base" {
|
|
15673
15730
|
getValueNameByPropertyName(propertyName: string): string;
|
15674
15731
|
getPropertiesByValueName(valueName: string): Array<string>;
|
15675
15732
|
getJson(): any;
|
15676
|
-
setJson(value: any): void;
|
15733
|
+
setJson(value: any, isLoading?: boolean): void;
|
15677
15734
|
private fillProperties;
|
15678
15735
|
private onChangedJSON;
|
15679
15736
|
}
|
@@ -17165,7 +17222,7 @@ declare module "packages/survey-core/src/question_matrix" {
|
|
17165
17222
|
get columns(): Array<any>;
|
17166
17223
|
private getCellRowColumnValue;
|
17167
17224
|
getJson(): any;
|
17168
|
-
setJson(value: any): void;
|
17225
|
+
setJson(value: any, isLoading?: boolean): void;
|
17169
17226
|
locStrsChanged(): void;
|
17170
17227
|
private runFuncOnLocs;
|
17171
17228
|
protected createString(): LocalizableString;
|
@@ -17440,6 +17497,7 @@ declare module "packages/survey-core/src/question_checkbox" {
|
|
17440
17497
|
selectAll(): void;
|
17441
17498
|
clickItemHandler(item: ItemValue, checked?: boolean): void;
|
17442
17499
|
protected isItemSelectedCore(item: ItemValue): boolean;
|
17500
|
+
protected convertFuncValuetoQuestionValue(val: any): any;
|
17443
17501
|
private getRealValue;
|
17444
17502
|
get isValueArray(): boolean;
|
17445
17503
|
/**
|
@@ -19618,6 +19676,7 @@ declare module "src/defaultCss/cssstandard" {
|
|
19618
19676
|
emptyRowsText: string;
|
19619
19677
|
emptyRowsButton: string;
|
19620
19678
|
ghostRow: string;
|
19679
|
+
draggedRow: string;
|
19621
19680
|
};
|
19622
19681
|
paneldynamic: {
|
19623
19682
|
root: string;
|
@@ -20151,6 +20210,7 @@ declare module "src/defaultCss/cssmodern" {
|
|
20151
20210
|
emptyRowsText: string;
|
20152
20211
|
emptyRowsButton: string;
|
20153
20212
|
ghostRow: string;
|
20213
|
+
draggedRow: string;
|
20154
20214
|
};
|
20155
20215
|
rating: {
|
20156
20216
|
root: string;
|
@@ -20517,6 +20577,7 @@ declare module "src/plugins/themes/bootstrap-integration/cssbootstrap" {
|
|
20517
20577
|
emptyRowsText: string;
|
20518
20578
|
emptyRowsButton: string;
|
20519
20579
|
ghostRow: string;
|
20580
|
+
draggedRow: string;
|
20520
20581
|
};
|
20521
20582
|
paneldynamic: {
|
20522
20583
|
root: string;
|
@@ -20881,6 +20942,7 @@ declare module "src/plugins/themes/bootstrap-material-integration/cssbootstrapma
|
|
20881
20942
|
emptyRowsText: string;
|
20882
20943
|
emptyRowsButton: string;
|
20883
20944
|
ghostRow: string;
|
20945
|
+
draggedRow: string;
|
20884
20946
|
};
|
20885
20947
|
paneldynamic: {
|
20886
20948
|
root: string;
|
@@ -21350,6 +21412,7 @@ declare module "src/entries/plugins" {
|
|
21350
21412
|
emptyRowsText: string;
|
21351
21413
|
emptyRowsButton: string;
|
21352
21414
|
ghostRow: string;
|
21415
|
+
draggedRow: string;
|
21353
21416
|
};
|
21354
21417
|
paneldynamic: {
|
21355
21418
|
root: string;
|
@@ -21712,6 +21775,7 @@ declare module "src/entries/plugins" {
|
|
21712
21775
|
emptyRowsText: string;
|
21713
21776
|
emptyRowsButton: string;
|
21714
21777
|
ghostRow: string;
|
21778
|
+
draggedRow: string;
|
21715
21779
|
};
|
21716
21780
|
paneldynamic: {
|
21717
21781
|
root: string;
|
@@ -21846,6 +21910,7 @@ declare module "packages/survey-core/src/localization/arabic" {
|
|
21846
21910
|
refuseItemText: string;
|
21847
21911
|
dontKnowItemText: string;
|
21848
21912
|
selectAllItemText: string;
|
21913
|
+
deselectAllItemText: string;
|
21849
21914
|
progressText: string;
|
21850
21915
|
indexText: string;
|
21851
21916
|
panelDynamicProgressText: string;
|
@@ -21865,6 +21930,7 @@ declare module "packages/survey-core/src/localization/arabic" {
|
|
21865
21930
|
numericError: string;
|
21866
21931
|
minError: string;
|
21867
21932
|
maxError: string;
|
21933
|
+
textNoDigitsAllow: string;
|
21868
21934
|
textMinLength: string;
|
21869
21935
|
textMaxLength: string;
|
21870
21936
|
textMinMaxLength: string;
|
@@ -21955,6 +22021,7 @@ declare module "packages/survey-core/src/localization/basque" {
|
|
21955
22021
|
refuseItemText: string;
|
21956
22022
|
dontKnowItemText: string;
|
21957
22023
|
selectAllItemText: string;
|
22024
|
+
deselectAllItemText: string;
|
21958
22025
|
progressText: string;
|
21959
22026
|
indexText: string;
|
21960
22027
|
panelDynamicProgressText: string;
|
@@ -21974,6 +22041,7 @@ declare module "packages/survey-core/src/localization/basque" {
|
|
21974
22041
|
numericError: string;
|
21975
22042
|
minError: string;
|
21976
22043
|
maxError: string;
|
22044
|
+
textNoDigitsAllow: string;
|
21977
22045
|
textMinLength: string;
|
21978
22046
|
textMaxLength: string;
|
21979
22047
|
textMinMaxLength: string;
|
@@ -22064,6 +22132,7 @@ declare module "packages/survey-core/src/localization/bulgarian" {
|
|
22064
22132
|
refuseItemText: string;
|
22065
22133
|
dontKnowItemText: string;
|
22066
22134
|
selectAllItemText: string;
|
22135
|
+
deselectAllItemText: string;
|
22067
22136
|
progressText: string;
|
22068
22137
|
indexText: string;
|
22069
22138
|
panelDynamicProgressText: string;
|
@@ -22083,6 +22152,7 @@ declare module "packages/survey-core/src/localization/bulgarian" {
|
|
22083
22152
|
numericError: string;
|
22084
22153
|
minError: string;
|
22085
22154
|
maxError: string;
|
22155
|
+
textNoDigitsAllow: string;
|
22086
22156
|
textMinLength: string;
|
22087
22157
|
textMaxLength: string;
|
22088
22158
|
textMinMaxLength: string;
|
@@ -22173,6 +22243,7 @@ declare module "packages/survey-core/src/localization/catalan" {
|
|
22173
22243
|
refuseItemText: string;
|
22174
22244
|
dontKnowItemText: string;
|
22175
22245
|
selectAllItemText: string;
|
22246
|
+
deselectAllItemText: string;
|
22176
22247
|
progressText: string;
|
22177
22248
|
indexText: string;
|
22178
22249
|
panelDynamicProgressText: string;
|
@@ -22192,6 +22263,7 @@ declare module "packages/survey-core/src/localization/catalan" {
|
|
22192
22263
|
numericError: string;
|
22193
22264
|
minError: string;
|
22194
22265
|
maxError: string;
|
22266
|
+
textNoDigitsAllow: string;
|
22195
22267
|
textMinLength: string;
|
22196
22268
|
textMaxLength: string;
|
22197
22269
|
textMinMaxLength: string;
|
@@ -22282,6 +22354,7 @@ declare module "packages/survey-core/src/localization/croatian" {
|
|
22282
22354
|
refuseItemText: string;
|
22283
22355
|
dontKnowItemText: string;
|
22284
22356
|
selectAllItemText: string;
|
22357
|
+
deselectAllItemText: string;
|
22285
22358
|
progressText: string;
|
22286
22359
|
indexText: string;
|
22287
22360
|
panelDynamicProgressText: string;
|
@@ -22301,6 +22374,7 @@ declare module "packages/survey-core/src/localization/croatian" {
|
|
22301
22374
|
numericError: string;
|
22302
22375
|
minError: string;
|
22303
22376
|
maxError: string;
|
22377
|
+
textNoDigitsAllow: string;
|
22304
22378
|
textMinLength: string;
|
22305
22379
|
textMaxLength: string;
|
22306
22380
|
textMinMaxLength: string;
|
@@ -22391,6 +22465,7 @@ declare module "packages/survey-core/src/localization/czech" {
|
|
22391
22465
|
refuseItemText: string;
|
22392
22466
|
dontKnowItemText: string;
|
22393
22467
|
selectAllItemText: string;
|
22468
|
+
deselectAllItemText: string;
|
22394
22469
|
progressText: string;
|
22395
22470
|
indexText: string;
|
22396
22471
|
panelDynamicProgressText: string;
|
@@ -22410,6 +22485,7 @@ declare module "packages/survey-core/src/localization/czech" {
|
|
22410
22485
|
numericError: string;
|
22411
22486
|
minError: string;
|
22412
22487
|
maxError: string;
|
22488
|
+
textNoDigitsAllow: string;
|
22413
22489
|
textMinLength: string;
|
22414
22490
|
textMaxLength: string;
|
22415
22491
|
textMinMaxLength: string;
|
@@ -22500,6 +22576,7 @@ declare module "packages/survey-core/src/localization/danish" {
|
|
22500
22576
|
refuseItemText: string;
|
22501
22577
|
dontKnowItemText: string;
|
22502
22578
|
selectAllItemText: string;
|
22579
|
+
deselectAllItemText: string;
|
22503
22580
|
progressText: string;
|
22504
22581
|
indexText: string;
|
22505
22582
|
panelDynamicProgressText: string;
|
@@ -22519,6 +22596,7 @@ declare module "packages/survey-core/src/localization/danish" {
|
|
22519
22596
|
numericError: string;
|
22520
22597
|
minError: string;
|
22521
22598
|
maxError: string;
|
22599
|
+
textNoDigitsAllow: string;
|
22522
22600
|
textMinLength: string;
|
22523
22601
|
textMaxLength: string;
|
22524
22602
|
textMinMaxLength: string;
|
@@ -22609,6 +22687,7 @@ declare module "packages/survey-core/src/localization/dutch" {
|
|
22609
22687
|
refuseItemText: string;
|
22610
22688
|
dontKnowItemText: string;
|
22611
22689
|
selectAllItemText: string;
|
22690
|
+
deselectAllItemText: string;
|
22612
22691
|
progressText: string;
|
22613
22692
|
indexText: string;
|
22614
22693
|
panelDynamicProgressText: string;
|
@@ -22628,6 +22707,7 @@ declare module "packages/survey-core/src/localization/dutch" {
|
|
22628
22707
|
numericError: string;
|
22629
22708
|
minError: string;
|
22630
22709
|
maxError: string;
|
22710
|
+
textNoDigitsAllow: string;
|
22631
22711
|
textMinLength: string;
|
22632
22712
|
textMaxLength: string;
|
22633
22713
|
textMinMaxLength: string;
|
@@ -22719,6 +22799,7 @@ declare module "packages/survey-core/src/localization/estonian" {
|
|
22719
22799
|
refuseItemText: string;
|
22720
22800
|
dontKnowItemText: string;
|
22721
22801
|
selectAllItemText: string;
|
22802
|
+
deselectAllItemText: string;
|
22722
22803
|
progressText: string;
|
22723
22804
|
indexText: string;
|
22724
22805
|
panelDynamicProgressText: string;
|
@@ -22738,6 +22819,7 @@ declare module "packages/survey-core/src/localization/estonian" {
|
|
22738
22819
|
numericError: string;
|
22739
22820
|
minError: string;
|
22740
22821
|
maxError: string;
|
22822
|
+
textNoDigitsAllow: string;
|
22741
22823
|
textMinLength: string;
|
22742
22824
|
textMaxLength: string;
|
22743
22825
|
textMinMaxLength: string;
|
@@ -22828,6 +22910,7 @@ declare module "packages/survey-core/src/localization/finnish" {
|
|
22828
22910
|
refuseItemText: string;
|
22829
22911
|
dontKnowItemText: string;
|
22830
22912
|
selectAllItemText: string;
|
22913
|
+
deselectAllItemText: string;
|
22831
22914
|
progressText: string;
|
22832
22915
|
indexText: string;
|
22833
22916
|
panelDynamicProgressText: string;
|
@@ -22847,6 +22930,7 @@ declare module "packages/survey-core/src/localization/finnish" {
|
|
22847
22930
|
numericError: string;
|
22848
22931
|
minError: string;
|
22849
22932
|
maxError: string;
|
22933
|
+
textNoDigitsAllow: string;
|
22850
22934
|
textMinLength: string;
|
22851
22935
|
textMaxLength: string;
|
22852
22936
|
textMinMaxLength: string;
|
@@ -22937,6 +23021,7 @@ declare module "packages/survey-core/src/localization/french" {
|
|
22937
23021
|
refuseItemText: string;
|
22938
23022
|
dontKnowItemText: string;
|
22939
23023
|
selectAllItemText: string;
|
23024
|
+
deselectAllItemText: string;
|
22940
23025
|
progressText: string;
|
22941
23026
|
indexText: string;
|
22942
23027
|
panelDynamicProgressText: string;
|
@@ -22956,6 +23041,7 @@ declare module "packages/survey-core/src/localization/french" {
|
|
22956
23041
|
numericError: string;
|
22957
23042
|
minError: string;
|
22958
23043
|
maxError: string;
|
23044
|
+
textNoDigitsAllow: string;
|
22959
23045
|
textMinLength: string;
|
22960
23046
|
textMaxLength: string;
|
22961
23047
|
textMinMaxLength: string;
|
@@ -23046,6 +23132,7 @@ declare module "packages/survey-core/src/localization/georgian" {
|
|
23046
23132
|
refuseItemText: string;
|
23047
23133
|
dontKnowItemText: string;
|
23048
23134
|
selectAllItemText: string;
|
23135
|
+
deselectAllItemText: string;
|
23049
23136
|
progressText: string;
|
23050
23137
|
indexText: string;
|
23051
23138
|
panelDynamicProgressText: string;
|
@@ -23065,6 +23152,7 @@ declare module "packages/survey-core/src/localization/georgian" {
|
|
23065
23152
|
numericError: string;
|
23066
23153
|
minError: string;
|
23067
23154
|
maxError: string;
|
23155
|
+
textNoDigitsAllow: string;
|
23068
23156
|
textMinLength: string;
|
23069
23157
|
textMaxLength: string;
|
23070
23158
|
textMinMaxLength: string;
|
@@ -23155,6 +23243,7 @@ declare module "packages/survey-core/src/localization/german" {
|
|
23155
23243
|
refuseItemText: string;
|
23156
23244
|
dontKnowItemText: string;
|
23157
23245
|
selectAllItemText: string;
|
23246
|
+
deselectAllItemText: string;
|
23158
23247
|
progressText: string;
|
23159
23248
|
indexText: string;
|
23160
23249
|
panelDynamicProgressText: string;
|
@@ -23174,6 +23263,7 @@ declare module "packages/survey-core/src/localization/german" {
|
|
23174
23263
|
numericError: string;
|
23175
23264
|
minError: string;
|
23176
23265
|
maxError: string;
|
23266
|
+
textNoDigitsAllow: string;
|
23177
23267
|
textMinLength: string;
|
23178
23268
|
textMaxLength: string;
|
23179
23269
|
textMinMaxLength: string;
|
@@ -23264,6 +23354,7 @@ declare module "packages/survey-core/src/localization/greek" {
|
|
23264
23354
|
refuseItemText: string;
|
23265
23355
|
dontKnowItemText: string;
|
23266
23356
|
selectAllItemText: string;
|
23357
|
+
deselectAllItemText: string;
|
23267
23358
|
progressText: string;
|
23268
23359
|
indexText: string;
|
23269
23360
|
panelDynamicProgressText: string;
|
@@ -23283,6 +23374,7 @@ declare module "packages/survey-core/src/localization/greek" {
|
|
23283
23374
|
numericError: string;
|
23284
23375
|
minError: string;
|
23285
23376
|
maxError: string;
|
23377
|
+
textNoDigitsAllow: string;
|
23286
23378
|
textMinLength: string;
|
23287
23379
|
textMaxLength: string;
|
23288
23380
|
textMinMaxLength: string;
|
@@ -23373,6 +23465,7 @@ declare module "packages/survey-core/src/localization/hebrew" {
|
|
23373
23465
|
refuseItemText: string;
|
23374
23466
|
dontKnowItemText: string;
|
23375
23467
|
selectAllItemText: string;
|
23468
|
+
deselectAllItemText: string;
|
23376
23469
|
progressText: string;
|
23377
23470
|
indexText: string;
|
23378
23471
|
panelDynamicProgressText: string;
|
@@ -23392,6 +23485,7 @@ declare module "packages/survey-core/src/localization/hebrew" {
|
|
23392
23485
|
numericError: string;
|
23393
23486
|
minError: string;
|
23394
23487
|
maxError: string;
|
23488
|
+
textNoDigitsAllow: string;
|
23395
23489
|
textMinLength: string;
|
23396
23490
|
textMaxLength: string;
|
23397
23491
|
textMinMaxLength: string;
|
@@ -23482,6 +23576,7 @@ declare module "packages/survey-core/src/localization/hindi" {
|
|
23482
23576
|
refuseItemText: string;
|
23483
23577
|
dontKnowItemText: string;
|
23484
23578
|
selectAllItemText: string;
|
23579
|
+
deselectAllItemText: string;
|
23485
23580
|
progressText: string;
|
23486
23581
|
indexText: string;
|
23487
23582
|
panelDynamicProgressText: string;
|
@@ -23501,6 +23596,7 @@ declare module "packages/survey-core/src/localization/hindi" {
|
|
23501
23596
|
numericError: string;
|
23502
23597
|
minError: string;
|
23503
23598
|
maxError: string;
|
23599
|
+
textNoDigitsAllow: string;
|
23504
23600
|
textMinLength: string;
|
23505
23601
|
textMaxLength: string;
|
23506
23602
|
textMinMaxLength: string;
|
@@ -23591,6 +23687,7 @@ declare module "packages/survey-core/src/localization/hungarian" {
|
|
23591
23687
|
refuseItemText: string;
|
23592
23688
|
dontKnowItemText: string;
|
23593
23689
|
selectAllItemText: string;
|
23690
|
+
deselectAllItemText: string;
|
23594
23691
|
progressText: string;
|
23595
23692
|
indexText: string;
|
23596
23693
|
panelDynamicProgressText: string;
|
@@ -23610,6 +23707,7 @@ declare module "packages/survey-core/src/localization/hungarian" {
|
|
23610
23707
|
numericError: string;
|
23611
23708
|
minError: string;
|
23612
23709
|
maxError: string;
|
23710
|
+
textNoDigitsAllow: string;
|
23613
23711
|
textMinLength: string;
|
23614
23712
|
textMaxLength: string;
|
23615
23713
|
textMinMaxLength: string;
|
@@ -23700,6 +23798,7 @@ declare module "packages/survey-core/src/localization/icelandic" {
|
|
23700
23798
|
refuseItemText: string;
|
23701
23799
|
dontKnowItemText: string;
|
23702
23800
|
selectAllItemText: string;
|
23801
|
+
deselectAllItemText: string;
|
23703
23802
|
progressText: string;
|
23704
23803
|
indexText: string;
|
23705
23804
|
panelDynamicProgressText: string;
|
@@ -23719,6 +23818,7 @@ declare module "packages/survey-core/src/localization/icelandic" {
|
|
23719
23818
|
numericError: string;
|
23720
23819
|
minError: string;
|
23721
23820
|
maxError: string;
|
23821
|
+
textNoDigitsAllow: string;
|
23722
23822
|
textMinLength: string;
|
23723
23823
|
textMaxLength: string;
|
23724
23824
|
textMinMaxLength: string;
|
@@ -23809,6 +23909,7 @@ declare module "packages/survey-core/src/localization/indonesian" {
|
|
23809
23909
|
refuseItemText: string;
|
23810
23910
|
dontKnowItemText: string;
|
23811
23911
|
selectAllItemText: string;
|
23912
|
+
deselectAllItemText: string;
|
23812
23913
|
progressText: string;
|
23813
23914
|
indexText: string;
|
23814
23915
|
panelDynamicProgressText: string;
|
@@ -23828,6 +23929,7 @@ declare module "packages/survey-core/src/localization/indonesian" {
|
|
23828
23929
|
numericError: string;
|
23829
23930
|
minError: string;
|
23830
23931
|
maxError: string;
|
23932
|
+
textNoDigitsAllow: string;
|
23831
23933
|
textMinLength: string;
|
23832
23934
|
textMaxLength: string;
|
23833
23935
|
textMinMaxLength: string;
|
@@ -23918,6 +24020,7 @@ declare module "packages/survey-core/src/localization/italian" {
|
|
23918
24020
|
refuseItemText: string;
|
23919
24021
|
dontKnowItemText: string;
|
23920
24022
|
selectAllItemText: string;
|
24023
|
+
deselectAllItemText: string;
|
23921
24024
|
progressText: string;
|
23922
24025
|
indexText: string;
|
23923
24026
|
panelDynamicProgressText: string;
|
@@ -23937,6 +24040,7 @@ declare module "packages/survey-core/src/localization/italian" {
|
|
23937
24040
|
numericError: string;
|
23938
24041
|
minError: string;
|
23939
24042
|
maxError: string;
|
24043
|
+
textNoDigitsAllow: string;
|
23940
24044
|
textMinLength: string;
|
23941
24045
|
textMaxLength: string;
|
23942
24046
|
textMinMaxLength: string;
|
@@ -24027,6 +24131,7 @@ declare module "packages/survey-core/src/localization/japanese" {
|
|
24027
24131
|
refuseItemText: string;
|
24028
24132
|
dontKnowItemText: string;
|
24029
24133
|
selectAllItemText: string;
|
24134
|
+
deselectAllItemText: string;
|
24030
24135
|
progressText: string;
|
24031
24136
|
indexText: string;
|
24032
24137
|
panelDynamicProgressText: string;
|
@@ -24046,6 +24151,7 @@ declare module "packages/survey-core/src/localization/japanese" {
|
|
24046
24151
|
numericError: string;
|
24047
24152
|
minError: string;
|
24048
24153
|
maxError: string;
|
24154
|
+
textNoDigitsAllow: string;
|
24049
24155
|
textMinLength: string;
|
24050
24156
|
textMaxLength: string;
|
24051
24157
|
textMinMaxLength: string;
|
@@ -24136,6 +24242,7 @@ declare module "packages/survey-core/src/localization/kazakh" {
|
|
24136
24242
|
refuseItemText: string;
|
24137
24243
|
dontKnowItemText: string;
|
24138
24244
|
selectAllItemText: string;
|
24245
|
+
deselectAllItemText: string;
|
24139
24246
|
progressText: string;
|
24140
24247
|
indexText: string;
|
24141
24248
|
panelDynamicProgressText: string;
|
@@ -24155,6 +24262,7 @@ declare module "packages/survey-core/src/localization/kazakh" {
|
|
24155
24262
|
numericError: string;
|
24156
24263
|
minError: string;
|
24157
24264
|
maxError: string;
|
24265
|
+
textNoDigitsAllow: string;
|
24158
24266
|
textMinLength: string;
|
24159
24267
|
textMaxLength: string;
|
24160
24268
|
textMinMaxLength: string;
|
@@ -24245,6 +24353,7 @@ declare module "packages/survey-core/src/localization/korean" {
|
|
24245
24353
|
refuseItemText: string;
|
24246
24354
|
dontKnowItemText: string;
|
24247
24355
|
selectAllItemText: string;
|
24356
|
+
deselectAllItemText: string;
|
24248
24357
|
progressText: string;
|
24249
24358
|
indexText: string;
|
24250
24359
|
panelDynamicProgressText: string;
|
@@ -24264,6 +24373,7 @@ declare module "packages/survey-core/src/localization/korean" {
|
|
24264
24373
|
numericError: string;
|
24265
24374
|
minError: string;
|
24266
24375
|
maxError: string;
|
24376
|
+
textNoDigitsAllow: string;
|
24267
24377
|
textMinLength: string;
|
24268
24378
|
textMaxLength: string;
|
24269
24379
|
textMinMaxLength: string;
|
@@ -24354,6 +24464,7 @@ declare module "packages/survey-core/src/localization/latvian" {
|
|
24354
24464
|
refuseItemText: string;
|
24355
24465
|
dontKnowItemText: string;
|
24356
24466
|
selectAllItemText: string;
|
24467
|
+
deselectAllItemText: string;
|
24357
24468
|
progressText: string;
|
24358
24469
|
indexText: string;
|
24359
24470
|
panelDynamicProgressText: string;
|
@@ -24373,6 +24484,7 @@ declare module "packages/survey-core/src/localization/latvian" {
|
|
24373
24484
|
numericError: string;
|
24374
24485
|
minError: string;
|
24375
24486
|
maxError: string;
|
24487
|
+
textNoDigitsAllow: string;
|
24376
24488
|
textMinLength: string;
|
24377
24489
|
textMaxLength: string;
|
24378
24490
|
textMinMaxLength: string;
|
@@ -24463,6 +24575,7 @@ declare module "packages/survey-core/src/localization/lithuanian" {
|
|
24463
24575
|
refuseItemText: string;
|
24464
24576
|
dontKnowItemText: string;
|
24465
24577
|
selectAllItemText: string;
|
24578
|
+
deselectAllItemText: string;
|
24466
24579
|
progressText: string;
|
24467
24580
|
indexText: string;
|
24468
24581
|
panelDynamicProgressText: string;
|
@@ -24482,6 +24595,7 @@ declare module "packages/survey-core/src/localization/lithuanian" {
|
|
24482
24595
|
numericError: string;
|
24483
24596
|
minError: string;
|
24484
24597
|
maxError: string;
|
24598
|
+
textNoDigitsAllow: string;
|
24485
24599
|
textMinLength: string;
|
24486
24600
|
textMaxLength: string;
|
24487
24601
|
textMinMaxLength: string;
|
@@ -24572,6 +24686,7 @@ declare module "packages/survey-core/src/localization/macedonian" {
|
|
24572
24686
|
refuseItemText: string;
|
24573
24687
|
dontKnowItemText: string;
|
24574
24688
|
selectAllItemText: string;
|
24689
|
+
deselectAllItemText: string;
|
24575
24690
|
progressText: string;
|
24576
24691
|
indexText: string;
|
24577
24692
|
panelDynamicProgressText: string;
|
@@ -24591,6 +24706,7 @@ declare module "packages/survey-core/src/localization/macedonian" {
|
|
24591
24706
|
numericError: string;
|
24592
24707
|
minError: string;
|
24593
24708
|
maxError: string;
|
24709
|
+
textNoDigitsAllow: string;
|
24594
24710
|
textMinLength: string;
|
24595
24711
|
textMaxLength: string;
|
24596
24712
|
textMinMaxLength: string;
|
@@ -24681,6 +24797,7 @@ declare module "packages/survey-core/src/localization/malay" {
|
|
24681
24797
|
refuseItemText: string;
|
24682
24798
|
dontKnowItemText: string;
|
24683
24799
|
selectAllItemText: string;
|
24800
|
+
deselectAllItemText: string;
|
24684
24801
|
progressText: string;
|
24685
24802
|
indexText: string;
|
24686
24803
|
panelDynamicProgressText: string;
|
@@ -24700,6 +24817,7 @@ declare module "packages/survey-core/src/localization/malay" {
|
|
24700
24817
|
numericError: string;
|
24701
24818
|
minError: string;
|
24702
24819
|
maxError: string;
|
24820
|
+
textNoDigitsAllow: string;
|
24703
24821
|
textMinLength: string;
|
24704
24822
|
textMaxLength: string;
|
24705
24823
|
textMinMaxLength: string;
|
@@ -24790,6 +24908,7 @@ declare module "packages/survey-core/src/localization/norwegian" {
|
|
24790
24908
|
refuseItemText: string;
|
24791
24909
|
dontKnowItemText: string;
|
24792
24910
|
selectAllItemText: string;
|
24911
|
+
deselectAllItemText: string;
|
24793
24912
|
progressText: string;
|
24794
24913
|
indexText: string;
|
24795
24914
|
panelDynamicProgressText: string;
|
@@ -24809,6 +24928,7 @@ declare module "packages/survey-core/src/localization/norwegian" {
|
|
24809
24928
|
numericError: string;
|
24810
24929
|
minError: string;
|
24811
24930
|
maxError: string;
|
24931
|
+
textNoDigitsAllow: string;
|
24812
24932
|
textMinLength: string;
|
24813
24933
|
textMaxLength: string;
|
24814
24934
|
textMinMaxLength: string;
|
@@ -24899,6 +25019,7 @@ declare module "packages/survey-core/src/localization/persian" {
|
|
24899
25019
|
refuseItemText: string;
|
24900
25020
|
dontKnowItemText: string;
|
24901
25021
|
selectAllItemText: string;
|
25022
|
+
deselectAllItemText: string;
|
24902
25023
|
progressText: string;
|
24903
25024
|
indexText: string;
|
24904
25025
|
panelDynamicProgressText: string;
|
@@ -24918,6 +25039,7 @@ declare module "packages/survey-core/src/localization/persian" {
|
|
24918
25039
|
numericError: string;
|
24919
25040
|
minError: string;
|
24920
25041
|
maxError: string;
|
25042
|
+
textNoDigitsAllow: string;
|
24921
25043
|
textMinLength: string;
|
24922
25044
|
textMaxLength: string;
|
24923
25045
|
textMinMaxLength: string;
|
@@ -25008,6 +25130,7 @@ declare module "packages/survey-core/src/localization/polish" {
|
|
25008
25130
|
refuseItemText: string;
|
25009
25131
|
dontKnowItemText: string;
|
25010
25132
|
selectAllItemText: string;
|
25133
|
+
deselectAllItemText: string;
|
25011
25134
|
progressText: string;
|
25012
25135
|
indexText: string;
|
25013
25136
|
panelDynamicProgressText: string;
|
@@ -25027,6 +25150,7 @@ declare module "packages/survey-core/src/localization/polish" {
|
|
25027
25150
|
numericError: string;
|
25028
25151
|
minError: string;
|
25029
25152
|
maxError: string;
|
25153
|
+
textNoDigitsAllow: string;
|
25030
25154
|
textMinLength: string;
|
25031
25155
|
textMaxLength: string;
|
25032
25156
|
textMinMaxLength: string;
|
@@ -25117,6 +25241,7 @@ declare module "packages/survey-core/src/localization/portuguese" {
|
|
25117
25241
|
refuseItemText: string;
|
25118
25242
|
dontKnowItemText: string;
|
25119
25243
|
selectAllItemText: string;
|
25244
|
+
deselectAllItemText: string;
|
25120
25245
|
progressText: string;
|
25121
25246
|
indexText: string;
|
25122
25247
|
panelDynamicProgressText: string;
|
@@ -25136,6 +25261,7 @@ declare module "packages/survey-core/src/localization/portuguese" {
|
|
25136
25261
|
numericError: string;
|
25137
25262
|
minError: string;
|
25138
25263
|
maxError: string;
|
25264
|
+
textNoDigitsAllow: string;
|
25139
25265
|
textMinLength: string;
|
25140
25266
|
textMaxLength: string;
|
25141
25267
|
textMinMaxLength: string;
|
@@ -25229,6 +25355,7 @@ declare module "packages/survey-core/src/localization/portuguese-br" {
|
|
25229
25355
|
refuseItemText: string;
|
25230
25356
|
dontKnowItemText: string;
|
25231
25357
|
selectAllItemText: string;
|
25358
|
+
deselectAllItemText: string;
|
25232
25359
|
progressText: string;
|
25233
25360
|
indexText: string;
|
25234
25361
|
panelDynamicProgressText: string;
|
@@ -25248,6 +25375,7 @@ declare module "packages/survey-core/src/localization/portuguese-br" {
|
|
25248
25375
|
numericError: string;
|
25249
25376
|
minError: string;
|
25250
25377
|
maxError: string;
|
25378
|
+
textNoDigitsAllow: string;
|
25251
25379
|
textMinLength: string;
|
25252
25380
|
textMaxLength: string;
|
25253
25381
|
textMinMaxLength: string;
|
@@ -25341,6 +25469,7 @@ declare module "packages/survey-core/src/localization/russian" {
|
|
25341
25469
|
refuseItemText: string;
|
25342
25470
|
dontKnowItemText: string;
|
25343
25471
|
selectAllItemText: string;
|
25472
|
+
deselectAllItemText: string;
|
25344
25473
|
progressText: string;
|
25345
25474
|
indexText: string;
|
25346
25475
|
panelDynamicProgressText: string;
|
@@ -25360,6 +25489,7 @@ declare module "packages/survey-core/src/localization/russian" {
|
|
25360
25489
|
numericError: string;
|
25361
25490
|
minError: string;
|
25362
25491
|
maxError: string;
|
25492
|
+
textNoDigitsAllow: string;
|
25363
25493
|
textMinLength: string;
|
25364
25494
|
textMaxLength: string;
|
25365
25495
|
textMinMaxLength: string;
|
@@ -25450,6 +25580,7 @@ declare module "packages/survey-core/src/localization/serbian" {
|
|
25450
25580
|
refuseItemText: string;
|
25451
25581
|
dontKnowItemText: string;
|
25452
25582
|
selectAllItemText: string;
|
25583
|
+
deselectAllItemText: string;
|
25453
25584
|
progressText: string;
|
25454
25585
|
indexText: string;
|
25455
25586
|
panelDynamicProgressText: string;
|
@@ -25469,6 +25600,7 @@ declare module "packages/survey-core/src/localization/serbian" {
|
|
25469
25600
|
numericError: string;
|
25470
25601
|
minError: string;
|
25471
25602
|
maxError: string;
|
25603
|
+
textNoDigitsAllow: string;
|
25472
25604
|
textMinLength: string;
|
25473
25605
|
textMaxLength: string;
|
25474
25606
|
textMinMaxLength: string;
|
@@ -25559,6 +25691,7 @@ declare module "packages/survey-core/src/localization/simplified-chinese" {
|
|
25559
25691
|
refuseItemText: string;
|
25560
25692
|
dontKnowItemText: string;
|
25561
25693
|
selectAllItemText: string;
|
25694
|
+
deselectAllItemText: string;
|
25562
25695
|
progressText: string;
|
25563
25696
|
indexText: string;
|
25564
25697
|
panelDynamicProgressText: string;
|
@@ -25578,6 +25711,7 @@ declare module "packages/survey-core/src/localization/simplified-chinese" {
|
|
25578
25711
|
numericError: string;
|
25579
25712
|
minError: string;
|
25580
25713
|
maxError: string;
|
25714
|
+
textNoDigitsAllow: string;
|
25581
25715
|
textMinLength: string;
|
25582
25716
|
textMaxLength: string;
|
25583
25717
|
textMinMaxLength: string;
|
@@ -25668,6 +25802,7 @@ declare module "packages/survey-core/src/localization/slovak" {
|
|
25668
25802
|
refuseItemText: string;
|
25669
25803
|
dontKnowItemText: string;
|
25670
25804
|
selectAllItemText: string;
|
25805
|
+
deselectAllItemText: string;
|
25671
25806
|
progressText: string;
|
25672
25807
|
indexText: string;
|
25673
25808
|
panelDynamicProgressText: string;
|
@@ -25687,6 +25822,7 @@ declare module "packages/survey-core/src/localization/slovak" {
|
|
25687
25822
|
numericError: string;
|
25688
25823
|
minError: string;
|
25689
25824
|
maxError: string;
|
25825
|
+
textNoDigitsAllow: string;
|
25690
25826
|
textMinLength: string;
|
25691
25827
|
textMaxLength: string;
|
25692
25828
|
textMinMaxLength: string;
|
@@ -25777,6 +25913,7 @@ declare module "packages/survey-core/src/localization/spanish" {
|
|
25777
25913
|
refuseItemText: string;
|
25778
25914
|
dontKnowItemText: string;
|
25779
25915
|
selectAllItemText: string;
|
25916
|
+
deselectAllItemText: string;
|
25780
25917
|
progressText: string;
|
25781
25918
|
indexText: string;
|
25782
25919
|
panelDynamicProgressText: string;
|
@@ -25796,6 +25933,7 @@ declare module "packages/survey-core/src/localization/spanish" {
|
|
25796
25933
|
numericError: string;
|
25797
25934
|
minError: string;
|
25798
25935
|
maxError: string;
|
25936
|
+
textNoDigitsAllow: string;
|
25799
25937
|
textMinLength: string;
|
25800
25938
|
textMaxLength: string;
|
25801
25939
|
textMinMaxLength: string;
|
@@ -25886,6 +26024,7 @@ declare module "packages/survey-core/src/localization/swahili" {
|
|
25886
26024
|
refuseItemText: string;
|
25887
26025
|
dontKnowItemText: string;
|
25888
26026
|
selectAllItemText: string;
|
26027
|
+
deselectAllItemText: string;
|
25889
26028
|
progressText: string;
|
25890
26029
|
indexText: string;
|
25891
26030
|
panelDynamicProgressText: string;
|
@@ -25905,6 +26044,7 @@ declare module "packages/survey-core/src/localization/swahili" {
|
|
25905
26044
|
numericError: string;
|
25906
26045
|
minError: string;
|
25907
26046
|
maxError: string;
|
26047
|
+
textNoDigitsAllow: string;
|
25908
26048
|
textMinLength: string;
|
25909
26049
|
textMaxLength: string;
|
25910
26050
|
textMinMaxLength: string;
|
@@ -25995,6 +26135,7 @@ declare module "packages/survey-core/src/localization/swedish" {
|
|
25995
26135
|
refuseItemText: string;
|
25996
26136
|
dontKnowItemText: string;
|
25997
26137
|
selectAllItemText: string;
|
26138
|
+
deselectAllItemText: string;
|
25998
26139
|
progressText: string;
|
25999
26140
|
indexText: string;
|
26000
26141
|
panelDynamicProgressText: string;
|
@@ -26014,6 +26155,7 @@ declare module "packages/survey-core/src/localization/swedish" {
|
|
26014
26155
|
numericError: string;
|
26015
26156
|
minError: string;
|
26016
26157
|
maxError: string;
|
26158
|
+
textNoDigitsAllow: string;
|
26017
26159
|
textMinLength: string;
|
26018
26160
|
textMaxLength: string;
|
26019
26161
|
textMinMaxLength: string;
|
@@ -26168,6 +26310,7 @@ declare module "packages/survey-core/src/localization/thai" {
|
|
26168
26310
|
refuseItemText: string;
|
26169
26311
|
dontKnowItemText: string;
|
26170
26312
|
selectAllItemText: string;
|
26313
|
+
deselectAllItemText: string;
|
26171
26314
|
progressText: string;
|
26172
26315
|
indexText: string;
|
26173
26316
|
panelDynamicProgressText: string;
|
@@ -26187,6 +26330,7 @@ declare module "packages/survey-core/src/localization/thai" {
|
|
26187
26330
|
numericError: string;
|
26188
26331
|
minError: string;
|
26189
26332
|
maxError: string;
|
26333
|
+
textNoDigitsAllow: string;
|
26190
26334
|
textMinLength: string;
|
26191
26335
|
textMaxLength: string;
|
26192
26336
|
textMinMaxLength: string;
|
@@ -26277,6 +26421,7 @@ declare module "packages/survey-core/src/localization/traditional-chinese" {
|
|
26277
26421
|
refuseItemText: string;
|
26278
26422
|
dontKnowItemText: string;
|
26279
26423
|
selectAllItemText: string;
|
26424
|
+
deselectAllItemText: string;
|
26280
26425
|
progressText: string;
|
26281
26426
|
indexText: string;
|
26282
26427
|
panelDynamicProgressText: string;
|
@@ -26296,6 +26441,7 @@ declare module "packages/survey-core/src/localization/traditional-chinese" {
|
|
26296
26441
|
numericError: string;
|
26297
26442
|
minError: string;
|
26298
26443
|
maxError: string;
|
26444
|
+
textNoDigitsAllow: string;
|
26299
26445
|
textMinLength: string;
|
26300
26446
|
textMaxLength: string;
|
26301
26447
|
textMinMaxLength: string;
|
@@ -26386,6 +26532,7 @@ declare module "packages/survey-core/src/localization/turkish" {
|
|
26386
26532
|
refuseItemText: string;
|
26387
26533
|
dontKnowItemText: string;
|
26388
26534
|
selectAllItemText: string;
|
26535
|
+
deselectAllItemText: string;
|
26389
26536
|
progressText: string;
|
26390
26537
|
indexText: string;
|
26391
26538
|
panelDynamicProgressText: string;
|
@@ -26405,6 +26552,7 @@ declare module "packages/survey-core/src/localization/turkish" {
|
|
26405
26552
|
numericError: string;
|
26406
26553
|
minError: string;
|
26407
26554
|
maxError: string;
|
26555
|
+
textNoDigitsAllow: string;
|
26408
26556
|
textMinLength: string;
|
26409
26557
|
textMaxLength: string;
|
26410
26558
|
textMinMaxLength: string;
|
@@ -26495,6 +26643,7 @@ declare module "packages/survey-core/src/localization/ukrainian" {
|
|
26495
26643
|
refuseItemText: string;
|
26496
26644
|
dontKnowItemText: string;
|
26497
26645
|
selectAllItemText: string;
|
26646
|
+
deselectAllItemText: string;
|
26498
26647
|
progressText: string;
|
26499
26648
|
indexText: string;
|
26500
26649
|
panelDynamicProgressText: string;
|
@@ -26514,6 +26663,7 @@ declare module "packages/survey-core/src/localization/ukrainian" {
|
|
26514
26663
|
numericError: string;
|
26515
26664
|
minError: string;
|
26516
26665
|
maxError: string;
|
26666
|
+
textNoDigitsAllow: string;
|
26517
26667
|
textMinLength: string;
|
26518
26668
|
textMaxLength: string;
|
26519
26669
|
textMinMaxLength: string;
|
@@ -26604,6 +26754,7 @@ declare module "packages/survey-core/src/localization/vietnamese" {
|
|
26604
26754
|
refuseItemText: string;
|
26605
26755
|
dontKnowItemText: string;
|
26606
26756
|
selectAllItemText: string;
|
26757
|
+
deselectAllItemText: string;
|
26607
26758
|
progressText: string;
|
26608
26759
|
indexText: string;
|
26609
26760
|
panelDynamicProgressText: string;
|
@@ -26623,6 +26774,7 @@ declare module "packages/survey-core/src/localization/vietnamese" {
|
|
26623
26774
|
numericError: string;
|
26624
26775
|
minError: string;
|
26625
26776
|
maxError: string;
|
26777
|
+
textNoDigitsAllow: string;
|
26626
26778
|
textMinLength: string;
|
26627
26779
|
textMaxLength: string;
|
26628
26780
|
textMinMaxLength: string;
|
@@ -26713,6 +26865,7 @@ declare module "packages/survey-core/src/localization/welsh" {
|
|
26713
26865
|
refuseItemText: string;
|
26714
26866
|
dontKnowItemText: string;
|
26715
26867
|
selectAllItemText: string;
|
26868
|
+
deselectAllItemText: string;
|
26716
26869
|
progressText: string;
|
26717
26870
|
indexText: string;
|
26718
26871
|
panelDynamicProgressText: string;
|
@@ -26732,6 +26885,7 @@ declare module "packages/survey-core/src/localization/welsh" {
|
|
26732
26885
|
numericError: string;
|
26733
26886
|
minError: string;
|
26734
26887
|
maxError: string;
|
26888
|
+
textNoDigitsAllow: string;
|
26735
26889
|
textMinLength: string;
|
26736
26890
|
textMaxLength: string;
|
26737
26891
|
textMinMaxLength: string;
|
@@ -26822,6 +26976,7 @@ declare module "packages/survey-core/src/localization/telugu" {
|
|
26822
26976
|
refuseItemText: string;
|
26823
26977
|
dontKnowItemText: string;
|
26824
26978
|
selectAllItemText: string;
|
26979
|
+
deselectAllItemText: string;
|
26825
26980
|
progressText: string;
|
26826
26981
|
indexText: string;
|
26827
26982
|
panelDynamicProgressText: string;
|
@@ -26841,6 +26996,7 @@ declare module "packages/survey-core/src/localization/telugu" {
|
|
26841
26996
|
numericError: string;
|
26842
26997
|
minError: string;
|
26843
26998
|
maxError: string;
|
26999
|
+
textNoDigitsAllow: string;
|
26844
27000
|
textMinLength: string;
|
26845
27001
|
textMaxLength: string;
|
26846
27002
|
textMinMaxLength: string;
|
@@ -26931,6 +27087,7 @@ declare module "packages/survey-core/src/localization/philippines" {
|
|
26931
27087
|
refuseItemText: string;
|
26932
27088
|
dontKnowItemText: string;
|
26933
27089
|
selectAllItemText: string;
|
27090
|
+
deselectAllItemText: string;
|
26934
27091
|
progressText: string;
|
26935
27092
|
indexText: string;
|
26936
27093
|
panelDynamicProgressText: string;
|
@@ -26950,6 +27107,7 @@ declare module "packages/survey-core/src/localization/philippines" {
|
|
26950
27107
|
numericError: string;
|
26951
27108
|
minError: string;
|
26952
27109
|
maxError: string;
|
27110
|
+
textNoDigitsAllow: string;
|
26953
27111
|
textMinLength: string;
|
26954
27112
|
textMaxLength: string;
|
26955
27113
|
textMinMaxLength: string;
|
@@ -27208,7 +27366,7 @@ declare module "packages/survey-react-ui/src/components/action-bar/action-bar-it
|
|
27208
27366
|
}
|
27209
27367
|
}
|
27210
27368
|
declare module "packages/survey-react-ui/src/components/popup/popup" {
|
27211
|
-
import { Base, PopupModel, PopupBaseViewModel
|
27369
|
+
import { Base, PopupModel, PopupBaseViewModel } from "src/entries/core";
|
27212
27370
|
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27213
27371
|
interface IPopupProps {
|
27214
27372
|
model: PopupModel;
|
@@ -27247,8 +27405,6 @@ declare module "packages/survey-react-ui/src/components/popup/popup" {
|
|
27247
27405
|
export class PopupDropdownContainer extends PopupContainer {
|
27248
27406
|
protected renderHeaderPopup(popupModel: PopupBaseViewModel): JSX.Element | null;
|
27249
27407
|
}
|
27250
|
-
export function showModal(componentName: string, data: any, onApply: () => boolean, onCancel?: () => void, cssClass?: string, title?: string, displayMode?: "popup" | "overlay"): PopupBaseViewModel;
|
27251
|
-
export function showDialog(dialogOptions: IDialogOptions, rootElement?: HTMLElement): PopupBaseViewModel;
|
27252
27408
|
}
|
27253
27409
|
declare module "packages/survey-react-ui/src/components/action-bar/action-bar-item-dropdown" {
|
27254
27410
|
import { SurveyActionBarItem } from "packages/survey-react-ui/src/components/action-bar/action-bar-item";
|
@@ -27620,6 +27776,29 @@ declare module "packages/survey-react-ui/src/svgbundle" {
|
|
27620
27776
|
render(): JSX.Element;
|
27621
27777
|
}
|
27622
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
|
+
}
|
27623
27802
|
declare module "packages/survey-react-ui/src/reactSurvey" {
|
27624
27803
|
import { Base, Question, PageModel, SurveyError, SurveyModel, IAttachKey2clickOptions } from "src/entries/core";
|
27625
27804
|
import { ISurveyCreator } from "packages/survey-react-ui/src/reactquestion";
|
@@ -28759,6 +28938,7 @@ declare module "packages/survey-react-ui/entries/react-ui-model" {
|
|
28759
28938
|
export { SurveyLocStringEditor } from "packages/survey-react-ui/src/string-editor";
|
28760
28939
|
export { LoadingIndicatorComponent } from "packages/survey-react-ui/src/components/loading-indicator";
|
28761
28940
|
export { SvgBundleComponent } from "packages/survey-react-ui/src/svgbundle";
|
28941
|
+
export { PopupModal } from "packages/survey-react-ui/src/components/popup/popup-modal";
|
28762
28942
|
}
|
28763
28943
|
declare module "src/entries/react" {
|
28764
28944
|
export * from "src/entries/core";
|