survey-react 1.9.139 → 1.10.1
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 +295 -52
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +2 -1
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +1 -1
- package/survey.css.map +1 -1
- package/survey.min.css +1 -1
- package/survey.react.d.ts +186 -20
- package/survey.react.js +818 -255
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/survey.react.d.ts
CHANGED
@@ -139,6 +139,7 @@ declare module "localization/english" {
|
|
139
139
|
savingData: string;
|
140
140
|
savingDataError: string;
|
141
141
|
savingDataSuccess: string;
|
142
|
+
savingExceedSize: string;
|
142
143
|
saveAgainButton: string;
|
143
144
|
timerMin: string;
|
144
145
|
timerSec: string;
|
@@ -263,6 +264,7 @@ declare module "surveyStrings" {
|
|
263
264
|
savingData: string;
|
264
265
|
savingDataError: string;
|
265
266
|
savingDataSuccess: string;
|
267
|
+
savingExceedSize: string;
|
266
268
|
saveAgainButton: string;
|
267
269
|
timerMin: string;
|
268
270
|
timerSec: string;
|
@@ -696,28 +698,31 @@ declare module "utils/animation" {
|
|
696
698
|
}
|
697
699
|
export class AnimationUtils {
|
698
700
|
private getMsFromRule;
|
701
|
+
private reflow;
|
699
702
|
private getAnimationsCount;
|
700
703
|
private getAnimationDuration;
|
701
704
|
private cancelQueue;
|
705
|
+
private addCancelCallback;
|
706
|
+
private removeCancelCallback;
|
702
707
|
protected onAnimationEnd(element: HTMLElement, callback: (isCancel?: boolean) => void, options: AnimationOptions): void;
|
703
708
|
protected beforeAnimationRun(element: HTMLElement, options: AnimationOptions | AnimationOptions): void;
|
704
|
-
protected
|
705
|
-
protected
|
709
|
+
protected runAnimation(element: HTMLElement, options: AnimationOptions, callback: (isCancel?: boolean) => void): void;
|
710
|
+
protected clearHtmlElement(element: HTMLElement, options: AnimationOptions): void;
|
711
|
+
protected onNextRender(callback: () => void, runEarly?: () => boolean, isCancel?: boolean): void;
|
706
712
|
cancel(): void;
|
707
713
|
}
|
708
714
|
export class AnimationPropertyUtils extends AnimationUtils {
|
709
|
-
onEnter(
|
710
|
-
onLeave(
|
715
|
+
onEnter(options: IAnimationConsumer): void;
|
716
|
+
onLeave(options: IAnimationConsumer, callback: () => void): void;
|
711
717
|
}
|
712
718
|
export class AnimationGroupUtils<T> extends AnimationUtils {
|
713
|
-
|
714
|
-
onLeave(getElement: (el: T) => HTMLElement, callback: () => void, getOptions: (el: T) => AnimationOptions, elements: Array<T>): void;
|
719
|
+
runGroupAnimation(options: IAnimationConsumer<[T]>, addedElements: Array<T>, removedElements: Array<T>, callback?: () => void): void;
|
715
720
|
}
|
716
|
-
abstract class AnimationProperty<T, S extends Array<any> = []> {
|
721
|
+
export abstract class AnimationProperty<T, S extends Array<any> = []> {
|
717
722
|
protected animationOptions: IAnimationConsumer<S>;
|
718
|
-
protected update: (val: T) => void;
|
723
|
+
protected update: (val: T, isTempUpdate?: boolean) => void;
|
719
724
|
protected getCurrentValue: () => T;
|
720
|
-
constructor(animationOptions: IAnimationConsumer<S>, update: (val: T) => void, getCurrentValue: () => T);
|
725
|
+
constructor(animationOptions: IAnimationConsumer<S>, update: (val: T, isTempUpdate?: boolean) => void, getCurrentValue: () => T);
|
721
726
|
protected animation: AnimationUtils;
|
722
727
|
protected abstract _sync(newValue: T): void;
|
723
728
|
private _debouncedSync;
|
@@ -732,6 +737,12 @@ declare module "utils/animation" {
|
|
732
737
|
protected animation: AnimationGroupUtils<T>;
|
733
738
|
protected _sync(newValue: Array<T>): void;
|
734
739
|
}
|
740
|
+
export class AnimationTab<T> extends AnimationProperty<Array<T>, [T]> {
|
741
|
+
protected mergeValues?: (newValue: Array<T>, oldValue: Array<T>) => Array<T>;
|
742
|
+
protected animation: AnimationGroupUtils<T>;
|
743
|
+
constructor(animationOptions: IAnimationConsumer<[T]>, update: (val: Array<T>, isTempUpdate?: boolean) => void, getCurrentValue: () => Array<T>, mergeValues?: (newValue: Array<T>, oldValue: Array<T>) => Array<T>);
|
744
|
+
protected _sync(newValue: [T]): void;
|
745
|
+
}
|
735
746
|
}
|
736
747
|
declare module "popup-view-model" {
|
737
748
|
import { Base, EventBase } from "base";
|
@@ -798,6 +809,8 @@ declare module "popup-view-model" {
|
|
798
809
|
onKeyDown(event: any): void;
|
799
810
|
private trapFocus;
|
800
811
|
switchFocus(): void;
|
812
|
+
protected _isPositionSetValue: boolean;
|
813
|
+
get isPositionSet(): boolean;
|
801
814
|
updateOnShowing(): void;
|
802
815
|
updateOnHiding(): void;
|
803
816
|
private focusContainer;
|
@@ -1516,7 +1529,11 @@ declare module "defaultCss/defaultV2Css" {
|
|
1516
1529
|
footer: string;
|
1517
1530
|
panelFooter: string;
|
1518
1531
|
footerButtonsContainer: string;
|
1532
|
+
panelsContainer: string;
|
1519
1533
|
panelWrapperInRow: string;
|
1534
|
+
panelWrapperFadeIn: string;
|
1535
|
+
panelWrapperFadeOut: string;
|
1536
|
+
panelWrapperList: string;
|
1520
1537
|
progressBtnIcon: string;
|
1521
1538
|
noEntriesPlaceholder: string;
|
1522
1539
|
compact: string;
|
@@ -1900,6 +1917,8 @@ declare module "defaultCss/defaultV2Css" {
|
|
1900
1917
|
errorsCellBottom: string;
|
1901
1918
|
itemCell: string;
|
1902
1919
|
row: string;
|
1920
|
+
rowFadeIn: string;
|
1921
|
+
rowFadeOut: string;
|
1903
1922
|
expandedRow: string;
|
1904
1923
|
rowHasPanel: string;
|
1905
1924
|
rowHasEndActions: string;
|
@@ -1938,6 +1957,8 @@ declare module "defaultCss/defaultV2Css" {
|
|
1938
1957
|
content: string;
|
1939
1958
|
cell: string;
|
1940
1959
|
row: string;
|
1960
|
+
rowFadeIn: string;
|
1961
|
+
rowFadeOut: string;
|
1941
1962
|
rowHasPanel: string;
|
1942
1963
|
rowHasEndActions: string;
|
1943
1964
|
expandedRow: string;
|
@@ -2381,7 +2402,8 @@ declare module "trigger" {
|
|
2381
2402
|
set setToName(val: string);
|
2382
2403
|
get runExpression(): string;
|
2383
2404
|
set runExpression(val: string);
|
2384
|
-
protected
|
2405
|
+
protected canBeExecuted(isOnNextPage: boolean): boolean;
|
2406
|
+
protected onSuccess(values: HashTable<any>, properties: HashTable<any>): boolean;
|
2385
2407
|
private onCompleteRunExpression;
|
2386
2408
|
}
|
2387
2409
|
/**
|
@@ -3090,6 +3112,7 @@ declare module "panel" {
|
|
3090
3112
|
get id(): string;
|
3091
3113
|
protected equalsCore(obj: Base): boolean;
|
3092
3114
|
get elements(): Array<IElement>;
|
3115
|
+
protected getIsAnimationAllowed(): boolean;
|
3093
3116
|
private getVisibleElementsAnimationOptions;
|
3094
3117
|
visibleElementsAnimation: AnimationGroup<IElement>;
|
3095
3118
|
set visibleElements(val: Array<IElement>);
|
@@ -5469,6 +5492,7 @@ declare module "question_matrixdropdownrendered" {
|
|
5469
5492
|
isGhostRow: boolean;
|
5470
5493
|
isAdditionalClasses: boolean;
|
5471
5494
|
visible: boolean;
|
5495
|
+
onVisibilityChangedCallback: () => void;
|
5472
5496
|
hasEndActions: boolean;
|
5473
5497
|
row: MatrixDropdownRowModelBase;
|
5474
5498
|
isErrorsRow: boolean;
|
@@ -5483,6 +5507,9 @@ declare module "question_matrixdropdownrendered" {
|
|
5483
5507
|
"data-sv-drop-target-matrix-row": string;
|
5484
5508
|
};
|
5485
5509
|
get className(): string;
|
5510
|
+
private rootElement;
|
5511
|
+
setRootElement(val: HTMLTableRowElement): void;
|
5512
|
+
getRootElement(): HTMLTableRowElement;
|
5486
5513
|
}
|
5487
5514
|
export class QuestionMatrixDropdownRenderedErrorRow extends QuestionMatrixDropdownRenderedRow {
|
5488
5515
|
isErrorsRow: boolean;
|
@@ -5500,6 +5527,13 @@ declare module "question_matrixdropdownrendered" {
|
|
5500
5527
|
private cssClasses;
|
5501
5528
|
renderedRowsChangedCallback: () => void;
|
5502
5529
|
rows: Array<QuestionMatrixDropdownRenderedRow>;
|
5530
|
+
protected getIsAnimationAllowed(): boolean;
|
5531
|
+
private getRenderedRowsAnimationOptions;
|
5532
|
+
private _renderedRows;
|
5533
|
+
updateRenderedRows(): void;
|
5534
|
+
private renderedRowsAnimation;
|
5535
|
+
get renderedRows(): Array<QuestionMatrixDropdownRenderedRow>;
|
5536
|
+
set renderedRows(val: Array<QuestionMatrixDropdownRenderedRow>);
|
5503
5537
|
constructor(matrix: QuestionMatrixDropdownModelBase);
|
5504
5538
|
get showTable(): boolean;
|
5505
5539
|
get showHeader(): boolean;
|
@@ -6085,6 +6119,7 @@ declare module "question_paneldynamic" {
|
|
6085
6119
|
import { IAction } from "actions/action";
|
6086
6120
|
import { AdaptiveActionContainer } from "actions/adaptive-container";
|
6087
6121
|
import { ITheme } from "themes";
|
6122
|
+
import { AnimationProperty } from "utils/animation";
|
6088
6123
|
export interface IQuestionPanelDynamicData {
|
6089
6124
|
getItemIndex(item: ISurveyData): number;
|
6090
6125
|
getVisibleItemIndex(item: ISurveyData): number;
|
@@ -6268,6 +6303,17 @@ declare module "question_paneldynamic" {
|
|
6268
6303
|
*/
|
6269
6304
|
get currentPanel(): PanelModel;
|
6270
6305
|
set currentPanel(val: PanelModel);
|
6306
|
+
private _renderedPanels;
|
6307
|
+
private updateRenderedPanels;
|
6308
|
+
set renderedPanels(val: Array<PanelModel>);
|
6309
|
+
get renderedPanels(): Array<PanelModel>;
|
6310
|
+
private isPanelsAnimationRunning;
|
6311
|
+
private getPanelsAnimationOptions;
|
6312
|
+
private _panelsAnimations;
|
6313
|
+
private disablePanelsAnimations;
|
6314
|
+
private enablePanelsAnimations;
|
6315
|
+
private updatePanelsAnimation;
|
6316
|
+
get panelsAnimation(): AnimationProperty<Array<PanelModel>, [PanelModel]>;
|
6271
6317
|
onHidingContent(): void;
|
6272
6318
|
/**
|
6273
6319
|
* Specifies whether to display a confirmation dialog when a respondent wants to delete a panel.
|
@@ -6575,6 +6621,8 @@ declare module "question_paneldynamic" {
|
|
6575
6621
|
* @see canAddPanel
|
6576
6622
|
*/
|
6577
6623
|
addPanelUI(): PanelModel;
|
6624
|
+
private focusNewPanelCallback;
|
6625
|
+
private focusNewPanel;
|
6578
6626
|
/**
|
6579
6627
|
* Adds a new panel based on the [template](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#template).
|
6580
6628
|
* @param index *(Optional)* An index at which to insert the new panel. `undefined` adds the panel to the end or inserts it after the current panel if [`renderMode`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#renderMode) is `"tab"`. A negative index (for instance, -1) adds the panel to the end in all cases, regardless of the `renderMode` value.
|
@@ -6613,6 +6661,7 @@ declare module "question_paneldynamic" {
|
|
6613
6661
|
* @see panels
|
6614
6662
|
* @see template
|
6615
6663
|
*/
|
6664
|
+
private removedPanelIndex;
|
6616
6665
|
removePanel(value: any): void;
|
6617
6666
|
private getVisualPanelIndex;
|
6618
6667
|
private getPanelIndexById;
|
@@ -6698,6 +6747,7 @@ declare module "question_paneldynamic" {
|
|
6698
6747
|
getShowNoEntriesPlaceholder(): boolean;
|
6699
6748
|
needResponsiveWidth(): boolean;
|
6700
6749
|
private additionalTitleToolbarValue;
|
6750
|
+
get hasAdditionalTitleToolbar(): boolean;
|
6701
6751
|
protected getAdditionalTitleToolbar(): AdaptiveActionContainer | null;
|
6702
6752
|
private footerToolbarValue;
|
6703
6753
|
get footerToolbar(): ActionContainer;
|
@@ -8039,15 +8089,19 @@ declare module "dxSurveyService" {
|
|
8039
8089
|
* The class contains methods to work with api.surveyjs.io service.
|
8040
8090
|
*/
|
8041
8091
|
export class dxSurveyService {
|
8092
|
+
locale: string;
|
8042
8093
|
static get serviceUrl(): string;
|
8043
8094
|
static set serviceUrl(val: string);
|
8044
|
-
constructor();
|
8045
8095
|
loadSurvey(surveyId: string, onLoad: (success: boolean, result: string, response: any) => void): void;
|
8046
8096
|
getSurveyJsonAndIsCompleted(surveyId: string, clientId: string, onLoad: (success: boolean, surveyJson: any, result: string, response: any) => void): void;
|
8097
|
+
canSendResult(result: JSON): boolean;
|
8098
|
+
get isSurveJSIOService(): boolean;
|
8047
8099
|
sendResult(postId: string, result: JSON, onSendResult: (success: boolean, response: any, request?: any) => void, clientId?: string, isPartialCompleted?: boolean): void;
|
8100
|
+
protected sendResultCore(postId: string, result: JSON, onSendResult: (success: boolean, response: any, request?: any) => void, clientId?: string, isPartialCompleted?: boolean): void;
|
8048
8101
|
sendFile(postId: string, file: File, onSendFile: (success: boolean, response: any) => void): void;
|
8049
8102
|
getResult(resultId: string, name: string, onGetResult: (success: boolean, data: any, dataList: Array<any>, response: any) => void): void;
|
8050
8103
|
isCompleted(resultId: string, clientId: string, onIsCompleted: (success: boolean, result: string, response: any) => void): void;
|
8104
|
+
private get serviceUrl();
|
8051
8105
|
}
|
8052
8106
|
}
|
8053
8107
|
declare module "stylesmanager" {
|
@@ -8354,6 +8408,7 @@ declare module "mask/mask_utils" {
|
|
8354
8408
|
getMaskedValue(src: any): string;
|
8355
8409
|
getUnmaskedValue(src: string): any;
|
8356
8410
|
processInput(args: ITextInputParams): IMaskedInputResult;
|
8411
|
+
getTextAlignment(): "left" | "right" | "auto";
|
8357
8412
|
}
|
8358
8413
|
}
|
8359
8414
|
declare module "mask/mask_base" {
|
@@ -8380,6 +8435,7 @@ declare module "mask/mask_base" {
|
|
8380
8435
|
processInput(args: ITextInputParams): IMaskedInputResult;
|
8381
8436
|
getUnmaskedValue(src: string): any;
|
8382
8437
|
getMaskedValue(src: any): string;
|
8438
|
+
getTextAlignment(): "left" | "right" | "auto";
|
8383
8439
|
}
|
8384
8440
|
}
|
8385
8441
|
declare module "mask/input_element_adapter" {
|
@@ -12070,7 +12126,7 @@ declare module "survey-element" {
|
|
12070
12126
|
isDragMe: boolean;
|
12071
12127
|
readOnlyChangedCallback: () => void;
|
12072
12128
|
static ScrollElementToTop(elementId: string, scrollIfVisible?: boolean): boolean;
|
12073
|
-
|
12129
|
+
static ScrollElementToViewCore(el: HTMLElement, checkLeft: boolean, scrollIfVisible?: boolean, scrollIntoViewOptions?: ScrollIntoViewOptions): boolean;
|
12074
12130
|
static GetFirstNonTextElement(elements: any, removeSpaces?: boolean): any;
|
12075
12131
|
static FocusElement(elementId: string): boolean;
|
12076
12132
|
private static focusElementCore;
|
@@ -12382,11 +12438,13 @@ declare module "survey-element" {
|
|
12382
12438
|
get clickTitleFunction(): any;
|
12383
12439
|
protected needClickTitleFunction(): boolean;
|
12384
12440
|
protected processTitleClick(): void;
|
12441
|
+
get hasAdditionalTitleToolbar(): boolean;
|
12385
12442
|
get additionalTitleToolbar(): ActionContainer;
|
12386
12443
|
protected getAdditionalTitleToolbar(): ActionContainer | null;
|
12387
12444
|
protected getCssTitle(cssClasses: any): string;
|
12388
12445
|
get isDisabledStyle(): boolean;
|
12389
12446
|
get isReadOnlyStyle(): boolean;
|
12447
|
+
protected getIsDisableAndReadOnlyStyles(itemReadOnly: boolean): Array<boolean>;
|
12390
12448
|
get isPreviewStyle(): boolean;
|
12391
12449
|
localeChanged(): void;
|
12392
12450
|
private wrapperElement?;
|
@@ -12400,9 +12458,7 @@ declare module "survey-element" {
|
|
12400
12458
|
private animationCollapsed;
|
12401
12459
|
set renderedIsExpanded(val: boolean);
|
12402
12460
|
get renderedIsExpanded(): boolean;
|
12403
|
-
|
12404
|
-
get animationAllowed(): boolean;
|
12405
|
-
set animationAllowed(val: boolean);
|
12461
|
+
protected getIsAnimationAllowed(): boolean;
|
12406
12462
|
dispose(): void;
|
12407
12463
|
}
|
12408
12464
|
}
|
@@ -13032,6 +13088,7 @@ declare module "question" {
|
|
13032
13088
|
set value(newValue: any);
|
13033
13089
|
get hasFilteredValue(): boolean;
|
13034
13090
|
getFilteredValue(): any;
|
13091
|
+
getFilteredName(): any;
|
13035
13092
|
get valueForSurvey(): any;
|
13036
13093
|
/**
|
13037
13094
|
* Sets the question's `value` and `comment` properties to `undefined`.
|
@@ -15216,6 +15273,11 @@ declare module "base" {
|
|
15216
15273
|
protected copyCssClasses(dest: any, source: any): void;
|
15217
15274
|
private getValueInLowCase;
|
15218
15275
|
getElementsInDesign(includeHidden?: boolean): Array<IElement>;
|
15276
|
+
get animationAllowed(): boolean;
|
15277
|
+
protected getIsAnimationAllowed(): boolean;
|
15278
|
+
private animationAllowedLock;
|
15279
|
+
blockAnimations(): void;
|
15280
|
+
releaseAnimations(): void;
|
15219
15281
|
}
|
15220
15282
|
export class ArrayChanges<T = any> {
|
15221
15283
|
index: number;
|
@@ -16561,6 +16623,7 @@ declare module "question_checkbox" {
|
|
16561
16623
|
get selectedChoices(): Array<ItemValue>;
|
16562
16624
|
get selectedItems(): Array<ItemValue>;
|
16563
16625
|
get hasFilteredValue(): boolean;
|
16626
|
+
getFilteredName(): any;
|
16564
16627
|
getFilteredValue(): any;
|
16565
16628
|
protected getMultipleSelectedItems(): Array<ItemValue>;
|
16566
16629
|
protected validateItemValues(itemValues: Array<ItemValue>): Array<ItemValue>;
|
@@ -17017,6 +17080,7 @@ declare module "question_ranking" {
|
|
17017
17080
|
*/
|
17018
17081
|
export class QuestionRankingModel extends QuestionCheckboxModel {
|
17019
17082
|
private domNode;
|
17083
|
+
private dragOrClickHelper;
|
17020
17084
|
constructor(name: string);
|
17021
17085
|
protected getDefaultItemComponent(): string;
|
17022
17086
|
getType(): string;
|
@@ -17057,7 +17121,11 @@ declare module "question_ranking" {
|
|
17057
17121
|
endLoadingFromJson(): void;
|
17058
17122
|
private setDragDropRankingChoices;
|
17059
17123
|
protected createDragDropRankingChoices(): DragDropRankingChoices | DragDropRankingSelectToRank;
|
17124
|
+
private draggedChoise;
|
17125
|
+
private draggedTargetNode;
|
17060
17126
|
handlePointerDown: (event: PointerEvent, choice: ItemValue, node: HTMLElement) => void;
|
17127
|
+
startDrag: (event: PointerEvent) => void;
|
17128
|
+
handlePointerUp: (event: PointerEvent, choice: ItemValue, node: HTMLElement) => void;
|
17061
17129
|
private isDragStartNodeValid;
|
17062
17130
|
private get allowStartDrag();
|
17063
17131
|
private canStartDragDueMaxSelectedChoices;
|
@@ -17072,7 +17140,7 @@ declare module "question_ranking" {
|
|
17072
17140
|
supportRefuse(): boolean;
|
17073
17141
|
supportDontKnow(): boolean;
|
17074
17142
|
private handleArrowKeys;
|
17075
|
-
handleKeydownSelectToRank(event: KeyboardEvent, movedElement: ItemValue): void;
|
17143
|
+
handleKeydownSelectToRank(event: KeyboardEvent, movedElement: ItemValue, hardKey?: string, isNeedFocus?: boolean): void;
|
17076
17144
|
private setValueAfterKeydown;
|
17077
17145
|
private focusItem;
|
17078
17146
|
isValueSetByUser: boolean;
|
@@ -17374,6 +17442,7 @@ declare module "question_rating" {
|
|
17374
17442
|
getType(): string;
|
17375
17443
|
protected getFirstInputElementId(): string;
|
17376
17444
|
getInputId(index: number): string;
|
17445
|
+
get questionName(): string;
|
17377
17446
|
supportGoNextPageAutomatic(): boolean;
|
17378
17447
|
supportOther(): boolean;
|
17379
17448
|
protected getPlainDataCalculatedValue(propName: string): any;
|
@@ -18141,9 +18210,10 @@ declare module "mask/mask_numeric" {
|
|
18141
18210
|
displayNumber(parsedNumber: INumericalComposition, insertThousandsSeparator?: boolean, matchWholeMask?: boolean): string;
|
18142
18211
|
convertNumber(parsedNumber: INumericalComposition): number;
|
18143
18212
|
validateNumber(number: INumericalComposition, matchWholeMask: boolean): boolean;
|
18144
|
-
parseNumber(src: string
|
18145
|
-
getNumberMaskedValue(src: string
|
18213
|
+
parseNumber(src: string): INumericalComposition;
|
18214
|
+
getNumberMaskedValue(src: string, matchWholeMask?: boolean): string;
|
18146
18215
|
private getNumberUnmaskedValue;
|
18216
|
+
getTextAlignment(): "left" | "right" | "auto";
|
18147
18217
|
getMaskedValue(src: any): string;
|
18148
18218
|
getUnmaskedValue(src: string): any;
|
18149
18219
|
processInput(args: ITextInputParams): IMaskedInputResult;
|
@@ -20903,6 +20973,7 @@ declare module "localization/arabic" {
|
|
20903
20973
|
savingData: string;
|
20904
20974
|
savingDataError: string;
|
20905
20975
|
savingDataSuccess: string;
|
20976
|
+
savingExceedSize: string;
|
20906
20977
|
saveAgainButton: string;
|
20907
20978
|
timerMin: string;
|
20908
20979
|
timerSec: string;
|
@@ -20914,6 +20985,7 @@ declare module "localization/arabic" {
|
|
20914
20985
|
timerLimitSurvey: string;
|
20915
20986
|
clearCaption: string;
|
20916
20987
|
signaturePlaceHolder: string;
|
20988
|
+
signaturePlaceHolderReadOnly: string;
|
20917
20989
|
chooseFileCaption: string;
|
20918
20990
|
takePhotoCaption: string;
|
20919
20991
|
photoPlaceholder: string;
|
@@ -21009,6 +21081,7 @@ declare module "localization/basque" {
|
|
21009
21081
|
savingData: string;
|
21010
21082
|
savingDataError: string;
|
21011
21083
|
savingDataSuccess: string;
|
21084
|
+
savingExceedSize: string;
|
21012
21085
|
saveAgainButton: string;
|
21013
21086
|
timerMin: string;
|
21014
21087
|
timerSec: string;
|
@@ -21020,6 +21093,7 @@ declare module "localization/basque" {
|
|
21020
21093
|
timerLimitSurvey: string;
|
21021
21094
|
clearCaption: string;
|
21022
21095
|
signaturePlaceHolder: string;
|
21096
|
+
signaturePlaceHolderReadOnly: string;
|
21023
21097
|
chooseFileCaption: string;
|
21024
21098
|
takePhotoCaption: string;
|
21025
21099
|
photoPlaceholder: string;
|
@@ -21115,6 +21189,7 @@ declare module "localization/bulgarian" {
|
|
21115
21189
|
savingData: string;
|
21116
21190
|
savingDataError: string;
|
21117
21191
|
savingDataSuccess: string;
|
21192
|
+
savingExceedSize: string;
|
21118
21193
|
saveAgainButton: string;
|
21119
21194
|
timerMin: string;
|
21120
21195
|
timerSec: string;
|
@@ -21126,6 +21201,7 @@ declare module "localization/bulgarian" {
|
|
21126
21201
|
timerLimitSurvey: string;
|
21127
21202
|
clearCaption: string;
|
21128
21203
|
signaturePlaceHolder: string;
|
21204
|
+
signaturePlaceHolderReadOnly: string;
|
21129
21205
|
chooseFileCaption: string;
|
21130
21206
|
takePhotoCaption: string;
|
21131
21207
|
photoPlaceholder: string;
|
@@ -21221,6 +21297,7 @@ declare module "localization/catalan" {
|
|
21221
21297
|
savingData: string;
|
21222
21298
|
savingDataError: string;
|
21223
21299
|
savingDataSuccess: string;
|
21300
|
+
savingExceedSize: string;
|
21224
21301
|
saveAgainButton: string;
|
21225
21302
|
timerMin: string;
|
21226
21303
|
timerSec: string;
|
@@ -21232,6 +21309,7 @@ declare module "localization/catalan" {
|
|
21232
21309
|
timerLimitSurvey: string;
|
21233
21310
|
clearCaption: string;
|
21234
21311
|
signaturePlaceHolder: string;
|
21312
|
+
signaturePlaceHolderReadOnly: string;
|
21235
21313
|
chooseFileCaption: string;
|
21236
21314
|
takePhotoCaption: string;
|
21237
21315
|
photoPlaceholder: string;
|
@@ -21327,6 +21405,7 @@ declare module "localization/croatian" {
|
|
21327
21405
|
savingData: string;
|
21328
21406
|
savingDataError: string;
|
21329
21407
|
savingDataSuccess: string;
|
21408
|
+
savingExceedSize: string;
|
21330
21409
|
saveAgainButton: string;
|
21331
21410
|
timerMin: string;
|
21332
21411
|
timerSec: string;
|
@@ -21338,6 +21417,7 @@ declare module "localization/croatian" {
|
|
21338
21417
|
timerLimitSurvey: string;
|
21339
21418
|
clearCaption: string;
|
21340
21419
|
signaturePlaceHolder: string;
|
21420
|
+
signaturePlaceHolderReadOnly: string;
|
21341
21421
|
chooseFileCaption: string;
|
21342
21422
|
takePhotoCaption: string;
|
21343
21423
|
photoPlaceholder: string;
|
@@ -21433,6 +21513,7 @@ declare module "localization/czech" {
|
|
21433
21513
|
savingData: string;
|
21434
21514
|
savingDataError: string;
|
21435
21515
|
savingDataSuccess: string;
|
21516
|
+
savingExceedSize: string;
|
21436
21517
|
saveAgainButton: string;
|
21437
21518
|
timerMin: string;
|
21438
21519
|
timerSec: string;
|
@@ -21444,6 +21525,7 @@ declare module "localization/czech" {
|
|
21444
21525
|
timerLimitSurvey: string;
|
21445
21526
|
clearCaption: string;
|
21446
21527
|
signaturePlaceHolder: string;
|
21528
|
+
signaturePlaceHolderReadOnly: string;
|
21447
21529
|
chooseFileCaption: string;
|
21448
21530
|
takePhotoCaption: string;
|
21449
21531
|
photoPlaceholder: string;
|
@@ -21539,6 +21621,7 @@ declare module "localization/danish" {
|
|
21539
21621
|
savingData: string;
|
21540
21622
|
savingDataError: string;
|
21541
21623
|
savingDataSuccess: string;
|
21624
|
+
savingExceedSize: string;
|
21542
21625
|
saveAgainButton: string;
|
21543
21626
|
timerMin: string;
|
21544
21627
|
timerSec: string;
|
@@ -21550,6 +21633,7 @@ declare module "localization/danish" {
|
|
21550
21633
|
timerLimitSurvey: string;
|
21551
21634
|
clearCaption: string;
|
21552
21635
|
signaturePlaceHolder: string;
|
21636
|
+
signaturePlaceHolderReadOnly: string;
|
21553
21637
|
chooseFileCaption: string;
|
21554
21638
|
takePhotoCaption: string;
|
21555
21639
|
photoPlaceholder: string;
|
@@ -21645,6 +21729,7 @@ declare module "localization/dutch" {
|
|
21645
21729
|
savingData: string;
|
21646
21730
|
savingDataError: string;
|
21647
21731
|
savingDataSuccess: string;
|
21732
|
+
savingExceedSize: string;
|
21648
21733
|
saveAgainButton: string;
|
21649
21734
|
timerMin: string;
|
21650
21735
|
timerSec: string;
|
@@ -21656,6 +21741,7 @@ declare module "localization/dutch" {
|
|
21656
21741
|
timerLimitSurvey: string;
|
21657
21742
|
clearCaption: string;
|
21658
21743
|
signaturePlaceHolder: string;
|
21744
|
+
signaturePlaceHolderReadOnly: string;
|
21659
21745
|
chooseFileCaption: string;
|
21660
21746
|
takePhotoCaption: string;
|
21661
21747
|
photoPlaceholder: string;
|
@@ -21752,6 +21838,7 @@ declare module "localization/estonian" {
|
|
21752
21838
|
savingData: string;
|
21753
21839
|
savingDataError: string;
|
21754
21840
|
savingDataSuccess: string;
|
21841
|
+
savingExceedSize: string;
|
21755
21842
|
saveAgainButton: string;
|
21756
21843
|
timerMin: string;
|
21757
21844
|
timerSec: string;
|
@@ -21763,6 +21850,7 @@ declare module "localization/estonian" {
|
|
21763
21850
|
timerLimitSurvey: string;
|
21764
21851
|
clearCaption: string;
|
21765
21852
|
signaturePlaceHolder: string;
|
21853
|
+
signaturePlaceHolderReadOnly: string;
|
21766
21854
|
chooseFileCaption: string;
|
21767
21855
|
takePhotoCaption: string;
|
21768
21856
|
photoPlaceholder: string;
|
@@ -21858,6 +21946,7 @@ declare module "localization/finnish" {
|
|
21858
21946
|
savingData: string;
|
21859
21947
|
savingDataError: string;
|
21860
21948
|
savingDataSuccess: string;
|
21949
|
+
savingExceedSize: string;
|
21861
21950
|
saveAgainButton: string;
|
21862
21951
|
timerMin: string;
|
21863
21952
|
timerSec: string;
|
@@ -21869,6 +21958,7 @@ declare module "localization/finnish" {
|
|
21869
21958
|
timerLimitSurvey: string;
|
21870
21959
|
clearCaption: string;
|
21871
21960
|
signaturePlaceHolder: string;
|
21961
|
+
signaturePlaceHolderReadOnly: string;
|
21872
21962
|
chooseFileCaption: string;
|
21873
21963
|
takePhotoCaption: string;
|
21874
21964
|
photoPlaceholder: string;
|
@@ -21964,6 +22054,7 @@ declare module "localization/french" {
|
|
21964
22054
|
savingData: string;
|
21965
22055
|
savingDataError: string;
|
21966
22056
|
savingDataSuccess: string;
|
22057
|
+
savingExceedSize: string;
|
21967
22058
|
saveAgainButton: string;
|
21968
22059
|
timerMin: string;
|
21969
22060
|
timerSec: string;
|
@@ -21975,6 +22066,7 @@ declare module "localization/french" {
|
|
21975
22066
|
timerLimitSurvey: string;
|
21976
22067
|
clearCaption: string;
|
21977
22068
|
signaturePlaceHolder: string;
|
22069
|
+
signaturePlaceHolderReadOnly: string;
|
21978
22070
|
chooseFileCaption: string;
|
21979
22071
|
takePhotoCaption: string;
|
21980
22072
|
photoPlaceholder: string;
|
@@ -22070,6 +22162,7 @@ declare module "localization/georgian" {
|
|
22070
22162
|
savingData: string;
|
22071
22163
|
savingDataError: string;
|
22072
22164
|
savingDataSuccess: string;
|
22165
|
+
savingExceedSize: string;
|
22073
22166
|
saveAgainButton: string;
|
22074
22167
|
timerMin: string;
|
22075
22168
|
timerSec: string;
|
@@ -22081,6 +22174,7 @@ declare module "localization/georgian" {
|
|
22081
22174
|
timerLimitSurvey: string;
|
22082
22175
|
clearCaption: string;
|
22083
22176
|
signaturePlaceHolder: string;
|
22177
|
+
signaturePlaceHolderReadOnly: string;
|
22084
22178
|
chooseFileCaption: string;
|
22085
22179
|
takePhotoCaption: string;
|
22086
22180
|
photoPlaceholder: string;
|
@@ -22176,6 +22270,7 @@ declare module "localization/german" {
|
|
22176
22270
|
savingData: string;
|
22177
22271
|
savingDataError: string;
|
22178
22272
|
savingDataSuccess: string;
|
22273
|
+
savingExceedSize: string;
|
22179
22274
|
saveAgainButton: string;
|
22180
22275
|
timerMin: string;
|
22181
22276
|
timerSec: string;
|
@@ -22187,6 +22282,7 @@ declare module "localization/german" {
|
|
22187
22282
|
timerLimitSurvey: string;
|
22188
22283
|
clearCaption: string;
|
22189
22284
|
signaturePlaceHolder: string;
|
22285
|
+
signaturePlaceHolderReadOnly: string;
|
22190
22286
|
chooseFileCaption: string;
|
22191
22287
|
takePhotoCaption: string;
|
22192
22288
|
photoPlaceholder: string;
|
@@ -22282,6 +22378,7 @@ declare module "localization/greek" {
|
|
22282
22378
|
savingData: string;
|
22283
22379
|
savingDataError: string;
|
22284
22380
|
savingDataSuccess: string;
|
22381
|
+
savingExceedSize: string;
|
22285
22382
|
saveAgainButton: string;
|
22286
22383
|
timerMin: string;
|
22287
22384
|
timerSec: string;
|
@@ -22293,6 +22390,7 @@ declare module "localization/greek" {
|
|
22293
22390
|
timerLimitSurvey: string;
|
22294
22391
|
clearCaption: string;
|
22295
22392
|
signaturePlaceHolder: string;
|
22393
|
+
signaturePlaceHolderReadOnly: string;
|
22296
22394
|
chooseFileCaption: string;
|
22297
22395
|
takePhotoCaption: string;
|
22298
22396
|
photoPlaceholder: string;
|
@@ -22388,6 +22486,7 @@ declare module "localization/hebrew" {
|
|
22388
22486
|
savingData: string;
|
22389
22487
|
savingDataError: string;
|
22390
22488
|
savingDataSuccess: string;
|
22489
|
+
savingExceedSize: string;
|
22391
22490
|
saveAgainButton: string;
|
22392
22491
|
timerMin: string;
|
22393
22492
|
timerSec: string;
|
@@ -22399,6 +22498,7 @@ declare module "localization/hebrew" {
|
|
22399
22498
|
timerLimitSurvey: string;
|
22400
22499
|
clearCaption: string;
|
22401
22500
|
signaturePlaceHolder: string;
|
22501
|
+
signaturePlaceHolderReadOnly: string;
|
22402
22502
|
chooseFileCaption: string;
|
22403
22503
|
takePhotoCaption: string;
|
22404
22504
|
photoPlaceholder: string;
|
@@ -22494,6 +22594,7 @@ declare module "localization/hindi" {
|
|
22494
22594
|
savingData: string;
|
22495
22595
|
savingDataError: string;
|
22496
22596
|
savingDataSuccess: string;
|
22597
|
+
savingExceedSize: string;
|
22497
22598
|
saveAgainButton: string;
|
22498
22599
|
timerMin: string;
|
22499
22600
|
timerSec: string;
|
@@ -22505,6 +22606,7 @@ declare module "localization/hindi" {
|
|
22505
22606
|
timerLimitSurvey: string;
|
22506
22607
|
clearCaption: string;
|
22507
22608
|
signaturePlaceHolder: string;
|
22609
|
+
signaturePlaceHolderReadOnly: string;
|
22508
22610
|
chooseFileCaption: string;
|
22509
22611
|
takePhotoCaption: string;
|
22510
22612
|
photoPlaceholder: string;
|
@@ -22600,6 +22702,7 @@ declare module "localization/hungarian" {
|
|
22600
22702
|
savingData: string;
|
22601
22703
|
savingDataError: string;
|
22602
22704
|
savingDataSuccess: string;
|
22705
|
+
savingExceedSize: string;
|
22603
22706
|
saveAgainButton: string;
|
22604
22707
|
timerMin: string;
|
22605
22708
|
timerSec: string;
|
@@ -22611,6 +22714,7 @@ declare module "localization/hungarian" {
|
|
22611
22714
|
timerLimitSurvey: string;
|
22612
22715
|
clearCaption: string;
|
22613
22716
|
signaturePlaceHolder: string;
|
22717
|
+
signaturePlaceHolderReadOnly: string;
|
22614
22718
|
chooseFileCaption: string;
|
22615
22719
|
takePhotoCaption: string;
|
22616
22720
|
photoPlaceholder: string;
|
@@ -22706,6 +22810,7 @@ declare module "localization/icelandic" {
|
|
22706
22810
|
savingData: string;
|
22707
22811
|
savingDataError: string;
|
22708
22812
|
savingDataSuccess: string;
|
22813
|
+
savingExceedSize: string;
|
22709
22814
|
saveAgainButton: string;
|
22710
22815
|
timerMin: string;
|
22711
22816
|
timerSec: string;
|
@@ -22717,6 +22822,7 @@ declare module "localization/icelandic" {
|
|
22717
22822
|
timerLimitSurvey: string;
|
22718
22823
|
clearCaption: string;
|
22719
22824
|
signaturePlaceHolder: string;
|
22825
|
+
signaturePlaceHolderReadOnly: string;
|
22720
22826
|
chooseFileCaption: string;
|
22721
22827
|
takePhotoCaption: string;
|
22722
22828
|
photoPlaceholder: string;
|
@@ -22812,6 +22918,7 @@ declare module "localization/indonesian" {
|
|
22812
22918
|
savingData: string;
|
22813
22919
|
savingDataError: string;
|
22814
22920
|
savingDataSuccess: string;
|
22921
|
+
savingExceedSize: string;
|
22815
22922
|
saveAgainButton: string;
|
22816
22923
|
timerMin: string;
|
22817
22924
|
timerSec: string;
|
@@ -22823,6 +22930,7 @@ declare module "localization/indonesian" {
|
|
22823
22930
|
timerLimitSurvey: string;
|
22824
22931
|
clearCaption: string;
|
22825
22932
|
signaturePlaceHolder: string;
|
22933
|
+
signaturePlaceHolderReadOnly: string;
|
22826
22934
|
chooseFileCaption: string;
|
22827
22935
|
takePhotoCaption: string;
|
22828
22936
|
photoPlaceholder: string;
|
@@ -22918,6 +23026,7 @@ declare module "localization/italian" {
|
|
22918
23026
|
savingData: string;
|
22919
23027
|
savingDataError: string;
|
22920
23028
|
savingDataSuccess: string;
|
23029
|
+
savingExceedSize: string;
|
22921
23030
|
saveAgainButton: string;
|
22922
23031
|
timerMin: string;
|
22923
23032
|
timerSec: string;
|
@@ -22929,6 +23038,7 @@ declare module "localization/italian" {
|
|
22929
23038
|
timerLimitSurvey: string;
|
22930
23039
|
clearCaption: string;
|
22931
23040
|
signaturePlaceHolder: string;
|
23041
|
+
signaturePlaceHolderReadOnly: string;
|
22932
23042
|
chooseFileCaption: string;
|
22933
23043
|
takePhotoCaption: string;
|
22934
23044
|
photoPlaceholder: string;
|
@@ -23024,6 +23134,7 @@ declare module "localization/japanese" {
|
|
23024
23134
|
savingData: string;
|
23025
23135
|
savingDataError: string;
|
23026
23136
|
savingDataSuccess: string;
|
23137
|
+
savingExceedSize: string;
|
23027
23138
|
saveAgainButton: string;
|
23028
23139
|
timerMin: string;
|
23029
23140
|
timerSec: string;
|
@@ -23035,6 +23146,7 @@ declare module "localization/japanese" {
|
|
23035
23146
|
timerLimitSurvey: string;
|
23036
23147
|
clearCaption: string;
|
23037
23148
|
signaturePlaceHolder: string;
|
23149
|
+
signaturePlaceHolderReadOnly: string;
|
23038
23150
|
chooseFileCaption: string;
|
23039
23151
|
takePhotoCaption: string;
|
23040
23152
|
photoPlaceholder: string;
|
@@ -23130,6 +23242,7 @@ declare module "localization/kazakh" {
|
|
23130
23242
|
savingData: string;
|
23131
23243
|
savingDataError: string;
|
23132
23244
|
savingDataSuccess: string;
|
23245
|
+
savingExceedSize: string;
|
23133
23246
|
saveAgainButton: string;
|
23134
23247
|
timerMin: string;
|
23135
23248
|
timerSec: string;
|
@@ -23141,6 +23254,7 @@ declare module "localization/kazakh" {
|
|
23141
23254
|
timerLimitSurvey: string;
|
23142
23255
|
clearCaption: string;
|
23143
23256
|
signaturePlaceHolder: string;
|
23257
|
+
signaturePlaceHolderReadOnly: string;
|
23144
23258
|
chooseFileCaption: string;
|
23145
23259
|
takePhotoCaption: string;
|
23146
23260
|
photoPlaceholder: string;
|
@@ -23236,6 +23350,7 @@ declare module "localization/korean" {
|
|
23236
23350
|
savingData: string;
|
23237
23351
|
savingDataError: string;
|
23238
23352
|
savingDataSuccess: string;
|
23353
|
+
savingExceedSize: string;
|
23239
23354
|
saveAgainButton: string;
|
23240
23355
|
timerMin: string;
|
23241
23356
|
timerSec: string;
|
@@ -23247,6 +23362,7 @@ declare module "localization/korean" {
|
|
23247
23362
|
timerLimitSurvey: string;
|
23248
23363
|
clearCaption: string;
|
23249
23364
|
signaturePlaceHolder: string;
|
23365
|
+
signaturePlaceHolderReadOnly: string;
|
23250
23366
|
chooseFileCaption: string;
|
23251
23367
|
takePhotoCaption: string;
|
23252
23368
|
photoPlaceholder: string;
|
@@ -23342,6 +23458,7 @@ declare module "localization/latvian" {
|
|
23342
23458
|
savingData: string;
|
23343
23459
|
savingDataError: string;
|
23344
23460
|
savingDataSuccess: string;
|
23461
|
+
savingExceedSize: string;
|
23345
23462
|
saveAgainButton: string;
|
23346
23463
|
timerMin: string;
|
23347
23464
|
timerSec: string;
|
@@ -23353,6 +23470,7 @@ declare module "localization/latvian" {
|
|
23353
23470
|
timerLimitSurvey: string;
|
23354
23471
|
clearCaption: string;
|
23355
23472
|
signaturePlaceHolder: string;
|
23473
|
+
signaturePlaceHolderReadOnly: string;
|
23356
23474
|
chooseFileCaption: string;
|
23357
23475
|
takePhotoCaption: string;
|
23358
23476
|
photoPlaceholder: string;
|
@@ -23448,6 +23566,7 @@ declare module "localization/lithuanian" {
|
|
23448
23566
|
savingData: string;
|
23449
23567
|
savingDataError: string;
|
23450
23568
|
savingDataSuccess: string;
|
23569
|
+
savingExceedSize: string;
|
23451
23570
|
saveAgainButton: string;
|
23452
23571
|
timerMin: string;
|
23453
23572
|
timerSec: string;
|
@@ -23459,6 +23578,7 @@ declare module "localization/lithuanian" {
|
|
23459
23578
|
timerLimitSurvey: string;
|
23460
23579
|
clearCaption: string;
|
23461
23580
|
signaturePlaceHolder: string;
|
23581
|
+
signaturePlaceHolderReadOnly: string;
|
23462
23582
|
chooseFileCaption: string;
|
23463
23583
|
takePhotoCaption: string;
|
23464
23584
|
photoPlaceholder: string;
|
@@ -23554,6 +23674,7 @@ declare module "localization/macedonian" {
|
|
23554
23674
|
savingData: string;
|
23555
23675
|
savingDataError: string;
|
23556
23676
|
savingDataSuccess: string;
|
23677
|
+
savingExceedSize: string;
|
23557
23678
|
saveAgainButton: string;
|
23558
23679
|
timerMin: string;
|
23559
23680
|
timerSec: string;
|
@@ -23565,6 +23686,7 @@ declare module "localization/macedonian" {
|
|
23565
23686
|
timerLimitSurvey: string;
|
23566
23687
|
clearCaption: string;
|
23567
23688
|
signaturePlaceHolder: string;
|
23689
|
+
signaturePlaceHolderReadOnly: string;
|
23568
23690
|
chooseFileCaption: string;
|
23569
23691
|
takePhotoCaption: string;
|
23570
23692
|
photoPlaceholder: string;
|
@@ -23660,6 +23782,7 @@ declare module "localization/malay" {
|
|
23660
23782
|
savingData: string;
|
23661
23783
|
savingDataError: string;
|
23662
23784
|
savingDataSuccess: string;
|
23785
|
+
savingExceedSize: string;
|
23663
23786
|
saveAgainButton: string;
|
23664
23787
|
timerMin: string;
|
23665
23788
|
timerSec: string;
|
@@ -23671,6 +23794,7 @@ declare module "localization/malay" {
|
|
23671
23794
|
timerLimitSurvey: string;
|
23672
23795
|
clearCaption: string;
|
23673
23796
|
signaturePlaceHolder: string;
|
23797
|
+
signaturePlaceHolderReadOnly: string;
|
23674
23798
|
chooseFileCaption: string;
|
23675
23799
|
takePhotoCaption: string;
|
23676
23800
|
photoPlaceholder: string;
|
@@ -23766,6 +23890,7 @@ declare module "localization/norwegian" {
|
|
23766
23890
|
savingData: string;
|
23767
23891
|
savingDataError: string;
|
23768
23892
|
savingDataSuccess: string;
|
23893
|
+
savingExceedSize: string;
|
23769
23894
|
saveAgainButton: string;
|
23770
23895
|
timerMin: string;
|
23771
23896
|
timerSec: string;
|
@@ -23777,6 +23902,7 @@ declare module "localization/norwegian" {
|
|
23777
23902
|
timerLimitSurvey: string;
|
23778
23903
|
clearCaption: string;
|
23779
23904
|
signaturePlaceHolder: string;
|
23905
|
+
signaturePlaceHolderReadOnly: string;
|
23780
23906
|
chooseFileCaption: string;
|
23781
23907
|
takePhotoCaption: string;
|
23782
23908
|
photoPlaceholder: string;
|
@@ -23872,6 +23998,7 @@ declare module "localization/persian" {
|
|
23872
23998
|
savingData: string;
|
23873
23999
|
savingDataError: string;
|
23874
24000
|
savingDataSuccess: string;
|
24001
|
+
savingExceedSize: string;
|
23875
24002
|
saveAgainButton: string;
|
23876
24003
|
timerMin: string;
|
23877
24004
|
timerSec: string;
|
@@ -23883,6 +24010,7 @@ declare module "localization/persian" {
|
|
23883
24010
|
timerLimitSurvey: string;
|
23884
24011
|
clearCaption: string;
|
23885
24012
|
signaturePlaceHolder: string;
|
24013
|
+
signaturePlaceHolderReadOnly: string;
|
23886
24014
|
chooseFileCaption: string;
|
23887
24015
|
takePhotoCaption: string;
|
23888
24016
|
photoPlaceholder: string;
|
@@ -23978,6 +24106,7 @@ declare module "localization/polish" {
|
|
23978
24106
|
savingData: string;
|
23979
24107
|
savingDataError: string;
|
23980
24108
|
savingDataSuccess: string;
|
24109
|
+
savingExceedSize: string;
|
23981
24110
|
saveAgainButton: string;
|
23982
24111
|
timerMin: string;
|
23983
24112
|
timerSec: string;
|
@@ -23989,6 +24118,7 @@ declare module "localization/polish" {
|
|
23989
24118
|
timerLimitSurvey: string;
|
23990
24119
|
clearCaption: string;
|
23991
24120
|
signaturePlaceHolder: string;
|
24121
|
+
signaturePlaceHolderReadOnly: string;
|
23992
24122
|
chooseFileCaption: string;
|
23993
24123
|
takePhotoCaption: string;
|
23994
24124
|
photoPlaceholder: string;
|
@@ -24084,6 +24214,7 @@ declare module "localization/portuguese" {
|
|
24084
24214
|
savingData: string;
|
24085
24215
|
savingDataError: string;
|
24086
24216
|
savingDataSuccess: string;
|
24217
|
+
savingExceedSize: string;
|
24087
24218
|
saveAgainButton: string;
|
24088
24219
|
timerMin: string;
|
24089
24220
|
timerSec: string;
|
@@ -24095,6 +24226,7 @@ declare module "localization/portuguese" {
|
|
24095
24226
|
timerLimitSurvey: string;
|
24096
24227
|
clearCaption: string;
|
24097
24228
|
signaturePlaceHolder: string;
|
24229
|
+
signaturePlaceHolderReadOnly: string;
|
24098
24230
|
chooseFileCaption: string;
|
24099
24231
|
takePhotoCaption: string;
|
24100
24232
|
photoPlaceholder: string;
|
@@ -24193,6 +24325,7 @@ declare module "localization/portuguese-br" {
|
|
24193
24325
|
savingData: string;
|
24194
24326
|
savingDataError: string;
|
24195
24327
|
savingDataSuccess: string;
|
24328
|
+
savingExceedSize: string;
|
24196
24329
|
saveAgainButton: string;
|
24197
24330
|
timerMin: string;
|
24198
24331
|
timerSec: string;
|
@@ -24204,6 +24337,7 @@ declare module "localization/portuguese-br" {
|
|
24204
24337
|
timerLimitSurvey: string;
|
24205
24338
|
clearCaption: string;
|
24206
24339
|
signaturePlaceHolder: string;
|
24340
|
+
signaturePlaceHolderReadOnly: string;
|
24207
24341
|
chooseFileCaption: string;
|
24208
24342
|
takePhotoCaption: string;
|
24209
24343
|
photoPlaceholder: string;
|
@@ -24302,6 +24436,7 @@ declare module "localization/russian" {
|
|
24302
24436
|
savingData: string;
|
24303
24437
|
savingDataError: string;
|
24304
24438
|
savingDataSuccess: string;
|
24439
|
+
savingExceedSize: string;
|
24305
24440
|
saveAgainButton: string;
|
24306
24441
|
timerMin: string;
|
24307
24442
|
timerSec: string;
|
@@ -24313,6 +24448,7 @@ declare module "localization/russian" {
|
|
24313
24448
|
timerLimitSurvey: string;
|
24314
24449
|
clearCaption: string;
|
24315
24450
|
signaturePlaceHolder: string;
|
24451
|
+
signaturePlaceHolderReadOnly: string;
|
24316
24452
|
chooseFileCaption: string;
|
24317
24453
|
takePhotoCaption: string;
|
24318
24454
|
photoPlaceholder: string;
|
@@ -24408,6 +24544,7 @@ declare module "localization/serbian" {
|
|
24408
24544
|
savingData: string;
|
24409
24545
|
savingDataError: string;
|
24410
24546
|
savingDataSuccess: string;
|
24547
|
+
savingExceedSize: string;
|
24411
24548
|
saveAgainButton: string;
|
24412
24549
|
timerMin: string;
|
24413
24550
|
timerSec: string;
|
@@ -24419,6 +24556,7 @@ declare module "localization/serbian" {
|
|
24419
24556
|
timerLimitSurvey: string;
|
24420
24557
|
clearCaption: string;
|
24421
24558
|
signaturePlaceHolder: string;
|
24559
|
+
signaturePlaceHolderReadOnly: string;
|
24422
24560
|
chooseFileCaption: string;
|
24423
24561
|
takePhotoCaption: string;
|
24424
24562
|
photoPlaceholder: string;
|
@@ -24514,6 +24652,7 @@ declare module "localization/simplified-chinese" {
|
|
24514
24652
|
savingData: string;
|
24515
24653
|
savingDataError: string;
|
24516
24654
|
savingDataSuccess: string;
|
24655
|
+
savingExceedSize: string;
|
24517
24656
|
saveAgainButton: string;
|
24518
24657
|
timerMin: string;
|
24519
24658
|
timerSec: string;
|
@@ -24525,6 +24664,7 @@ declare module "localization/simplified-chinese" {
|
|
24525
24664
|
timerLimitSurvey: string;
|
24526
24665
|
clearCaption: string;
|
24527
24666
|
signaturePlaceHolder: string;
|
24667
|
+
signaturePlaceHolderReadOnly: string;
|
24528
24668
|
chooseFileCaption: string;
|
24529
24669
|
takePhotoCaption: string;
|
24530
24670
|
photoPlaceholder: string;
|
@@ -24620,6 +24760,7 @@ declare module "localization/slovak" {
|
|
24620
24760
|
savingData: string;
|
24621
24761
|
savingDataError: string;
|
24622
24762
|
savingDataSuccess: string;
|
24763
|
+
savingExceedSize: string;
|
24623
24764
|
saveAgainButton: string;
|
24624
24765
|
timerMin: string;
|
24625
24766
|
timerSec: string;
|
@@ -24631,6 +24772,7 @@ declare module "localization/slovak" {
|
|
24631
24772
|
timerLimitSurvey: string;
|
24632
24773
|
clearCaption: string;
|
24633
24774
|
signaturePlaceHolder: string;
|
24775
|
+
signaturePlaceHolderReadOnly: string;
|
24634
24776
|
chooseFileCaption: string;
|
24635
24777
|
takePhotoCaption: string;
|
24636
24778
|
photoPlaceholder: string;
|
@@ -24726,6 +24868,7 @@ declare module "localization/spanish" {
|
|
24726
24868
|
savingData: string;
|
24727
24869
|
savingDataError: string;
|
24728
24870
|
savingDataSuccess: string;
|
24871
|
+
savingExceedSize: string;
|
24729
24872
|
saveAgainButton: string;
|
24730
24873
|
timerMin: string;
|
24731
24874
|
timerSec: string;
|
@@ -24737,6 +24880,7 @@ declare module "localization/spanish" {
|
|
24737
24880
|
timerLimitSurvey: string;
|
24738
24881
|
clearCaption: string;
|
24739
24882
|
signaturePlaceHolder: string;
|
24883
|
+
signaturePlaceHolderReadOnly: string;
|
24740
24884
|
chooseFileCaption: string;
|
24741
24885
|
takePhotoCaption: string;
|
24742
24886
|
photoPlaceholder: string;
|
@@ -24832,6 +24976,7 @@ declare module "localization/swahili" {
|
|
24832
24976
|
savingData: string;
|
24833
24977
|
savingDataError: string;
|
24834
24978
|
savingDataSuccess: string;
|
24979
|
+
savingExceedSize: string;
|
24835
24980
|
saveAgainButton: string;
|
24836
24981
|
timerMin: string;
|
24837
24982
|
timerSec: string;
|
@@ -24843,6 +24988,7 @@ declare module "localization/swahili" {
|
|
24843
24988
|
timerLimitSurvey: string;
|
24844
24989
|
clearCaption: string;
|
24845
24990
|
signaturePlaceHolder: string;
|
24991
|
+
signaturePlaceHolderReadOnly: string;
|
24846
24992
|
chooseFileCaption: string;
|
24847
24993
|
takePhotoCaption: string;
|
24848
24994
|
photoPlaceholder: string;
|
@@ -24938,6 +25084,7 @@ declare module "localization/swedish" {
|
|
24938
25084
|
savingData: string;
|
24939
25085
|
savingDataError: string;
|
24940
25086
|
savingDataSuccess: string;
|
25087
|
+
savingExceedSize: string;
|
24941
25088
|
saveAgainButton: string;
|
24942
25089
|
timerMin: string;
|
24943
25090
|
timerSec: string;
|
@@ -24949,6 +25096,7 @@ declare module "localization/swedish" {
|
|
24949
25096
|
timerLimitSurvey: string;
|
24950
25097
|
clearCaption: string;
|
24951
25098
|
signaturePlaceHolder: string;
|
25099
|
+
signaturePlaceHolderReadOnly: string;
|
24952
25100
|
chooseFileCaption: string;
|
24953
25101
|
takePhotoCaption: string;
|
24954
25102
|
photoPlaceholder: string;
|
@@ -25108,6 +25256,7 @@ declare module "localization/thai" {
|
|
25108
25256
|
savingData: string;
|
25109
25257
|
savingDataError: string;
|
25110
25258
|
savingDataSuccess: string;
|
25259
|
+
savingExceedSize: string;
|
25111
25260
|
saveAgainButton: string;
|
25112
25261
|
timerMin: string;
|
25113
25262
|
timerSec: string;
|
@@ -25119,6 +25268,7 @@ declare module "localization/thai" {
|
|
25119
25268
|
timerLimitSurvey: string;
|
25120
25269
|
clearCaption: string;
|
25121
25270
|
signaturePlaceHolder: string;
|
25271
|
+
signaturePlaceHolderReadOnly: string;
|
25122
25272
|
chooseFileCaption: string;
|
25123
25273
|
takePhotoCaption: string;
|
25124
25274
|
photoPlaceholder: string;
|
@@ -25214,6 +25364,7 @@ declare module "localization/traditional-chinese" {
|
|
25214
25364
|
savingData: string;
|
25215
25365
|
savingDataError: string;
|
25216
25366
|
savingDataSuccess: string;
|
25367
|
+
savingExceedSize: string;
|
25217
25368
|
saveAgainButton: string;
|
25218
25369
|
timerMin: string;
|
25219
25370
|
timerSec: string;
|
@@ -25225,6 +25376,7 @@ declare module "localization/traditional-chinese" {
|
|
25225
25376
|
timerLimitSurvey: string;
|
25226
25377
|
clearCaption: string;
|
25227
25378
|
signaturePlaceHolder: string;
|
25379
|
+
signaturePlaceHolderReadOnly: string;
|
25228
25380
|
chooseFileCaption: string;
|
25229
25381
|
takePhotoCaption: string;
|
25230
25382
|
photoPlaceholder: string;
|
@@ -25320,6 +25472,7 @@ declare module "localization/turkish" {
|
|
25320
25472
|
savingData: string;
|
25321
25473
|
savingDataError: string;
|
25322
25474
|
savingDataSuccess: string;
|
25475
|
+
savingExceedSize: string;
|
25323
25476
|
saveAgainButton: string;
|
25324
25477
|
timerMin: string;
|
25325
25478
|
timerSec: string;
|
@@ -25331,6 +25484,7 @@ declare module "localization/turkish" {
|
|
25331
25484
|
timerLimitSurvey: string;
|
25332
25485
|
clearCaption: string;
|
25333
25486
|
signaturePlaceHolder: string;
|
25487
|
+
signaturePlaceHolderReadOnly: string;
|
25334
25488
|
chooseFileCaption: string;
|
25335
25489
|
takePhotoCaption: string;
|
25336
25490
|
photoPlaceholder: string;
|
@@ -25426,6 +25580,7 @@ declare module "localization/ukrainian" {
|
|
25426
25580
|
savingData: string;
|
25427
25581
|
savingDataError: string;
|
25428
25582
|
savingDataSuccess: string;
|
25583
|
+
savingExceedSize: string;
|
25429
25584
|
saveAgainButton: string;
|
25430
25585
|
timerMin: string;
|
25431
25586
|
timerSec: string;
|
@@ -25437,6 +25592,7 @@ declare module "localization/ukrainian" {
|
|
25437
25592
|
timerLimitSurvey: string;
|
25438
25593
|
clearCaption: string;
|
25439
25594
|
signaturePlaceHolder: string;
|
25595
|
+
signaturePlaceHolderReadOnly: string;
|
25440
25596
|
chooseFileCaption: string;
|
25441
25597
|
takePhotoCaption: string;
|
25442
25598
|
photoPlaceholder: string;
|
@@ -25532,6 +25688,7 @@ declare module "localization/vietnamese" {
|
|
25532
25688
|
savingData: string;
|
25533
25689
|
savingDataError: string;
|
25534
25690
|
savingDataSuccess: string;
|
25691
|
+
savingExceedSize: string;
|
25535
25692
|
saveAgainButton: string;
|
25536
25693
|
timerMin: string;
|
25537
25694
|
timerSec: string;
|
@@ -25543,6 +25700,7 @@ declare module "localization/vietnamese" {
|
|
25543
25700
|
timerLimitSurvey: string;
|
25544
25701
|
clearCaption: string;
|
25545
25702
|
signaturePlaceHolder: string;
|
25703
|
+
signaturePlaceHolderReadOnly: string;
|
25546
25704
|
chooseFileCaption: string;
|
25547
25705
|
takePhotoCaption: string;
|
25548
25706
|
photoPlaceholder: string;
|
@@ -25638,6 +25796,7 @@ declare module "localization/welsh" {
|
|
25638
25796
|
savingData: string;
|
25639
25797
|
savingDataError: string;
|
25640
25798
|
savingDataSuccess: string;
|
25799
|
+
savingExceedSize: string;
|
25641
25800
|
saveAgainButton: string;
|
25642
25801
|
timerMin: string;
|
25643
25802
|
timerSec: string;
|
@@ -25649,6 +25808,7 @@ declare module "localization/welsh" {
|
|
25649
25808
|
timerLimitSurvey: string;
|
25650
25809
|
clearCaption: string;
|
25651
25810
|
signaturePlaceHolder: string;
|
25811
|
+
signaturePlaceHolderReadOnly: string;
|
25652
25812
|
chooseFileCaption: string;
|
25653
25813
|
takePhotoCaption: string;
|
25654
25814
|
photoPlaceholder: string;
|
@@ -25744,6 +25904,7 @@ declare module "localization/telugu" {
|
|
25744
25904
|
savingData: string;
|
25745
25905
|
savingDataError: string;
|
25746
25906
|
savingDataSuccess: string;
|
25907
|
+
savingExceedSize: string;
|
25747
25908
|
saveAgainButton: string;
|
25748
25909
|
timerMin: string;
|
25749
25910
|
timerSec: string;
|
@@ -25755,6 +25916,7 @@ declare module "localization/telugu" {
|
|
25755
25916
|
timerLimitSurvey: string;
|
25756
25917
|
clearCaption: string;
|
25757
25918
|
signaturePlaceHolder: string;
|
25919
|
+
signaturePlaceHolderReadOnly: string;
|
25758
25920
|
chooseFileCaption: string;
|
25759
25921
|
takePhotoCaption: string;
|
25760
25922
|
photoPlaceholder: string;
|
@@ -25977,7 +26139,6 @@ declare module "react/components/popup/popup" {
|
|
25977
26139
|
render(): JSX.Element;
|
25978
26140
|
}
|
25979
26141
|
export class PopupContainer extends SurveyElementBase<any, any> {
|
25980
|
-
prevIsVisible: boolean;
|
25981
26142
|
constructor(props: any);
|
25982
26143
|
handleKeydown: (event: any) => void;
|
25983
26144
|
get model(): PopupBaseViewModel;
|
@@ -26507,7 +26668,7 @@ declare module "react/reactquestion_ranking" {
|
|
26507
26668
|
protected get question(): QuestionRankingModel;
|
26508
26669
|
protected renderElement(): JSX.Element;
|
26509
26670
|
protected getItems(choices?: any, unrankedItem?: boolean): Array<any>;
|
26510
|
-
protected renderItem(item: ItemValue, i: number, handleKeydown: (event: any) => void, handlePointerDown: (event: PointerEvent) => void, cssClasses: any, itemClass: string, question: QuestionRankingModel, unrankedItem?: boolean): JSX.Element;
|
26671
|
+
protected renderItem(item: ItemValue, i: number, handleKeydown: (event: any) => void, handlePointerDown: (event: PointerEvent) => void, handlePointerUp: (event: PointerEvent) => void, cssClasses: any, itemClass: string, question: QuestionRankingModel, unrankedItem?: boolean): JSX.Element;
|
26511
26672
|
}
|
26512
26673
|
export class SurveyQuestionRankingItem extends ReactSurveyElement {
|
26513
26674
|
protected get text(): string;
|
@@ -26515,6 +26676,7 @@ declare module "react/reactquestion_ranking" {
|
|
26515
26676
|
protected get indexText(): string;
|
26516
26677
|
protected get handleKeydown(): (event: any) => void;
|
26517
26678
|
protected get handlePointerDown(): (event: any) => void;
|
26679
|
+
protected get handlePointerUp(): (event: any) => void;
|
26518
26680
|
protected get cssClasses(): any;
|
26519
26681
|
protected get itemClass(): string;
|
26520
26682
|
protected get itemTabIndex(): number;
|
@@ -26882,11 +27044,15 @@ declare module "react/components/matrix/row" {
|
|
26882
27044
|
parentMatrix: QuestionMatrixDropdownModelBase;
|
26883
27045
|
}
|
26884
27046
|
export class MatrixRow extends SurveyElementBase<IMatrixRowProps, any> {
|
27047
|
+
private root;
|
26885
27048
|
constructor(props: IMatrixRowProps);
|
26886
27049
|
get model(): QuestionMatrixDropdownRenderedRow;
|
26887
27050
|
get parentMatrix(): QuestionMatrixDropdownModelBase;
|
26888
27051
|
protected getStateElement(): QuestionMatrixDropdownRenderedRow;
|
26889
27052
|
protected onPointerDownHandler: (event: any) => void;
|
27053
|
+
componentDidMount(): void;
|
27054
|
+
componentWillUnmount(): void;
|
27055
|
+
shouldComponentUpdate(nextProps: any, nextState: any): boolean;
|
26890
27056
|
render(): JSX.Element;
|
26891
27057
|
}
|
26892
27058
|
}
|