@ironsource/shared-ui 2.0.0-rc.8 → 2.0.0-rc.9

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.
Files changed (52) hide show
  1. package/Button.vue_vue_type_style_index_0_scoped_35545b8c_lang.css +1 -0
  2. package/CardPanel.vue_vue_type_style_index_0_scoped_3cda0f04_lang.css +1 -0
  3. package/FoldableSection.vue_vue_type_style_index_0_scoped_51b5b56d_lang.css +1 -0
  4. package/FormCard.vue_vue_type_style_index_0_scoped_bb7d27f9_lang.css +1 -0
  5. package/MenuItem.vue_vue_type_style_index_0_scoped_67e53b85_lang.css +1 -0
  6. package/ToggleV4.vue_vue_type_style_index_0_scoped_ef31fecc_lang.css +1 -0
  7. package/Tooltip.vue_vue_type_style_index_0_scoped_9020a179_lang.css +1 -0
  8. package/TooltipV4.vue_vue_type_style_index_0_scoped_21f12d1a_lang.css +1 -0
  9. package/components/appTrigger/AppTrigger.vue2.js +19 -20
  10. package/components/button/v3/Button.vue.js +3 -3
  11. package/components/button/v3/Button.vue2.js +1 -1
  12. package/components/button/v3/ScrollButton.vue2.js +4 -5
  13. package/components/includeExclude/IncludeExcludeAppTrigger.vue2.js +15 -16
  14. package/components/includeExclude/IncludeExcludeOption.vue2.js +6 -7
  15. package/components/includeExclude/IncludeExcludeOptionDraggable.vue2.js +16 -17
  16. package/components/input/v3/Input.vue2.js +3 -4
  17. package/components/input/v4/TextField.vue2.js +8 -8
  18. package/components/layout/CardPanel.vue.d.ts +36 -0
  19. package/components/layout/CardPanel.vue.js +7 -0
  20. package/components/layout/CardPanel.vue2.js +25 -0
  21. package/components/layout/FoldableSection.vue.d.ts +50 -0
  22. package/components/layout/FoldableSection.vue.js +7 -0
  23. package/components/layout/FoldableSection.vue2.js +57 -0
  24. package/components/layout/FormCard.vue.d.ts +74 -0
  25. package/components/layout/FormCard.vue.js +7 -0
  26. package/components/layout/FormCard.vue2.js +74 -0
  27. package/components/layout/index.d.ts +405 -0
  28. package/components/layout/index.js +10 -0
  29. package/components/menuItem/MenuItem.vue.js +5 -24
  30. package/components/menuItem/MenuItem.vue2.js +23 -0
  31. package/components/shared/FieldLabel.vue2.js +3 -3
  32. package/components/table/common/Table.common.js +20 -20
  33. package/components/toggle/v4/ToggleV4.vue.js +7 -0
  34. package/components/toggle/v4/ToggleV4.vue2.js +95 -0
  35. package/components/toggle/v4/index.d.ts +313 -0
  36. package/components/toggle/v4/index.js +6 -0
  37. package/components/tooltip/v3/Tooltip.vue.js +6 -3
  38. package/components/tooltip/v3/Tooltip.vue2.js +3 -3
  39. package/components/tooltip/v3/index.js +3 -4
  40. package/components/tooltip/v4/TooltipV4.vue.js +6 -65
  41. package/components/tooltip/v4/TooltipV4.vue2.js +67 -0
  42. package/components/tooltip/v4/index.js +2 -2
  43. package/index.d.ts +623 -1
  44. package/index.js +137 -129
  45. package/package.json +17 -5
  46. package/testids/index.d.ts +11 -0
  47. package/testids/index.js +16 -14
  48. package/Button.vue_vue_type_style_index_0_scoped_bfe31a93_lang.css +0 -1
  49. package/MenuItem.vue_vue_type_style_index_0_scoped_c7e837fa_lang.css +0 -1
  50. package/components/tooltip/v4/TooltipV4.vue3.js +0 -4
  51. /package/{Tooltip.vue_vue_type_style_index_0_lang.css → Tooltip.vue_vue_type_style_index_1_lang.css} +0 -0
  52. /package/{TooltipV4.vue_vue_type_style_index_0_lang.css → TooltipV4.vue_vue_type_style_index_1_lang.css} +0 -0
