survey-react 1.9.139 → 1.10.2
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 +372 -53
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +2 -1
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +1 -1
- package/survey.css.map +1 -1
- package/survey.min.css +1 -1
- package/survey.react.d.ts +216 -31
- package/survey.react.js +1070 -413
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/survey.react.d.ts
CHANGED
@@ -139,6 +139,7 @@ declare module "localization/english" {
|
|
139
139
|
savingData: string;
|
140
140
|
savingDataError: string;
|
141
141
|
savingDataSuccess: string;
|
142
|
+
savingExceedSize: string;
|
142
143
|
saveAgainButton: string;
|
143
144
|
timerMin: string;
|
144
145
|
timerSec: string;
|
@@ -263,6 +264,7 @@ declare module "surveyStrings" {
|
|
263
264
|
savingData: string;
|
264
265
|
savingDataError: string;
|
265
266
|
savingDataSuccess: string;
|
267
|
+
savingExceedSize: string;
|
266
268
|
saveAgainButton: string;
|
267
269
|
timerMin: string;
|
268
270
|
timerSec: string;
|
@@ -696,28 +698,31 @@ declare module "utils/animation" {
|
|
696
698
|
}
|
697
699
|
export class AnimationUtils {
|
698
700
|
private getMsFromRule;
|
701
|
+
private reflow;
|
699
702
|
private getAnimationsCount;
|
700
703
|
private getAnimationDuration;
|
701
704
|
private cancelQueue;
|
705
|
+
private addCancelCallback;
|
706
|
+
private removeCancelCallback;
|
702
707
|
protected onAnimationEnd(element: HTMLElement, callback: (isCancel?: boolean) => void, options: AnimationOptions): void;
|
703
708
|
protected beforeAnimationRun(element: HTMLElement, options: AnimationOptions | AnimationOptions): void;
|
704
|
-
protected
|
705
|
-
protected
|
709
|
+
protected runAnimation(element: HTMLElement, options: AnimationOptions, callback: (isCancel?: boolean) => void): void;
|
710
|
+
protected clearHtmlElement(element: HTMLElement, options: AnimationOptions): void;
|
711
|
+
protected onNextRender(callback: () => void, runEarly?: () => boolean, isCancel?: boolean): void;
|
706
712
|
cancel(): void;
|
707
713
|
}
|
708
714
|
export class AnimationPropertyUtils extends AnimationUtils {
|
709
|
-
onEnter(
|
710
|
-
onLeave(
|
715
|
+
onEnter(options: IAnimationConsumer): void;
|
716
|
+
onLeave(options: IAnimationConsumer, callback: () => void): void;
|
711
717
|
}
|
712
718
|
export class AnimationGroupUtils<T> extends AnimationUtils {
|
713
|
-
|
714
|
-
onLeave(getElement: (el: T) => HTMLElement, callback: () => void, getOptions: (el: T) => AnimationOptions, elements: Array<T>): void;
|
719
|
+
runGroupAnimation(options: IAnimationConsumer<[T]>, addedElements: Array<T>, removedElements: Array<T>, callback?: () => void): void;
|
715
720
|
}
|
716
|
-
abstract class AnimationProperty<T, S extends Array<any> = []> {
|
721
|
+
export abstract class AnimationProperty<T, S extends Array<any> = []> {
|
717
722
|
protected animationOptions: IAnimationConsumer<S>;
|
718
|
-
protected update: (val: T) => void;
|
723
|
+
protected update: (val: T, isTempUpdate?: boolean) => void;
|
719
724
|
protected getCurrentValue: () => T;
|
720
|
-
constructor(animationOptions: IAnimationConsumer<S>, update: (val: T) => void, getCurrentValue: () => T);
|
725
|
+
constructor(animationOptions: IAnimationConsumer<S>, update: (val: T, isTempUpdate?: boolean) => void, getCurrentValue: () => T);
|
721
726
|
protected animation: AnimationUtils;
|
722
727
|
protected abstract _sync(newValue: T): void;
|
723
728
|
private _debouncedSync;
|
@@ -732,6 +737,12 @@ declare module "utils/animation" {
|
|
732
737
|
protected animation: AnimationGroupUtils<T>;
|
733
738
|
protected _sync(newValue: Array<T>): void;
|
734
739
|
}
|
740
|
+
export class AnimationTab<T> extends AnimationProperty<Array<T>, [T]> {
|
741
|
+
protected mergeValues?: (newValue: Array<T>, oldValue: Array<T>) => Array<T>;
|
742
|
+
protected animation: AnimationGroupUtils<T>;
|
743
|
+
constructor(animationOptions: IAnimationConsumer<[T]>, update: (val: Array<T>, isTempUpdate?: boolean) => void, getCurrentValue: () => Array<T>, mergeValues?: (newValue: Array<T>, oldValue: Array<T>) => Array<T>);
|
744
|
+
protected _sync(newValue: [T]): void;
|
745
|
+
}
|
735
746
|
}
|
736
747
|
declare module "popup-view-model" {
|
737
748
|
import { Base, EventBase } from "base";
|
@@ -798,6 +809,8 @@ declare module "popup-view-model" {
|
|
798
809
|
onKeyDown(event: any): void;
|
799
810
|
private trapFocus;
|
800
811
|
switchFocus(): void;
|
812
|
+
protected _isPositionSetValue: boolean;
|
813
|
+
get isPositionSet(): boolean;
|
801
814
|
updateOnShowing(): void;
|
802
815
|
updateOnHiding(): void;
|
803
816
|
private focusContainer;
|
@@ -959,10 +972,10 @@ declare module "list" {
|
|
959
972
|
export class ListModel<T extends BaseAction = Action> extends ActionContainer<T> {
|
960
973
|
onSelectionChanged: (item: T, ...params: any[]) => void;
|
961
974
|
allowSelection: boolean;
|
962
|
-
private onFilterStringChangedCallback?;
|
963
975
|
elementId?: string;
|
964
976
|
private listContainerHtmlElement;
|
965
977
|
private loadingIndicatorValue;
|
978
|
+
private onFilterStringChangedCallback?;
|
966
979
|
searchEnabled: boolean;
|
967
980
|
showFilter: boolean;
|
968
981
|
forceShowFilter: boolean;
|
@@ -985,7 +998,7 @@ declare module "list" {
|
|
985
998
|
private get shouldProcessFilter();
|
986
999
|
private onFilterStringChanged;
|
987
1000
|
private scrollToItem;
|
988
|
-
constructor(items: Array<IAction>, onSelectionChanged: (item: T, ...params: any[]) => void, allowSelection: boolean, selectedItem?: IAction,
|
1001
|
+
constructor(items: Array<IAction>, onSelectionChanged: (item: T, ...params: any[]) => void, allowSelection: boolean, selectedItem?: IAction, elementId?: string);
|
989
1002
|
private onTextSearchCallback;
|
990
1003
|
setOnFilterStringChangedCallback(callback: (text: string) => void): void;
|
991
1004
|
setOnTextSearchCallback(callback: (item: T, textToSearch: string) => boolean): void;
|
@@ -1516,7 +1529,11 @@ declare module "defaultCss/defaultV2Css" {
|
|
1516
1529
|
footer: string;
|
1517
1530
|
panelFooter: string;
|
1518
1531
|
footerButtonsContainer: string;
|
1532
|
+
panelsContainer: string;
|
1519
1533
|
panelWrapperInRow: string;
|
1534
|
+
panelWrapperFadeIn: string;
|
1535
|
+
panelWrapperFadeOut: string;
|
1536
|
+
panelWrapperList: string;
|
1520
1537
|
progressBtnIcon: string;
|
1521
1538
|
noEntriesPlaceholder: string;
|
1522
1539
|
compact: string;
|
@@ -1900,6 +1917,8 @@ declare module "defaultCss/defaultV2Css" {
|
|
1900
1917
|
errorsCellBottom: string;
|
1901
1918
|
itemCell: string;
|
1902
1919
|
row: string;
|
1920
|
+
rowFadeIn: string;
|
1921
|
+
rowFadeOut: string;
|
1903
1922
|
expandedRow: string;
|
1904
1923
|
rowHasPanel: string;
|
1905
1924
|
rowHasEndActions: string;
|
@@ -1938,6 +1957,8 @@ declare module "defaultCss/defaultV2Css" {
|
|
1938
1957
|
content: string;
|
1939
1958
|
cell: string;
|
1940
1959
|
row: string;
|
1960
|
+
rowFadeIn: string;
|
1961
|
+
rowFadeOut: string;
|
1941
1962
|
rowHasPanel: string;
|
1942
1963
|
rowHasEndActions: string;
|
1943
1964
|
expandedRow: string;
|
@@ -2381,7 +2402,8 @@ declare module "trigger" {
|
|
2381
2402
|
set setToName(val: string);
|
2382
2403
|
get runExpression(): string;
|
2383
2404
|
set runExpression(val: string);
|
2384
|
-
protected
|
2405
|
+
protected canBeExecuted(isOnNextPage: boolean): boolean;
|
2406
|
+
protected onSuccess(values: HashTable<any>, properties: HashTable<any>): boolean;
|
2385
2407
|
private onCompleteRunExpression;
|
2386
2408
|
}
|
2387
2409
|
/**
|
@@ -3090,6 +3112,7 @@ declare module "panel" {
|
|
3090
3112
|
get id(): string;
|
3091
3113
|
protected equalsCore(obj: Base): boolean;
|
3092
3114
|
get elements(): Array<IElement>;
|
3115
|
+
protected getIsAnimationAllowed(): boolean;
|
3093
3116
|
private getVisibleElementsAnimationOptions;
|
3094
3117
|
visibleElementsAnimation: AnimationGroup<IElement>;
|
3095
3118
|
set visibleElements(val: Array<IElement>);
|
@@ -3146,6 +3169,8 @@ declare module "panel" {
|
|
3146
3169
|
get _showDescription(): boolean;
|
3147
3170
|
localeChanged(): void;
|
3148
3171
|
locStrsChanged(): void;
|
3172
|
+
getMarkdownHtml(text: string, name: string): string;
|
3173
|
+
get locNavigationTitle(): LocalizableString;
|
3149
3174
|
get renderedNavigationTitle(): string;
|
3150
3175
|
/**
|
3151
3176
|
* Returns a character or text string that indicates a required panel/page.
|
@@ -3822,10 +3847,12 @@ declare module "question_file" {
|
|
3822
3847
|
set takePhotoCaption(val: string);
|
3823
3848
|
get locTakePhotoCaption(): LocalizableString;
|
3824
3849
|
replaceButtonCaption: string;
|
3825
|
-
clearButtonCaption: string;
|
3826
3850
|
removeFileCaption: string;
|
3827
3851
|
loadingFileTitle: string;
|
3828
3852
|
chooseFileTitle: string;
|
3853
|
+
get clearButtonCaption(): string;
|
3854
|
+
set clearButtonCaption(value: string);
|
3855
|
+
get locClearButtonCaption(): LocalizableString;
|
3829
3856
|
/**
|
3830
3857
|
* 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"`.
|
3831
3858
|
* @see filePlaceholder
|
@@ -5469,6 +5496,7 @@ declare module "question_matrixdropdownrendered" {
|
|
5469
5496
|
isGhostRow: boolean;
|
5470
5497
|
isAdditionalClasses: boolean;
|
5471
5498
|
visible: boolean;
|
5499
|
+
onVisibilityChangedCallback: () => void;
|
5472
5500
|
hasEndActions: boolean;
|
5473
5501
|
row: MatrixDropdownRowModelBase;
|
5474
5502
|
isErrorsRow: boolean;
|
@@ -5483,6 +5511,9 @@ declare module "question_matrixdropdownrendered" {
|
|
5483
5511
|
"data-sv-drop-target-matrix-row": string;
|
5484
5512
|
};
|
5485
5513
|
get className(): string;
|
5514
|
+
private rootElement;
|
5515
|
+
setRootElement(val: HTMLTableRowElement): void;
|
5516
|
+
getRootElement(): HTMLTableRowElement;
|
5486
5517
|
}
|
5487
5518
|
export class QuestionMatrixDropdownRenderedErrorRow extends QuestionMatrixDropdownRenderedRow {
|
5488
5519
|
isErrorsRow: boolean;
|
@@ -5500,6 +5531,13 @@ declare module "question_matrixdropdownrendered" {
|
|
5500
5531
|
private cssClasses;
|
5501
5532
|
renderedRowsChangedCallback: () => void;
|
5502
5533
|
rows: Array<QuestionMatrixDropdownRenderedRow>;
|
5534
|
+
protected getIsAnimationAllowed(): boolean;
|
5535
|
+
private getRenderedRowsAnimationOptions;
|
5536
|
+
private _renderedRows;
|
5537
|
+
updateRenderedRows(): void;
|
5538
|
+
private renderedRowsAnimation;
|
5539
|
+
get renderedRows(): Array<QuestionMatrixDropdownRenderedRow>;
|
5540
|
+
set renderedRows(val: Array<QuestionMatrixDropdownRenderedRow>);
|
5503
5541
|
constructor(matrix: QuestionMatrixDropdownModelBase);
|
5504
5542
|
get showTable(): boolean;
|
5505
5543
|
get showHeader(): boolean;
|
@@ -6085,6 +6123,7 @@ declare module "question_paneldynamic" {
|
|
6085
6123
|
import { IAction } from "actions/action";
|
6086
6124
|
import { AdaptiveActionContainer } from "actions/adaptive-container";
|
6087
6125
|
import { ITheme } from "themes";
|
6126
|
+
import { AnimationProperty } from "utils/animation";
|
6088
6127
|
export interface IQuestionPanelDynamicData {
|
6089
6128
|
getItemIndex(item: ISurveyData): number;
|
6090
6129
|
getVisibleItemIndex(item: ISurveyData): number;
|
@@ -6268,6 +6307,17 @@ declare module "question_paneldynamic" {
|
|
6268
6307
|
*/
|
6269
6308
|
get currentPanel(): PanelModel;
|
6270
6309
|
set currentPanel(val: PanelModel);
|
6310
|
+
private _renderedPanels;
|
6311
|
+
private updateRenderedPanels;
|
6312
|
+
set renderedPanels(val: Array<PanelModel>);
|
6313
|
+
get renderedPanels(): Array<PanelModel>;
|
6314
|
+
private isPanelsAnimationRunning;
|
6315
|
+
private getPanelsAnimationOptions;
|
6316
|
+
private _panelsAnimations;
|
6317
|
+
private disablePanelsAnimations;
|
6318
|
+
private enablePanelsAnimations;
|
6319
|
+
private updatePanelsAnimation;
|
6320
|
+
get panelsAnimation(): AnimationProperty<Array<PanelModel>, [PanelModel]>;
|
6271
6321
|
onHidingContent(): void;
|
6272
6322
|
/**
|
6273
6323
|
* Specifies whether to display a confirmation dialog when a respondent wants to delete a panel.
|
@@ -6575,6 +6625,8 @@ declare module "question_paneldynamic" {
|
|
6575
6625
|
* @see canAddPanel
|
6576
6626
|
*/
|
6577
6627
|
addPanelUI(): PanelModel;
|
6628
|
+
private focusNewPanelCallback;
|
6629
|
+
private focusNewPanel;
|
6578
6630
|
/**
|
6579
6631
|
* Adds a new panel based on the [template](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#template).
|
6580
6632
|
* @param index *(Optional)* An index at which to insert the new panel. `undefined` adds the panel to the end or inserts it after the current panel if [`renderMode`](https://surveyjs.io/form-library/documentation/api-reference/dynamic-panel-model#renderMode) is `"tab"`. A negative index (for instance, -1) adds the panel to the end in all cases, regardless of the `renderMode` value.
|
@@ -6613,6 +6665,7 @@ declare module "question_paneldynamic" {
|
|
6613
6665
|
* @see panels
|
6614
6666
|
* @see template
|
6615
6667
|
*/
|
6668
|
+
private removedPanelIndex;
|
6616
6669
|
removePanel(value: any): void;
|
6617
6670
|
private getVisualPanelIndex;
|
6618
6671
|
private getPanelIndexById;
|
@@ -6698,6 +6751,7 @@ declare module "question_paneldynamic" {
|
|
6698
6751
|
getShowNoEntriesPlaceholder(): boolean;
|
6699
6752
|
needResponsiveWidth(): boolean;
|
6700
6753
|
private additionalTitleToolbarValue;
|
6754
|
+
get hasAdditionalTitleToolbar(): boolean;
|
6701
6755
|
protected getAdditionalTitleToolbar(): AdaptiveActionContainer | null;
|
6702
6756
|
private footerToolbarValue;
|
6703
6757
|
get footerToolbar(): ActionContainer;
|
@@ -7949,7 +8003,6 @@ declare module "page" {
|
|
7949
8003
|
*/
|
7950
8004
|
get navigationTitle(): string;
|
7951
8005
|
set navigationTitle(val: string);
|
7952
|
-
get locNavigationTitle(): LocalizableString;
|
7953
8006
|
/**
|
7954
8007
|
* Explanatory text displayed under a navigation button in the progress bar. Applies when the [progress bar is visible](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#showProgressBar), `SurveyModel`'s [`progressBarType`](https://surveyjs.io/form-library/documentation/surveymodel#progressBarType) is set to `"pages"`, and [`progressBarShowPageTitles`](https://surveyjs.io/form-library/documentation/surveymodel#progressBarShowPageTitles) is `true`.
|
7955
8008
|
*/
|
@@ -7957,7 +8010,6 @@ declare module "page" {
|
|
7957
8010
|
set navigationDescription(val: string);
|
7958
8011
|
get locNavigationDescription(): LocalizableString;
|
7959
8012
|
navigationLocStrChanged(): void;
|
7960
|
-
get renderedNavigationTitle(): string;
|
7961
8013
|
get passed(): boolean;
|
7962
8014
|
set passed(val: boolean);
|
7963
8015
|
protected removeFromParent(): void;
|
@@ -8039,15 +8091,19 @@ declare module "dxSurveyService" {
|
|
8039
8091
|
* The class contains methods to work with api.surveyjs.io service.
|
8040
8092
|
*/
|
8041
8093
|
export class dxSurveyService {
|
8094
|
+
locale: string;
|
8042
8095
|
static get serviceUrl(): string;
|
8043
8096
|
static set serviceUrl(val: string);
|
8044
|
-
constructor();
|
8045
8097
|
loadSurvey(surveyId: string, onLoad: (success: boolean, result: string, response: any) => void): void;
|
8046
8098
|
getSurveyJsonAndIsCompleted(surveyId: string, clientId: string, onLoad: (success: boolean, surveyJson: any, result: string, response: any) => void): void;
|
8099
|
+
canSendResult(result: JSON): boolean;
|
8100
|
+
get isSurveJSIOService(): boolean;
|
8047
8101
|
sendResult(postId: string, result: JSON, onSendResult: (success: boolean, response: any, request?: any) => void, clientId?: string, isPartialCompleted?: boolean): void;
|
8102
|
+
protected sendResultCore(postId: string, result: JSON, onSendResult: (success: boolean, response: any, request?: any) => void, clientId?: string, isPartialCompleted?: boolean): void;
|
8048
8103
|
sendFile(postId: string, file: File, onSendFile: (success: boolean, response: any) => void): void;
|
8049
8104
|
getResult(resultId: string, name: string, onGetResult: (success: boolean, data: any, dataList: Array<any>, response: any) => void): void;
|
8050
8105
|
isCompleted(resultId: string, clientId: string, onIsCompleted: (success: boolean, result: string, response: any) => void): void;
|
8106
|
+
private get serviceUrl();
|
8051
8107
|
}
|
8052
8108
|
}
|
8053
8109
|
declare module "stylesmanager" {
|
@@ -8354,6 +8410,7 @@ declare module "mask/mask_utils" {
|
|
8354
8410
|
getMaskedValue(src: any): string;
|
8355
8411
|
getUnmaskedValue(src: string): any;
|
8356
8412
|
processInput(args: ITextInputParams): IMaskedInputResult;
|
8413
|
+
getTextAlignment(): "left" | "right" | "auto";
|
8357
8414
|
}
|
8358
8415
|
}
|
8359
8416
|
declare module "mask/mask_base" {
|
@@ -8380,6 +8437,7 @@ declare module "mask/mask_base" {
|
|
8380
8437
|
processInput(args: ITextInputParams): IMaskedInputResult;
|
8381
8438
|
getUnmaskedValue(src: string): any;
|
8382
8439
|
getMaskedValue(src: any): string;
|
8440
|
+
getTextAlignment(): "left" | "right" | "auto";
|
8383
8441
|
}
|
8384
8442
|
}
|
8385
8443
|
declare module "mask/input_element_adapter" {
|
@@ -11932,6 +11990,7 @@ declare module "survey" {
|
|
11932
11990
|
onScroll(): void;
|
11933
11991
|
addScrollEventListener(): void;
|
11934
11992
|
removeScrollEventListener(): void;
|
11993
|
+
questionErrorComponent: string;
|
11935
11994
|
}
|
11936
11995
|
}
|
11937
11996
|
declare module "knockout/kobase" {
|
@@ -12070,7 +12129,7 @@ declare module "survey-element" {
|
|
12070
12129
|
isDragMe: boolean;
|
12071
12130
|
readOnlyChangedCallback: () => void;
|
12072
12131
|
static ScrollElementToTop(elementId: string, scrollIfVisible?: boolean): boolean;
|
12073
|
-
|
12132
|
+
static ScrollElementToViewCore(el: HTMLElement, checkLeft: boolean, scrollIfVisible?: boolean, scrollIntoViewOptions?: ScrollIntoViewOptions): boolean;
|
12074
12133
|
static GetFirstNonTextElement(elements: any, removeSpaces?: boolean): any;
|
12075
12134
|
static FocusElement(elementId: string): boolean;
|
12076
12135
|
private static focusElementCore;
|
@@ -12382,11 +12441,13 @@ declare module "survey-element" {
|
|
12382
12441
|
get clickTitleFunction(): any;
|
12383
12442
|
protected needClickTitleFunction(): boolean;
|
12384
12443
|
protected processTitleClick(): void;
|
12444
|
+
get hasAdditionalTitleToolbar(): boolean;
|
12385
12445
|
get additionalTitleToolbar(): ActionContainer;
|
12386
12446
|
protected getAdditionalTitleToolbar(): ActionContainer | null;
|
12387
12447
|
protected getCssTitle(cssClasses: any): string;
|
12388
12448
|
get isDisabledStyle(): boolean;
|
12389
12449
|
get isReadOnlyStyle(): boolean;
|
12450
|
+
protected getIsDisableAndReadOnlyStyles(itemReadOnly: boolean): Array<boolean>;
|
12390
12451
|
get isPreviewStyle(): boolean;
|
12391
12452
|
localeChanged(): void;
|
12392
12453
|
private wrapperElement?;
|
@@ -12400,9 +12461,7 @@ declare module "survey-element" {
|
|
12400
12461
|
private animationCollapsed;
|
12401
12462
|
set renderedIsExpanded(val: boolean);
|
12402
12463
|
get renderedIsExpanded(): boolean;
|
12403
|
-
|
12404
|
-
get animationAllowed(): boolean;
|
12405
|
-
set animationAllowed(val: boolean);
|
12464
|
+
protected getIsAnimationAllowed(): boolean;
|
12406
12465
|
dispose(): void;
|
12407
12466
|
}
|
12408
12467
|
}
|
@@ -13032,6 +13091,7 @@ declare module "question" {
|
|
13032
13091
|
set value(newValue: any);
|
13033
13092
|
get hasFilteredValue(): boolean;
|
13034
13093
|
getFilteredValue(): any;
|
13094
|
+
getFilteredName(): any;
|
13035
13095
|
get valueForSurvey(): any;
|
13036
13096
|
/**
|
13037
13097
|
* Sets the question's `value` and `comment` properties to `undefined`.
|
@@ -15216,6 +15276,11 @@ declare module "base" {
|
|
15216
15276
|
protected copyCssClasses(dest: any, source: any): void;
|
15217
15277
|
private getValueInLowCase;
|
15218
15278
|
getElementsInDesign(includeHidden?: boolean): Array<IElement>;
|
15279
|
+
get animationAllowed(): boolean;
|
15280
|
+
protected getIsAnimationAllowed(): boolean;
|
15281
|
+
private animationAllowedLock;
|
15282
|
+
blockAnimations(): void;
|
15283
|
+
releaseAnimations(): void;
|
15219
15284
|
}
|
15220
15285
|
export class ArrayChanges<T = any> {
|
15221
15286
|
index: number;
|
@@ -16037,6 +16102,7 @@ declare module "dropdownListModel" {
|
|
16037
16102
|
get filterStringEnabled(): boolean;
|
16038
16103
|
get inputMode(): "none" | "text";
|
16039
16104
|
setSearchEnabled(newValue: boolean): void;
|
16105
|
+
setChoicesLazyLoadEnabled(newValue: boolean): void;
|
16040
16106
|
updateItems(): void;
|
16041
16107
|
onClick(event: any): void;
|
16042
16108
|
chevronPointerDown(event: any): void;
|
@@ -16240,6 +16306,8 @@ declare module "question_matrix" {
|
|
16240
16306
|
setValueDirectly(val: any): void;
|
16241
16307
|
get isReadOnly(): boolean;
|
16242
16308
|
get rowTextClasses(): string;
|
16309
|
+
get hasError(): boolean;
|
16310
|
+
set hasError(val: boolean);
|
16243
16311
|
get rowClasses(): string;
|
16244
16312
|
}
|
16245
16313
|
export interface IMatrixCellsOwner extends ILocalizableOwner {
|
@@ -16352,11 +16420,10 @@ declare module "question_matrix" {
|
|
16352
16420
|
supportGoNextPageAutomatic(): boolean;
|
16353
16421
|
private errorsInRow;
|
16354
16422
|
protected onCheckForErrors(errors: Array<SurveyError>, isOnValueChanged: boolean): void;
|
16355
|
-
private hasErrorAllRowsRequired;
|
16356
|
-
private hasErrorEachRowUnique;
|
16357
16423
|
private hasValuesInAllRows;
|
16358
|
-
private
|
16424
|
+
private checkErrorsAllRows;
|
16359
16425
|
private addErrorIntoRow;
|
16426
|
+
private refreshRowsErrors;
|
16360
16427
|
protected getIsAnswered(): boolean;
|
16361
16428
|
private createMatrixRow;
|
16362
16429
|
protected onMatrixRowCreated(row: MatrixRowModel): void;
|
@@ -16561,6 +16628,7 @@ declare module "question_checkbox" {
|
|
16561
16628
|
get selectedChoices(): Array<ItemValue>;
|
16562
16629
|
get selectedItems(): Array<ItemValue>;
|
16563
16630
|
get hasFilteredValue(): boolean;
|
16631
|
+
getFilteredName(): any;
|
16564
16632
|
getFilteredValue(): any;
|
16565
16633
|
protected getMultipleSelectedItems(): Array<ItemValue>;
|
16566
16634
|
protected validateItemValues(itemValues: Array<ItemValue>): Array<ItemValue>;
|
@@ -16625,7 +16693,7 @@ declare module "multiSelectListModel" {
|
|
16625
16693
|
selectedItems: Array<IAction>;
|
16626
16694
|
hideSelectedItems: boolean;
|
16627
16695
|
private updateItemState;
|
16628
|
-
constructor(items: Array<IAction>, onSelectionChanged: (item: T, status: string) => void, allowSelection: boolean, selectedItems?: Array<IAction>,
|
16696
|
+
constructor(items: Array<IAction>, onSelectionChanged: (item: T, status: string) => void, allowSelection: boolean, selectedItems?: Array<IAction>, elementId?: string);
|
16629
16697
|
onItemClick: (item: T) => void;
|
16630
16698
|
isItemDisabled: (itemValue: T) => boolean;
|
16631
16699
|
isItemSelected: (itemValue: T) => boolean;
|
@@ -16921,6 +16989,7 @@ declare module "question_imagepicker" {
|
|
16921
16989
|
protected getObservedElementSelector(): string;
|
16922
16990
|
protected supportResponsiveness(): boolean;
|
16923
16991
|
protected needResponsiveness(): boolean;
|
16992
|
+
needResponsiveWidth(): boolean;
|
16924
16993
|
private _width;
|
16925
16994
|
onContentLoaded: (item: ImageItemValue, event: any) => void;
|
16926
16995
|
private responsiveColCount;
|
@@ -17017,6 +17086,7 @@ declare module "question_ranking" {
|
|
17017
17086
|
*/
|
17018
17087
|
export class QuestionRankingModel extends QuestionCheckboxModel {
|
17019
17088
|
private domNode;
|
17089
|
+
private dragOrClickHelper;
|
17020
17090
|
constructor(name: string);
|
17021
17091
|
protected getDefaultItemComponent(): string;
|
17022
17092
|
getType(): string;
|
@@ -17057,7 +17127,11 @@ declare module "question_ranking" {
|
|
17057
17127
|
endLoadingFromJson(): void;
|
17058
17128
|
private setDragDropRankingChoices;
|
17059
17129
|
protected createDragDropRankingChoices(): DragDropRankingChoices | DragDropRankingSelectToRank;
|
17130
|
+
private draggedChoise;
|
17131
|
+
private draggedTargetNode;
|
17060
17132
|
handlePointerDown: (event: PointerEvent, choice: ItemValue, node: HTMLElement) => void;
|
17133
|
+
startDrag: (event: PointerEvent) => void;
|
17134
|
+
handlePointerUp: (event: PointerEvent, choice: ItemValue, node: HTMLElement) => void;
|
17061
17135
|
private isDragStartNodeValid;
|
17062
17136
|
private get allowStartDrag();
|
17063
17137
|
private canStartDragDueMaxSelectedChoices;
|
@@ -17072,7 +17146,7 @@ declare module "question_ranking" {
|
|
17072
17146
|
supportRefuse(): boolean;
|
17073
17147
|
supportDontKnow(): boolean;
|
17074
17148
|
private handleArrowKeys;
|
17075
|
-
handleKeydownSelectToRank(event: KeyboardEvent, movedElement: ItemValue): void;
|
17149
|
+
handleKeydownSelectToRank(event: KeyboardEvent, movedElement: ItemValue, hardKey?: string, isNeedFocus?: boolean): void;
|
17076
17150
|
private setValueAfterKeydown;
|
17077
17151
|
private focusItem;
|
17078
17152
|
isValueSetByUser: boolean;
|
@@ -17374,6 +17448,7 @@ declare module "question_rating" {
|
|
17374
17448
|
getType(): string;
|
17375
17449
|
protected getFirstInputElementId(): string;
|
17376
17450
|
getInputId(index: number): string;
|
17451
|
+
get questionName(): string;
|
17377
17452
|
supportGoNextPageAutomatic(): boolean;
|
17378
17453
|
supportOther(): boolean;
|
17379
17454
|
protected getPlainDataCalculatedValue(propName: string): any;
|
@@ -18141,9 +18216,10 @@ declare module "mask/mask_numeric" {
|
|
18141
18216
|
displayNumber(parsedNumber: INumericalComposition, insertThousandsSeparator?: boolean, matchWholeMask?: boolean): string;
|
18142
18217
|
convertNumber(parsedNumber: INumericalComposition): number;
|
18143
18218
|
validateNumber(number: INumericalComposition, matchWholeMask: boolean): boolean;
|
18144
|
-
parseNumber(src: string
|
18145
|
-
getNumberMaskedValue(src: string
|
18219
|
+
parseNumber(src: string): INumericalComposition;
|
18220
|
+
getNumberMaskedValue(src: string, matchWholeMask?: boolean): string;
|
18146
18221
|
private getNumberUnmaskedValue;
|
18222
|
+
getTextAlignment(): "left" | "right" | "auto";
|
18147
18223
|
getMaskedValue(src: any): string;
|
18148
18224
|
getUnmaskedValue(src: string): any;
|
18149
18225
|
processInput(args: ITextInputParams): IMaskedInputResult;
|
@@ -20903,6 +20979,7 @@ declare module "localization/arabic" {
|
|
20903
20979
|
savingData: string;
|
20904
20980
|
savingDataError: string;
|
20905
20981
|
savingDataSuccess: string;
|
20982
|
+
savingExceedSize: string;
|
20906
20983
|
saveAgainButton: string;
|
20907
20984
|
timerMin: string;
|
20908
20985
|
timerSec: string;
|
@@ -20914,6 +20991,7 @@ declare module "localization/arabic" {
|
|
20914
20991
|
timerLimitSurvey: string;
|
20915
20992
|
clearCaption: string;
|
20916
20993
|
signaturePlaceHolder: string;
|
20994
|
+
signaturePlaceHolderReadOnly: string;
|
20917
20995
|
chooseFileCaption: string;
|
20918
20996
|
takePhotoCaption: string;
|
20919
20997
|
photoPlaceholder: string;
|
@@ -21009,6 +21087,7 @@ declare module "localization/basque" {
|
|
21009
21087
|
savingData: string;
|
21010
21088
|
savingDataError: string;
|
21011
21089
|
savingDataSuccess: string;
|
21090
|
+
savingExceedSize: string;
|
21012
21091
|
saveAgainButton: string;
|
21013
21092
|
timerMin: string;
|
21014
21093
|
timerSec: string;
|
@@ -21020,6 +21099,7 @@ declare module "localization/basque" {
|
|
21020
21099
|
timerLimitSurvey: string;
|
21021
21100
|
clearCaption: string;
|
21022
21101
|
signaturePlaceHolder: string;
|
21102
|
+
signaturePlaceHolderReadOnly: string;
|
21023
21103
|
chooseFileCaption: string;
|
21024
21104
|
takePhotoCaption: string;
|
21025
21105
|
photoPlaceholder: string;
|
@@ -21115,6 +21195,7 @@ declare module "localization/bulgarian" {
|
|
21115
21195
|
savingData: string;
|
21116
21196
|
savingDataError: string;
|
21117
21197
|
savingDataSuccess: string;
|
21198
|
+
savingExceedSize: string;
|
21118
21199
|
saveAgainButton: string;
|
21119
21200
|
timerMin: string;
|
21120
21201
|
timerSec: string;
|
@@ -21126,6 +21207,7 @@ declare module "localization/bulgarian" {
|
|
21126
21207
|
timerLimitSurvey: string;
|
21127
21208
|
clearCaption: string;
|
21128
21209
|
signaturePlaceHolder: string;
|
21210
|
+
signaturePlaceHolderReadOnly: string;
|
21129
21211
|
chooseFileCaption: string;
|
21130
21212
|
takePhotoCaption: string;
|
21131
21213
|
photoPlaceholder: string;
|
@@ -21221,6 +21303,7 @@ declare module "localization/catalan" {
|
|
21221
21303
|
savingData: string;
|
21222
21304
|
savingDataError: string;
|
21223
21305
|
savingDataSuccess: string;
|
21306
|
+
savingExceedSize: string;
|
21224
21307
|
saveAgainButton: string;
|
21225
21308
|
timerMin: string;
|
21226
21309
|
timerSec: string;
|
@@ -21232,6 +21315,7 @@ declare module "localization/catalan" {
|
|
21232
21315
|
timerLimitSurvey: string;
|
21233
21316
|
clearCaption: string;
|
21234
21317
|
signaturePlaceHolder: string;
|
21318
|
+
signaturePlaceHolderReadOnly: string;
|
21235
21319
|
chooseFileCaption: string;
|
21236
21320
|
takePhotoCaption: string;
|
21237
21321
|
photoPlaceholder: string;
|
@@ -21327,6 +21411,7 @@ declare module "localization/croatian" {
|
|
21327
21411
|
savingData: string;
|
21328
21412
|
savingDataError: string;
|
21329
21413
|
savingDataSuccess: string;
|
21414
|
+
savingExceedSize: string;
|
21330
21415
|
saveAgainButton: string;
|
21331
21416
|
timerMin: string;
|
21332
21417
|
timerSec: string;
|
@@ -21338,6 +21423,7 @@ declare module "localization/croatian" {
|
|
21338
21423
|
timerLimitSurvey: string;
|
21339
21424
|
clearCaption: string;
|
21340
21425
|
signaturePlaceHolder: string;
|
21426
|
+
signaturePlaceHolderReadOnly: string;
|
21341
21427
|
chooseFileCaption: string;
|
21342
21428
|
takePhotoCaption: string;
|
21343
21429
|
photoPlaceholder: string;
|
@@ -21433,6 +21519,7 @@ declare module "localization/czech" {
|
|
21433
21519
|
savingData: string;
|
21434
21520
|
savingDataError: string;
|
21435
21521
|
savingDataSuccess: string;
|
21522
|
+
savingExceedSize: string;
|
21436
21523
|
saveAgainButton: string;
|
21437
21524
|
timerMin: string;
|
21438
21525
|
timerSec: string;
|
@@ -21444,6 +21531,7 @@ declare module "localization/czech" {
|
|
21444
21531
|
timerLimitSurvey: string;
|
21445
21532
|
clearCaption: string;
|
21446
21533
|
signaturePlaceHolder: string;
|
21534
|
+
signaturePlaceHolderReadOnly: string;
|
21447
21535
|
chooseFileCaption: string;
|
21448
21536
|
takePhotoCaption: string;
|
21449
21537
|
photoPlaceholder: string;
|
@@ -21539,6 +21627,7 @@ declare module "localization/danish" {
|
|
21539
21627
|
savingData: string;
|
21540
21628
|
savingDataError: string;
|
21541
21629
|
savingDataSuccess: string;
|
21630
|
+
savingExceedSize: string;
|
21542
21631
|
saveAgainButton: string;
|
21543
21632
|
timerMin: string;
|
21544
21633
|
timerSec: string;
|
@@ -21550,6 +21639,7 @@ declare module "localization/danish" {
|
|
21550
21639
|
timerLimitSurvey: string;
|
21551
21640
|
clearCaption: string;
|
21552
21641
|
signaturePlaceHolder: string;
|
21642
|
+
signaturePlaceHolderReadOnly: string;
|
21553
21643
|
chooseFileCaption: string;
|
21554
21644
|
takePhotoCaption: string;
|
21555
21645
|
photoPlaceholder: string;
|
@@ -21645,6 +21735,7 @@ declare module "localization/dutch" {
|
|
21645
21735
|
savingData: string;
|
21646
21736
|
savingDataError: string;
|
21647
21737
|
savingDataSuccess: string;
|
21738
|
+
savingExceedSize: string;
|
21648
21739
|
saveAgainButton: string;
|
21649
21740
|
timerMin: string;
|
21650
21741
|
timerSec: string;
|
@@ -21656,6 +21747,7 @@ declare module "localization/dutch" {
|
|
21656
21747
|
timerLimitSurvey: string;
|
21657
21748
|
clearCaption: string;
|
21658
21749
|
signaturePlaceHolder: string;
|
21750
|
+
signaturePlaceHolderReadOnly: string;
|
21659
21751
|
chooseFileCaption: string;
|
21660
21752
|
takePhotoCaption: string;
|
21661
21753
|
photoPlaceholder: string;
|
@@ -21752,6 +21844,7 @@ declare module "localization/estonian" {
|
|
21752
21844
|
savingData: string;
|
21753
21845
|
savingDataError: string;
|
21754
21846
|
savingDataSuccess: string;
|
21847
|
+
savingExceedSize: string;
|
21755
21848
|
saveAgainButton: string;
|
21756
21849
|
timerMin: string;
|
21757
21850
|
timerSec: string;
|
@@ -21763,6 +21856,7 @@ declare module "localization/estonian" {
|
|
21763
21856
|
timerLimitSurvey: string;
|
21764
21857
|
clearCaption: string;
|
21765
21858
|
signaturePlaceHolder: string;
|
21859
|
+
signaturePlaceHolderReadOnly: string;
|
21766
21860
|
chooseFileCaption: string;
|
21767
21861
|
takePhotoCaption: string;
|
21768
21862
|
photoPlaceholder: string;
|
@@ -21858,6 +21952,7 @@ declare module "localization/finnish" {
|
|
21858
21952
|
savingData: string;
|
21859
21953
|
savingDataError: string;
|
21860
21954
|
savingDataSuccess: string;
|
21955
|
+
savingExceedSize: string;
|
21861
21956
|
saveAgainButton: string;
|
21862
21957
|
timerMin: string;
|
21863
21958
|
timerSec: string;
|
@@ -21869,6 +21964,7 @@ declare module "localization/finnish" {
|
|
21869
21964
|
timerLimitSurvey: string;
|
21870
21965
|
clearCaption: string;
|
21871
21966
|
signaturePlaceHolder: string;
|
21967
|
+
signaturePlaceHolderReadOnly: string;
|
21872
21968
|
chooseFileCaption: string;
|
21873
21969
|
takePhotoCaption: string;
|
21874
21970
|
photoPlaceholder: string;
|
@@ -21964,6 +22060,7 @@ declare module "localization/french" {
|
|
21964
22060
|
savingData: string;
|
21965
22061
|
savingDataError: string;
|
21966
22062
|
savingDataSuccess: string;
|
22063
|
+
savingExceedSize: string;
|
21967
22064
|
saveAgainButton: string;
|
21968
22065
|
timerMin: string;
|
21969
22066
|
timerSec: string;
|
@@ -21975,6 +22072,7 @@ declare module "localization/french" {
|
|
21975
22072
|
timerLimitSurvey: string;
|
21976
22073
|
clearCaption: string;
|
21977
22074
|
signaturePlaceHolder: string;
|
22075
|
+
signaturePlaceHolderReadOnly: string;
|
21978
22076
|
chooseFileCaption: string;
|
21979
22077
|
takePhotoCaption: string;
|
21980
22078
|
photoPlaceholder: string;
|
@@ -22070,6 +22168,7 @@ declare module "localization/georgian" {
|
|
22070
22168
|
savingData: string;
|
22071
22169
|
savingDataError: string;
|
22072
22170
|
savingDataSuccess: string;
|
22171
|
+
savingExceedSize: string;
|
22073
22172
|
saveAgainButton: string;
|
22074
22173
|
timerMin: string;
|
22075
22174
|
timerSec: string;
|
@@ -22081,6 +22180,7 @@ declare module "localization/georgian" {
|
|
22081
22180
|
timerLimitSurvey: string;
|
22082
22181
|
clearCaption: string;
|
22083
22182
|
signaturePlaceHolder: string;
|
22183
|
+
signaturePlaceHolderReadOnly: string;
|
22084
22184
|
chooseFileCaption: string;
|
22085
22185
|
takePhotoCaption: string;
|
22086
22186
|
photoPlaceholder: string;
|
@@ -22176,6 +22276,7 @@ declare module "localization/german" {
|
|
22176
22276
|
savingData: string;
|
22177
22277
|
savingDataError: string;
|
22178
22278
|
savingDataSuccess: string;
|
22279
|
+
savingExceedSize: string;
|
22179
22280
|
saveAgainButton: string;
|
22180
22281
|
timerMin: string;
|
22181
22282
|
timerSec: string;
|
@@ -22187,6 +22288,7 @@ declare module "localization/german" {
|
|
22187
22288
|
timerLimitSurvey: string;
|
22188
22289
|
clearCaption: string;
|
22189
22290
|
signaturePlaceHolder: string;
|
22291
|
+
signaturePlaceHolderReadOnly: string;
|
22190
22292
|
chooseFileCaption: string;
|
22191
22293
|
takePhotoCaption: string;
|
22192
22294
|
photoPlaceholder: string;
|
@@ -22282,6 +22384,7 @@ declare module "localization/greek" {
|
|
22282
22384
|
savingData: string;
|
22283
22385
|
savingDataError: string;
|
22284
22386
|
savingDataSuccess: string;
|
22387
|
+
savingExceedSize: string;
|
22285
22388
|
saveAgainButton: string;
|
22286
22389
|
timerMin: string;
|
22287
22390
|
timerSec: string;
|
@@ -22293,6 +22396,7 @@ declare module "localization/greek" {
|
|
22293
22396
|
timerLimitSurvey: string;
|
22294
22397
|
clearCaption: string;
|
22295
22398
|
signaturePlaceHolder: string;
|
22399
|
+
signaturePlaceHolderReadOnly: string;
|
22296
22400
|
chooseFileCaption: string;
|
22297
22401
|
takePhotoCaption: string;
|
22298
22402
|
photoPlaceholder: string;
|
@@ -22388,6 +22492,7 @@ declare module "localization/hebrew" {
|
|
22388
22492
|
savingData: string;
|
22389
22493
|
savingDataError: string;
|
22390
22494
|
savingDataSuccess: string;
|
22495
|
+
savingExceedSize: string;
|
22391
22496
|
saveAgainButton: string;
|
22392
22497
|
timerMin: string;
|
22393
22498
|
timerSec: string;
|
@@ -22399,6 +22504,7 @@ declare module "localization/hebrew" {
|
|
22399
22504
|
timerLimitSurvey: string;
|
22400
22505
|
clearCaption: string;
|
22401
22506
|
signaturePlaceHolder: string;
|
22507
|
+
signaturePlaceHolderReadOnly: string;
|
22402
22508
|
chooseFileCaption: string;
|
22403
22509
|
takePhotoCaption: string;
|
22404
22510
|
photoPlaceholder: string;
|
@@ -22494,6 +22600,7 @@ declare module "localization/hindi" {
|
|
22494
22600
|
savingData: string;
|
22495
22601
|
savingDataError: string;
|
22496
22602
|
savingDataSuccess: string;
|
22603
|
+
savingExceedSize: string;
|
22497
22604
|
saveAgainButton: string;
|
22498
22605
|
timerMin: string;
|
22499
22606
|
timerSec: string;
|
@@ -22505,6 +22612,7 @@ declare module "localization/hindi" {
|
|
22505
22612
|
timerLimitSurvey: string;
|
22506
22613
|
clearCaption: string;
|
22507
22614
|
signaturePlaceHolder: string;
|
22615
|
+
signaturePlaceHolderReadOnly: string;
|
22508
22616
|
chooseFileCaption: string;
|
22509
22617
|
takePhotoCaption: string;
|
22510
22618
|
photoPlaceholder: string;
|
@@ -22600,6 +22708,7 @@ declare module "localization/hungarian" {
|
|
22600
22708
|
savingData: string;
|
22601
22709
|
savingDataError: string;
|
22602
22710
|
savingDataSuccess: string;
|
22711
|
+
savingExceedSize: string;
|
22603
22712
|
saveAgainButton: string;
|
22604
22713
|
timerMin: string;
|
22605
22714
|
timerSec: string;
|
@@ -22611,6 +22720,7 @@ declare module "localization/hungarian" {
|
|
22611
22720
|
timerLimitSurvey: string;
|
22612
22721
|
clearCaption: string;
|
22613
22722
|
signaturePlaceHolder: string;
|
22723
|
+
signaturePlaceHolderReadOnly: string;
|
22614
22724
|
chooseFileCaption: string;
|
22615
22725
|
takePhotoCaption: string;
|
22616
22726
|
photoPlaceholder: string;
|
@@ -22706,6 +22816,7 @@ declare module "localization/icelandic" {
|
|
22706
22816
|
savingData: string;
|
22707
22817
|
savingDataError: string;
|
22708
22818
|
savingDataSuccess: string;
|
22819
|
+
savingExceedSize: string;
|
22709
22820
|
saveAgainButton: string;
|
22710
22821
|
timerMin: string;
|
22711
22822
|
timerSec: string;
|
@@ -22717,6 +22828,7 @@ declare module "localization/icelandic" {
|
|
22717
22828
|
timerLimitSurvey: string;
|
22718
22829
|
clearCaption: string;
|
22719
22830
|
signaturePlaceHolder: string;
|
22831
|
+
signaturePlaceHolderReadOnly: string;
|
22720
22832
|
chooseFileCaption: string;
|
22721
22833
|
takePhotoCaption: string;
|
22722
22834
|
photoPlaceholder: string;
|
@@ -22812,6 +22924,7 @@ declare module "localization/indonesian" {
|
|
22812
22924
|
savingData: string;
|
22813
22925
|
savingDataError: string;
|
22814
22926
|
savingDataSuccess: string;
|
22927
|
+
savingExceedSize: string;
|
22815
22928
|
saveAgainButton: string;
|
22816
22929
|
timerMin: string;
|
22817
22930
|
timerSec: string;
|
@@ -22823,6 +22936,7 @@ declare module "localization/indonesian" {
|
|
22823
22936
|
timerLimitSurvey: string;
|
22824
22937
|
clearCaption: string;
|
22825
22938
|
signaturePlaceHolder: string;
|
22939
|
+
signaturePlaceHolderReadOnly: string;
|
22826
22940
|
chooseFileCaption: string;
|
22827
22941
|
takePhotoCaption: string;
|
22828
22942
|
photoPlaceholder: string;
|
@@ -22918,6 +23032,7 @@ declare module "localization/italian" {
|
|
22918
23032
|
savingData: string;
|
22919
23033
|
savingDataError: string;
|
22920
23034
|
savingDataSuccess: string;
|
23035
|
+
savingExceedSize: string;
|
22921
23036
|
saveAgainButton: string;
|
22922
23037
|
timerMin: string;
|
22923
23038
|
timerSec: string;
|
@@ -22929,6 +23044,7 @@ declare module "localization/italian" {
|
|
22929
23044
|
timerLimitSurvey: string;
|
22930
23045
|
clearCaption: string;
|
22931
23046
|
signaturePlaceHolder: string;
|
23047
|
+
signaturePlaceHolderReadOnly: string;
|
22932
23048
|
chooseFileCaption: string;
|
22933
23049
|
takePhotoCaption: string;
|
22934
23050
|
photoPlaceholder: string;
|
@@ -23024,6 +23140,7 @@ declare module "localization/japanese" {
|
|
23024
23140
|
savingData: string;
|
23025
23141
|
savingDataError: string;
|
23026
23142
|
savingDataSuccess: string;
|
23143
|
+
savingExceedSize: string;
|
23027
23144
|
saveAgainButton: string;
|
23028
23145
|
timerMin: string;
|
23029
23146
|
timerSec: string;
|
@@ -23035,6 +23152,7 @@ declare module "localization/japanese" {
|
|
23035
23152
|
timerLimitSurvey: string;
|
23036
23153
|
clearCaption: string;
|
23037
23154
|
signaturePlaceHolder: string;
|
23155
|
+
signaturePlaceHolderReadOnly: string;
|
23038
23156
|
chooseFileCaption: string;
|
23039
23157
|
takePhotoCaption: string;
|
23040
23158
|
photoPlaceholder: string;
|
@@ -23130,6 +23248,7 @@ declare module "localization/kazakh" {
|
|
23130
23248
|
savingData: string;
|
23131
23249
|
savingDataError: string;
|
23132
23250
|
savingDataSuccess: string;
|
23251
|
+
savingExceedSize: string;
|
23133
23252
|
saveAgainButton: string;
|
23134
23253
|
timerMin: string;
|
23135
23254
|
timerSec: string;
|
@@ -23141,6 +23260,7 @@ declare module "localization/kazakh" {
|
|
23141
23260
|
timerLimitSurvey: string;
|
23142
23261
|
clearCaption: string;
|
23143
23262
|
signaturePlaceHolder: string;
|
23263
|
+
signaturePlaceHolderReadOnly: string;
|
23144
23264
|
chooseFileCaption: string;
|
23145
23265
|
takePhotoCaption: string;
|
23146
23266
|
photoPlaceholder: string;
|
@@ -23236,6 +23356,7 @@ declare module "localization/korean" {
|
|
23236
23356
|
savingData: string;
|
23237
23357
|
savingDataError: string;
|
23238
23358
|
savingDataSuccess: string;
|
23359
|
+
savingExceedSize: string;
|
23239
23360
|
saveAgainButton: string;
|
23240
23361
|
timerMin: string;
|
23241
23362
|
timerSec: string;
|
@@ -23247,6 +23368,7 @@ declare module "localization/korean" {
|
|
23247
23368
|
timerLimitSurvey: string;
|
23248
23369
|
clearCaption: string;
|
23249
23370
|
signaturePlaceHolder: string;
|
23371
|
+
signaturePlaceHolderReadOnly: string;
|
23250
23372
|
chooseFileCaption: string;
|
23251
23373
|
takePhotoCaption: string;
|
23252
23374
|
photoPlaceholder: string;
|
@@ -23342,6 +23464,7 @@ declare module "localization/latvian" {
|
|
23342
23464
|
savingData: string;
|
23343
23465
|
savingDataError: string;
|
23344
23466
|
savingDataSuccess: string;
|
23467
|
+
savingExceedSize: string;
|
23345
23468
|
saveAgainButton: string;
|
23346
23469
|
timerMin: string;
|
23347
23470
|
timerSec: string;
|
@@ -23353,6 +23476,7 @@ declare module "localization/latvian" {
|
|
23353
23476
|
timerLimitSurvey: string;
|
23354
23477
|
clearCaption: string;
|
23355
23478
|
signaturePlaceHolder: string;
|
23479
|
+
signaturePlaceHolderReadOnly: string;
|
23356
23480
|
chooseFileCaption: string;
|
23357
23481
|
takePhotoCaption: string;
|
23358
23482
|
photoPlaceholder: string;
|
@@ -23448,6 +23572,7 @@ declare module "localization/lithuanian" {
|
|
23448
23572
|
savingData: string;
|
23449
23573
|
savingDataError: string;
|
23450
23574
|
savingDataSuccess: string;
|
23575
|
+
savingExceedSize: string;
|
23451
23576
|
saveAgainButton: string;
|
23452
23577
|
timerMin: string;
|
23453
23578
|
timerSec: string;
|
@@ -23459,6 +23584,7 @@ declare module "localization/lithuanian" {
|
|
23459
23584
|
timerLimitSurvey: string;
|
23460
23585
|
clearCaption: string;
|
23461
23586
|
signaturePlaceHolder: string;
|
23587
|
+
signaturePlaceHolderReadOnly: string;
|
23462
23588
|
chooseFileCaption: string;
|
23463
23589
|
takePhotoCaption: string;
|
23464
23590
|
photoPlaceholder: string;
|
@@ -23554,6 +23680,7 @@ declare module "localization/macedonian" {
|
|
23554
23680
|
savingData: string;
|
23555
23681
|
savingDataError: string;
|
23556
23682
|
savingDataSuccess: string;
|
23683
|
+
savingExceedSize: string;
|
23557
23684
|
saveAgainButton: string;
|
23558
23685
|
timerMin: string;
|
23559
23686
|
timerSec: string;
|
@@ -23565,6 +23692,7 @@ declare module "localization/macedonian" {
|
|
23565
23692
|
timerLimitSurvey: string;
|
23566
23693
|
clearCaption: string;
|
23567
23694
|
signaturePlaceHolder: string;
|
23695
|
+
signaturePlaceHolderReadOnly: string;
|
23568
23696
|
chooseFileCaption: string;
|
23569
23697
|
takePhotoCaption: string;
|
23570
23698
|
photoPlaceholder: string;
|
@@ -23660,6 +23788,7 @@ declare module "localization/malay" {
|
|
23660
23788
|
savingData: string;
|
23661
23789
|
savingDataError: string;
|
23662
23790
|
savingDataSuccess: string;
|
23791
|
+
savingExceedSize: string;
|
23663
23792
|
saveAgainButton: string;
|
23664
23793
|
timerMin: string;
|
23665
23794
|
timerSec: string;
|
@@ -23671,6 +23800,7 @@ declare module "localization/malay" {
|
|
23671
23800
|
timerLimitSurvey: string;
|
23672
23801
|
clearCaption: string;
|
23673
23802
|
signaturePlaceHolder: string;
|
23803
|
+
signaturePlaceHolderReadOnly: string;
|
23674
23804
|
chooseFileCaption: string;
|
23675
23805
|
takePhotoCaption: string;
|
23676
23806
|
photoPlaceholder: string;
|
@@ -23766,6 +23896,7 @@ declare module "localization/norwegian" {
|
|
23766
23896
|
savingData: string;
|
23767
23897
|
savingDataError: string;
|
23768
23898
|
savingDataSuccess: string;
|
23899
|
+
savingExceedSize: string;
|
23769
23900
|
saveAgainButton: string;
|
23770
23901
|
timerMin: string;
|
23771
23902
|
timerSec: string;
|
@@ -23777,6 +23908,7 @@ declare module "localization/norwegian" {
|
|
23777
23908
|
timerLimitSurvey: string;
|
23778
23909
|
clearCaption: string;
|
23779
23910
|
signaturePlaceHolder: string;
|
23911
|
+
signaturePlaceHolderReadOnly: string;
|
23780
23912
|
chooseFileCaption: string;
|
23781
23913
|
takePhotoCaption: string;
|
23782
23914
|
photoPlaceholder: string;
|
@@ -23872,6 +24004,7 @@ declare module "localization/persian" {
|
|
23872
24004
|
savingData: string;
|
23873
24005
|
savingDataError: string;
|
23874
24006
|
savingDataSuccess: string;
|
24007
|
+
savingExceedSize: string;
|
23875
24008
|
saveAgainButton: string;
|
23876
24009
|
timerMin: string;
|
23877
24010
|
timerSec: string;
|
@@ -23883,6 +24016,7 @@ declare module "localization/persian" {
|
|
23883
24016
|
timerLimitSurvey: string;
|
23884
24017
|
clearCaption: string;
|
23885
24018
|
signaturePlaceHolder: string;
|
24019
|
+
signaturePlaceHolderReadOnly: string;
|
23886
24020
|
chooseFileCaption: string;
|
23887
24021
|
takePhotoCaption: string;
|
23888
24022
|
photoPlaceholder: string;
|
@@ -23978,6 +24112,7 @@ declare module "localization/polish" {
|
|
23978
24112
|
savingData: string;
|
23979
24113
|
savingDataError: string;
|
23980
24114
|
savingDataSuccess: string;
|
24115
|
+
savingExceedSize: string;
|
23981
24116
|
saveAgainButton: string;
|
23982
24117
|
timerMin: string;
|
23983
24118
|
timerSec: string;
|
@@ -23989,6 +24124,7 @@ declare module "localization/polish" {
|
|
23989
24124
|
timerLimitSurvey: string;
|
23990
24125
|
clearCaption: string;
|
23991
24126
|
signaturePlaceHolder: string;
|
24127
|
+
signaturePlaceHolderReadOnly: string;
|
23992
24128
|
chooseFileCaption: string;
|
23993
24129
|
takePhotoCaption: string;
|
23994
24130
|
photoPlaceholder: string;
|
@@ -24084,6 +24220,7 @@ declare module "localization/portuguese" {
|
|
24084
24220
|
savingData: string;
|
24085
24221
|
savingDataError: string;
|
24086
24222
|
savingDataSuccess: string;
|
24223
|
+
savingExceedSize: string;
|
24087
24224
|
saveAgainButton: string;
|
24088
24225
|
timerMin: string;
|
24089
24226
|
timerSec: string;
|
@@ -24095,6 +24232,7 @@ declare module "localization/portuguese" {
|
|
24095
24232
|
timerLimitSurvey: string;
|
24096
24233
|
clearCaption: string;
|
24097
24234
|
signaturePlaceHolder: string;
|
24235
|
+
signaturePlaceHolderReadOnly: string;
|
24098
24236
|
chooseFileCaption: string;
|
24099
24237
|
takePhotoCaption: string;
|
24100
24238
|
photoPlaceholder: string;
|
@@ -24193,6 +24331,7 @@ declare module "localization/portuguese-br" {
|
|
24193
24331
|
savingData: string;
|
24194
24332
|
savingDataError: string;
|
24195
24333
|
savingDataSuccess: string;
|
24334
|
+
savingExceedSize: string;
|
24196
24335
|
saveAgainButton: string;
|
24197
24336
|
timerMin: string;
|
24198
24337
|
timerSec: string;
|
@@ -24204,6 +24343,7 @@ declare module "localization/portuguese-br" {
|
|
24204
24343
|
timerLimitSurvey: string;
|
24205
24344
|
clearCaption: string;
|
24206
24345
|
signaturePlaceHolder: string;
|
24346
|
+
signaturePlaceHolderReadOnly: string;
|
24207
24347
|
chooseFileCaption: string;
|
24208
24348
|
takePhotoCaption: string;
|
24209
24349
|
photoPlaceholder: string;
|
@@ -24302,6 +24442,7 @@ declare module "localization/russian" {
|
|
24302
24442
|
savingData: string;
|
24303
24443
|
savingDataError: string;
|
24304
24444
|
savingDataSuccess: string;
|
24445
|
+
savingExceedSize: string;
|
24305
24446
|
saveAgainButton: string;
|
24306
24447
|
timerMin: string;
|
24307
24448
|
timerSec: string;
|
@@ -24313,6 +24454,7 @@ declare module "localization/russian" {
|
|
24313
24454
|
timerLimitSurvey: string;
|
24314
24455
|
clearCaption: string;
|
24315
24456
|
signaturePlaceHolder: string;
|
24457
|
+
signaturePlaceHolderReadOnly: string;
|
24316
24458
|
chooseFileCaption: string;
|
24317
24459
|
takePhotoCaption: string;
|
24318
24460
|
photoPlaceholder: string;
|
@@ -24408,6 +24550,7 @@ declare module "localization/serbian" {
|
|
24408
24550
|
savingData: string;
|
24409
24551
|
savingDataError: string;
|
24410
24552
|
savingDataSuccess: string;
|
24553
|
+
savingExceedSize: string;
|
24411
24554
|
saveAgainButton: string;
|
24412
24555
|
timerMin: string;
|
24413
24556
|
timerSec: string;
|
@@ -24419,6 +24562,7 @@ declare module "localization/serbian" {
|
|
24419
24562
|
timerLimitSurvey: string;
|
24420
24563
|
clearCaption: string;
|
24421
24564
|
signaturePlaceHolder: string;
|
24565
|
+
signaturePlaceHolderReadOnly: string;
|
24422
24566
|
chooseFileCaption: string;
|
24423
24567
|
takePhotoCaption: string;
|
24424
24568
|
photoPlaceholder: string;
|
@@ -24514,6 +24658,7 @@ declare module "localization/simplified-chinese" {
|
|
24514
24658
|
savingData: string;
|
24515
24659
|
savingDataError: string;
|
24516
24660
|
savingDataSuccess: string;
|
24661
|
+
savingExceedSize: string;
|
24517
24662
|
saveAgainButton: string;
|
24518
24663
|
timerMin: string;
|
24519
24664
|
timerSec: string;
|
@@ -24525,6 +24670,7 @@ declare module "localization/simplified-chinese" {
|
|
24525
24670
|
timerLimitSurvey: string;
|
24526
24671
|
clearCaption: string;
|
24527
24672
|
signaturePlaceHolder: string;
|
24673
|
+
signaturePlaceHolderReadOnly: string;
|
24528
24674
|
chooseFileCaption: string;
|
24529
24675
|
takePhotoCaption: string;
|
24530
24676
|
photoPlaceholder: string;
|
@@ -24620,6 +24766,7 @@ declare module "localization/slovak" {
|
|
24620
24766
|
savingData: string;
|
24621
24767
|
savingDataError: string;
|
24622
24768
|
savingDataSuccess: string;
|
24769
|
+
savingExceedSize: string;
|
24623
24770
|
saveAgainButton: string;
|
24624
24771
|
timerMin: string;
|
24625
24772
|
timerSec: string;
|
@@ -24631,6 +24778,7 @@ declare module "localization/slovak" {
|
|
24631
24778
|
timerLimitSurvey: string;
|
24632
24779
|
clearCaption: string;
|
24633
24780
|
signaturePlaceHolder: string;
|
24781
|
+
signaturePlaceHolderReadOnly: string;
|
24634
24782
|
chooseFileCaption: string;
|
24635
24783
|
takePhotoCaption: string;
|
24636
24784
|
photoPlaceholder: string;
|
@@ -24726,6 +24874,7 @@ declare module "localization/spanish" {
|
|
24726
24874
|
savingData: string;
|
24727
24875
|
savingDataError: string;
|
24728
24876
|
savingDataSuccess: string;
|
24877
|
+
savingExceedSize: string;
|
24729
24878
|
saveAgainButton: string;
|
24730
24879
|
timerMin: string;
|
24731
24880
|
timerSec: string;
|
@@ -24737,6 +24886,7 @@ declare module "localization/spanish" {
|
|
24737
24886
|
timerLimitSurvey: string;
|
24738
24887
|
clearCaption: string;
|
24739
24888
|
signaturePlaceHolder: string;
|
24889
|
+
signaturePlaceHolderReadOnly: string;
|
24740
24890
|
chooseFileCaption: string;
|
24741
24891
|
takePhotoCaption: string;
|
24742
24892
|
photoPlaceholder: string;
|
@@ -24832,6 +24982,7 @@ declare module "localization/swahili" {
|
|
24832
24982
|
savingData: string;
|
24833
24983
|
savingDataError: string;
|
24834
24984
|
savingDataSuccess: string;
|
24985
|
+
savingExceedSize: string;
|
24835
24986
|
saveAgainButton: string;
|
24836
24987
|
timerMin: string;
|
24837
24988
|
timerSec: string;
|
@@ -24843,6 +24994,7 @@ declare module "localization/swahili" {
|
|
24843
24994
|
timerLimitSurvey: string;
|
24844
24995
|
clearCaption: string;
|
24845
24996
|
signaturePlaceHolder: string;
|
24997
|
+
signaturePlaceHolderReadOnly: string;
|
24846
24998
|
chooseFileCaption: string;
|
24847
24999
|
takePhotoCaption: string;
|
24848
25000
|
photoPlaceholder: string;
|
@@ -24938,6 +25090,7 @@ declare module "localization/swedish" {
|
|
24938
25090
|
savingData: string;
|
24939
25091
|
savingDataError: string;
|
24940
25092
|
savingDataSuccess: string;
|
25093
|
+
savingExceedSize: string;
|
24941
25094
|
saveAgainButton: string;
|
24942
25095
|
timerMin: string;
|
24943
25096
|
timerSec: string;
|
@@ -24949,6 +25102,7 @@ declare module "localization/swedish" {
|
|
24949
25102
|
timerLimitSurvey: string;
|
24950
25103
|
clearCaption: string;
|
24951
25104
|
signaturePlaceHolder: string;
|
25105
|
+
signaturePlaceHolderReadOnly: string;
|
24952
25106
|
chooseFileCaption: string;
|
24953
25107
|
takePhotoCaption: string;
|
24954
25108
|
photoPlaceholder: string;
|
@@ -25108,6 +25262,7 @@ declare module "localization/thai" {
|
|
25108
25262
|
savingData: string;
|
25109
25263
|
savingDataError: string;
|
25110
25264
|
savingDataSuccess: string;
|
25265
|
+
savingExceedSize: string;
|
25111
25266
|
saveAgainButton: string;
|
25112
25267
|
timerMin: string;
|
25113
25268
|
timerSec: string;
|
@@ -25119,6 +25274,7 @@ declare module "localization/thai" {
|
|
25119
25274
|
timerLimitSurvey: string;
|
25120
25275
|
clearCaption: string;
|
25121
25276
|
signaturePlaceHolder: string;
|
25277
|
+
signaturePlaceHolderReadOnly: string;
|
25122
25278
|
chooseFileCaption: string;
|
25123
25279
|
takePhotoCaption: string;
|
25124
25280
|
photoPlaceholder: string;
|
@@ -25214,6 +25370,7 @@ declare module "localization/traditional-chinese" {
|
|
25214
25370
|
savingData: string;
|
25215
25371
|
savingDataError: string;
|
25216
25372
|
savingDataSuccess: string;
|
25373
|
+
savingExceedSize: string;
|
25217
25374
|
saveAgainButton: string;
|
25218
25375
|
timerMin: string;
|
25219
25376
|
timerSec: string;
|
@@ -25225,6 +25382,7 @@ declare module "localization/traditional-chinese" {
|
|
25225
25382
|
timerLimitSurvey: string;
|
25226
25383
|
clearCaption: string;
|
25227
25384
|
signaturePlaceHolder: string;
|
25385
|
+
signaturePlaceHolderReadOnly: string;
|
25228
25386
|
chooseFileCaption: string;
|
25229
25387
|
takePhotoCaption: string;
|
25230
25388
|
photoPlaceholder: string;
|
@@ -25320,6 +25478,7 @@ declare module "localization/turkish" {
|
|
25320
25478
|
savingData: string;
|
25321
25479
|
savingDataError: string;
|
25322
25480
|
savingDataSuccess: string;
|
25481
|
+
savingExceedSize: string;
|
25323
25482
|
saveAgainButton: string;
|
25324
25483
|
timerMin: string;
|
25325
25484
|
timerSec: string;
|
@@ -25331,6 +25490,7 @@ declare module "localization/turkish" {
|
|
25331
25490
|
timerLimitSurvey: string;
|
25332
25491
|
clearCaption: string;
|
25333
25492
|
signaturePlaceHolder: string;
|
25493
|
+
signaturePlaceHolderReadOnly: string;
|
25334
25494
|
chooseFileCaption: string;
|
25335
25495
|
takePhotoCaption: string;
|
25336
25496
|
photoPlaceholder: string;
|
@@ -25426,6 +25586,7 @@ declare module "localization/ukrainian" {
|
|
25426
25586
|
savingData: string;
|
25427
25587
|
savingDataError: string;
|
25428
25588
|
savingDataSuccess: string;
|
25589
|
+
savingExceedSize: string;
|
25429
25590
|
saveAgainButton: string;
|
25430
25591
|
timerMin: string;
|
25431
25592
|
timerSec: string;
|
@@ -25437,6 +25598,7 @@ declare module "localization/ukrainian" {
|
|
25437
25598
|
timerLimitSurvey: string;
|
25438
25599
|
clearCaption: string;
|
25439
25600
|
signaturePlaceHolder: string;
|
25601
|
+
signaturePlaceHolderReadOnly: string;
|
25440
25602
|
chooseFileCaption: string;
|
25441
25603
|
takePhotoCaption: string;
|
25442
25604
|
photoPlaceholder: string;
|
@@ -25532,6 +25694,7 @@ declare module "localization/vietnamese" {
|
|
25532
25694
|
savingData: string;
|
25533
25695
|
savingDataError: string;
|
25534
25696
|
savingDataSuccess: string;
|
25697
|
+
savingExceedSize: string;
|
25535
25698
|
saveAgainButton: string;
|
25536
25699
|
timerMin: string;
|
25537
25700
|
timerSec: string;
|
@@ -25543,6 +25706,7 @@ declare module "localization/vietnamese" {
|
|
25543
25706
|
timerLimitSurvey: string;
|
25544
25707
|
clearCaption: string;
|
25545
25708
|
signaturePlaceHolder: string;
|
25709
|
+
signaturePlaceHolderReadOnly: string;
|
25546
25710
|
chooseFileCaption: string;
|
25547
25711
|
takePhotoCaption: string;
|
25548
25712
|
photoPlaceholder: string;
|
@@ -25638,6 +25802,7 @@ declare module "localization/welsh" {
|
|
25638
25802
|
savingData: string;
|
25639
25803
|
savingDataError: string;
|
25640
25804
|
savingDataSuccess: string;
|
25805
|
+
savingExceedSize: string;
|
25641
25806
|
saveAgainButton: string;
|
25642
25807
|
timerMin: string;
|
25643
25808
|
timerSec: string;
|
@@ -25649,6 +25814,7 @@ declare module "localization/welsh" {
|
|
25649
25814
|
timerLimitSurvey: string;
|
25650
25815
|
clearCaption: string;
|
25651
25816
|
signaturePlaceHolder: string;
|
25817
|
+
signaturePlaceHolderReadOnly: string;
|
25652
25818
|
chooseFileCaption: string;
|
25653
25819
|
takePhotoCaption: string;
|
25654
25820
|
photoPlaceholder: string;
|
@@ -25744,6 +25910,7 @@ declare module "localization/telugu" {
|
|
25744
25910
|
savingData: string;
|
25745
25911
|
savingDataError: string;
|
25746
25912
|
savingDataSuccess: string;
|
25913
|
+
savingExceedSize: string;
|
25747
25914
|
saveAgainButton: string;
|
25748
25915
|
timerMin: string;
|
25749
25916
|
timerSec: string;
|
@@ -25755,6 +25922,7 @@ declare module "localization/telugu" {
|
|
25755
25922
|
timerLimitSurvey: string;
|
25756
25923
|
clearCaption: string;
|
25757
25924
|
signaturePlaceHolder: string;
|
25925
|
+
signaturePlaceHolderReadOnly: string;
|
25758
25926
|
chooseFileCaption: string;
|
25759
25927
|
takePhotoCaption: string;
|
25760
25928
|
photoPlaceholder: string;
|
@@ -25977,7 +26145,6 @@ declare module "react/components/popup/popup" {
|
|
25977
26145
|
render(): JSX.Element;
|
25978
26146
|
}
|
25979
26147
|
export class PopupContainer extends SurveyElementBase<any, any> {
|
25980
|
-
prevIsVisible: boolean;
|
25981
26148
|
constructor(props: any);
|
25982
26149
|
handleKeydown: (event: any) => void;
|
25983
26150
|
get model(): PopupBaseViewModel;
|
@@ -26070,7 +26237,7 @@ declare module "react/reactquestion" {
|
|
26070
26237
|
import { SurveyElementBase, ReactSurveyElement } from "react/reactquestion_element";
|
26071
26238
|
export interface ISurveyCreator {
|
26072
26239
|
createQuestionElement(question: Question): JSX.Element | null;
|
26073
|
-
renderError(key: string, error: SurveyError, cssClasses: any): JSX.Element;
|
26240
|
+
renderError(key: string, error: SurveyError, cssClasses: any, element?: any): JSX.Element;
|
26074
26241
|
questionTitleLocation(): string;
|
26075
26242
|
questionErrorLocation(): string;
|
26076
26243
|
}
|
@@ -26396,7 +26563,7 @@ declare module "react/reactSurvey" {
|
|
26396
26563
|
protected updateSurvey(newProps: any, oldProps?: any): void;
|
26397
26564
|
protected setSurveyEvents(): void;
|
26398
26565
|
createQuestionElement(question: Question): JSX.Element | null;
|
26399
|
-
renderError(key: string, error: SurveyError, cssClasses: any): JSX.Element;
|
26566
|
+
renderError(key: string, error: SurveyError, cssClasses: any, element?: any): JSX.Element;
|
26400
26567
|
questionTitleLocation(): string;
|
26401
26568
|
questionErrorLocation(): string;
|
26402
26569
|
}
|
@@ -26507,7 +26674,7 @@ declare module "react/reactquestion_ranking" {
|
|
26507
26674
|
protected get question(): QuestionRankingModel;
|
26508
26675
|
protected renderElement(): JSX.Element;
|
26509
26676
|
protected getItems(choices?: any, unrankedItem?: boolean): Array<any>;
|
26510
|
-
protected renderItem(item: ItemValue, i: number, handleKeydown: (event: any) => void, handlePointerDown: (event: PointerEvent) => void, cssClasses: any, itemClass: string, question: QuestionRankingModel, unrankedItem?: boolean): JSX.Element;
|
26677
|
+
protected renderItem(item: ItemValue, i: number, handleKeydown: (event: any) => void, handlePointerDown: (event: PointerEvent) => void, handlePointerUp: (event: PointerEvent) => void, cssClasses: any, itemClass: string, question: QuestionRankingModel, unrankedItem?: boolean): JSX.Element;
|
26511
26678
|
}
|
26512
26679
|
export class SurveyQuestionRankingItem extends ReactSurveyElement {
|
26513
26680
|
protected get text(): string;
|
@@ -26515,6 +26682,7 @@ declare module "react/reactquestion_ranking" {
|
|
26515
26682
|
protected get indexText(): string;
|
26516
26683
|
protected get handleKeydown(): (event: any) => void;
|
26517
26684
|
protected get handlePointerDown(): (event: any) => void;
|
26685
|
+
protected get handlePointerUp(): (event: any) => void;
|
26518
26686
|
protected get cssClasses(): any;
|
26519
26687
|
protected get itemClass(): string;
|
26520
26688
|
protected get itemTabIndex(): number;
|
@@ -26882,11 +27050,15 @@ declare module "react/components/matrix/row" {
|
|
26882
27050
|
parentMatrix: QuestionMatrixDropdownModelBase;
|
26883
27051
|
}
|
26884
27052
|
export class MatrixRow extends SurveyElementBase<IMatrixRowProps, any> {
|
27053
|
+
private root;
|
26885
27054
|
constructor(props: IMatrixRowProps);
|
26886
27055
|
get model(): QuestionMatrixDropdownRenderedRow;
|
26887
27056
|
get parentMatrix(): QuestionMatrixDropdownModelBase;
|
26888
27057
|
protected getStateElement(): QuestionMatrixDropdownRenderedRow;
|
26889
27058
|
protected onPointerDownHandler: (event: any) => void;
|
27059
|
+
componentDidMount(): void;
|
27060
|
+
componentWillUnmount(): void;
|
27061
|
+
shouldComponentUpdate(nextProps: any, nextState: any): boolean;
|
26890
27062
|
render(): JSX.Element;
|
26891
27063
|
}
|
26892
27064
|
}
|
@@ -27287,6 +27459,18 @@ declare module "react/components/survey-actions/survey-nav-button" {
|
|
27287
27459
|
protected renderElement(): JSX.Element;
|
27288
27460
|
}
|
27289
27461
|
}
|
27462
|
+
declare module "react/components/question-error" {
|
27463
|
+
import React from "react";
|
27464
|
+
import { SurveyError } from "entries/core";
|
27465
|
+
export interface IQuestionErrorComponentProps {
|
27466
|
+
error: SurveyError;
|
27467
|
+
cssClasses: any;
|
27468
|
+
element: any;
|
27469
|
+
}
|
27470
|
+
export class QuestionErrorComponent extends React.Component<IQuestionErrorComponentProps, any> {
|
27471
|
+
render(): JSX.Element | null;
|
27472
|
+
}
|
27473
|
+
}
|
27290
27474
|
declare module "react/components/skeleton" {
|
27291
27475
|
import React from "react";
|
27292
27476
|
export class Skeleton extends React.Component<any, any> {
|
@@ -27402,6 +27586,7 @@ declare module "entries/react-ui-model" {
|
|
27402
27586
|
export { SurveyQuestionPanelDynamicNextButton } from "react/components/paneldynamic-actions/paneldynamic-next-btn";
|
27403
27587
|
export { SurveyQuestionPanelDynamicProgressText } from "react/components/paneldynamic-actions/paneldynamic-progress-text";
|
27404
27588
|
export { SurveyNavigationButton } from "react/components/survey-actions/survey-nav-button";
|
27589
|
+
export { QuestionErrorComponent } from "react/components/question-error";
|
27405
27590
|
export { MatrixRow } from "react/components/matrix/row";
|
27406
27591
|
export { Skeleton } from "react/components/skeleton";
|
27407
27592
|
export { NotifierComponent } from "react/components/notifier";
|