survey-react 1.9.113 → 1.9.115
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 +274 -138
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +80 -59
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +36 -9
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +279 -168
- package/survey.react.js +1349 -950
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/survey.react.d.ts
CHANGED
@@ -87,7 +87,7 @@ declare module "localization/english" {
|
|
87
87
|
loadingFile: string;
|
88
88
|
chooseFile: string;
|
89
89
|
noFileChosen: string;
|
90
|
-
|
90
|
+
filePlaceholder: string;
|
91
91
|
confirmDelete: string;
|
92
92
|
keyDuplicationError: string;
|
93
93
|
addColumn: string;
|
@@ -96,6 +96,8 @@ declare module "localization/english" {
|
|
96
96
|
emptyRowsText: string;
|
97
97
|
addPanel: string;
|
98
98
|
removePanel: string;
|
99
|
+
showDetails: string;
|
100
|
+
hideDetails: string;
|
99
101
|
choices_Item: string;
|
100
102
|
matrix_column: string;
|
101
103
|
matrix_row: string;
|
@@ -116,8 +118,8 @@ declare module "localization/english" {
|
|
116
118
|
signaturePlaceHolder: string;
|
117
119
|
chooseFileCaption: string;
|
118
120
|
takePhotoCaption: string;
|
119
|
-
|
120
|
-
|
121
|
+
photoPlaceholder: string;
|
122
|
+
fileOrPhotoPlaceholder: string;
|
121
123
|
replaceFileCaption: string;
|
122
124
|
removeFileCaption: string;
|
123
125
|
booleanCheckedLabel: string;
|
@@ -204,7 +206,7 @@ declare module "surveyStrings" {
|
|
204
206
|
loadingFile: string;
|
205
207
|
chooseFile: string;
|
206
208
|
noFileChosen: string;
|
207
|
-
|
209
|
+
filePlaceholder: string;
|
208
210
|
confirmDelete: string;
|
209
211
|
keyDuplicationError: string;
|
210
212
|
addColumn: string;
|
@@ -213,6 +215,8 @@ declare module "surveyStrings" {
|
|
213
215
|
emptyRowsText: string;
|
214
216
|
addPanel: string;
|
215
217
|
removePanel: string;
|
218
|
+
showDetails: string;
|
219
|
+
hideDetails: string;
|
216
220
|
choices_Item: string;
|
217
221
|
matrix_column: string;
|
218
222
|
matrix_row: string;
|
@@ -233,8 +237,8 @@ declare module "surveyStrings" {
|
|
233
237
|
signaturePlaceHolder: string;
|
234
238
|
chooseFileCaption: string;
|
235
239
|
takePhotoCaption: string;
|
236
|
-
|
237
|
-
|
240
|
+
photoPlaceholder: string;
|
241
|
+
fileOrPhotoPlaceholder: string;
|
238
242
|
replaceFileCaption: string;
|
239
243
|
removeFileCaption: string;
|
240
244
|
booleanCheckedLabel: string;
|
@@ -593,6 +597,7 @@ declare module "jsonobject" {
|
|
593
597
|
private generateSchemaProperty;
|
594
598
|
private getChemeRefName;
|
595
599
|
private generateChemaClass;
|
600
|
+
private getChoicesValues;
|
596
601
|
}
|
597
602
|
export class JsonError {
|
598
603
|
type: string;
|
@@ -631,6 +636,11 @@ declare module "jsonobject" {
|
|
631
636
|
className: string;
|
632
637
|
constructor(propertyName: string, className: string);
|
633
638
|
}
|
639
|
+
export class JsonRequiredArrayPropertyError extends JsonError {
|
640
|
+
propertyName: string;
|
641
|
+
className: string;
|
642
|
+
constructor(propertyName: string, className: string);
|
643
|
+
}
|
634
644
|
export class JsonObject {
|
635
645
|
private static typePropertyName;
|
636
646
|
private static positionPropertyName;
|
@@ -646,7 +656,7 @@ declare module "jsonobject" {
|
|
646
656
|
private addDynamicProperties;
|
647
657
|
private propertiesToJson;
|
648
658
|
valueToJson(obj: any, result: any, property: JsonObjectProperty, storeDefaults?: boolean): void;
|
649
|
-
valueToObj(value: any, obj: any, property: JsonObjectProperty): void;
|
659
|
+
valueToObj(value: any, obj: any, property: JsonObjectProperty, jsonObj?: any): void;
|
650
660
|
private removePos;
|
651
661
|
private removePosFromObj;
|
652
662
|
private isValueArray;
|
@@ -762,6 +772,9 @@ declare module "expressions/expressions" {
|
|
762
772
|
getType(): string;
|
763
773
|
toString(func?: (op: Operand) => string): string;
|
764
774
|
protected isContentEqual(op: Operand): boolean;
|
775
|
+
hasFunction(): boolean;
|
776
|
+
hasAsyncFunction(): boolean;
|
777
|
+
addToAsyncList(list: Array<FunctionOperand>): void;
|
765
778
|
evaluate(processValue?: ProcessValue): boolean;
|
766
779
|
setVariables(variables: Array<string>): void;
|
767
780
|
}
|
@@ -1135,7 +1148,7 @@ declare module "utils/utils" {
|
|
1135
1148
|
log(action: string): void;
|
1136
1149
|
get result(): string;
|
1137
1150
|
}
|
1138
|
-
export function showConfirmDialog(message: string, callback: (res: boolean) => void): boolean;
|
1151
|
+
export function showConfirmDialog(message: string, callback: (res: boolean) => void, applyTitle?: string): boolean;
|
1139
1152
|
export { mergeValues, getElementWidth, isContainerVisible, classesToSelector, compareVersions, confirmAction, confirmActionAsync, detectIEOrEdge, detectIEBrowser, loadFileFromBase64, isMobile, isShadowDOM, getElement, isElementVisible, findScrollableParent, scrollElementByChildId, navigateToUrl, wrapUrlForBackgroundImage, createSvg, getIconNameFromProxy, increaseHeightByContent, getOriginalEvent, preventDefaults, findParentByClassNames, getFirstVisibleChild, };
|
1140
1153
|
}
|
1141
1154
|
declare module "actions/container" {
|
@@ -1366,6 +1379,7 @@ declare module "actions/action" {
|
|
1366
1379
|
* @see visible
|
1367
1380
|
*/
|
1368
1381
|
enabled?: boolean;
|
1382
|
+
enabledIf?: () => boolean;
|
1369
1383
|
/**
|
1370
1384
|
* Specifies the visibility of the action item's title.
|
1371
1385
|
* @see title
|
@@ -1566,6 +1580,7 @@ declare module "actions/action" {
|
|
1566
1580
|
getRendererContext(locStr: LocalizableString): any;
|
1567
1581
|
setVisible(val: boolean): void;
|
1568
1582
|
getVisible(): boolean;
|
1583
|
+
enabledIf?: () => boolean;
|
1569
1584
|
setEnabled(val: boolean): void;
|
1570
1585
|
getEnabled(): boolean;
|
1571
1586
|
setComponent(val: string): void;
|
@@ -1976,6 +1991,7 @@ declare module "defaultCss/defaultV2Css" {
|
|
1976
1991
|
root: string;
|
1977
1992
|
small: string;
|
1978
1993
|
controlDisabled: string;
|
1994
|
+
constrolWithCharacterCounter: string;
|
1979
1995
|
content: string;
|
1980
1996
|
remainingCharacterCounter: string;
|
1981
1997
|
onError: string;
|
@@ -1987,6 +2003,7 @@ declare module "defaultCss/defaultV2Css" {
|
|
1987
2003
|
itemLabelOnError: string;
|
1988
2004
|
itemLabelAllowFocus: string;
|
1989
2005
|
itemLabelAnswered: string;
|
2006
|
+
itemWithCharacterCounter: string;
|
1990
2007
|
item: string;
|
1991
2008
|
itemTitle: string;
|
1992
2009
|
content: string;
|
@@ -2084,6 +2101,7 @@ declare module "defaultCss/defaultV2Css" {
|
|
2084
2101
|
rootScroll: string;
|
2085
2102
|
root: string;
|
2086
2103
|
noHeader: string;
|
2104
|
+
hasFooter: string;
|
2087
2105
|
rootVerticalAlignTop: string;
|
2088
2106
|
rootVerticalAlignMiddle: string;
|
2089
2107
|
tableWrapper: string;
|
@@ -2094,6 +2112,9 @@ declare module "defaultCss/defaultV2Css" {
|
|
2094
2112
|
errorsCellBottom: string;
|
2095
2113
|
itemCell: string;
|
2096
2114
|
row: string;
|
2115
|
+
expandedRow: string;
|
2116
|
+
rowHasPanel: string;
|
2117
|
+
rowHasEndActions: string;
|
2097
2118
|
headerCell: string;
|
2098
2119
|
rowTextCell: string;
|
2099
2120
|
columnTitleCell: string;
|
@@ -2105,6 +2126,8 @@ declare module "defaultCss/defaultV2Css" {
|
|
2105
2126
|
detailIconId: string;
|
2106
2127
|
detailIconExpandedId: string;
|
2107
2128
|
detailPanelCell: string;
|
2129
|
+
detailRowCell: string;
|
2130
|
+
actionsCellPrefix: string;
|
2108
2131
|
actionsCell: string;
|
2109
2132
|
actionsCellDrag: string;
|
2110
2133
|
emptyCell: string;
|
@@ -2118,10 +2141,14 @@ declare module "defaultCss/defaultV2Css" {
|
|
2118
2141
|
empty: string;
|
2119
2142
|
root: string;
|
2120
2143
|
noHeader: string;
|
2144
|
+
hasFooter: string;
|
2121
2145
|
tableWrapper: string;
|
2122
2146
|
content: string;
|
2123
2147
|
cell: string;
|
2124
2148
|
row: string;
|
2149
|
+
rowHasPanel: string;
|
2150
|
+
rowHasEndActions: string;
|
2151
|
+
expandedRow: string;
|
2125
2152
|
itemCell: string;
|
2126
2153
|
headerCell: string;
|
2127
2154
|
rowTextCell: string;
|
@@ -2136,6 +2163,8 @@ declare module "defaultCss/defaultV2Css" {
|
|
2136
2163
|
detailIconId: string;
|
2137
2164
|
detailIconExpandedId: string;
|
2138
2165
|
detailPanelCell: string;
|
2166
|
+
detailRowCell: string;
|
2167
|
+
actionsCellPrefix: string;
|
2139
2168
|
actionsCell: string;
|
2140
2169
|
actionsCellDrag: string;
|
2141
2170
|
buttonAdd: string;
|
@@ -2245,6 +2274,7 @@ declare module "defaultCss/defaultV2Css" {
|
|
2245
2274
|
removeFileButton: string;
|
2246
2275
|
dragAreaPlaceholder: string;
|
2247
2276
|
imageWrapper: string;
|
2277
|
+
imageWrapperDefaultImage: string;
|
2248
2278
|
single: string;
|
2249
2279
|
singleImage: string;
|
2250
2280
|
mobile: string;
|
@@ -3281,8 +3311,15 @@ declare module "utils/camera" {
|
|
3281
3311
|
private static cameraFacingMode;
|
3282
3312
|
private static canSwitchFacingMode;
|
3283
3313
|
hasCamera(callback: (res: boolean) => void): void;
|
3284
|
-
getMediaConstraints(
|
3285
|
-
|
3314
|
+
getMediaConstraints(videoSize?: {
|
3315
|
+
width?: number;
|
3316
|
+
height?: number;
|
3317
|
+
}): MediaStreamConstraints;
|
3318
|
+
startVideo(videoElementId: string, callback: (stream: MediaStream) => void, imageWidth?: number, imageHeight?: number): void;
|
3319
|
+
getImageSize(videoEl: HTMLVideoElement): {
|
3320
|
+
width: number;
|
3321
|
+
height: number;
|
3322
|
+
};
|
3286
3323
|
snap(videoElementId: string, callback: BlobCallback): boolean;
|
3287
3324
|
private canFlipValue;
|
3288
3325
|
private updateCanFlipValue;
|
@@ -3301,6 +3338,7 @@ declare module "question_file" {
|
|
3301
3338
|
import { ActionContainer } from "actions/container";
|
3302
3339
|
import { Action } from "actions/action";
|
3303
3340
|
import { Camera } from "utils/camera";
|
3341
|
+
import { LocalizableString } from "localizablestring";
|
3304
3342
|
/**
|
3305
3343
|
* A class that describes the File Upload question type.
|
3306
3344
|
*
|
@@ -3335,6 +3373,9 @@ declare module "question_file" {
|
|
3335
3373
|
* - `"file"` (default) - Allows respondents to select a local file.
|
3336
3374
|
* - `"camera"` - Allows respondents to capture and upload a photo.
|
3337
3375
|
* - `"file-camera"` - Allows respondents to select a local file or capture a photo.
|
3376
|
+
* @see filePlaceholder
|
3377
|
+
* @see photoPlaceholder
|
3378
|
+
* @see fileOrPhotoPlaceholder
|
3338
3379
|
*/
|
3339
3380
|
sourceType: string;
|
3340
3381
|
fileNavigator: ActionContainer;
|
@@ -3448,16 +3489,31 @@ declare module "question_file" {
|
|
3448
3489
|
removeFileCaption: string;
|
3449
3490
|
loadingFileTitle: string;
|
3450
3491
|
chooseFileTitle: string;
|
3451
|
-
|
3452
|
-
|
3453
|
-
|
3454
|
-
|
3455
|
-
|
3492
|
+
/**
|
3493
|
+
* A placeholder text displayed when the File Upload question doesn't contain any files or photos to upload. Applies only when [`sourceType`](#sourceType) value is `"file-camera"`.
|
3494
|
+
* @see filePlaceholder
|
3495
|
+
* @see photoPlaceholder
|
3496
|
+
*/
|
3497
|
+
fileOrPhotoPlaceholder: string;
|
3498
|
+
/**
|
3499
|
+
* A placeholder text displayed when the File Upload question doesn't contain any photos to upload. Applies only when the [`sourceType`](#sourceType) value is `"camera"`.
|
3500
|
+
* @see filePlaceholder
|
3501
|
+
* @see fileOrPhotoPlaceholder
|
3502
|
+
*/
|
3503
|
+
photoPlaceholder: string;
|
3504
|
+
/**
|
3505
|
+
* A placeholder text displayed when the File Upload question doesn't contain any files to upload. Applies only when the [`sourceType`](#sourceType) value is `"file"`.
|
3506
|
+
* @see photoPlaceholder
|
3507
|
+
* @see fileOrPhotoPlaceholder
|
3508
|
+
*/
|
3509
|
+
filePlaceholder: string;
|
3510
|
+
locRenderedPlaceholderValue: LocalizableString;
|
3511
|
+
get locRenderedPlaceholder(): LocalizableString;
|
3456
3512
|
get currentMode(): string;
|
3457
3513
|
get isPlayingVideo(): boolean;
|
3458
3514
|
private setIsPlayingVideo;
|
3459
3515
|
private updateCurrentMode;
|
3460
|
-
private
|
3516
|
+
private updateActionsVisibility;
|
3461
3517
|
get inputTitle(): string;
|
3462
3518
|
get chooseButtonText(): string;
|
3463
3519
|
clear(doneCallback?: () => void): void;
|
@@ -3495,6 +3551,7 @@ declare module "question_file" {
|
|
3495
3551
|
private allFilesOk;
|
3496
3552
|
private isFileImage;
|
3497
3553
|
getPlainData(options?: IPlainDataOptions): IQuestionPlainData;
|
3554
|
+
getImageWrapperCss(data: any): string;
|
3498
3555
|
protected getActionsContainerCss(css: any): string;
|
3499
3556
|
getRemoveButtonCss(): string;
|
3500
3557
|
getChooseFileCss(): string;
|
@@ -4619,6 +4676,7 @@ declare module "dragdrop/dom-adapter" {
|
|
4619
4676
|
private currentY;
|
4620
4677
|
private savedTargetNode;
|
4621
4678
|
private savedTargetNodeParent;
|
4679
|
+
private savedTargetNodeIndex;
|
4622
4680
|
private scrollIntervalId;
|
4623
4681
|
constructor(dd: IDragDropEngine, longTap?: boolean);
|
4624
4682
|
private get rootElement();
|
@@ -4641,6 +4699,8 @@ declare module "dragdrop/dom-adapter" {
|
|
4641
4699
|
draggedElementShortcut: any;
|
4642
4700
|
rootContainer: HTMLElement;
|
4643
4701
|
startDrag(event: PointerEvent, draggedElement: any, parentElement?: any, draggedElementNode?: HTMLElement, preventSaveTargetNode?: boolean): void;
|
4702
|
+
private getNodeIndexInParent;
|
4703
|
+
private insertNodeToParentAtIndex;
|
4644
4704
|
}
|
4645
4705
|
}
|
4646
4706
|
declare module "dragdrop/core" {
|
@@ -4749,6 +4809,7 @@ declare module "question_matrixdropdownrendered" {
|
|
4749
4809
|
isActionsCell: boolean;
|
4750
4810
|
isErrorsCell: boolean;
|
4751
4811
|
isDragHandlerCell: boolean;
|
4812
|
+
isDetailRowCell: boolean;
|
4752
4813
|
private classNameValue;
|
4753
4814
|
constructor();
|
4754
4815
|
get hasQuestion(): boolean;
|
@@ -4776,6 +4837,7 @@ declare module "question_matrixdropdownrendered" {
|
|
4776
4837
|
isGhostRow: boolean;
|
4777
4838
|
isAdditionalClasses: boolean;
|
4778
4839
|
visible: boolean;
|
4840
|
+
hasEndActions: boolean;
|
4779
4841
|
row: MatrixDropdownRowModelBase;
|
4780
4842
|
isErrorsRow: boolean;
|
4781
4843
|
private static counter;
|
@@ -7355,6 +7417,7 @@ declare module "notifier" {
|
|
7355
7417
|
}
|
7356
7418
|
declare module "question_textbase" {
|
7357
7419
|
import { Question } from "question";
|
7420
|
+
import { CssClassBuilder } from "utils/cssClassBuilder";
|
7358
7421
|
import { LocalizableString } from "localizablestring";
|
7359
7422
|
import { Base } from "base";
|
7360
7423
|
import { ISurveyImpl } from "base-interfaces";
|
@@ -7415,6 +7478,7 @@ declare module "question_textbase" {
|
|
7415
7478
|
protected getValueSeparator(): string;
|
7416
7479
|
disableNativeUndoRedo: boolean;
|
7417
7480
|
protected checkForUndo(event: KeyboardEvent): void;
|
7481
|
+
protected getControlCssClassBuilder(): CssClassBuilder;
|
7418
7482
|
getControlClass(): string;
|
7419
7483
|
get isNewA11yStructure(): boolean;
|
7420
7484
|
}
|
@@ -7424,6 +7488,7 @@ declare module "question_text" {
|
|
7424
7488
|
import { HashTable } from "helpers";
|
7425
7489
|
import { SurveyError } from "survey-error";
|
7426
7490
|
import { QuestionTextBase } from "question_textbase";
|
7491
|
+
import { CssClassBuilder } from "utils/cssClassBuilder";
|
7427
7492
|
/**
|
7428
7493
|
* A class that describes the Single-Line Input question type.
|
7429
7494
|
*
|
@@ -7537,6 +7602,7 @@ declare module "question_text" {
|
|
7537
7602
|
protected setNewValue(newValue: any): void;
|
7538
7603
|
protected correctValueType(newValue: any): any;
|
7539
7604
|
protected hasPlaceholder(): boolean;
|
7605
|
+
protected getControlCssClassBuilder(): CssClassBuilder;
|
7540
7606
|
isReadOnlyRenderDiv(): boolean;
|
7541
7607
|
get inputStyle(): any;
|
7542
7608
|
private _isWaitingForEnter;
|
@@ -7558,6 +7624,7 @@ declare module "question_multipletext" {
|
|
7558
7624
|
import { QuestionTextModel } from "question_text";
|
7559
7625
|
import { SurveyError } from "survey-error";
|
7560
7626
|
import { ILocalizableOwner, LocalizableString } from "localizablestring";
|
7627
|
+
import { HashTable } from "helpers";
|
7561
7628
|
export interface IMultipleTextData extends ILocalizableOwner, IPanel {
|
7562
7629
|
getSurvey(): ISurvey;
|
7563
7630
|
getTextProcessor(): ITextProcessor;
|
@@ -7643,6 +7710,11 @@ declare module "question_multipletext" {
|
|
7643
7710
|
*/
|
7644
7711
|
get size(): number;
|
7645
7712
|
set size(val: number);
|
7713
|
+
/**
|
7714
|
+
* An expression used to calculate the [defaultValue](https://surveyjs.io/form-library/documentation/question#defaultValue).
|
7715
|
+
*/
|
7716
|
+
get defaultValueExpression(): string;
|
7717
|
+
set defaultValueExpression(val: string);
|
7646
7718
|
/**
|
7647
7719
|
* The minimum value specified as an expression. For example, `"minValueExpression": "today(-1)"` sets the minimum value to yesterday.
|
7648
7720
|
*/
|
@@ -7773,6 +7845,7 @@ declare module "question_multipletext" {
|
|
7773
7845
|
protected onValueChanged(): void;
|
7774
7846
|
protected createTextItem(name: string, title: string): MultipleTextItemModel;
|
7775
7847
|
protected onItemValueChanged(): void;
|
7848
|
+
runCondition(values: HashTable<any>, properties: HashTable<any>): void;
|
7776
7849
|
protected getIsRunningValidators(): boolean;
|
7777
7850
|
hasErrors(fireCallback?: boolean, rec?: any): boolean;
|
7778
7851
|
getAllErrors(): Array<SurveyError>;
|
@@ -7822,7 +7895,7 @@ declare module "question_multipletext" {
|
|
7822
7895
|
protected getClassName(): string;
|
7823
7896
|
}
|
7824
7897
|
}
|
7825
|
-
declare module "
|
7898
|
+
declare module "header" {
|
7826
7899
|
import { Base } from "base";
|
7827
7900
|
import { HorizontalAlignment, VerticalAlignment } from "base-interfaces";
|
7828
7901
|
import { SurveyModel } from "survey";
|
@@ -7850,13 +7923,14 @@ declare module "cover" {
|
|
7850
7923
|
export class Cover extends Base {
|
7851
7924
|
private _survey;
|
7852
7925
|
private calcBackgroundSize;
|
7853
|
-
private
|
7926
|
+
private updateHeaderClasses;
|
7854
7927
|
private updateContentClasses;
|
7855
7928
|
private updateBackgroundImageClasses;
|
7856
7929
|
fromTheme(theme: ITheme): void;
|
7857
7930
|
constructor();
|
7858
7931
|
getType(): string;
|
7859
7932
|
cells: CoverCell[];
|
7933
|
+
actualHeight: number;
|
7860
7934
|
height: number;
|
7861
7935
|
inheritWidthFrom: "survey" | "container";
|
7862
7936
|
textAreaWidth: number;
|
@@ -7885,7 +7959,7 @@ declare module "cover" {
|
|
7885
7959
|
gridColumn: number;
|
7886
7960
|
gridRow: number;
|
7887
7961
|
};
|
7888
|
-
|
7962
|
+
headerClasses: string;
|
7889
7963
|
contentClasses: string;
|
7890
7964
|
maxWidth: string;
|
7891
7965
|
backgroundImageClasses: string;
|
@@ -7899,6 +7973,8 @@ declare module "cover" {
|
|
7899
7973
|
backgroundSize: string;
|
7900
7974
|
};
|
7901
7975
|
protected propertyValueChanged(name: string, oldValue: any, newValue: any): void;
|
7976
|
+
calculateActualHeight(logoHeight: number, titleHeight: number, descriptionHeight: number): number;
|
7977
|
+
processResponsiveness(width: number): void;
|
7902
7978
|
}
|
7903
7979
|
}
|
7904
7980
|
declare module "survey" {
|
@@ -8741,7 +8817,7 @@ declare module "survey" {
|
|
8741
8817
|
/**
|
8742
8818
|
* Specifies whether to focus the first question on the page on survey startup or when users switch between pages.
|
8743
8819
|
*
|
8744
|
-
* Default value: `true`
|
8820
|
+
* Default value: `false` in v1.9.114 and later, `true` in earlier versions
|
8745
8821
|
* @see focusOnFirstError
|
8746
8822
|
* @see focusFirstQuestion
|
8747
8823
|
* @see focusQuestion
|
@@ -11112,6 +11188,7 @@ declare module "question" {
|
|
11112
11188
|
focusCallback: () => void;
|
11113
11189
|
surveyLoadCallback: () => void;
|
11114
11190
|
displayValueCallback: (text: string) => string;
|
11191
|
+
hasCssErrorCallback: () => boolean;
|
11115
11192
|
private defaultValueRunner;
|
11116
11193
|
private isChangingViaDefaultValue;
|
11117
11194
|
private isValueChangedDirectly;
|
@@ -11124,6 +11201,7 @@ declare module "question" {
|
|
11124
11201
|
valueFromDataCallback: (val: any) => any;
|
11125
11202
|
valueToDataCallback: (val: any) => any;
|
11126
11203
|
onUpdateCssClassesCallback: (css: any) => void;
|
11204
|
+
setValueChangedDirectlyCallback: (val: boolean) => void;
|
11127
11205
|
onGetSurvey: () => ISurvey;
|
11128
11206
|
private locProcessedTitle;
|
11129
11207
|
private isReadyValue;
|
@@ -11293,7 +11371,9 @@ declare module "question" {
|
|
11293
11371
|
moveTo(container: IPanel, insertBefore?: any): boolean;
|
11294
11372
|
getProgressInfo(): IProgressInfo;
|
11295
11373
|
private setValueExpressionRunner;
|
11374
|
+
private ensureSetValueExpressionRunner;
|
11296
11375
|
private runSetValueExpression;
|
11376
|
+
private checkExpressionIf;
|
11297
11377
|
private triggersInfo;
|
11298
11378
|
private addTriggerInfo;
|
11299
11379
|
private runTriggerInfo;
|
@@ -11470,6 +11550,7 @@ declare module "question" {
|
|
11470
11550
|
get cssError(): string;
|
11471
11551
|
protected setCssError(val: string): void;
|
11472
11552
|
protected getCssError(cssClasses: any): string;
|
11553
|
+
protected hasCssError(): boolean;
|
11473
11554
|
getRootCss(): string;
|
11474
11555
|
getQuestionRootCss(): string;
|
11475
11556
|
updateElementCss(reNew?: boolean): void;
|
@@ -11717,7 +11798,9 @@ declare module "question" {
|
|
11717
11798
|
get setValueIf(): string;
|
11718
11799
|
set setValueIf(val: string);
|
11719
11800
|
/**
|
11720
|
-
* An expression used to calculate the question value.
|
11801
|
+
* An expression used to calculate the question value.
|
11802
|
+
*
|
11803
|
+
* You can use `setValueExpression` as a standalone property or in conjunction with the [`setValueIf`](#setValueIf) expression, in which case the calculated question value applies only when `setValueIf` evaluates to `true`.
|
11721
11804
|
*
|
11722
11805
|
* [Expressions](https://surveyjs.io/form-library/documentation/design-survey/conditional-logic#expressions (linkStyle))
|
11723
11806
|
* @see defaultValueExpression
|
@@ -11770,6 +11853,7 @@ declare module "question" {
|
|
11770
11853
|
protected isDefaultValueEmpty(): boolean;
|
11771
11854
|
protected getDefaultRunner(runner: ExpressionRunner, expression: string): ExpressionRunner;
|
11772
11855
|
protected setDefaultValue(): void;
|
11856
|
+
private setDefaultValueCore;
|
11773
11857
|
protected isValueExpression(val: any): boolean;
|
11774
11858
|
protected setValueAndRunExpression(runner: ExpressionRunner, defaultValue: any, setFunc: (val: any) => void, values?: HashTable<any>, properties?: HashTable<any>): void;
|
11775
11859
|
protected convertFuncValuetoQuestionValue(val: any): any;
|
@@ -11869,9 +11953,10 @@ declare module "question" {
|
|
11869
11953
|
protected setNewComment(newValue: string): void;
|
11870
11954
|
protected getValidName(name: string): string;
|
11871
11955
|
updateValueFromSurvey(newValue: any): void;
|
11956
|
+
private updateValueFromSurveyCore;
|
11872
11957
|
updateCommentFromSurvey(newValue: any): any;
|
11873
11958
|
protected onChangeQuestionValue(newValue: any): void;
|
11874
|
-
protected setValueChangedDirectly(): void;
|
11959
|
+
protected setValueChangedDirectly(val: boolean): void;
|
11875
11960
|
protected setQuestionValue(newValue: any, updateIsAnswered?: boolean): void;
|
11876
11961
|
onSurveyValueChanged(newValue: any): void;
|
11877
11962
|
setVisibleIndex(val: number): number;
|
@@ -12865,6 +12950,7 @@ declare module "base-interfaces" {
|
|
12865
12950
|
component?: string;
|
12866
12951
|
template?: string;
|
12867
12952
|
data?: any;
|
12953
|
+
processResponsiveness?: (width: number) => void;
|
12868
12954
|
}
|
12869
12955
|
export interface IPlainDataOptions {
|
12870
12956
|
includeEmpty?: boolean;
|
@@ -13811,7 +13897,7 @@ declare module "settings" {
|
|
13811
13897
|
* @param message A message to be displayed in the confirm dialog window.
|
13812
13898
|
* @param callback A callback function that should be called with `true` if a user confirms an action or `false` otherwise.
|
13813
13899
|
*/
|
13814
|
-
confirmActionAsync: (message: string, callback: (res: boolean) => void) => boolean;
|
13900
|
+
confirmActionAsync: (message: string, callback: (res: boolean) => void, applyTitle?: string) => boolean;
|
13815
13901
|
/**
|
13816
13902
|
* A minimum width value for all survey elements.
|
13817
13903
|
*
|
@@ -14415,6 +14501,8 @@ declare module "questionnonvalue" {
|
|
14415
14501
|
supportGoNextPageAutomatic(): boolean;
|
14416
14502
|
addConditionObjectsByContext(objects: Array<IConditionObject>, context: any): void;
|
14417
14503
|
getConditionJson(operator?: string, path?: string): any;
|
14504
|
+
get ariaRole(): string;
|
14505
|
+
get ariaRequired(): any;
|
14418
14506
|
}
|
14419
14507
|
}
|
14420
14508
|
declare module "question_empty" {
|
@@ -14887,7 +14975,6 @@ declare module "dragdrop/ranking-select-to-rank" {
|
|
14887
14975
|
import { DragDropRankingChoices } from "dragdrop/ranking-choices";
|
14888
14976
|
import { QuestionRankingModel } from "question_ranking";
|
14889
14977
|
export class DragDropRankingSelectToRank extends DragDropRankingChoices {
|
14890
|
-
protected onStartDrag(event: PointerEvent): void;
|
14891
14978
|
protected findDropTargetNodeByDragOverNode(dragOverNode: HTMLElement): HTMLElement;
|
14892
14979
|
protected getDropTargetByDataAttributeValue(dataAttributeValue: string): ItemValue;
|
14893
14980
|
protected getDropTargetByNode(dropTargetNode: HTMLElement, event: PointerEvent): any;
|
@@ -14998,10 +15085,15 @@ declare module "question_ranking" {
|
|
14998
15085
|
*/
|
14999
15086
|
get selectToRankAreasLayout(): string;
|
15000
15087
|
set selectToRankAreasLayout(val: string);
|
15088
|
+
get renderedSelectToRankAreasLayout(): string;
|
15089
|
+
isMobileMode(): boolean;
|
15001
15090
|
selectToRankEmptyRankedAreaText: string;
|
15002
15091
|
selectToRankEmptyUnrankedAreaText: string;
|
15003
15092
|
get useFullItemSizeForShortcut(): boolean;
|
15004
15093
|
set useFullItemSizeForShortcut(val: boolean);
|
15094
|
+
get dragDropSvgIcon(): string;
|
15095
|
+
get arrowsSvgIcon(): string;
|
15096
|
+
get dashSvgIcon(): string;
|
15005
15097
|
get isNewA11yStructure(): boolean;
|
15006
15098
|
}
|
15007
15099
|
}
|
@@ -15046,6 +15138,7 @@ declare module "question_comment" {
|
|
15046
15138
|
*/
|
15047
15139
|
get allowResize(): boolean;
|
15048
15140
|
set allowResize(val: boolean);
|
15141
|
+
get renderedAllowResize(): boolean;
|
15049
15142
|
get resizeStyle(): "none" | "both";
|
15050
15143
|
getType(): string;
|
15051
15144
|
afterRenderQuestionElement(el: HTMLElement): void;
|
@@ -15580,6 +15673,7 @@ declare module "question_image" {
|
|
15580
15673
|
declare module "question_signaturepad" {
|
15581
15674
|
import { Question } from "question";
|
15582
15675
|
import { ITheme } from "themes";
|
15676
|
+
export function getCanvasRatio(canvas: HTMLCanvasElement): number;
|
15583
15677
|
/**
|
15584
15678
|
* A class that describes the Signature question type.
|
15585
15679
|
*
|
@@ -15660,8 +15754,17 @@ declare module "question_signaturepad" {
|
|
15660
15754
|
get backgroundImage(): string;
|
15661
15755
|
set backgroundImage(val: string);
|
15662
15756
|
get clearButtonCaption(): string;
|
15757
|
+
/**
|
15758
|
+
* A Boolean value that specifies whether to show the [placeholder](#placeholder).
|
15759
|
+
*
|
15760
|
+
* Default value: `true`
|
15761
|
+
*/
|
15762
|
+
showPlaceholder: boolean;
|
15663
15763
|
needShowPlaceholder(): boolean;
|
15664
|
-
|
15764
|
+
/**
|
15765
|
+
* A placeholder for the signature area. Applies when the [`showPlaceholder`](#showPlaceholder) property is `true`.
|
15766
|
+
*/
|
15767
|
+
placeholder: string;
|
15665
15768
|
endLoadingFromJson(): void;
|
15666
15769
|
}
|
15667
15770
|
}
|
@@ -16123,6 +16226,8 @@ declare module "question_custom" {
|
|
16123
16226
|
protected setQuestionValue(newValue: any, updateIsAnswered?: boolean): void;
|
16124
16227
|
onSurveyValueChanged(newValue: any): void;
|
16125
16228
|
protected getValueCore(): any;
|
16229
|
+
private isSettingValueChanged;
|
16230
|
+
protected setValueChangedDirectly(val: boolean): void;
|
16126
16231
|
protected initElement(el: SurveyElement): void;
|
16127
16232
|
updateElementCss(reNew?: boolean): void;
|
16128
16233
|
protected updateElementCssCore(cssClasses: any): void;
|
@@ -16355,7 +16460,7 @@ declare module "entries/chunks/model" {
|
|
16355
16460
|
export { PopupSurveyModel, SurveyWindowModel } from "popup-survey";
|
16356
16461
|
export { TextPreProcessor } from "textPreProcessor";
|
16357
16462
|
export { Notifier } from "notifier";
|
16358
|
-
export { Cover, CoverCell } from "
|
16463
|
+
export { Cover, CoverCell } from "header";
|
16359
16464
|
export { dxSurveyService } from "dxSurveyService";
|
16360
16465
|
export { englishStrings } from "localization/english";
|
16361
16466
|
export { surveyLocalization, surveyStrings } from "surveyStrings";
|
@@ -18855,7 +18960,7 @@ declare module "localization/arabic" {
|
|
18855
18960
|
loadingFile: string;
|
18856
18961
|
chooseFile: string;
|
18857
18962
|
noFileChosen: string;
|
18858
|
-
|
18963
|
+
filePlaceholder: string;
|
18859
18964
|
confirmDelete: string;
|
18860
18965
|
keyDuplicationError: string;
|
18861
18966
|
addColumn: string;
|
@@ -18884,8 +18989,8 @@ declare module "localization/arabic" {
|
|
18884
18989
|
signaturePlaceHolder: string;
|
18885
18990
|
chooseFileCaption: string;
|
18886
18991
|
takePhotoCaption: string;
|
18887
|
-
|
18888
|
-
|
18992
|
+
photoPlaceholder: string;
|
18993
|
+
fileOrPhotoPlaceholder: string;
|
18889
18994
|
replaceFileCaption: string;
|
18890
18995
|
removeFileCaption: string;
|
18891
18996
|
booleanCheckedLabel: string;
|
@@ -18953,7 +19058,7 @@ declare module "localization/basque" {
|
|
18953
19058
|
loadingFile: string;
|
18954
19059
|
chooseFile: string;
|
18955
19060
|
noFileChosen: string;
|
18956
|
-
|
19061
|
+
filePlaceholder: string;
|
18957
19062
|
confirmDelete: string;
|
18958
19063
|
keyDuplicationError: string;
|
18959
19064
|
addColumn: string;
|
@@ -18982,8 +19087,8 @@ declare module "localization/basque" {
|
|
18982
19087
|
signaturePlaceHolder: string;
|
18983
19088
|
chooseFileCaption: string;
|
18984
19089
|
takePhotoCaption: string;
|
18985
|
-
|
18986
|
-
|
19090
|
+
photoPlaceholder: string;
|
19091
|
+
fileOrPhotoPlaceholder: string;
|
18987
19092
|
replaceFileCaption: string;
|
18988
19093
|
removeFileCaption: string;
|
18989
19094
|
booleanCheckedLabel: string;
|
@@ -19051,7 +19156,7 @@ declare module "localization/bulgarian" {
|
|
19051
19156
|
loadingFile: string;
|
19052
19157
|
chooseFile: string;
|
19053
19158
|
noFileChosen: string;
|
19054
|
-
|
19159
|
+
filePlaceholder: string;
|
19055
19160
|
confirmDelete: string;
|
19056
19161
|
keyDuplicationError: string;
|
19057
19162
|
addColumn: string;
|
@@ -19080,8 +19185,8 @@ declare module "localization/bulgarian" {
|
|
19080
19185
|
signaturePlaceHolder: string;
|
19081
19186
|
chooseFileCaption: string;
|
19082
19187
|
takePhotoCaption: string;
|
19083
|
-
|
19084
|
-
|
19188
|
+
photoPlaceholder: string;
|
19189
|
+
fileOrPhotoPlaceholder: string;
|
19085
19190
|
replaceFileCaption: string;
|
19086
19191
|
removeFileCaption: string;
|
19087
19192
|
booleanCheckedLabel: string;
|
@@ -19149,7 +19254,7 @@ declare module "localization/catalan" {
|
|
19149
19254
|
loadingFile: string;
|
19150
19255
|
chooseFile: string;
|
19151
19256
|
noFileChosen: string;
|
19152
|
-
|
19257
|
+
filePlaceholder: string;
|
19153
19258
|
confirmDelete: string;
|
19154
19259
|
keyDuplicationError: string;
|
19155
19260
|
addColumn: string;
|
@@ -19178,8 +19283,8 @@ declare module "localization/catalan" {
|
|
19178
19283
|
signaturePlaceHolder: string;
|
19179
19284
|
chooseFileCaption: string;
|
19180
19285
|
takePhotoCaption: string;
|
19181
|
-
|
19182
|
-
|
19286
|
+
photoPlaceholder: string;
|
19287
|
+
fileOrPhotoPlaceholder: string;
|
19183
19288
|
replaceFileCaption: string;
|
19184
19289
|
removeFileCaption: string;
|
19185
19290
|
booleanCheckedLabel: string;
|
@@ -19247,7 +19352,7 @@ declare module "localization/croatian" {
|
|
19247
19352
|
loadingFile: string;
|
19248
19353
|
chooseFile: string;
|
19249
19354
|
noFileChosen: string;
|
19250
|
-
|
19355
|
+
filePlaceholder: string;
|
19251
19356
|
confirmDelete: string;
|
19252
19357
|
keyDuplicationError: string;
|
19253
19358
|
addColumn: string;
|
@@ -19276,8 +19381,8 @@ declare module "localization/croatian" {
|
|
19276
19381
|
signaturePlaceHolder: string;
|
19277
19382
|
chooseFileCaption: string;
|
19278
19383
|
takePhotoCaption: string;
|
19279
|
-
|
19280
|
-
|
19384
|
+
photoPlaceholder: string;
|
19385
|
+
fileOrPhotoPlaceholder: string;
|
19281
19386
|
replaceFileCaption: string;
|
19282
19387
|
removeFileCaption: string;
|
19283
19388
|
booleanCheckedLabel: string;
|
@@ -19345,7 +19450,7 @@ declare module "localization/czech" {
|
|
19345
19450
|
loadingFile: string;
|
19346
19451
|
chooseFile: string;
|
19347
19452
|
noFileChosen: string;
|
19348
|
-
|
19453
|
+
filePlaceholder: string;
|
19349
19454
|
confirmDelete: string;
|
19350
19455
|
keyDuplicationError: string;
|
19351
19456
|
addColumn: string;
|
@@ -19374,8 +19479,8 @@ declare module "localization/czech" {
|
|
19374
19479
|
signaturePlaceHolder: string;
|
19375
19480
|
chooseFileCaption: string;
|
19376
19481
|
takePhotoCaption: string;
|
19377
|
-
|
19378
|
-
|
19482
|
+
photoPlaceholder: string;
|
19483
|
+
fileOrPhotoPlaceholder: string;
|
19379
19484
|
replaceFileCaption: string;
|
19380
19485
|
removeFileCaption: string;
|
19381
19486
|
booleanCheckedLabel: string;
|
@@ -19443,7 +19548,7 @@ declare module "localization/danish" {
|
|
19443
19548
|
loadingFile: string;
|
19444
19549
|
chooseFile: string;
|
19445
19550
|
noFileChosen: string;
|
19446
|
-
|
19551
|
+
filePlaceholder: string;
|
19447
19552
|
confirmDelete: string;
|
19448
19553
|
keyDuplicationError: string;
|
19449
19554
|
addColumn: string;
|
@@ -19472,8 +19577,8 @@ declare module "localization/danish" {
|
|
19472
19577
|
signaturePlaceHolder: string;
|
19473
19578
|
chooseFileCaption: string;
|
19474
19579
|
takePhotoCaption: string;
|
19475
|
-
|
19476
|
-
|
19580
|
+
photoPlaceholder: string;
|
19581
|
+
fileOrPhotoPlaceholder: string;
|
19477
19582
|
replaceFileCaption: string;
|
19478
19583
|
removeFileCaption: string;
|
19479
19584
|
booleanCheckedLabel: string;
|
@@ -19541,7 +19646,7 @@ declare module "localization/dutch" {
|
|
19541
19646
|
loadingFile: string;
|
19542
19647
|
chooseFile: string;
|
19543
19648
|
noFileChosen: string;
|
19544
|
-
|
19649
|
+
filePlaceholder: string;
|
19545
19650
|
confirmDelete: string;
|
19546
19651
|
keyDuplicationError: string;
|
19547
19652
|
addColumn: string;
|
@@ -19570,8 +19675,8 @@ declare module "localization/dutch" {
|
|
19570
19675
|
signaturePlaceHolder: string;
|
19571
19676
|
chooseFileCaption: string;
|
19572
19677
|
takePhotoCaption: string;
|
19573
|
-
|
19574
|
-
|
19678
|
+
photoPlaceholder: string;
|
19679
|
+
fileOrPhotoPlaceholder: string;
|
19575
19680
|
replaceFileCaption: string;
|
19576
19681
|
removeFileCaption: string;
|
19577
19682
|
booleanCheckedLabel: string;
|
@@ -19640,7 +19745,7 @@ declare module "localization/estonian" {
|
|
19640
19745
|
loadingFile: string;
|
19641
19746
|
chooseFile: string;
|
19642
19747
|
noFileChosen: string;
|
19643
|
-
|
19748
|
+
filePlaceholder: string;
|
19644
19749
|
confirmDelete: string;
|
19645
19750
|
keyDuplicationError: string;
|
19646
19751
|
addColumn: string;
|
@@ -19669,8 +19774,8 @@ declare module "localization/estonian" {
|
|
19669
19774
|
signaturePlaceHolder: string;
|
19670
19775
|
chooseFileCaption: string;
|
19671
19776
|
takePhotoCaption: string;
|
19672
|
-
|
19673
|
-
|
19777
|
+
photoPlaceholder: string;
|
19778
|
+
fileOrPhotoPlaceholder: string;
|
19674
19779
|
replaceFileCaption: string;
|
19675
19780
|
removeFileCaption: string;
|
19676
19781
|
booleanCheckedLabel: string;
|
@@ -19738,7 +19843,7 @@ declare module "localization/finnish" {
|
|
19738
19843
|
loadingFile: string;
|
19739
19844
|
chooseFile: string;
|
19740
19845
|
noFileChosen: string;
|
19741
|
-
|
19846
|
+
filePlaceholder: string;
|
19742
19847
|
confirmDelete: string;
|
19743
19848
|
keyDuplicationError: string;
|
19744
19849
|
addColumn: string;
|
@@ -19767,8 +19872,8 @@ declare module "localization/finnish" {
|
|
19767
19872
|
signaturePlaceHolder: string;
|
19768
19873
|
chooseFileCaption: string;
|
19769
19874
|
takePhotoCaption: string;
|
19770
|
-
|
19771
|
-
|
19875
|
+
photoPlaceholder: string;
|
19876
|
+
fileOrPhotoPlaceholder: string;
|
19772
19877
|
replaceFileCaption: string;
|
19773
19878
|
removeFileCaption: string;
|
19774
19879
|
booleanCheckedLabel: string;
|
@@ -19836,7 +19941,7 @@ declare module "localization/french" {
|
|
19836
19941
|
loadingFile: string;
|
19837
19942
|
chooseFile: string;
|
19838
19943
|
noFileChosen: string;
|
19839
|
-
|
19944
|
+
filePlaceholder: string;
|
19840
19945
|
confirmDelete: string;
|
19841
19946
|
keyDuplicationError: string;
|
19842
19947
|
addColumn: string;
|
@@ -19865,8 +19970,8 @@ declare module "localization/french" {
|
|
19865
19970
|
signaturePlaceHolder: string;
|
19866
19971
|
chooseFileCaption: string;
|
19867
19972
|
takePhotoCaption: string;
|
19868
|
-
|
19869
|
-
|
19973
|
+
photoPlaceholder: string;
|
19974
|
+
fileOrPhotoPlaceholder: string;
|
19870
19975
|
replaceFileCaption: string;
|
19871
19976
|
removeFileCaption: string;
|
19872
19977
|
booleanCheckedLabel: string;
|
@@ -19934,7 +20039,7 @@ declare module "localization/georgian" {
|
|
19934
20039
|
loadingFile: string;
|
19935
20040
|
chooseFile: string;
|
19936
20041
|
noFileChosen: string;
|
19937
|
-
|
20042
|
+
filePlaceholder: string;
|
19938
20043
|
confirmDelete: string;
|
19939
20044
|
keyDuplicationError: string;
|
19940
20045
|
addColumn: string;
|
@@ -19963,8 +20068,8 @@ declare module "localization/georgian" {
|
|
19963
20068
|
signaturePlaceHolder: string;
|
19964
20069
|
chooseFileCaption: string;
|
19965
20070
|
takePhotoCaption: string;
|
19966
|
-
|
19967
|
-
|
20071
|
+
photoPlaceholder: string;
|
20072
|
+
fileOrPhotoPlaceholder: string;
|
19968
20073
|
replaceFileCaption: string;
|
19969
20074
|
removeFileCaption: string;
|
19970
20075
|
booleanCheckedLabel: string;
|
@@ -20032,7 +20137,7 @@ declare module "localization/german" {
|
|
20032
20137
|
loadingFile: string;
|
20033
20138
|
chooseFile: string;
|
20034
20139
|
noFileChosen: string;
|
20035
|
-
|
20140
|
+
filePlaceholder: string;
|
20036
20141
|
confirmDelete: string;
|
20037
20142
|
keyDuplicationError: string;
|
20038
20143
|
addColumn: string;
|
@@ -20061,8 +20166,8 @@ declare module "localization/german" {
|
|
20061
20166
|
signaturePlaceHolder: string;
|
20062
20167
|
chooseFileCaption: string;
|
20063
20168
|
takePhotoCaption: string;
|
20064
|
-
|
20065
|
-
|
20169
|
+
photoPlaceholder: string;
|
20170
|
+
fileOrPhotoPlaceholder: string;
|
20066
20171
|
replaceFileCaption: string;
|
20067
20172
|
removeFileCaption: string;
|
20068
20173
|
booleanCheckedLabel: string;
|
@@ -20130,7 +20235,7 @@ declare module "localization/greek" {
|
|
20130
20235
|
loadingFile: string;
|
20131
20236
|
chooseFile: string;
|
20132
20237
|
noFileChosen: string;
|
20133
|
-
|
20238
|
+
filePlaceholder: string;
|
20134
20239
|
confirmDelete: string;
|
20135
20240
|
keyDuplicationError: string;
|
20136
20241
|
addColumn: string;
|
@@ -20159,8 +20264,8 @@ declare module "localization/greek" {
|
|
20159
20264
|
signaturePlaceHolder: string;
|
20160
20265
|
chooseFileCaption: string;
|
20161
20266
|
takePhotoCaption: string;
|
20162
|
-
|
20163
|
-
|
20267
|
+
photoPlaceholder: string;
|
20268
|
+
fileOrPhotoPlaceholder: string;
|
20164
20269
|
replaceFileCaption: string;
|
20165
20270
|
removeFileCaption: string;
|
20166
20271
|
booleanCheckedLabel: string;
|
@@ -20228,7 +20333,7 @@ declare module "localization/hebrew" {
|
|
20228
20333
|
loadingFile: string;
|
20229
20334
|
chooseFile: string;
|
20230
20335
|
noFileChosen: string;
|
20231
|
-
|
20336
|
+
filePlaceholder: string;
|
20232
20337
|
confirmDelete: string;
|
20233
20338
|
keyDuplicationError: string;
|
20234
20339
|
addColumn: string;
|
@@ -20257,8 +20362,8 @@ declare module "localization/hebrew" {
|
|
20257
20362
|
signaturePlaceHolder: string;
|
20258
20363
|
chooseFileCaption: string;
|
20259
20364
|
takePhotoCaption: string;
|
20260
|
-
|
20261
|
-
|
20365
|
+
photoPlaceholder: string;
|
20366
|
+
fileOrPhotoPlaceholder: string;
|
20262
20367
|
replaceFileCaption: string;
|
20263
20368
|
removeFileCaption: string;
|
20264
20369
|
booleanCheckedLabel: string;
|
@@ -20326,7 +20431,7 @@ declare module "localization/hindi" {
|
|
20326
20431
|
loadingFile: string;
|
20327
20432
|
chooseFile: string;
|
20328
20433
|
noFileChosen: string;
|
20329
|
-
|
20434
|
+
filePlaceholder: string;
|
20330
20435
|
confirmDelete: string;
|
20331
20436
|
keyDuplicationError: string;
|
20332
20437
|
addColumn: string;
|
@@ -20355,8 +20460,8 @@ declare module "localization/hindi" {
|
|
20355
20460
|
signaturePlaceHolder: string;
|
20356
20461
|
chooseFileCaption: string;
|
20357
20462
|
takePhotoCaption: string;
|
20358
|
-
|
20359
|
-
|
20463
|
+
photoPlaceholder: string;
|
20464
|
+
fileOrPhotoPlaceholder: string;
|
20360
20465
|
replaceFileCaption: string;
|
20361
20466
|
removeFileCaption: string;
|
20362
20467
|
booleanCheckedLabel: string;
|
@@ -20424,7 +20529,7 @@ declare module "localization/hungarian" {
|
|
20424
20529
|
loadingFile: string;
|
20425
20530
|
chooseFile: string;
|
20426
20531
|
noFileChosen: string;
|
20427
|
-
|
20532
|
+
filePlaceholder: string;
|
20428
20533
|
confirmDelete: string;
|
20429
20534
|
keyDuplicationError: string;
|
20430
20535
|
addColumn: string;
|
@@ -20453,8 +20558,8 @@ declare module "localization/hungarian" {
|
|
20453
20558
|
signaturePlaceHolder: string;
|
20454
20559
|
chooseFileCaption: string;
|
20455
20560
|
takePhotoCaption: string;
|
20456
|
-
|
20457
|
-
|
20561
|
+
photoPlaceholder: string;
|
20562
|
+
fileOrPhotoPlaceholder: string;
|
20458
20563
|
replaceFileCaption: string;
|
20459
20564
|
removeFileCaption: string;
|
20460
20565
|
booleanCheckedLabel: string;
|
@@ -20522,7 +20627,7 @@ declare module "localization/icelandic" {
|
|
20522
20627
|
loadingFile: string;
|
20523
20628
|
chooseFile: string;
|
20524
20629
|
noFileChosen: string;
|
20525
|
-
|
20630
|
+
filePlaceholder: string;
|
20526
20631
|
confirmDelete: string;
|
20527
20632
|
keyDuplicationError: string;
|
20528
20633
|
addColumn: string;
|
@@ -20551,8 +20656,8 @@ declare module "localization/icelandic" {
|
|
20551
20656
|
signaturePlaceHolder: string;
|
20552
20657
|
chooseFileCaption: string;
|
20553
20658
|
takePhotoCaption: string;
|
20554
|
-
|
20555
|
-
|
20659
|
+
photoPlaceholder: string;
|
20660
|
+
fileOrPhotoPlaceholder: string;
|
20556
20661
|
replaceFileCaption: string;
|
20557
20662
|
removeFileCaption: string;
|
20558
20663
|
booleanCheckedLabel: string;
|
@@ -20620,7 +20725,7 @@ declare module "localization/indonesian" {
|
|
20620
20725
|
loadingFile: string;
|
20621
20726
|
chooseFile: string;
|
20622
20727
|
noFileChosen: string;
|
20623
|
-
|
20728
|
+
filePlaceholder: string;
|
20624
20729
|
confirmDelete: string;
|
20625
20730
|
keyDuplicationError: string;
|
20626
20731
|
addColumn: string;
|
@@ -20649,8 +20754,8 @@ declare module "localization/indonesian" {
|
|
20649
20754
|
signaturePlaceHolder: string;
|
20650
20755
|
chooseFileCaption: string;
|
20651
20756
|
takePhotoCaption: string;
|
20652
|
-
|
20653
|
-
|
20757
|
+
photoPlaceholder: string;
|
20758
|
+
fileOrPhotoPlaceholder: string;
|
20654
20759
|
replaceFileCaption: string;
|
20655
20760
|
removeFileCaption: string;
|
20656
20761
|
booleanCheckedLabel: string;
|
@@ -20718,7 +20823,7 @@ declare module "localization/italian" {
|
|
20718
20823
|
loadingFile: string;
|
20719
20824
|
chooseFile: string;
|
20720
20825
|
noFileChosen: string;
|
20721
|
-
|
20826
|
+
filePlaceholder: string;
|
20722
20827
|
confirmDelete: string;
|
20723
20828
|
keyDuplicationError: string;
|
20724
20829
|
addColumn: string;
|
@@ -20747,8 +20852,8 @@ declare module "localization/italian" {
|
|
20747
20852
|
signaturePlaceHolder: string;
|
20748
20853
|
chooseFileCaption: string;
|
20749
20854
|
takePhotoCaption: string;
|
20750
|
-
|
20751
|
-
|
20855
|
+
photoPlaceholder: string;
|
20856
|
+
fileOrPhotoPlaceholder: string;
|
20752
20857
|
replaceFileCaption: string;
|
20753
20858
|
removeFileCaption: string;
|
20754
20859
|
booleanCheckedLabel: string;
|
@@ -20816,7 +20921,7 @@ declare module "localization/japanese" {
|
|
20816
20921
|
loadingFile: string;
|
20817
20922
|
chooseFile: string;
|
20818
20923
|
noFileChosen: string;
|
20819
|
-
|
20924
|
+
filePlaceholder: string;
|
20820
20925
|
confirmDelete: string;
|
20821
20926
|
keyDuplicationError: string;
|
20822
20927
|
addColumn: string;
|
@@ -20845,8 +20950,8 @@ declare module "localization/japanese" {
|
|
20845
20950
|
signaturePlaceHolder: string;
|
20846
20951
|
chooseFileCaption: string;
|
20847
20952
|
takePhotoCaption: string;
|
20848
|
-
|
20849
|
-
|
20953
|
+
photoPlaceholder: string;
|
20954
|
+
fileOrPhotoPlaceholder: string;
|
20850
20955
|
replaceFileCaption: string;
|
20851
20956
|
removeFileCaption: string;
|
20852
20957
|
booleanCheckedLabel: string;
|
@@ -20914,7 +21019,7 @@ declare module "localization/kazakh" {
|
|
20914
21019
|
loadingFile: string;
|
20915
21020
|
chooseFile: string;
|
20916
21021
|
noFileChosen: string;
|
20917
|
-
|
21022
|
+
filePlaceholder: string;
|
20918
21023
|
confirmDelete: string;
|
20919
21024
|
keyDuplicationError: string;
|
20920
21025
|
addColumn: string;
|
@@ -20943,8 +21048,8 @@ declare module "localization/kazakh" {
|
|
20943
21048
|
signaturePlaceHolder: string;
|
20944
21049
|
chooseFileCaption: string;
|
20945
21050
|
takePhotoCaption: string;
|
20946
|
-
|
20947
|
-
|
21051
|
+
photoPlaceholder: string;
|
21052
|
+
fileOrPhotoPlaceholder: string;
|
20948
21053
|
replaceFileCaption: string;
|
20949
21054
|
removeFileCaption: string;
|
20950
21055
|
booleanCheckedLabel: string;
|
@@ -21012,7 +21117,7 @@ declare module "localization/korean" {
|
|
21012
21117
|
loadingFile: string;
|
21013
21118
|
chooseFile: string;
|
21014
21119
|
noFileChosen: string;
|
21015
|
-
|
21120
|
+
filePlaceholder: string;
|
21016
21121
|
confirmDelete: string;
|
21017
21122
|
keyDuplicationError: string;
|
21018
21123
|
addColumn: string;
|
@@ -21041,8 +21146,8 @@ declare module "localization/korean" {
|
|
21041
21146
|
signaturePlaceHolder: string;
|
21042
21147
|
chooseFileCaption: string;
|
21043
21148
|
takePhotoCaption: string;
|
21044
|
-
|
21045
|
-
|
21149
|
+
photoPlaceholder: string;
|
21150
|
+
fileOrPhotoPlaceholder: string;
|
21046
21151
|
replaceFileCaption: string;
|
21047
21152
|
removeFileCaption: string;
|
21048
21153
|
booleanCheckedLabel: string;
|
@@ -21110,7 +21215,7 @@ declare module "localization/latvian" {
|
|
21110
21215
|
loadingFile: string;
|
21111
21216
|
chooseFile: string;
|
21112
21217
|
noFileChosen: string;
|
21113
|
-
|
21218
|
+
filePlaceholder: string;
|
21114
21219
|
confirmDelete: string;
|
21115
21220
|
keyDuplicationError: string;
|
21116
21221
|
addColumn: string;
|
@@ -21139,8 +21244,8 @@ declare module "localization/latvian" {
|
|
21139
21244
|
signaturePlaceHolder: string;
|
21140
21245
|
chooseFileCaption: string;
|
21141
21246
|
takePhotoCaption: string;
|
21142
|
-
|
21143
|
-
|
21247
|
+
photoPlaceholder: string;
|
21248
|
+
fileOrPhotoPlaceholder: string;
|
21144
21249
|
replaceFileCaption: string;
|
21145
21250
|
removeFileCaption: string;
|
21146
21251
|
booleanCheckedLabel: string;
|
@@ -21208,7 +21313,7 @@ declare module "localization/lithuanian" {
|
|
21208
21313
|
loadingFile: string;
|
21209
21314
|
chooseFile: string;
|
21210
21315
|
noFileChosen: string;
|
21211
|
-
|
21316
|
+
filePlaceholder: string;
|
21212
21317
|
confirmDelete: string;
|
21213
21318
|
keyDuplicationError: string;
|
21214
21319
|
addColumn: string;
|
@@ -21237,8 +21342,8 @@ declare module "localization/lithuanian" {
|
|
21237
21342
|
signaturePlaceHolder: string;
|
21238
21343
|
chooseFileCaption: string;
|
21239
21344
|
takePhotoCaption: string;
|
21240
|
-
|
21241
|
-
|
21345
|
+
photoPlaceholder: string;
|
21346
|
+
fileOrPhotoPlaceholder: string;
|
21242
21347
|
replaceFileCaption: string;
|
21243
21348
|
removeFileCaption: string;
|
21244
21349
|
booleanCheckedLabel: string;
|
@@ -21306,7 +21411,7 @@ declare module "localization/macedonian" {
|
|
21306
21411
|
loadingFile: string;
|
21307
21412
|
chooseFile: string;
|
21308
21413
|
noFileChosen: string;
|
21309
|
-
|
21414
|
+
filePlaceholder: string;
|
21310
21415
|
confirmDelete: string;
|
21311
21416
|
keyDuplicationError: string;
|
21312
21417
|
addColumn: string;
|
@@ -21335,8 +21440,8 @@ declare module "localization/macedonian" {
|
|
21335
21440
|
signaturePlaceHolder: string;
|
21336
21441
|
chooseFileCaption: string;
|
21337
21442
|
takePhotoCaption: string;
|
21338
|
-
|
21339
|
-
|
21443
|
+
photoPlaceholder: string;
|
21444
|
+
fileOrPhotoPlaceholder: string;
|
21340
21445
|
replaceFileCaption: string;
|
21341
21446
|
removeFileCaption: string;
|
21342
21447
|
booleanCheckedLabel: string;
|
@@ -21404,7 +21509,7 @@ declare module "localization/malay" {
|
|
21404
21509
|
loadingFile: string;
|
21405
21510
|
chooseFile: string;
|
21406
21511
|
noFileChosen: string;
|
21407
|
-
|
21512
|
+
filePlaceholder: string;
|
21408
21513
|
confirmDelete: string;
|
21409
21514
|
keyDuplicationError: string;
|
21410
21515
|
addColumn: string;
|
@@ -21433,8 +21538,8 @@ declare module "localization/malay" {
|
|
21433
21538
|
signaturePlaceHolder: string;
|
21434
21539
|
chooseFileCaption: string;
|
21435
21540
|
takePhotoCaption: string;
|
21436
|
-
|
21437
|
-
|
21541
|
+
photoPlaceholder: string;
|
21542
|
+
fileOrPhotoPlaceholder: string;
|
21438
21543
|
replaceFileCaption: string;
|
21439
21544
|
removeFileCaption: string;
|
21440
21545
|
booleanCheckedLabel: string;
|
@@ -21502,7 +21607,7 @@ declare module "localization/norwegian" {
|
|
21502
21607
|
loadingFile: string;
|
21503
21608
|
chooseFile: string;
|
21504
21609
|
noFileChosen: string;
|
21505
|
-
|
21610
|
+
filePlaceholder: string;
|
21506
21611
|
confirmDelete: string;
|
21507
21612
|
keyDuplicationError: string;
|
21508
21613
|
addColumn: string;
|
@@ -21531,8 +21636,8 @@ declare module "localization/norwegian" {
|
|
21531
21636
|
signaturePlaceHolder: string;
|
21532
21637
|
chooseFileCaption: string;
|
21533
21638
|
takePhotoCaption: string;
|
21534
|
-
|
21535
|
-
|
21639
|
+
photoPlaceholder: string;
|
21640
|
+
fileOrPhotoPlaceholder: string;
|
21536
21641
|
replaceFileCaption: string;
|
21537
21642
|
removeFileCaption: string;
|
21538
21643
|
booleanCheckedLabel: string;
|
@@ -21600,7 +21705,7 @@ declare module "localization/persian" {
|
|
21600
21705
|
loadingFile: string;
|
21601
21706
|
chooseFile: string;
|
21602
21707
|
noFileChosen: string;
|
21603
|
-
|
21708
|
+
filePlaceholder: string;
|
21604
21709
|
confirmDelete: string;
|
21605
21710
|
keyDuplicationError: string;
|
21606
21711
|
addColumn: string;
|
@@ -21629,8 +21734,8 @@ declare module "localization/persian" {
|
|
21629
21734
|
signaturePlaceHolder: string;
|
21630
21735
|
chooseFileCaption: string;
|
21631
21736
|
takePhotoCaption: string;
|
21632
|
-
|
21633
|
-
|
21737
|
+
photoPlaceholder: string;
|
21738
|
+
fileOrPhotoPlaceholder: string;
|
21634
21739
|
replaceFileCaption: string;
|
21635
21740
|
removeFileCaption: string;
|
21636
21741
|
booleanCheckedLabel: string;
|
@@ -21698,7 +21803,7 @@ declare module "localization/polish" {
|
|
21698
21803
|
loadingFile: string;
|
21699
21804
|
chooseFile: string;
|
21700
21805
|
noFileChosen: string;
|
21701
|
-
|
21806
|
+
filePlaceholder: string;
|
21702
21807
|
confirmDelete: string;
|
21703
21808
|
keyDuplicationError: string;
|
21704
21809
|
addColumn: string;
|
@@ -21727,8 +21832,8 @@ declare module "localization/polish" {
|
|
21727
21832
|
signaturePlaceHolder: string;
|
21728
21833
|
chooseFileCaption: string;
|
21729
21834
|
takePhotoCaption: string;
|
21730
|
-
|
21731
|
-
|
21835
|
+
photoPlaceholder: string;
|
21836
|
+
fileOrPhotoPlaceholder: string;
|
21732
21837
|
replaceFileCaption: string;
|
21733
21838
|
removeFileCaption: string;
|
21734
21839
|
booleanCheckedLabel: string;
|
@@ -21796,7 +21901,7 @@ declare module "localization/portuguese" {
|
|
21796
21901
|
loadingFile: string;
|
21797
21902
|
chooseFile: string;
|
21798
21903
|
noFileChosen: string;
|
21799
|
-
|
21904
|
+
filePlaceholder: string;
|
21800
21905
|
confirmDelete: string;
|
21801
21906
|
keyDuplicationError: string;
|
21802
21907
|
addColumn: string;
|
@@ -21825,8 +21930,8 @@ declare module "localization/portuguese" {
|
|
21825
21930
|
signaturePlaceHolder: string;
|
21826
21931
|
chooseFileCaption: string;
|
21827
21932
|
takePhotoCaption: string;
|
21828
|
-
|
21829
|
-
|
21933
|
+
photoPlaceholder: string;
|
21934
|
+
fileOrPhotoPlaceholder: string;
|
21830
21935
|
replaceFileCaption: string;
|
21831
21936
|
removeFileCaption: string;
|
21832
21937
|
booleanCheckedLabel: string;
|
@@ -21897,7 +22002,7 @@ declare module "localization/portuguese-br" {
|
|
21897
22002
|
loadingFile: string;
|
21898
22003
|
chooseFile: string;
|
21899
22004
|
noFileChosen: string;
|
21900
|
-
|
22005
|
+
filePlaceholder: string;
|
21901
22006
|
confirmDelete: string;
|
21902
22007
|
keyDuplicationError: string;
|
21903
22008
|
addColumn: string;
|
@@ -21926,8 +22031,8 @@ declare module "localization/portuguese-br" {
|
|
21926
22031
|
signaturePlaceHolder: string;
|
21927
22032
|
chooseFileCaption: string;
|
21928
22033
|
takePhotoCaption: string;
|
21929
|
-
|
21930
|
-
|
22034
|
+
photoPlaceholder: string;
|
22035
|
+
fileOrPhotoPlaceholder: string;
|
21931
22036
|
replaceFileCaption: string;
|
21932
22037
|
removeFileCaption: string;
|
21933
22038
|
booleanCheckedLabel: string;
|
@@ -21998,7 +22103,7 @@ declare module "localization/russian" {
|
|
21998
22103
|
loadingFile: string;
|
21999
22104
|
chooseFile: string;
|
22000
22105
|
noFileChosen: string;
|
22001
|
-
|
22106
|
+
filePlaceholder: string;
|
22002
22107
|
confirmDelete: string;
|
22003
22108
|
keyDuplicationError: string;
|
22004
22109
|
addColumn: string;
|
@@ -22027,8 +22132,8 @@ declare module "localization/russian" {
|
|
22027
22132
|
signaturePlaceHolder: string;
|
22028
22133
|
chooseFileCaption: string;
|
22029
22134
|
takePhotoCaption: string;
|
22030
|
-
|
22031
|
-
|
22135
|
+
photoPlaceholder: string;
|
22136
|
+
fileOrPhotoPlaceholder: string;
|
22032
22137
|
replaceFileCaption: string;
|
22033
22138
|
removeFileCaption: string;
|
22034
22139
|
booleanCheckedLabel: string;
|
@@ -22096,7 +22201,7 @@ declare module "localization/serbian" {
|
|
22096
22201
|
loadingFile: string;
|
22097
22202
|
chooseFile: string;
|
22098
22203
|
noFileChosen: string;
|
22099
|
-
|
22204
|
+
filePlaceholder: string;
|
22100
22205
|
confirmDelete: string;
|
22101
22206
|
keyDuplicationError: string;
|
22102
22207
|
addColumn: string;
|
@@ -22125,8 +22230,8 @@ declare module "localization/serbian" {
|
|
22125
22230
|
signaturePlaceHolder: string;
|
22126
22231
|
chooseFileCaption: string;
|
22127
22232
|
takePhotoCaption: string;
|
22128
|
-
|
22129
|
-
|
22233
|
+
photoPlaceholder: string;
|
22234
|
+
fileOrPhotoPlaceholder: string;
|
22130
22235
|
replaceFileCaption: string;
|
22131
22236
|
removeFileCaption: string;
|
22132
22237
|
booleanCheckedLabel: string;
|
@@ -22194,7 +22299,7 @@ declare module "localization/simplified-chinese" {
|
|
22194
22299
|
loadingFile: string;
|
22195
22300
|
chooseFile: string;
|
22196
22301
|
noFileChosen: string;
|
22197
|
-
|
22302
|
+
filePlaceholder: string;
|
22198
22303
|
confirmDelete: string;
|
22199
22304
|
keyDuplicationError: string;
|
22200
22305
|
addColumn: string;
|
@@ -22223,8 +22328,8 @@ declare module "localization/simplified-chinese" {
|
|
22223
22328
|
signaturePlaceHolder: string;
|
22224
22329
|
chooseFileCaption: string;
|
22225
22330
|
takePhotoCaption: string;
|
22226
|
-
|
22227
|
-
|
22331
|
+
photoPlaceholder: string;
|
22332
|
+
fileOrPhotoPlaceholder: string;
|
22228
22333
|
replaceFileCaption: string;
|
22229
22334
|
removeFileCaption: string;
|
22230
22335
|
booleanCheckedLabel: string;
|
@@ -22292,7 +22397,7 @@ declare module "localization/slovak" {
|
|
22292
22397
|
loadingFile: string;
|
22293
22398
|
chooseFile: string;
|
22294
22399
|
noFileChosen: string;
|
22295
|
-
|
22400
|
+
filePlaceholder: string;
|
22296
22401
|
confirmDelete: string;
|
22297
22402
|
keyDuplicationError: string;
|
22298
22403
|
addColumn: string;
|
@@ -22321,8 +22426,8 @@ declare module "localization/slovak" {
|
|
22321
22426
|
signaturePlaceHolder: string;
|
22322
22427
|
chooseFileCaption: string;
|
22323
22428
|
takePhotoCaption: string;
|
22324
|
-
|
22325
|
-
|
22429
|
+
photoPlaceholder: string;
|
22430
|
+
fileOrPhotoPlaceholder: string;
|
22326
22431
|
replaceFileCaption: string;
|
22327
22432
|
removeFileCaption: string;
|
22328
22433
|
booleanCheckedLabel: string;
|
@@ -22390,7 +22495,7 @@ declare module "localization/spanish" {
|
|
22390
22495
|
loadingFile: string;
|
22391
22496
|
chooseFile: string;
|
22392
22497
|
noFileChosen: string;
|
22393
|
-
|
22498
|
+
filePlaceholder: string;
|
22394
22499
|
confirmDelete: string;
|
22395
22500
|
keyDuplicationError: string;
|
22396
22501
|
addColumn: string;
|
@@ -22419,8 +22524,8 @@ declare module "localization/spanish" {
|
|
22419
22524
|
signaturePlaceHolder: string;
|
22420
22525
|
chooseFileCaption: string;
|
22421
22526
|
takePhotoCaption: string;
|
22422
|
-
|
22423
|
-
|
22527
|
+
photoPlaceholder: string;
|
22528
|
+
fileOrPhotoPlaceholder: string;
|
22424
22529
|
replaceFileCaption: string;
|
22425
22530
|
removeFileCaption: string;
|
22426
22531
|
booleanCheckedLabel: string;
|
@@ -22488,7 +22593,7 @@ declare module "localization/swahili" {
|
|
22488
22593
|
loadingFile: string;
|
22489
22594
|
chooseFile: string;
|
22490
22595
|
noFileChosen: string;
|
22491
|
-
|
22596
|
+
filePlaceholder: string;
|
22492
22597
|
confirmDelete: string;
|
22493
22598
|
keyDuplicationError: string;
|
22494
22599
|
addColumn: string;
|
@@ -22517,8 +22622,8 @@ declare module "localization/swahili" {
|
|
22517
22622
|
signaturePlaceHolder: string;
|
22518
22623
|
chooseFileCaption: string;
|
22519
22624
|
takePhotoCaption: string;
|
22520
|
-
|
22521
|
-
|
22625
|
+
photoPlaceholder: string;
|
22626
|
+
fileOrPhotoPlaceholder: string;
|
22522
22627
|
replaceFileCaption: string;
|
22523
22628
|
removeFileCaption: string;
|
22524
22629
|
booleanCheckedLabel: string;
|
@@ -22586,7 +22691,7 @@ declare module "localization/swedish" {
|
|
22586
22691
|
loadingFile: string;
|
22587
22692
|
chooseFile: string;
|
22588
22693
|
noFileChosen: string;
|
22589
|
-
|
22694
|
+
filePlaceholder: string;
|
22590
22695
|
confirmDelete: string;
|
22591
22696
|
keyDuplicationError: string;
|
22592
22697
|
addColumn: string;
|
@@ -22615,8 +22720,8 @@ declare module "localization/swedish" {
|
|
22615
22720
|
signaturePlaceHolder: string;
|
22616
22721
|
chooseFileCaption: string;
|
22617
22722
|
takePhotoCaption: string;
|
22618
|
-
|
22619
|
-
|
22723
|
+
photoPlaceholder: string;
|
22724
|
+
fileOrPhotoPlaceholder: string;
|
22620
22725
|
replaceFileCaption: string;
|
22621
22726
|
removeFileCaption: string;
|
22622
22727
|
booleanCheckedLabel: string;
|
@@ -22748,7 +22853,7 @@ declare module "localization/thai" {
|
|
22748
22853
|
loadingFile: string;
|
22749
22854
|
chooseFile: string;
|
22750
22855
|
noFileChosen: string;
|
22751
|
-
|
22856
|
+
filePlaceholder: string;
|
22752
22857
|
confirmDelete: string;
|
22753
22858
|
keyDuplicationError: string;
|
22754
22859
|
addColumn: string;
|
@@ -22777,8 +22882,8 @@ declare module "localization/thai" {
|
|
22777
22882
|
signaturePlaceHolder: string;
|
22778
22883
|
chooseFileCaption: string;
|
22779
22884
|
takePhotoCaption: string;
|
22780
|
-
|
22781
|
-
|
22885
|
+
photoPlaceholder: string;
|
22886
|
+
fileOrPhotoPlaceholder: string;
|
22782
22887
|
replaceFileCaption: string;
|
22783
22888
|
removeFileCaption: string;
|
22784
22889
|
booleanCheckedLabel: string;
|
@@ -22846,7 +22951,7 @@ declare module "localization/traditional-chinese" {
|
|
22846
22951
|
loadingFile: string;
|
22847
22952
|
chooseFile: string;
|
22848
22953
|
noFileChosen: string;
|
22849
|
-
|
22954
|
+
filePlaceholder: string;
|
22850
22955
|
confirmDelete: string;
|
22851
22956
|
keyDuplicationError: string;
|
22852
22957
|
addColumn: string;
|
@@ -22875,8 +22980,8 @@ declare module "localization/traditional-chinese" {
|
|
22875
22980
|
signaturePlaceHolder: string;
|
22876
22981
|
chooseFileCaption: string;
|
22877
22982
|
takePhotoCaption: string;
|
22878
|
-
|
22879
|
-
|
22983
|
+
photoPlaceholder: string;
|
22984
|
+
fileOrPhotoPlaceholder: string;
|
22880
22985
|
replaceFileCaption: string;
|
22881
22986
|
removeFileCaption: string;
|
22882
22987
|
booleanCheckedLabel: string;
|
@@ -22944,7 +23049,7 @@ declare module "localization/turkish" {
|
|
22944
23049
|
loadingFile: string;
|
22945
23050
|
chooseFile: string;
|
22946
23051
|
noFileChosen: string;
|
22947
|
-
|
23052
|
+
filePlaceholder: string;
|
22948
23053
|
confirmDelete: string;
|
22949
23054
|
keyDuplicationError: string;
|
22950
23055
|
addColumn: string;
|
@@ -22973,8 +23078,8 @@ declare module "localization/turkish" {
|
|
22973
23078
|
signaturePlaceHolder: string;
|
22974
23079
|
chooseFileCaption: string;
|
22975
23080
|
takePhotoCaption: string;
|
22976
|
-
|
22977
|
-
|
23081
|
+
photoPlaceholder: string;
|
23082
|
+
fileOrPhotoPlaceholder: string;
|
22978
23083
|
replaceFileCaption: string;
|
22979
23084
|
removeFileCaption: string;
|
22980
23085
|
booleanCheckedLabel: string;
|
@@ -23042,7 +23147,7 @@ declare module "localization/ukrainian" {
|
|
23042
23147
|
loadingFile: string;
|
23043
23148
|
chooseFile: string;
|
23044
23149
|
noFileChosen: string;
|
23045
|
-
|
23150
|
+
filePlaceholder: string;
|
23046
23151
|
confirmDelete: string;
|
23047
23152
|
keyDuplicationError: string;
|
23048
23153
|
addColumn: string;
|
@@ -23071,8 +23176,8 @@ declare module "localization/ukrainian" {
|
|
23071
23176
|
signaturePlaceHolder: string;
|
23072
23177
|
chooseFileCaption: string;
|
23073
23178
|
takePhotoCaption: string;
|
23074
|
-
|
23075
|
-
|
23179
|
+
photoPlaceholder: string;
|
23180
|
+
fileOrPhotoPlaceholder: string;
|
23076
23181
|
replaceFileCaption: string;
|
23077
23182
|
removeFileCaption: string;
|
23078
23183
|
booleanCheckedLabel: string;
|
@@ -23140,7 +23245,7 @@ declare module "localization/vietnamese" {
|
|
23140
23245
|
loadingFile: string;
|
23141
23246
|
chooseFile: string;
|
23142
23247
|
noFileChosen: string;
|
23143
|
-
|
23248
|
+
filePlaceholder: string;
|
23144
23249
|
confirmDelete: string;
|
23145
23250
|
keyDuplicationError: string;
|
23146
23251
|
addColumn: string;
|
@@ -23169,8 +23274,8 @@ declare module "localization/vietnamese" {
|
|
23169
23274
|
signaturePlaceHolder: string;
|
23170
23275
|
chooseFileCaption: string;
|
23171
23276
|
takePhotoCaption: string;
|
23172
|
-
|
23173
|
-
|
23277
|
+
photoPlaceholder: string;
|
23278
|
+
fileOrPhotoPlaceholder: string;
|
23174
23279
|
replaceFileCaption: string;
|
23175
23280
|
removeFileCaption: string;
|
23176
23281
|
booleanCheckedLabel: string;
|
@@ -23238,7 +23343,7 @@ declare module "localization/welsh" {
|
|
23238
23343
|
loadingFile: string;
|
23239
23344
|
chooseFile: string;
|
23240
23345
|
noFileChosen: string;
|
23241
|
-
|
23346
|
+
filePlaceholder: string;
|
23242
23347
|
confirmDelete: string;
|
23243
23348
|
keyDuplicationError: string;
|
23244
23349
|
addColumn: string;
|
@@ -23267,8 +23372,8 @@ declare module "localization/welsh" {
|
|
23267
23372
|
signaturePlaceHolder: string;
|
23268
23373
|
chooseFileCaption: string;
|
23269
23374
|
takePhotoCaption: string;
|
23270
|
-
|
23271
|
-
|
23375
|
+
photoPlaceholder: string;
|
23376
|
+
fileOrPhotoPlaceholder: string;
|
23272
23377
|
replaceFileCaption: string;
|
23273
23378
|
removeFileCaption: string;
|
23274
23379
|
booleanCheckedLabel: string;
|
@@ -23336,7 +23441,7 @@ declare module "localization/telugu" {
|
|
23336
23441
|
loadingFile: string;
|
23337
23442
|
chooseFile: string;
|
23338
23443
|
noFileChosen: string;
|
23339
|
-
|
23444
|
+
filePlaceholder: string;
|
23340
23445
|
confirmDelete: string;
|
23341
23446
|
keyDuplicationError: string;
|
23342
23447
|
addColumn: string;
|
@@ -23365,8 +23470,8 @@ declare module "localization/telugu" {
|
|
23365
23470
|
signaturePlaceHolder: string;
|
23366
23471
|
chooseFileCaption: string;
|
23367
23472
|
takePhotoCaption: string;
|
23368
|
-
|
23369
|
-
|
23473
|
+
photoPlaceholder: string;
|
23474
|
+
fileOrPhotoPlaceholder: string;
|
23370
23475
|
replaceFileCaption: string;
|
23371
23476
|
removeFileCaption: string;
|
23372
23477
|
booleanCheckedLabel: string;
|
@@ -24107,6 +24212,7 @@ declare module "react/reactquestion_ranking" {
|
|
24107
24212
|
protected get question(): any;
|
24108
24213
|
protected get unrankedItem(): any;
|
24109
24214
|
protected get item(): any;
|
24215
|
+
protected renderEmptyIcon(): JSX.Element;
|
24110
24216
|
protected renderElement(): JSX.Element;
|
24111
24217
|
}
|
24112
24218
|
}
|
@@ -24844,7 +24950,7 @@ declare module "react/components/skeleton" {
|
|
24844
24950
|
render(): JSX.Element;
|
24845
24951
|
}
|
24846
24952
|
}
|
24847
|
-
declare module "react/components/
|
24953
|
+
declare module "react/components/header" {
|
24848
24954
|
import React from "react";
|
24849
24955
|
import { Base, SurveyModel, Cover, CoverCell } from "entries/core";
|
24850
24956
|
import { SurveyElementBase } from "react/reactquestion_element";
|
@@ -24852,12 +24958,17 @@ declare module "react/components/cover" {
|
|
24852
24958
|
survey: SurveyModel;
|
24853
24959
|
model: T;
|
24854
24960
|
}
|
24855
|
-
export class
|
24961
|
+
export class HeaderMobile extends React.Component<any, any> {
|
24962
|
+
get model(): Cover;
|
24963
|
+
private renderLogoImage;
|
24964
|
+
render(): JSX.Element | null;
|
24965
|
+
}
|
24966
|
+
export class HeaderCell extends React.Component<any, any> {
|
24856
24967
|
get model(): CoverCell;
|
24857
24968
|
private renderLogoImage;
|
24858
24969
|
render(): JSX.Element | null;
|
24859
24970
|
}
|
24860
|
-
export class
|
24971
|
+
export class Header extends SurveyElementBase<ILayoutElementProps<Cover>, any> {
|
24861
24972
|
get model(): Cover;
|
24862
24973
|
protected getStateElement(): Base;
|
24863
24974
|
renderElement(): JSX.Element | null;
|
@@ -24952,7 +25063,7 @@ declare module "entries/react-ui-model" {
|
|
24952
25063
|
export { NotifierComponent } from "react/components/notifier";
|
24953
25064
|
export { ComponentsContainer } from "react/components/components-container";
|
24954
25065
|
export { CharacterCounterComponent } from "react/components/character-counter";
|
24955
|
-
export * from "react/components/
|
25066
|
+
export * from "react/components/header";
|
24956
25067
|
export { SurveyLocStringViewer } from "react/string-viewer";
|
24957
25068
|
export { SurveyLocStringEditor } from "react/string-editor";
|
24958
25069
|
export { LoadingIndicatorComponent } from "react/components/loading-indicator";
|