package/index.js CHANGED
@@ -1,173 +1,181 @@
1
- import './MenuItem.vue_vue_type_style_index_0_scoped_c7e837fa_lang.css';
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";
1
+ import './CssBaseline.vue_vue_type_style_index_0_scoped_f7dd256b_lang.css';
2
+ import { AppTriggerTypes as _ } from "./components/appTrigger/index.js";
3
+ import { AutocompleteDropdownTypes as q } from "./components/autocompleteDropdown/index.js";
4
+ import { MenuItemTypes as J } from "./components/menuItem/index.js";
5
+ import { MenuTypes as V } from "./components/menu/index.js";
6
+ import { AppIconTypes as G } from "./components/appIcon/index.js";
7
+ import { FloatingToolbarTypes as Q } from "./components/floatingToolbar/index.js";
8
+ import { IncludeExcludeTypes as W } from "./components/includeExclude/index.js";
9
+ import { CssBaselineTypes as Z } from "./components/cssBaseline/index.js";
10
+ import { ID_INJECTION_KEY as ro, useId as eo } from "./composables/useId.js";
11
+ import { FilterDropdownTypes as po } from "./components/filterDropdown/index.js";
12
+ import { SkeletonTypes as ao } from "./components/skeleton/index.js";
13
+ import { TypographyTypes as xo } from "./components/typography/index.js";
14
+ import { TypographyTypesV4 as io } from "./components/typography/v4/index.js";
15
+ import { PopoverTypes as lo } from "./components/popover/index.js";
16
+ import { MultiBarTypes as $o } from "./components/multibar/index.js";
17
+ import { FormCardTypes as co } from "./components/layout/index.js";
17
18
  import * as o from "./components/button/v3/index.js";
18
- import * as e from "./components/button/v4/index.js";
19
- import * as r from "./components/chip/v3/index.js";
19
+ import * as r from "./components/button/v4/index.js";
20
+ import * as e from "./components/chip/v3/index.js";
20
21
  import * as t from "./components/chip/v4/index.js";
21
22
  import * as p from "./components/switch/v3/index.js";
22
23
  import * as m from "./components/switch/v4/index.js";
23
24
  import * as a from "./components/dropdown/v3/index.js";
24
25
  import * as f from "./components/dropdown/v4/index.js";
25
26
  import * as x from "./components/search/v3/index.js";
26
- import * as s from "./components/search/v4/index.js";
27
- import * as d from "./components/filtersPanel/v3/index.js";
27
+ import * as d from "./components/search/v4/index.js";
28
+ import * as s from "./components/filtersPanel/v3/index.js";
28
29
  import * as i from "./components/filtersPanel/v4/index.js";
29
30
  import * as n from "./components/checkbox/v3/index.js";
30
31
  import * as l from "./components/checkbox/v4/index.js";
31
32
  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";
33
+ import * as $ from "./components/icon/v4/index.js";
34
+ import * as T from "./components/input/v3/index.js";
35
+ import * as c from "./components/input/v4/index.js";
36
+ import * as y from "./components/tabs/v3/index.js";
36
37
  import * as g from "./components/tabs/v4/index.js";
37
38
  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";
39
+ import * as A from "./components/dialog/v4/index.js";
40
+ import * as D from "./components/toggle/v3/index.js";
41
+ import * as E from "./components/toggle/v4/index.js";
42
+ import * as F from "./components/tooltip/v3/index.js";
43
+ import * as B from "./components/tooltip/v4/index.js";
44
+ import * as C from "./components/table/v3/index.js";
42
45
  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";
46
+ import * as M from "./components/table-cells/v3/index.js";
47
+ import * as b from "./components/table-cells/v4/index.js";
45
48
  import * as k from "./components/emptyState/v3/index.js";
46
49
  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";
50
+ import * as P from "./components/snackbar/v3/index.js";
51
+ import * as S from "./components/snackbar/v4/index.js";
52
+ import * as v from "./components/radioButton/v3/index.js";
53
+ import * as O from "./components/radioButton/v4/index.js";
54
+ import { TextAreaTypes as go } from "./components/textArea/index.js";
55
+ import { useToggle as Ao } from "./composables/useToggle.js";
56
+ import { useSearch as Eo } from "./composables/useSearch.js";
57
+ import { DateRangeTypes as Bo } from "./components/dateRange/index.js";
56
58
  import { DatePickerTypes as ho } from "./components/datePicker/index.js";
