survey-react 1.12.7 → 1.12.9
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 +62 -33
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +39 -8
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +40 -9
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +278 -65
- package/survey.react.js +2275 -969
- 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" {
|
@@ -892,7 +903,10 @@ declare module "packages/survey-core/src/utils/utils" {
|
|
892
903
|
function activateLazyRenderingChecks(id: string): void;
|
893
904
|
function navigateToUrl(url: string): void;
|
894
905
|
function wrapUrlForBackgroundImage(url: string): string;
|
906
|
+
const renamedIcons: any;
|
895
907
|
function getIconNameFromProxy(iconName: string): string;
|
908
|
+
export function getNewIconName(iconName: string): string;
|
909
|
+
export function getCustomNewIconNameIfExists(iconName: string): string;
|
896
910
|
function createSvg(size: number | string, width: number, height: number, iconName: string, svgElem: any, title: string): void;
|
897
911
|
export function getSafeUrl(url: string): string;
|
898
912
|
export function unwrap<T>(value: T | (() => T)): T;
|
@@ -948,7 +962,7 @@ declare module "packages/survey-core/src/utils/utils" {
|
|
948
962
|
export function prepareElementForVerticalAnimation(el: HTMLElement): void;
|
949
963
|
export function cleanHtmlElementAfterAnimation(el: HTMLElement): void;
|
950
964
|
export function roundTo2Decimals(number: number): number;
|
951
|
-
export { mergeValues, getElementWidth, isContainerVisible, classesToSelector, compareVersions, confirmAction, confirmActionAsync, detectIEOrEdge, detectIEBrowser, loadFileFromBase64, isMobile, isShadowDOM, getElement, isElementVisible, findScrollableParent, activateLazyRenderingChecks, navigateToUrl, wrapUrlForBackgroundImage, createSvg, getIconNameFromProxy, increaseHeightByContent, getOriginalEvent, preventDefaults, findParentByClassNames, getFirstVisibleChild, chooseFiles };
|
965
|
+
export { mergeValues, getElementWidth, isContainerVisible, classesToSelector, compareVersions, confirmAction, confirmActionAsync, detectIEOrEdge, detectIEBrowser, loadFileFromBase64, isMobile, isShadowDOM, getElement, isElementVisible, findScrollableParent, activateLazyRenderingChecks, navigateToUrl, wrapUrlForBackgroundImage, createSvg, getIconNameFromProxy, increaseHeightByContent, getOriginalEvent, preventDefaults, findParentByClassNames, getFirstVisibleChild, chooseFiles, renamedIcons };
|
952
966
|
}
|
953
967
|
declare module "packages/survey-core/src/actions/container" {
|
954
968
|
import { Base } from "packages/survey-core/src/base";
|
@@ -1599,6 +1613,7 @@ declare module "packages/survey-core/src/defaultCss/defaultV2Css" {
|
|
1599
1613
|
number: string;
|
1600
1614
|
title: string;
|
1601
1615
|
titleExpandable: string;
|
1616
|
+
titleExpandableSvg: string;
|
1602
1617
|
titleNumInline: string;
|
1603
1618
|
titleExpanded: string;
|
1604
1619
|
titleCollapsed: string;
|
@@ -1744,6 +1759,7 @@ declare module "packages/survey-core/src/defaultCss/defaultV2Css" {
|
|
1744
1759
|
titleOnError: string;
|
1745
1760
|
title: string;
|
1746
1761
|
titleExpandable: string;
|
1762
|
+
titleExpandableSvg: string;
|
1747
1763
|
titleExpanded: string;
|
1748
1764
|
titleCollapsed: string;
|
1749
1765
|
titleDisabled: string;
|
@@ -2129,6 +2145,7 @@ declare module "packages/survey-core/src/defaultCss/defaultV2Css" {
|
|
2129
2145
|
emptyRowsSection: string;
|
2130
2146
|
iconDrag: string;
|
2131
2147
|
ghostRow: string;
|
2148
|
+
draggedRow: string;
|
2132
2149
|
emptyCell: string;
|
2133
2150
|
verticalCell: string;
|
2134
2151
|
cellQuestionWrapper: string;
|
@@ -3861,6 +3878,7 @@ declare module "packages/survey-core/src/panel" {
|
|
3861
3878
|
get hasEditButton(): boolean;
|
3862
3879
|
cancelPreview(): void;
|
3863
3880
|
get cssTitle(): string;
|
3881
|
+
getCssTitleExpandableSvg(): string;
|
3864
3882
|
get showErrorsAbovePanel(): boolean;
|
3865
3883
|
protected getCssError(cssClasses: any): string;
|
3866
3884
|
protected onVisibleChanged(): void;
|
@@ -3958,6 +3976,10 @@ declare module "packages/survey-core/src/question_file" {
|
|
3958
3976
|
protected uploadFiles(files: File[]): void;
|
3959
3977
|
protected loadPreview(newValue: any): void;
|
3960
3978
|
protected onChangeQuestionValue(newValue: any): void;
|
3979
|
+
protected getIsQuestionReady(): boolean;
|
3980
|
+
private isFileLoadingValue;
|
3981
|
+
protected get isFileLoading(): boolean;
|
3982
|
+
protected set isFileLoading(val: boolean);
|
3961
3983
|
}
|
3962
3984
|
export class QuestionFilePage extends Base {
|
3963
3985
|
private question;
|
@@ -4008,9 +4030,6 @@ declare module "packages/survey-core/src/question_file" {
|
|
4008
4030
|
cleanAction: Action;
|
4009
4031
|
actionsContainer: ActionContainer;
|
4010
4032
|
get supportFileNavigator(): boolean;
|
4011
|
-
private isFileLoadingValue;
|
4012
|
-
protected get isFileLoading(): boolean;
|
4013
|
-
protected set isFileLoading(val: boolean);
|
4014
4033
|
get fileNavigatorVisible(): boolean;
|
4015
4034
|
private get pagesCount();
|
4016
4035
|
get actionsContainerVisible(): boolean;
|
@@ -4037,6 +4056,7 @@ declare module "packages/survey-core/src/question_file" {
|
|
4037
4056
|
private prevPreviewLength;
|
4038
4057
|
private previewValueChanged;
|
4039
4058
|
getType(): string;
|
4059
|
+
protected onChangeQuestionValue(newValue: any): void;
|
4040
4060
|
/**
|
4041
4061
|
* Disable this property only to implement a custom preview.
|
4042
4062
|
*
|
@@ -4155,7 +4175,6 @@ declare module "packages/survey-core/src/question_file" {
|
|
4155
4175
|
protected get camera(): Camera;
|
4156
4176
|
canPreviewImage(fileItem: any): boolean;
|
4157
4177
|
protected loadPreview(newValue: any): void;
|
4158
|
-
protected getIsQuestionReady(): boolean;
|
4159
4178
|
private allFilesOk;
|
4160
4179
|
private isFileImage;
|
4161
4180
|
getPlainData(options?: IPlainDataOptions): IQuestionPlainData;
|
@@ -5801,6 +5820,7 @@ declare module "packages/survey-core/src/dragdrop/matrix-rows" {
|
|
5801
5820
|
protected get draggedElementType(): string;
|
5802
5821
|
protected restoreUserSelectValue: string;
|
5803
5822
|
protected onStartDrag(): void;
|
5823
|
+
private get shortcutClass();
|
5804
5824
|
protected createDraggedElementShortcut(text: string, draggedElementNode: HTMLElement, event: PointerEvent): HTMLElement;
|
5805
5825
|
private fromIndex;
|
5806
5826
|
private toIndex;
|
@@ -5896,6 +5916,7 @@ declare module "packages/survey-core/src/question_matrixdropdownrendered" {
|
|
5896
5916
|
private rootElement;
|
5897
5917
|
setRootElement(val: HTMLTableRowElement): void;
|
5898
5918
|
getRootElement(): HTMLTableRowElement;
|
5919
|
+
focusCell(cellIndex: number): void;
|
5899
5920
|
}
|
5900
5921
|
export class QuestionMatrixDropdownRenderedErrorRow extends QuestionMatrixDropdownRenderedRow {
|
5901
5922
|
isErrorsRow: boolean;
|
@@ -5941,6 +5962,7 @@ declare module "packages/survey-core/src/question_matrixdropdownrendered" {
|
|
5941
5962
|
private getRenderedDataRowCount;
|
5942
5963
|
onRemovedRow(row: MatrixDropdownRowModelBase): void;
|
5943
5964
|
onDetailPanelChangeVisibility(row: MatrixDropdownRowModelBase, isShowing: boolean): void;
|
5965
|
+
focusActionCell(row: MatrixDropdownRowModelBase, actionCellIndex: number): void;
|
5944
5966
|
private getRenderedRowIndex;
|
5945
5967
|
protected buildRowsActions(): void;
|
5946
5968
|
protected createRenderedRow(cssClasses: any, isDetailRow?: boolean): QuestionMatrixDropdownRenderedRow;
|
@@ -5979,7 +6001,7 @@ declare module "packages/survey-core/src/question_matrixdropdownrendered" {
|
|
5979
6001
|
private setHeaderCellCssClasses;
|
5980
6002
|
private createHeaderCell;
|
5981
6003
|
private setHeaderCell;
|
5982
|
-
private
|
6004
|
+
private setCellWidth;
|
5983
6005
|
private createTextCell;
|
5984
6006
|
private createEmptyCell;
|
5985
6007
|
}
|
@@ -6192,6 +6214,8 @@ declare module "packages/survey-core/src/question_matrixdynamic" {
|
|
6192
6214
|
protected isValueSurveyElement(val: any): boolean;
|
6193
6215
|
private addRowCore;
|
6194
6216
|
private getDefaultRowValue;
|
6217
|
+
focusAddBUtton(): void;
|
6218
|
+
getActionCellIndex(row: MatrixDropdownRowModelBase): number;
|
6195
6219
|
removeRowUI(value: any): void;
|
6196
6220
|
isRequireConfirmOnRowDelete(index: number): boolean;
|
6197
6221
|
/**
|
@@ -6199,7 +6223,7 @@ declare module "packages/survey-core/src/question_matrixdynamic" {
|
|
6199
6223
|
* @param index A zero-based row index.
|
6200
6224
|
* @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
6225
|
*/
|
6202
|
-
removeRow(index: number, confirmDelete?: boolean): void;
|
6226
|
+
removeRow(index: number, confirmDelete?: boolean, onRowRemoved?: () => void): void;
|
6203
6227
|
private removeRowAsync;
|
6204
6228
|
private removeRowCore;
|
6205
6229
|
/**
|
@@ -7217,12 +7241,14 @@ declare module "packages/survey-core/src/question_signaturepad" {
|
|
7217
7241
|
valueWasChangedFromLastUpload: boolean;
|
7218
7242
|
private resizeCanvas;
|
7219
7243
|
private scaleCanvas;
|
7220
|
-
private fromDataUrl;
|
7221
7244
|
private fromUrl;
|
7222
|
-
private
|
7223
|
-
private
|
7245
|
+
private fromDataUrl;
|
7246
|
+
private _loadedData;
|
7247
|
+
get loadedData(): string;
|
7224
7248
|
protected loadPreview(newValue: any): void;
|
7249
|
+
protected onChangeQuestionValue(newValue: any): void;
|
7225
7250
|
onSurveyLoad(): void;
|
7251
|
+
private updateValueHandler;
|
7226
7252
|
initSignaturePad(el: HTMLElement): void;
|
7227
7253
|
destroySignaturePad(el: HTMLElement): void;
|
7228
7254
|
/**
|
@@ -7738,10 +7764,22 @@ declare module "packages/survey-core/src/survey-events-api" {
|
|
7738
7764
|
}
|
7739
7765
|
export interface GetQuestionNoEvent extends QuestionEventMixin {
|
7740
7766
|
/**
|
7741
|
-
*
|
7767
|
+
* Obsolete. Use `options.number` instead.
|
7742
7768
|
*/
|
7743
7769
|
no: string;
|
7744
7770
|
}
|
7771
|
+
export interface GetQuestionNumberEvent extends GetQuestionNoEvent {
|
7772
|
+
/**
|
7773
|
+
* 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.
|
7774
|
+
*/
|
7775
|
+
number: string;
|
7776
|
+
}
|
7777
|
+
export interface GetPageNumberEvent extends PageEventMixin {
|
7778
|
+
/**
|
7779
|
+
* 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.
|
7780
|
+
*/
|
7781
|
+
number: string;
|
7782
|
+
}
|
7745
7783
|
export interface ProgressTextEvent {
|
7746
7784
|
/**
|
7747
7785
|
* 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.
|
@@ -8465,6 +8503,7 @@ declare module "packages/survey-core/src/page" {
|
|
8465
8503
|
get isPage(): boolean;
|
8466
8504
|
get no(): string;
|
8467
8505
|
get cssTitleNumber(): string;
|
8506
|
+
getCssTitleExpandableSvg(): string;
|
8468
8507
|
get cssRequiredText(): string;
|
8469
8508
|
protected canShowPageNumber(): boolean;
|
8470
8509
|
protected canShowTitle(): boolean;
|
@@ -9620,6 +9659,27 @@ declare module "packages/survey-core/src/surveyToc" {
|
|
9620
9659
|
dispose(): void;
|
9621
9660
|
}
|
9622
9661
|
}
|
9662
|
+
declare module "packages/survey-core/src/svgbundle" {
|
9663
|
+
class SvgIconData {
|
9664
|
+
[key: string]: string;
|
9665
|
+
}
|
9666
|
+
export class SvgIconRegistry {
|
9667
|
+
icons: SvgIconData;
|
9668
|
+
private iconPrefix;
|
9669
|
+
private processId;
|
9670
|
+
registerIconFromSymbol(iconId: string, iconSymbolSvg: string): void;
|
9671
|
+
registerIconFromSvgViaElement(iconId: string, iconSvg: string, iconPrefix?: string): void;
|
9672
|
+
registerIconFromSvg(iconId: string, iconSvg: string, iconPrefix?: string): boolean;
|
9673
|
+
registerIconsFromFolder(r: any): void;
|
9674
|
+
iconsRenderedHtml(): string;
|
9675
|
+
}
|
9676
|
+
export var SvgRegistry: SvgIconRegistry;
|
9677
|
+
export var SvgBundleViewModel: any;
|
9678
|
+
export var svgBundle: {
|
9679
|
+
V1?: string;
|
9680
|
+
V2?: string;
|
9681
|
+
};
|
9682
|
+
}
|
9623
9683
|
declare module "packages/survey-core/src/survey" {
|
9624
9684
|
import { JsonError } from "packages/survey-core/src/jsonobject";
|
9625
9685
|
import { Base, EventBase } from "packages/survey-core/src/base";
|
@@ -9641,7 +9701,7 @@ declare module "packages/survey-core/src/survey" {
|
|
9641
9701
|
import { ActionContainer } from "packages/survey-core/src/actions/container";
|
9642
9702
|
import { QuestionPanelDynamicModel } from "packages/survey-core/src/question_paneldynamic";
|
9643
9703
|
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,
|
9704
|
+
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
9705
|
import { QuestionMatrixDropdownModelBase } from "packages/survey-core/src/question_matrixdropdownbase";
|
9646
9706
|
import { QuestionMatrixDynamicModel } from "packages/survey-core/src/question_matrixdynamic";
|
9647
9707
|
import { QuestionFileModel } from "packages/survey-core/src/question_file";
|
@@ -9931,7 +9991,7 @@ declare module "packages/survey-core/src/survey" {
|
|
9931
9991
|
*
|
9932
9992
|
* For information on event handler parameters, refer to descriptions within the interface.
|
9933
9993
|
*
|
9934
|
-
* If you want to modify question numbers, handle the [`
|
9994
|
+
* If you want to modify question numbers, handle the [`onGetQuestionNumber`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#onGetQuestionNumber) event.
|
9935
9995
|
* @see requiredText
|
9936
9996
|
*/
|
9937
9997
|
onGetQuestionTitle: EventBase<SurveyModel, GetQuestionTitleEvent>;
|
@@ -9944,7 +10004,7 @@ declare module "packages/survey-core/src/survey" {
|
|
9944
10004
|
*
|
9945
10005
|
* [View Demo](https://surveyjs.io/form-library/examples/survey-titletagnames/ (linkStyle))
|
9946
10006
|
* @see onGetQuestionTitle
|
9947
|
-
* @see
|
10007
|
+
* @see onGetQuestionNumber
|
9948
10008
|
*/
|
9949
10009
|
onGetTitleTagName: EventBase<SurveyModel, GetTitleTagNameEvent>;
|
9950
10010
|
/**
|
@@ -9956,7 +10016,21 @@ declare module "packages/survey-core/src/survey" {
|
|
9956
10016
|
* @see onGetQuestionTitle
|
9957
10017
|
* @see questionStartIndex
|
9958
10018
|
*/
|
9959
|
-
|
10019
|
+
onGetQuestionNumber: EventBase<SurveyModel, GetQuestionNumberEvent>;
|
10020
|
+
/**
|
10021
|
+
* This event is obsolete. Use the [`onGetQuestionNumber`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#onGetQuestionNumber) event instead.
|
10022
|
+
*/
|
10023
|
+
onGetQuestionNo: EventBase<SurveyModel, GetQuestionNumberEvent>;
|
10024
|
+
/**
|
10025
|
+
* An event that is raised before the survey calculates a page number. Handle this event to modify page numbers.
|
10026
|
+
*
|
10027
|
+
* This event is raised only if the [`showPageNumbers`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#showPageNumbers) property is enabled.
|
10028
|
+
*
|
10029
|
+
* For information on event handler parameters, refer to descriptions within the interface.
|
10030
|
+
* @see onGetQuestionTitle
|
10031
|
+
* @see questionStartIndex
|
10032
|
+
*/
|
10033
|
+
onGetPageNumber: EventBase<SurveyModel, GetPageNumberEvent>;
|
9960
10034
|
/**
|
9961
10035
|
* An event that is raised before the survey displays progress text. Handle this event to change the progress text in code.
|
9962
10036
|
* @see showProgressBar
|
@@ -11091,10 +11165,12 @@ declare module "packages/survey-core/src/survey" {
|
|
11091
11165
|
get locQuestionTitleTemplate(): LocalizableString;
|
11092
11166
|
getUpdatedQuestionTitle(question: Question, title: string): string;
|
11093
11167
|
getUpdatedQuestionNo(question: Question, no: string): string;
|
11168
|
+
getUpdatedPageNo(page: PageModel, no: string): string;
|
11094
11169
|
/**
|
11095
11170
|
* Specifies whether page titles contain page numbers.
|
11096
11171
|
*
|
11097
11172
|
* [View Demo](https://surveyjs.io/form-library/examples/how-to-number-pages-and-questions/ (linkStyle))
|
11173
|
+
* @see onGetPageNumber
|
11098
11174
|
*/
|
11099
11175
|
get showPageNumbers(): boolean;
|
11100
11176
|
set showPageNumbers(value: boolean);
|
@@ -11110,6 +11186,7 @@ declare module "packages/survey-core/src/survey" {
|
|
11110
11186
|
* [View Demo](https://surveyjs.io/form-library/examples/how-to-number-pages-and-questions/ (linkStyle))
|
11111
11187
|
*
|
11112
11188
|
* 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.
|
11189
|
+
* @see onGetQuestionNumber
|
11113
11190
|
*/
|
11114
11191
|
get showQuestionNumbers(): string | boolean;
|
11115
11192
|
set showQuestionNumbers(value: string | boolean);
|
@@ -12536,6 +12613,7 @@ declare module "packages/survey-core/src/survey" {
|
|
12536
12613
|
getContainerContent(container: LayoutElementContainer): any[];
|
12537
12614
|
processPopupVisiblityChanged(question: Question, popup: PopupModel<any>, visible: boolean): void;
|
12538
12615
|
processOpenDropdownMenu(question: Question, options: IDropdownMenuOptions): void;
|
12616
|
+
getCssTitleExpandableSvg(): string;
|
12539
12617
|
/**
|
12540
12618
|
* Applies a specified theme to the survey.
|
12541
12619
|
*
|
@@ -12558,6 +12636,7 @@ declare module "packages/survey-core/src/survey" {
|
|
12558
12636
|
addScrollEventListener(): void;
|
12559
12637
|
removeScrollEventListener(): void;
|
12560
12638
|
questionErrorComponent: string;
|
12639
|
+
protected registerIcons(): void;
|
12561
12640
|
}
|
12562
12641
|
}
|
12563
12642
|
declare module "packages/survey-core/src/survey-element" {
|
@@ -12691,6 +12770,7 @@ declare module "packages/survey-core/src/survey-element" {
|
|
12691
12770
|
get parentQuestion(): E;
|
12692
12771
|
setParentQuestion(val: E): void;
|
12693
12772
|
protected onParentQuestionChanged(): void;
|
12773
|
+
updateElementVisibility(): void;
|
12694
12774
|
get skeletonComponentName(): string;
|
12695
12775
|
/**
|
12696
12776
|
* Gets and sets the survey element's expand state.
|
@@ -12827,6 +12907,7 @@ declare module "packages/survey-core/src/survey-element" {
|
|
12827
12907
|
get cssClasses(): any;
|
12828
12908
|
get cssTitleNumber(): any;
|
12829
12909
|
get cssRequiredText(): any;
|
12910
|
+
getCssTitleExpandableSvg(): string;
|
12830
12911
|
protected calcCssClasses(css: any): any;
|
12831
12912
|
protected updateElementCssCore(cssClasses: any): void;
|
12832
12913
|
get cssError(): string;
|
@@ -13216,6 +13297,7 @@ declare module "packages/survey-core/src/question" {
|
|
13216
13297
|
set visible(val: boolean);
|
13217
13298
|
protected onVisibleChanged(): void;
|
13218
13299
|
protected notifyStateChanged(prevState: string): void;
|
13300
|
+
updateElementVisibility(): void;
|
13219
13301
|
private updateIsVisibleProp;
|
13220
13302
|
/**
|
13221
13303
|
* Specifies whether to use display names for question values in placeholders.
|
@@ -14054,6 +14136,7 @@ declare module "packages/survey-core/src/itemvalue" {
|
|
14054
14136
|
set locOwner(value: ILocalizableOwner);
|
14055
14137
|
get value(): any;
|
14056
14138
|
set value(newValue: any);
|
14139
|
+
private setValue;
|
14057
14140
|
get hasText(): boolean;
|
14058
14141
|
get pureText(): string;
|
14059
14142
|
set pureText(val: string);
|
@@ -14064,7 +14147,7 @@ declare module "packages/survey-core/src/itemvalue" {
|
|
14064
14147
|
private canSerializeValue;
|
14065
14148
|
getData(): any;
|
14066
14149
|
toJSON(): any;
|
14067
|
-
setData(value: any): void;
|
14150
|
+
setData(value: any, isNewItem?: boolean): void;
|
14068
14151
|
get visibleIf(): string;
|
14069
14152
|
set visibleIf(val: string);
|
14070
14153
|
get enableIf(): string;
|
@@ -14349,6 +14432,7 @@ declare module "packages/survey-core/src/question_matrixdropdownbase" {
|
|
14349
14432
|
getFilteredProperties(): any;
|
14350
14433
|
private applyRowVariablesToValues;
|
14351
14434
|
runCondition(values: HashTable<any>, properties: HashTable<any>, rowsVisibleIf?: string): void;
|
14435
|
+
updateElementVisibility(): void;
|
14352
14436
|
protected setRowsVisibleIfValues(values: any): void;
|
14353
14437
|
getNamesWithDefaultValues(): Array<string>;
|
14354
14438
|
clearValue(keepComment?: boolean): void;
|
@@ -14617,6 +14701,7 @@ declare module "packages/survey-core/src/question_matrixdropdownbase" {
|
|
14617
14701
|
private runFuncForCellQuestions;
|
14618
14702
|
runCondition(values: HashTable<any>, properties: HashTable<any>): void;
|
14619
14703
|
runTriggers(name: string, value: any): void;
|
14704
|
+
updateElementVisibility(): void;
|
14620
14705
|
protected shouldRunColumnExpression(): boolean;
|
14621
14706
|
protected runCellsCondition(values: HashTable<any>, properties: HashTable<any>): void;
|
14622
14707
|
protected runConditionsForColumns(values: HashTable<any>, properties: HashTable<any>): boolean;
|
@@ -14795,6 +14880,11 @@ declare module "packages/survey-core/src/question_matrixdropdownbase" {
|
|
14795
14880
|
get showHorizontalScroll(): boolean;
|
14796
14881
|
protected onMobileChanged(): void;
|
14797
14882
|
getRootCss(): string;
|
14883
|
+
afterRenderQuestionElement(el: HTMLElement): void;
|
14884
|
+
beforeDestroyQuestionElement(el: HTMLElement): void;
|
14885
|
+
private rootElement;
|
14886
|
+
setRootElement(val: HTMLElement): void;
|
14887
|
+
getRootElement(): HTMLElement;
|
14798
14888
|
}
|
14799
14889
|
}
|
14800
14890
|
declare module "packages/survey-core/src/base-interfaces" {
|
@@ -14902,6 +14992,7 @@ declare module "packages/survey-core/src/base-interfaces" {
|
|
14902
14992
|
questionTitlePattern: string;
|
14903
14993
|
getUpdatedQuestionTitle(question: IQuestion, title: string): string;
|
14904
14994
|
getUpdatedQuestionNo(question: IQuestion, no: string): string;
|
14995
|
+
getUpdatedPageNo(question: IPage, no: string): string;
|
14905
14996
|
getUpdatedElementTitleActions(element: ISurveyElement, titleActions: Array<IAction>): Array<IAction>;
|
14906
14997
|
getUpdatedMatrixRowActions(question: QuestionMatrixDropdownModelBase, row: MatrixDropdownRowModelBase, actions: Array<IAction>): Array<IAction>;
|
14907
14998
|
getUpdatedPanelFooterActions(panel: PanelModel, actions: Array<IAction>, question?: QuestionPanelDynamicModel): Array<IAction>;
|
@@ -15042,6 +15133,7 @@ declare module "packages/survey-core/src/base-interfaces" {
|
|
15042
15133
|
dispose(): void;
|
15043
15134
|
needResponsiveWidth(): boolean;
|
15044
15135
|
updateRootStyle(): void;
|
15136
|
+
updateElementVisibility(): void;
|
15045
15137
|
}
|
15046
15138
|
export interface IQuestion extends IElement, ISurveyErrorOwner {
|
15047
15139
|
hasTitle: boolean;
|
@@ -15306,7 +15398,7 @@ declare module "packages/survey-core/src/jsonobject" {
|
|
15306
15398
|
set defaultValue(newValue: any);
|
15307
15399
|
isDefaultValue(value: any): boolean;
|
15308
15400
|
isDefaultValueByObj(obj: Base, value: any): boolean;
|
15309
|
-
getSerializableValue(obj: any): any;
|
15401
|
+
getSerializableValue(obj: any, storeDefaults?: boolean): any;
|
15310
15402
|
getValue(obj: any): any;
|
15311
15403
|
getPropertyValue(obj: any): any;
|
15312
15404
|
get hasToUseSetValue(): string | ((obj: any, value: any, jsonConv: JsonObject) => any);
|
@@ -15575,7 +15667,7 @@ declare module "packages/survey-core/src/localizablestring" {
|
|
15575
15667
|
searchIndex: number;
|
15576
15668
|
disableLocalization: boolean;
|
15577
15669
|
defaultValue: string;
|
15578
|
-
constructor(owner: ILocalizableOwner, useMarkdown?: boolean, name?: string);
|
15670
|
+
constructor(owner: ILocalizableOwner, useMarkdown?: boolean, name?: string, locName?: string);
|
15579
15671
|
getIsMultiple(): boolean;
|
15580
15672
|
get locale(): string;
|
15581
15673
|
strChanged(): void;
|
@@ -15605,7 +15697,7 @@ declare module "packages/survey-core/src/localizablestring" {
|
|
15605
15697
|
hasNonDefaultText(): boolean;
|
15606
15698
|
getLocales(): Array<string>;
|
15607
15699
|
getJson(): any;
|
15608
|
-
setJson(value: any): void;
|
15700
|
+
setJson(value: any, isLoading?: boolean): void;
|
15609
15701
|
get renderAs(): string;
|
15610
15702
|
get renderAsData(): any;
|
15611
15703
|
equals(obj: any): boolean;
|
@@ -15674,7 +15766,7 @@ declare module "packages/survey-core/src/base" {
|
|
15674
15766
|
getValueNameByPropertyName(propertyName: string): string;
|
15675
15767
|
getPropertiesByValueName(valueName: string): Array<string>;
|
15676
15768
|
getJson(): any;
|
15677
|
-
setJson(value: any): void;
|
15769
|
+
setJson(value: any, isLoading?: boolean): void;
|
15678
15770
|
private fillProperties;
|
15679
15771
|
private onChangedJSON;
|
15680
15772
|
}
|
@@ -16744,6 +16836,7 @@ declare module "packages/survey-core/src/settings" {
|
|
16744
16836
|
* @see [settings.serialization](https://surveyjs.io/form-library/documentation/api-reference/settings#serialization)
|
16745
16837
|
*/
|
16746
16838
|
parseNumber: (stringValue: any, numericValue: number) => number;
|
16839
|
+
useLegacyIcons: boolean;
|
16747
16840
|
};
|
16748
16841
|
}
|
16749
16842
|
declare module "packages/survey-core/src/question_matrixdropdown" {
|
@@ -17166,7 +17259,7 @@ declare module "packages/survey-core/src/question_matrix" {
|
|
17166
17259
|
get columns(): Array<any>;
|
17167
17260
|
private getCellRowColumnValue;
|
17168
17261
|
getJson(): any;
|
17169
|
-
setJson(value: any): void;
|
17262
|
+
setJson(value: any, isLoading?: boolean): void;
|
17170
17263
|
locStrsChanged(): void;
|
17171
17264
|
private runFuncOnLocs;
|
17172
17265
|
protected createString(): LocalizableString;
|
@@ -17441,6 +17534,7 @@ declare module "packages/survey-core/src/question_checkbox" {
|
|
17441
17534
|
selectAll(): void;
|
17442
17535
|
clickItemHandler(item: ItemValue, checked?: boolean): void;
|
17443
17536
|
protected isItemSelectedCore(item: ItemValue): boolean;
|
17537
|
+
protected convertFuncValuetoQuestionValue(val: any): any;
|
17444
17538
|
private getRealValue;
|
17445
17539
|
get isValueArray(): boolean;
|
17446
17540
|
/**
|
@@ -19295,7 +19389,7 @@ declare module "packages/survey-core/entries/chunks/model" {
|
|
19295
19389
|
export { DropdownMultiSelectListModel } from "packages/survey-core/src/dropdownMultiSelectListModel";
|
19296
19390
|
export { QuestionButtonGroupModel, ButtonGroupItemModel, ButtonGroupItemValue } from "packages/survey-core/src/question_buttongroup";
|
19297
19391
|
export { IsMobile, IsTouch, _setIsTouch } from "packages/survey-core/src/utils/devices";
|
19298
|
-
export { confirmAction, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, chooseFiles, sanitizeEditableContent, prepareElementForVerticalAnimation, cleanHtmlElementAfterAnimation, classesToSelector, IAttachKey2clickOptions } from "packages/survey-core/src/utils/utils";
|
19392
|
+
export { confirmAction, confirmActionAsync, detectIEOrEdge, doKey2ClickUp, doKey2ClickDown, doKey2ClickBlur, loadFileFromBase64, increaseHeightByContent, createSvg, chooseFiles, sanitizeEditableContent, prepareElementForVerticalAnimation, cleanHtmlElementAfterAnimation, classesToSelector, IAttachKey2clickOptions, renamedIcons, getIconNameFromProxy } from "packages/survey-core/src/utils/utils";
|
19299
19393
|
export { InputMaskBase } from "packages/survey-core/src/mask/mask_base";
|
19300
19394
|
export { InputMaskPattern } from "packages/survey-core/src/mask/mask_pattern";
|
19301
19395
|
export { InputMaskNumeric } from "packages/survey-core/src/mask/mask_numeric";
|
@@ -19433,6 +19527,7 @@ declare module "src/defaultCss/cssstandard" {
|
|
19433
19527
|
requiredText: string;
|
19434
19528
|
title: string;
|
19435
19529
|
titleExpandable: string;
|
19530
|
+
titleExpandableSvg: string;
|
19436
19531
|
titleExpanded: string;
|
19437
19532
|
titleCollapsed: string;
|
19438
19533
|
number: string;
|
@@ -19452,6 +19547,7 @@ declare module "src/defaultCss/cssstandard" {
|
|
19452
19547
|
panel: {
|
19453
19548
|
title: string;
|
19454
19549
|
titleExpandable: string;
|
19550
|
+
titleExpandableSvg: string;
|
19455
19551
|
titleExpanded: string;
|
19456
19552
|
titleCollapsed: string;
|
19457
19553
|
titleOnError: string;
|
@@ -19619,6 +19715,7 @@ declare module "src/defaultCss/cssstandard" {
|
|
19619
19715
|
emptyRowsText: string;
|
19620
19716
|
emptyRowsButton: string;
|
19621
19717
|
ghostRow: string;
|
19718
|
+
draggedRow: string;
|
19622
19719
|
};
|
19623
19720
|
paneldynamic: {
|
19624
19721
|
root: string;
|
@@ -19815,6 +19912,7 @@ declare module "src/defaultCss/cssmodern" {
|
|
19815
19912
|
panel: {
|
19816
19913
|
title: string;
|
19817
19914
|
titleExpandable: string;
|
19915
|
+
titleExpandableSvg: string;
|
19818
19916
|
titleExpanded: string;
|
19819
19917
|
titleCollapsed: string;
|
19820
19918
|
titleOnError: string;
|
@@ -19892,6 +19990,7 @@ declare module "src/defaultCss/cssmodern" {
|
|
19892
19990
|
titleOnError: string;
|
19893
19991
|
title: string;
|
19894
19992
|
titleExpandable: string;
|
19993
|
+
titleExpandableSvg: string;
|
19895
19994
|
titleExpanded: string;
|
19896
19995
|
titleCollapsed: string;
|
19897
19996
|
icon: string;
|
@@ -20152,6 +20251,7 @@ declare module "src/defaultCss/cssmodern" {
|
|
20152
20251
|
emptyRowsText: string;
|
20153
20252
|
emptyRowsButton: string;
|
20154
20253
|
ghostRow: string;
|
20254
|
+
draggedRow: string;
|
20155
20255
|
};
|
20156
20256
|
rating: {
|
20157
20257
|
root: string;
|
@@ -20241,23 +20341,6 @@ declare module "src/defaultCss/cssmodern" {
|
|
20241
20341
|
};
|
20242
20342
|
};
|
20243
20343
|
}
|
20244
|
-
declare module "packages/survey-core/src/svgbundle" {
|
20245
|
-
class SvgIconData {
|
20246
|
-
[key: string]: string;
|
20247
|
-
}
|
20248
|
-
export class SvgIconRegistry {
|
20249
|
-
icons: SvgIconData;
|
20250
|
-
private iconPrefix;
|
20251
|
-
private processId;
|
20252
|
-
registerIconFromSymbol(iconId: string, iconSymbolSvg: string): void;
|
20253
|
-
registerIconFromSvgViaElement(iconId: string, iconSvg: string, iconPrefix?: string): void;
|
20254
|
-
registerIconFromSvg(iconId: string, iconSvg: string, iconPrefix?: string): boolean;
|
20255
|
-
registerIconsFromFolder(r: any): void;
|
20256
|
-
iconsRenderedHtml(): string;
|
20257
|
-
}
|
20258
|
-
export var SvgRegistry: SvgIconRegistry;
|
20259
|
-
export var SvgBundleViewModel: any;
|
20260
|
-
}
|
20261
20344
|
declare module "packages/survey-core/entries/chunks/core-wo-model" {
|
20262
20345
|
export * from "packages/survey-core/entries/chunks/model";
|
20263
20346
|
export * from "packages/survey-core/src/svgbundle";
|
@@ -20337,6 +20420,7 @@ declare module "src/plugins/themes/bootstrap-integration/cssbootstrap" {
|
|
20337
20420
|
titleLeftRoot: string;
|
20338
20421
|
title: string;
|
20339
20422
|
titleExpandable: string;
|
20423
|
+
titleExpandableSvg: string;
|
20340
20424
|
titleExpanded: string;
|
20341
20425
|
titleCollapsed: string;
|
20342
20426
|
number: string;
|
@@ -20354,6 +20438,7 @@ declare module "src/plugins/themes/bootstrap-integration/cssbootstrap" {
|
|
20354
20438
|
panel: {
|
20355
20439
|
title: string;
|
20356
20440
|
titleExpandable: string;
|
20441
|
+
titleExpandableSvg: string;
|
20357
20442
|
titleExpanded: string;
|
20358
20443
|
titleCollapsed: string;
|
20359
20444
|
titleOnError: string;
|
@@ -20518,6 +20603,7 @@ declare module "src/plugins/themes/bootstrap-integration/cssbootstrap" {
|
|
20518
20603
|
emptyRowsText: string;
|
20519
20604
|
emptyRowsButton: string;
|
20520
20605
|
ghostRow: string;
|
20606
|
+
draggedRow: string;
|
20521
20607
|
};
|
20522
20608
|
paneldynamic: {
|
20523
20609
|
root: string;
|
@@ -20697,6 +20783,7 @@ declare module "src/plugins/themes/bootstrap-material-integration/cssbootstrapma
|
|
20697
20783
|
requiredText: string;
|
20698
20784
|
title: string;
|
20699
20785
|
titleExpandable: string;
|
20786
|
+
titleExpandableSvg: string;
|
20700
20787
|
titleExpanded: string;
|
20701
20788
|
titleCollapsed: string;
|
20702
20789
|
number: string;
|
@@ -20713,6 +20800,7 @@ declare module "src/plugins/themes/bootstrap-material-integration/cssbootstrapma
|
|
20713
20800
|
panel: {
|
20714
20801
|
title: string;
|
20715
20802
|
titleExpandable: string;
|
20803
|
+
titleExpandableSvg: string;
|
20716
20804
|
titleExpanded: string;
|
20717
20805
|
titleCollapsed: string;
|
20718
20806
|
titleOnError: string;
|
@@ -20882,6 +20970,7 @@ declare module "src/plugins/themes/bootstrap-material-integration/cssbootstrapma
|
|
20882
20970
|
emptyRowsText: string;
|
20883
20971
|
emptyRowsButton: string;
|
20884
20972
|
ghostRow: string;
|
20973
|
+
draggedRow: string;
|
20885
20974
|
};
|
20886
20975
|
paneldynamic: {
|
20887
20976
|
root: string;
|
@@ -21170,6 +21259,7 @@ declare module "src/entries/plugins" {
|
|
21170
21259
|
titleLeftRoot: string;
|
21171
21260
|
title: string;
|
21172
21261
|
titleExpandable: string;
|
21262
|
+
titleExpandableSvg: string;
|
21173
21263
|
titleExpanded: string;
|
21174
21264
|
titleCollapsed: string;
|
21175
21265
|
number: string;
|
@@ -21187,6 +21277,7 @@ declare module "src/entries/plugins" {
|
|
21187
21277
|
panel: {
|
21188
21278
|
title: string;
|
21189
21279
|
titleExpandable: string;
|
21280
|
+
titleExpandableSvg: string;
|
21190
21281
|
titleExpanded: string;
|
21191
21282
|
titleCollapsed: string;
|
21192
21283
|
titleOnError: string;
|
@@ -21351,6 +21442,7 @@ declare module "src/entries/plugins" {
|
|
21351
21442
|
emptyRowsText: string;
|
21352
21443
|
emptyRowsButton: string;
|
21353
21444
|
ghostRow: string;
|
21445
|
+
draggedRow: string;
|
21354
21446
|
};
|
21355
21447
|
paneldynamic: {
|
21356
21448
|
root: string;
|
@@ -21528,6 +21620,7 @@ declare module "src/entries/plugins" {
|
|
21528
21620
|
requiredText: string;
|
21529
21621
|
title: string;
|
21530
21622
|
titleExpandable: string;
|
21623
|
+
titleExpandableSvg: string;
|
21531
21624
|
titleExpanded: string;
|
21532
21625
|
titleCollapsed: string;
|
21533
21626
|
number: string;
|
@@ -21544,6 +21637,7 @@ declare module "src/entries/plugins" {
|
|
21544
21637
|
panel: {
|
21545
21638
|
title: string;
|
21546
21639
|
titleExpandable: string;
|
21640
|
+
titleExpandableSvg: string;
|
21547
21641
|
titleExpanded: string;
|
21548
21642
|
titleCollapsed: string;
|
21549
21643
|
titleOnError: string;
|
@@ -21713,6 +21807,7 @@ declare module "src/entries/plugins" {
|
|
21713
21807
|
emptyRowsText: string;
|
21714
21808
|
emptyRowsButton: string;
|
21715
21809
|
ghostRow: string;
|
21810
|
+
draggedRow: string;
|
21716
21811
|
};
|
21717
21812
|
paneldynamic: {
|
21718
21813
|
root: string;
|
@@ -21847,6 +21942,7 @@ declare module "packages/survey-core/src/localization/arabic" {
|
|
21847
21942
|
refuseItemText: string;
|
21848
21943
|
dontKnowItemText: string;
|
21849
21944
|
selectAllItemText: string;
|
21945
|
+
deselectAllItemText: string;
|
21850
21946
|
progressText: string;
|
21851
21947
|
indexText: string;
|
21852
21948
|
panelDynamicProgressText: string;
|
@@ -21866,6 +21962,7 @@ declare module "packages/survey-core/src/localization/arabic" {
|
|
21866
21962
|
numericError: string;
|
21867
21963
|
minError: string;
|
21868
21964
|
maxError: string;
|
21965
|
+
textNoDigitsAllow: string;
|
21869
21966
|
textMinLength: string;
|
21870
21967
|
textMaxLength: string;
|
21871
21968
|
textMinMaxLength: string;
|
@@ -21956,6 +22053,7 @@ declare module "packages/survey-core/src/localization/basque" {
|
|
21956
22053
|
refuseItemText: string;
|
21957
22054
|
dontKnowItemText: string;
|
21958
22055
|
selectAllItemText: string;
|
22056
|
+
deselectAllItemText: string;
|
21959
22057
|
progressText: string;
|
21960
22058
|
indexText: string;
|
21961
22059
|
panelDynamicProgressText: string;
|
@@ -21975,6 +22073,7 @@ declare module "packages/survey-core/src/localization/basque" {
|
|
21975
22073
|
numericError: string;
|
21976
22074
|
minError: string;
|
21977
22075
|
maxError: string;
|
22076
|
+
textNoDigitsAllow: string;
|
21978
22077
|
textMinLength: string;
|
21979
22078
|
textMaxLength: string;
|
21980
22079
|
textMinMaxLength: string;
|
@@ -22065,6 +22164,7 @@ declare module "packages/survey-core/src/localization/bulgarian" {
|
|
22065
22164
|
refuseItemText: string;
|
22066
22165
|
dontKnowItemText: string;
|
22067
22166
|
selectAllItemText: string;
|
22167
|
+
deselectAllItemText: string;
|
22068
22168
|
progressText: string;
|
22069
22169
|
indexText: string;
|
22070
22170
|
panelDynamicProgressText: string;
|
@@ -22084,6 +22184,7 @@ declare module "packages/survey-core/src/localization/bulgarian" {
|
|
22084
22184
|
numericError: string;
|
22085
22185
|
minError: string;
|
22086
22186
|
maxError: string;
|
22187
|
+
textNoDigitsAllow: string;
|
22087
22188
|
textMinLength: string;
|
22088
22189
|
textMaxLength: string;
|
22089
22190
|
textMinMaxLength: string;
|
@@ -22174,6 +22275,7 @@ declare module "packages/survey-core/src/localization/catalan" {
|
|
22174
22275
|
refuseItemText: string;
|
22175
22276
|
dontKnowItemText: string;
|
22176
22277
|
selectAllItemText: string;
|
22278
|
+
deselectAllItemText: string;
|
22177
22279
|
progressText: string;
|
22178
22280
|
indexText: string;
|
22179
22281
|
panelDynamicProgressText: string;
|
@@ -22193,6 +22295,7 @@ declare module "packages/survey-core/src/localization/catalan" {
|
|
22193
22295
|
numericError: string;
|
22194
22296
|
minError: string;
|
22195
22297
|
maxError: string;
|
22298
|
+
textNoDigitsAllow: string;
|
22196
22299
|
textMinLength: string;
|
22197
22300
|
textMaxLength: string;
|
22198
22301
|
textMinMaxLength: string;
|
@@ -22283,6 +22386,7 @@ declare module "packages/survey-core/src/localization/croatian" {
|
|
22283
22386
|
refuseItemText: string;
|
22284
22387
|
dontKnowItemText: string;
|
22285
22388
|
selectAllItemText: string;
|
22389
|
+
deselectAllItemText: string;
|
22286
22390
|
progressText: string;
|
22287
22391
|
indexText: string;
|
22288
22392
|
panelDynamicProgressText: string;
|
@@ -22302,6 +22406,7 @@ declare module "packages/survey-core/src/localization/croatian" {
|
|
22302
22406
|
numericError: string;
|
22303
22407
|
minError: string;
|
22304
22408
|
maxError: string;
|
22409
|
+
textNoDigitsAllow: string;
|
22305
22410
|
textMinLength: string;
|
22306
22411
|
textMaxLength: string;
|
22307
22412
|
textMinMaxLength: string;
|
@@ -22392,6 +22497,7 @@ declare module "packages/survey-core/src/localization/czech" {
|
|
22392
22497
|
refuseItemText: string;
|
22393
22498
|
dontKnowItemText: string;
|
22394
22499
|
selectAllItemText: string;
|
22500
|
+
deselectAllItemText: string;
|
22395
22501
|
progressText: string;
|
22396
22502
|
indexText: string;
|
22397
22503
|
panelDynamicProgressText: string;
|
@@ -22411,6 +22517,7 @@ declare module "packages/survey-core/src/localization/czech" {
|
|
22411
22517
|
numericError: string;
|
22412
22518
|
minError: string;
|
22413
22519
|
maxError: string;
|
22520
|
+
textNoDigitsAllow: string;
|
22414
22521
|
textMinLength: string;
|
22415
22522
|
textMaxLength: string;
|
22416
22523
|
textMinMaxLength: string;
|
@@ -22501,6 +22608,7 @@ declare module "packages/survey-core/src/localization/danish" {
|
|
22501
22608
|
refuseItemText: string;
|
22502
22609
|
dontKnowItemText: string;
|
22503
22610
|
selectAllItemText: string;
|
22611
|
+
deselectAllItemText: string;
|
22504
22612
|
progressText: string;
|
22505
22613
|
indexText: string;
|
22506
22614
|
panelDynamicProgressText: string;
|
@@ -22520,6 +22628,7 @@ declare module "packages/survey-core/src/localization/danish" {
|
|
22520
22628
|
numericError: string;
|
22521
22629
|
minError: string;
|
22522
22630
|
maxError: string;
|
22631
|
+
textNoDigitsAllow: string;
|
22523
22632
|
textMinLength: string;
|
22524
22633
|
textMaxLength: string;
|
22525
22634
|
textMinMaxLength: string;
|
@@ -22610,6 +22719,7 @@ declare module "packages/survey-core/src/localization/dutch" {
|
|
22610
22719
|
refuseItemText: string;
|
22611
22720
|
dontKnowItemText: string;
|
22612
22721
|
selectAllItemText: string;
|
22722
|
+
deselectAllItemText: string;
|
22613
22723
|
progressText: string;
|
22614
22724
|
indexText: string;
|
22615
22725
|
panelDynamicProgressText: string;
|
@@ -22629,6 +22739,7 @@ declare module "packages/survey-core/src/localization/dutch" {
|
|
22629
22739
|
numericError: string;
|
22630
22740
|
minError: string;
|
22631
22741
|
maxError: string;
|
22742
|
+
textNoDigitsAllow: string;
|
22632
22743
|
textMinLength: string;
|
22633
22744
|
textMaxLength: string;
|
22634
22745
|
textMinMaxLength: string;
|
@@ -22720,6 +22831,7 @@ declare module "packages/survey-core/src/localization/estonian" {
|
|
22720
22831
|
refuseItemText: string;
|
22721
22832
|
dontKnowItemText: string;
|
22722
22833
|
selectAllItemText: string;
|
22834
|
+
deselectAllItemText: string;
|
22723
22835
|
progressText: string;
|
22724
22836
|
indexText: string;
|
22725
22837
|
panelDynamicProgressText: string;
|
@@ -22739,6 +22851,7 @@ declare module "packages/survey-core/src/localization/estonian" {
|
|
22739
22851
|
numericError: string;
|
22740
22852
|
minError: string;
|
22741
22853
|
maxError: string;
|
22854
|
+
textNoDigitsAllow: string;
|
22742
22855
|
textMinLength: string;
|
22743
22856
|
textMaxLength: string;
|
22744
22857
|
textMinMaxLength: string;
|
@@ -22829,6 +22942,7 @@ declare module "packages/survey-core/src/localization/finnish" {
|
|
22829
22942
|
refuseItemText: string;
|
22830
22943
|
dontKnowItemText: string;
|
22831
22944
|
selectAllItemText: string;
|
22945
|
+
deselectAllItemText: string;
|
22832
22946
|
progressText: string;
|
22833
22947
|
indexText: string;
|
22834
22948
|
panelDynamicProgressText: string;
|
@@ -22848,6 +22962,7 @@ declare module "packages/survey-core/src/localization/finnish" {
|
|
22848
22962
|
numericError: string;
|
22849
22963
|
minError: string;
|
22850
22964
|
maxError: string;
|
22965
|
+
textNoDigitsAllow: string;
|
22851
22966
|
textMinLength: string;
|
22852
22967
|
textMaxLength: string;
|
22853
22968
|
textMinMaxLength: string;
|
@@ -22938,6 +23053,7 @@ declare module "packages/survey-core/src/localization/french" {
|
|
22938
23053
|
refuseItemText: string;
|
22939
23054
|
dontKnowItemText: string;
|
22940
23055
|
selectAllItemText: string;
|
23056
|
+
deselectAllItemText: string;
|
22941
23057
|
progressText: string;
|
22942
23058
|
indexText: string;
|
22943
23059
|
panelDynamicProgressText: string;
|
@@ -22957,6 +23073,7 @@ declare module "packages/survey-core/src/localization/french" {
|
|
22957
23073
|
numericError: string;
|
22958
23074
|
minError: string;
|
22959
23075
|
maxError: string;
|
23076
|
+
textNoDigitsAllow: string;
|
22960
23077
|
textMinLength: string;
|
22961
23078
|
textMaxLength: string;
|
22962
23079
|
textMinMaxLength: string;
|
@@ -23047,6 +23164,7 @@ declare module "packages/survey-core/src/localization/georgian" {
|
|
23047
23164
|
refuseItemText: string;
|
23048
23165
|
dontKnowItemText: string;
|
23049
23166
|
selectAllItemText: string;
|
23167
|
+
deselectAllItemText: string;
|
23050
23168
|
progressText: string;
|
23051
23169
|
indexText: string;
|
23052
23170
|
panelDynamicProgressText: string;
|
@@ -23066,6 +23184,7 @@ declare module "packages/survey-core/src/localization/georgian" {
|
|
23066
23184
|
numericError: string;
|
23067
23185
|
minError: string;
|
23068
23186
|
maxError: string;
|
23187
|
+
textNoDigitsAllow: string;
|
23069
23188
|
textMinLength: string;
|
23070
23189
|
textMaxLength: string;
|
23071
23190
|
textMinMaxLength: string;
|
@@ -23156,6 +23275,7 @@ declare module "packages/survey-core/src/localization/german" {
|
|
23156
23275
|
refuseItemText: string;
|
23157
23276
|
dontKnowItemText: string;
|
23158
23277
|
selectAllItemText: string;
|
23278
|
+
deselectAllItemText: string;
|
23159
23279
|
progressText: string;
|
23160
23280
|
indexText: string;
|
23161
23281
|
panelDynamicProgressText: string;
|
@@ -23175,6 +23295,7 @@ declare module "packages/survey-core/src/localization/german" {
|
|
23175
23295
|
numericError: string;
|
23176
23296
|
minError: string;
|
23177
23297
|
maxError: string;
|
23298
|
+
textNoDigitsAllow: string;
|
23178
23299
|
textMinLength: string;
|
23179
23300
|
textMaxLength: string;
|
23180
23301
|
textMinMaxLength: string;
|
@@ -23265,6 +23386,7 @@ declare module "packages/survey-core/src/localization/greek" {
|
|
23265
23386
|
refuseItemText: string;
|
23266
23387
|
dontKnowItemText: string;
|
23267
23388
|
selectAllItemText: string;
|
23389
|
+
deselectAllItemText: string;
|
23268
23390
|
progressText: string;
|
23269
23391
|
indexText: string;
|
23270
23392
|
panelDynamicProgressText: string;
|
@@ -23284,6 +23406,7 @@ declare module "packages/survey-core/src/localization/greek" {
|
|
23284
23406
|
numericError: string;
|
23285
23407
|
minError: string;
|
23286
23408
|
maxError: string;
|
23409
|
+
textNoDigitsAllow: string;
|
23287
23410
|
textMinLength: string;
|
23288
23411
|
textMaxLength: string;
|
23289
23412
|
textMinMaxLength: string;
|
@@ -23374,6 +23497,7 @@ declare module "packages/survey-core/src/localization/hebrew" {
|
|
23374
23497
|
refuseItemText: string;
|
23375
23498
|
dontKnowItemText: string;
|
23376
23499
|
selectAllItemText: string;
|
23500
|
+
deselectAllItemText: string;
|
23377
23501
|
progressText: string;
|
23378
23502
|
indexText: string;
|
23379
23503
|
panelDynamicProgressText: string;
|
@@ -23393,6 +23517,7 @@ declare module "packages/survey-core/src/localization/hebrew" {
|
|
23393
23517
|
numericError: string;
|
23394
23518
|
minError: string;
|
23395
23519
|
maxError: string;
|
23520
|
+
textNoDigitsAllow: string;
|
23396
23521
|
textMinLength: string;
|
23397
23522
|
textMaxLength: string;
|
23398
23523
|
textMinMaxLength: string;
|
@@ -23483,6 +23608,7 @@ declare module "packages/survey-core/src/localization/hindi" {
|
|
23483
23608
|
refuseItemText: string;
|
23484
23609
|
dontKnowItemText: string;
|
23485
23610
|
selectAllItemText: string;
|
23611
|
+
deselectAllItemText: string;
|
23486
23612
|
progressText: string;
|
23487
23613
|
indexText: string;
|
23488
23614
|
panelDynamicProgressText: string;
|
@@ -23502,6 +23628,7 @@ declare module "packages/survey-core/src/localization/hindi" {
|
|
23502
23628
|
numericError: string;
|
23503
23629
|
minError: string;
|
23504
23630
|
maxError: string;
|
23631
|
+
textNoDigitsAllow: string;
|
23505
23632
|
textMinLength: string;
|
23506
23633
|
textMaxLength: string;
|
23507
23634
|
textMinMaxLength: string;
|
@@ -23592,6 +23719,7 @@ declare module "packages/survey-core/src/localization/hungarian" {
|
|
23592
23719
|
refuseItemText: string;
|
23593
23720
|
dontKnowItemText: string;
|
23594
23721
|
selectAllItemText: string;
|
23722
|
+
deselectAllItemText: string;
|
23595
23723
|
progressText: string;
|
23596
23724
|
indexText: string;
|
23597
23725
|
panelDynamicProgressText: string;
|
@@ -23611,6 +23739,7 @@ declare module "packages/survey-core/src/localization/hungarian" {
|
|
23611
23739
|
numericError: string;
|
23612
23740
|
minError: string;
|
23613
23741
|
maxError: string;
|
23742
|
+
textNoDigitsAllow: string;
|
23614
23743
|
textMinLength: string;
|
23615
23744
|
textMaxLength: string;
|
23616
23745
|
textMinMaxLength: string;
|
@@ -23701,6 +23830,7 @@ declare module "packages/survey-core/src/localization/icelandic" {
|
|
23701
23830
|
refuseItemText: string;
|
23702
23831
|
dontKnowItemText: string;
|
23703
23832
|
selectAllItemText: string;
|
23833
|
+
deselectAllItemText: string;
|
23704
23834
|
progressText: string;
|
23705
23835
|
indexText: string;
|
23706
23836
|
panelDynamicProgressText: string;
|
@@ -23720,6 +23850,7 @@ declare module "packages/survey-core/src/localization/icelandic" {
|
|
23720
23850
|
numericError: string;
|
23721
23851
|
minError: string;
|
23722
23852
|
maxError: string;
|
23853
|
+
textNoDigitsAllow: string;
|
23723
23854
|
textMinLength: string;
|
23724
23855
|
textMaxLength: string;
|
23725
23856
|
textMinMaxLength: string;
|
@@ -23810,6 +23941,7 @@ declare module "packages/survey-core/src/localization/indonesian" {
|
|
23810
23941
|
refuseItemText: string;
|
23811
23942
|
dontKnowItemText: string;
|
23812
23943
|
selectAllItemText: string;
|
23944
|
+
deselectAllItemText: string;
|
23813
23945
|
progressText: string;
|
23814
23946
|
indexText: string;
|
23815
23947
|
panelDynamicProgressText: string;
|
@@ -23829,6 +23961,7 @@ declare module "packages/survey-core/src/localization/indonesian" {
|
|
23829
23961
|
numericError: string;
|
23830
23962
|
minError: string;
|
23831
23963
|
maxError: string;
|
23964
|
+
textNoDigitsAllow: string;
|
23832
23965
|
textMinLength: string;
|
23833
23966
|
textMaxLength: string;
|
23834
23967
|
textMinMaxLength: string;
|
@@ -23919,6 +24052,7 @@ declare module "packages/survey-core/src/localization/italian" {
|
|
23919
24052
|
refuseItemText: string;
|
23920
24053
|
dontKnowItemText: string;
|
23921
24054
|
selectAllItemText: string;
|
24055
|
+
deselectAllItemText: string;
|
23922
24056
|
progressText: string;
|
23923
24057
|
indexText: string;
|
23924
24058
|
panelDynamicProgressText: string;
|
@@ -23938,6 +24072,7 @@ declare module "packages/survey-core/src/localization/italian" {
|
|
23938
24072
|
numericError: string;
|
23939
24073
|
minError: string;
|
23940
24074
|
maxError: string;
|
24075
|
+
textNoDigitsAllow: string;
|
23941
24076
|
textMinLength: string;
|
23942
24077
|
textMaxLength: string;
|
23943
24078
|
textMinMaxLength: string;
|
@@ -24028,6 +24163,7 @@ declare module "packages/survey-core/src/localization/japanese" {
|
|
24028
24163
|
refuseItemText: string;
|
24029
24164
|
dontKnowItemText: string;
|
24030
24165
|
selectAllItemText: string;
|
24166
|
+
deselectAllItemText: string;
|
24031
24167
|
progressText: string;
|
24032
24168
|
indexText: string;
|
24033
24169
|
panelDynamicProgressText: string;
|
@@ -24047,6 +24183,7 @@ declare module "packages/survey-core/src/localization/japanese" {
|
|
24047
24183
|
numericError: string;
|
24048
24184
|
minError: string;
|
24049
24185
|
maxError: string;
|
24186
|
+
textNoDigitsAllow: string;
|
24050
24187
|
textMinLength: string;
|
24051
24188
|
textMaxLength: string;
|
24052
24189
|
textMinMaxLength: string;
|
@@ -24137,6 +24274,7 @@ declare module "packages/survey-core/src/localization/kazakh" {
|
|
24137
24274
|
refuseItemText: string;
|
24138
24275
|
dontKnowItemText: string;
|
24139
24276
|
selectAllItemText: string;
|
24277
|
+
deselectAllItemText: string;
|
24140
24278
|
progressText: string;
|
24141
24279
|
indexText: string;
|
24142
24280
|
panelDynamicProgressText: string;
|
@@ -24156,6 +24294,7 @@ declare module "packages/survey-core/src/localization/kazakh" {
|
|
24156
24294
|
numericError: string;
|
24157
24295
|
minError: string;
|
24158
24296
|
maxError: string;
|
24297
|
+
textNoDigitsAllow: string;
|
24159
24298
|
textMinLength: string;
|
24160
24299
|
textMaxLength: string;
|
24161
24300
|
textMinMaxLength: string;
|
@@ -24246,6 +24385,7 @@ declare module "packages/survey-core/src/localization/korean" {
|
|
24246
24385
|
refuseItemText: string;
|
24247
24386
|
dontKnowItemText: string;
|
24248
24387
|
selectAllItemText: string;
|
24388
|
+
deselectAllItemText: string;
|
24249
24389
|
progressText: string;
|
24250
24390
|
indexText: string;
|
24251
24391
|
panelDynamicProgressText: string;
|
@@ -24265,6 +24405,7 @@ declare module "packages/survey-core/src/localization/korean" {
|
|
24265
24405
|
numericError: string;
|
24266
24406
|
minError: string;
|
24267
24407
|
maxError: string;
|
24408
|
+
textNoDigitsAllow: string;
|
24268
24409
|
textMinLength: string;
|
24269
24410
|
textMaxLength: string;
|
24270
24411
|
textMinMaxLength: string;
|
@@ -24355,6 +24496,7 @@ declare module "packages/survey-core/src/localization/latvian" {
|
|
24355
24496
|
refuseItemText: string;
|
24356
24497
|
dontKnowItemText: string;
|
24357
24498
|
selectAllItemText: string;
|
24499
|
+
deselectAllItemText: string;
|
24358
24500
|
progressText: string;
|
24359
24501
|
indexText: string;
|
24360
24502
|
panelDynamicProgressText: string;
|
@@ -24374,6 +24516,7 @@ declare module "packages/survey-core/src/localization/latvian" {
|
|
24374
24516
|
numericError: string;
|
24375
24517
|
minError: string;
|
24376
24518
|
maxError: string;
|
24519
|
+
textNoDigitsAllow: string;
|
24377
24520
|
textMinLength: string;
|
24378
24521
|
textMaxLength: string;
|
24379
24522
|
textMinMaxLength: string;
|
@@ -24464,6 +24607,7 @@ declare module "packages/survey-core/src/localization/lithuanian" {
|
|
24464
24607
|
refuseItemText: string;
|
24465
24608
|
dontKnowItemText: string;
|
24466
24609
|
selectAllItemText: string;
|
24610
|
+
deselectAllItemText: string;
|
24467
24611
|
progressText: string;
|
24468
24612
|
indexText: string;
|
24469
24613
|
panelDynamicProgressText: string;
|
@@ -24483,6 +24627,7 @@ declare module "packages/survey-core/src/localization/lithuanian" {
|
|
24483
24627
|
numericError: string;
|
24484
24628
|
minError: string;
|
24485
24629
|
maxError: string;
|
24630
|
+
textNoDigitsAllow: string;
|
24486
24631
|
textMinLength: string;
|
24487
24632
|
textMaxLength: string;
|
24488
24633
|
textMinMaxLength: string;
|
@@ -24573,6 +24718,7 @@ declare module "packages/survey-core/src/localization/macedonian" {
|
|
24573
24718
|
refuseItemText: string;
|
24574
24719
|
dontKnowItemText: string;
|
24575
24720
|
selectAllItemText: string;
|
24721
|
+
deselectAllItemText: string;
|
24576
24722
|
progressText: string;
|
24577
24723
|
indexText: string;
|
24578
24724
|
panelDynamicProgressText: string;
|
@@ -24592,6 +24738,7 @@ declare module "packages/survey-core/src/localization/macedonian" {
|
|
24592
24738
|
numericError: string;
|
24593
24739
|
minError: string;
|
24594
24740
|
maxError: string;
|
24741
|
+
textNoDigitsAllow: string;
|
24595
24742
|
textMinLength: string;
|
24596
24743
|
textMaxLength: string;
|
24597
24744
|
textMinMaxLength: string;
|
@@ -24682,6 +24829,7 @@ declare module "packages/survey-core/src/localization/malay" {
|
|
24682
24829
|
refuseItemText: string;
|
24683
24830
|
dontKnowItemText: string;
|
24684
24831
|
selectAllItemText: string;
|
24832
|
+
deselectAllItemText: string;
|
24685
24833
|
progressText: string;
|
24686
24834
|
indexText: string;
|
24687
24835
|
panelDynamicProgressText: string;
|
@@ -24701,6 +24849,7 @@ declare module "packages/survey-core/src/localization/malay" {
|
|
24701
24849
|
numericError: string;
|
24702
24850
|
minError: string;
|
24703
24851
|
maxError: string;
|
24852
|
+
textNoDigitsAllow: string;
|
24704
24853
|
textMinLength: string;
|
24705
24854
|
textMaxLength: string;
|
24706
24855
|
textMinMaxLength: string;
|
@@ -24791,6 +24940,7 @@ declare module "packages/survey-core/src/localization/norwegian" {
|
|
24791
24940
|
refuseItemText: string;
|
24792
24941
|
dontKnowItemText: string;
|
24793
24942
|
selectAllItemText: string;
|
24943
|
+
deselectAllItemText: string;
|
24794
24944
|
progressText: string;
|
24795
24945
|
indexText: string;
|
24796
24946
|
panelDynamicProgressText: string;
|
@@ -24810,6 +24960,7 @@ declare module "packages/survey-core/src/localization/norwegian" {
|
|
24810
24960
|
numericError: string;
|
24811
24961
|
minError: string;
|
24812
24962
|
maxError: string;
|
24963
|
+
textNoDigitsAllow: string;
|
24813
24964
|
textMinLength: string;
|
24814
24965
|
textMaxLength: string;
|
24815
24966
|
textMinMaxLength: string;
|
@@ -24900,6 +25051,7 @@ declare module "packages/survey-core/src/localization/persian" {
|
|
24900
25051
|
refuseItemText: string;
|
24901
25052
|
dontKnowItemText: string;
|
24902
25053
|
selectAllItemText: string;
|
25054
|
+
deselectAllItemText: string;
|
24903
25055
|
progressText: string;
|
24904
25056
|
indexText: string;
|
24905
25057
|
panelDynamicProgressText: string;
|
@@ -24919,6 +25071,7 @@ declare module "packages/survey-core/src/localization/persian" {
|
|
24919
25071
|
numericError: string;
|
24920
25072
|
minError: string;
|
24921
25073
|
maxError: string;
|
25074
|
+
textNoDigitsAllow: string;
|
24922
25075
|
textMinLength: string;
|
24923
25076
|
textMaxLength: string;
|
24924
25077
|
textMinMaxLength: string;
|
@@ -25009,6 +25162,7 @@ declare module "packages/survey-core/src/localization/polish" {
|
|
25009
25162
|
refuseItemText: string;
|
25010
25163
|
dontKnowItemText: string;
|
25011
25164
|
selectAllItemText: string;
|
25165
|
+
deselectAllItemText: string;
|
25012
25166
|
progressText: string;
|
25013
25167
|
indexText: string;
|
25014
25168
|
panelDynamicProgressText: string;
|
@@ -25028,6 +25182,7 @@ declare module "packages/survey-core/src/localization/polish" {
|
|
25028
25182
|
numericError: string;
|
25029
25183
|
minError: string;
|
25030
25184
|
maxError: string;
|
25185
|
+
textNoDigitsAllow: string;
|
25031
25186
|
textMinLength: string;
|
25032
25187
|
textMaxLength: string;
|
25033
25188
|
textMinMaxLength: string;
|
@@ -25118,6 +25273,7 @@ declare module "packages/survey-core/src/localization/portuguese" {
|
|
25118
25273
|
refuseItemText: string;
|
25119
25274
|
dontKnowItemText: string;
|
25120
25275
|
selectAllItemText: string;
|
25276
|
+
deselectAllItemText: string;
|
25121
25277
|
progressText: string;
|
25122
25278
|
indexText: string;
|
25123
25279
|
panelDynamicProgressText: string;
|
@@ -25137,6 +25293,7 @@ declare module "packages/survey-core/src/localization/portuguese" {
|
|
25137
25293
|
numericError: string;
|
25138
25294
|
minError: string;
|
25139
25295
|
maxError: string;
|
25296
|
+
textNoDigitsAllow: string;
|
25140
25297
|
textMinLength: string;
|
25141
25298
|
textMaxLength: string;
|
25142
25299
|
textMinMaxLength: string;
|
@@ -25230,6 +25387,7 @@ declare module "packages/survey-core/src/localization/portuguese-br" {
|
|
25230
25387
|
refuseItemText: string;
|
25231
25388
|
dontKnowItemText: string;
|
25232
25389
|
selectAllItemText: string;
|
25390
|
+
deselectAllItemText: string;
|
25233
25391
|
progressText: string;
|
25234
25392
|
indexText: string;
|
25235
25393
|
panelDynamicProgressText: string;
|
@@ -25249,6 +25407,7 @@ declare module "packages/survey-core/src/localization/portuguese-br" {
|
|
25249
25407
|
numericError: string;
|
25250
25408
|
minError: string;
|
25251
25409
|
maxError: string;
|
25410
|
+
textNoDigitsAllow: string;
|
25252
25411
|
textMinLength: string;
|
25253
25412
|
textMaxLength: string;
|
25254
25413
|
textMinMaxLength: string;
|
@@ -25342,6 +25501,7 @@ declare module "packages/survey-core/src/localization/russian" {
|
|
25342
25501
|
refuseItemText: string;
|
25343
25502
|
dontKnowItemText: string;
|
25344
25503
|
selectAllItemText: string;
|
25504
|
+
deselectAllItemText: string;
|
25345
25505
|
progressText: string;
|
25346
25506
|
indexText: string;
|
25347
25507
|
panelDynamicProgressText: string;
|
@@ -25361,6 +25521,7 @@ declare module "packages/survey-core/src/localization/russian" {
|
|
25361
25521
|
numericError: string;
|
25362
25522
|
minError: string;
|
25363
25523
|
maxError: string;
|
25524
|
+
textNoDigitsAllow: string;
|
25364
25525
|
textMinLength: string;
|
25365
25526
|
textMaxLength: string;
|
25366
25527
|
textMinMaxLength: string;
|
@@ -25451,6 +25612,7 @@ declare module "packages/survey-core/src/localization/serbian" {
|
|
25451
25612
|
refuseItemText: string;
|
25452
25613
|
dontKnowItemText: string;
|
25453
25614
|
selectAllItemText: string;
|
25615
|
+
deselectAllItemText: string;
|
25454
25616
|
progressText: string;
|
25455
25617
|
indexText: string;
|
25456
25618
|
panelDynamicProgressText: string;
|
@@ -25470,6 +25632,7 @@ declare module "packages/survey-core/src/localization/serbian" {
|
|
25470
25632
|
numericError: string;
|
25471
25633
|
minError: string;
|
25472
25634
|
maxError: string;
|
25635
|
+
textNoDigitsAllow: string;
|
25473
25636
|
textMinLength: string;
|
25474
25637
|
textMaxLength: string;
|
25475
25638
|
textMinMaxLength: string;
|
@@ -25560,6 +25723,7 @@ declare module "packages/survey-core/src/localization/simplified-chinese" {
|
|
25560
25723
|
refuseItemText: string;
|
25561
25724
|
dontKnowItemText: string;
|
25562
25725
|
selectAllItemText: string;
|
25726
|
+
deselectAllItemText: string;
|
25563
25727
|
progressText: string;
|
25564
25728
|
indexText: string;
|
25565
25729
|
panelDynamicProgressText: string;
|
@@ -25579,6 +25743,7 @@ declare module "packages/survey-core/src/localization/simplified-chinese" {
|
|
25579
25743
|
numericError: string;
|
25580
25744
|
minError: string;
|
25581
25745
|
maxError: string;
|
25746
|
+
textNoDigitsAllow: string;
|
25582
25747
|
textMinLength: string;
|
25583
25748
|
textMaxLength: string;
|
25584
25749
|
textMinMaxLength: string;
|
@@ -25669,6 +25834,7 @@ declare module "packages/survey-core/src/localization/slovak" {
|
|
25669
25834
|
refuseItemText: string;
|
25670
25835
|
dontKnowItemText: string;
|
25671
25836
|
selectAllItemText: string;
|
25837
|
+
deselectAllItemText: string;
|
25672
25838
|
progressText: string;
|
25673
25839
|
indexText: string;
|
25674
25840
|
panelDynamicProgressText: string;
|
@@ -25688,6 +25854,7 @@ declare module "packages/survey-core/src/localization/slovak" {
|
|
25688
25854
|
numericError: string;
|
25689
25855
|
minError: string;
|
25690
25856
|
maxError: string;
|
25857
|
+
textNoDigitsAllow: string;
|
25691
25858
|
textMinLength: string;
|
25692
25859
|
textMaxLength: string;
|
25693
25860
|
textMinMaxLength: string;
|
@@ -25778,6 +25945,7 @@ declare module "packages/survey-core/src/localization/spanish" {
|
|
25778
25945
|
refuseItemText: string;
|
25779
25946
|
dontKnowItemText: string;
|
25780
25947
|
selectAllItemText: string;
|
25948
|
+
deselectAllItemText: string;
|
25781
25949
|
progressText: string;
|
25782
25950
|
indexText: string;
|
25783
25951
|
panelDynamicProgressText: string;
|
@@ -25797,6 +25965,7 @@ declare module "packages/survey-core/src/localization/spanish" {
|
|
25797
25965
|
numericError: string;
|
25798
25966
|
minError: string;
|
25799
25967
|
maxError: string;
|
25968
|
+
textNoDigitsAllow: string;
|
25800
25969
|
textMinLength: string;
|
25801
25970
|
textMaxLength: string;
|
25802
25971
|
textMinMaxLength: string;
|
@@ -25887,6 +26056,7 @@ declare module "packages/survey-core/src/localization/swahili" {
|
|
25887
26056
|
refuseItemText: string;
|
25888
26057
|
dontKnowItemText: string;
|
25889
26058
|
selectAllItemText: string;
|
26059
|
+
deselectAllItemText: string;
|
25890
26060
|
progressText: string;
|
25891
26061
|
indexText: string;
|
25892
26062
|
panelDynamicProgressText: string;
|
@@ -25906,6 +26076,7 @@ declare module "packages/survey-core/src/localization/swahili" {
|
|
25906
26076
|
numericError: string;
|
25907
26077
|
minError: string;
|
25908
26078
|
maxError: string;
|
26079
|
+
textNoDigitsAllow: string;
|
25909
26080
|
textMinLength: string;
|
25910
26081
|
textMaxLength: string;
|
25911
26082
|
textMinMaxLength: string;
|
@@ -25996,6 +26167,7 @@ declare module "packages/survey-core/src/localization/swedish" {
|
|
25996
26167
|
refuseItemText: string;
|
25997
26168
|
dontKnowItemText: string;
|
25998
26169
|
selectAllItemText: string;
|
26170
|
+
deselectAllItemText: string;
|
25999
26171
|
progressText: string;
|
26000
26172
|
indexText: string;
|
26001
26173
|
panelDynamicProgressText: string;
|
@@ -26015,6 +26187,7 @@ declare module "packages/survey-core/src/localization/swedish" {
|
|
26015
26187
|
numericError: string;
|
26016
26188
|
minError: string;
|
26017
26189
|
maxError: string;
|
26190
|
+
textNoDigitsAllow: string;
|
26018
26191
|
textMinLength: string;
|
26019
26192
|
textMaxLength: string;
|
26020
26193
|
textMinMaxLength: string;
|
@@ -26169,6 +26342,7 @@ declare module "packages/survey-core/src/localization/thai" {
|
|
26169
26342
|
refuseItemText: string;
|
26170
26343
|
dontKnowItemText: string;
|
26171
26344
|
selectAllItemText: string;
|
26345
|
+
deselectAllItemText: string;
|
26172
26346
|
progressText: string;
|
26173
26347
|
indexText: string;
|
26174
26348
|
panelDynamicProgressText: string;
|
@@ -26188,6 +26362,7 @@ declare module "packages/survey-core/src/localization/thai" {
|
|
26188
26362
|
numericError: string;
|
26189
26363
|
minError: string;
|
26190
26364
|
maxError: string;
|
26365
|
+
textNoDigitsAllow: string;
|
26191
26366
|
textMinLength: string;
|
26192
26367
|
textMaxLength: string;
|
26193
26368
|
textMinMaxLength: string;
|
@@ -26278,6 +26453,7 @@ declare module "packages/survey-core/src/localization/traditional-chinese" {
|
|
26278
26453
|
refuseItemText: string;
|
26279
26454
|
dontKnowItemText: string;
|
26280
26455
|
selectAllItemText: string;
|
26456
|
+
deselectAllItemText: string;
|
26281
26457
|
progressText: string;
|
26282
26458
|
indexText: string;
|
26283
26459
|
panelDynamicProgressText: string;
|
@@ -26297,6 +26473,7 @@ declare module "packages/survey-core/src/localization/traditional-chinese" {
|
|
26297
26473
|
numericError: string;
|
26298
26474
|
minError: string;
|
26299
26475
|
maxError: string;
|
26476
|
+
textNoDigitsAllow: string;
|
26300
26477
|
textMinLength: string;
|
26301
26478
|
textMaxLength: string;
|
26302
26479
|
textMinMaxLength: string;
|
@@ -26387,6 +26564,7 @@ declare module "packages/survey-core/src/localization/turkish" {
|
|
26387
26564
|
refuseItemText: string;
|
26388
26565
|
dontKnowItemText: string;
|
26389
26566
|
selectAllItemText: string;
|
26567
|
+
deselectAllItemText: string;
|
26390
26568
|
progressText: string;
|
26391
26569
|
indexText: string;
|
26392
26570
|
panelDynamicProgressText: string;
|
@@ -26406,6 +26584,7 @@ declare module "packages/survey-core/src/localization/turkish" {
|
|
26406
26584
|
numericError: string;
|
26407
26585
|
minError: string;
|
26408
26586
|
maxError: string;
|
26587
|
+
textNoDigitsAllow: string;
|
26409
26588
|
textMinLength: string;
|
26410
26589
|
textMaxLength: string;
|
26411
26590
|
textMinMaxLength: string;
|
@@ -26496,6 +26675,7 @@ declare module "packages/survey-core/src/localization/ukrainian" {
|
|
26496
26675
|
refuseItemText: string;
|
26497
26676
|
dontKnowItemText: string;
|
26498
26677
|
selectAllItemText: string;
|
26678
|
+
deselectAllItemText: string;
|
26499
26679
|
progressText: string;
|
26500
26680
|
indexText: string;
|
26501
26681
|
panelDynamicProgressText: string;
|
@@ -26515,6 +26695,7 @@ declare module "packages/survey-core/src/localization/ukrainian" {
|
|
26515
26695
|
numericError: string;
|
26516
26696
|
minError: string;
|
26517
26697
|
maxError: string;
|
26698
|
+
textNoDigitsAllow: string;
|
26518
26699
|
textMinLength: string;
|
26519
26700
|
textMaxLength: string;
|
26520
26701
|
textMinMaxLength: string;
|
@@ -26605,6 +26786,7 @@ declare module "packages/survey-core/src/localization/vietnamese" {
|
|
26605
26786
|
refuseItemText: string;
|
26606
26787
|
dontKnowItemText: string;
|
26607
26788
|
selectAllItemText: string;
|
26789
|
+
deselectAllItemText: string;
|
26608
26790
|
progressText: string;
|
26609
26791
|
indexText: string;
|
26610
26792
|
panelDynamicProgressText: string;
|
@@ -26624,6 +26806,7 @@ declare module "packages/survey-core/src/localization/vietnamese" {
|
|
26624
26806
|
numericError: string;
|
26625
26807
|
minError: string;
|
26626
26808
|
maxError: string;
|
26809
|
+
textNoDigitsAllow: string;
|
26627
26810
|
textMinLength: string;
|
26628
26811
|
textMaxLength: string;
|
26629
26812
|
textMinMaxLength: string;
|
@@ -26714,6 +26897,7 @@ declare module "packages/survey-core/src/localization/welsh" {
|
|
26714
26897
|
refuseItemText: string;
|
26715
26898
|
dontKnowItemText: string;
|
26716
26899
|
selectAllItemText: string;
|
26900
|
+
deselectAllItemText: string;
|
26717
26901
|
progressText: string;
|
26718
26902
|
indexText: string;
|
26719
26903
|
panelDynamicProgressText: string;
|
@@ -26733,6 +26917,7 @@ declare module "packages/survey-core/src/localization/welsh" {
|
|
26733
26917
|
numericError: string;
|
26734
26918
|
minError: string;
|
26735
26919
|
maxError: string;
|
26920
|
+
textNoDigitsAllow: string;
|
26736
26921
|
textMinLength: string;
|
26737
26922
|
textMaxLength: string;
|
26738
26923
|
textMinMaxLength: string;
|
@@ -26823,6 +27008,7 @@ declare module "packages/survey-core/src/localization/telugu" {
|
|
26823
27008
|
refuseItemText: string;
|
26824
27009
|
dontKnowItemText: string;
|
26825
27010
|
selectAllItemText: string;
|
27011
|
+
deselectAllItemText: string;
|
26826
27012
|
progressText: string;
|
26827
27013
|
indexText: string;
|
26828
27014
|
panelDynamicProgressText: string;
|
@@ -26842,6 +27028,7 @@ declare module "packages/survey-core/src/localization/telugu" {
|
|
26842
27028
|
numericError: string;
|
26843
27029
|
minError: string;
|
26844
27030
|
maxError: string;
|
27031
|
+
textNoDigitsAllow: string;
|
26845
27032
|
textMinLength: string;
|
26846
27033
|
textMaxLength: string;
|
26847
27034
|
textMinMaxLength: string;
|
@@ -26932,6 +27119,7 @@ declare module "packages/survey-core/src/localization/philippines" {
|
|
26932
27119
|
refuseItemText: string;
|
26933
27120
|
dontKnowItemText: string;
|
26934
27121
|
selectAllItemText: string;
|
27122
|
+
deselectAllItemText: string;
|
26935
27123
|
progressText: string;
|
26936
27124
|
indexText: string;
|
26937
27125
|
panelDynamicProgressText: string;
|
@@ -26951,6 +27139,7 @@ declare module "packages/survey-core/src/localization/philippines" {
|
|
26951
27139
|
numericError: string;
|
26952
27140
|
minError: string;
|
26953
27141
|
maxError: string;
|
27142
|
+
textNoDigitsAllow: string;
|
26954
27143
|
textMinLength: string;
|
26955
27144
|
textMaxLength: string;
|
26956
27145
|
textMinMaxLength: string;
|
@@ -27209,7 +27398,7 @@ declare module "packages/survey-react-ui/src/components/action-bar/action-bar-it
|
|
27209
27398
|
}
|
27210
27399
|
}
|
27211
27400
|
declare module "packages/survey-react-ui/src/components/popup/popup" {
|
27212
|
-
import { Base, PopupModel, PopupBaseViewModel
|
27401
|
+
import { Base, PopupModel, PopupBaseViewModel } from "src/entries/core";
|
27213
27402
|
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27214
27403
|
interface IPopupProps {
|
27215
27404
|
model: PopupModel;
|
@@ -27248,8 +27437,6 @@ declare module "packages/survey-react-ui/src/components/popup/popup" {
|
|
27248
27437
|
export class PopupDropdownContainer extends PopupContainer {
|
27249
27438
|
protected renderHeaderPopup(popupModel: PopupBaseViewModel): JSX.Element | null;
|
27250
27439
|
}
|
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
27440
|
}
|
27254
27441
|
declare module "packages/survey-react-ui/src/components/action-bar/action-bar-item-dropdown" {
|
27255
27442
|
import { SurveyActionBarItem } from "packages/survey-react-ui/src/components/action-bar/action-bar-item";
|
@@ -27309,6 +27496,7 @@ declare module "packages/survey-react-ui/src/components/title/title-element" {
|
|
27309
27496
|
export class TitleElement extends React.Component<any, any> {
|
27310
27497
|
constructor(props: any);
|
27311
27498
|
private get element();
|
27499
|
+
renderTitleExpandableSvg(): JSX.Element;
|
27312
27500
|
render(): JSX.Element | any;
|
27313
27501
|
}
|
27314
27502
|
}
|
@@ -27621,6 +27809,29 @@ declare module "packages/survey-react-ui/src/svgbundle" {
|
|
27621
27809
|
render(): JSX.Element;
|
27622
27810
|
}
|
27623
27811
|
}
|
27812
|
+
declare module "packages/survey-react-ui/src/components/popup/popup-modal" {
|
27813
|
+
import { SurveyElementBase } from "packages/survey-react-ui/src/reactquestion_element";
|
27814
|
+
import { IDialogOptions, PopupBaseViewModel } from "src/entries/core";
|
27815
|
+
interface IModalDescriptor {
|
27816
|
+
init: () => void;
|
27817
|
+
clean: () => void;
|
27818
|
+
}
|
27819
|
+
export class PopupModal extends SurveyElementBase<{}, any> {
|
27820
|
+
private model;
|
27821
|
+
private isInitialized;
|
27822
|
+
private descriptor;
|
27823
|
+
constructor(props: {});
|
27824
|
+
static modalDescriptors: Array<IModalDescriptor>;
|
27825
|
+
static addModalDescriptor(descriptor: IModalDescriptor): void;
|
27826
|
+
static removeModalDescriptor(descriptor: IModalDescriptor): void;
|
27827
|
+
protected renderElement(): JSX.Element | null;
|
27828
|
+
showDialog(dialogOptions: IDialogOptions, rootElement?: HTMLElement): PopupBaseViewModel;
|
27829
|
+
init: () => void;
|
27830
|
+
clean: () => void;
|
27831
|
+
componentDidMount(): void;
|
27832
|
+
componentWillUnmount(): void;
|
27833
|
+
}
|
27834
|
+
}
|
27624
27835
|
declare module "packages/survey-react-ui/src/reactSurvey" {
|
27625
27836
|
import { Base, Question, PageModel, SurveyError, SurveyModel, IAttachKey2clickOptions } from "src/entries/core";
|
27626
27837
|
import { ISurveyCreator } from "packages/survey-react-ui/src/reactquestion";
|
@@ -27904,6 +28115,7 @@ declare module "packages/survey-react-ui/src/dropdown-base" {
|
|
27904
28115
|
protected renderOther(cssClasses: any): JSX.Element;
|
27905
28116
|
componentDidUpdate(prevProps: any, prevState: any): void;
|
27906
28117
|
componentDidMount(): void;
|
28118
|
+
componentWillUnmount(): void;
|
27907
28119
|
updateInputDomElement(): void;
|
27908
28120
|
}
|
27909
28121
|
}
|
@@ -28760,6 +28972,7 @@ declare module "packages/survey-react-ui/entries/react-ui-model" {
|
|
28760
28972
|
export { SurveyLocStringEditor } from "packages/survey-react-ui/src/string-editor";
|
28761
28973
|
export { LoadingIndicatorComponent } from "packages/survey-react-ui/src/components/loading-indicator";
|
28762
28974
|
export { SvgBundleComponent } from "packages/survey-react-ui/src/svgbundle";
|
28975
|
+
export { PopupModal } from "packages/survey-react-ui/src/components/popup/popup-modal";
|
28763
28976
|
}
|
28764
28977
|
declare module "src/entries/react" {
|
28765
28978
|
export * from "src/entries/core";
|