survey-react 1.9.113 → 1.9.114
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 +162 -115
- 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 +212 -163
- package/survey.react.js +1030 -842
- 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;
|
@@ -116,8 +116,8 @@ declare module "localization/english" {
|
|
116
116
|
signaturePlaceHolder: string;
|
117
117
|
chooseFileCaption: string;
|
118
118
|
takePhotoCaption: string;
|
119
|
-
|
120
|
-
|
119
|
+
photoPlaceholder: string;
|
120
|
+
fileOrPhotoPlaceholder: string;
|
121
121
|
replaceFileCaption: string;
|
122
122
|
removeFileCaption: string;
|
123
123
|
booleanCheckedLabel: string;
|
@@ -204,7 +204,7 @@ declare module "surveyStrings" {
|
|
204
204
|
loadingFile: string;
|
205
205
|
chooseFile: string;
|
206
206
|
noFileChosen: string;
|
207
|
-
|
207
|
+
filePlaceholder: string;
|
208
208
|
confirmDelete: string;
|
209
209
|
keyDuplicationError: string;
|
210
210
|
addColumn: string;
|
@@ -233,8 +233,8 @@ declare module "surveyStrings" {
|
|
233
233
|
signaturePlaceHolder: string;
|
234
234
|
chooseFileCaption: string;
|
235
235
|
takePhotoCaption: string;
|
236
|
-
|
237
|
-
|
236
|
+
photoPlaceholder: string;
|
237
|
+
fileOrPhotoPlaceholder: string;
|
238
238
|
replaceFileCaption: string;
|
239
239
|
removeFileCaption: string;
|
240
240
|
booleanCheckedLabel: string;
|
@@ -593,6 +593,7 @@ declare module "jsonobject" {
|
|
593
593
|
private generateSchemaProperty;
|
594
594
|
private getChemeRefName;
|
595
595
|
private generateChemaClass;
|
596
|
+
private getChoicesValues;
|
596
597
|
}
|
597
598
|
export class JsonError {
|
598
599
|
type: string;
|
@@ -1135,7 +1136,7 @@ declare module "utils/utils" {
|
|
1135
1136
|
log(action: string): void;
|
1136
1137
|
get result(): string;
|
1137
1138
|
}
|
1138
|
-
export function showConfirmDialog(message: string, callback: (res: boolean) => void): boolean;
|
1139
|
+
export function showConfirmDialog(message: string, callback: (res: boolean) => void, applyTitle?: string): boolean;
|
1139
1140
|
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
1141
|
}
|
1141
1142
|
declare module "actions/container" {
|
@@ -3301,6 +3302,7 @@ declare module "question_file" {
|
|
3301
3302
|
import { ActionContainer } from "actions/container";
|
3302
3303
|
import { Action } from "actions/action";
|
3303
3304
|
import { Camera } from "utils/camera";
|
3305
|
+
import { LocalizableString } from "localizablestring";
|
3304
3306
|
/**
|
3305
3307
|
* A class that describes the File Upload question type.
|
3306
3308
|
*
|
@@ -3335,6 +3337,9 @@ declare module "question_file" {
|
|
3335
3337
|
* - `"file"` (default) - Allows respondents to select a local file.
|
3336
3338
|
* - `"camera"` - Allows respondents to capture and upload a photo.
|
3337
3339
|
* - `"file-camera"` - Allows respondents to select a local file or capture a photo.
|
3340
|
+
* @see filePlaceholder
|
3341
|
+
* @see photoPlaceholder
|
3342
|
+
* @see fileOrPhotoPlaceholder
|
3338
3343
|
*/
|
3339
3344
|
sourceType: string;
|
3340
3345
|
fileNavigator: ActionContainer;
|
@@ -3448,11 +3453,26 @@ declare module "question_file" {
|
|
3448
3453
|
removeFileCaption: string;
|
3449
3454
|
loadingFileTitle: string;
|
3450
3455
|
chooseFileTitle: string;
|
3451
|
-
|
3452
|
-
|
3453
|
-
|
3454
|
-
|
3455
|
-
|
3456
|
+
/**
|
3457
|
+
* 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"`.
|
3458
|
+
* @see filePlaceholder
|
3459
|
+
* @see photoPlaceholder
|
3460
|
+
*/
|
3461
|
+
fileOrPhotoPlaceholder: string;
|
3462
|
+
/**
|
3463
|
+
* 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"`.
|
3464
|
+
* @see filePlaceholder
|
3465
|
+
* @see fileOrPhotoPlaceholder
|
3466
|
+
*/
|
3467
|
+
photoPlaceholder: string;
|
3468
|
+
/**
|
3469
|
+
* 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"`.
|
3470
|
+
* @see photoPlaceholder
|
3471
|
+
* @see fileOrPhotoPlaceholder
|
3472
|
+
*/
|
3473
|
+
filePlaceholder: string;
|
3474
|
+
locRenderedPlaceholderValue: LocalizableString;
|
3475
|
+
get locRenderedPlaceholder(): LocalizableString;
|
3456
3476
|
get currentMode(): string;
|
3457
3477
|
get isPlayingVideo(): boolean;
|
3458
3478
|
private setIsPlayingVideo;
|
@@ -7558,6 +7578,7 @@ declare module "question_multipletext" {
|
|
7558
7578
|
import { QuestionTextModel } from "question_text";
|
7559
7579
|
import { SurveyError } from "survey-error";
|
7560
7580
|
import { ILocalizableOwner, LocalizableString } from "localizablestring";
|
7581
|
+
import { HashTable } from "helpers";
|
7561
7582
|
export interface IMultipleTextData extends ILocalizableOwner, IPanel {
|
7562
7583
|
getSurvey(): ISurvey;
|
7563
7584
|
getTextProcessor(): ITextProcessor;
|
@@ -7773,6 +7794,7 @@ declare module "question_multipletext" {
|
|
7773
7794
|
protected onValueChanged(): void;
|
7774
7795
|
protected createTextItem(name: string, title: string): MultipleTextItemModel;
|
7775
7796
|
protected onItemValueChanged(): void;
|
7797
|
+
runCondition(values: HashTable<any>, properties: HashTable<any>): void;
|
7776
7798
|
protected getIsRunningValidators(): boolean;
|
7777
7799
|
hasErrors(fireCallback?: boolean, rec?: any): boolean;
|
7778
7800
|
getAllErrors(): Array<SurveyError>;
|
@@ -7822,7 +7844,7 @@ declare module "question_multipletext" {
|
|
7822
7844
|
protected getClassName(): string;
|
7823
7845
|
}
|
7824
7846
|
}
|
7825
|
-
declare module "
|
7847
|
+
declare module "header" {
|
7826
7848
|
import { Base } from "base";
|
7827
7849
|
import { HorizontalAlignment, VerticalAlignment } from "base-interfaces";
|
7828
7850
|
import { SurveyModel } from "survey";
|
@@ -7850,13 +7872,14 @@ declare module "cover" {
|
|
7850
7872
|
export class Cover extends Base {
|
7851
7873
|
private _survey;
|
7852
7874
|
private calcBackgroundSize;
|
7853
|
-
private
|
7875
|
+
private updateHeaderClasses;
|
7854
7876
|
private updateContentClasses;
|
7855
7877
|
private updateBackgroundImageClasses;
|
7856
7878
|
fromTheme(theme: ITheme): void;
|
7857
7879
|
constructor();
|
7858
7880
|
getType(): string;
|
7859
7881
|
cells: CoverCell[];
|
7882
|
+
actualHeight: number;
|
7860
7883
|
height: number;
|
7861
7884
|
inheritWidthFrom: "survey" | "container";
|
7862
7885
|
textAreaWidth: number;
|
@@ -7885,7 +7908,7 @@ declare module "cover" {
|
|
7885
7908
|
gridColumn: number;
|
7886
7909
|
gridRow: number;
|
7887
7910
|
};
|
7888
|
-
|
7911
|
+
headerClasses: string;
|
7889
7912
|
contentClasses: string;
|
7890
7913
|
maxWidth: string;
|
7891
7914
|
backgroundImageClasses: string;
|
@@ -7899,6 +7922,8 @@ declare module "cover" {
|
|
7899
7922
|
backgroundSize: string;
|
7900
7923
|
};
|
7901
7924
|
protected propertyValueChanged(name: string, oldValue: any, newValue: any): void;
|
7925
|
+
calculateActualHeight(logoHeight: number, titleHeight: number, descriptionHeight: number): number;
|
7926
|
+
processResponsiveness(width: number): void;
|
7902
7927
|
}
|
7903
7928
|
}
|
7904
7929
|
declare module "survey" {
|
@@ -8741,7 +8766,7 @@ declare module "survey" {
|
|
8741
8766
|
/**
|
8742
8767
|
* Specifies whether to focus the first question on the page on survey startup or when users switch between pages.
|
8743
8768
|
*
|
8744
|
-
* Default value: `true`
|
8769
|
+
* Default value: `false` in v1.9.114 and later, `true` in earlier versions
|
8745
8770
|
* @see focusOnFirstError
|
8746
8771
|
* @see focusFirstQuestion
|
8747
8772
|
* @see focusQuestion
|
@@ -11112,6 +11137,7 @@ declare module "question" {
|
|
11112
11137
|
focusCallback: () => void;
|
11113
11138
|
surveyLoadCallback: () => void;
|
11114
11139
|
displayValueCallback: (text: string) => string;
|
11140
|
+
hasCssErrorCallback: () => boolean;
|
11115
11141
|
private defaultValueRunner;
|
11116
11142
|
private isChangingViaDefaultValue;
|
11117
11143
|
private isValueChangedDirectly;
|
@@ -11293,7 +11319,9 @@ declare module "question" {
|
|
11293
11319
|
moveTo(container: IPanel, insertBefore?: any): boolean;
|
11294
11320
|
getProgressInfo(): IProgressInfo;
|
11295
11321
|
private setValueExpressionRunner;
|
11322
|
+
private ensureSetValueExpressionRunner;
|
11296
11323
|
private runSetValueExpression;
|
11324
|
+
private checkExpressionIf;
|
11297
11325
|
private triggersInfo;
|
11298
11326
|
private addTriggerInfo;
|
11299
11327
|
private runTriggerInfo;
|
@@ -11470,6 +11498,7 @@ declare module "question" {
|
|
11470
11498
|
get cssError(): string;
|
11471
11499
|
protected setCssError(val: string): void;
|
11472
11500
|
protected getCssError(cssClasses: any): string;
|
11501
|
+
protected hasCssError(): boolean;
|
11473
11502
|
getRootCss(): string;
|
11474
11503
|
getQuestionRootCss(): string;
|
11475
11504
|
updateElementCss(reNew?: boolean): void;
|
@@ -11717,7 +11746,9 @@ declare module "question" {
|
|
11717
11746
|
get setValueIf(): string;
|
11718
11747
|
set setValueIf(val: string);
|
11719
11748
|
/**
|
11720
|
-
* An expression used to calculate the question value.
|
11749
|
+
* An expression used to calculate the question value.
|
11750
|
+
*
|
11751
|
+
* 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
11752
|
*
|
11722
11753
|
* [Expressions](https://surveyjs.io/form-library/documentation/design-survey/conditional-logic#expressions (linkStyle))
|
11723
11754
|
* @see defaultValueExpression
|
@@ -12865,6 +12896,7 @@ declare module "base-interfaces" {
|
|
12865
12896
|
component?: string;
|
12866
12897
|
template?: string;
|
12867
12898
|
data?: any;
|
12899
|
+
processResponsiveness?: (width: number) => void;
|
12868
12900
|
}
|
12869
12901
|
export interface IPlainDataOptions {
|
12870
12902
|
includeEmpty?: boolean;
|
@@ -13811,7 +13843,7 @@ declare module "settings" {
|
|
13811
13843
|
* @param message A message to be displayed in the confirm dialog window.
|
13812
13844
|
* @param callback A callback function that should be called with `true` if a user confirms an action or `false` otherwise.
|
13813
13845
|
*/
|
13814
|
-
confirmActionAsync: (message: string, callback: (res: boolean) => void) => boolean;
|
13846
|
+
confirmActionAsync: (message: string, callback: (res: boolean) => void, applyTitle?: string) => boolean;
|
13815
13847
|
/**
|
13816
13848
|
* A minimum width value for all survey elements.
|
13817
13849
|
*
|
@@ -14887,7 +14919,6 @@ declare module "dragdrop/ranking-select-to-rank" {
|
|
14887
14919
|
import { DragDropRankingChoices } from "dragdrop/ranking-choices";
|
14888
14920
|
import { QuestionRankingModel } from "question_ranking";
|
14889
14921
|
export class DragDropRankingSelectToRank extends DragDropRankingChoices {
|
14890
|
-
protected onStartDrag(event: PointerEvent): void;
|
14891
14922
|
protected findDropTargetNodeByDragOverNode(dragOverNode: HTMLElement): HTMLElement;
|
14892
14923
|
protected getDropTargetByDataAttributeValue(dataAttributeValue: string): ItemValue;
|
14893
14924
|
protected getDropTargetByNode(dropTargetNode: HTMLElement, event: PointerEvent): any;
|
@@ -15002,6 +15033,9 @@ declare module "question_ranking" {
|
|
15002
15033
|
selectToRankEmptyUnrankedAreaText: string;
|
15003
15034
|
get useFullItemSizeForShortcut(): boolean;
|
15004
15035
|
set useFullItemSizeForShortcut(val: boolean);
|
15036
|
+
get dragDropSvgIcon(): string;
|
15037
|
+
get arrowsSvgIcon(): string;
|
15038
|
+
get dashSvgIcon(): string;
|
15005
15039
|
get isNewA11yStructure(): boolean;
|
15006
15040
|
}
|
15007
15041
|
}
|
@@ -15660,8 +15694,17 @@ declare module "question_signaturepad" {
|
|
15660
15694
|
get backgroundImage(): string;
|
15661
15695
|
set backgroundImage(val: string);
|
15662
15696
|
get clearButtonCaption(): string;
|
15697
|
+
/**
|
15698
|
+
* A Boolean value that specifies whether to show the [placeholder](#placeholder).
|
15699
|
+
*
|
15700
|
+
* Default value: `true`
|
15701
|
+
*/
|
15702
|
+
showPlaceholder: boolean;
|
15663
15703
|
needShowPlaceholder(): boolean;
|
15664
|
-
|
15704
|
+
/**
|
15705
|
+
* A placeholder for the signature area. Applies when the [`showPlaceholder`](#showPlaceholder) property is `true`.
|
15706
|
+
*/
|
15707
|
+
placeholder: string;
|
15665
15708
|
endLoadingFromJson(): void;
|
15666
15709
|
}
|
15667
15710
|
}
|
@@ -16355,7 +16398,7 @@ declare module "entries/chunks/model" {
|
|
16355
16398
|
export { PopupSurveyModel, SurveyWindowModel } from "popup-survey";
|
16356
16399
|
export { TextPreProcessor } from "textPreProcessor";
|
16357
16400
|
export { Notifier } from "notifier";
|
16358
|
-
export { Cover, CoverCell } from "
|
16401
|
+
export { Cover, CoverCell } from "header";
|
16359
16402
|
export { dxSurveyService } from "dxSurveyService";
|
16360
16403
|
export { englishStrings } from "localization/english";
|
16361
16404
|
export { surveyLocalization, surveyStrings } from "surveyStrings";
|
@@ -18855,7 +18898,7 @@ declare module "localization/arabic" {
|
|
18855
18898
|
loadingFile: string;
|
18856
18899
|
chooseFile: string;
|
18857
18900
|
noFileChosen: string;
|
18858
|
-
|
18901
|
+
filePlaceholder: string;
|
18859
18902
|
confirmDelete: string;
|
18860
18903
|
keyDuplicationError: string;
|
18861
18904
|
addColumn: string;
|
@@ -18884,8 +18927,8 @@ declare module "localization/arabic" {
|
|
18884
18927
|
signaturePlaceHolder: string;
|
18885
18928
|
chooseFileCaption: string;
|
18886
18929
|
takePhotoCaption: string;
|
18887
|
-
|
18888
|
-
|
18930
|
+
photoPlaceholder: string;
|
18931
|
+
fileOrPhotoPlaceholder: string;
|
18889
18932
|
replaceFileCaption: string;
|
18890
18933
|
removeFileCaption: string;
|
18891
18934
|
booleanCheckedLabel: string;
|
@@ -18953,7 +18996,7 @@ declare module "localization/basque" {
|
|
18953
18996
|
loadingFile: string;
|
18954
18997
|
chooseFile: string;
|
18955
18998
|
noFileChosen: string;
|
18956
|
-
|
18999
|
+
filePlaceholder: string;
|
18957
19000
|
confirmDelete: string;
|
18958
19001
|
keyDuplicationError: string;
|
18959
19002
|
addColumn: string;
|
@@ -18982,8 +19025,8 @@ declare module "localization/basque" {
|
|
18982
19025
|
signaturePlaceHolder: string;
|
18983
19026
|
chooseFileCaption: string;
|
18984
19027
|
takePhotoCaption: string;
|
18985
|
-
|
18986
|
-
|
19028
|
+
photoPlaceholder: string;
|
19029
|
+
fileOrPhotoPlaceholder: string;
|
18987
19030
|
replaceFileCaption: string;
|
18988
19031
|
removeFileCaption: string;
|
18989
19032
|
booleanCheckedLabel: string;
|
@@ -19051,7 +19094,7 @@ declare module "localization/bulgarian" {
|
|
19051
19094
|
loadingFile: string;
|
19052
19095
|
chooseFile: string;
|
19053
19096
|
noFileChosen: string;
|
19054
|
-
|
19097
|
+
filePlaceholder: string;
|
19055
19098
|
confirmDelete: string;
|
19056
19099
|
keyDuplicationError: string;
|
19057
19100
|
addColumn: string;
|
@@ -19080,8 +19123,8 @@ declare module "localization/bulgarian" {
|
|
19080
19123
|
signaturePlaceHolder: string;
|
19081
19124
|
chooseFileCaption: string;
|
19082
19125
|
takePhotoCaption: string;
|
19083
|
-
|
19084
|
-
|
19126
|
+
photoPlaceholder: string;
|
19127
|
+
fileOrPhotoPlaceholder: string;
|
19085
19128
|
replaceFileCaption: string;
|
19086
19129
|
removeFileCaption: string;
|
19087
19130
|
booleanCheckedLabel: string;
|
@@ -19149,7 +19192,7 @@ declare module "localization/catalan" {
|
|
19149
19192
|
loadingFile: string;
|
19150
19193
|
chooseFile: string;
|
19151
19194
|
noFileChosen: string;
|
19152
|
-
|
19195
|
+
filePlaceholder: string;
|
19153
19196
|
confirmDelete: string;
|
19154
19197
|
keyDuplicationError: string;
|
19155
19198
|
addColumn: string;
|
@@ -19178,8 +19221,8 @@ declare module "localization/catalan" {
|
|
19178
19221
|
signaturePlaceHolder: string;
|
19179
19222
|
chooseFileCaption: string;
|
19180
19223
|
takePhotoCaption: string;
|
19181
|
-
|
19182
|
-
|
19224
|
+
photoPlaceholder: string;
|
19225
|
+
fileOrPhotoPlaceholder: string;
|
19183
19226
|
replaceFileCaption: string;
|
19184
19227
|
removeFileCaption: string;
|
19185
19228
|
booleanCheckedLabel: string;
|
@@ -19247,7 +19290,7 @@ declare module "localization/croatian" {
|
|
19247
19290
|
loadingFile: string;
|
19248
19291
|
chooseFile: string;
|
19249
19292
|
noFileChosen: string;
|
19250
|
-
|
19293
|
+
filePlaceholder: string;
|
19251
19294
|
confirmDelete: string;
|
19252
19295
|
keyDuplicationError: string;
|
19253
19296
|
addColumn: string;
|
@@ -19276,8 +19319,8 @@ declare module "localization/croatian" {
|
|
19276
19319
|
signaturePlaceHolder: string;
|
19277
19320
|
chooseFileCaption: string;
|
19278
19321
|
takePhotoCaption: string;
|
19279
|
-
|
19280
|
-
|
19322
|
+
photoPlaceholder: string;
|
19323
|
+
fileOrPhotoPlaceholder: string;
|
19281
19324
|
replaceFileCaption: string;
|
19282
19325
|
removeFileCaption: string;
|
19283
19326
|
booleanCheckedLabel: string;
|
@@ -19345,7 +19388,7 @@ declare module "localization/czech" {
|
|
19345
19388
|
loadingFile: string;
|
19346
19389
|
chooseFile: string;
|
19347
19390
|
noFileChosen: string;
|
19348
|
-
|
19391
|
+
filePlaceholder: string;
|
19349
19392
|
confirmDelete: string;
|
19350
19393
|
keyDuplicationError: string;
|
19351
19394
|
addColumn: string;
|
@@ -19374,8 +19417,8 @@ declare module "localization/czech" {
|
|
19374
19417
|
signaturePlaceHolder: string;
|
19375
19418
|
chooseFileCaption: string;
|
19376
19419
|
takePhotoCaption: string;
|
19377
|
-
|
19378
|
-
|
19420
|
+
photoPlaceholder: string;
|
19421
|
+
fileOrPhotoPlaceholder: string;
|
19379
19422
|
replaceFileCaption: string;
|
19380
19423
|
removeFileCaption: string;
|
19381
19424
|
booleanCheckedLabel: string;
|
@@ -19443,7 +19486,7 @@ declare module "localization/danish" {
|
|
19443
19486
|
loadingFile: string;
|
19444
19487
|
chooseFile: string;
|
19445
19488
|
noFileChosen: string;
|
19446
|
-
|
19489
|
+
filePlaceholder: string;
|
19447
19490
|
confirmDelete: string;
|
19448
19491
|
keyDuplicationError: string;
|
19449
19492
|
addColumn: string;
|
@@ -19472,8 +19515,8 @@ declare module "localization/danish" {
|
|
19472
19515
|
signaturePlaceHolder: string;
|
19473
19516
|
chooseFileCaption: string;
|
19474
19517
|
takePhotoCaption: string;
|
19475
|
-
|
19476
|
-
|
19518
|
+
photoPlaceholder: string;
|
19519
|
+
fileOrPhotoPlaceholder: string;
|
19477
19520
|
replaceFileCaption: string;
|
19478
19521
|
removeFileCaption: string;
|
19479
19522
|
booleanCheckedLabel: string;
|
@@ -19541,7 +19584,7 @@ declare module "localization/dutch" {
|
|
19541
19584
|
loadingFile: string;
|
19542
19585
|
chooseFile: string;
|
19543
19586
|
noFileChosen: string;
|
19544
|
-
|
19587
|
+
filePlaceholder: string;
|
19545
19588
|
confirmDelete: string;
|
19546
19589
|
keyDuplicationError: string;
|
19547
19590
|
addColumn: string;
|
@@ -19570,8 +19613,8 @@ declare module "localization/dutch" {
|
|
19570
19613
|
signaturePlaceHolder: string;
|
19571
19614
|
chooseFileCaption: string;
|
19572
19615
|
takePhotoCaption: string;
|
19573
|
-
|
19574
|
-
|
19616
|
+
photoPlaceholder: string;
|
19617
|
+
fileOrPhotoPlaceholder: string;
|
19575
19618
|
replaceFileCaption: string;
|
19576
19619
|
removeFileCaption: string;
|
19577
19620
|
booleanCheckedLabel: string;
|
@@ -19640,7 +19683,7 @@ declare module "localization/estonian" {
|
|
19640
19683
|
loadingFile: string;
|
19641
19684
|
chooseFile: string;
|
19642
19685
|
noFileChosen: string;
|
19643
|
-
|
19686
|
+
filePlaceholder: string;
|
19644
19687
|
confirmDelete: string;
|
19645
19688
|
keyDuplicationError: string;
|
19646
19689
|
addColumn: string;
|
@@ -19669,8 +19712,8 @@ declare module "localization/estonian" {
|
|
19669
19712
|
signaturePlaceHolder: string;
|
19670
19713
|
chooseFileCaption: string;
|
19671
19714
|
takePhotoCaption: string;
|
19672
|
-
|
19673
|
-
|
19715
|
+
photoPlaceholder: string;
|
19716
|
+
fileOrPhotoPlaceholder: string;
|
19674
19717
|
replaceFileCaption: string;
|
19675
19718
|
removeFileCaption: string;
|
19676
19719
|
booleanCheckedLabel: string;
|
@@ -19738,7 +19781,7 @@ declare module "localization/finnish" {
|
|
19738
19781
|
loadingFile: string;
|
19739
19782
|
chooseFile: string;
|
19740
19783
|
noFileChosen: string;
|
19741
|
-
|
19784
|
+
filePlaceholder: string;
|
19742
19785
|
confirmDelete: string;
|
19743
19786
|
keyDuplicationError: string;
|
19744
19787
|
addColumn: string;
|
@@ -19767,8 +19810,8 @@ declare module "localization/finnish" {
|
|
19767
19810
|
signaturePlaceHolder: string;
|
19768
19811
|
chooseFileCaption: string;
|
19769
19812
|
takePhotoCaption: string;
|
19770
|
-
|
19771
|
-
|
19813
|
+
photoPlaceholder: string;
|
19814
|
+
fileOrPhotoPlaceholder: string;
|
19772
19815
|
replaceFileCaption: string;
|
19773
19816
|
removeFileCaption: string;
|
19774
19817
|
booleanCheckedLabel: string;
|
@@ -19836,7 +19879,7 @@ declare module "localization/french" {
|
|
19836
19879
|
loadingFile: string;
|
19837
19880
|
chooseFile: string;
|
19838
19881
|
noFileChosen: string;
|
19839
|
-
|
19882
|
+
filePlaceholder: string;
|
19840
19883
|
confirmDelete: string;
|
19841
19884
|
keyDuplicationError: string;
|
19842
19885
|
addColumn: string;
|
@@ -19865,8 +19908,8 @@ declare module "localization/french" {
|
|
19865
19908
|
signaturePlaceHolder: string;
|
19866
19909
|
chooseFileCaption: string;
|
19867
19910
|
takePhotoCaption: string;
|
19868
|
-
|
19869
|
-
|
19911
|
+
photoPlaceholder: string;
|
19912
|
+
fileOrPhotoPlaceholder: string;
|
19870
19913
|
replaceFileCaption: string;
|
19871
19914
|
removeFileCaption: string;
|
19872
19915
|
booleanCheckedLabel: string;
|
@@ -19934,7 +19977,7 @@ declare module "localization/georgian" {
|
|
19934
19977
|
loadingFile: string;
|
19935
19978
|
chooseFile: string;
|
19936
19979
|
noFileChosen: string;
|
19937
|
-
|
19980
|
+
filePlaceholder: string;
|
19938
19981
|
confirmDelete: string;
|
19939
19982
|
keyDuplicationError: string;
|
19940
19983
|
addColumn: string;
|
@@ -19963,8 +20006,8 @@ declare module "localization/georgian" {
|
|
19963
20006
|
signaturePlaceHolder: string;
|
19964
20007
|
chooseFileCaption: string;
|
19965
20008
|
takePhotoCaption: string;
|
19966
|
-
|
19967
|
-
|
20009
|
+
photoPlaceholder: string;
|
20010
|
+
fileOrPhotoPlaceholder: string;
|
19968
20011
|
replaceFileCaption: string;
|
19969
20012
|
removeFileCaption: string;
|
19970
20013
|
booleanCheckedLabel: string;
|
@@ -20032,7 +20075,7 @@ declare module "localization/german" {
|
|
20032
20075
|
loadingFile: string;
|
20033
20076
|
chooseFile: string;
|
20034
20077
|
noFileChosen: string;
|
20035
|
-
|
20078
|
+
filePlaceholder: string;
|
20036
20079
|
confirmDelete: string;
|
20037
20080
|
keyDuplicationError: string;
|
20038
20081
|
addColumn: string;
|
@@ -20061,8 +20104,8 @@ declare module "localization/german" {
|
|
20061
20104
|
signaturePlaceHolder: string;
|
20062
20105
|
chooseFileCaption: string;
|
20063
20106
|
takePhotoCaption: string;
|
20064
|
-
|
20065
|
-
|
20107
|
+
photoPlaceholder: string;
|
20108
|
+
fileOrPhotoPlaceholder: string;
|
20066
20109
|
replaceFileCaption: string;
|
20067
20110
|
removeFileCaption: string;
|
20068
20111
|
booleanCheckedLabel: string;
|
@@ -20130,7 +20173,7 @@ declare module "localization/greek" {
|
|
20130
20173
|
loadingFile: string;
|
20131
20174
|
chooseFile: string;
|
20132
20175
|
noFileChosen: string;
|
20133
|
-
|
20176
|
+
filePlaceholder: string;
|
20134
20177
|
confirmDelete: string;
|
20135
20178
|
keyDuplicationError: string;
|
20136
20179
|
addColumn: string;
|
@@ -20159,8 +20202,8 @@ declare module "localization/greek" {
|
|
20159
20202
|
signaturePlaceHolder: string;
|
20160
20203
|
chooseFileCaption: string;
|
20161
20204
|
takePhotoCaption: string;
|
20162
|
-
|
20163
|
-
|
20205
|
+
photoPlaceholder: string;
|
20206
|
+
fileOrPhotoPlaceholder: string;
|
20164
20207
|
replaceFileCaption: string;
|
20165
20208
|
removeFileCaption: string;
|
20166
20209
|
booleanCheckedLabel: string;
|
@@ -20228,7 +20271,7 @@ declare module "localization/hebrew" {
|
|
20228
20271
|
loadingFile: string;
|
20229
20272
|
chooseFile: string;
|
20230
20273
|
noFileChosen: string;
|
20231
|
-
|
20274
|
+
filePlaceholder: string;
|
20232
20275
|
confirmDelete: string;
|
20233
20276
|
keyDuplicationError: string;
|
20234
20277
|
addColumn: string;
|
@@ -20257,8 +20300,8 @@ declare module "localization/hebrew" {
|
|
20257
20300
|
signaturePlaceHolder: string;
|
20258
20301
|
chooseFileCaption: string;
|
20259
20302
|
takePhotoCaption: string;
|
20260
|
-
|
20261
|
-
|
20303
|
+
photoPlaceholder: string;
|
20304
|
+
fileOrPhotoPlaceholder: string;
|
20262
20305
|
replaceFileCaption: string;
|
20263
20306
|
removeFileCaption: string;
|
20264
20307
|
booleanCheckedLabel: string;
|
@@ -20326,7 +20369,7 @@ declare module "localization/hindi" {
|
|
20326
20369
|
loadingFile: string;
|
20327
20370
|
chooseFile: string;
|
20328
20371
|
noFileChosen: string;
|
20329
|
-
|
20372
|
+
filePlaceholder: string;
|
20330
20373
|
confirmDelete: string;
|
20331
20374
|
keyDuplicationError: string;
|
20332
20375
|
addColumn: string;
|
@@ -20355,8 +20398,8 @@ declare module "localization/hindi" {
|
|
20355
20398
|
signaturePlaceHolder: string;
|
20356
20399
|
chooseFileCaption: string;
|
20357
20400
|
takePhotoCaption: string;
|
20358
|
-
|
20359
|
-
|
20401
|
+
photoPlaceholder: string;
|
20402
|
+
fileOrPhotoPlaceholder: string;
|
20360
20403
|
replaceFileCaption: string;
|
20361
20404
|
removeFileCaption: string;
|
20362
20405
|
booleanCheckedLabel: string;
|
@@ -20424,7 +20467,7 @@ declare module "localization/hungarian" {
|
|
20424
20467
|
loadingFile: string;
|
20425
20468
|
chooseFile: string;
|
20426
20469
|
noFileChosen: string;
|
20427
|
-
|
20470
|
+
filePlaceholder: string;
|
20428
20471
|
confirmDelete: string;
|
20429
20472
|
keyDuplicationError: string;
|
20430
20473
|
addColumn: string;
|
@@ -20453,8 +20496,8 @@ declare module "localization/hungarian" {
|
|
20453
20496
|
signaturePlaceHolder: string;
|
20454
20497
|
chooseFileCaption: string;
|
20455
20498
|
takePhotoCaption: string;
|
20456
|
-
|
20457
|
-
|
20499
|
+
photoPlaceholder: string;
|
20500
|
+
fileOrPhotoPlaceholder: string;
|
20458
20501
|
replaceFileCaption: string;
|
20459
20502
|
removeFileCaption: string;
|
20460
20503
|
booleanCheckedLabel: string;
|
@@ -20522,7 +20565,7 @@ declare module "localization/icelandic" {
|
|
20522
20565
|
loadingFile: string;
|
20523
20566
|
chooseFile: string;
|
20524
20567
|
noFileChosen: string;
|
20525
|
-
|
20568
|
+
filePlaceholder: string;
|
20526
20569
|
confirmDelete: string;
|
20527
20570
|
keyDuplicationError: string;
|
20528
20571
|
addColumn: string;
|
@@ -20551,8 +20594,8 @@ declare module "localization/icelandic" {
|
|
20551
20594
|
signaturePlaceHolder: string;
|
20552
20595
|
chooseFileCaption: string;
|
20553
20596
|
takePhotoCaption: string;
|
20554
|
-
|
20555
|
-
|
20597
|
+
photoPlaceholder: string;
|
20598
|
+
fileOrPhotoPlaceholder: string;
|
20556
20599
|
replaceFileCaption: string;
|
20557
20600
|
removeFileCaption: string;
|
20558
20601
|
booleanCheckedLabel: string;
|
@@ -20620,7 +20663,7 @@ declare module "localization/indonesian" {
|
|
20620
20663
|
loadingFile: string;
|
20621
20664
|
chooseFile: string;
|
20622
20665
|
noFileChosen: string;
|
20623
|
-
|
20666
|
+
filePlaceholder: string;
|
20624
20667
|
confirmDelete: string;
|
20625
20668
|
keyDuplicationError: string;
|
20626
20669
|
addColumn: string;
|
@@ -20649,8 +20692,8 @@ declare module "localization/indonesian" {
|
|
20649
20692
|
signaturePlaceHolder: string;
|
20650
20693
|
chooseFileCaption: string;
|
20651
20694
|
takePhotoCaption: string;
|
20652
|
-
|
20653
|
-
|
20695
|
+
photoPlaceholder: string;
|
20696
|
+
fileOrPhotoPlaceholder: string;
|
20654
20697
|
replaceFileCaption: string;
|
20655
20698
|
removeFileCaption: string;
|
20656
20699
|
booleanCheckedLabel: string;
|
@@ -20718,7 +20761,7 @@ declare module "localization/italian" {
|
|
20718
20761
|
loadingFile: string;
|
20719
20762
|
chooseFile: string;
|
20720
20763
|
noFileChosen: string;
|
20721
|
-
|
20764
|
+
filePlaceholder: string;
|
20722
20765
|
confirmDelete: string;
|
20723
20766
|
keyDuplicationError: string;
|
20724
20767
|
addColumn: string;
|
@@ -20747,8 +20790,8 @@ declare module "localization/italian" {
|
|
20747
20790
|
signaturePlaceHolder: string;
|
20748
20791
|
chooseFileCaption: string;
|
20749
20792
|
takePhotoCaption: string;
|
20750
|
-
|
20751
|
-
|
20793
|
+
photoPlaceholder: string;
|
20794
|
+
fileOrPhotoPlaceholder: string;
|
20752
20795
|
replaceFileCaption: string;
|
20753
20796
|
removeFileCaption: string;
|
20754
20797
|
booleanCheckedLabel: string;
|
@@ -20816,7 +20859,7 @@ declare module "localization/japanese" {
|
|
20816
20859
|
loadingFile: string;
|
20817
20860
|
chooseFile: string;
|
20818
20861
|
noFileChosen: string;
|
20819
|
-
|
20862
|
+
filePlaceholder: string;
|
20820
20863
|
confirmDelete: string;
|
20821
20864
|
keyDuplicationError: string;
|
20822
20865
|
addColumn: string;
|
@@ -20845,8 +20888,8 @@ declare module "localization/japanese" {
|
|
20845
20888
|
signaturePlaceHolder: string;
|
20846
20889
|
chooseFileCaption: string;
|
20847
20890
|
takePhotoCaption: string;
|
20848
|
-
|
20849
|
-
|
20891
|
+
photoPlaceholder: string;
|
20892
|
+
fileOrPhotoPlaceholder: string;
|
20850
20893
|
replaceFileCaption: string;
|
20851
20894
|
removeFileCaption: string;
|
20852
20895
|
booleanCheckedLabel: string;
|
@@ -20914,7 +20957,7 @@ declare module "localization/kazakh" {
|
|
20914
20957
|
loadingFile: string;
|
20915
20958
|
chooseFile: string;
|
20916
20959
|
noFileChosen: string;
|
20917
|
-
|
20960
|
+
filePlaceholder: string;
|
20918
20961
|
confirmDelete: string;
|
20919
20962
|
keyDuplicationError: string;
|
20920
20963
|
addColumn: string;
|
@@ -20943,8 +20986,8 @@ declare module "localization/kazakh" {
|
|
20943
20986
|
signaturePlaceHolder: string;
|
20944
20987
|
chooseFileCaption: string;
|
20945
20988
|
takePhotoCaption: string;
|
20946
|
-
|
20947
|
-
|
20989
|
+
photoPlaceholder: string;
|
20990
|
+
fileOrPhotoPlaceholder: string;
|
20948
20991
|
replaceFileCaption: string;
|
20949
20992
|
removeFileCaption: string;
|
20950
20993
|
booleanCheckedLabel: string;
|
@@ -21012,7 +21055,7 @@ declare module "localization/korean" {
|
|
21012
21055
|
loadingFile: string;
|
21013
21056
|
chooseFile: string;
|
21014
21057
|
noFileChosen: string;
|
21015
|
-
|
21058
|
+
filePlaceholder: string;
|
21016
21059
|
confirmDelete: string;
|
21017
21060
|
keyDuplicationError: string;
|
21018
21061
|
addColumn: string;
|
@@ -21041,8 +21084,8 @@ declare module "localization/korean" {
|
|
21041
21084
|
signaturePlaceHolder: string;
|
21042
21085
|
chooseFileCaption: string;
|
21043
21086
|
takePhotoCaption: string;
|
21044
|
-
|
21045
|
-
|
21087
|
+
photoPlaceholder: string;
|
21088
|
+
fileOrPhotoPlaceholder: string;
|
21046
21089
|
replaceFileCaption: string;
|
21047
21090
|
removeFileCaption: string;
|
21048
21091
|
booleanCheckedLabel: string;
|
@@ -21110,7 +21153,7 @@ declare module "localization/latvian" {
|
|
21110
21153
|
loadingFile: string;
|
21111
21154
|
chooseFile: string;
|
21112
21155
|
noFileChosen: string;
|
21113
|
-
|
21156
|
+
filePlaceholder: string;
|
21114
21157
|
confirmDelete: string;
|
21115
21158
|
keyDuplicationError: string;
|
21116
21159
|
addColumn: string;
|
@@ -21139,8 +21182,8 @@ declare module "localization/latvian" {
|
|
21139
21182
|
signaturePlaceHolder: string;
|
21140
21183
|
chooseFileCaption: string;
|
21141
21184
|
takePhotoCaption: string;
|
21142
|
-
|
21143
|
-
|
21185
|
+
photoPlaceholder: string;
|
21186
|
+
fileOrPhotoPlaceholder: string;
|
21144
21187
|
replaceFileCaption: string;
|
21145
21188
|
removeFileCaption: string;
|
21146
21189
|
booleanCheckedLabel: string;
|
@@ -21208,7 +21251,7 @@ declare module "localization/lithuanian" {
|
|
21208
21251
|
loadingFile: string;
|
21209
21252
|
chooseFile: string;
|
21210
21253
|
noFileChosen: string;
|
21211
|
-
|
21254
|
+
filePlaceholder: string;
|
21212
21255
|
confirmDelete: string;
|
21213
21256
|
keyDuplicationError: string;
|
21214
21257
|
addColumn: string;
|
@@ -21237,8 +21280,8 @@ declare module "localization/lithuanian" {
|
|
21237
21280
|
signaturePlaceHolder: string;
|
21238
21281
|
chooseFileCaption: string;
|
21239
21282
|
takePhotoCaption: string;
|
21240
|
-
|
21241
|
-
|
21283
|
+
photoPlaceholder: string;
|
21284
|
+
fileOrPhotoPlaceholder: string;
|
21242
21285
|
replaceFileCaption: string;
|
21243
21286
|
removeFileCaption: string;
|
21244
21287
|
booleanCheckedLabel: string;
|
@@ -21306,7 +21349,7 @@ declare module "localization/macedonian" {
|
|
21306
21349
|
loadingFile: string;
|
21307
21350
|
chooseFile: string;
|
21308
21351
|
noFileChosen: string;
|
21309
|
-
|
21352
|
+
filePlaceholder: string;
|
21310
21353
|
confirmDelete: string;
|
21311
21354
|
keyDuplicationError: string;
|
21312
21355
|
addColumn: string;
|
@@ -21335,8 +21378,8 @@ declare module "localization/macedonian" {
|
|
21335
21378
|
signaturePlaceHolder: string;
|
21336
21379
|
chooseFileCaption: string;
|
21337
21380
|
takePhotoCaption: string;
|
21338
|
-
|
21339
|
-
|
21381
|
+
photoPlaceholder: string;
|
21382
|
+
fileOrPhotoPlaceholder: string;
|
21340
21383
|
replaceFileCaption: string;
|
21341
21384
|
removeFileCaption: string;
|
21342
21385
|
booleanCheckedLabel: string;
|
@@ -21404,7 +21447,7 @@ declare module "localization/malay" {
|
|
21404
21447
|
loadingFile: string;
|
21405
21448
|
chooseFile: string;
|
21406
21449
|
noFileChosen: string;
|
21407
|
-
|
21450
|
+
filePlaceholder: string;
|
21408
21451
|
confirmDelete: string;
|
21409
21452
|
keyDuplicationError: string;
|
21410
21453
|
addColumn: string;
|
@@ -21433,8 +21476,8 @@ declare module "localization/malay" {
|
|
21433
21476
|
signaturePlaceHolder: string;
|
21434
21477
|
chooseFileCaption: string;
|
21435
21478
|
takePhotoCaption: string;
|
21436
|
-
|
21437
|
-
|
21479
|
+
photoPlaceholder: string;
|
21480
|
+
fileOrPhotoPlaceholder: string;
|
21438
21481
|
replaceFileCaption: string;
|
21439
21482
|
removeFileCaption: string;
|
21440
21483
|
booleanCheckedLabel: string;
|
@@ -21502,7 +21545,7 @@ declare module "localization/norwegian" {
|
|
21502
21545
|
loadingFile: string;
|
21503
21546
|
chooseFile: string;
|
21504
21547
|
noFileChosen: string;
|
21505
|
-
|
21548
|
+
filePlaceholder: string;
|
21506
21549
|
confirmDelete: string;
|
21507
21550
|
keyDuplicationError: string;
|
21508
21551
|
addColumn: string;
|
@@ -21531,8 +21574,8 @@ declare module "localization/norwegian" {
|
|
21531
21574
|
signaturePlaceHolder: string;
|
21532
21575
|
chooseFileCaption: string;
|
21533
21576
|
takePhotoCaption: string;
|
21534
|
-
|
21535
|
-
|
21577
|
+
photoPlaceholder: string;
|
21578
|
+
fileOrPhotoPlaceholder: string;
|
21536
21579
|
replaceFileCaption: string;
|
21537
21580
|
removeFileCaption: string;
|
21538
21581
|
booleanCheckedLabel: string;
|
@@ -21600,7 +21643,7 @@ declare module "localization/persian" {
|
|
21600
21643
|
loadingFile: string;
|
21601
21644
|
chooseFile: string;
|
21602
21645
|
noFileChosen: string;
|
21603
|
-
|
21646
|
+
filePlaceholder: string;
|
21604
21647
|
confirmDelete: string;
|
21605
21648
|
keyDuplicationError: string;
|
21606
21649
|
addColumn: string;
|
@@ -21629,8 +21672,8 @@ declare module "localization/persian" {
|
|
21629
21672
|
signaturePlaceHolder: string;
|
21630
21673
|
chooseFileCaption: string;
|
21631
21674
|
takePhotoCaption: string;
|
21632
|
-
|
21633
|
-
|
21675
|
+
photoPlaceholder: string;
|
21676
|
+
fileOrPhotoPlaceholder: string;
|
21634
21677
|
replaceFileCaption: string;
|
21635
21678
|
removeFileCaption: string;
|
21636
21679
|
booleanCheckedLabel: string;
|
@@ -21698,7 +21741,7 @@ declare module "localization/polish" {
|
|
21698
21741
|
loadingFile: string;
|
21699
21742
|
chooseFile: string;
|
21700
21743
|
noFileChosen: string;
|
21701
|
-
|
21744
|
+
filePlaceholder: string;
|
21702
21745
|
confirmDelete: string;
|
21703
21746
|
keyDuplicationError: string;
|
21704
21747
|
addColumn: string;
|
@@ -21727,8 +21770,8 @@ declare module "localization/polish" {
|
|
21727
21770
|
signaturePlaceHolder: string;
|
21728
21771
|
chooseFileCaption: string;
|
21729
21772
|
takePhotoCaption: string;
|
21730
|
-
|
21731
|
-
|
21773
|
+
photoPlaceholder: string;
|
21774
|
+
fileOrPhotoPlaceholder: string;
|
21732
21775
|
replaceFileCaption: string;
|
21733
21776
|
removeFileCaption: string;
|
21734
21777
|
booleanCheckedLabel: string;
|
@@ -21796,7 +21839,7 @@ declare module "localization/portuguese" {
|
|
21796
21839
|
loadingFile: string;
|
21797
21840
|
chooseFile: string;
|
21798
21841
|
noFileChosen: string;
|
21799
|
-
|
21842
|
+
filePlaceholder: string;
|
21800
21843
|
confirmDelete: string;
|
21801
21844
|
keyDuplicationError: string;
|
21802
21845
|
addColumn: string;
|
@@ -21825,8 +21868,8 @@ declare module "localization/portuguese" {
|
|
21825
21868
|
signaturePlaceHolder: string;
|
21826
21869
|
chooseFileCaption: string;
|
21827
21870
|
takePhotoCaption: string;
|
21828
|
-
|
21829
|
-
|
21871
|
+
photoPlaceholder: string;
|
21872
|
+
fileOrPhotoPlaceholder: string;
|
21830
21873
|
replaceFileCaption: string;
|
21831
21874
|
removeFileCaption: string;
|
21832
21875
|
booleanCheckedLabel: string;
|
@@ -21897,7 +21940,7 @@ declare module "localization/portuguese-br" {
|
|
21897
21940
|
loadingFile: string;
|
21898
21941
|
chooseFile: string;
|
21899
21942
|
noFileChosen: string;
|
21900
|
-
|
21943
|
+
filePlaceholder: string;
|
21901
21944
|
confirmDelete: string;
|
21902
21945
|
keyDuplicationError: string;
|
21903
21946
|
addColumn: string;
|
@@ -21926,8 +21969,8 @@ declare module "localization/portuguese-br" {
|
|
21926
21969
|
signaturePlaceHolder: string;
|
21927
21970
|
chooseFileCaption: string;
|
21928
21971
|
takePhotoCaption: string;
|
21929
|
-
|
21930
|
-
|
21972
|
+
photoPlaceholder: string;
|
21973
|
+
fileOrPhotoPlaceholder: string;
|
21931
21974
|
replaceFileCaption: string;
|
21932
21975
|
removeFileCaption: string;
|
21933
21976
|
booleanCheckedLabel: string;
|
@@ -21998,7 +22041,7 @@ declare module "localization/russian" {
|
|
21998
22041
|
loadingFile: string;
|
21999
22042
|
chooseFile: string;
|
22000
22043
|
noFileChosen: string;
|
22001
|
-
|
22044
|
+
filePlaceholder: string;
|
22002
22045
|
confirmDelete: string;
|
22003
22046
|
keyDuplicationError: string;
|
22004
22047
|
addColumn: string;
|
@@ -22027,8 +22070,8 @@ declare module "localization/russian" {
|
|
22027
22070
|
signaturePlaceHolder: string;
|
22028
22071
|
chooseFileCaption: string;
|
22029
22072
|
takePhotoCaption: string;
|
22030
|
-
|
22031
|
-
|
22073
|
+
photoPlaceholder: string;
|
22074
|
+
fileOrPhotoPlaceholder: string;
|
22032
22075
|
replaceFileCaption: string;
|
22033
22076
|
removeFileCaption: string;
|
22034
22077
|
booleanCheckedLabel: string;
|
@@ -22096,7 +22139,7 @@ declare module "localization/serbian" {
|
|
22096
22139
|
loadingFile: string;
|
22097
22140
|
chooseFile: string;
|
22098
22141
|
noFileChosen: string;
|
22099
|
-
|
22142
|
+
filePlaceholder: string;
|
22100
22143
|
confirmDelete: string;
|
22101
22144
|
keyDuplicationError: string;
|
22102
22145
|
addColumn: string;
|
@@ -22125,8 +22168,8 @@ declare module "localization/serbian" {
|
|
22125
22168
|
signaturePlaceHolder: string;
|
22126
22169
|
chooseFileCaption: string;
|
22127
22170
|
takePhotoCaption: string;
|
22128
|
-
|
22129
|
-
|
22171
|
+
photoPlaceholder: string;
|
22172
|
+
fileOrPhotoPlaceholder: string;
|
22130
22173
|
replaceFileCaption: string;
|
22131
22174
|
removeFileCaption: string;
|
22132
22175
|
booleanCheckedLabel: string;
|
@@ -22194,7 +22237,7 @@ declare module "localization/simplified-chinese" {
|
|
22194
22237
|
loadingFile: string;
|
22195
22238
|
chooseFile: string;
|
22196
22239
|
noFileChosen: string;
|
22197
|
-
|
22240
|
+
filePlaceholder: string;
|
22198
22241
|
confirmDelete: string;
|
22199
22242
|
keyDuplicationError: string;
|
22200
22243
|
addColumn: string;
|
@@ -22223,8 +22266,8 @@ declare module "localization/simplified-chinese" {
|
|
22223
22266
|
signaturePlaceHolder: string;
|
22224
22267
|
chooseFileCaption: string;
|
22225
22268
|
takePhotoCaption: string;
|
22226
|
-
|
22227
|
-
|
22269
|
+
photoPlaceholder: string;
|
22270
|
+
fileOrPhotoPlaceholder: string;
|
22228
22271
|
replaceFileCaption: string;
|
22229
22272
|
removeFileCaption: string;
|
22230
22273
|
booleanCheckedLabel: string;
|
@@ -22292,7 +22335,7 @@ declare module "localization/slovak" {
|
|
22292
22335
|
loadingFile: string;
|
22293
22336
|
chooseFile: string;
|
22294
22337
|
noFileChosen: string;
|
22295
|
-
|
22338
|
+
filePlaceholder: string;
|
22296
22339
|
confirmDelete: string;
|
22297
22340
|
keyDuplicationError: string;
|
22298
22341
|
addColumn: string;
|
@@ -22321,8 +22364,8 @@ declare module "localization/slovak" {
|
|
22321
22364
|
signaturePlaceHolder: string;
|
22322
22365
|
chooseFileCaption: string;
|
22323
22366
|
takePhotoCaption: string;
|
22324
|
-
|
22325
|
-
|
22367
|
+
photoPlaceholder: string;
|
22368
|
+
fileOrPhotoPlaceholder: string;
|
22326
22369
|
replaceFileCaption: string;
|
22327
22370
|
removeFileCaption: string;
|
22328
22371
|
booleanCheckedLabel: string;
|
@@ -22390,7 +22433,7 @@ declare module "localization/spanish" {
|
|
22390
22433
|
loadingFile: string;
|
22391
22434
|
chooseFile: string;
|
22392
22435
|
noFileChosen: string;
|
22393
|
-
|
22436
|
+
filePlaceholder: string;
|
22394
22437
|
confirmDelete: string;
|
22395
22438
|
keyDuplicationError: string;
|
22396
22439
|
addColumn: string;
|
@@ -22419,8 +22462,8 @@ declare module "localization/spanish" {
|
|
22419
22462
|
signaturePlaceHolder: string;
|
22420
22463
|
chooseFileCaption: string;
|
22421
22464
|
takePhotoCaption: string;
|
22422
|
-
|
22423
|
-
|
22465
|
+
photoPlaceholder: string;
|
22466
|
+
fileOrPhotoPlaceholder: string;
|
22424
22467
|
replaceFileCaption: string;
|
22425
22468
|
removeFileCaption: string;
|
22426
22469
|
booleanCheckedLabel: string;
|
@@ -22488,7 +22531,7 @@ declare module "localization/swahili" {
|
|
22488
22531
|
loadingFile: string;
|
22489
22532
|
chooseFile: string;
|
22490
22533
|
noFileChosen: string;
|
22491
|
-
|
22534
|
+
filePlaceholder: string;
|
22492
22535
|
confirmDelete: string;
|
22493
22536
|
keyDuplicationError: string;
|
22494
22537
|
addColumn: string;
|
@@ -22517,8 +22560,8 @@ declare module "localization/swahili" {
|
|
22517
22560
|
signaturePlaceHolder: string;
|
22518
22561
|
chooseFileCaption: string;
|
22519
22562
|
takePhotoCaption: string;
|
22520
|
-
|
22521
|
-
|
22563
|
+
photoPlaceholder: string;
|
22564
|
+
fileOrPhotoPlaceholder: string;
|
22522
22565
|
replaceFileCaption: string;
|
22523
22566
|
removeFileCaption: string;
|
22524
22567
|
booleanCheckedLabel: string;
|
@@ -22586,7 +22629,7 @@ declare module "localization/swedish" {
|
|
22586
22629
|
loadingFile: string;
|
22587
22630
|
chooseFile: string;
|
22588
22631
|
noFileChosen: string;
|
22589
|
-
|
22632
|
+
filePlaceholder: string;
|
22590
22633
|
confirmDelete: string;
|
22591
22634
|
keyDuplicationError: string;
|
22592
22635
|
addColumn: string;
|
@@ -22615,8 +22658,8 @@ declare module "localization/swedish" {
|
|
22615
22658
|
signaturePlaceHolder: string;
|
22616
22659
|
chooseFileCaption: string;
|
22617
22660
|
takePhotoCaption: string;
|
22618
|
-
|
22619
|
-
|
22661
|
+
photoPlaceholder: string;
|
22662
|
+
fileOrPhotoPlaceholder: string;
|
22620
22663
|
replaceFileCaption: string;
|
22621
22664
|
removeFileCaption: string;
|
22622
22665
|
booleanCheckedLabel: string;
|
@@ -22748,7 +22791,7 @@ declare module "localization/thai" {
|
|
22748
22791
|
loadingFile: string;
|
22749
22792
|
chooseFile: string;
|
22750
22793
|
noFileChosen: string;
|
22751
|
-
|
22794
|
+
filePlaceholder: string;
|
22752
22795
|
confirmDelete: string;
|
22753
22796
|
keyDuplicationError: string;
|
22754
22797
|
addColumn: string;
|
@@ -22777,8 +22820,8 @@ declare module "localization/thai" {
|
|
22777
22820
|
signaturePlaceHolder: string;
|
22778
22821
|
chooseFileCaption: string;
|
22779
22822
|
takePhotoCaption: string;
|
22780
|
-
|
22781
|
-
|
22823
|
+
photoPlaceholder: string;
|
22824
|
+
fileOrPhotoPlaceholder: string;
|
22782
22825
|
replaceFileCaption: string;
|
22783
22826
|
removeFileCaption: string;
|
22784
22827
|
booleanCheckedLabel: string;
|
@@ -22846,7 +22889,7 @@ declare module "localization/traditional-chinese" {
|
|
22846
22889
|
loadingFile: string;
|
22847
22890
|
chooseFile: string;
|
22848
22891
|
noFileChosen: string;
|
22849
|
-
|
22892
|
+
filePlaceholder: string;
|
22850
22893
|
confirmDelete: string;
|
22851
22894
|
keyDuplicationError: string;
|
22852
22895
|
addColumn: string;
|
@@ -22875,8 +22918,8 @@ declare module "localization/traditional-chinese" {
|
|
22875
22918
|
signaturePlaceHolder: string;
|
22876
22919
|
chooseFileCaption: string;
|
22877
22920
|
takePhotoCaption: string;
|
22878
|
-
|
22879
|
-
|
22921
|
+
photoPlaceholder: string;
|
22922
|
+
fileOrPhotoPlaceholder: string;
|
22880
22923
|
replaceFileCaption: string;
|
22881
22924
|
removeFileCaption: string;
|
22882
22925
|
booleanCheckedLabel: string;
|
@@ -22944,7 +22987,7 @@ declare module "localization/turkish" {
|
|
22944
22987
|
loadingFile: string;
|
22945
22988
|
chooseFile: string;
|
22946
22989
|
noFileChosen: string;
|
22947
|
-
|
22990
|
+
filePlaceholder: string;
|
22948
22991
|
confirmDelete: string;
|
22949
22992
|
keyDuplicationError: string;
|
22950
22993
|
addColumn: string;
|
@@ -22973,8 +23016,8 @@ declare module "localization/turkish" {
|
|
22973
23016
|
signaturePlaceHolder: string;
|
22974
23017
|
chooseFileCaption: string;
|
22975
23018
|
takePhotoCaption: string;
|
22976
|
-
|
22977
|
-
|
23019
|
+
photoPlaceholder: string;
|
23020
|
+
fileOrPhotoPlaceholder: string;
|
22978
23021
|
replaceFileCaption: string;
|
22979
23022
|
removeFileCaption: string;
|
22980
23023
|
booleanCheckedLabel: string;
|
@@ -23042,7 +23085,7 @@ declare module "localization/ukrainian" {
|
|
23042
23085
|
loadingFile: string;
|
23043
23086
|
chooseFile: string;
|
23044
23087
|
noFileChosen: string;
|
23045
|
-
|
23088
|
+
filePlaceholder: string;
|
23046
23089
|
confirmDelete: string;
|
23047
23090
|
keyDuplicationError: string;
|
23048
23091
|
addColumn: string;
|
@@ -23071,8 +23114,8 @@ declare module "localization/ukrainian" {
|
|
23071
23114
|
signaturePlaceHolder: string;
|
23072
23115
|
chooseFileCaption: string;
|
23073
23116
|
takePhotoCaption: string;
|
23074
|
-
|
23075
|
-
|
23117
|
+
photoPlaceholder: string;
|
23118
|
+
fileOrPhotoPlaceholder: string;
|
23076
23119
|
replaceFileCaption: string;
|
23077
23120
|
removeFileCaption: string;
|
23078
23121
|
booleanCheckedLabel: string;
|
@@ -23140,7 +23183,7 @@ declare module "localization/vietnamese" {
|
|
23140
23183
|
loadingFile: string;
|
23141
23184
|
chooseFile: string;
|
23142
23185
|
noFileChosen: string;
|
23143
|
-
|
23186
|
+
filePlaceholder: string;
|
23144
23187
|
confirmDelete: string;
|
23145
23188
|
keyDuplicationError: string;
|
23146
23189
|
addColumn: string;
|
@@ -23169,8 +23212,8 @@ declare module "localization/vietnamese" {
|
|
23169
23212
|
signaturePlaceHolder: string;
|
23170
23213
|
chooseFileCaption: string;
|
23171
23214
|
takePhotoCaption: string;
|
23172
|
-
|
23173
|
-
|
23215
|
+
photoPlaceholder: string;
|
23216
|
+
fileOrPhotoPlaceholder: string;
|
23174
23217
|
replaceFileCaption: string;
|
23175
23218
|
removeFileCaption: string;
|
23176
23219
|
booleanCheckedLabel: string;
|
@@ -23238,7 +23281,7 @@ declare module "localization/welsh" {
|
|
23238
23281
|
loadingFile: string;
|
23239
23282
|
chooseFile: string;
|
23240
23283
|
noFileChosen: string;
|
23241
|
-
|
23284
|
+
filePlaceholder: string;
|
23242
23285
|
confirmDelete: string;
|
23243
23286
|
keyDuplicationError: string;
|
23244
23287
|
addColumn: string;
|
@@ -23267,8 +23310,8 @@ declare module "localization/welsh" {
|
|
23267
23310
|
signaturePlaceHolder: string;
|
23268
23311
|
chooseFileCaption: string;
|
23269
23312
|
takePhotoCaption: string;
|
23270
|
-
|
23271
|
-
|
23313
|
+
photoPlaceholder: string;
|
23314
|
+
fileOrPhotoPlaceholder: string;
|
23272
23315
|
replaceFileCaption: string;
|
23273
23316
|
removeFileCaption: string;
|
23274
23317
|
booleanCheckedLabel: string;
|
@@ -23336,7 +23379,7 @@ declare module "localization/telugu" {
|
|
23336
23379
|
loadingFile: string;
|
23337
23380
|
chooseFile: string;
|
23338
23381
|
noFileChosen: string;
|
23339
|
-
|
23382
|
+
filePlaceholder: string;
|
23340
23383
|
confirmDelete: string;
|
23341
23384
|
keyDuplicationError: string;
|
23342
23385
|
addColumn: string;
|
@@ -23365,8 +23408,8 @@ declare module "localization/telugu" {
|
|
23365
23408
|
signaturePlaceHolder: string;
|
23366
23409
|
chooseFileCaption: string;
|
23367
23410
|
takePhotoCaption: string;
|
23368
|
-
|
23369
|
-
|
23411
|
+
photoPlaceholder: string;
|
23412
|
+
fileOrPhotoPlaceholder: string;
|
23370
23413
|
replaceFileCaption: string;
|
23371
23414
|
removeFileCaption: string;
|
23372
23415
|
booleanCheckedLabel: string;
|
@@ -24107,6 +24150,7 @@ declare module "react/reactquestion_ranking" {
|
|
24107
24150
|
protected get question(): any;
|
24108
24151
|
protected get unrankedItem(): any;
|
24109
24152
|
protected get item(): any;
|
24153
|
+
protected renderEmptyIcon(): JSX.Element;
|
24110
24154
|
protected renderElement(): JSX.Element;
|
24111
24155
|
}
|
24112
24156
|
}
|
@@ -24844,7 +24888,7 @@ declare module "react/components/skeleton" {
|
|
24844
24888
|
render(): JSX.Element;
|
24845
24889
|
}
|
24846
24890
|
}
|
24847
|
-
declare module "react/components/
|
24891
|
+
declare module "react/components/header" {
|
24848
24892
|
import React from "react";
|
24849
24893
|
import { Base, SurveyModel, Cover, CoverCell } from "entries/core";
|
24850
24894
|
import { SurveyElementBase } from "react/reactquestion_element";
|
@@ -24852,12 +24896,17 @@ declare module "react/components/cover" {
|
|
24852
24896
|
survey: SurveyModel;
|
24853
24897
|
model: T;
|
24854
24898
|
}
|
24855
|
-
export class
|
24899
|
+
export class HeaderMobile extends React.Component<any, any> {
|
24900
|
+
get model(): Cover;
|
24901
|
+
private renderLogoImage;
|
24902
|
+
render(): JSX.Element | null;
|
24903
|
+
}
|
24904
|
+
export class HeaderCell extends React.Component<any, any> {
|
24856
24905
|
get model(): CoverCell;
|
24857
24906
|
private renderLogoImage;
|
24858
24907
|
render(): JSX.Element | null;
|
24859
24908
|
}
|
24860
|
-
export class
|
24909
|
+
export class Header extends SurveyElementBase<ILayoutElementProps<Cover>, any> {
|
24861
24910
|
get model(): Cover;
|
24862
24911
|
protected getStateElement(): Base;
|
24863
24912
|
renderElement(): JSX.Element | null;
|
@@ -24952,7 +25001,7 @@ declare module "entries/react-ui-model" {
|
|
24952
25001
|
export { NotifierComponent } from "react/components/notifier";
|
24953
25002
|
export { ComponentsContainer } from "react/components/components-container";
|
24954
25003
|
export { CharacterCounterComponent } from "react/components/character-counter";
|
24955
|
-
export * from "react/components/
|
25004
|
+
export * from "react/components/header";
|
24956
25005
|
export { SurveyLocStringViewer } from "react/string-viewer";
|
24957
25006
|
export { SurveyLocStringEditor } from "react/string-editor";
|
24958
25007
|
export { LoadingIndicatorComponent } from "react/components/loading-indicator";
|