@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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import Dropdown from './Dropdown.vue';
|
|
2
|
-
import Option from '
|
|
3
|
-
import Label from '
|
|
4
|
-
import SearchInput from '
|
|
2
|
+
import Option from './Option.vue';
|
|
3
|
+
import Label from './Label.vue';
|
|
4
|
+
import SearchInput from './SearchInput.vue';
|
|
5
5
|
declare const DropdownTypes: () => (({
|
|
6
6
|
new (...args: any[]): {
|
|
7
7
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -10,18 +10,16 @@ declare const DropdownTypes: () => (({
|
|
|
10
10
|
title: string;
|
|
11
11
|
theme: string;
|
|
12
12
|
size: "sm" | "lg";
|
|
13
|
-
testId: string;
|
|
14
13
|
error: string;
|
|
14
|
+
testId: string;
|
|
15
15
|
placement: import("floating-vue").Placement;
|
|
16
16
|
disabled: boolean;
|
|
17
17
|
container: string;
|
|
18
18
|
popperClass: string;
|
|
19
19
|
selected: any;
|
|
20
|
-
distance: number;
|
|
21
|
-
mandatory: boolean;
|
|
22
20
|
modelValue: any;
|
|
23
21
|
placeholder: string;
|
|
24
|
-
|
|
22
|
+
mandatory: boolean;
|
|
25
23
|
helperText: string;
|
|
26
24
|
searchPlaceholder: string;
|
|
27
25
|
isOnTop: boolean;
|
|
@@ -30,6 +28,8 @@ declare const DropdownTypes: () => (({
|
|
|
30
28
|
noResultsText: string;
|
|
31
29
|
defaultOpen: boolean;
|
|
32
30
|
showButtonOnOpen: boolean;
|
|
31
|
+
autoFocus: boolean;
|
|
32
|
+
distance: number;
|
|
33
33
|
skidding: number;
|
|
34
34
|
clearable: boolean;
|
|
35
35
|
onSearch: (option: any, term: string) => boolean;
|
|
@@ -54,11 +54,11 @@ declare const DropdownTypes: () => (({
|
|
|
54
54
|
type: import("vue").PropType<"sm" | "lg">;
|
|
55
55
|
default: string;
|
|
56
56
|
};
|
|
57
|
-
|
|
57
|
+
error: {
|
|
58
58
|
type: import("vue").PropType<string>;
|
|
59
59
|
default: string;
|
|
60
60
|
};
|
|
61
|
-
|
|
61
|
+
testId: {
|
|
62
62
|
type: import("vue").PropType<string>;
|
|
63
63
|
default: string;
|
|
64
64
|
};
|
|
@@ -89,14 +89,6 @@ declare const DropdownTypes: () => (({
|
|
|
89
89
|
type: import("vue").PropType<any[]>;
|
|
90
90
|
required: true;
|
|
91
91
|
};
|
|
92
|
-
distance: {
|
|
93
|
-
type: import("vue").PropType<number>;
|
|
94
|
-
default: number;
|
|
95
|
-
};
|
|
96
|
-
mandatory: {
|
|
97
|
-
type: import("vue").PropType<boolean>;
|
|
98
|
-
default: boolean;
|
|
99
|
-
};
|
|
100
92
|
modelValue: {
|
|
101
93
|
type: import("vue").PropType<unknown>;
|
|
102
94
|
default: any;
|
|
@@ -105,7 +97,7 @@ declare const DropdownTypes: () => (({
|
|
|
105
97
|
type: import("vue").PropType<string>;
|
|
106
98
|
default: string;
|
|
107
99
|
};
|
|
108
|
-
|
|
100
|
+
mandatory: {
|
|
109
101
|
type: import("vue").PropType<boolean>;
|
|
110
102
|
default: boolean;
|
|
111
103
|
};
|
|
@@ -144,6 +136,14 @@ declare const DropdownTypes: () => (({
|
|
|
144
136
|
type: import("vue").PropType<boolean>;
|
|
145
137
|
default: boolean;
|
|
146
138
|
};
|
|
139
|
+
autoFocus: {
|
|
140
|
+
type: import("vue").PropType<boolean>;
|
|
141
|
+
default: boolean;
|
|
142
|
+
};
|
|
143
|
+
distance: {
|
|
144
|
+
type: import("vue").PropType<number>;
|
|
145
|
+
default: number;
|
|
146
|
+
};
|
|
147
147
|
isOpen: {
|
|
148
148
|
type: import("vue").PropType<boolean>;
|
|
149
149
|
};
|
|
@@ -201,7 +201,7 @@ declare const DropdownTypes: () => (({
|
|
|
201
201
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
202
202
|
onOpened?: () => any;
|
|
203
203
|
onClosed?: () => any;
|
|
204
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "theme" | "size" | "
|
|
204
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "theme" | "size" | "error" | "testId" | "placement" | "disabled" | "container" | "popperClass" | "selected" | "modelValue" | "placeholder" | "mandatory" | "helperText" | "searchPlaceholder" | "isOnTop" | "multi" | "inlineSearch" | "noResultsText" | "defaultOpen" | "showButtonOnOpen" | "autoFocus" | "distance" | "skidding" | "clearable" | "onSearch" | "flip" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "multiOptionsPlaceholderPrefix" | "multiOptionsPlaceholderSuffix" | "darkTheme" | "valueToCopy">;
|
|
205
205
|
$attrs: {
|
|
206
206
|
[x: string]: unknown;
|
|
207
207
|
};
|
|
@@ -213,7 +213,7 @@ declare const DropdownTypes: () => (({
|
|
|
213
213
|
}>;
|
|
214
214
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
215
215
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
216
|
-
$emit: ((event: "
|
|
216
|
+
$emit: ((event: "update:selected", value: unknown) => void) & ((event: "apply", value: unknown) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "opened") => void) & ((event: "closed") => void);
|
|
217
217
|
$el: any;
|
|
218
218
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
219
219
|
title: {
|
|
@@ -228,11 +228,11 @@ declare const DropdownTypes: () => (({
|
|
|
228
228
|
type: import("vue").PropType<"sm" | "lg">;
|
|
229
229
|
default: string;
|
|
230
230
|
};
|
|
231
|
-
|
|
231
|
+
error: {
|
|
232
232
|
type: import("vue").PropType<string>;
|
|
233
233
|
default: string;
|
|
234
234
|
};
|
|
235
|
-
|
|
235
|
+
testId: {
|
|
236
236
|
type: import("vue").PropType<string>;
|
|
237
237
|
default: string;
|
|
238
238
|
};
|
|
@@ -263,14 +263,6 @@ declare const DropdownTypes: () => (({
|
|
|
263
263
|
type: import("vue").PropType<any[]>;
|
|
264
264
|
required: true;
|
|
265
265
|
};
|
|
266
|
-
distance: {
|
|
267
|
-
type: import("vue").PropType<number>;
|
|
268
|
-
default: number;
|
|
269
|
-
};
|
|
270
|
-
mandatory: {
|
|
271
|
-
type: import("vue").PropType<boolean>;
|
|
272
|
-
default: boolean;
|
|
273
|
-
};
|
|
274
266
|
modelValue: {
|
|
275
267
|
type: import("vue").PropType<unknown>;
|
|
276
268
|
default: any;
|
|
@@ -279,7 +271,7 @@ declare const DropdownTypes: () => (({
|
|
|
279
271
|
type: import("vue").PropType<string>;
|
|
280
272
|
default: string;
|
|
281
273
|
};
|
|
282
|
-
|
|
274
|
+
mandatory: {
|
|
283
275
|
type: import("vue").PropType<boolean>;
|
|
284
276
|
default: boolean;
|
|
285
277
|
};
|
|
@@ -318,6 +310,14 @@ declare const DropdownTypes: () => (({
|
|
|
318
310
|
type: import("vue").PropType<boolean>;
|
|
319
311
|
default: boolean;
|
|
320
312
|
};
|
|
313
|
+
autoFocus: {
|
|
314
|
+
type: import("vue").PropType<boolean>;
|
|
315
|
+
default: boolean;
|
|
316
|
+
};
|
|
317
|
+
distance: {
|
|
318
|
+
type: import("vue").PropType<number>;
|
|
319
|
+
default: number;
|
|
320
|
+
};
|
|
321
321
|
isOpen: {
|
|
322
322
|
type: import("vue").PropType<boolean>;
|
|
323
323
|
};
|
|
@@ -388,18 +388,16 @@ declare const DropdownTypes: () => (({
|
|
|
388
388
|
title: string;
|
|
389
389
|
theme: string;
|
|
390
390
|
size: "sm" | "lg";
|
|
391
|
-
testId: string;
|
|
392
391
|
error: string;
|
|
392
|
+
testId: string;
|
|
393
393
|
placement: import("floating-vue").Placement;
|
|
394
394
|
disabled: boolean;
|
|
395
395
|
container: string;
|
|
396
396
|
popperClass: string;
|
|
397
397
|
selected: any;
|
|
398
|
-
distance: number;
|
|
399
|
-
mandatory: boolean;
|
|
400
398
|
modelValue: any;
|
|
401
399
|
placeholder: string;
|
|
402
|
-
|
|
400
|
+
mandatory: boolean;
|
|
403
401
|
helperText: string;
|
|
404
402
|
searchPlaceholder: string;
|
|
405
403
|
isOnTop: boolean;
|
|
@@ -408,6 +406,8 @@ declare const DropdownTypes: () => (({
|
|
|
408
406
|
noResultsText: string;
|
|
409
407
|
defaultOpen: boolean;
|
|
410
408
|
showButtonOnOpen: boolean;
|
|
409
|
+
autoFocus: boolean;
|
|
410
|
+
distance: number;
|
|
411
411
|
skidding: number;
|
|
412
412
|
clearable: boolean;
|
|
413
413
|
onSearch: (option: any, term: string) => boolean;
|
|
@@ -452,11 +452,11 @@ declare const DropdownTypes: () => (({
|
|
|
452
452
|
type: import("vue").PropType<"sm" | "lg">;
|
|
453
453
|
default: string;
|
|
454
454
|
};
|
|
455
|
-
|
|
455
|
+
error: {
|
|
456
456
|
type: import("vue").PropType<string>;
|
|
457
457
|
default: string;
|
|
458
458
|
};
|
|
459
|
-
|
|
459
|
+
testId: {
|
|
460
460
|
type: import("vue").PropType<string>;
|
|
461
461
|
default: string;
|
|
462
462
|
};
|
|
@@ -487,14 +487,6 @@ declare const DropdownTypes: () => (({
|
|
|
487
487
|
type: import("vue").PropType<any[]>;
|
|
488
488
|
required: true;
|
|
489
489
|
};
|
|
490
|
-
distance: {
|
|
491
|
-
type: import("vue").PropType<number>;
|
|
492
|
-
default: number;
|
|
493
|
-
};
|
|
494
|
-
mandatory: {
|
|
495
|
-
type: import("vue").PropType<boolean>;
|
|
496
|
-
default: boolean;
|
|
497
|
-
};
|
|
498
490
|
modelValue: {
|
|
499
491
|
type: import("vue").PropType<unknown>;
|
|
500
492
|
default: any;
|
|
@@ -503,7 +495,7 @@ declare const DropdownTypes: () => (({
|
|
|
503
495
|
type: import("vue").PropType<string>;
|
|
504
496
|
default: string;
|
|
505
497
|
};
|
|
506
|
-
|
|
498
|
+
mandatory: {
|
|
507
499
|
type: import("vue").PropType<boolean>;
|
|
508
500
|
default: boolean;
|
|
509
501
|
};
|
|
@@ -542,6 +534,14 @@ declare const DropdownTypes: () => (({
|
|
|
542
534
|
type: import("vue").PropType<boolean>;
|
|
543
535
|
default: boolean;
|
|
544
536
|
};
|
|
537
|
+
autoFocus: {
|
|
538
|
+
type: import("vue").PropType<boolean>;
|
|
539
|
+
default: boolean;
|
|
540
|
+
};
|
|
541
|
+
distance: {
|
|
542
|
+
type: import("vue").PropType<number>;
|
|
543
|
+
default: number;
|
|
544
|
+
};
|
|
545
545
|
isOpen: {
|
|
546
546
|
type: import("vue").PropType<boolean>;
|
|
547
547
|
};
|
|
@@ -619,11 +619,11 @@ declare const DropdownTypes: () => (({
|
|
|
619
619
|
type: import("vue").PropType<"sm" | "lg">;
|
|
620
620
|
default: string;
|
|
621
621
|
};
|
|
622
|
-
|
|
622
|
+
error: {
|
|
623
623
|
type: import("vue").PropType<string>;
|
|
624
624
|
default: string;
|
|
625
625
|
};
|
|
626
|
-
|
|
626
|
+
testId: {
|
|
627
627
|
type: import("vue").PropType<string>;
|
|
628
628
|
default: string;
|
|
629
629
|
};
|
|
@@ -654,14 +654,6 @@ declare const DropdownTypes: () => (({
|
|
|
654
654
|
type: import("vue").PropType<any[]>;
|
|
655
655
|
required: true;
|
|
656
656
|
};
|
|
657
|
-
distance: {
|
|
658
|
-
type: import("vue").PropType<number>;
|
|
659
|
-
default: number;
|
|
660
|
-
};
|
|
661
|
-
mandatory: {
|
|
662
|
-
type: import("vue").PropType<boolean>;
|
|
663
|
-
default: boolean;
|
|
664
|
-
};
|
|
665
657
|
modelValue: {
|
|
666
658
|
type: import("vue").PropType<unknown>;
|
|
667
659
|
default: any;
|
|
@@ -670,7 +662,7 @@ declare const DropdownTypes: () => (({
|
|
|
670
662
|
type: import("vue").PropType<string>;
|
|
671
663
|
default: string;
|
|
672
664
|
};
|
|
673
|
-
|
|
665
|
+
mandatory: {
|
|
674
666
|
type: import("vue").PropType<boolean>;
|
|
675
667
|
default: boolean;
|
|
676
668
|
};
|
|
@@ -709,6 +701,14 @@ declare const DropdownTypes: () => (({
|
|
|
709
701
|
type: import("vue").PropType<boolean>;
|
|
710
702
|
default: boolean;
|
|
711
703
|
};
|
|
704
|
+
autoFocus: {
|
|
705
|
+
type: import("vue").PropType<boolean>;
|
|
706
|
+
default: boolean;
|
|
707
|
+
};
|
|
708
|
+
distance: {
|
|
709
|
+
type: import("vue").PropType<number>;
|
|
710
|
+
default: number;
|
|
711
|
+
};
|
|
712
712
|
isOpen: {
|
|
713
713
|
type: import("vue").PropType<boolean>;
|
|
714
714
|
};
|
|
@@ -779,18 +779,16 @@ declare const DropdownTypes: () => (({
|
|
|
779
779
|
title: string;
|
|
780
780
|
theme: string;
|
|
781
781
|
size: "sm" | "lg";
|
|
782
|
-
testId: string;
|
|
783
782
|
error: string;
|
|
783
|
+
testId: string;
|
|
784
784
|
placement: import("floating-vue").Placement;
|
|
785
785
|
disabled: boolean;
|
|
786
786
|
container: string;
|
|
787
787
|
popperClass: string;
|
|
788
788
|
selected: any;
|
|
789
|
-
distance: number;
|
|
790
|
-
mandatory: boolean;
|
|
791
789
|
modelValue: any;
|
|
792
790
|
placeholder: string;
|
|
793
|
-
|
|
791
|
+
mandatory: boolean;
|
|
794
792
|
helperText: string;
|
|
795
793
|
searchPlaceholder: string;
|
|
796
794
|
isOnTop: boolean;
|
|
@@ -799,6 +797,8 @@ declare const DropdownTypes: () => (({
|
|
|
799
797
|
noResultsText: string;
|
|
800
798
|
defaultOpen: boolean;
|
|
801
799
|
showButtonOnOpen: boolean;
|
|
800
|
+
autoFocus: boolean;
|
|
801
|
+
distance: number;
|
|
802
802
|
skidding: number;
|
|
803
803
|
clearable: boolean;
|
|
804
804
|
onSearch: (option: any, term: string) => boolean;
|
|
@@ -823,7 +823,7 @@ declare const DropdownTypes: () => (({
|
|
|
823
823
|
open: true;
|
|
824
824
|
}): any;
|
|
825
825
|
default?(_: {
|
|
826
|
-
option:
|
|
826
|
+
option: unknown;
|
|
827
827
|
selected: boolean;
|
|
828
828
|
active: boolean;
|
|
829
829
|
}): any;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./Dropdown.vue.js";
|
|
2
|
-
import r from "
|
|
3
|
-
import p from "
|
|
4
|
-
import m from "
|
|
2
|
+
import r from "./Option.vue.js";
|
|
3
|
+
import p from "./Label.vue.js";
|
|
4
|
+
import m from "./SearchInput.vue.js";
|
|
5
5
|
const f = () => [o, r, p, m];
|
|
6
6
|
export {
|
|
7
7
|
o as Dropdown,
|
|
@@ -42,9 +42,9 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
42
42
|
label: string;
|
|
43
43
|
testId: string;
|
|
44
44
|
disabled: boolean;
|
|
45
|
-
feedbackVariant: string;
|
|
46
45
|
open: boolean;
|
|
47
46
|
displayedValue: any;
|
|
47
|
+
feedbackVariant: string;
|
|
48
48
|
}>;
|
|
49
49
|
export default _default;
|
|
50
50
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -79,13 +79,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
79
79
|
selected: any;
|
|
80
80
|
options: any;
|
|
81
81
|
singleAppSelection: boolean;
|
|
82
|
+
placeholder: string;
|
|
83
|
+
open: boolean;
|
|
82
84
|
mandatory: boolean;
|
|
85
|
+
feedbackVariant: "error" | "success" | "warning";
|
|
83
86
|
hoverHelpText: string;
|
|
84
87
|
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";
|
|
85
|
-
placeholder: string;
|
|
86
88
|
feedbackText: string;
|
|
87
|
-
feedbackVariant: "error" | "success" | "warning";
|
|
88
|
-
open: boolean;
|
|
89
89
|
brandIconType: "android" | "ios";
|
|
90
90
|
}>, {
|
|
91
91
|
"brand-icon"?(_: {}): any;
|
|
@@ -169,15 +169,15 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
169
169
|
container: string;
|
|
170
170
|
popperClass: string;
|
|
171
171
|
selected: any;
|
|
172
|
-
distance: number;
|
|
173
|
-
mandatory: boolean;
|
|
174
172
|
modelValue: any;
|
|
175
173
|
placeholder: string;
|
|
174
|
+
mandatory: boolean;
|
|
176
175
|
isOnTop: boolean;
|
|
177
176
|
multi: boolean;
|
|
178
177
|
inlineSearch: boolean;
|
|
179
178
|
noResultsText: string;
|
|
180
179
|
defaultOpen: boolean;
|
|
180
|
+
distance: number;
|
|
181
181
|
skidding: number;
|
|
182
182
|
onSearch: (option: any, term: string) => boolean;
|
|
183
183
|
flip: boolean;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./OptionV4.vue2.js";
|
|
2
|
-
/* empty css */import
|
|
3
|
-
// import "../../../OptionV4.
|
|
4
|
-
const s = /* @__PURE__ */
|
|
2
|
+
/* empty css */import _ from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
+
// import "../../../OptionV4.vue_vue_type_style_index_0_scoped_92add735_lang.css"; //*');
|
|
4
|
+
const s = /* @__PURE__ */ _(o, [["__scopeId", "data-v-92add735"]]);
|
|
5
5
|
export {
|
|
6
6
|
s as default
|
|
7
7
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import "../../../OptionV4.
|
|
1
|
+
import "../../../OptionV4.vue_vue_type_style_index_0_scoped_92add735_lang.css"; import { defineComponent as C, openBlock as o, createElementBlock as n, normalizeClass as f, unref as e, createElementVNode as d, createBlock as p, createCommentVNode as l, renderSlot as c, createVNode as b, withCtx as k, createTextVNode as g, toDisplayString as B, withModifiers as $ } from "vue";
|
|
2
2
|
import "../../typography/Heading.vue.js";
|
|
3
3
|
import N from "../../typography/Text.vue.js";
|
|
4
|
-
import V from "../../checkbox/Checkbox.vue.js";
|
|
4
|
+
import V from "../../checkbox/v3/Checkbox.vue.js";
|
|
5
5
|
import w from "../../icon/v4/IconV4.vue.js";
|
|
6
6
|
import { NOOP as O } from "@vue/shared";
|
|
7
7
|
import { optionCommon as S } from "../common/Option.common.js";
|