survey-react 1.9.96 → 1.9.98
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 +71 -19
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +41 -15
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +7 -5
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +96 -21
- package/survey.react.js +410 -194
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/survey.react.d.ts
CHANGED
@@ -645,8 +645,8 @@ declare module "localization/english" {
|
|
645
645
|
noEntriesReadonlyText: string;
|
646
646
|
more: string;
|
647
647
|
tagboxDoneButtonCaption: string;
|
648
|
-
|
649
|
-
|
648
|
+
selectToRankEmptyRankedAreaText: string;
|
649
|
+
selectToRankEmptyUnrankedAreaText: string;
|
650
650
|
};
|
651
651
|
}
|
652
652
|
declare module "surveyStrings" {
|
@@ -756,8 +756,8 @@ declare module "surveyStrings" {
|
|
756
756
|
noEntriesReadonlyText: string;
|
757
757
|
more: string;
|
758
758
|
tagboxDoneButtonCaption: string;
|
759
|
-
|
760
|
-
|
759
|
+
selectToRankEmptyRankedAreaText: string;
|
760
|
+
selectToRankEmptyUnrankedAreaText: string;
|
761
761
|
};
|
762
762
|
}
|
763
763
|
declare module "localizablestring" {
|
@@ -1094,7 +1094,10 @@ declare module "jsonobject" {
|
|
1094
1094
|
type: string;
|
1095
1095
|
message: string;
|
1096
1096
|
description: string;
|
1097
|
-
at:
|
1097
|
+
at: number;
|
1098
|
+
end: number;
|
1099
|
+
jsonObj: any;
|
1100
|
+
element: Base;
|
1098
1101
|
constructor(type: string, message: string);
|
1099
1102
|
getFullDescription(): string;
|
1100
1103
|
}
|
@@ -2163,6 +2166,7 @@ declare module "defaultCss/defaultV2Css" {
|
|
2163
2166
|
root: string;
|
2164
2167
|
rootMobile: string;
|
2165
2168
|
rootReadOnly: string;
|
2169
|
+
rootBackgroundImage: string;
|
2166
2170
|
container: string;
|
2167
2171
|
header: string;
|
2168
2172
|
bodyContainer: string;
|
@@ -2476,6 +2480,9 @@ declare module "defaultCss/defaultV2Css" {
|
|
2476
2480
|
cleanButton: string;
|
2477
2481
|
cleanButtonSvg: string;
|
2478
2482
|
cleanButtonIconId: string;
|
2483
|
+
chevronButton: string;
|
2484
|
+
chevronButtonSvg: string;
|
2485
|
+
chevronButtonIconId: string;
|
2479
2486
|
control: string;
|
2480
2487
|
controlInputFieldComponent: string;
|
2481
2488
|
controlValue: string;
|
@@ -2634,10 +2641,14 @@ declare module "defaultCss/defaultV2Css" {
|
|
2634
2641
|
itemFixedSize: string;
|
2635
2642
|
control: string;
|
2636
2643
|
itemSmall: string;
|
2644
|
+
selectWrapper: string;
|
2637
2645
|
controlValue: string;
|
2638
2646
|
controlDisabled: string;
|
2639
2647
|
controlEmpty: string;
|
2640
2648
|
filterStringInput: string;
|
2649
|
+
chevronButton: string;
|
2650
|
+
chevronButtonSvg: string;
|
2651
|
+
chevronButtonIconId: string;
|
2641
2652
|
popup: string;
|
2642
2653
|
onError: string;
|
2643
2654
|
};
|
@@ -2731,6 +2742,7 @@ declare module "defaultCss/defaultV2Css" {
|
|
2731
2742
|
itemContent: string;
|
2732
2743
|
itemIndex: string;
|
2733
2744
|
itemIndexEmptyMode: string;
|
2745
|
+
itemDisabled: string;
|
2734
2746
|
controlLabel: string;
|
2735
2747
|
itemGhostNode: string;
|
2736
2748
|
itemIconContainer: string;
|
@@ -2801,6 +2813,9 @@ declare module "defaultCss/defaultV2Css" {
|
|
2801
2813
|
cleanItemButton: string;
|
2802
2814
|
cleanItemButtonSvg: string;
|
2803
2815
|
cleanItemButtonIconId: string;
|
2816
|
+
chevronButton: string;
|
2817
|
+
chevronButtonSvg: string;
|
2818
|
+
chevronButtonIconId: string;
|
2804
2819
|
control: string;
|
2805
2820
|
controlValue: string;
|
2806
2821
|
controlValueItems: string;
|
@@ -2867,11 +2882,11 @@ declare module "trigger" {
|
|
2867
2882
|
}
|
2868
2883
|
export interface ISurveyTriggerOwner {
|
2869
2884
|
getObjects(pages: string[], questions: string[]): any[];
|
2870
|
-
setCompleted(): void;
|
2885
|
+
setCompleted(trigger: Trigger): void;
|
2871
2886
|
canBeCompleted(trigger: Trigger, isCompleted: boolean): void;
|
2872
2887
|
triggerExecuted(trigger: Trigger): void;
|
2873
2888
|
setTriggerValue(name: string, value: any, isVariable: boolean): any;
|
2874
|
-
copyTriggerValue(name: string, fromName: string):
|
2889
|
+
copyTriggerValue(name: string, fromName: string, copyDisplayValue: boolean): void;
|
2875
2890
|
focusQuestion(name: string): boolean;
|
2876
2891
|
}
|
2877
2892
|
/**
|
@@ -2961,6 +2976,8 @@ declare module "trigger" {
|
|
2961
2976
|
set setToName(val: string);
|
2962
2977
|
get fromName(): string;
|
2963
2978
|
set fromName(val: string);
|
2979
|
+
get copyDisplayValue(): boolean;
|
2980
|
+
set copyDisplayValue(val: boolean);
|
2964
2981
|
getType(): string;
|
2965
2982
|
protected onSuccess(values: HashTable<any>, properties: HashTable<any>): void;
|
2966
2983
|
}
|
@@ -3703,6 +3720,12 @@ declare module "question_file" {
|
|
3703
3720
|
currentState: string;
|
3704
3721
|
indexToShow: number;
|
3705
3722
|
containsMultiplyFiles: boolean;
|
3723
|
+
/**
|
3724
|
+
* Specifies whether users can capture and upload a photo. Applies only to mobile devices.
|
3725
|
+
*
|
3726
|
+
* Default value: `false`
|
3727
|
+
*/
|
3728
|
+
allowCameraAccess: boolean;
|
3706
3729
|
mobileFileNavigator: ActionContainer;
|
3707
3730
|
protected prevFileAction: Action;
|
3708
3731
|
protected nextFileAction: Action;
|
@@ -3790,6 +3813,7 @@ declare module "question_file" {
|
|
3790
3813
|
dragAreaPlaceholder: string;
|
3791
3814
|
get inputTitle(): string;
|
3792
3815
|
clear(doneCallback?: () => void): void;
|
3816
|
+
get renderCapture(): string;
|
3793
3817
|
get multipleRendered(): string;
|
3794
3818
|
get showRemoveButton(): any;
|
3795
3819
|
get showRemoveButtonBottom(): any;
|
@@ -4333,6 +4357,7 @@ declare module "question_baseselect" {
|
|
4333
4357
|
protected getDisplayValueEmpty(): string;
|
4334
4358
|
protected getChoicesDisplayValue(items: ItemValue[], val: any): any;
|
4335
4359
|
protected getDisplayArrayValue(keysAsText: boolean, value: any, onGetValueCallback?: (index: number) => any): string;
|
4360
|
+
private getItemDisplayValue;
|
4336
4361
|
private getFilteredChoices;
|
4337
4362
|
protected get activeChoices(): Array<ItemValue>;
|
4338
4363
|
private getQuestionWithChoices;
|
@@ -4388,7 +4413,7 @@ declare module "question_baseselect" {
|
|
4388
4413
|
protected isItemSelectedCore(item: ItemValue): boolean;
|
4389
4414
|
private clearDisabledValues;
|
4390
4415
|
protected clearIncorrectValuesCore(): void;
|
4391
|
-
protected
|
4416
|
+
protected canClearValueAnUnknown(val: any): boolean;
|
4392
4417
|
protected clearDisabledValuesCore(): void;
|
4393
4418
|
clearUnusedValues(): void;
|
4394
4419
|
getColumnClass(): string;
|
@@ -4707,6 +4732,7 @@ declare module "dragdrop/dom-adapter" {
|
|
4707
4732
|
export interface IDragDropDOMAdapter {
|
4708
4733
|
startDrag(event: PointerEvent, draggedElement: any, parentElement: any, draggedElementNode: HTMLElement, preventSaveTargetNode: boolean): void;
|
4709
4734
|
draggedElementShortcut: HTMLElement;
|
4735
|
+
rootContainer: HTMLElement;
|
4710
4736
|
}
|
4711
4737
|
export class DragDropDOMAdapter implements IDragDropDOMAdapter {
|
4712
4738
|
private dd;
|
@@ -4720,6 +4746,7 @@ declare module "dragdrop/dom-adapter" {
|
|
4720
4746
|
private savedTargetNode;
|
4721
4747
|
private scrollIntervalId;
|
4722
4748
|
constructor(dd: IDragDropEngine, longTap?: boolean);
|
4749
|
+
private get rootElement();
|
4723
4750
|
private stopLongTapIfMoveEnough;
|
4724
4751
|
private get isMicroMovement();
|
4725
4752
|
private stopLongTap;
|
@@ -4736,6 +4763,7 @@ declare module "dragdrop/dom-adapter" {
|
|
4736
4763
|
private drop;
|
4737
4764
|
private doStartDrag;
|
4738
4765
|
draggedElementShortcut: any;
|
4766
|
+
rootContainer: HTMLElement;
|
4739
4767
|
startDrag(event: PointerEvent, draggedElement: any, parentElement?: any, draggedElementNode?: HTMLElement, preventSaveTargetNode?: boolean): void;
|
4740
4768
|
}
|
4741
4769
|
}
|
@@ -4769,7 +4797,7 @@ declare module "dragdrop/core" {
|
|
4769
4797
|
constructor(surveyValue?: ISurvey, creator?: any, longTap?: boolean, domAdapter?: IDragDropDOMAdapter);
|
4770
4798
|
startDrag(event: PointerEvent, draggedElement: any, parentElement?: any, draggedElementNode?: HTMLElement, preventSaveTargetNode?: boolean): void;
|
4771
4799
|
dragInit(event: PointerEvent, draggedElement: any, parentElement?: any, draggedElementNode?: HTMLElement): void;
|
4772
|
-
protected onStartDrag(): void;
|
4800
|
+
protected onStartDrag(event?: PointerEvent): void;
|
4773
4801
|
protected isDropTargetDoesntChanged(newIsBottom: boolean): boolean;
|
4774
4802
|
protected getShortcutText(draggedElement: IShortcutText): string;
|
4775
4803
|
protected createDraggedElementShortcut(text: string, draggedElementNode?: HTMLElement, event?: PointerEvent): HTMLElement;
|
@@ -5984,6 +6012,7 @@ declare module "survey-events-api" {
|
|
5984
6012
|
* Returns `true` if survey completion is caused by the ["complete" trigger](https://surveyjs.io/form-library/documentation/design-survey/conditional-logic#complete).
|
5985
6013
|
*/
|
5986
6014
|
isCompleteOnTrigger: boolean;
|
6015
|
+
completeTrigger?: Trigger;
|
5987
6016
|
}
|
5988
6017
|
export interface CompletingEvent extends CompleteBaseEvent {
|
5989
6018
|
/**
|
@@ -7614,13 +7643,15 @@ declare module "question_multipletext" {
|
|
7614
7643
|
}
|
7615
7644
|
}
|
7616
7645
|
declare module "themes" {
|
7646
|
+
export type ImageFit = "auto" | "contain" | "cover";
|
7647
|
+
export type ImageAttachment = "fixed" | "scroll";
|
7617
7648
|
export interface ITheme {
|
7618
7649
|
cssVariables?: {
|
7619
7650
|
[index: string]: string;
|
7620
7651
|
};
|
7621
7652
|
backgroundImage?: string;
|
7622
|
-
backgroundImageFit?:
|
7623
|
-
|
7653
|
+
backgroundImageFit?: ImageFit;
|
7654
|
+
backgroundImageAttachment?: ImageAttachment;
|
7624
7655
|
backgroundOpacity?: number;
|
7625
7656
|
isCompact?: boolean;
|
7626
7657
|
}
|
@@ -7651,7 +7682,7 @@ declare module "survey" {
|
|
7651
7682
|
import { QuestionMatrixDynamicModel } from "question_matrixdynamic";
|
7652
7683
|
import { QuestionFileModel } from "question_file";
|
7653
7684
|
import { QuestionMultipleTextModel } from "question_multipletext";
|
7654
|
-
import { ITheme } from "themes";
|
7685
|
+
import { ITheme, ImageFit, ImageAttachment } from "themes";
|
7655
7686
|
import { PopupModel } from "popup";
|
7656
7687
|
/**
|
7657
7688
|
* The `SurveyModel` object contains properties and methods that allow you to control the survey and access its elements.
|
@@ -7667,6 +7698,7 @@ declare module "survey" {
|
|
7667
7698
|
static platform: string;
|
7668
7699
|
get platformName(): string;
|
7669
7700
|
notifier: Notifier;
|
7701
|
+
rootElement: HTMLElement;
|
7670
7702
|
/**
|
7671
7703
|
* A suffix added to the name of the property that stores comments.
|
7672
7704
|
*
|
@@ -8799,7 +8831,6 @@ declare module "survey" {
|
|
8799
8831
|
get themeVariables(): {
|
8800
8832
|
[index: string]: string;
|
8801
8833
|
};
|
8802
|
-
backgroundImagePosition: string;
|
8803
8834
|
_isMobile: boolean;
|
8804
8835
|
setIsMobile(newVal?: boolean): void;
|
8805
8836
|
private get isMobile();
|
@@ -8817,13 +8848,19 @@ declare module "survey" {
|
|
8817
8848
|
get locBackgroundImage(): LocalizableString;
|
8818
8849
|
renderBackgroundImage: string;
|
8819
8850
|
private updateRenderBackgroundImage;
|
8820
|
-
backgroundImageFit:
|
8851
|
+
backgroundImageFit: ImageFit;
|
8852
|
+
backgroundImageAttachment: ImageAttachment;
|
8821
8853
|
/**
|
8822
8854
|
* A value from 0 to 1 that specifies how transparent the [background image](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#backgroundImage) should be: 0 makes the image completely transparent, and 1 makes it opaque.
|
8823
8855
|
*/
|
8824
8856
|
get backgroundOpacity(): number;
|
8825
8857
|
set backgroundOpacity(val: number);
|
8826
|
-
get
|
8858
|
+
get backgroundImageStyle(): {
|
8859
|
+
opacity: number;
|
8860
|
+
backgroundImage: string;
|
8861
|
+
backgroundSize: ImageFit;
|
8862
|
+
backgroundAttachment: ImageAttachment;
|
8863
|
+
};
|
8827
8864
|
/**
|
8828
8865
|
* HTML content displayed on the [complete page](https://surveyjs.io/form-library/documentation/design-survey/create-a-multi-page-survey#complete-page).
|
8829
8866
|
*
|
@@ -9334,6 +9371,7 @@ declare module "survey" {
|
|
9334
9371
|
private updateAllElementsVisibility;
|
9335
9372
|
get areInvisibleElementsShowing(): boolean;
|
9336
9373
|
get areEmptyElementsHidden(): boolean;
|
9374
|
+
private get isAnyQuestionAnswered();
|
9337
9375
|
/**
|
9338
9376
|
* Returns `true`, if a user has already completed the survey in this browser and there is a cookie about it. Survey goes to `completedbefore` state if the function returns `true`.
|
9339
9377
|
* @see cookieName
|
@@ -9564,7 +9602,7 @@ declare module "survey" {
|
|
9564
9602
|
* @returns `false` if survey completion is cancelled within the [`onCompleting`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#onCompleting) event handler; otherwise, `true`.
|
9565
9603
|
* @see surveyPostId
|
9566
9604
|
*/
|
9567
|
-
doComplete(isCompleteOnTrigger?: boolean): boolean;
|
9605
|
+
doComplete(isCompleteOnTrigger?: boolean, completeTrigger?: Trigger): boolean;
|
9568
9606
|
private saveDataOnComplete;
|
9569
9607
|
private checkOnCompletingEvent;
|
9570
9608
|
/**
|
@@ -9584,10 +9622,11 @@ declare module "survey" {
|
|
9584
9622
|
protected doServerValidation(doComplete: boolean, isPreview?: boolean): boolean;
|
9585
9623
|
private completeServerValidation;
|
9586
9624
|
protected doNextPage(): void;
|
9587
|
-
setCompleted(): void;
|
9625
|
+
setCompleted(trigger: Trigger): void;
|
9588
9626
|
canBeCompleted(trigger: Trigger, isCompleted: boolean): void;
|
9589
9627
|
private completedByTriggers;
|
9590
9628
|
private get canBeCompletedByTrigger();
|
9629
|
+
private get completedTrigger();
|
9591
9630
|
/**
|
9592
9631
|
* Returns the HTML content for the complete page.
|
9593
9632
|
* @see completedHtml
|
@@ -10137,7 +10176,7 @@ declare module "survey" {
|
|
10137
10176
|
getTextProcessor(): ITextProcessor;
|
10138
10177
|
getObjects(pages: string[], questions: string[]): any[];
|
10139
10178
|
setTriggerValue(name: string, value: any, isVariable: boolean): void;
|
10140
|
-
copyTriggerValue(name: string, fromName: string): void;
|
10179
|
+
copyTriggerValue(name: string, fromName: string, copyDisplayValue: boolean): void;
|
10141
10180
|
triggerExecuted(trigger: Trigger): void;
|
10142
10181
|
private isFocusingQuestion;
|
10143
10182
|
private afterRenderPageTasks;
|
@@ -11031,6 +11070,7 @@ declare module "question" {
|
|
11031
11070
|
* @param onError Pass `true` if you want to focus an input field with the first validation error. Default value: `false` (focuses the first input field). Applies to question types with multiple input fields.
|
11032
11071
|
*/
|
11033
11072
|
focus(onError?: boolean): void;
|
11073
|
+
private focuscore;
|
11034
11074
|
private expandAllParents;
|
11035
11075
|
focusIn(): void;
|
11036
11076
|
protected fireCallback(callback: () => void): void;
|
@@ -12069,8 +12109,9 @@ declare module "base-interfaces" {
|
|
12069
12109
|
state: string;
|
12070
12110
|
isLazyRendering: boolean;
|
12071
12111
|
cancelPreviewByPage(panel: IPanel): any;
|
12072
|
-
|
12112
|
+
locEditText: LocalizableString;
|
12073
12113
|
cssNavigationEdit: string;
|
12114
|
+
rootElement?: HTMLElement;
|
12074
12115
|
requiredText: string;
|
12075
12116
|
beforeSettingQuestionErrors(question: IQuestion, errors: Array<SurveyError>): void;
|
12076
12117
|
beforeSettingPanelErrors(question: IPanel, errors: Array<SurveyError>): void;
|
@@ -13756,6 +13797,7 @@ declare module "dragdrop/ranking-select-to-rank" {
|
|
13756
13797
|
import { DragDropRankingChoices } from "dragdrop/ranking-choices";
|
13757
13798
|
import { QuestionRankingModel } from "question_ranking";
|
13758
13799
|
export class DragDropRankingSelectToRank extends DragDropRankingChoices {
|
13800
|
+
protected onStartDrag(event: PointerEvent): void;
|
13759
13801
|
protected findDropTargetNodeByDragOverNode(dragOverNode: HTMLElement): HTMLElement;
|
13760
13802
|
protected getDropTargetByDataAttributeValue(dataAttributeValue: string): ItemValue;
|
13761
13803
|
protected getDropTargetByNode(dropTargetNode: HTMLElement, event: PointerEvent): any;
|
@@ -13815,6 +13857,8 @@ declare module "question_ranking" {
|
|
13815
13857
|
handlePointerDown: (event: PointerEvent, choice: ItemValue, node: HTMLElement) => void;
|
13816
13858
|
private isDragStartNodeValid;
|
13817
13859
|
private get allowStartDrag();
|
13860
|
+
private canStartDragDueMaxSelectedChoices;
|
13861
|
+
checkMaxSelectedChoicesUnreached(): boolean;
|
13818
13862
|
afterRenderQuestionElement(el: HTMLElement): void;
|
13819
13863
|
beforeDestroyQuestionElement(el: HTMLElement): void;
|
13820
13864
|
handleKeydown: (event: KeyboardEvent, choice: ItemValue) => void;
|
@@ -13859,8 +13903,8 @@ declare module "question_ranking" {
|
|
13859
13903
|
*/
|
13860
13904
|
get selectToRankAreasLayout(): string;
|
13861
13905
|
set selectToRankAreasLayout(val: string);
|
13862
|
-
|
13863
|
-
|
13906
|
+
selectToRankEmptyRankedAreaText: string;
|
13907
|
+
selectToRankEmptyUnrankedAreaText: string;
|
13864
13908
|
get useFullItemSizeForShortcut(): boolean;
|
13865
13909
|
set useFullItemSizeForShortcut(val: boolean);
|
13866
13910
|
}
|
@@ -14805,6 +14849,10 @@ declare module "question_custom" {
|
|
14805
14849
|
* @see questionJSON
|
14806
14850
|
*/
|
14807
14851
|
createQuestion?: any;
|
14852
|
+
valueToQuestion?: (val: any) => any;
|
14853
|
+
valueFromQuestion?: (val: any) => any;
|
14854
|
+
getValue?: (val: any) => any;
|
14855
|
+
setValue?: (val: any) => any;
|
14808
14856
|
}
|
14809
14857
|
export class ComponentQuestionJSON {
|
14810
14858
|
name: string;
|
@@ -14821,6 +14869,8 @@ declare module "question_custom" {
|
|
14821
14869
|
onValueChanging(question: Question, name: string, newValue: any): any;
|
14822
14870
|
onItemValuePropertyChanged(question: Question, item: ItemValue, propertyName: string, name: string, newValue: any): void;
|
14823
14871
|
getDisplayValue(keyAsText: boolean, value: any, question: Question): any;
|
14872
|
+
setValueToQuestion(val: any): any;
|
14873
|
+
getValueFromQuestion(val: any): any;
|
14824
14874
|
get isComposite(): boolean;
|
14825
14875
|
}
|
14826
14876
|
export class ComponentCollection {
|
@@ -14902,6 +14952,8 @@ declare module "question_custom" {
|
|
14902
14952
|
runCondition(values: HashTable<any>, properties: HashTable<any>): void;
|
14903
14953
|
protected convertDataName(name: string): string;
|
14904
14954
|
protected convertDataValue(name: string, newValue: any): any;
|
14955
|
+
protected getContentQuestionValue(): any;
|
14956
|
+
protected setContentQuestionValue(val: any): void;
|
14905
14957
|
protected canSetValueToSurvey(): boolean;
|
14906
14958
|
protected setQuestionValue(newValue: any, updateIsAnswered?: boolean): void;
|
14907
14959
|
onSurveyValueChanged(newValue: any): void;
|
@@ -14939,6 +14991,8 @@ declare module "question_custom" {
|
|
14939
14991
|
private settingNewValue;
|
14940
14992
|
setValue(name: string, newValue: any, locNotification: any, allowNotifyValueChanged?: boolean): any;
|
14941
14993
|
private updateValueCoreWithPanelValue;
|
14994
|
+
private getContentPanelValue;
|
14995
|
+
private getValueForContentPanel;
|
14942
14996
|
private setNewValueIntoQuestion;
|
14943
14997
|
addConditionObjectsByContext(objects: Array<IConditionObject>, context: any): void;
|
14944
14998
|
protected convertDataValue(name: string, newValue: any): any;
|
@@ -14956,6 +15010,7 @@ declare module "popup-view-model" {
|
|
14956
15010
|
export const FOCUS_INPUT_SELECTOR = "input:not(:disabled):not([readonly]):not([type=hidden]),select:not(:disabled):not([readonly]),textarea:not(:disabled):not([readonly]), button:not(:disabled):not([readonly]), [tabindex]:not([tabindex^=\"-\"])";
|
14957
15011
|
export class PopupBaseViewModel extends Base {
|
14958
15012
|
protected popupSelector: string;
|
15013
|
+
protected fixedPopupContainer: string;
|
14959
15014
|
protected containerSelector: string;
|
14960
15015
|
protected scrollingContentSelector: string;
|
14961
15016
|
protected prevActiveElement: HTMLElement;
|
@@ -20819,18 +20874,23 @@ declare module "localization/turkish" {
|
|
20819
20874
|
noneItemText: string;
|
20820
20875
|
selectAllItemText: string;
|
20821
20876
|
progressText: string;
|
20877
|
+
indexText: string;
|
20822
20878
|
panelDynamicProgressText: string;
|
20879
|
+
panelDynamicTabTextFormat: string;
|
20823
20880
|
questionsProgressText: string;
|
20824
20881
|
emptySurvey: string;
|
20825
20882
|
completingSurvey: string;
|
20826
20883
|
completingSurveyBefore: string;
|
20827
20884
|
loadingSurvey: string;
|
20828
20885
|
placeholder: string;
|
20886
|
+
ratingOptionsCaption: string;
|
20829
20887
|
value: string;
|
20830
20888
|
requiredError: string;
|
20831
20889
|
requiredErrorInPanel: string;
|
20832
20890
|
requiredInAllRowsError: string;
|
20833
20891
|
numericError: string;
|
20892
|
+
minError: string;
|
20893
|
+
maxError: string;
|
20834
20894
|
textMinLength: string;
|
20835
20895
|
textMaxLength: string;
|
20836
20896
|
textMinMaxLength: string;
|
@@ -20850,16 +20910,19 @@ declare module "localization/turkish" {
|
|
20850
20910
|
loadingFile: string;
|
20851
20911
|
chooseFile: string;
|
20852
20912
|
noFileChosen: string;
|
20913
|
+
fileDragAreaPlaceholder: string;
|
20853
20914
|
confirmDelete: string;
|
20854
20915
|
keyDuplicationError: string;
|
20855
20916
|
addColumn: string;
|
20856
20917
|
addRow: string;
|
20857
20918
|
removeRow: string;
|
20919
|
+
emptyRowsText: string;
|
20858
20920
|
addPanel: string;
|
20859
20921
|
removePanel: string;
|
20860
20922
|
choices_Item: string;
|
20861
20923
|
matrix_column: string;
|
20862
20924
|
matrix_row: string;
|
20925
|
+
multipletext_itemname: string;
|
20863
20926
|
savingData: string;
|
20864
20927
|
savingDataError: string;
|
20865
20928
|
savingDataSuccess: string;
|
@@ -20873,6 +20936,7 @@ declare module "localization/turkish" {
|
|
20873
20936
|
timerLimitPage: string;
|
20874
20937
|
timerLimitSurvey: string;
|
20875
20938
|
clearCaption: string;
|
20939
|
+
signaturePlaceHolder: string;
|
20876
20940
|
chooseFileCaption: string;
|
20877
20941
|
removeFileCaption: string;
|
20878
20942
|
booleanCheckedLabel: string;
|
@@ -20880,6 +20944,16 @@ declare module "localization/turkish" {
|
|
20880
20944
|
confirmRemoveFile: string;
|
20881
20945
|
confirmRemoveAllFiles: string;
|
20882
20946
|
questionTitlePatternText: string;
|
20947
|
+
modalCancelButtonText: string;
|
20948
|
+
modalApplyButtonText: string;
|
20949
|
+
filterStringPlaceholder: string;
|
20950
|
+
emptyMessage: string;
|
20951
|
+
noEntriesText: string;
|
20952
|
+
noEntriesReadonlyText: string;
|
20953
|
+
more: string;
|
20954
|
+
tagboxDoneButtonCaption: string;
|
20955
|
+
selectToRankEmptyRankedAreaText: string;
|
20956
|
+
selectToRankEmptyUnrankedAreaText: string;
|
20883
20957
|
};
|
20884
20958
|
}
|
20885
20959
|
declare module "localization/ukrainian" {
|
@@ -21969,6 +22043,7 @@ declare module "react/dropdown-base" {
|
|
21969
22043
|
renderValueElement(dropdownListModel: DropdownListModel): JSX.Element | null;
|
21970
22044
|
protected renderInput(dropdownListModel: DropdownListModel): JSX.Element;
|
21971
22045
|
createClearButton(): JSX.Element | null;
|
22046
|
+
createChevronButton(): JSX.Element | null;
|
21972
22047
|
protected renderOther(cssClasses: any): JSX.Element;
|
21973
22048
|
componentDidUpdate(prevProps: any, prevState: any): void;
|
21974
22049
|
componentDidMount(): void;
|