57
- import { BannerTypes as Mo } from "./components/banner/index.js";
59
+ import { BannerTypes as bo } from "./components/banner/index.js";
58
60
  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 = {
86
- ...r,
61
+ import { default as So } from "./components/autocompleteDropdown/AutocompleteDropdown.vue.js";
62
+ import { default as Oo } from "./components/menuItem/MenuItem.vue.js";
63
+ import { default as No } from "./components/menu/Menu.vue.js";
64
+ import { default as _o } from "./components/appIcon/AppIcon.vue.js";
65
+ import { default as qo } from "./components/floatingToolbar/FloatingToolbar.vue.js";
66
+ import { default as Jo } from "./components/includeExclude/IncludeExclude.vue.js";
67
+ import { default as Vo } from "./components/includeExclude/IncludeExcludeDragDrop.vue.js";
68
+ import { default as Go } from "./components/includeExclude/IncludeExcludeOption.vue.js";
69
+ import { default as Qo } from "./components/includeExclude/IncludeExcludeOptionDraggable.vue.js";
70
+ import { default as Wo } from "./components/includeExclude/IncludeExcludeAppTrigger.vue.js";
71
+ import { default as Zo } from "./components/includeExclude/IncludeExcludeAppHeader.vue.js";
72
+ import { default as rr } from "./components/includeExclude/IncludeExcludeChipFilter.vue.js";
73
+ import { default as tr } from "./components/cssBaseline/CssBaseline.vue.js";
74
+ import { default as mr } from "./components/filterDropdown/FilterDropdown.vue.js";
75
+ import { default as fr } from "./components/filterDropdown/AddFilterButton.vue.js";
76
+ import { default as dr } from "./components/skeleton/Skeleton.vue.js";
77
+ import { default as ir } from "./components/typography/Heading.vue.js";
78
+ import { default as lr } from "./components/typography/Text.vue.js";
79
+ import { default as $r } from "./components/typography/v4/Typography.vue.js";
80
+ import { default as cr } from "./components/popover/Popover.vue.js";
81
+ import { default as gr } from "./components/multibar/MultiBar.vue.js";
82
+ import { default as Ar } from "./components/layout/FormCard.vue.js";
83
+ import { default as Er } from "./components/layout/CardPanel.vue.js";
84
+ import { default as Br } from "./components/layout/FoldableSection.vue.js";
85
+ import { default as hr } from "./components/textArea/TextArea.vue.js";
86
+ import { default as br } from "./components/dateRange/DateRange.vue.js";
87
+ import { default as wr } from "./components/datePicker/DatePicker.vue.js";
88
+ import { default as Sr } from "./components/banner/Banner.vue.js";
89
+ const H = {
90
+ ...e,
87
91
  ...t,
88
92
  ...p,
89
93
  ...m,
90
94
  ...o,
91
- ...e,
95
+ ...r,
92
96
  ...a,
93
97
  ...f,
94
98
  ...x,
95
- ...s,
96
99
  ...d,
100
+ ...s,
97
101
  ...i,
98
- ...$,
99
- ...y,
100
- ...u,
101
102
  ...T,
102
103
  ...c,
104
+ ...u,
105
+ ...$,
106
+ ...y,
103
107
  ...g,
104
108
  ...I,
105
- ...D,
106
109
  ...A,
107
- ...E,
110
+ ...F,
108
111
  ...B,
112
+ ...D,
113
+ ...E,
114
+ ...C,
109
115
  ...h,
110
- ...F,
111
116
  ...M,
117
+ ...b,
112
118
  ...k,
113
119
  ...w,
114
- ...b,
115
- ...C,
120
+ ...P,
121
+ ...S,
116
122
  ...n,
117
123
  ...l,
118
- ...P,
119
- ...v
124
+ ...v,
125
+ ...O
120
126
  };
121
127
  export {
122
- me as AddFilterButton,
123
- No as AppIcon,
124
- Y as AppIconTypes,
128
+ fr as AddFilterButton,
129
+ _o as AppIcon,
130
+ G as AppIconTypes,
125
131
  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,
132
+ _ as AppTriggerTypes,
133
+ So as AutocompleteDropdown,
134
+ q as AutocompleteDropdownTypes,
135
+ Sr as Banner,
136
+ bo as BannerTypes,
137
+ Er as CardPanel,
138
+ tr as CssBaseline,
139
+ Z as CssBaselineTypes,
140
+ wr as DatePicker,
134
141
  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
142
+ br as DateRange,
143
+ Bo as DateRangeTypes,
144
+ mr as FilterDropdown,
145
+ po as FilterDropdownTypes,
146
+ qo as FloatingToolbar,
147
+ Q as FloatingToolbarTypes,
148
+ Br as FoldableSection,
149
+ Ar as FormCard,
150
+ co as FormCardTypes,
151
+ ir as Heading,
152
+ ro as ID_INJECTION_KEY,
153
+ Jo as IncludeExclude,
154
+ Zo as IncludeExcludeAppHeader,
155
+ Wo as IncludeExcludeAppTrigger,
156
+ rr as IncludeExcludeChipFilter,
157
+ Vo as IncludeExcludeDragDrop,
158
+ Go as IncludeExcludeOption,
159
+ Qo as IncludeExcludeOptionDraggable,
160
+ W as IncludeExcludeTypes,
161
+ No as Menu,
162
+ Oo as MenuItem,
163
+ J as MenuItemTypes,
164
+ V as MenuTypes,
165
+ gr as MultiBar,
166
+ $o as MultiBarTypes,
167
+ cr as Popover,
168
+ lo as PopoverTypes,
169
+ dr as Skeleton,
170
+ ao as SkeletonTypes,
171
+ lr as Text,
172
+ hr as TextArea,
173
+ go as TextAreaTypes,
174
+ $r as Typography,
175
+ xo as TypographyTypes,
176
+ io as TypographyTypesV4,
177
+ H as default,
178
+ eo as useId,
179
+ Eo as useSearch,
180
+ Ao as useToggle
173
181
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ironsource/shared-ui",
3
- "version": "2.0.0-rc.8",
3
+ "version": "2.0.0-rc.9",
4
4
  "engines": {
5
5
  "npm": ">=7.0.0",
6
6
  "node": ">=16.0.0"
@@ -168,13 +168,14 @@
168
168
  "./emptyState": "./components/emptyState/v3/EmptyState.vue.js",
169
169
  "./emptyState/v4": "./components/emptyState/v4/EmptyStateV4.vue.js",
170
170
  "./table": "./components/table/v3/Table.vue.js",
171
- "./table/v4": "./components/table/v4/DataGrid.vue.js",
171
+ "./table/v4": "./components/table/v4/index.js",
172
172
  "./dateRange": "./components/dateRange/DateRange.vue.js",
173
173
  "./datePicker": "./components/datePicker/DatePicker.vue.js",
174
174
  "./dialog": "./components/dialog/v3/Dialog.vue.js",
175
175
  "./dialog/v4": "./components/dialog/v4/DialogV4.vue.js",
176
176
  "./dropdown": "./components/dropdown/v3/index.js",
177
177
  "./dropdown/v4": "./components/dropdown/v4/index.js",
178
+ "./layout": "./components/layout/index.js",
178
179
  "./filterDropdown": "./components/filterDropdown/FilterDropdown.vue.js",
179
180
  "./filtersPanel": "./components/filtersPanel/v3/index.js",
180
181
  "./filtersPanel/v4": "./components/filtersPanel/v4/index.js",
@@ -187,10 +188,12 @@
187
188
  "./iconButton": "./components/button/v3/IconButton.vue.js",
188
189
  "./iconButton/v4": "./components/button/v4/IconButtonV4.vue.js",
189
190
  "./scrollButton": "./components/button/v3/ScrollButton.vue.js",
190
- "./checkbox": "./components/checkbox/Checkbox.vue.js",
191
+ "./checkbox": "./components/checkbox/v3/Checkbox.vue.js",
192
+ "./checkbox/v4": "./components/checkbox/v4/CheckboxV4.vue.js",
191
193
  "./icon": "./components/icon/v3/Icon.vue.js",
192
194
  "./icon/v4": "./components/icon/v4/IconV4.vue.js",
193
195
  "./toggle": "./components/toggle/v3/Toggle.vue.js",
196
+ "./toggle/v4": "./components/toggle/v4/ToggleV4.vue.js",
194
197
  "./tooltip": "./components/tooltip/v3/Tooltip.vue.js",
195
198
  "./tooltip/v4": "./components/tooltip/v4/TooltipV4.vue.js",
196
199
  "./search": "./components/search/v3/Search.vue.js",
@@ -275,7 +278,7 @@
275
278
  "./components/table/v3/Table.vue.d.ts"
276
279
  ],
277
280
  "table/v4": [
278
- "./components/table/v4/DataGrid.vue.d.ts"
281
+ "./components/table/v4/index.d.ts"
279
282
  ],
280
283
  "dialog": [
281
284
  "./components/dialog/v3/Dialog.vue.d.ts"
@@ -289,6 +292,9 @@
289
292
  "dropdown/v4": [
290
293
  "./components/dropdown/v4/index.d.ts"
291
294
  ],
295
+ "layout": [
296
+ "./components/layout/index.d.ts"
297
+ ],
292
298
  "filtersPanel": [
293
299
  "./components/filtersPanel/v3/index.d.ts"
294
300
  ],
@@ -332,7 +338,10 @@
332
338
  "./components/button/ScrollButton.vue.d.ts"
333
339
  ],
334
340
  "checkbox": [
335
- "./components/checkbox/Checkbox.vue.d.ts"
341
+ "./components/checkbox/v3/Checkbox.vue.d.ts"
342
+ ],
343
+ "checkbox/v4": [
344
+ "./components/checkbox/v4/CheckboxV4.vue.d.ts"
336
345
  ],
337
346
  "icon": [
338
347
  "./components/icon/v3/Icon.vue.d.ts"
@@ -343,6 +352,9 @@
343
352
  "./toggle": [
344
353
  "./components/toggle/v3/Toggle.vue.d.ts"
345
354
  ],
355
+ "./toggle/v4": [
356
+ "./components/toggle/v4/ToggleV4.vue.d.ts"
357
+ ],
346
358
  "./tooltip": [
347
359
  "./components/tooltip/v3/Tooltip.vue.d.ts"
348
360
  ],
@@ -174,3 +174,14 @@ export declare enum SnackbarTestIdModifiers {
174
174
  ICON = "sb-icon",
175
175
  ACTION_BUTTON = "sb-action-button"
176
176
  }
177
+ export declare enum FoldableSectionTestIdModifiers {
178
+ TITLE = "foldable-section-title",
179
+ CONTENT = "foldable-section-content"
180
+ }
181
+ export declare enum FormCardTestIdModifiers {
182
+ TITLE = "form-card-title",
183
+ CONTENT = "form-card-content",
184
+ ACTIONS = "form-card-actions",
185
+ SAVE_BUTTON = "form-card-save-btn",
186
+ CANCEL_BUTTON = "form-card-cancel-btn"
187
+ }
package/testids/index.js CHANGED
@@ -1,28 +1,30 @@
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 || {});
1
+ var a = /* @__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))(a || {}), R = /* @__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))(R || {}), 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 || {}), N = /* @__PURE__ */ ((E) => (E.WRAPPER = "cb-wrapper", E.LABEL = "cb-label", E.FIELD = "cb-field", E.CHECKED = "cb-checked", E))(N || {}), L = /* @__PURE__ */ ((E) => (E.FIELD = "radio-field", E.LABEL = "radio-label", E.ERROR_TEXT = "radio-error-text", E.GROUP = "radio-group", E))(L || {}), P = /* @__PURE__ */ ((E) => (E.WRAPPER = "swicth-wrapper", E.BUTTON = "swicth-button", E.TEXT = "swicth-text", E))(P || {}), c = /* @__PURE__ */ ((E) => (E.WRAPPER = "ta-wrapper", E.LABEL = "ta-label", E.FIELD = "ta-field", E.TEXT = "ta-text", E))(c || {}), l = /* @__PURE__ */ ((E) => (E.CONTAINER = "search-container", E.FIELD = "search-field", E.CLOSE = "search-close", E.CLEAR = "search-clear", E))(l || {}), _ = /* @__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))(_ || {}), n = /* @__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))(n || {}), r = /* @__PURE__ */ ((E) => (E.TEXT = "tt-text", E.TRIGGER = "tt-trigger", E.HEADER = "tt-header", E))(r || {}), C = /* @__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))(C || {}), 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 || {}), u = /* @__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))(u || {}), X = /* @__PURE__ */ ((E) => (E.WRAPPER = "tabs-wrapper", E.TAB = "tabs-tab", E))(X || {}), B = /* @__PURE__ */ ((E) => (E.TEXT = "t-text", E))(B || {}), W = /* @__PURE__ */ ((E) => (E.HEADER = "h-header", E))(W || {}), 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 || {}), m = /* @__PURE__ */ ((E) => (E.TITLE = "foldable-section-title", E.CONTENT = "foldable-section-content", E))(m || {}), U = /* @__PURE__ */ ((E) => (E.TITLE = "form-card-title", E.CONTENT = "form-card-content", E.ACTIONS = "form-card-actions", E.SAVE_BUTTON = "form-card-save-btn", E.CANCEL_BUTTON = "form-card-cancel-btn", E))(U || {});
2
2
  export {
3
- n as AppTriggerTestIdModifiers,
3
+ C as AppTriggerTestIdModifiers,
4
4
  p as AutocompleteInputTestIdModifiers,
5
5
  A as BannerTestIdModifiers,
6
6
  S as CalendarMonthTestIdModifiers,
7
- L as CheckboxTestIdModifiers,
7
+ N as CheckboxTestIdModifiers,
8
8
  b as ChipTestIdModifiers,
9
9
  v as DatePickerTestIdModifiers,
10
- X as DateRangeTestIdModifiers,
10
+ u as DateRangeTestIdModifiers,
11
11
  t as DialogTestIdModifiers,
12
- a as DropdownTestIdModifiers,
12
+ R as DropdownTestIdModifiers,
13
13
  H as FieldHelpTextTestIdModifiers,
14
14
  h as FieldLabelTestIdModifiers,
15
- B as HeaderTestIdModifiers,
16
- R as IncludeExcludeTestIdModifiers,
15
+ m as FoldableSectionTestIdModifiers,
16
+ U as FormCardTestIdModifiers,
17
+ W as HeaderTestIdModifiers,
18
+ a as IncludeExcludeTestIdModifiers,
17
19
  O as InputTestIdModifiers,
18
- N as RadioTestIdModifiers,
20
+ L as RadioTestIdModifiers,
19
21
  l as SearchTestIdModifiers,
20
22
  G as SnackbarTestIdModifiers,
21
23
  P as SwitchTestIdModifiers,
22
- r as TableTestIdModifiers,
23
- W as TabsTestIdModifiers,
24
- _ as TextAreaTestIdModifiers,
25
- u as TextTestIdModifiers,
26
- c as ToggleTestIdModifiers,
27
- C as TooltipTestIdModifiers
24
+ _ as TableTestIdModifiers,
25
+ X as TabsTestIdModifiers,
26
+ c as TextAreaTestIdModifiers,
27
+ B as TextTestIdModifiers,
28
+ n as ToggleTestIdModifiers,
29
+ r as TooltipTestIdModifiers
28
30
  };
@@ -1 +0,0 @@
1
- .label[data-v-bfe31a93]{color:#41454d}.flex[data-v-bfe31a93]{display:flex;align-items:center;justify-content:center;grid-column-gap:6px}.with-left-icon.sm[data-v-bfe31a93] .flex{grid-column-gap:4px}.with-left-icon.sm[data-v-bfe31a93] .content{margin:0 12px 0 8px}.with-left-icon.md[data-v-bfe31a93] .content{margin:0 16px 0 12px}.with-left-icon.lg[data-v-bfe31a93] .content{margin:0 24px 0 12px}.with-right-icon.sm[data-v-bfe31a93] .flex{grid-column-gap:4px}.with-right-icon.sm[data-v-bfe31a93] .content{margin:0 8px 0 12px}.with-right-icon.md[data-v-bfe31a93] .content{margin:0 12px 0 16px}.with-right-icon.lg[data-v-bfe31a93] .content{margin:0 12px 0 24px}.icon[data-v-bfe31a93],.loading[data-v-bfe31a93]{vertical-align:middle}
@@ -1 +0,0 @@
1
- .label[data-v-c7e837fa]{color:#41454d}.menu-item[data-v-c7e837fa]{display:flex;padding:12px 8px;align-items:center;border-radius:8px;cursor:pointer;color:#41454d}.menu-item[data-v-c7e837fa]:hover{background:#f7f8f9}.start-icon[data-v-c7e837fa]{margin-right:8px;color:#b7bbc0;display:flex}
@@ -1,4 +0,0 @@
1
- import o from "./TooltipV4.vue.js";
2
- /* empty css */export {
3
- o as default
4
- };