survey-react 1.9.48 → 1.9.50
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 +135 -26
- package/defaultV2.min.css +2 -2
- package/modern.css +158 -12
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +124 -103
- package/survey.min.css +2 -2
- package/survey.react.d.ts +258 -111
- package/survey.react.js +1049 -437
- package/survey.react.min.js +3 -3
package/survey.react.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
* Type definition for Survey JavaScript library for React v1.9.
|
2
|
+
* Type definition for Survey JavaScript library for React v1.9.50
|
3
3
|
* Copyright (c) 2015-2022 Devsoft Baltic OÜ - https://surveyjs.io/
|
4
4
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
5
5
|
*/
|
@@ -101,7 +101,7 @@ export interface IListModel {
|
|
101
101
|
onSelectionChanged: (item: Action, ...params: any) => void;
|
102
102
|
allowSelection?: boolean;
|
103
103
|
selectedItem?: IAction;
|
104
|
-
|
104
|
+
onFilterStringChangedCallback?: (text: string) => void;
|
105
105
|
}
|
106
106
|
export interface IPosition {
|
107
107
|
left?: string | number;
|
@@ -155,10 +155,12 @@ export interface IAction {
|
|
155
155
|
*/
|
156
156
|
title?: string;
|
157
157
|
locTitle?: any;
|
158
|
+
locTitleName?: string;
|
158
159
|
/*
|
159
160
|
* The action item's tooltip.
|
160
161
|
*/
|
161
162
|
tooltip?: string;
|
163
|
+
locTooltipName?: string;
|
162
164
|
/*
|
163
165
|
* Specifies whether users can interact with the action item.
|
164
166
|
*/
|
@@ -371,7 +373,7 @@ export interface ISurvey extends ITextProcessor, ISurveyErrorOwner {
|
|
371
373
|
maxOthersLength: number;
|
372
374
|
clearValueOnDisableItems: boolean;
|
373
375
|
uploadFiles(question: IQuestion, name: string, files: any, uploadingCallback: (status: string, data: any) => any): any;
|
374
|
-
downloadFile(name: string, content: string, callback: (status: string, data: any) => any): any;
|
376
|
+
downloadFile(question: IQuestion, name: string, content: string, callback: (status: string, data: any) => any): any;
|
375
377
|
clearFiles(question: IQuestion, name: string, value: any, fileName: string, clearCallback: (status: string, data: any) => any): any;
|
376
378
|
updateChoicesFromServer(question: IQuestion, choices: any, serverResult: any): Array<any>;
|
377
379
|
loadedChoicesFromServer(question: IQuestion): void;
|
@@ -710,6 +712,10 @@ export interface ISurveyCreator {
|
|
710
712
|
export interface ISurveyHeaderProps {
|
711
713
|
survey: any;
|
712
714
|
}
|
715
|
+
export interface ITagboxFilterProps {
|
716
|
+
model: any;
|
717
|
+
question: any;
|
718
|
+
}
|
713
719
|
export interface IMatrixRowProps {
|
714
720
|
model: any;
|
715
721
|
parentMatrix: any;
|
@@ -738,7 +744,7 @@ export declare class ArrayChanges {
|
|
738
744
|
deletedItems: any;
|
739
745
|
}
|
740
746
|
/*
|
741
|
-
*
|
747
|
+
* A base class for all SurveyJS objects.
|
742
748
|
*/
|
743
749
|
export declare class Base {
|
744
750
|
constructor();
|
@@ -750,11 +756,11 @@ export declare class Base {
|
|
750
756
|
static createItemValue: (item: any, type?: string) => any;
|
751
757
|
static itemValueLocStrChanged: (arr: any) => void;
|
752
758
|
/*
|
753
|
-
* Returns true if a value
|
759
|
+
* Returns `true` if a passed `value` is an empty string, array, or object or if it equals to `undefined` or `null`.
|
754
760
|
*/
|
755
761
|
isValueEmpty(value: any, trimString?: boolean): boolean;
|
756
762
|
protected trimValue(value: any): any;
|
757
|
-
protected
|
763
|
+
protected isPropertyEmpty(value: any): boolean;
|
758
764
|
propertyHash: any;
|
759
765
|
localizableStrings: any;
|
760
766
|
arraysInfo: any;
|
@@ -766,21 +772,26 @@ export declare class Base {
|
|
766
772
|
protected isLoadingFromJsonValue: boolean;
|
767
773
|
loadingOwner: Base;
|
768
774
|
/*
|
769
|
-
*
|
770
|
-
*
|
771
|
-
*
|
772
|
-
*
|
773
|
-
*
|
775
|
+
* An event that is raised when a property of this SurveyJS object has changed.
|
776
|
+
*
|
777
|
+
* Parameters:
|
778
|
+
*
|
779
|
+
* - `sender` - A SurveyJS object whose property has changed.
|
780
|
+
* - `options.name` - The name of the changed property.
|
781
|
+
* - `options.oldValue` - An old value of the property. If the property is an array, `oldValue` contains the same array as `newValue` does.
|
782
|
+
* - `options.newValue` - A new value for the property.
|
774
783
|
*/
|
775
784
|
onPropertyChanged: EventBase<Base>;
|
776
785
|
/*
|
777
|
-
*
|
778
|
-
*
|
779
|
-
*
|
780
|
-
*
|
781
|
-
*
|
782
|
-
* options.
|
783
|
-
* options.
|
786
|
+
* An event that is raised when an [ItemValue](https://surveyjs.io/form-library/documentation/itemvalue) property is changed.
|
787
|
+
*
|
788
|
+
* Parameters:
|
789
|
+
*
|
790
|
+
* - `sender` - A SurveyJS object whose property contains an array of `ItemValue` objects.
|
791
|
+
* - `options.obj` - An `ItemValue` object.
|
792
|
+
* - `options.propertyName` - The name of the property to which an array of `ItemValue` objects is assigned (for example, `"choices"` or `"rows"`).
|
793
|
+
* - `options.name` - The name of the changed property: `"text"` or `"value"`.
|
794
|
+
* - `options.newValue` - A new value for the property.
|
784
795
|
*/
|
785
796
|
onItemValuePropertyChanged: Event<(sender: Base, options: any) => any, any>;
|
786
797
|
getPropertyValueCoreHandler: (propertiesHash: any, name: string) => any;
|
@@ -793,52 +804,55 @@ export declare class Base {
|
|
793
804
|
protected addEvent<T>(): EventBase<T>;
|
794
805
|
protected onBaseCreating(): void;
|
795
806
|
/*
|
796
|
-
* Returns the
|
807
|
+
* Returns the object type as it is used in the JSON schema.
|
797
808
|
*/
|
798
809
|
getType(): string;
|
799
810
|
/*
|
800
|
-
* Use this method to find out if the current
|
811
|
+
* Use this method to find out if the current object is of a given `typeName` or inherited from it.
|
801
812
|
*/
|
802
813
|
isDescendantOf(typeName: string): boolean;
|
803
814
|
getSurvey(isLive?: boolean): ISurvey;
|
804
815
|
/*
|
805
|
-
* Returns true if the
|
816
|
+
* Returns `true` if the survey is being designed in Survey Creator.
|
806
817
|
*/
|
807
818
|
get isDesignMode(): boolean;
|
808
819
|
/*
|
809
|
-
* Returns true if the object is
|
820
|
+
* Returns `true` if the object is included in a survey.
|
821
|
+
*
|
822
|
+
* This method may return `false`, for example, when you [create a survey model dynamically](https://surveyjs.io/form-library/documentation/design-survey-create-a-simple-survey#create-or-change-a-survey-model-dynamically).
|
810
823
|
*/
|
811
824
|
get inSurvey(): boolean;
|
812
825
|
get bindings(): Bindings;
|
813
826
|
checkBindings(valueName: string, value: any): void;
|
814
827
|
protected updateBindings(propertyName: string, value: any): void;
|
815
828
|
protected updateBindingValue(valueName: string, value: any): void;
|
816
|
-
/*
|
817
|
-
* Returns the element template name without prefix. Typically it equals to getType().
|
818
|
-
*/
|
819
829
|
getTemplate(): string;
|
820
830
|
/*
|
821
|
-
* Returns true if the object is
|
831
|
+
* Returns `true` if the object configuration is being loaded from JSON.
|
822
832
|
*/
|
823
833
|
get isLoadingFromJson(): boolean;
|
824
834
|
protected getIsLoadingFromJson(): boolean;
|
825
835
|
startLoadingFromJson(json?: any): void;
|
826
836
|
endLoadingFromJson(): void;
|
827
837
|
/*
|
828
|
-
*
|
838
|
+
* Returns a JSON object that corresponds to the current SurveyJS object.
|
829
839
|
*/
|
830
840
|
toJSON(): any;
|
831
841
|
/*
|
832
|
-
*
|
842
|
+
* Assigns a new configuration to the current SurveyJS object. This configuration is taken from a passed JSON object.
|
843
|
+
*
|
844
|
+
* The JSON object should contain only serializable properties of this SurveyJS object. Event handlers and properties that do not belong to the SurveyJS object are ignored.
|
833
845
|
*/
|
834
846
|
fromJSON(json: any): void;
|
835
847
|
onSurveyLoad(): void;
|
836
848
|
/*
|
837
|
-
*
|
849
|
+
* Creates a new object that has the same type and properties as the current SurveyJS object.
|
838
850
|
*/
|
839
851
|
clone(): Base;
|
840
852
|
/*
|
841
|
-
* Returns
|
853
|
+
* Returns a `JsonObjectProperty` object with metadata about a serializable property that belongs to the current SurveyJS object.
|
854
|
+
*
|
855
|
+
* If the property is not found, this method returns `null`.
|
842
856
|
*/
|
843
857
|
getPropertyByName(propName: string): JsonObjectProperty;
|
844
858
|
isPropertyVisible(propName: string): boolean;
|
@@ -847,7 +861,9 @@ export declare class Base {
|
|
847
861
|
localeChanged(): void;
|
848
862
|
locStrsChanged(): void;
|
849
863
|
/*
|
850
|
-
* Returns the property
|
864
|
+
* Returns the value of a property with a specified name.
|
865
|
+
*
|
866
|
+
* If the property is not found or does not have a value, this method returns either `undefined`, `defaultValue` specified in the property configuration, or a value passed as the `defaultValue` parameter.
|
851
867
|
*/
|
852
868
|
getPropertyValue(name: string, defaultValue?: any): any;
|
853
869
|
protected getPropertyValueCore(propertiesHash: any, name: string): any;
|
@@ -861,7 +877,7 @@ export declare class Base {
|
|
861
877
|
*/
|
862
878
|
checkAndSetPropertyValue(name: string, val: any): void;
|
863
879
|
/*
|
864
|
-
*
|
880
|
+
* Assigns a new value to a specified property.
|
865
881
|
*/
|
866
882
|
setPropertyValue(name: string, val: any): void;
|
867
883
|
protected setArrayPropertyDirectly(name: string, val: any, sendNotification?: boolean): void;
|
@@ -1282,7 +1298,6 @@ export declare class PopupUtils {
|
|
1282
1298
|
static updateVerticalPosition(targetRect: any, height: number, verticalPosition: any, showPointer: boolean, windowHeight: number): any;
|
1283
1299
|
static calculatePopupDirection(verticalPosition: any, horizontalPosition: any): string;
|
1284
1300
|
static calculatePointerTarget(targetRect: any, top: number, left: number, verticalPosition: any, horizontalPosition: any, marginLeft?: number, marginRight?: number): INumberPosition;
|
1285
|
-
static updatePopupWidthBeforeShow(popupModel: any, target: JSX.Element): void;
|
1286
1301
|
}
|
1287
1302
|
export declare class ProcessValue {
|
1288
1303
|
constructor();
|
@@ -1459,7 +1474,7 @@ export declare class SurveyElementBase<P, S> extends React.Component<P, S> {
|
|
1459
1474
|
protected getStateElements(): Array<Base>;
|
1460
1475
|
protected getStateElement(): Base;
|
1461
1476
|
protected get isDisplayMode(): boolean;
|
1462
|
-
protected renderLocString(locStr: any, style?: any): JSX.Element;
|
1477
|
+
protected renderLocString(locStr: any, style?: any, key?: string): JSX.Element;
|
1463
1478
|
protected canUsePropInState(key: string): boolean;
|
1464
1479
|
}
|
1465
1480
|
export declare class SurveyElementHeader extends React.Component<any, any> {
|
@@ -1650,6 +1665,7 @@ export declare class Action extends Base implements IAction, ILocalizableOwner {
|
|
1650
1665
|
iconSize: number;
|
1651
1666
|
visible: boolean;
|
1652
1667
|
tooltip: string;
|
1668
|
+
locTooltipName: string;
|
1653
1669
|
enabled: boolean;
|
1654
1670
|
showTitle: boolean;
|
1655
1671
|
action: (context?: any) => void;
|
@@ -1672,6 +1688,9 @@ export declare class Action extends Base implements IAction, ILocalizableOwner {
|
|
1672
1688
|
title: string;
|
1673
1689
|
get locTitle(): any;
|
1674
1690
|
set locTitle(val: any);
|
1691
|
+
get locTitleName(): string;
|
1692
|
+
set locTitleName(val: string);
|
1693
|
+
locStrsChanged(): void;
|
1675
1694
|
locTitleChanged: any;
|
1676
1695
|
cssClassesValue: any;
|
1677
1696
|
get cssClasses(): any;
|
@@ -1705,6 +1724,7 @@ export declare class ActionContainer<T extends Action = Action> extends Base imp
|
|
1705
1724
|
sizeMode: "default" | "small";
|
1706
1725
|
locOwner: ILocalizableOwner;
|
1707
1726
|
isEmpty: boolean;
|
1727
|
+
locStrsChanged(): void;
|
1708
1728
|
protected raiseUpdate(isResetInitialized: boolean): void;
|
1709
1729
|
protected onSet(): void;
|
1710
1730
|
protected onPush(item: T): void;
|
@@ -1992,15 +2012,21 @@ export declare class DropdownListModel extends Base {
|
|
1992
2012
|
focusFirstInputSelector: string;
|
1993
2013
|
protected listModel: ListModel;
|
1994
2014
|
protected popupCssClasses: string;
|
2015
|
+
protected onHidePopup(): void;
|
1995
2016
|
protected getAvailableItems(): Array<Action>;
|
1996
2017
|
protected createListModel(): ListModel;
|
2018
|
+
protected resetFilterString(): void;
|
2019
|
+
searchEnabled: boolean;
|
2020
|
+
filterString: string;
|
1997
2021
|
get popupModel(): any;
|
2022
|
+
get inputReadOnly(): boolean;
|
1998
2023
|
setSearchEnabled(newValue: boolean): void;
|
1999
2024
|
updateItems(): void;
|
2000
2025
|
onClick(event: any): void;
|
2001
2026
|
onClear(event: any): void;
|
2002
|
-
|
2027
|
+
keyHandler(event: any): void;
|
2003
2028
|
onBlur(event: any): void;
|
2029
|
+
scrollToFocusedItem(): void;
|
2004
2030
|
}
|
2005
2031
|
export declare class EventBase<T> extends Event<any, any> {
|
2006
2032
|
}
|
@@ -2154,6 +2180,7 @@ export declare class JsonObjectProperty implements IObject {
|
|
2154
2180
|
baseValue: any;
|
2155
2181
|
isRequiredValue: boolean;
|
2156
2182
|
isUniqueValue: boolean;
|
2183
|
+
uniquePropertyValue: string;
|
2157
2184
|
readOnlyValue: boolean;
|
2158
2185
|
visibleValue: boolean;
|
2159
2186
|
isLocalizableValue: boolean;
|
@@ -2196,6 +2223,8 @@ export declare class JsonObjectProperty implements IObject {
|
|
2196
2223
|
set isRequired(val: boolean);
|
2197
2224
|
get isUnique(): boolean;
|
2198
2225
|
set isUnique(val: boolean);
|
2226
|
+
get uniquePropertyName(): string;
|
2227
|
+
set uniquePropertyName(val: string);
|
2199
2228
|
get hasToUseGetValue(): any;
|
2200
2229
|
get defaultValue(): any;
|
2201
2230
|
set defaultValue(val: any);
|
@@ -2250,6 +2279,7 @@ export declare class List extends SurveyElementBase<IListProps, any> {
|
|
2250
2279
|
constructor(props: any);
|
2251
2280
|
get model(): any;
|
2252
2281
|
handleKeydown: (event: any) => void;
|
2282
|
+
handleMouseMove: (event: any) => void;
|
2253
2283
|
getStateElement(): any;
|
2254
2284
|
renderElement(): JSX.Element;
|
2255
2285
|
renderItems(): any;
|
@@ -2703,6 +2733,7 @@ export declare class PopupBaseViewModel extends Base {
|
|
2703
2733
|
get contentComponentData(): any;
|
2704
2734
|
get showPointer(): boolean;
|
2705
2735
|
get isModal(): boolean;
|
2736
|
+
get isFocusedContent(): boolean;
|
2706
2737
|
get showFooter(): boolean;
|
2707
2738
|
get isOverlay(): boolean;
|
2708
2739
|
get styleClass(): string;
|
@@ -2737,7 +2768,7 @@ export declare class PopupContainer extends SurveyElementBase<any, any> {
|
|
2737
2768
|
}
|
2738
2769
|
export declare class PopupModel<T = any> extends Base {
|
2739
2770
|
constructor(contentComponentName: string, contentComponentData: T, verticalPosition?: any, horizontalPosition?: any, showPointer?: boolean, isModal?: boolean, onCancel?: any, onApply?: any, onHide?: any, onShow?: any, cssClass?: string, title?: string);
|
2740
|
-
|
2771
|
+
setWidthByTarget: boolean;
|
2741
2772
|
focusFirstInputSelector: string;
|
2742
2773
|
contentComponentName: string;
|
2743
2774
|
contentComponentData: T;
|
@@ -2745,6 +2776,7 @@ export declare class PopupModel<T = any> extends Base {
|
|
2745
2776
|
horizontalPosition: any;
|
2746
2777
|
showPointer: boolean;
|
2747
2778
|
isModal: boolean;
|
2779
|
+
isFocusedContent: boolean;
|
2748
2780
|
onCancel: any;
|
2749
2781
|
onApply: any;
|
2750
2782
|
onHide: any;
|
@@ -3038,24 +3070,27 @@ export declare class SurveyButtonGroupItem extends SurveyElementBase<any, any> {
|
|
3038
3070
|
protected renderCaption(): JSX.Element;
|
3039
3071
|
}
|
3040
3072
|
/*
|
3041
|
-
*
|
3073
|
+
* A base class for the [`SurveyElement`](https://surveyjs.io/form-library/documentation/surveyelement) and [`SurveyModel`](https://surveyjs.io/form-library/documentation/surveymodel) classes.
|
3042
3074
|
*/
|
3043
3075
|
export declare class SurveyElementCore extends Base implements ILocalizableOwner {
|
3044
3076
|
constructor();
|
3045
3077
|
protected createLocTitleProperty(): LocalizableString;
|
3046
3078
|
/*
|
3047
|
-
*
|
3048
|
-
*
|
3079
|
+
* A title for the survey element. If `title` is undefined, the `name` property value is displayed instead.
|
3080
|
+
*
|
3081
|
+
* Empty pages and panels do not display their titles or names.
|
3049
3082
|
*/
|
3050
3083
|
get title(): string;
|
3051
3084
|
set title(val: string);
|
3052
3085
|
get locTitle(): LocalizableString;
|
3053
3086
|
protected getDefaultTitleValue(): string;
|
3054
3087
|
/*
|
3055
|
-
*
|
3056
|
-
* Please note, this property is hidden for questions without input, for example html question.
|
3088
|
+
* Returns `true` if the survey element has a description.
|
3057
3089
|
*/
|
3058
3090
|
hasDescription: boolean;
|
3091
|
+
/*
|
3092
|
+
* Explanatory text displayed under the title.
|
3093
|
+
*/
|
3059
3094
|
get description(): string;
|
3060
3095
|
set description(val: string);
|
3061
3096
|
updateDescriptionVisibility(newDescription: any): void;
|
@@ -3212,6 +3247,20 @@ export declare class SurveyValidator extends Base {
|
|
3212
3247
|
protected createCustomError(name: string): SurveyError;
|
3213
3248
|
toString(): string;
|
3214
3249
|
}
|
3250
|
+
export declare class TagboxFilterString extends SurveyElementBase<ITagboxFilterProps, any> {
|
3251
|
+
constructor(props: any);
|
3252
|
+
inputElement: any;
|
3253
|
+
get model(): any;
|
3254
|
+
get question(): any;
|
3255
|
+
componentDidUpdate(prevProps: any, prevState: any): void;
|
3256
|
+
componentDidMount(): void;
|
3257
|
+
updateDomElement(): void;
|
3258
|
+
onChange(e: any): void;
|
3259
|
+
keyhandler(e: any): void;
|
3260
|
+
onBlur(e: any): void;
|
3261
|
+
getStateElement(): any;
|
3262
|
+
render(): JSX.Element;
|
3263
|
+
}
|
3215
3264
|
/*
|
3216
3265
|
* A base class for all triggers.
|
3217
3266
|
* A trigger calls a method when the expression change the result: from false to true or from true to false.
|
@@ -3405,6 +3454,8 @@ export declare class DragDropSurveyElements extends DragDropCore<any> {
|
|
3405
3454
|
}
|
3406
3455
|
export declare class DropdownMultiSelectListModel extends DropdownListModel {
|
3407
3456
|
constructor(question: Question, onSelectionChanged?: (item: IAction, ...params: any) => void);
|
3457
|
+
filterStringPlaceholder: string;
|
3458
|
+
closeOnSelect: boolean;
|
3408
3459
|
protected override: any;
|
3409
3460
|
createListModel(): MultiSelectListModel;
|
3410
3461
|
selectAllItems(): void;
|
@@ -3413,6 +3464,8 @@ export declare class DropdownMultiSelectListModel extends DropdownListModel {
|
|
3413
3464
|
deselectItem(id: string): void;
|
3414
3465
|
onClear(event: any): void;
|
3415
3466
|
setHideSelectedItems(newValue: boolean): void;
|
3467
|
+
removeLastSelectedItem(): void;
|
3468
|
+
inputKeyHandler(event: any): void;
|
3416
3469
|
}
|
3417
3470
|
/*
|
3418
3471
|
* Validate e-mail address in the text input
|
@@ -3486,32 +3539,42 @@ export declare class JsonMissingTypeError extends JsonMissingTypeErrorBase {
|
|
3486
3539
|
baseClassName: string;
|
3487
3540
|
}
|
3488
3541
|
export declare class ListModel extends ActionContainer {
|
3489
|
-
constructor(items: any, onSelectionChanged: (item: Action, ...params: any) => void, allowSelection: boolean, selectedItem?: IAction,
|
3542
|
+
constructor(items: any, onSelectionChanged: (item: Action, ...params: any) => void, allowSelection: boolean, selectedItem?: IAction, onFilterStringChangedCallback?: (text: string) => void);
|
3490
3543
|
onSelectionChanged: (item: Action, ...params: any) => void;
|
3491
3544
|
allowSelection: boolean;
|
3492
3545
|
searchEnabled: boolean;
|
3493
|
-
|
3494
|
-
isEmpty: boolean;
|
3546
|
+
showFilter: boolean;
|
3495
3547
|
isExpanded: boolean;
|
3496
3548
|
selectedItem: IAction;
|
3497
|
-
|
3549
|
+
focusedItem: Action;
|
3550
|
+
filterString: string;
|
3498
3551
|
static INDENT: number;
|
3499
3552
|
static MINELEMENTCOUNT: number;
|
3500
3553
|
isItemVisible(item: Action): boolean;
|
3554
|
+
get visibleItems(): any;
|
3501
3555
|
protected onSet(): void;
|
3502
3556
|
protected getDefaultCssClasses(): any;
|
3503
3557
|
protected updateItemActiveState(): void;
|
3504
3558
|
onItemClick: (itemValue: Action) => void;
|
3505
3559
|
isItemDisabled: (itemValue: Action) => boolean;
|
3506
3560
|
isItemSelected: (itemValue: Action) => boolean;
|
3561
|
+
isItemFocused: (itemValue: Action) => boolean;
|
3507
3562
|
getItemClass: (itemValue: Action) => string;
|
3508
3563
|
getItemIndent: (itemValue: any) => string;
|
3509
|
-
get
|
3564
|
+
get filterStringPlaceholder(): string;
|
3510
3565
|
get emptyMessage(): string;
|
3511
3566
|
goToItems(event: any): void;
|
3567
|
+
onMouseMove(event: any): void;
|
3512
3568
|
onKeyDown(event: any): void;
|
3513
3569
|
onPointerDown(event: any, item: any): void;
|
3514
3570
|
refresh(): void;
|
3571
|
+
resetFocusedItem(): void;
|
3572
|
+
focusFirstVisibleItem(): void;
|
3573
|
+
focusLastVisibleItem(): void;
|
3574
|
+
initFocusedItem(): void;
|
3575
|
+
focusNextVisibleItem(): void;
|
3576
|
+
focusPrevVisibleItem(): void;
|
3577
|
+
selectFocusedItem(): void;
|
3515
3578
|
}
|
3516
3579
|
export declare class MatrixDropdownRowModel extends MatrixDropdownRowModelBase {
|
3517
3580
|
constructor(name: string, item: ItemValue, data: IMatrixDropdownData, value: any);
|
@@ -3622,7 +3685,7 @@ export declare class SurveyCustomWidget extends SurveyQuestionElementBase {
|
|
3622
3685
|
protected renderElement(): JSX.Element;
|
3623
3686
|
}
|
3624
3687
|
/*
|
3625
|
-
*
|
3688
|
+
* A base class for all survey elements.
|
3626
3689
|
*/
|
3627
3690
|
export declare class SurveyElement extends SurveyElementCore implements ISurveyElement {
|
3628
3691
|
constructor(name: string);
|
@@ -3645,28 +3708,35 @@ export declare class SurveyElement extends SurveyElementCore implements ISurveyE
|
|
3645
3708
|
protected getSkeletonComponentNameCore(): string;
|
3646
3709
|
get skeletonComponentName(): string;
|
3647
3710
|
/*
|
3648
|
-
*
|
3711
|
+
* Gets and sets the survey element's expand state.
|
3712
|
+
*
|
3713
|
+
* Possible values:
|
3714
|
+
*
|
3715
|
+
* - `"collapsed"` - The survey element displays only `title` and `description`.
|
3716
|
+
* - `"expanded"` - The survey element is displayed in full.
|
3649
3717
|
*/
|
3650
3718
|
get state(): string;
|
3651
3719
|
set state(val: string);
|
3652
3720
|
/*
|
3653
|
-
* Returns true if the
|
3721
|
+
* Returns `true` if the survey element is collapsed.
|
3654
3722
|
*/
|
3655
3723
|
get isCollapsed(): boolean;
|
3656
3724
|
/*
|
3657
|
-
* Returns true if the
|
3725
|
+
* Returns `true` if the survey element is expanded.
|
3658
3726
|
*/
|
3659
3727
|
get isExpanded(): boolean;
|
3660
3728
|
/*
|
3661
|
-
*
|
3729
|
+
* Collapses the survey element.
|
3730
|
+
*
|
3731
|
+
* In collapsed state, the element displays only `title` and `description`.
|
3662
3732
|
*/
|
3663
3733
|
collapse(): void;
|
3664
3734
|
/*
|
3665
|
-
*
|
3735
|
+
* Expands the survey element.
|
3666
3736
|
*/
|
3667
3737
|
expand(): void;
|
3668
3738
|
/*
|
3669
|
-
*
|
3739
|
+
* Toggles the survey element's `state` between collapsed and expanded.
|
3670
3740
|
*/
|
3671
3741
|
toggleState(): boolean;
|
3672
3742
|
get hasStateButton(): boolean;
|
@@ -3701,18 +3771,25 @@ export declare class SurveyElement extends SurveyElementCore implements ISurveyE
|
|
3701
3771
|
protected get isInternal(): boolean;
|
3702
3772
|
get areInvisibleElementsShowing(): boolean;
|
3703
3773
|
get isVisible(): boolean;
|
3774
|
+
/*
|
3775
|
+
* Returns `true` if the survey element or its parent element is read-only.
|
3776
|
+
*/
|
3704
3777
|
get isReadOnly(): boolean;
|
3705
3778
|
/*
|
3706
|
-
*
|
3707
|
-
* Please note, this property is hidden for question without input, for example html question.
|
3779
|
+
* Makes the survey element read-only.
|
3708
3780
|
*/
|
3709
3781
|
get readOnly(): boolean;
|
3710
3782
|
set readOnly(val: boolean);
|
3711
3783
|
protected onReadOnlyChanged(): void;
|
3712
3784
|
cssClassesValue: any;
|
3713
3785
|
/*
|
3714
|
-
* Returns
|
3715
|
-
*
|
3786
|
+
* Returns an object in which keys are UI elements and values are CSS classes applied to them.
|
3787
|
+
*
|
3788
|
+
* Use the following events of the [`SurveyModel`](https://surveyjs.io/form-library/documentation/surveymodel) object to override CSS classes:
|
3789
|
+
*
|
3790
|
+
* - [`onUpdatePageCssClasses`](https://surveyjs.io/form-library/documentation/surveymodel#onUpdatePageCssClasses)
|
3791
|
+
* - [`onUpdatePanelCssClasses`](https://surveyjs.io/form-library/documentation/surveymodel#onUpdatePanelCssClasses)
|
3792
|
+
* - [`onUpdateQuestionCssClasses`](https://surveyjs.io/form-library/documentation/surveymodel#onUpdateQuestionCssClasses)
|
3716
3793
|
*/
|
3717
3794
|
get cssClasses(): any;
|
3718
3795
|
protected calcCssClasses(css: any): any;
|
@@ -3722,7 +3799,7 @@ export declare class SurveyElement extends SurveyElementCore implements ISurveyE
|
|
3722
3799
|
protected clearCssClasses(): void;
|
3723
3800
|
protected getIsLoadingFromJson(): boolean;
|
3724
3801
|
/*
|
3725
|
-
*
|
3802
|
+
* A survey element identifier.
|
3726
3803
|
*/
|
3727
3804
|
get name(): string;
|
3728
3805
|
set name(val: string);
|
@@ -3730,14 +3807,15 @@ export declare class SurveyElement extends SurveyElementCore implements ISurveyE
|
|
3730
3807
|
protected onNameChanged(oldValue: string): void;
|
3731
3808
|
protected updateBindingValue(valueName: string, value: any): void;
|
3732
3809
|
/*
|
3733
|
-
*
|
3810
|
+
* Validation errors. Call the `hasErrors()` method to validate survey element data.
|
3734
3811
|
*/
|
3735
3812
|
get errors(): any;
|
3736
3813
|
set errors(val: any);
|
3737
3814
|
hasVisibleErrors: boolean;
|
3738
3815
|
/*
|
3739
|
-
* Returns true if
|
3740
|
-
*
|
3816
|
+
* Returns `true` if the survey element or its child elements have a validation error.
|
3817
|
+
*
|
3818
|
+
* This property contains the result of the most recent validation. This result may be outdated. Call the `hasErrors` method to get an up-to-date value.
|
3741
3819
|
*/
|
3742
3820
|
get containsErrors(): boolean;
|
3743
3821
|
updateContainsErrors(): void;
|
@@ -3751,21 +3829,21 @@ export declare class SurveyElement extends SurveyElementCore implements ISurveyE
|
|
3751
3829
|
endLoadingFromJson(): void;
|
3752
3830
|
setVisibleIndex(index: number): number;
|
3753
3831
|
/*
|
3754
|
-
* Returns true if
|
3832
|
+
* Returns `true` if the survey element is a page.
|
3755
3833
|
*/
|
3756
3834
|
get isPage(): boolean;
|
3757
3835
|
/*
|
3758
|
-
* Returns true if
|
3836
|
+
* Returns `true` if the survey element is a panel.
|
3759
3837
|
*/
|
3760
3838
|
get isPanel(): boolean;
|
3761
3839
|
/*
|
3762
|
-
* Returns true if
|
3840
|
+
* Returns `true` if the survey element is a question.
|
3763
3841
|
*/
|
3764
3842
|
get isQuestion(): boolean;
|
3765
3843
|
delete(): void;
|
3766
3844
|
locOwner: ILocalizableOwner;
|
3767
3845
|
/*
|
3768
|
-
* Returns the
|
3846
|
+
* Returns the survey's [locale](https://surveyjs.io/form-library/documentation/surveymodel#locale).
|
3769
3847
|
*/
|
3770
3848
|
getLocale(): string;
|
3771
3849
|
getMarkdownHtml(text: string, name: string): string;
|
@@ -3790,32 +3868,38 @@ export declare class SurveyElement extends SurveyElementCore implements ISurveyE
|
|
3790
3868
|
isSingleInRow: boolean;
|
3791
3869
|
protected get hasFrameV2(): boolean;
|
3792
3870
|
/*
|
3793
|
-
*
|
3871
|
+
* Sets survey element width in CSS values.
|
3872
|
+
*
|
3873
|
+
* Default value: ""
|
3794
3874
|
*/
|
3795
3875
|
get width(): string;
|
3796
3876
|
set width(val: string);
|
3797
3877
|
/*
|
3798
|
-
*
|
3878
|
+
* Gets or sets minimum survey element width in CSS values.
|
3879
|
+
*
|
3880
|
+
* Default value: "300px" (taken from [`settings.minWidth`](https://surveyjs.io/form-library/documentation/settings#minWidth))
|
3799
3881
|
*/
|
3800
3882
|
get minWidth(): string;
|
3801
3883
|
set minWidth(val: string);
|
3802
3884
|
/*
|
3803
|
-
*
|
3885
|
+
* Gets or sets maximum survey element width in CSS values.
|
3886
|
+
*
|
3887
|
+
* Default value: "100%" (taken from [`settings.maxWidth`](https://surveyjs.io/form-library/documentation/settings#maxWidth))
|
3804
3888
|
*/
|
3805
3889
|
get maxWidth(): string;
|
3806
3890
|
set maxWidth(val: string);
|
3807
3891
|
/*
|
3808
|
-
*
|
3892
|
+
* Returns a calculated width of the rendered survey element in CSS values.
|
3809
3893
|
*/
|
3810
3894
|
get renderWidth(): string;
|
3811
3895
|
set renderWidth(val: string);
|
3812
3896
|
/*
|
3813
|
-
*
|
3897
|
+
* Increases or decreases indent of the survey element content from the left edge. Accepts positive integer values and 0.
|
3814
3898
|
*/
|
3815
3899
|
get indent(): number;
|
3816
3900
|
set indent(val: number);
|
3817
3901
|
/*
|
3818
|
-
*
|
3902
|
+
* Increases or decreases indent of the survey element content from the right edge. Accepts positive integer values and 0.
|
3819
3903
|
*/
|
3820
3904
|
get rightIndent(): number;
|
3821
3905
|
set rightIndent(val: number);
|
@@ -4158,6 +4242,7 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
|
|
4158
4242
|
/*
|
4159
4243
|
* The event is fired on downloading a file in QuestionFile. Use this event to pass the file to a preview.
|
4160
4244
|
* - `sender` - the survey object that fires the event.
|
4245
|
+
* - `question` - the question instance.
|
4161
4246
|
* - `options.name` - the question name.
|
4162
4247
|
* - `options.content` - the file content.
|
4163
4248
|
* - `options.fileValue` - single file question value.
|
@@ -5410,7 +5495,7 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
|
|
5410
5495
|
/*
|
5411
5496
|
* Downloads a file from server
|
5412
5497
|
*/
|
5413
|
-
downloadFile(questionName: string, fileValue: any, callback: (status: string, data: any) => any): void;
|
5498
|
+
downloadFile(question: IQuestion, questionName: string, fileValue: any, callback: (status: string, data: any) => any): void;
|
5414
5499
|
/*
|
5415
5500
|
* Clears files from server.
|
5416
5501
|
*/
|
@@ -5476,7 +5561,7 @@ export declare class SurveyModel extends SurveyElementCore implements ISurvey, I
|
|
5476
5561
|
/*
|
5477
5562
|
* Returns a panel by its name.
|
5478
5563
|
*/
|
5479
|
-
getPanelByName(name: string, caseInsensitive?: boolean):
|
5564
|
+
getPanelByName(name: string, caseInsensitive?: boolean): PanelModel;
|
5480
5565
|
/*
|
5481
5566
|
* Returns a list of all survey's panels.
|
5482
5567
|
*/
|
@@ -6139,13 +6224,15 @@ export declare class DragDropRankingChoices extends DragDropChoices {
|
|
6139
6224
|
protected doClear: any;
|
6140
6225
|
}
|
6141
6226
|
export declare class MultiSelectListModel extends ListModel {
|
6142
|
-
constructor(items: any, onSelectionChanged: (item: Action, status: string) => void, allowSelection: boolean, selectedItems?: any,
|
6227
|
+
constructor(items: any, onSelectionChanged: (item: Action, status: string) => void, allowSelection: boolean, selectedItems?: any, onFilterStringChangedCallback?: (text: string) => void);
|
6143
6228
|
selectedItems: any;
|
6144
6229
|
hideSelectedItems: boolean;
|
6145
6230
|
onItemClick: (item: Action) => void;
|
6146
6231
|
isItemDisabled: (itemValue: Action) => boolean;
|
6147
6232
|
isItemSelected: (itemValue: Action) => boolean;
|
6148
6233
|
setSelectedItems(newItems: any): void;
|
6234
|
+
initFocusedItem(): void;
|
6235
|
+
selectFocusedItem(): void;
|
6149
6236
|
}
|
6150
6237
|
/*
|
6151
6238
|
* A base class for a Panel and Page objects.
|
@@ -6160,7 +6247,7 @@ export declare class PanelModelBase extends SurveyElement implements IPanel, ICo
|
|
6160
6247
|
removeElementCallback: (element: IElement) => void;
|
6161
6248
|
onGetQuestionTitleLocation: any;
|
6162
6249
|
/*
|
6163
|
-
* Returns the
|
6250
|
+
* Returns the object type as it is used in the JSON schema.
|
6164
6251
|
*/
|
6165
6252
|
getType(): string;
|
6166
6253
|
setSurveyImpl(value: ISurveyImpl, isLight?: boolean): void;
|
@@ -6351,9 +6438,6 @@ export declare class PanelModelBase extends SurveyElement implements IPanel, ICo
|
|
6351
6438
|
protected beforeSetVisibleIndex(index: number): number;
|
6352
6439
|
protected getPanelStartIndex(index: number): number;
|
6353
6440
|
protected isContinueNumbering(): boolean;
|
6354
|
-
/*
|
6355
|
-
* Returns true if readOnly property is true or survey is in display mode or parent panel/page is readOnly.
|
6356
|
-
*/
|
6357
6441
|
get isReadOnly(): boolean;
|
6358
6442
|
protected onReadOnlyChanged(): void;
|
6359
6443
|
updateElementCss(reNew?: boolean): void;
|
@@ -6743,9 +6827,6 @@ export declare class Question extends SurveyElement implements IQuestion, ICondi
|
|
6743
6827
|
set hasOther(val: boolean);
|
6744
6828
|
protected hasOtherChanged(): void;
|
6745
6829
|
get requireUpdateCommentValue(): boolean;
|
6746
|
-
/*
|
6747
|
-
* Returns true if readOnly property is true or survey is in display mode or parent panel/page is readOnly.
|
6748
|
-
*/
|
6749
6830
|
get isReadOnly(): boolean;
|
6750
6831
|
get isInputReadOnly(): boolean;
|
6751
6832
|
get renderedInputReadOnly(): string;
|
@@ -7036,16 +7117,20 @@ export declare class SurveyQuestionCustom extends SurveyQuestionUncontrolledElem
|
|
7036
7117
|
}
|
7037
7118
|
export declare class SurveyQuestionDropdownBase<T> extends SurveyQuestionUncontrolledElement<T> {
|
7038
7119
|
constructor(props: any);
|
7120
|
+
inputElement: any;
|
7039
7121
|
click: (event: any) => void;
|
7040
7122
|
clear: (event: any) => void;
|
7041
|
-
|
7123
|
+
keyhandler: (event: any) => void;
|
7042
7124
|
blur: (event: any) => void;
|
7043
7125
|
protected setValueCore(newValue: any): void;
|
7044
7126
|
protected getValueCore(): any;
|
7045
7127
|
protected renderSelect(cssClasses: any): JSX.Element;
|
7046
|
-
protected renderInput(): JSX.Element;
|
7128
|
+
protected renderInput(dropdownListModel: any): JSX.Element;
|
7047
7129
|
createClearButton(): JSX.Element;
|
7048
7130
|
protected renderOther(cssClasses: any): JSX.Element;
|
7131
|
+
componentDidUpdate(prevProps: any, prevState: any): void;
|
7132
|
+
componentDidMount(): void;
|
7133
|
+
updateInputDomElement(): void;
|
7049
7134
|
}
|
7050
7135
|
export declare class SurveyQuestionMatrixDropdown extends SurveyQuestionMatrixDropdownBase {
|
7051
7136
|
constructor(props: any);
|
@@ -7411,6 +7496,7 @@ export declare class QuestionBooleanModel extends Question {
|
|
7411
7496
|
protected setDefaultValue(): void;
|
7412
7497
|
protected getDisplayValueCore(keysAsText: boolean, value: any): any;
|
7413
7498
|
getItemCss(): string;
|
7499
|
+
getCheckboxItemCss(): string;
|
7414
7500
|
getLabelCss(checked: boolean): string;
|
7415
7501
|
get svgIcon(): string;
|
7416
7502
|
get allowClick(): boolean;
|
@@ -8392,7 +8478,7 @@ export declare class QuestionSelectBase extends Question {
|
|
8392
8478
|
set otherText(val: string);
|
8393
8479
|
get locOtherText(): LocalizableString;
|
8394
8480
|
/*
|
8395
|
-
*
|
8481
|
+
* Displays the "Select All", "None", and "Other" choices on individual rows.
|
8396
8482
|
*/
|
8397
8483
|
separateSpecialChoices: boolean;
|
8398
8484
|
/*
|
@@ -8433,6 +8519,7 @@ export declare class QuestionSelectBase extends Question {
|
|
8433
8519
|
protected getDisplayValueCore(keysAsText: boolean, value: any): any;
|
8434
8520
|
protected getDisplayValueEmpty(): string;
|
8435
8521
|
protected getChoicesDisplayValue(items: any, val: any): any;
|
8522
|
+
protected getDisplayArrayValue(keysAsText: boolean, value: any, onGetValueCallback?: (index: number) => any): string;
|
8436
8523
|
protected get activeChoices(): any;
|
8437
8524
|
protected getChoicesFromQuestion(question: QuestionSelectBase): Array<ItemValue>;
|
8438
8525
|
protected get hasActiveChoices(): boolean;
|
@@ -8468,6 +8555,7 @@ export declare class QuestionSelectBase extends Question {
|
|
8468
8555
|
* Returns true if item is selected
|
8469
8556
|
*/
|
8470
8557
|
isItemSelected(item: ItemValue): boolean;
|
8558
|
+
protected isItemSelectedCore(item: ItemValue): boolean;
|
8471
8559
|
protected clearIncorrectValuesCore(): void;
|
8472
8560
|
protected canClearValueAnUnknow(val: any): boolean;
|
8473
8561
|
protected clearDisabledValuesCore(): void;
|
@@ -8627,7 +8715,7 @@ export declare class SurveyQuestionRatingDropdown extends SurveyQuestionDropdown
|
|
8627
8715
|
export declare class SurveyQuestionTagbox extends SurveyQuestionDropdownBase<QuestionTagboxModel> {
|
8628
8716
|
constructor(props: any);
|
8629
8717
|
protected renderItem(key: string, item: any): JSX.Element;
|
8630
|
-
protected renderInput(): JSX.Element;
|
8718
|
+
protected renderInput(dropdownListModel: any): JSX.Element;
|
8631
8719
|
protected renderElement(): JSX.Element;
|
8632
8720
|
}
|
8633
8721
|
/*
|
@@ -8813,7 +8901,7 @@ export declare class QuestionDropdownModel extends QuestionSelectBase {
|
|
8813
8901
|
*/
|
8814
8902
|
itemComponent: string;
|
8815
8903
|
/*
|
8816
|
-
* Specifies whether
|
8904
|
+
* Specifies whether users can enter a value into the input field to filter the drop-down list.
|
8817
8905
|
*/
|
8818
8906
|
searchEnabled: boolean;
|
8819
8907
|
/*
|
@@ -8828,6 +8916,8 @@ export declare class QuestionDropdownModel extends QuestionSelectBase {
|
|
8828
8916
|
onOpened: EventBase<QuestionDropdownModel>;
|
8829
8917
|
onOpenedCallBack(): void;
|
8830
8918
|
protected onVisibleChoicesChanged(): void;
|
8919
|
+
protected getFirstInputElementId(): string;
|
8920
|
+
getInputId(): string;
|
8831
8921
|
onClick(e: any): void;
|
8832
8922
|
onKeyUp(event: any): void;
|
8833
8923
|
}
|
@@ -9388,7 +9478,7 @@ export declare class QuestionCheckboxModel extends QuestionCheckboxBase {
|
|
9388
9478
|
/*
|
9389
9479
|
* Returns true if item is checked
|
9390
9480
|
*/
|
9391
|
-
|
9481
|
+
isItemSelectedCore(item: ItemValue): boolean;
|
9392
9482
|
/*
|
9393
9483
|
* Set this property different to 0 to limit the number of selected choices in the checkbox.
|
9394
9484
|
*/
|
@@ -9457,6 +9547,7 @@ export declare class QuestionImagePickerModel extends QuestionCheckboxBase {
|
|
9457
9547
|
*/
|
9458
9548
|
isItemSelected(item: ItemValue): boolean;
|
9459
9549
|
clearIncorrectValues(): void;
|
9550
|
+
protected getDisplayValueCore(keysAsText: boolean, value: any): any;
|
9460
9551
|
/*
|
9461
9552
|
* Show label under the image.
|
9462
9553
|
*/
|
@@ -9785,16 +9876,23 @@ export declare class QuestionRankingModel extends QuestionCheckboxModel {
|
|
9785
9876
|
export declare class QuestionTagboxModel extends QuestionCheckboxModel {
|
9786
9877
|
constructor(name: string);
|
9787
9878
|
dropdownListModel: DropdownMultiSelectListModel;
|
9788
|
-
get readOnlyText():
|
9879
|
+
get readOnlyText(): any;
|
9789
9880
|
onSurveyLoad(): void;
|
9790
9881
|
/*
|
9791
9882
|
* Specifies whether to display a button that clears the selected value.
|
9792
9883
|
*/
|
9793
9884
|
allowClear: boolean;
|
9794
9885
|
/*
|
9795
|
-
* Specifies whether
|
9886
|
+
* Specifies whether users can enter a value into the input field to filter the drop-down list.
|
9796
9887
|
*/
|
9797
9888
|
searchEnabled: boolean;
|
9889
|
+
/*
|
9890
|
+
* The name of a component used to render drop-down menu items.
|
9891
|
+
*/
|
9892
|
+
itemComponent: string;
|
9893
|
+
/*
|
9894
|
+
* Specifies whether to remove selected items from the drop-down list.
|
9895
|
+
*/
|
9798
9896
|
hideSelectedItems: boolean;
|
9799
9897
|
/*
|
9800
9898
|
* The clean files button caption.
|
@@ -9814,6 +9912,8 @@ export declare class QuestionTagboxModel extends QuestionCheckboxModel {
|
|
9814
9912
|
onOpened: EventBase<QuestionTagboxModel>;
|
9815
9913
|
onOpenedCallBack(): void;
|
9816
9914
|
protected onVisibleChoicesChanged(): void;
|
9915
|
+
protected getFirstInputElementId(): string;
|
9916
|
+
getInputId(): string;
|
9817
9917
|
}
|
9818
9918
|
export declare function property(options?: any): (target: any, key: string) => void;
|
9819
9919
|
export declare function propertyArray(options?: IArrayPropertyDecoratorOptions): (target: any, key: string) => void;
|
@@ -10076,7 +10176,10 @@ export declare var defaultListCss: {
|
|
10076
10176
|
itemSelected: string,
|
10077
10177
|
itemWithIcon: string,
|
10078
10178
|
itemDisabled: string,
|
10179
|
+
itemFocused: string,
|
10079
10180
|
itemIcon: string,
|
10181
|
+
itemSeparator: string,
|
10182
|
+
itemBody: string,
|
10080
10183
|
itemsContainer: string,
|
10081
10184
|
filter: string,
|
10082
10185
|
filterIcon: string,
|
@@ -10187,7 +10290,6 @@ export declare var defaultStandardCss: {
|
|
10187
10290
|
rootRadio: string,
|
10188
10291
|
item: string,
|
10189
10292
|
control: string,
|
10190
|
-
controlCheckbox: string,
|
10191
10293
|
itemChecked: string,
|
10192
10294
|
itemIndeterminate: string,
|
10193
10295
|
itemDisabled: string,
|
@@ -10195,11 +10297,15 @@ export declare var defaultStandardCss: {
|
|
10195
10297
|
slider: string,
|
10196
10298
|
label: string,
|
10197
10299
|
disabledLabel: string,
|
10198
|
-
|
10199
|
-
|
10200
|
-
|
10201
|
-
|
10202
|
-
|
10300
|
+
rootCheckbox: string,
|
10301
|
+
checkboxItem: string,
|
10302
|
+
checkboxItemChecked: string,
|
10303
|
+
controlCheckbox: string,
|
10304
|
+
checkboxControlLabel: string,
|
10305
|
+
checkboxItemIndeterminate: string,
|
10306
|
+
checkboxItemDisabled: string,
|
10307
|
+
checkboxMaterialDecorator: string,
|
10308
|
+
checkboxItemDecorator: string,
|
10203
10309
|
},
|
10204
10310
|
checkbox: {
|
10205
10311
|
root: string,
|
@@ -10243,6 +10349,7 @@ export declare var defaultStandardCss: {
|
|
10243
10349
|
cleanButtonSvg: string,
|
10244
10350
|
cleanButtonIconId: string,
|
10245
10351
|
controlValue: string,
|
10352
|
+
filterStringInput: string,
|
10246
10353
|
},
|
10247
10354
|
html: {
|
10248
10355
|
root: string,
|
@@ -10434,6 +10541,8 @@ export declare var defaultStandardCss: {
|
|
10434
10541
|
control: string,
|
10435
10542
|
controlValue: string,
|
10436
10543
|
controlEmpty: string,
|
10544
|
+
placeholderInput: string,
|
10545
|
+
filterStringInput: string,
|
10437
10546
|
},
|
10438
10547
|
};
|
10439
10548
|
export declare var surveyTimerFunctions: {
|
@@ -11355,27 +11464,36 @@ export declare var defaultV2Css: {
|
|
11355
11464
|
root: string,
|
11356
11465
|
rootRadio: string,
|
11357
11466
|
item: string,
|
11358
|
-
radioItem: string,
|
11359
|
-
radioItemChecked: string,
|
11360
|
-
radioLabel: string,
|
11361
|
-
radioControlLabel: string,
|
11362
|
-
radioFieldset: string,
|
11363
11467
|
itemOnError: string,
|
11364
11468
|
control: string,
|
11365
|
-
controlCheckbox: string,
|
11366
11469
|
itemChecked: string,
|
11367
11470
|
itemIndeterminate: string,
|
11368
11471
|
itemDisabled: string,
|
11369
11472
|
label: string,
|
11370
11473
|
switch: string,
|
11371
11474
|
disabledLabel: string,
|
11372
|
-
itemDecorator: string,
|
11373
|
-
materialDecorator: string,
|
11374
|
-
itemRadioDecorator: string,
|
11375
|
-
materialRadioDecorator: string,
|
11376
11475
|
sliderText: string,
|
11377
11476
|
slider: string,
|
11378
|
-
|
11477
|
+
radioItem: string,
|
11478
|
+
radioItemChecked: string,
|
11479
|
+
radioLabel: string,
|
11480
|
+
radioControlLabel: string,
|
11481
|
+
radioFieldset: string,
|
11482
|
+
itemRadioDecorator: string,
|
11483
|
+
materialRadioDecorator: string,
|
11484
|
+
itemRadioControl: string,
|
11485
|
+
rootCheckbox: string,
|
11486
|
+
checkboxItem: string,
|
11487
|
+
checkboxLabel: string,
|
11488
|
+
checkboxItemOnError: string,
|
11489
|
+
checkboxItemIndeterminate: string,
|
11490
|
+
checkboxItemChecked: string,
|
11491
|
+
checkboxItemDecorator: string,
|
11492
|
+
checkboxItemDisabled: string,
|
11493
|
+
controlCheckbox: string,
|
11494
|
+
checkboxMaterialDecorator: string,
|
11495
|
+
checkboxControlLabel: string,
|
11496
|
+
svgIconCheckedId: string,
|
11379
11497
|
},
|
11380
11498
|
text: {
|
11381
11499
|
root: string,
|
@@ -11413,6 +11531,7 @@ export declare var defaultV2Css: {
|
|
11413
11531
|
controlDisabled: string,
|
11414
11532
|
controlEmpty: string,
|
11415
11533
|
controlLabel: string,
|
11534
|
+
filterStringInput: string,
|
11416
11535
|
materialDecorator: string,
|
11417
11536
|
},
|
11418
11537
|
imagepicker: {
|
@@ -11535,6 +11654,7 @@ export declare var defaultV2Css: {
|
|
11535
11654
|
controlValue: string,
|
11536
11655
|
controlDisabled: string,
|
11537
11656
|
controlEmpty: string,
|
11657
|
+
filterStringInput: string,
|
11538
11658
|
onError: string,
|
11539
11659
|
},
|
11540
11660
|
comment: {
|
@@ -11641,6 +11761,7 @@ export declare var defaultV2Css: {
|
|
11641
11761
|
list: {
|
11642
11762
|
root: string,
|
11643
11763
|
item: string,
|
11764
|
+
itemBody: string,
|
11644
11765
|
itemSelected: string,
|
11645
11766
|
},
|
11646
11767
|
actionBar: {
|
@@ -11679,9 +11800,12 @@ export declare var defaultV2Css: {
|
|
11679
11800
|
cleanItemButtonIconId: string,
|
11680
11801
|
control: string,
|
11681
11802
|
controlValue: string,
|
11803
|
+
controlValueItems: string,
|
11804
|
+
placeholderInput: string,
|
11682
11805
|
controlDisabled: string,
|
11683
11806
|
controlEmpty: string,
|
11684
11807
|
controlLabel: string,
|
11808
|
+
filterStringInput: string,
|
11685
11809
|
materialDecorator: string,
|
11686
11810
|
},
|
11687
11811
|
};
|
@@ -11887,7 +12011,6 @@ export declare var modernCss: {
|
|
11887
12011
|
small: string,
|
11888
12012
|
item: string,
|
11889
12013
|
control: string,
|
11890
|
-
controlCheckbox: string,
|
11891
12014
|
itemChecked: string,
|
11892
12015
|
itemIndeterminate: string,
|
11893
12016
|
itemDisabled: string,
|
@@ -11895,10 +12018,15 @@ export declare var modernCss: {
|
|
11895
12018
|
slider: string,
|
11896
12019
|
label: string,
|
11897
12020
|
disabledLabel: string,
|
11898
|
-
|
11899
|
-
|
11900
|
-
|
11901
|
-
|
12021
|
+
rootCheckbox: string,
|
12022
|
+
checkboxItem: string,
|
12023
|
+
checkboxItemChecked: string,
|
12024
|
+
controlCheckbox: string,
|
12025
|
+
checkboxControlLabel: string,
|
12026
|
+
checkboxItemIndeterminate: string,
|
12027
|
+
checkboxItemDisabled: string,
|
12028
|
+
checkboxMaterialDecorator: string,
|
12029
|
+
checkboxItemDecorator: string,
|
11902
12030
|
indeterminatePath: string,
|
11903
12031
|
svgIconCheckedId: string,
|
11904
12032
|
svgIconUncheckedId: string,
|
@@ -11927,8 +12055,26 @@ export declare var modernCss: {
|
|
11927
12055
|
cleanButton: string,
|
11928
12056
|
cleanButtonSvg: string,
|
11929
12057
|
cleanButtonIconId: string,
|
12058
|
+
filterStringInput: string,
|
11930
12059
|
controlValue: string,
|
11931
12060
|
},
|
12061
|
+
tagbox: {
|
12062
|
+
root: string,
|
12063
|
+
small: string,
|
12064
|
+
selectWrapper: string,
|
12065
|
+
other: string,
|
12066
|
+
cleanButton: string,
|
12067
|
+
cleanButtonSvg: string,
|
12068
|
+
cleanButtonIconId: string,
|
12069
|
+
cleanItemButton: string,
|
12070
|
+
cleanItemButtonSvg: string,
|
12071
|
+
cleanItemButtonIconId: string,
|
12072
|
+
control: string,
|
12073
|
+
controlValue: string,
|
12074
|
+
controlEmpty: string,
|
12075
|
+
placeholderInput: string,
|
12076
|
+
filterStringInput: string,
|
12077
|
+
},
|
11932
12078
|
imagepicker: {
|
11933
12079
|
root: string,
|
11934
12080
|
column: string,
|
@@ -12013,6 +12159,7 @@ export declare var modernCss: {
|
|
12013
12159
|
itemText: string,
|
12014
12160
|
maxText: string,
|
12015
12161
|
itemDisabled: string,
|
12162
|
+
filterStringInput: string,
|
12016
12163
|
},
|
12017
12164
|
comment: {
|
12018
12165
|
root: string,
|