@ironsource/shared-ui 2.0.0-rc.6 → 2.0.0-rc.8
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/Button.vue_vue_type_style_index_0_scoped_bfe31a93_lang.css +1 -0
- package/ButtonBase.vue_vue_type_style_index_0_scoped_9021cac4_lang.css +1 -0
- package/ButtonV4.vue_vue_type_style_index_0_scoped_31e553e8_lang.css +1 -0
- package/Checkbox.vue_vue_type_style_index_0_scoped_58dedb90_lang.css +1 -0
- package/CheckboxV4.vue_vue_type_style_index_0_scoped_ee3e6d82_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_7a670808_lang.css +1 -0
- package/Dropdown.vue_vue_type_style_index_0_scoped_d4f8e790_lang.css +1 -0
- package/FilterDropdown.vue_vue_type_style_index_0_scoped_b42d8b45_lang.css +1 -0
- package/FilterSearchInput.vue_vue_type_style_index_0_scoped_51006ea0_lang.css +1 -0
- package/FiltersPanel.vue_vue_type_style_index_0_scoped_9d2f3413_lang.css +1 -0
- package/FiltersPanelV4.vue_vue_type_style_index_0_scoped_39061862_lang.css +1 -0
- package/IconButton.vue_vue_type_style_index_0_scoped_6dffd3f6_lang.css +1 -0
- package/IncludeExclude.vue_vue_type_style_index_0_scoped_2a01a791_lang.css +1 -0
- package/IncludeExcludeDragDrop.vue_vue_type_style_index_0_scoped_85bff8f4_lang.css +1 -0
- package/IncludeExcludeOption.vue_vue_type_style_index_0_scoped_91bc7787_lang.css +1 -0
- package/Label.vue_vue_type_style_index_0_scoped_48e00c04_lang.css +1 -0
- package/Option.vue_vue_type_style_index_0_scoped_3d6ce2fc_lang.css +1 -0
- package/OptionV4.vue_vue_type_style_index_0_scoped_92add735_lang.css +1 -0
- package/Popover.vue_vue_type_style_index_0_scoped_25eb53db_lang.css +1 -0
- package/RadioButton.vue_vue_type_style_index_0_scoped_3c6b715c_lang.css +1 -0
- package/RadioButtonV4.vue_vue_type_style_index_0_scoped_14be812e_lang.css +1 -0
- package/RadioGroup.vue_vue_type_style_index_0_scoped_3071ef24_lang.css +1 -0
- package/RadioGroupV4.vue_vue_type_style_index_0_scoped_f8e8cbab_lang.css +1 -0
- package/SearchInput.vue_vue_type_style_index_0_scoped_b256f8ef_lang.css +1 -0
- package/Snackbar.vue_vue_type_style_index_0_scoped_cec4f8e5_lang.css +1 -0
- package/SnackbarV4.vue_vue_type_style_index_0_scoped_48311746_lang.css +1 -0
- package/components/autocompleteDropdown/AutocompleteDropdown.vue.d.ts +1 -1
- package/components/autocompleteDropdown/AutocompleteDropdown.vue2.js +3 -3
- package/components/autocompleteDropdown/index.d.ts +1 -1
- package/components/button/v3/Button.vue.d.ts +8 -31
- package/components/button/v3/Button.vue.js +3 -3
- package/components/button/v3/Button.vue2.js +43 -75
- package/components/button/{common → v3}/ButtonBase.vue.d.ts +9 -9
- package/components/button/{common → v3}/ButtonBase.vue.js +3 -3
- package/components/button/{common → v3}/ButtonBase.vue2.js +3 -3
- package/components/button/v3/IconButton.vue.js +2 -2
- package/components/button/v3/IconButton.vue2.js +4 -4
- package/components/button/v3/LoaderCircleIcon.vue2.js +0 -0
- package/components/button/v3/LoaderDotsIcon.vue2.js +0 -0
- package/components/button/v3/index.d.ts +130 -0
- package/components/button/v4/ButtonV4.vue.d.ts +21 -6
- package/components/button/v4/ButtonV4.vue.js +4 -4
- package/components/button/v4/ButtonV4.vue2.js +41 -35
- package/components/button/v4/index.d.ts +72 -15
- package/components/checkbox/common/Checkbox.common.d.ts +11 -0
- package/components/checkbox/common/Checkbox.common.js +32 -0
- package/components/checkbox/v3/Checkbox.vue.js +7 -0
- package/components/checkbox/v3/Checkbox.vue2.js +99 -0
- package/components/checkbox/{icons → v3/icons}/checked.vue.js +1 -1
- package/components/checkbox/{icons → v3/icons}/indeterminate.vue.js +1 -1
- package/components/checkbox/{icons → v3/icons}/unchecked.vue.js +1 -1
- package/components/checkbox/v4/CheckboxV4.vue.d.ts +53 -0
- package/components/checkbox/v4/CheckboxV4.vue.js +7 -0
- package/components/checkbox/v4/CheckboxV4.vue2.js +107 -0
- package/components/checkbox/v4/icons/CheckedDisabledState.vue.js +38 -0
- package/components/checkbox/v4/icons/CheckedState.vue.d.ts +2 -0
- package/components/checkbox/v4/icons/CheckedState.vue.js +38 -0
- package/components/checkbox/v4/icons/IndeterminateDisabledState.vue.d.ts +2 -0
- package/components/checkbox/v4/icons/IndeterminateDisabledState.vue.js +40 -0
- package/components/checkbox/v4/icons/IndeterminateState.vue.d.ts +2 -0
- package/components/checkbox/v4/icons/IndeterminateState.vue.js +40 -0
- package/components/checkbox/v4/icons/UncheckedDisabledState.vue.d.ts +2 -0
- package/components/checkbox/v4/icons/UncheckedDisabledState.vue.js +31 -0
- package/components/checkbox/v4/icons/UncheckedState.vue.d.ts +2 -0
- package/components/checkbox/v4/icons/UncheckedState.vue.js +31 -0
- package/components/checkbox/v4/index.d.ts +152 -0
- package/components/checkbox/v4/index.js +6 -0
- package/components/chip/v3/Chip.vue.d.ts +1 -1
- package/components/chip/v3/index.d.ts +20 -20
- package/components/chip/v4/ChipV4.vue.d.ts +1 -1
- package/components/chip/v4/index.d.ts +20 -20
- package/components/dialog/v3/Dialog.vue.d.ts +1 -1
- package/components/dialog/v3/index.d.ts +4 -4
- package/components/dialog/v4/DialogV4.vue.d.ts +1 -1
- package/components/dialog/v4/index.d.ts +4 -4
- package/components/dropdown/v3/Dropdown.vue.d.ts +5 -5
- package/components/dropdown/v3/Dropdown.vue.js +2 -2
- package/components/dropdown/v3/Dropdown.vue2.js +5 -5
- package/components/dropdown/v3/Label.vue.js +7 -0
- package/components/dropdown/{common → v3}/Label.vue2.js +2 -2
- package/components/dropdown/v3/Option.vue.js +7 -0
- package/components/dropdown/{common → v3}/Option.vue2.js +3 -3
- package/components/dropdown/{common → v3}/SearchInput.vue.js +2 -2
- package/components/dropdown/{common → v3}/SearchInput.vue2.js +2 -2
- package/components/dropdown/v3/index.d.ts +62 -62
- package/components/dropdown/v3/index.js +3 -3
- package/components/dropdown/v4/ChipDropdownTrigger.vue.d.ts +1 -1
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.d.ts +3 -3
- package/components/dropdown/v4/DropdownV4.vue.d.ts +2 -2
- package/components/dropdown/v4/OptionV4.vue.js +3 -3
- package/components/dropdown/v4/OptionV4.vue2.js +2 -2
- package/components/dropdown/v4/index.d.ts +111 -111
- package/components/emptyState/v3/EmptyState.vue.d.ts +3 -3
- package/components/emptyState/v3/index.d.ts +7 -7
- package/components/filterDropdown/FilterDropdown.vue.d.ts +1 -1
- package/components/filterDropdown/FilterDropdown.vue.js +2 -2
- package/components/filterDropdown/FilterDropdown.vue2.js +7 -7
- package/components/filterDropdown/index.d.ts +2 -2
- package/components/filtersPanel/v3/FilterSearchInput.vue.d.ts +2 -0
- package/components/filtersPanel/v3/FilterSearchInput.vue.js +7 -0
- package/components/filtersPanel/{FilterSearchInput.vue2.js → v3/FilterSearchInput.vue2.js} +6 -6
- package/components/filtersPanel/v3/FiltersPanel.vue.js +7 -0
- package/components/filtersPanel/{FiltersPanel.vue2.js → v3/FiltersPanel.vue2.js} +1 -1
- package/components/filtersPanel/v4/FiltersPanelV4.vue.d.ts +44 -0
- package/components/filtersPanel/v4/FiltersPanelV4.vue.js +7 -0
- package/components/filtersPanel/v4/FiltersPanelV4.vue2.js +23 -0
- package/components/filtersPanel/v4/index.d.ts +101 -0
- package/components/filtersPanel/v4/index.js +6 -0
- package/components/filtersPanel/v4/storyConsts.d.ts +20 -0
- package/components/icon/icons/FiltersSearch.vue.d.ts +2 -0
- package/components/icon/v3/icons/index.d.ts +3 -0
- package/components/icon/v3/icons/index.js +3 -0
- package/components/icon/v3/index.d.ts +3 -0
- package/components/includeExclude/IncludeExclude.vue.d.ts +2 -2
- package/components/includeExclude/IncludeExclude.vue.js +3 -3
- package/components/includeExclude/IncludeExclude.vue2.js +23 -24
- package/components/includeExclude/IncludeExcludeAppHeader.vue.d.ts +2 -2
- package/components/includeExclude/IncludeExcludeChipFilter.vue.d.ts +2 -2
- package/components/includeExclude/IncludeExcludeDragDrop.vue.d.ts +2 -2
- package/components/includeExclude/IncludeExcludeDragDrop.vue.js +3 -3
- package/components/includeExclude/IncludeExcludeDragDrop.vue2.js +31 -32
- package/components/includeExclude/IncludeExcludeOption.vue.js +5 -5
- package/components/includeExclude/IncludeExcludeOption.vue2.js +2 -2
- package/components/includeExclude/index.d.ts +135 -135
- package/components/input/v3/Input.vue.d.ts +3 -3
- package/components/input/v3/index.d.ts +82 -82
- package/components/input/v4/TextField.vue.d.ts +6 -6
- package/components/input/v4/index.d.ts +103 -103
- package/components/menu/Menu.vue.d.ts +1 -1
- package/components/menu/index.d.ts +20 -20
- package/components/multibar/MultiBar.vue.d.ts +1 -1
- package/components/multibar/index.d.ts +1 -1
- package/components/popover/Popover.vue.js +6 -36
- package/components/popover/Popover.vue2.js +36 -3
- package/components/popover/index.d.ts +16 -16
- package/components/popover/index.js +2 -3
- package/components/radioButton/common/radioGroup.common.d.ts +3 -0
- package/components/radioButton/common/radioGroup.common.js +26 -0
- package/components/radioButton/v3/RadioButton.vue.js +7 -0
- package/components/radioButton/v3/RadioButton.vue2.js +79 -0
- package/components/radioButton/v3/RadioGroup.vue.js +7 -0
- package/components/radioButton/v3/RadioGroup.vue2.js +29 -0
- package/components/radioButton/v4/RadioButtonV4.vue.d.ts +59 -0
- package/components/radioButton/v4/RadioButtonV4.vue.js +7 -0
- package/components/radioButton/v4/RadioButtonV4.vue2.js +67 -0
- package/components/radioButton/v4/RadioGroupV4.vue.d.ts +61 -0
- package/components/radioButton/v4/RadioGroupV4.vue.js +7 -0
- package/components/radioButton/v4/RadioGroupV4.vue2.js +29 -0
- package/components/radioButton/v4/index.d.ts +334 -0
- package/components/radioButton/v4/index.js +8 -0
- package/components/snackbar/common/notify.d.ts +3 -0
- package/components/snackbar/common/notify.js +82 -0
- package/components/snackbar/common/snackbar.common.d.ts +11 -0
- package/components/snackbar/common/snackbar.common.js +51 -0
- package/components/snackbar/v3/Snackbar.vue.js +7 -0
- package/components/snackbar/v3/Snackbar.vue2.js +129 -0
- package/components/snackbar/v3/index.d.ts +3 -0
- package/components/snackbar/v3/index.js +10 -0
- package/components/snackbar/v4/SnackbarV4.vue.d.ts +206 -0
- package/components/snackbar/v4/SnackbarV4.vue.js +7 -0
- package/components/snackbar/v4/SnackbarV4.vue2.js +137 -0
- package/components/snackbar/v4/index.d.ts +4 -0
- package/components/snackbar/v4/index.js +11 -0
- package/components/table/v3/index.d.ts +16 -16
- package/components/table/v4/DataGrid.vue.d.ts +1 -1
- package/components/table/v4/DataGrid.vue.js +2 -2
- package/components/table/v4/DataGrid.vue2.js +28 -29
- package/components/table/v4/index.d.ts +20 -20
- package/components/toggle/v3/Toggle.vue.d.ts +1 -1
- package/components/toggle/v3/index.d.ts +17 -17
- package/components/toggle/v4/ToggleV4.vue.d.ts +2 -2
- package/index.d.ts +2125 -828
- package/index.js +145 -152
- package/package.json +40 -15
- package/testids/index.d.ts +8 -0
- package/testids/index.js +14 -13
- package/Button.vue_vue_type_style_index_0_scoped_d92097c8_lang.css +0 -1
- package/ButtonBase.vue_vue_type_style_index_0_scoped_70baba59_lang.css +0 -1
- package/ButtonV4.vue_vue_type_style_index_0_scoped_43578f8c_lang.css +0 -1
- package/Checkbox.vue_vue_type_style_index_0_scoped_518c02d0_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_f080f37f_lang.css +0 -1
- package/Dropdown.vue_vue_type_style_index_0_scoped_0114904e_lang.css +0 -1
- package/FilterDropdown.vue_vue_type_style_index_0_scoped_b25c5605_lang.css +0 -1
- package/FilterSearchInput.vue_vue_type_style_index_0_scoped_9198bf4e_lang.css +0 -1
- package/FiltersPanel.vue_vue_type_style_index_0_scoped_2996b384_lang.css +0 -1
- package/IconButton.vue_vue_type_style_index_0_scoped_2fe9bc4c_lang.css +0 -1
- package/IncludeExclude.vue_vue_type_style_index_0_scoped_2c9debd6_lang.css +0 -1
- package/IncludeExcludeDragDrop.vue_vue_type_style_index_0_scoped_ff32d111_lang.css +0 -1
- package/IncludeExcludeOption.vue_vue_type_style_index_0_scoped_4a87e4fd_lang.css +0 -1
- package/Label.vue_vue_type_style_index_0_scoped_5faaafce_lang.css +0 -1
- package/Option.vue_vue_type_style_index_0_scoped_2432f13f_lang.css +0 -1
- package/OptionV4.vue_vue_type_style_index_0_scoped_b879fe79_lang.css +0 -1
- package/RadioButton.vue_vue_type_style_index_0_scoped_f5d3359c_lang.css +0 -1
- package/RadioGroup.vue_vue_type_style_index_0_scoped_50bc6963_lang.css +0 -1
- package/SearchInput.vue_vue_type_style_index_0_scoped_0b1ea2f6_lang.css +0 -1
- package/Snackbar.vue_vue_type_style_index_0_scoped_d14230ca_lang.css +0 -1
- package/components/button/common/ButtonSuper.vue.d.ts +0 -52
- package/components/checkbox/Checkbox.vue.js +0 -7
- package/components/checkbox/Checkbox.vue2.js +0 -97
- package/components/dropdown/common/Label.vue.js +0 -7
- package/components/dropdown/common/Option.vue.js +0 -7
- package/components/filtersPanel/FilterSearchInput.vue.js +0 -7
- package/components/filtersPanel/FiltersPanel.vue.js +0 -7
- package/components/radioButton/RadioButton.vue.js +0 -7
- package/components/radioButton/RadioButton.vue2.js +0 -82
- package/components/radioButton/RadioGroup.vue.js +0 -7
- package/components/radioButton/RadioGroup.vue2.js +0 -44
- package/components/snackbar/Snackbar.vue.js +0 -7
- package/components/snackbar/Snackbar.vue2.js +0 -150
- package/components/snackbar/index.d.ts +0 -3
- package/components/snackbar/index.js +0 -6
- package/components/snackbar/notify.js +0 -84
- /package/{Popover.vue_vue_type_style_index_0_lang.css → Popover.vue_vue_type_style_index_1_lang.css} +0 -0
- /package/components/button/{consts.d.ts → common/consts.d.ts} +0 -0
- /package/components/button/{consts.js → common/consts.js} +0 -0
- /package/components/button/{icon → v3}/LoaderCircleIcon.vue.d.ts +0 -0
- /package/components/button/{icon → v3}/LoaderCircleIcon.vue.js +0 -0
- /package/components/button/{icon → v3}/LoaderDotsIcon.vue.d.ts +0 -0
- /package/components/button/{icon → v3}/LoaderDotsIcon.vue.js +0 -0
- /package/components/checkbox/{Checkbox.vue.d.ts → v3/Checkbox.vue.d.ts} +0 -0
- /package/components/checkbox/{icons → v3/icons}/checked.vue.d.ts +0 -0
- /package/components/checkbox/{icons → v3/icons}/indeterminate.vue.d.ts +0 -0
- /package/components/checkbox/{icons → v3/icons}/unchecked.vue.d.ts +0 -0
- /package/components/checkbox/{index.d.ts → v3/index.d.ts} +0 -0
- /package/components/checkbox/{index.js → v3/index.js} +0 -0
- /package/components/{filtersPanel/FilterSearchInput.vue.d.ts → checkbox/v4/icons/CheckedDisabledState.vue.d.ts} +0 -0
- /package/components/dropdown/{common → v3}/Label.vue.d.ts +0 -0
- /package/components/dropdown/{common → v3}/Option.vue.d.ts +0 -0
- /package/components/dropdown/{common → v3}/SearchInput.vue.d.ts +0 -0
- /package/components/filtersPanel/{Filter.d.ts → v3/Filter.d.ts} +0 -0
- /package/components/filtersPanel/{index.d.ts → v3/index.d.ts} +0 -0
- /package/components/filtersPanel/{index.js → v3/index.js} +0 -0
- /package/components/filtersPanel/{useHiddenFilter.d.ts → v3/useHiddenFilter.d.ts} +0 -0
- /package/components/filtersPanel/{useHiddenFilter.js → v3/useHiddenFilter.js} +0 -0
- /package/components/radioButton/{useRadio.d.ts → common/useRadio.d.ts} +0 -0
- /package/components/radioButton/{useRadio.js → common/useRadio.js} +0 -0
- /package/components/radioButton/{RadioButton.vue.d.ts → v3/RadioButton.vue.d.ts} +0 -0
- /package/components/radioButton/{RadioGroup.vue.d.ts → v3/RadioGroup.vue.d.ts} +0 -0
- /package/components/radioButton/{index.d.ts → v3/index.d.ts} +0 -0
- /package/components/radioButton/{index.js → v3/index.js} +0 -0
- /package/components/snackbar/{notify.d.ts → common/notify_old.d.ts} +0 -0
- /package/components/snackbar/{snackbar.types.d.ts → common/snackbar.types.d.ts} +0 -0
- /package/components/snackbar/{snackbar.types.js → common/snackbar.types.js} +0 -0
- /package/components/snackbar/{Snackbar.vue.d.ts → v3/Snackbar.vue.d.ts} +0 -0
|
@@ -21,10 +21,6 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
21
21
|
type: import("vue").PropType<unknown[]>;
|
|
22
22
|
required: true;
|
|
23
23
|
};
|
|
24
|
-
feedbackVariant: {
|
|
25
|
-
type: import("vue").PropType<string>;
|
|
26
|
-
default: string;
|
|
27
|
-
};
|
|
28
24
|
open: {
|
|
29
25
|
type: import("vue").PropType<boolean>;
|
|
30
26
|
required: true;
|
|
@@ -47,6 +43,10 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
47
43
|
type: import("vue").PropType<unknown>;
|
|
48
44
|
required: true;
|
|
49
45
|
};
|
|
46
|
+
feedbackVariant: {
|
|
47
|
+
type: import("vue").PropType<string>;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
50
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
51
51
|
clear: () => void;
|
|
52
52
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -67,10 +67,6 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
67
67
|
type: import("vue").PropType<unknown[]>;
|
|
68
68
|
required: true;
|
|
69
69
|
};
|
|
70
|
-
feedbackVariant: {
|
|
71
|
-
type: import("vue").PropType<string>;
|
|
72
|
-
default: string;
|
|
73
|
-
};
|
|
74
70
|
open: {
|
|
75
71
|
type: import("vue").PropType<boolean>;
|
|
76
72
|
required: true;
|
|
@@ -93,15 +89,19 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
93
89
|
type: import("vue").PropType<unknown>;
|
|
94
90
|
required: true;
|
|
95
91
|
};
|
|
92
|
+
feedbackVariant: {
|
|
93
|
+
type: import("vue").PropType<string>;
|
|
94
|
+
default: string;
|
|
95
|
+
};
|
|
96
96
|
}>> & {
|
|
97
97
|
onClear?: () => any;
|
|
98
98
|
}, {
|
|
99
99
|
label: string;
|
|
100
100
|
testId: string;
|
|
101
101
|
disabled: boolean;
|
|
102
|
-
feedbackVariant: string;
|
|
103
102
|
open: boolean;
|
|
104
103
|
displayedValue: any;
|
|
104
|
+
feedbackVariant: string;
|
|
105
105
|
}> | ({
|
|
106
106
|
new (...args: any[]): {
|
|
107
107
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -115,13 +115,13 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
115
115
|
selected: any;
|
|
116
116
|
options: any;
|
|
117
117
|
singleAppSelection: boolean;
|
|
118
|
+
placeholder: string;
|
|
119
|
+
open: boolean;
|
|
118
120
|
mandatory: boolean;
|
|
121
|
+
feedbackVariant: "error" | "success" | "warning";
|
|
119
122
|
hoverHelpText: string;
|
|
120
123
|
hoverHelpTextPlacement: "auto" | "auto-start" | "auto-end" | "top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
121
|
-
placeholder: string;
|
|
122
124
|
feedbackText: string;
|
|
123
|
-
feedbackVariant: "error" | "success" | "warning";
|
|
124
|
-
open: boolean;
|
|
125
125
|
brandIconType: "android" | "ios";
|
|
126
126
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
127
127
|
label: {
|
|
@@ -157,10 +157,23 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
157
157
|
type: import("vue").PropType<boolean>;
|
|
158
158
|
default: boolean;
|
|
159
159
|
};
|
|
160
|
+
placeholder: {
|
|
161
|
+
type: import("vue").PropType<string>;
|
|
162
|
+
default: string;
|
|
163
|
+
};
|
|
164
|
+
open: {
|
|
165
|
+
type: import("vue").PropType<boolean>;
|
|
166
|
+
required: true;
|
|
167
|
+
default: boolean;
|
|
168
|
+
};
|
|
160
169
|
mandatory: {
|
|
161
170
|
type: import("vue").PropType<boolean>;
|
|
162
171
|
default: boolean;
|
|
163
172
|
};
|
|
173
|
+
feedbackVariant: {
|
|
174
|
+
type: import("vue").PropType<"error" | "success" | "warning">;
|
|
175
|
+
default: any;
|
|
176
|
+
};
|
|
164
177
|
hoverHelpText: {
|
|
165
178
|
type: import("vue").PropType<string>;
|
|
166
179
|
default: string;
|
|
@@ -169,30 +182,17 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
169
182
|
type: import("vue").PropType<"auto" | "auto-start" | "auto-end" | "top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
170
183
|
default: string;
|
|
171
184
|
};
|
|
172
|
-
placeholder: {
|
|
173
|
-
type: import("vue").PropType<string>;
|
|
174
|
-
default: string;
|
|
175
|
-
};
|
|
176
185
|
feedbackText: {
|
|
177
186
|
type: import("vue").PropType<string>;
|
|
178
187
|
default: string;
|
|
179
188
|
};
|
|
180
|
-
feedbackVariant: {
|
|
181
|
-
type: import("vue").PropType<"error" | "success" | "warning">;
|
|
182
|
-
default: any;
|
|
183
|
-
};
|
|
184
|
-
open: {
|
|
185
|
-
type: import("vue").PropType<boolean>;
|
|
186
|
-
required: true;
|
|
187
|
-
default: boolean;
|
|
188
|
-
};
|
|
189
189
|
brandIconType: {
|
|
190
190
|
type: import("vue").PropType<"android" | "ios">;
|
|
191
191
|
default: any;
|
|
192
192
|
};
|
|
193
193
|
}>> & {
|
|
194
194
|
onClick?: () => any;
|
|
195
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "size" | "testId" | "loading" | "disabled" | "selected" | "options" | "singleAppSelection" | "
|
|
195
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "size" | "testId" | "loading" | "disabled" | "selected" | "options" | "singleAppSelection" | "placeholder" | "open" | "mandatory" | "feedbackVariant" | "hoverHelpText" | "hoverHelpTextPlacement" | "feedbackText" | "brandIconType">;
|
|
196
196
|
$attrs: {
|
|
197
197
|
[x: string]: unknown;
|
|
198
198
|
};
|
|
@@ -240,10 +240,23 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
240
240
|
type: import("vue").PropType<boolean>;
|
|
241
241
|
default: boolean;
|
|
242
242
|
};
|
|
243
|
+
placeholder: {
|
|
244
|
+
type: import("vue").PropType<string>;
|
|
245
|
+
default: string;
|
|
246
|
+
};
|
|
247
|
+
open: {
|
|
248
|
+
type: import("vue").PropType<boolean>;
|
|
249
|
+
required: true;
|
|
250
|
+
default: boolean;
|
|
251
|
+
};
|
|
243
252
|
mandatory: {
|
|
244
253
|
type: import("vue").PropType<boolean>;
|
|
245
254
|
default: boolean;
|
|
246
255
|
};
|
|
256
|
+
feedbackVariant: {
|
|
257
|
+
type: import("vue").PropType<"error" | "success" | "warning">;
|
|
258
|
+
default: any;
|
|
259
|
+
};
|
|
247
260
|
hoverHelpText: {
|
|
248
261
|
type: import("vue").PropType<string>;
|
|
249
262
|
default: string;
|
|
@@ -252,23 +265,10 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
252
265
|
type: import("vue").PropType<"auto" | "auto-start" | "auto-end" | "top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
253
266
|
default: string;
|
|
254
267
|
};
|
|
255
|
-
placeholder: {
|
|
256
|
-
type: import("vue").PropType<string>;
|
|
257
|
-
default: string;
|
|
258
|
-
};
|
|
259
268
|
feedbackText: {
|
|
260
269
|
type: import("vue").PropType<string>;
|
|
261
270
|
default: string;
|
|
262
271
|
};
|
|
263
|
-
feedbackVariant: {
|
|
264
|
-
type: import("vue").PropType<"error" | "success" | "warning">;
|
|
265
|
-
default: any;
|
|
266
|
-
};
|
|
267
|
-
open: {
|
|
268
|
-
type: import("vue").PropType<boolean>;
|
|
269
|
-
required: true;
|
|
270
|
-
default: boolean;
|
|
271
|
-
};
|
|
272
272
|
brandIconType: {
|
|
273
273
|
type: import("vue").PropType<"android" | "ios">;
|
|
274
274
|
default: any;
|
|
@@ -286,13 +286,13 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
286
286
|
selected: any;
|
|
287
287
|
options: any;
|
|
288
288
|
singleAppSelection: boolean;
|
|
289
|
+
placeholder: string;
|
|
290
|
+
open: boolean;
|
|
289
291
|
mandatory: boolean;
|
|
292
|
+
feedbackVariant: "error" | "success" | "warning";
|
|
290
293
|
hoverHelpText: string;
|
|
291
294
|
hoverHelpTextPlacement: "auto" | "auto-start" | "auto-end" | "top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
292
|
-
placeholder: string;
|
|
293
295
|
feedbackText: string;
|
|
294
|
-
feedbackVariant: "error" | "success" | "warning";
|
|
295
|
-
open: boolean;
|
|
296
296
|
brandIconType: "android" | "ios";
|
|
297
297
|
}, {}, string> & {
|
|
298
298
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -348,10 +348,23 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
348
348
|
type: import("vue").PropType<boolean>;
|
|
349
349
|
default: boolean;
|
|
350
350
|
};
|
|
351
|
+
placeholder: {
|
|
352
|
+
type: import("vue").PropType<string>;
|
|
353
|
+
default: string;
|
|
354
|
+
};
|
|
355
|
+
open: {
|
|
356
|
+
type: import("vue").PropType<boolean>;
|
|
357
|
+
required: true;
|
|
358
|
+
default: boolean;
|
|
359
|
+
};
|
|
351
360
|
mandatory: {
|
|
352
361
|
type: import("vue").PropType<boolean>;
|
|
353
362
|
default: boolean;
|
|
354
363
|
};
|
|
364
|
+
feedbackVariant: {
|
|
365
|
+
type: import("vue").PropType<"error" | "success" | "warning">;
|
|
366
|
+
default: any;
|
|
367
|
+
};
|
|
355
368
|
hoverHelpText: {
|
|
356
369
|
type: import("vue").PropType<string>;
|
|
357
370
|
default: string;
|
|
@@ -360,23 +373,10 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
360
373
|
type: import("vue").PropType<"auto" | "auto-start" | "auto-end" | "top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
361
374
|
default: string;
|
|
362
375
|
};
|
|
363
|
-
placeholder: {
|
|
364
|
-
type: import("vue").PropType<string>;
|
|
365
|
-
default: string;
|
|
366
|
-
};
|
|
367
376
|
feedbackText: {
|
|
368
377
|
type: import("vue").PropType<string>;
|
|
369
378
|
default: string;
|
|
370
379
|
};
|
|
371
|
-
feedbackVariant: {
|
|
372
|
-
type: import("vue").PropType<"error" | "success" | "warning">;
|
|
373
|
-
default: any;
|
|
374
|
-
};
|
|
375
|
-
open: {
|
|
376
|
-
type: import("vue").PropType<boolean>;
|
|
377
|
-
required: true;
|
|
378
|
-
default: boolean;
|
|
379
|
-
};
|
|
380
380
|
brandIconType: {
|
|
381
381
|
type: import("vue").PropType<"android" | "ios">;
|
|
382
382
|
default: any;
|
|
@@ -421,10 +421,23 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
421
421
|
type: import("vue").PropType<boolean>;
|
|
422
422
|
default: boolean;
|
|
423
423
|
};
|
|
424
|
+
placeholder: {
|
|
425
|
+
type: import("vue").PropType<string>;
|
|
426
|
+
default: string;
|
|
427
|
+
};
|
|
428
|
+
open: {
|
|
429
|
+
type: import("vue").PropType<boolean>;
|
|
430
|
+
required: true;
|
|
431
|
+
default: boolean;
|
|
432
|
+
};
|
|
424
433
|
mandatory: {
|
|
425
434
|
type: import("vue").PropType<boolean>;
|
|
426
435
|
default: boolean;
|
|
427
436
|
};
|
|
437
|
+
feedbackVariant: {
|
|
438
|
+
type: import("vue").PropType<"error" | "success" | "warning">;
|
|
439
|
+
default: any;
|
|
440
|
+
};
|
|
428
441
|
hoverHelpText: {
|
|
429
442
|
type: import("vue").PropType<string>;
|
|
430
443
|
default: string;
|
|
@@ -433,23 +446,10 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
433
446
|
type: import("vue").PropType<"auto" | "auto-start" | "auto-end" | "top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end">;
|
|
434
447
|
default: string;
|
|
435
448
|
};
|
|
436
|
-
placeholder: {
|
|
437
|
-
type: import("vue").PropType<string>;
|
|
438
|
-
default: string;
|
|
439
|
-
};
|
|
440
449
|
feedbackText: {
|
|
441
450
|
type: import("vue").PropType<string>;
|
|
442
451
|
default: string;
|
|
443
452
|
};
|
|
444
|
-
feedbackVariant: {
|
|
445
|
-
type: import("vue").PropType<"error" | "success" | "warning">;
|
|
446
|
-
default: any;
|
|
447
|
-
};
|
|
448
|
-
open: {
|
|
449
|
-
type: import("vue").PropType<boolean>;
|
|
450
|
-
required: true;
|
|
451
|
-
default: boolean;
|
|
452
|
-
};
|
|
453
453
|
brandIconType: {
|
|
454
454
|
type: import("vue").PropType<"android" | "ios">;
|
|
455
455
|
default: any;
|
|
@@ -467,13 +467,13 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
467
467
|
selected: any;
|
|
468
468
|
options: any;
|
|
469
469
|
singleAppSelection: boolean;
|
|
470
|
+
placeholder: string;
|
|
471
|
+
open: boolean;
|
|
470
472
|
mandatory: boolean;
|
|
473
|
+
feedbackVariant: "error" | "success" | "warning";
|
|
471
474
|
hoverHelpText: string;
|
|
472
475
|
hoverHelpTextPlacement: "auto" | "auto-start" | "auto-end" | "top" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
|
|
473
|
-
placeholder: string;
|
|
474
476
|
feedbackText: string;
|
|
475
|
-
feedbackVariant: "error" | "success" | "warning";
|
|
476
|
-
open: boolean;
|
|
477
477
|
brandIconType: "android" | "ios";
|
|
478
478
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
479
479
|
$slots: {
|
|
@@ -685,15 +685,15 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
685
685
|
container: string;
|
|
686
686
|
popperClass: string;
|
|
687
687
|
selected: any;
|
|
688
|
-
distance: number;
|
|
689
|
-
mandatory: boolean;
|
|
690
688
|
modelValue: any;
|
|
691
689
|
placeholder: string;
|
|
690
|
+
mandatory: boolean;
|
|
692
691
|
isOnTop: boolean;
|
|
693
692
|
multi: boolean;
|
|
694
693
|
inlineSearch: boolean;
|
|
695
694
|
noResultsText: string;
|
|
696
695
|
defaultOpen: boolean;
|
|
696
|
+
distance: number;
|
|
697
697
|
skidding: number;
|
|
698
698
|
onSearch: (option: any, term: string) => boolean;
|
|
699
699
|
flip: boolean;
|
|
@@ -751,14 +751,6 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
751
751
|
}[]>;
|
|
752
752
|
required: true;
|
|
753
753
|
};
|
|
754
|
-
distance: {
|
|
755
|
-
type: import("vue").PropType<number>;
|
|
756
|
-
default: number;
|
|
757
|
-
};
|
|
758
|
-
mandatory: {
|
|
759
|
-
type: import("vue").PropType<boolean>;
|
|
760
|
-
default: boolean;
|
|
761
|
-
};
|
|
762
754
|
modelValue: {
|
|
763
755
|
type: import("vue").PropType<unknown>;
|
|
764
756
|
default: any;
|
|
@@ -767,6 +759,10 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
767
759
|
type: import("vue").PropType<string>;
|
|
768
760
|
default: string;
|
|
769
761
|
};
|
|
762
|
+
mandatory: {
|
|
763
|
+
type: import("vue").PropType<boolean>;
|
|
764
|
+
default: boolean;
|
|
765
|
+
};
|
|
770
766
|
isOnTop: {
|
|
771
767
|
type: import("vue").PropType<boolean>;
|
|
772
768
|
default: boolean;
|
|
@@ -790,6 +786,10 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
790
786
|
type: import("vue").PropType<boolean>;
|
|
791
787
|
default: boolean;
|
|
792
788
|
};
|
|
789
|
+
distance: {
|
|
790
|
+
type: import("vue").PropType<number>;
|
|
791
|
+
default: number;
|
|
792
|
+
};
|
|
793
793
|
isOpen: {
|
|
794
794
|
type: import("vue").PropType<boolean>;
|
|
795
795
|
};
|
|
@@ -859,7 +859,7 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
859
859
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
860
860
|
onOpened?: () => any;
|
|
861
861
|
onClosed?: () => any;
|
|
862
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "size" | "testId" | "placement" | "disabled" | "container" | "popperClass" | "selected" | "
|
|
862
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "size" | "testId" | "placement" | "disabled" | "container" | "popperClass" | "selected" | "modelValue" | "placeholder" | "mandatory" | "isOnTop" | "multi" | "inlineSearch" | "noResultsText" | "defaultOpen" | "distance" | "skidding" | "onSearch" | "flip" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "onClear" | "inlineSearchPlaceholder" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "searchAutoFocus" | "predefinedTrigger">;
|
|
863
863
|
$attrs: {
|
|
864
864
|
[x: string]: unknown;
|
|
865
865
|
};
|
|
@@ -871,7 +871,7 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
871
871
|
}>;
|
|
872
872
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
873
873
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
874
|
-
$emit: ((event: "
|
|
874
|
+
$emit: ((event: "update:selected", value: unknown) => void) & ((event: "apply", value: unknown) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "opened") => void) & ((event: "closed") => void);
|
|
875
875
|
$el: any;
|
|
876
876
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
877
877
|
theme: {
|
|
@@ -916,14 +916,6 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
916
916
|
}[]>;
|
|
917
917
|
required: true;
|
|
918
918
|
};
|
|
919
|
-
distance: {
|
|
920
|
-
type: import("vue").PropType<number>;
|
|
921
|
-
default: number;
|
|
922
|
-
};
|
|
923
|
-
mandatory: {
|
|
924
|
-
type: import("vue").PropType<boolean>;
|
|
925
|
-
default: boolean;
|
|
926
|
-
};
|
|
927
919
|
modelValue: {
|
|
928
920
|
type: import("vue").PropType<unknown>;
|
|
929
921
|
default: any;
|
|
@@ -932,6 +924,10 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
932
924
|
type: import("vue").PropType<string>;
|
|
933
925
|
default: string;
|
|
934
926
|
};
|
|
927
|
+
mandatory: {
|
|
928
|
+
type: import("vue").PropType<boolean>;
|
|
929
|
+
default: boolean;
|
|
930
|
+
};
|
|
935
931
|
isOnTop: {
|
|
936
932
|
type: import("vue").PropType<boolean>;
|
|
937
933
|
default: boolean;
|
|
@@ -955,6 +951,10 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
955
951
|
type: import("vue").PropType<boolean>;
|
|
956
952
|
default: boolean;
|
|
957
953
|
};
|
|
954
|
+
distance: {
|
|
955
|
+
type: import("vue").PropType<number>;
|
|
956
|
+
default: number;
|
|
957
|
+
};
|
|
958
958
|
isOpen: {
|
|
959
959
|
type: import("vue").PropType<boolean>;
|
|
960
960
|
};
|
|
@@ -1042,15 +1042,15 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
1042
1042
|
container: string;
|
|
1043
1043
|
popperClass: string;
|
|
1044
1044
|
selected: any;
|
|
1045
|
-
distance: number;
|
|
1046
|
-
mandatory: boolean;
|
|
1047
1045
|
modelValue: any;
|
|
1048
1046
|
placeholder: string;
|
|
1047
|
+
mandatory: boolean;
|
|
1049
1048
|
isOnTop: boolean;
|
|
1050
1049
|
multi: boolean;
|
|
1051
1050
|
inlineSearch: boolean;
|
|
1052
1051
|
noResultsText: string;
|
|
1053
1052
|
defaultOpen: boolean;
|
|
1053
|
+
distance: number;
|
|
1054
1054
|
skidding: number;
|
|
1055
1055
|
onSearch: (option: any, term: string) => boolean;
|
|
1056
1056
|
flip: boolean;
|
|
@@ -1128,14 +1128,6 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
1128
1128
|
}[]>;
|
|
1129
1129
|
required: true;
|
|
1130
1130
|
};
|
|
1131
|
-
distance: {
|
|
1132
|
-
type: import("vue").PropType<number>;
|
|
1133
|
-
default: number;
|
|
1134
|
-
};
|
|
1135
|
-
mandatory: {
|
|
1136
|
-
type: import("vue").PropType<boolean>;
|
|
1137
|
-
default: boolean;
|
|
1138
|
-
};
|
|
1139
1131
|
modelValue: {
|
|
1140
1132
|
type: import("vue").PropType<unknown>;
|
|
1141
1133
|
default: any;
|
|
@@ -1144,6 +1136,10 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
1144
1136
|
type: import("vue").PropType<string>;
|
|
1145
1137
|
default: string;
|
|
1146
1138
|
};
|
|
1139
|
+
mandatory: {
|
|
1140
|
+
type: import("vue").PropType<boolean>;
|
|
1141
|
+
default: boolean;
|
|
1142
|
+
};
|
|
1147
1143
|
isOnTop: {
|
|
1148
1144
|
type: import("vue").PropType<boolean>;
|
|
1149
1145
|
default: boolean;
|
|
@@ -1167,6 +1163,10 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
1167
1163
|
type: import("vue").PropType<boolean>;
|
|
1168
1164
|
default: boolean;
|
|
1169
1165
|
};
|
|
1166
|
+
distance: {
|
|
1167
|
+
type: import("vue").PropType<number>;
|
|
1168
|
+
default: number;
|
|
1169
|
+
};
|
|
1170
1170
|
isOpen: {
|
|
1171
1171
|
type: import("vue").PropType<boolean>;
|
|
1172
1172
|
};
|
|
@@ -1286,14 +1286,6 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
1286
1286
|
}[]>;
|
|
1287
1287
|
required: true;
|
|
1288
1288
|
};
|
|
1289
|
-
distance: {
|
|
1290
|
-
type: import("vue").PropType<number>;
|
|
1291
|
-
default: number;
|
|
1292
|
-
};
|
|
1293
|
-
mandatory: {
|
|
1294
|
-
type: import("vue").PropType<boolean>;
|
|
1295
|
-
default: boolean;
|
|
1296
|
-
};
|
|
1297
1289
|
modelValue: {
|
|
1298
1290
|
type: import("vue").PropType<unknown>;
|
|
1299
1291
|
default: any;
|
|
@@ -1302,6 +1294,10 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
1302
1294
|
type: import("vue").PropType<string>;
|
|
1303
1295
|
default: string;
|
|
1304
1296
|
};
|
|
1297
|
+
mandatory: {
|
|
1298
|
+
type: import("vue").PropType<boolean>;
|
|
1299
|
+
default: boolean;
|
|
1300
|
+
};
|
|
1305
1301
|
isOnTop: {
|
|
1306
1302
|
type: import("vue").PropType<boolean>;
|
|
1307
1303
|
default: boolean;
|
|
@@ -1325,6 +1321,10 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
1325
1321
|
type: import("vue").PropType<boolean>;
|
|
1326
1322
|
default: boolean;
|
|
1327
1323
|
};
|
|
1324
|
+
distance: {
|
|
1325
|
+
type: import("vue").PropType<number>;
|
|
1326
|
+
default: number;
|
|
1327
|
+
};
|
|
1328
1328
|
isOpen: {
|
|
1329
1329
|
type: import("vue").PropType<boolean>;
|
|
1330
1330
|
};
|
|
@@ -1412,15 +1412,15 @@ declare const DropdownTypes: () => (import("vue").DefineComponent<{
|
|
|
1412
1412
|
container: string;
|
|
1413
1413
|
popperClass: string;
|
|
1414
1414
|
selected: any;
|
|
1415
|
-
distance: number;
|
|
1416
|
-
mandatory: boolean;
|
|
1417
1415
|
modelValue: any;
|
|
1418
1416
|
placeholder: string;
|
|
1417
|
+
mandatory: boolean;
|
|
1419
1418
|
isOnTop: boolean;
|
|
1420
1419
|
multi: boolean;
|
|
1421
1420
|
inlineSearch: boolean;
|
|
1422
1421
|
noResultsText: string;
|
|
1423
1422
|
defaultOpen: boolean;
|
|
1423
|
+
distance: number;
|
|
1424
1424
|
skidding: number;
|
|
1425
1425
|
onSearch: (option: any, term: string) => boolean;
|
|
1426
1426
|
flip: boolean;
|
|
@@ -5,7 +5,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
5
5
|
isHorizontal?: boolean;
|
|
6
6
|
hasIcon?: boolean;
|
|
7
7
|
isBordered?: boolean;
|
|
8
|
-
iconName?: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "a-2" | "ab-test" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "add" | "analytics" | "android" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "block" | "border-color" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "cancel" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "error" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help" | "help-outline" | "history" | "ios" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "rotate" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4" | "check-circle" | "warning-octagon";
|
|
8
|
+
iconName?: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "FiltersSearch" | "a-2" | "ab-test" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "add" | "analytics" | "android" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "block" | "border-color" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "cancel" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "error" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help" | "help-outline" | "history" | "ios" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "rotate" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4" | "check-circle" | "warning-octagon";
|
|
9
9
|
fontSize?: string;
|
|
10
10
|
size?: "sm" | "lg";
|
|
11
11
|
iconWidth: number;
|
|
@@ -31,7 +31,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
31
31
|
isHorizontal?: boolean;
|
|
32
32
|
hasIcon?: boolean;
|
|
33
33
|
isBordered?: boolean;
|
|
34
|
-
iconName?: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "a-2" | "ab-test" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "add" | "analytics" | "android" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "block" | "border-color" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "cancel" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "error" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help" | "help-outline" | "history" | "ios" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "rotate" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4" | "check-circle" | "warning-octagon";
|
|
34
|
+
iconName?: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "FiltersSearch" | "a-2" | "ab-test" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "add" | "analytics" | "android" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "block" | "border-color" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "cancel" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "error" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help" | "help-outline" | "history" | "ios" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "rotate" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4" | "check-circle" | "warning-octagon";
|
|
35
35
|
fontSize?: string;
|
|
36
36
|
size?: "sm" | "lg";
|
|
37
37
|
iconWidth: number;
|
|
@@ -54,7 +54,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
54
54
|
title: string;
|
|
55
55
|
size: "sm" | "lg";
|
|
56
56
|
fontSize: string;
|
|
57
|
-
iconName: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "a-2" | "ab-test" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "add" | "analytics" | "android" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "block" | "border-color" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "cancel" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "error" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help" | "help-outline" | "history" | "ios" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "rotate" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4" | "check-circle" | "warning-octagon";
|
|
57
|
+
iconName: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "FiltersSearch" | "a-2" | "ab-test" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "add" | "analytics" | "android" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "block" | "border-color" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "cancel" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "error" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help" | "help-outline" | "history" | "ios" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "rotate" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4" | "check-circle" | "warning-octagon";
|
|
58
58
|
subtitle: string;
|
|
59
59
|
buttonText: string;
|
|
60
60
|
isHorizontal: boolean;
|