@ironsource/shared-ui 2.0.0-rc.6 → 2.0.0-rc.7
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/ButtonV4.vue_vue_type_style_index_0_scoped_3fd2281b_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_e8324d12_lang.css +1 -0
- package/FilterDropdown.vue_vue_type_style_index_0_scoped_1320b13b_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/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/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.vue2.js +3 -3
- package/components/button/common/ButtonSuper.vue.d.ts +6 -6
- package/components/button/v3/Button.vue.d.ts +6 -6
- package/components/button/v4/ButtonV4.vue.d.ts +11 -6
- package/components/button/v4/ButtonV4.vue.js +3 -3
- package/components/button/v4/ButtonV4.vue2.js +13 -10
- package/components/button/v4/index.d.ts +34 -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/dropdown/v3/Dropdown.vue.js +2 -2
- package/components/dropdown/v3/Dropdown.vue2.js +3 -3
- 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 +3 -3
- package/components/dropdown/v3/index.js +3 -3
- package/components/dropdown/v4/OptionV4.vue.js +3 -3
- package/components/dropdown/v4/OptionV4.vue2.js +2 -2
- 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 +4 -4
- 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.js +3 -3
- package/components/includeExclude/IncludeExclude.vue2.js +2 -2
- package/components/includeExclude/IncludeExcludeDragDrop.vue.js +3 -3
- package/components/includeExclude/IncludeExcludeDragDrop.vue2.js +2 -2
- package/components/includeExclude/IncludeExcludeOption.vue.js +5 -5
- package/components/includeExclude/IncludeExcludeOption.vue2.js +2 -2
- 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 +186 -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/v4/DataGrid.vue.js +2 -2
- package/components/table/v4/DataGrid.vue2.js +28 -29
- package/index.d.ts +1255 -34
- package/index.js +145 -152
- package/package.json +40 -15
- package/testids/index.d.ts +8 -0
- package/testids/index.js +14 -13
- 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/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/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/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
package/index.js
CHANGED
|
@@ -1,180 +1,173 @@
|
|
|
1
1
|
import './MenuItem.vue_vue_type_style_index_0_scoped_c7e837fa_lang.css';
|
|
2
|
-
import { AppTriggerTypes as
|
|
3
|
-
import { AutocompleteDropdownTypes as
|
|
4
|
-
import { MenuItemTypes as
|
|
5
|
-
import { MenuTypes as
|
|
6
|
-
import { AppIconTypes as
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import
|
|
18
|
-
import
|
|
19
|
-
import { PopoverTypes as de } from "./components/popover/index.js";
|
|
20
|
-
import { MultiBarTypes as le } from "./components/multibar/index.js";
|
|
21
|
-
import * as e from "./components/button/v3/index.js";
|
|
22
|
-
import * as o from "./components/button/v4/index.js";
|
|
2
|
+
import { AppTriggerTypes as N } from "./components/appTrigger/index.js";
|
|
3
|
+
import { AutocompleteDropdownTypes as _ } from "./components/autocompleteDropdown/index.js";
|
|
4
|
+
import { MenuItemTypes as q } from "./components/menuItem/index.js";
|
|
5
|
+
import { MenuTypes as K } from "./components/menu/index.js";
|
|
6
|
+
import { AppIconTypes as Y } from "./components/appIcon/index.js";
|
|
7
|
+
import { FloatingToolbarTypes as G } from "./components/floatingToolbar/index.js";
|
|
8
|
+
import { IncludeExcludeTypes as Q } from "./components/includeExclude/index.js";
|
|
9
|
+
import { CssBaselineTypes as W } from "./components/cssBaseline/index.js";
|
|
10
|
+
import { ID_INJECTION_KEY as Z, useId as oo } from "./composables/useId.js";
|
|
11
|
+
import { FilterDropdownTypes as ro } from "./components/filterDropdown/index.js";
|
|
12
|
+
import { SkeletonTypes as po } from "./components/skeleton/index.js";
|
|
13
|
+
import { TypographyTypes as ao } from "./components/typography/index.js";
|
|
14
|
+
import { TypographyTypesV4 as xo } from "./components/typography/v4/index.js";
|
|
15
|
+
import { PopoverTypes as io } from "./components/popover/index.js";
|
|
16
|
+
import { MultiBarTypes as lo } from "./components/multibar/index.js";
|
|
17
|
+
import * as o from "./components/button/v3/index.js";
|
|
18
|
+
import * as e from "./components/button/v4/index.js";
|
|
23
19
|
import * as r from "./components/chip/v3/index.js";
|
|
24
20
|
import * as t from "./components/chip/v4/index.js";
|
|
25
21
|
import * as p from "./components/switch/v3/index.js";
|
|
26
|
-
import * as
|
|
27
|
-
import * as
|
|
28
|
-
import * as
|
|
22
|
+
import * as m from "./components/switch/v4/index.js";
|
|
23
|
+
import * as a from "./components/dropdown/v3/index.js";
|
|
24
|
+
import * as f from "./components/dropdown/v4/index.js";
|
|
29
25
|
import * as x from "./components/search/v3/index.js";
|
|
30
26
|
import * as s from "./components/search/v4/index.js";
|
|
31
|
-
import * as d from "./components/
|
|
32
|
-
import * as i from "./components/
|
|
33
|
-
import * as
|
|
34
|
-
import * as
|
|
35
|
-
import * as u from "./components/
|
|
36
|
-
import * as T from "./components/
|
|
37
|
-
import * as
|
|
38
|
-
import * as y from "./components/
|
|
39
|
-
import * as
|
|
40
|
-
import * as g from "./components/
|
|
41
|
-
import * as I from "./components/
|
|
42
|
-
import * as D from "./components/
|
|
43
|
-
import * as A from "./components/
|
|
44
|
-
import * as E from "./components/
|
|
27
|
+
import * as d from "./components/filtersPanel/v3/index.js";
|
|
28
|
+
import * as i from "./components/filtersPanel/v4/index.js";
|
|
29
|
+
import * as n from "./components/checkbox/v3/index.js";
|
|
30
|
+
import * as l from "./components/checkbox/v4/index.js";
|
|
31
|
+
import * as u from "./components/icon/v3/index.js";
|
|
32
|
+
import * as T from "./components/icon/v4/index.js";
|
|
33
|
+
import * as $ from "./components/input/v3/index.js";
|
|
34
|
+
import * as y from "./components/input/v4/index.js";
|
|
35
|
+
import * as c from "./components/tabs/v3/index.js";
|
|
36
|
+
import * as g from "./components/tabs/v4/index.js";
|
|
37
|
+
import * as I from "./components/dialog/v3/index.js";
|
|
38
|
+
import * as D from "./components/dialog/v4/index.js";
|
|
39
|
+
import * as A from "./components/tooltip/v3/index.js";
|
|
40
|
+
import * as E from "./components/tooltip/v4/index.js";
|
|
41
|
+
import * as B from "./components/table/v3/index.js";
|
|
42
|
+
import * as h from "./components/table/v4/index.js";
|
|
43
|
+
import * as F from "./components/table-cells/v3/index.js";
|
|
44
|
+
import * as M from "./components/table-cells/v4/index.js";
|
|
45
45
|
import * as k from "./components/emptyState/v3/index.js";
|
|
46
|
-
import * as
|
|
47
|
-
import
|
|
48
|
-
import
|
|
49
|
-
import
|
|
50
|
-
import
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import { default as
|
|
59
|
-
import { default as
|
|
60
|
-
import { default as
|
|
61
|
-
import {
|
|
62
|
-
import { default as
|
|
63
|
-
import { default as
|
|
64
|
-
import { default as
|
|
65
|
-
import { default as
|
|
66
|
-
import { default as
|
|
67
|
-
import { default as
|
|
68
|
-
import { default as
|
|
69
|
-
import { default as
|
|
70
|
-
import { default as
|
|
71
|
-
import { default as
|
|
72
|
-
import { default as
|
|
73
|
-
import {
|
|
74
|
-
import { default as
|
|
75
|
-
import { default as
|
|
76
|
-
import { default as
|
|
77
|
-
import { default as
|
|
78
|
-
import { default as
|
|
79
|
-
import { default as
|
|
80
|
-
import { default as
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as
|
|
83
|
-
import { default as
|
|
84
|
-
import { default as
|
|
85
|
-
|
|
86
|
-
import { default as jo } from "./components/datePicker/DatePicker.vue.js";
|
|
87
|
-
import { default as Go } from "./components/banner/Banner.vue.js";
|
|
88
|
-
const b = {
|
|
46
|
+
import * as w from "./components/emptyState/v4/index.js";
|
|
47
|
+
import * as b from "./components/snackbar/v3/index.js";
|
|
48
|
+
import * as C from "./components/snackbar/v4/index.js";
|
|
49
|
+
import * as P from "./components/radioButton/v3/index.js";
|
|
50
|
+
import * as v from "./components/radioButton/v4/index.js";
|
|
51
|
+
import { ToggleTypes as To } from "./components/toggle/v3/index.js";
|
|
52
|
+
import { TextAreaTypes as yo } from "./components/textArea/index.js";
|
|
53
|
+
import { useToggle as go } from "./composables/useToggle.js";
|
|
54
|
+
import { useSearch as Do } from "./composables/useSearch.js";
|
|
55
|
+
import { DateRangeTypes as Eo } from "./components/dateRange/index.js";
|
|
56
|
+
import { DatePickerTypes as ho } from "./components/datePicker/index.js";
|
|
57
|
+
import { BannerTypes as Mo } from "./components/banner/index.js";
|
|
58
|
+
import { default as wo } from "./components/appTrigger/AppTrigger.vue.js";
|
|
59
|
+
import { default as Co } from "./components/autocompleteDropdown/AutocompleteDropdown.vue.js";
|
|
60
|
+
import { default as vo } from "./components/menuItem/MenuItem.vue.js";
|
|
61
|
+
import { default as So } from "./components/menu/Menu.vue.js";
|
|
62
|
+
import { default as No } from "./components/appIcon/AppIcon.vue.js";
|
|
63
|
+
import { default as _o } from "./components/floatingToolbar/FloatingToolbar.vue.js";
|
|
64
|
+
import { default as qo } from "./components/includeExclude/IncludeExclude.vue.js";
|
|
65
|
+
import { default as Ko } from "./components/includeExclude/IncludeExcludeDragDrop.vue.js";
|
|
66
|
+
import { default as Yo } from "./components/includeExclude/IncludeExcludeOption.vue.js";
|
|
67
|
+
import { default as Go } from "./components/includeExclude/IncludeExcludeOptionDraggable.vue.js";
|
|
68
|
+
import { default as Qo } from "./components/includeExclude/IncludeExcludeAppTrigger.vue.js";
|
|
69
|
+
import { default as Wo } from "./components/includeExclude/IncludeExcludeAppHeader.vue.js";
|
|
70
|
+
import { default as Zo } from "./components/includeExclude/IncludeExcludeChipFilter.vue.js";
|
|
71
|
+
import { default as ee } from "./components/cssBaseline/CssBaseline.vue.js";
|
|
72
|
+
import { default as te } from "./components/filterDropdown/FilterDropdown.vue.js";
|
|
73
|
+
import { default as me } from "./components/filterDropdown/AddFilterButton.vue.js";
|
|
74
|
+
import { default as fe } from "./components/skeleton/Skeleton.vue.js";
|
|
75
|
+
import { default as se } from "./components/typography/Heading.vue.js";
|
|
76
|
+
import { default as ie } from "./components/typography/Text.vue.js";
|
|
77
|
+
import { default as le } from "./components/typography/v4/Typography.vue.js";
|
|
78
|
+
import { default as Te } from "./components/popover/Popover.vue.js";
|
|
79
|
+
import { default as ye } from "./components/multibar/MultiBar.vue.js";
|
|
80
|
+
import { default as ge } from "./components/toggle/v3/Toggle.vue.js";
|
|
81
|
+
import { default as De } from "./components/textArea/TextArea.vue.js";
|
|
82
|
+
import { default as Ee } from "./components/dateRange/DateRange.vue.js";
|
|
83
|
+
import { default as he } from "./components/datePicker/DatePicker.vue.js";
|
|
84
|
+
import { default as Me } from "./components/banner/Banner.vue.js";
|
|
85
|
+
const O = {
|
|
89
86
|
...r,
|
|
90
87
|
...t,
|
|
91
88
|
...p,
|
|
92
|
-
...
|
|
93
|
-
...e,
|
|
89
|
+
...m,
|
|
94
90
|
...o,
|
|
91
|
+
...e,
|
|
92
|
+
...a,
|
|
95
93
|
...f,
|
|
96
|
-
...m,
|
|
97
94
|
...x,
|
|
98
95
|
...s,
|
|
99
|
-
...l,
|
|
100
|
-
...n,
|
|
101
96
|
...d,
|
|
102
97
|
...i,
|
|
98
|
+
...$,
|
|
99
|
+
...y,
|
|
103
100
|
...u,
|
|
104
101
|
...T,
|
|
105
102
|
...c,
|
|
106
|
-
...y,
|
|
107
|
-
...$,
|
|
108
103
|
...g,
|
|
109
104
|
...I,
|
|
110
105
|
...D,
|
|
111
106
|
...A,
|
|
112
107
|
...E,
|
|
108
|
+
...B,
|
|
109
|
+
...h,
|
|
110
|
+
...F,
|
|
111
|
+
...M,
|
|
113
112
|
...k,
|
|
114
|
-
...
|
|
113
|
+
...w,
|
|
114
|
+
...b,
|
|
115
|
+
...C,
|
|
116
|
+
...n,
|
|
117
|
+
...l,
|
|
118
|
+
...P,
|
|
119
|
+
...v
|
|
115
120
|
};
|
|
116
121
|
export {
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
wo as Toggle,
|
|
169
|
-
ue as ToggleTypes,
|
|
170
|
-
Bo as Typography,
|
|
171
|
-
fe as TypographyTypes,
|
|
172
|
-
xe as TypographyTypesV4,
|
|
173
|
-
b as default,
|
|
174
|
-
Ge as snackbarEmits,
|
|
175
|
-
Je as snackbarTypes,
|
|
176
|
-
uo as useHiddenFilter,
|
|
177
|
-
U as useId,
|
|
178
|
-
Ie as useSearch,
|
|
179
|
-
$e as useToggle
|
|
122
|
+
me as AddFilterButton,
|
|
123
|
+
No as AppIcon,
|
|
124
|
+
Y as AppIconTypes,
|
|
125
|
+
wo as AppTrigger,
|
|
126
|
+
N as AppTriggerTypes,
|
|
127
|
+
Co as AutocompleteDropdown,
|
|
128
|
+
_ as AutocompleteDropdownTypes,
|
|
129
|
+
Me as Banner,
|
|
130
|
+
Mo as BannerTypes,
|
|
131
|
+
ee as CssBaseline,
|
|
132
|
+
W as CssBaselineTypes,
|
|
133
|
+
he as DatePicker,
|
|
134
|
+
ho as DatePickerTypes,
|
|
135
|
+
Ee as DateRange,
|
|
136
|
+
Eo as DateRangeTypes,
|
|
137
|
+
te as FilterDropdown,
|
|
138
|
+
ro as FilterDropdownTypes,
|
|
139
|
+
_o as FloatingToolbar,
|
|
140
|
+
G as FloatingToolbarTypes,
|
|
141
|
+
se as Heading,
|
|
142
|
+
Z as ID_INJECTION_KEY,
|
|
143
|
+
qo as IncludeExclude,
|
|
144
|
+
Wo as IncludeExcludeAppHeader,
|
|
145
|
+
Qo as IncludeExcludeAppTrigger,
|
|
146
|
+
Zo as IncludeExcludeChipFilter,
|
|
147
|
+
Ko as IncludeExcludeDragDrop,
|
|
148
|
+
Yo as IncludeExcludeOption,
|
|
149
|
+
Go as IncludeExcludeOptionDraggable,
|
|
150
|
+
Q as IncludeExcludeTypes,
|
|
151
|
+
So as Menu,
|
|
152
|
+
vo as MenuItem,
|
|
153
|
+
q as MenuItemTypes,
|
|
154
|
+
K as MenuTypes,
|
|
155
|
+
ye as MultiBar,
|
|
156
|
+
lo as MultiBarTypes,
|
|
157
|
+
Te as Popover,
|
|
158
|
+
io as PopoverTypes,
|
|
159
|
+
fe as Skeleton,
|
|
160
|
+
po as SkeletonTypes,
|
|
161
|
+
ie as Text,
|
|
162
|
+
De as TextArea,
|
|
163
|
+
yo as TextAreaTypes,
|
|
164
|
+
ge as Toggle,
|
|
165
|
+
To as ToggleTypes,
|
|
166
|
+
le as Typography,
|
|
167
|
+
ao as TypographyTypes,
|
|
168
|
+
xo as TypographyTypesV4,
|
|
169
|
+
O as default,
|
|
170
|
+
oo as useId,
|
|
171
|
+
Do as useSearch,
|
|
172
|
+
go as useToggle
|
|
180
173
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ironsource/shared-ui",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.7",
|
|
4
4
|
"engines": {
|
|
5
5
|
"npm": ">=7.0.0",
|
|
6
6
|
"node": ">=16.0.0"
|
|
@@ -156,12 +156,15 @@
|
|
|
156
156
|
"./switch/v4": "./components/switch/v4/SwitchV4.vue.js",
|
|
157
157
|
"./editable": "./components/table-cells/v3/Editable.vue.js",
|
|
158
158
|
"./editable/v4": "./components/table-cells/v4/EditableV4.vue.js",
|
|
159
|
-
"./radioButton": "./components/radioButton/RadioButton.vue.js",
|
|
160
|
-
"./radioGroup": "./components/radioButton/RadioGroup.vue.js",
|
|
159
|
+
"./radioButton": "./components/radioButton/v3/RadioButton.vue.js",
|
|
160
|
+
"./radioGroup": "./components/radioButton/v3/RadioGroup.vue.js",
|
|
161
|
+
"./radioButton/v4": "./components/radioButton/v4/RadioButtonV4.vue.js",
|
|
162
|
+
"./radioGroup/v4": "./components/radioButton/v4/RadioGroupV4.vue.js",
|
|
161
163
|
"./floatingToolbar": "./components/floatingToolbar/FloatingToolbar.vue.js",
|
|
162
|
-
"./includeExclude": "./components/includeExclude/index.
|
|
164
|
+
"./includeExclude": "./components/includeExclude/index.js",
|
|
163
165
|
"./cssBaseline": "./components/cssBaseline/CssBaseline.vue.js",
|
|
164
|
-
"./snackbar": "./components/snackbar/index.
|
|
166
|
+
"./snackbar": "./components/snackbar/v3/index.js",
|
|
167
|
+
"./snackbar/v4": "./components/snackbar/v4/index.js",
|
|
165
168
|
"./emptyState": "./components/emptyState/v3/EmptyState.vue.js",
|
|
166
169
|
"./emptyState/v4": "./components/emptyState/v4/EmptyStateV4.vue.js",
|
|
167
170
|
"./table": "./components/table/v3/Table.vue.js",
|
|
@@ -170,10 +173,11 @@
|
|
|
170
173
|
"./datePicker": "./components/datePicker/DatePicker.vue.js",
|
|
171
174
|
"./dialog": "./components/dialog/v3/Dialog.vue.js",
|
|
172
175
|
"./dialog/v4": "./components/dialog/v4/DialogV4.vue.js",
|
|
173
|
-
"./dropdown": "./components/dropdown/v3/index.
|
|
174
|
-
"./dropdown/v4": "./components/dropdown/v4/index.
|
|
176
|
+
"./dropdown": "./components/dropdown/v3/index.js",
|
|
177
|
+
"./dropdown/v4": "./components/dropdown/v4/index.js",
|
|
175
178
|
"./filterDropdown": "./components/filterDropdown/FilterDropdown.vue.js",
|
|
176
|
-
"./filtersPanel": "./components/filtersPanel/index.
|
|
179
|
+
"./filtersPanel": "./components/filtersPanel/v3/index.js",
|
|
180
|
+
"./filtersPanel/v4": "./components/filtersPanel/v4/index.js",
|
|
177
181
|
"./tabs": "./components/tabs/v3/Tabs.vue.js",
|
|
178
182
|
"./tabs/v4": "./components/tabs/v4/TabsV4.vue.js",
|
|
179
183
|
"./chip": "./components/chip/v3/Chip.vue.js",
|
|
@@ -232,10 +236,16 @@
|
|
|
232
236
|
"./components/appIcon/AppIcon.vue.d.ts"
|
|
233
237
|
],
|
|
234
238
|
"radioButton": [
|
|
235
|
-
"./components/radioButton/RadioButton.vue.d.ts"
|
|
239
|
+
"./components/radioButton/v3/RadioButton.vue.d.ts"
|
|
236
240
|
],
|
|
237
|
-
"
|
|
238
|
-
"./components/radioButton/RadioGroup.vue.d.ts"
|
|
241
|
+
"radioGroup": [
|
|
242
|
+
"./components/radioButton/v3/RadioGroup.vue.d.ts"
|
|
243
|
+
],
|
|
244
|
+
"radioButton/v4": [
|
|
245
|
+
"./components/radioButton/v4/RadioButtonV4.vue.d.ts"
|
|
246
|
+
],
|
|
247
|
+
"radioGroup/v4": [
|
|
248
|
+
"./components/radioButton/v4/RadioGroupV4.vue.d.ts"
|
|
239
249
|
],
|
|
240
250
|
"floatingToolbar": [
|
|
241
251
|
"./components/floatingToolbar/FloatingToolbar.vue.d.ts"
|
|
@@ -274,13 +284,16 @@
|
|
|
274
284
|
"./components/dialog/v4/DialogV4.vue.d.ts"
|
|
275
285
|
],
|
|
276
286
|
"dropdown": [
|
|
277
|
-
"./components/dropdown/index.d.ts"
|
|
287
|
+
"./components/dropdown/v3/index.d.ts"
|
|
278
288
|
],
|
|
279
289
|
"dropdown/v4": [
|
|
280
290
|
"./components/dropdown/v4/index.d.ts"
|
|
281
291
|
],
|
|
282
292
|
"filtersPanel": [
|
|
283
|
-
"./components/filtersPanel/index.d.ts"
|
|
293
|
+
"./components/filtersPanel/v3/index.d.ts"
|
|
294
|
+
],
|
|
295
|
+
"filtersPanel/v4": [
|
|
296
|
+
"./components/filtersPanel/v4/index.d.ts"
|
|
284
297
|
],
|
|
285
298
|
"filterDropdown": [
|
|
286
299
|
"./components/filterDropdown/index.d.ts"
|
|
@@ -322,7 +335,10 @@
|
|
|
322
335
|
"./components/checkbox/Checkbox.vue.d.ts"
|
|
323
336
|
],
|
|
324
337
|
"icon": [
|
|
325
|
-
"./components/icon/Icon.vue.d.ts"
|
|
338
|
+
"./components/icon/v3/Icon.vue.d.ts"
|
|
339
|
+
],
|
|
340
|
+
"icon/v4": [
|
|
341
|
+
"./components/icon/v4/IconV4.vue.d.ts"
|
|
326
342
|
],
|
|
327
343
|
"./toggle": [
|
|
328
344
|
"./components/toggle/v3/Toggle.vue.d.ts"
|
|
@@ -352,7 +368,10 @@
|
|
|
352
368
|
"./components/popover/Popover.vue.d.ts"
|
|
353
369
|
],
|
|
354
370
|
"input": [
|
|
355
|
-
"./components/input/Input.vue.d.ts"
|
|
371
|
+
"./components/input/v3/Input.vue.d.ts"
|
|
372
|
+
],
|
|
373
|
+
"input/v4": [
|
|
374
|
+
"./components/input/v4/TextField.vue.d.ts"
|
|
356
375
|
],
|
|
357
376
|
"dollarInput": [
|
|
358
377
|
"./components/input/DollarInput.vue.d.ts"
|
|
@@ -371,6 +390,12 @@
|
|
|
371
390
|
],
|
|
372
391
|
"typography": [
|
|
373
392
|
"./components/typography/v4/Typography.vue.d.ts"
|
|
393
|
+
],
|
|
394
|
+
"snackbar": [
|
|
395
|
+
"./components/snackbar/v3/Snackbar.vue.d.ts"
|
|
396
|
+
],
|
|
397
|
+
"snackbar/v4": [
|
|
398
|
+
"./components/snackbar/v4/SnackbarV4.vue.d.ts"
|
|
374
399
|
]
|
|
375
400
|
}
|
|
376
401
|
},
|
package/testids/index.d.ts
CHANGED
|
@@ -166,3 +166,11 @@ export declare enum FieldHelpTextTestIdModifiers {
|
|
|
166
166
|
TEXT = "field-help-text-text",
|
|
167
167
|
ICON = "field-help-text-icon"
|
|
168
168
|
}
|
|
169
|
+
export declare enum SnackbarTestIdModifiers {
|
|
170
|
+
CONTAINER = "sb-container",
|
|
171
|
+
TITLE = "sb-title",
|
|
172
|
+
MESSAGE = "sb-message",
|
|
173
|
+
CLOSE = "sb-close",
|
|
174
|
+
ICON = "sb-icon",
|
|
175
|
+
ACTION_BUTTON = "sb-action-button"
|
|
176
|
+
}
|
package/testids/index.js
CHANGED
|
@@ -1,27 +1,28 @@
|
|
|
1
|
-
var
|
|
1
|
+
var R = /* @__PURE__ */ ((E) => (E.TRIGGER = "ie-trigger", E.CONTENT = "ie-content", E.SEARCH = "ie-search", E.LIST = "ie-list", E.LIST_SELECTED = "ie-list-selected", E.ACTION_CANCEL = "ie-action-cancel", E.ACTION_APPLY = "ie-action-apply", E.SELECT_ALL = "ie-select-all", E.CLEAR_ALL = "ie-clear-all", E))(R || {}), a = /* @__PURE__ */ ((E) => (E.TRIGGER = "dd-trigger", E.WRAPPER = "dd-wrapper", E.BUTTON = "dd-button", E.BUTTON_WRAPPER = "dd-button-wrapper", E.BUTTON_CONTENT = "dd-button-content", E.BUTTON_CLEAR = "dd-button-clear", E.LABEL = "dd-label", E.LIST_CONTAINER = "dd-list-container", E.SEARCH = "dd-search", E.TITLE = "dd-title", E.ACTION_CANCEL = "dd-action-cancel", E.ACTION_APPLY = "dd-action-apply", E.ACTION_CLEAR_ALL = "dd-action-clear-all", E.HELPER_TEXT = "dd-helper-text", E.HELPER_TEXT_ERROR = "dd-helper-text-error", E.SELECT_ALL = "dd-select-all", E.NO_RESULT = "dd-no-result", E))(a || {}), A = /* @__PURE__ */ ((E) => (E.WRAPPER = "banner-wrapper", E.CONTENT = "banner-content", E))(A || {}), t = /* @__PURE__ */ ((E) => (E.WRAPPER = "dialog-wrapper", E.HEADER = "dialog-header", E.ACTION_CLOSE = "dialog-action-close", E.HEADER_SECONDARY = "dialog-header-secondary", E.CONTENT = "dialog-content", E.ACTION_BUTTONS_WRAPPER = "dialog-action-buttons-wrapper", E.BACKDROP = "dialog-backdrop", E))(t || {}), O = /* @__PURE__ */ ((E) => (E.WRAPPER = "input-wrapper", E.TOOLTIP = "input-tooltip", E.MANDATORY = "input-mandatory", E.LABEL_CONTAINER = "input-label-container", E.LABEL_TEXT = "input-label-text", E.FIELD = "input-field", E.EXTRA_TEXT = "input-extra-text", E.TOGGLE_PASSWORD = "input-toggle-password-icon", E))(O || {}), L = /* @__PURE__ */ ((E) => (E.WRAPPER = "cb-wrapper", E.LABEL = "cb-label", E.FIELD = "cb-field", E.CHECKED = "cb-checked", E))(L || {}), N = /* @__PURE__ */ ((E) => (E.FIELD = "radio-field", E.LABEL = "radio-label", E.ERROR_TEXT = "radio-error-text", E.GROUP = "radio-group", E))(N || {}), P = /* @__PURE__ */ ((E) => (E.WRAPPER = "swicth-wrapper", E.BUTTON = "swicth-button", E.TEXT = "swicth-text", E))(P || {}), _ = /* @__PURE__ */ ((E) => (E.WRAPPER = "ta-wrapper", E.LABEL = "ta-label", E.FIELD = "ta-field", E.TEXT = "ta-text", E))(_ || {}), l = /* @__PURE__ */ ((E) => (E.CONTAINER = "search-container", E.FIELD = "search-field", E.CLOSE = "search-close", E.CLEAR = "search-clear", E))(l || {}), r = /* @__PURE__ */ ((E) => (E.CONTAINER = "tbl-container", E.TABLE = "tbl-table", E.HEADER = "tbl-header", E.TITLE = "tbl-title", E.HEADER_RIGHT = "tbl-header-right", E.ACTIONS = "tbl-actions", E.SECTIONS = "tbl-sections", E.BODY_WRAPPER = "tbl-body-wrapper", E.EMPTY_STATE = "tbl-empty-state", E))(r || {}), c = /* @__PURE__ */ ((E) => (E.WRAPPER = "toggle-wrapper", E.BODY = "toggle-body", E.FIELD = "toggle-field", E.TEXT = "toggle-text", E.HELPER_TEXT = "toggle-helper-text", E.ERROR_TEXT = "toggle-error-text", E))(c || {}), C = /* @__PURE__ */ ((E) => (E.TEXT = "tt-text", E.TRIGGER = "tt-trigger", E.HEADER = "tt-header", E))(C || {}), n = /* @__PURE__ */ ((E) => (E.WRAPPER = "at-wrapper", E.TITLE_TEXT = "at-title-text", E.TITLE_TOOLTIP_TEXT = "at-tooltip-text", E.DESCRIPTION_TOOLTIP_TEXT = "at-description-tooltip-text", E.DESCRIPTION_TEXT = "at-description-text", E.TRIGGER_BUTTON = "at-trigger-button", E))(n || {}), p = /* @__PURE__ */ ((E) => (E.WRAPPER = "ai-wrapper", E.SELECTED_OPTION = "ai-selected-option", E.SEARCH_FIELD = "ai-search-field", E))(p || {}), b = /* @__PURE__ */ ((E) => (E.WRAPPER = "chip-wrapper", E.CLEAR = "chip-clear", E))(b || {}), v = /* @__PURE__ */ ((E) => (E.WRAPPER = "dp-wrapper", E.INPUT = "dp-input", E))(v || {}), S = /* @__PURE__ */ ((E) => (E.WRAPPER = "cm-wrapper", E.DAYS_HEADER = "cm-days-header", E.PREVIOUS = "cm-previous", E.NEXT = "cm-next", E.DAYS_WRAPPER = "cm-days-wrapper", E.DAY = "cm-day", E.MONTH_HEADER_TEXT = "cm-month-header-text", E.MONTH_HEADER = "cm-month-header", E))(S || {}), X = /* @__PURE__ */ ((E) => (E.WRAPPER = "dr-wrapper", E.FIELD = "dr-field", E.TRIGGER = "dr-trigger", E.CONTAINER = "dr-container", E.MENU = "dr-menu", E.MESSAGE = "dr-message", E.ACTION_APPLY = "dr-action-apply", E.ACTION_CANCEL = "dr-action-cancel", E))(X || {}), W = /* @__PURE__ */ ((E) => (E.WRAPPER = "tabs-wrapper", E.TAB = "tabs-tab", E))(W || {}), u = /* @__PURE__ */ ((E) => (E.TEXT = "t-text", E))(u || {}), B = /* @__PURE__ */ ((E) => (E.HEADER = "h-header", E))(B || {}), h = /* @__PURE__ */ ((E) => (E.CONTAINER = "field-label-container", E.TEXT = "field-label-text", E.MANDATORY = "field-label-mandatory", E.TOOLTIP = "field-label-help-tooltip", E))(h || {}), H = /* @__PURE__ */ ((E) => (E.CONTAINER = "field-help-text-container", E.TEXT = "field-help-text-text", E.ICON = "field-help-text-icon", E))(H || {}), G = /* @__PURE__ */ ((E) => (E.CONTAINER = "sb-container", E.TITLE = "sb-title", E.MESSAGE = "sb-message", E.CLOSE = "sb-close", E.ICON = "sb-icon", E.ACTION_BUTTON = "sb-action-button", E))(G || {});
|
|
2
2
|
export {
|
|
3
3
|
n as AppTriggerTestIdModifiers,
|
|
4
4
|
p as AutocompleteInputTestIdModifiers,
|
|
5
5
|
A as BannerTestIdModifiers,
|
|
6
6
|
S as CalendarMonthTestIdModifiers,
|
|
7
7
|
L as CheckboxTestIdModifiers,
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
b as ChipTestIdModifiers,
|
|
9
|
+
v as DatePickerTestIdModifiers,
|
|
10
10
|
X as DateRangeTestIdModifiers,
|
|
11
11
|
t as DialogTestIdModifiers,
|
|
12
|
-
|
|
12
|
+
a as DropdownTestIdModifiers,
|
|
13
13
|
H as FieldHelpTextTestIdModifiers,
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
h as FieldLabelTestIdModifiers,
|
|
15
|
+
B as HeaderTestIdModifiers,
|
|
16
|
+
R as IncludeExcludeTestIdModifiers,
|
|
17
17
|
O as InputTestIdModifiers,
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
18
|
+
N as RadioTestIdModifiers,
|
|
19
|
+
l as SearchTestIdModifiers,
|
|
20
|
+
G as SnackbarTestIdModifiers,
|
|
21
|
+
P as SwitchTestIdModifiers,
|
|
22
|
+
r as TableTestIdModifiers,
|
|
22
23
|
W as TabsTestIdModifiers,
|
|
23
|
-
|
|
24
|
-
|
|
24
|
+
_ as TextAreaTestIdModifiers,
|
|
25
|
+
u as TextTestIdModifiers,
|
|
25
26
|
c as ToggleTestIdModifiers,
|
|
26
27
|
C as TooltipTestIdModifiers
|
|
27
28
|
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.button-wrap[data-v-43578f8c]{border-radius:var(--border-radius-md);transition:all .2s ease;padding:0;min-width:auto;background-image:none;box-sizing:border-box;border:0}.contained.primary[data-v-43578f8c]{color:var(--primary-button-contrast-text);background:var(--primary-main)}.contained.primary[data-v-43578f8c]:hover{background:var(--primary-darker)}.contained.primary[data-v-43578f8c]:disabled{color:var(--text-disabled);background:var(--action-disabled-background);opacity:1}.contained.default[data-v-43578f8c]{color:var(--default-button-contrast-text);background:var(--default-main)}.contained.default[data-v-43578f8c]:hover{background:var(--default-light)}.contained.default[data-v-43578f8c]:disabled{color:var(--text-disabled);background:var(--action-disabled-background);opacity:1}.contained.danger[data-v-43578f8c]{color:var(--error-button-contrast-text);background:var(--error-main)}.contained.danger[data-v-43578f8c]:hover{background:var(--error-dark)}.contained.danger[data-v-43578f8c]:disabled{color:var(--text-disabled);background:var(--action-disabled-background);opacity:1}.contained.info[data-v-43578f8c]{color:var(--info-button-contrast-text);background:var(--info-main)}.contained.info[data-v-43578f8c]:hover{background:var(--info-dark)}.contained.info[data-v-43578f8c]:disabled{color:var(--text-disabled);background:var(--action-disabled-background);opacity:1}.contained.success[data-v-43578f8c]{color:var(--success-button-contrast-text);background:var(--success-main)}.contained.success[data-v-43578f8c]:hover{background:var(--success-dark)}.contained.success[data-v-43578f8c]:disabled{color:var(--text-disabled);background:var(--action-disabled-background);opacity:1}.contained.warning[data-v-43578f8c]{color:var(--warning-button-contrast-text);background:var(--warning-main)}.contained.warning[data-v-43578f8c]:hover{background:var(--warning-dark)}.contained.warning[data-v-43578f8c]:disabled{color:var(--text-disabled);background:var(--action-disabled-background);opacity:1}.contained.loading[data-v-43578f8c],.contained.loading[data-v-43578f8c]:hover{background:var(--action-disabled-background)}.outlined.primary[data-v-43578f8c]{color:var(--primary-main);background:var(--common-white);border:1px solid var(--primary-main)}.outlined.primary[data-v-43578f8c]:hover{background:var(--primary-lighter)}.outlined.primary[data-v-43578f8c]:disabled{color:var(--text-disabled);background:var(--common-white);border:1px solid var(--default-outlined-border);opacity:1}.outlined.default[data-v-43578f8c]{color:var(--text-primary);background:var(--common-white);border:1px solid var(--default-outlined-border)}.outlined.default[data-v-43578f8c]:hover{border:1px solid var(--action-active);background:var(--action-hover)}.outlined.default[data-v-43578f8c]:disabled{color:var(--text-disabled);background:var(--common-white);border:1px solid var(--default-outlined-border);opacity:1}.outlined.danger[data-v-43578f8c]{color:var(--error-main);background:var(--common-white);border:1px solid var(--error-main)}.outlined.danger[data-v-43578f8c]:hover{background:var(--error-lighter)}.outlined.danger[data-v-43578f8c]:disabled{color:var(--text-disabled);background:var(--common-white);border:1px solid var(--default-outlined-border);opacity:1}.outlined.info[data-v-43578f8c]{color:var(--info-main);background:var(--common-white);border:1px solid var(--info-main)}.outlined.info[data-v-43578f8c]:hover{background:var(--info-lighter)}.outlined.info[data-v-43578f8c]:disabled{color:var(--text-disabled);background:var(--common-white);border:1px solid var(--default-outlined-border);opacity:1}.outlined.success[data-v-43578f8c]{color:var(--success-main);background:var(--common-white);border:1px solid var(--success-main)}.outlined.success[data-v-43578f8c]:hover{background:var(--success-lighter)}.outlined.success[data-v-43578f8c]:disabled{color:var(--text-disabled);background:var(--common-white);border:1px solid var(--default-outlined-border);opacity:1}.outlined.warning[data-v-43578f8c]{color:var(--warning-darker);background:var(--common-white);border:1px solid var(--warning-darker)}.outlined.warning[data-v-43578f8c]:hover{background:var(--warning-lighter)}.outlined.warning[data-v-43578f8c]:disabled{color:var(--text-disabled);background:var(--common-white);border:1px solid var(--default-outlined-border);opacity:1}.outlined.loading[data-v-43578f8c],.outlined.loading[data-v-43578f8c]:hover{border:1px solid var(--common-divider);background:var(--action-disabled-background)}.text[data-v-43578f8c]{background:transparent}.text.primary[data-v-43578f8c]{color:var(--primary-main)}.text.primary[data-v-43578f8c]:hover{background:var(--primary-lighter)}.text.primary[data-v-43578f8c]:disabled{color:var(--text-disabled);opacity:1}.text.default[data-v-43578f8c]{color:var(--text-primary)}.text.default[data-v-43578f8c]:hover{background:var(--action-hover)}.text.default[data-v-43578f8c]:disabled{color:var(--text-disabled);opacity:1}.text.danger[data-v-43578f8c]{color:var(--error-main)}.text.danger[data-v-43578f8c]:hover{background:var(--error-lighter)}.text.danger[data-v-43578f8c]:disabled{color:var(--text-disabled);opacity:1}.text.info[data-v-43578f8c]{color:var(--info-main)}.text.info[data-v-43578f8c]:hover{background:var(--info-lighter)}.text.info[data-v-43578f8c]:disabled{color:var(--text-disabled);opacity:1}.text.success[data-v-43578f8c]{color:var(--success-main)}.text.success[data-v-43578f8c]:hover{background:var(--success-lighter)}.text.success[data-v-43578f8c]:disabled{color:var(--text-disabled);opacity:1}.text.warning[data-v-43578f8c]{color:var(--warning-darker)}.text.warning[data-v-43578f8c]:hover{background:var(--warning-lighter)}.text.warning[data-v-43578f8c]:disabled{color:var(--text-disabled);opacity:1}.text.loading[data-v-43578f8c],.text.loading[data-v-43578f8c]:hover{border:0;background:transparent}.small[data-v-43578f8c]{padding:2px 6px}.small.outlined[data-v-43578f8c]{padding:1px 5px}.medium[data-v-43578f8c]{padding:4px 8px}.medium.outlined[data-v-43578f8c]{padding:3px 7px}.large[data-v-43578f8c]{padding:10px 12px}.large.outlined[data-v-43578f8c]{padding:9px}.extraLarge[data-v-43578f8c]{padding:12px 14px}.extraLarge.outlined[data-v-43578f8c]{padding:11px 13px}.small[data-v-43578f8c],.medium[data-v-43578f8c],.large[data-v-43578f8c],.extraLarge[data-v-43578f8c]{height:auto}.flex[data-v-43578f8c]{display:flex;align-items:center}.start-icon[data-v-43578f8c]{margin-right:8px}.end-icon[data-v-43578f8c]{margin-left:8px}.loading.with-start-icon .content-with-icon[data-v-43578f8c]{padding-left:22px}.loading.with-end-icon .content-with-icon[data-v-43578f8c]{padding-right:22px}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.label[data-v-518c02d0]{color:#41454d}.checkbox[data-v-518c02d0]{color:#3083ff;position:relative;cursor:pointer;display:flex;align-items:center;user-select:none;line-height:0}.checkbox.focus-visible .checkbox__inner[data-v-518c02d0]{outline:solid;border-radius:4px}.checkboxes[data-v-518c02d0]{display:inline-flex;align-items:center;justify-content:center;position:relative;box-sizing:border-box;background-color:transparent;outline:0;border:0;line-height:0;margin:0;user-select:none;vertical-align:middle;appearance:none;text-decoration:none;border-radius:50%}.input[data-v-518c02d0]{z-index:-1;cursor:inherit;position:absolute;opacity:0;width:100%;height:100%;top:0;left:0;margin:0;padding:0}.checkbox__inner[data-v-518c02d0]{overflow:hidden;pointer-events:none;position:absolute;z-index:0;inset:0}.checkbox-icon.unchecked[data-v-518c02d0]{color:#a9afb4}.disabled[data-v-518c02d0]{cursor:default;color:#d2d5d8}.disabled .checkbox-text[data-v-518c02d0]{color:#8e959d}.checkbox-container[data-v-518c02d0]{display:flex}.checkbox-unchecked[data-v-518c02d0]{color:#a9afb4}.checkbox-text[data-v-518c02d0]{margin-left:.5rem;color:#53575b}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.sticky[data-v-f080f37f]{position:sticky}.table-container[data-v-f080f37f]{width:100%;position:relative;display:flex;flex-direction:column}.table-header[data-v-f080f37f]{display:flex;align-items:center;height:calc(var(--spacing-800) - 1px);border-bottom:1px solid var(--common-divider);background-color:var(--background-paper-elevation-0);position:sticky;left:0;padding:var(--spacing-300)}.table-header .table-title[data-v-f080f37f]{display:flex;flex:1;align-items:center;justify-content:flex-start;height:100%;color:var(--text-primary)}.table-header .table-header-right[data-v-f080f37f]{display:flex;align-items:center;height:100%}.table-header .search-wrapper[data-v-f080f37f]{width:13.75rem}.table-header.isStickyHeader[data-v-f080f37f]{z-index:199;top:0}.table-head-container[data-v-f080f37f]{display:flex;align-items:center;white-space:nowrap;color:var(--text-primary)}.table-footer[data-v-f080f37f]{color:var(--text-primary);background-color:var(--background-paper-elevation-0);padding:0 var(--spacing-300);display:flex;align-items:center;min-height:var(--spacing-600);border:1px solid var(--common-divider);border-radius:var(--border-radius-md);border-top-right-radius:0;border-top-left-radius:0}.table-body-wrapper[data-v-f080f37f]{display:inline-table}.table-header-actions[data-v-f080f37f]{margin-left:var(--spacing-100);display:flex;align-items:center}.table-row[data-v-f080f37f]{position:relative}.table-row.loading[data-v-f080f37f]{opacity:.7}.table-row:not(.expanded):last-child>td[data-v-f080f37f]{border-bottom:none}.table-row.expanded:last-child>.expanded-row[data-v-f080f37f]{border-bottom:none}.expanded-row[data-v-f080f37f]{grid-column:var(--0df6ad71);border-bottom:1px solid var(--common-divider);background-color:var(--background-default)}table[data-v-f080f37f]{position:relative;display:block;overflow:auto;background:var(--background-paper-elevation-0);border:1px solid var(--common-divider);color:var(--text-primary);text-align:left;table-layout:fixed;width:100%;max-height:100%;border-radius:var(--border-radius-md)}table.hasFooter[data-v-f080f37f]{border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom:none}table td[data-v-f080f37f],table th[data-v-f080f37f]{line-height:normal;padding:0 var(--spacing-200)}table td[data-v-f080f37f]:first-of-type,table th[data-v-f080f37f]:first-of-type{padding-left:var(--spacing-300)}table td[data-v-f080f37f]:last-of-type,table th[data-v-f080f37f]:last-of-type{padding-right:var(--spacing-300)}table td.expand-toggle-cell[data-v-f080f37f],table th.expand-toggle-cell[data-v-f080f37f]{padding-left:var(--spacing-150);padding-right:var(--spacing-75)}table>thead[data-v-f080f37f]{border-bottom:none;z-index:101;display:inline-table;min-width:100%}table>thead>tr[data-v-f080f37f]{color:var(--text-primary);border-bottom:1px solid var(--common-divider);height:var(--spacing-500);display:grid;grid-template-columns:var(--32cd282a)}table>thead>tr>th[data-v-f080f37f]{background:var(--background-paper-elevation-0);width:100%;display:flex;align-items:center;cursor:default}table>thead>tr>th.bordered[data-v-f080f37f]{border-right:1px solid var(--common-divider)}table>thead>tr>th.bordered.isStickyRight[data-v-f080f37f]{border-right:none;border-left:1px solid var(--common-divider)}table>thead>tr>th.isTextRight[data-v-f080f37f]{justify-content:flex-end}table>thead>tr>th.isSortable[data-v-f080f37f]{cursor:pointer}table>thead.sticky[data-v-f080f37f]{position:sticky;top:0;background:white}table>thead.isStickyHeader[data-v-f080f37f]{z-index:198;top:calc(var(--spacing-800) - 1px)}table>tbody[data-v-f080f37f]{display:block}table>tbody>*>tr[data-v-f080f37f]{background-color:var(--background-default);min-height:var(--1e6d6132);height:auto;display:grid;align-items:center;grid-template-columns:var(--32cd282a)}table>tbody>*>tr:nth-of-type(2n)>td[data-v-f080f37f]{background-color:var(--background-default)}table>tbody>*>tr:hover:not(.loading)>td[data-v-f080f37f]{background-color:var(--background-paper-elevation-1)}table>tbody td[data-v-f080f37f]{background-color:var(--background-default);border:none;min-width:0;display:flex;min-height:var(--1e6d6132);height:auto;width:100%;place-items:center;border-bottom:1px solid var(--common-divider);justify-content:start}table>tbody td.bordered[data-v-f080f37f]{border-right:1px solid var(--common-divider)}table>tbody td.bordered.isStickyRight[data-v-f080f37f]{border-right:none;border-left:1px solid var(--common-divider)}table>tbody td.isTextRight[data-v-f080f37f]{justify-content:flex-end;text-align:right}.section-container[data-v-f080f37f]{left:0}.sections[data-v-f080f37f]{display:flex}.section[data-v-f080f37f]{padding:0 1.5rem;background:var(--background-default);left:0;height:32px;display:flex;align-items:flex-end;border-right:1px solid var(--common-divider)}.table-cell[data-v-f080f37f]{width:100%}.empty-state[data-v-f080f37f]{min-height:250px}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.label[data-v-0114904e]{color:#41454d}.v-enter-active[data-v-0114904e],.v-leave-active[data-v-0114904e]{transition:opacity .25s ease}ol[data-v-0114904e],ul[data-v-0114904e],menu[data-v-0114904e]{list-style:none;margin:0;padding:0}.dropdown[data-v-0114904e]{display:flex;flex-direction:column}.dropdown--disabled[data-v-0114904e]{opacity:.7}.list-container[data-v-0114904e]{padding:.5rem}.list-container--multi[data-v-0114904e]{margin-bottom:0}.v-popper__arrow-container[data-v-0114904e]{display:none}.helper-text[data-v-0114904e]{padding-top:.25rem;color:#696a6b}.helper-text--error[data-v-0114904e]{color:#da564f}.no-result-container[data-v-0114904e]{height:100%;display:flex;align-items:center}.no-result[data-v-0114904e]{color:#8e959d;padding-left:.5rem}.list[data-v-0114904e]{outline:none;display:flex;flex-direction:column;width:100%;min-height:2rem;border-radius:.5rem}.list--multi[data-v-0114904e]{margin-bottom:.5rem;border-bottom-left-radius:0;border-bottom-right-radius:0}.button__container[data-v-0114904e]{display:flex;justify-content:center;flex-direction:column;position:relative}.button__container[data-v-0114904e]:not(.button__container--disabled){cursor:pointer}.loader[data-v-0114904e]{color:#8e959d;display:flex;height:100%;margin-left:.375rem;justify-self:center;align-items:center}.loader-icon[data-v-0114904e]{margin-right:.25rem;display:flex}.button[data-v-0114904e]{font-size:.875rem;line-height:1.25rem;min-width:15rem;color:#53575b;height:2rem;text-align:start;padding:.25rem .75rem;background:#f1f3f4;border-radius:.5rem;display:flex;border:none;align-items:center}.button--lg[data-v-0114904e]{height:2.5rem}.button[data-v-0114904e]:hover:not(.button--open):not(.button--disabled){color:#53575b;background:#edeff0}.button--open[data-v-0114904e],.button[data-v-0114904e]:focus-visible{background:linear-gradient(0deg,#3083ff 0,#3083ff 2px,#f1f3f4 0)}.image-slot[data-v-0114904e]{margin-right:.5rem}.angle-down[data-v-0114904e]{margin-left:auto;display:flex;color:#7b838c}.actions[data-v-0114904e]{display:flex;width:100%;margin-left:auto;padding:.75rem 1rem;border-top:1px solid #dddfe1;justify-content:flex-end}.actions[data-v-0114904e]:first-child{padding-right:.25rem}.apply-button[data-v-0114904e]{margin-left:.25rem}.dropdown-title__text[data-v-0114904e]{color:#41454d;border-bottom:1px solid #dddfe1;padding:1rem}.dropdown-title__search[data-v-0114904e]{padding:3px 0;width:100%;border-bottom:1px solid #dddfe1}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.add-filter-button[data-v-b25c5605]{position:relative}div[data-v-b25c5605]{display:block}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.label[data-v-9198bf4e]{color:#41454d}.search[data-v-9198bf4e]{padding:1rem;display:flex;align-items:center}.search svg[data-v-9198bf4e]{margin-right:.5rem;color:#a9afb4}.search-input[data-v-9198bf4e]{border:none;outline:none}.search-input[data-v-9198bf4e]::placeholder{font-family:HelveticaNeue,sans-serif;font-size:.8125rem}.search-container[data-v-9198bf4e]{display:flex;align-items:center;border-bottom:1px solid #dddfe1}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.label[data-v-2996b384]{color:#41454d}.filter-panel[data-v-2996b384]{display:flex}.filter-button.always-first[data-v-2996b384]{order:-2}.filter-button[data-v-2996b384]{margin-right:.25rem}.filter-button.hidden[data-v-2996b384]{order:100}.filter-button.exposed.selected[data-v-2996b384]{order:-1}.filter-button.selected[data-v-2996b384]{order:0}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.label[data-v-2c9debd6]{color:#41454d}[data-v-2c9debd6]::-webkit-scrollbar{width:.625rem;opacity:.7;background-color:transparent}[data-v-2c9debd6]::-webkit-scrollbar-thumb{border:3px solid transparent;background-clip:padding-box;border-radius:.625rem;background-color:#d2d5d8!important}[data-v-2c9debd6]::-webkit-scrollbar-track{border-radius:.625rem;background-color:transparent}.loader-wrapper[data-v-2c9debd6]{display:flex;width:100%;gap:.5rem;padding-left:.5rem;padding-right:.75rem}.include-exclude-wrapper[data-v-2c9debd6]{width:100%}.include-exclude-content[data-v-2c9debd6]{width:37.5rem}.include-exclude-list-wrapper[data-v-2c9debd6]{border-right:1px #dddfe1 solid;height:13.75rem}.include-exclude-list[data-v-2c9debd6],.include-exclude-selected-list[data-v-2c9debd6]{overflow-y:auto;overflow-x:none;padding:.5rem .25rem 0 .5rem;max-height:13.75rem;height:13.75rem}.no-result-text[data-v-2c9debd6]{color:#8e959d;height:100%}.include-exclude-list-wrapper[data-v-2c9debd6],.include-exclude-selected-wrapper[data-v-2c9debd6]{width:50%;height:100%;display:flex;flex-direction:column;justify-content:flex-start}.include-exclude-list-item-skeleton[data-v-2c9debd6]{display:flex;gap:.5rem;margin-bottom:1rem}.include-exclude-list-item-skeleton[data-v-2c9debd6]:first-child{margin-top:.5rem}li[data-v-2c9debd6]:last-child{padding-bottom:.25rem}.include-exclude-header-left-section[data-v-2c9debd6]{border-right:1px solid #dddfe1;color:#53575b;padding:1.5rem;height:100%;display:flex;align-items:center}.include-exclude-header-right-section[data-v-2c9debd6]{flex-grow:1;padding:0 .375rem}.include-exclude-footer[data-v-2c9debd6]{height:3rem;display:flex}.include-exclude-container[data-v-2c9debd6]{display:flex;align-items:center;justify-content:center;height:100%}.include-exclude-container-wrapper[data-v-2c9debd6]{border-top:1px #dddfe1 solid;border-bottom:1px #dddfe1 solid}.include-exclude-selected-header-left-selected[data-v-2c9debd6]{color:#565c62}.include-exclude-header[data-v-2c9debd6]{display:flex;align-items:center;justify-content:space-between;height:3.5rem}.include-exclude-list-header-loading[data-v-2c9debd6]{gap:.5rem;padding:0 .25rem 0 .5rem}.include-exclude-list-selected-header-loading[data-v-2c9debd6]{padding:0 .25rem 0 .5rem}.include-exclude-list-header-loaded[data-v-2c9debd6]{padding:0 1rem}.include-exclude-list-header[data-v-2c9debd6],.include-exclude-selected-header[data-v-2c9debd6]{height:2.5rem;display:flex;justify-content:space-between;align-items:center;height:2.5625rem;border-bottom:1px #dddfe1 solid}.include-exclude-header-right-section-search-input[data-v-2c9debd6]{width:100%;height:100%}.include-exclude-selected-header-right[data-v-2c9debd6]{height:100%;display:flex}.include-exclude-selected-header-left[data-v-2c9debd6]{height:100%;display:flex;align-items:center}.dot-skeleton[data-v-2c9debd6]{width:1rem;height:1rem}ol[data-v-2c9debd6],ul[data-v-2c9debd6],menu[data-v-2c9debd6]{list-style:none;margin:0;padding:0}.include-exclude-footer-buttons[data-v-2c9debd6]{display:flex;align-items:center;justify-content:center;margin-left:auto;gap:.25rem;padding-right:1rem}.switch-enter-from[data-v-2c9debd6],.switch-leave-to[data-v-2c9debd6]{transition:all .25s ease;opacity:0}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.label[data-v-ff32d111]{color:#41454d}[data-v-ff32d111]::-webkit-scrollbar{width:.625rem;opacity:.7;background-color:transparent}[data-v-ff32d111]::-webkit-scrollbar-thumb{border:3px solid transparent;background-clip:padding-box;border-radius:.625rem;background-color:#d2d5d8!important}[data-v-ff32d111]::-webkit-scrollbar-track{border-radius:.625rem;background-color:transparent}.loader-wrapper[data-v-ff32d111]{display:flex;width:100%;gap:.5rem;padding-left:.5rem;padding-right:.75rem}.include-exclude-wrapper[data-v-ff32d111]{width:100%}.include-exclude-content[data-v-ff32d111]{width:37.5rem}.include-exclude-list-wrapper[data-v-ff32d111]{border-right:1px #dddfe1 solid;height:13.75rem}.include-exclude-list[data-v-ff32d111],.include-exclude-selected-list[data-v-ff32d111]{overflow-y:auto;overflow-x:none;padding:.5rem .25rem 0 .5rem;max-height:13.75rem;height:13.75rem}.include-exclude-list.include-exclude-list-draggable[data-v-ff32d111],.include-exclude-selected-list.include-exclude-list-draggable[data-v-ff32d111]{padding:.75rem .5rem .5rem;height:18.5rem;max-height:18.5rem}.include-exclude-list.include-exclude-list-draggable li[data-v-ff32d111]:last-child,.include-exclude-selected-list.include-exclude-list-draggable li[data-v-ff32d111]:last-child{padding-bottom:.5rem}.no-result-text[data-v-ff32d111]{color:#8e959d;height:100%}.include-exclude-list-wrapper[data-v-ff32d111],.include-exclude-selected-wrapper[data-v-ff32d111]{width:50%;height:100%;display:flex;flex-direction:column;justify-content:flex-start}.include-exclude-list-item-skeleton[data-v-ff32d111]{display:flex;gap:.5rem;margin-bottom:1rem}.include-exclude-list-item-skeleton[data-v-ff32d111]:first-child{margin-top:.5rem}li[data-v-ff32d111]:last-child{padding-bottom:.25rem}.drag-item[data-v-ff32d111]:last-child{padding-bottom:.25rem}.include-exclude-header-left-section[data-v-ff32d111]{border-right:1px solid #dddfe1;color:#53575b;padding:1.5rem;height:100%;display:flex;align-items:center}.include-exclude-header-right-section[data-v-ff32d111]{flex-grow:1;padding:0 .375rem}.include-exclude-footer[data-v-ff32d111]{height:3rem;display:flex}.include-exclude-container[data-v-ff32d111]{display:flex;align-items:center;justify-content:center;height:100%}.include-exclude-container-wrapper[data-v-ff32d111]{border-top:1px #dddfe1 solid;border-bottom:1px #dddfe1 solid}.include-exclude-selected-header-left-selected[data-v-ff32d111]{color:#565c62}.include-exclude-header[data-v-ff32d111]{display:flex;align-items:center;justify-content:space-between;height:3.5rem}.include-exclude-list-header-loading[data-v-ff32d111]{gap:.5rem;padding:0 .25rem 0 .5rem}.include-exclude-list-selected-header-loading[data-v-ff32d111]{padding:0 .25rem 0 .5rem}.include-exclude-list-header-loaded[data-v-ff32d111]{padding:0 1rem}.include-exclude-list-header[data-v-ff32d111],.include-exclude-selected-header[data-v-ff32d111]{height:2.5rem;display:flex;justify-content:space-between;align-items:center;height:2.5625rem;border-bottom:1px #dddfe1 solid}.include-exclude-header-right-section-search-input[data-v-ff32d111]{width:100%;height:100%}.include-exclude-selected-header-right[data-v-ff32d111]{height:100%;display:flex}.include-exclude-selected-header-left[data-v-ff32d111]{height:100%;display:flex;align-items:center}.dot-skeleton[data-v-ff32d111]{width:1rem;height:1rem}ol[data-v-ff32d111],ul[data-v-ff32d111],menu[data-v-ff32d111]{list-style:none;margin:0;padding:0}.include-exclude-footer-buttons[data-v-ff32d111]{display:flex;align-items:center;justify-content:center;margin-left:auto;gap:.25rem;padding-right:1rem}.switch-enter-from[data-v-ff32d111],.switch-leave-to[data-v-ff32d111]{transition:all .25s ease;opacity:0}.option-collapse[data-v-ff32d111]{padding:.5rem .25rem .5rem .5rem;height:40px;display:flex;align-items:center;justify-content:space-between;cursor:pointer}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.label[data-v-4a87e4fd]{color:#41454d}.item-container[data-v-4a87e4fd]{display:flex;align-items:center;cursor:pointer;overflow-x:hidden;overflow:hidden;border-radius:.5rem;padding:.5rem .25rem .5rem .5rem}.item-container--disabled[data-v-4a87e4fd]{cursor:not-allowed;opacity:.7}.item-container[data-v-4a87e4fd]:focus{outline:none}.item-container[data-v-4a87e4fd]:hover,.item-container--active[data-v-4a87e4fd],.item-container[data-v-4a87e4fd]:active{background-color:#f7f8f9}.item-container:not(.item-container--multi).item-container--selected[data-v-4a87e4fd]{color:#3083ff;background-color:#e2eeff;height:2rem}.item-container--multi[data-v-4a87e4fd]{height:2rem}.item-container--two-lines[data-v-4a87e4fd]{height:3rem}.text-container[data-v-4a87e4fd]{color:#53575b;display:flex;flex-direction:column;line-height:normal;max-width:10.5rem;height:100%}.subtitle[data-v-4a87e4fd]{margin-top:.125rem;color:#7b838c}.clear-button[data-v-4a87e4fd]{padding:0 .25rem;display:flex;align-items:center;height:auto;background-image:none;min-width:auto;border:none;background-color:transparent;color:#d2d5d8}.clear-button[data-v-4a87e4fd]:hover{color:#a9afb4}.item[data-v-4a87e4fd]{width:100%;display:flex;flex-direction:column;justify-content:center;gap:.25rem;justify-content:flex-start}.item--with-icon[data-v-4a87e4fd],.item--multi[data-v-4a87e4fd]{display:flex;flex-direction:row;align-items:center;justify-content:start}.item--without-icon[data-v-4a87e4fd]{gap:.25rem}.checkbox[data-v-4a87e4fd]{display:block;margin-right:.25rem}.image[data-v-4a87e4fd]{align-items:center;justify-content:center;display:flex}.start-icon[data-v-4a87e4fd]{display:flex;align-items:center;color:#a9afb4}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.label[data-v-5faaafce]{color:#41454d}.label[data-v-5faaafce]{line-height:1;color:#41454d;padding-bottom:.5rem}.mandatory[data-v-5faaafce]{margin-left:2px}
|