@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.
Files changed (182) hide show
  1. package/ButtonV4.vue_vue_type_style_index_0_scoped_3fd2281b_lang.css +1 -0
  2. package/Checkbox.vue_vue_type_style_index_0_scoped_58dedb90_lang.css +1 -0
  3. package/CheckboxV4.vue_vue_type_style_index_0_scoped_ee3e6d82_lang.css +1 -0
  4. package/DataGrid.vue_vue_type_style_index_0_scoped_7a670808_lang.css +1 -0
  5. package/Dropdown.vue_vue_type_style_index_0_scoped_e8324d12_lang.css +1 -0
  6. package/FilterDropdown.vue_vue_type_style_index_0_scoped_1320b13b_lang.css +1 -0
  7. package/FilterSearchInput.vue_vue_type_style_index_0_scoped_51006ea0_lang.css +1 -0
  8. package/FiltersPanel.vue_vue_type_style_index_0_scoped_9d2f3413_lang.css +1 -0
  9. package/FiltersPanelV4.vue_vue_type_style_index_0_scoped_39061862_lang.css +1 -0
  10. package/IncludeExclude.vue_vue_type_style_index_0_scoped_2a01a791_lang.css +1 -0
  11. package/IncludeExcludeDragDrop.vue_vue_type_style_index_0_scoped_85bff8f4_lang.css +1 -0
  12. package/IncludeExcludeOption.vue_vue_type_style_index_0_scoped_91bc7787_lang.css +1 -0
  13. package/Label.vue_vue_type_style_index_0_scoped_48e00c04_lang.css +1 -0
  14. package/Option.vue_vue_type_style_index_0_scoped_3d6ce2fc_lang.css +1 -0
  15. package/OptionV4.vue_vue_type_style_index_0_scoped_92add735_lang.css +1 -0
  16. package/RadioButton.vue_vue_type_style_index_0_scoped_3c6b715c_lang.css +1 -0
  17. package/RadioButtonV4.vue_vue_type_style_index_0_scoped_14be812e_lang.css +1 -0
  18. package/RadioGroup.vue_vue_type_style_index_0_scoped_3071ef24_lang.css +1 -0
  19. package/RadioGroupV4.vue_vue_type_style_index_0_scoped_f8e8cbab_lang.css +1 -0
  20. package/SearchInput.vue_vue_type_style_index_0_scoped_b256f8ef_lang.css +1 -0
  21. package/Snackbar.vue_vue_type_style_index_0_scoped_cec4f8e5_lang.css +1 -0
  22. package/SnackbarV4.vue_vue_type_style_index_0_scoped_48311746_lang.css +1 -0
  23. package/components/autocompleteDropdown/AutocompleteDropdown.vue2.js +3 -3
  24. package/components/button/common/ButtonSuper.vue.d.ts +6 -6
  25. package/components/button/v3/Button.vue.d.ts +6 -6
  26. package/components/button/v4/ButtonV4.vue.d.ts +11 -6
  27. package/components/button/v4/ButtonV4.vue.js +3 -3
  28. package/components/button/v4/ButtonV4.vue2.js +13 -10
  29. package/components/button/v4/index.d.ts +34 -15
  30. package/components/checkbox/common/Checkbox.common.d.ts +11 -0
  31. package/components/checkbox/common/Checkbox.common.js +32 -0
  32. package/components/checkbox/v3/Checkbox.vue.js +7 -0
  33. package/components/checkbox/v3/Checkbox.vue2.js +99 -0
  34. package/components/checkbox/{icons → v3/icons}/checked.vue.js +1 -1
  35. package/components/checkbox/{icons → v3/icons}/indeterminate.vue.js +1 -1
  36. package/components/checkbox/{icons → v3/icons}/unchecked.vue.js +1 -1
  37. package/components/checkbox/v4/CheckboxV4.vue.d.ts +53 -0
  38. package/components/checkbox/v4/CheckboxV4.vue.js +7 -0
  39. package/components/checkbox/v4/CheckboxV4.vue2.js +107 -0
  40. package/components/checkbox/v4/icons/CheckedDisabledState.vue.js +38 -0
  41. package/components/checkbox/v4/icons/CheckedState.vue.d.ts +2 -0
  42. package/components/checkbox/v4/icons/CheckedState.vue.js +38 -0
  43. package/components/checkbox/v4/icons/IndeterminateDisabledState.vue.d.ts +2 -0
  44. package/components/checkbox/v4/icons/IndeterminateDisabledState.vue.js +40 -0
  45. package/components/checkbox/v4/icons/IndeterminateState.vue.d.ts +2 -0
  46. package/components/checkbox/v4/icons/IndeterminateState.vue.js +40 -0
  47. package/components/checkbox/v4/icons/UncheckedDisabledState.vue.d.ts +2 -0
  48. package/components/checkbox/v4/icons/UncheckedDisabledState.vue.js +31 -0
  49. package/components/checkbox/v4/icons/UncheckedState.vue.d.ts +2 -0
  50. package/components/checkbox/v4/icons/UncheckedState.vue.js +31 -0
  51. package/components/checkbox/v4/index.d.ts +152 -0
  52. package/components/checkbox/v4/index.js +6 -0
  53. package/components/dropdown/v3/Dropdown.vue.js +2 -2
  54. package/components/dropdown/v3/Dropdown.vue2.js +3 -3
  55. package/components/dropdown/v3/Label.vue.js +7 -0
  56. package/components/dropdown/{common → v3}/Label.vue2.js +2 -2
  57. package/components/dropdown/v3/Option.vue.js +7 -0
  58. package/components/dropdown/{common → v3}/Option.vue2.js +3 -3
  59. package/components/dropdown/{common → v3}/SearchInput.vue.js +2 -2
  60. package/components/dropdown/{common → v3}/SearchInput.vue2.js +2 -2
  61. package/components/dropdown/v3/index.d.ts +3 -3
  62. package/components/dropdown/v3/index.js +3 -3
  63. package/components/dropdown/v4/OptionV4.vue.js +3 -3
  64. package/components/dropdown/v4/OptionV4.vue2.js +2 -2
  65. package/components/emptyState/v3/EmptyState.vue.d.ts +3 -3
  66. package/components/emptyState/v3/index.d.ts +7 -7
  67. package/components/filterDropdown/FilterDropdown.vue.d.ts +1 -1
  68. package/components/filterDropdown/FilterDropdown.vue.js +2 -2
  69. package/components/filterDropdown/FilterDropdown.vue2.js +4 -4
  70. package/components/filterDropdown/index.d.ts +2 -2
  71. package/components/filtersPanel/v3/FilterSearchInput.vue.d.ts +2 -0
  72. package/components/filtersPanel/v3/FilterSearchInput.vue.js +7 -0
  73. package/components/filtersPanel/{FilterSearchInput.vue2.js → v3/FilterSearchInput.vue2.js} +6 -6
  74. package/components/filtersPanel/v3/FiltersPanel.vue.js +7 -0
  75. package/components/filtersPanel/{FiltersPanel.vue2.js → v3/FiltersPanel.vue2.js} +1 -1
  76. package/components/filtersPanel/v4/FiltersPanelV4.vue.d.ts +44 -0
  77. package/components/filtersPanel/v4/FiltersPanelV4.vue.js +7 -0
  78. package/components/filtersPanel/v4/FiltersPanelV4.vue2.js +23 -0
  79. package/components/filtersPanel/v4/index.d.ts +101 -0
  80. package/components/filtersPanel/v4/index.js +6 -0
  81. package/components/filtersPanel/v4/storyConsts.d.ts +20 -0
  82. package/components/icon/icons/FiltersSearch.vue.d.ts +2 -0
  83. package/components/icon/v3/icons/index.d.ts +3 -0
  84. package/components/icon/v3/icons/index.js +3 -0
  85. package/components/icon/v3/index.d.ts +3 -0
  86. package/components/includeExclude/IncludeExclude.vue.js +3 -3
  87. package/components/includeExclude/IncludeExclude.vue2.js +2 -2
  88. package/components/includeExclude/IncludeExcludeDragDrop.vue.js +3 -3
  89. package/components/includeExclude/IncludeExcludeDragDrop.vue2.js +2 -2
  90. package/components/includeExclude/IncludeExcludeOption.vue.js +5 -5
  91. package/components/includeExclude/IncludeExcludeOption.vue2.js +2 -2
  92. package/components/radioButton/common/radioGroup.common.d.ts +3 -0
  93. package/components/radioButton/common/radioGroup.common.js +26 -0
  94. package/components/radioButton/v3/RadioButton.vue.js +7 -0
  95. package/components/radioButton/v3/RadioButton.vue2.js +79 -0
  96. package/components/radioButton/v3/RadioGroup.vue.js +7 -0
  97. package/components/radioButton/v3/RadioGroup.vue2.js +29 -0
  98. package/components/radioButton/v4/RadioButtonV4.vue.d.ts +59 -0
  99. package/components/radioButton/v4/RadioButtonV4.vue.js +7 -0
  100. package/components/radioButton/v4/RadioButtonV4.vue2.js +67 -0
  101. package/components/radioButton/v4/RadioGroupV4.vue.d.ts +61 -0
  102. package/components/radioButton/v4/RadioGroupV4.vue.js +7 -0
  103. package/components/radioButton/v4/RadioGroupV4.vue2.js +29 -0
  104. package/components/radioButton/v4/index.d.ts +334 -0
  105. package/components/radioButton/v4/index.js +8 -0
  106. package/components/snackbar/common/notify.d.ts +3 -0
  107. package/components/snackbar/common/notify.js +82 -0
  108. package/components/snackbar/common/snackbar.common.d.ts +11 -0
  109. package/components/snackbar/common/snackbar.common.js +51 -0
  110. package/components/snackbar/v3/Snackbar.vue.js +7 -0
  111. package/components/snackbar/v3/Snackbar.vue2.js +129 -0
  112. package/components/snackbar/v3/index.d.ts +3 -0
  113. package/components/snackbar/v3/index.js +10 -0
  114. package/components/snackbar/v4/SnackbarV4.vue.d.ts +186 -0
  115. package/components/snackbar/v4/SnackbarV4.vue.js +7 -0
  116. package/components/snackbar/v4/SnackbarV4.vue2.js +137 -0
  117. package/components/snackbar/v4/index.d.ts +4 -0
  118. package/components/snackbar/v4/index.js +11 -0
  119. package/components/table/v4/DataGrid.vue.js +2 -2
  120. package/components/table/v4/DataGrid.vue2.js +28 -29
  121. package/index.d.ts +1255 -34
  122. package/index.js +145 -152
  123. package/package.json +40 -15
  124. package/testids/index.d.ts +8 -0
  125. package/testids/index.js +14 -13
  126. package/ButtonV4.vue_vue_type_style_index_0_scoped_43578f8c_lang.css +0 -1
  127. package/Checkbox.vue_vue_type_style_index_0_scoped_518c02d0_lang.css +0 -1
  128. package/DataGrid.vue_vue_type_style_index_0_scoped_f080f37f_lang.css +0 -1
  129. package/Dropdown.vue_vue_type_style_index_0_scoped_0114904e_lang.css +0 -1
  130. package/FilterDropdown.vue_vue_type_style_index_0_scoped_b25c5605_lang.css +0 -1
  131. package/FilterSearchInput.vue_vue_type_style_index_0_scoped_9198bf4e_lang.css +0 -1
  132. package/FiltersPanel.vue_vue_type_style_index_0_scoped_2996b384_lang.css +0 -1
  133. package/IncludeExclude.vue_vue_type_style_index_0_scoped_2c9debd6_lang.css +0 -1
  134. package/IncludeExcludeDragDrop.vue_vue_type_style_index_0_scoped_ff32d111_lang.css +0 -1
  135. package/IncludeExcludeOption.vue_vue_type_style_index_0_scoped_4a87e4fd_lang.css +0 -1
  136. package/Label.vue_vue_type_style_index_0_scoped_5faaafce_lang.css +0 -1
  137. package/Option.vue_vue_type_style_index_0_scoped_2432f13f_lang.css +0 -1
  138. package/OptionV4.vue_vue_type_style_index_0_scoped_b879fe79_lang.css +0 -1
  139. package/RadioButton.vue_vue_type_style_index_0_scoped_f5d3359c_lang.css +0 -1
  140. package/RadioGroup.vue_vue_type_style_index_0_scoped_50bc6963_lang.css +0 -1
  141. package/SearchInput.vue_vue_type_style_index_0_scoped_0b1ea2f6_lang.css +0 -1
  142. package/Snackbar.vue_vue_type_style_index_0_scoped_d14230ca_lang.css +0 -1
  143. package/components/checkbox/Checkbox.vue.js +0 -7
  144. package/components/checkbox/Checkbox.vue2.js +0 -97
  145. package/components/dropdown/common/Label.vue.js +0 -7
  146. package/components/dropdown/common/Option.vue.js +0 -7
  147. package/components/filtersPanel/FilterSearchInput.vue.js +0 -7
  148. package/components/filtersPanel/FiltersPanel.vue.js +0 -7
  149. package/components/radioButton/RadioButton.vue.js +0 -7
  150. package/components/radioButton/RadioButton.vue2.js +0 -82
  151. package/components/radioButton/RadioGroup.vue.js +0 -7
  152. package/components/radioButton/RadioGroup.vue2.js +0 -44
  153. package/components/snackbar/Snackbar.vue.js +0 -7
  154. package/components/snackbar/Snackbar.vue2.js +0 -150
  155. package/components/snackbar/index.d.ts +0 -3
  156. package/components/snackbar/index.js +0 -6
  157. package/components/snackbar/notify.js +0 -84
  158. /package/components/checkbox/{Checkbox.vue.d.ts → v3/Checkbox.vue.d.ts} +0 -0
  159. /package/components/checkbox/{icons → v3/icons}/checked.vue.d.ts +0 -0
  160. /package/components/checkbox/{icons → v3/icons}/indeterminate.vue.d.ts +0 -0
  161. /package/components/checkbox/{icons → v3/icons}/unchecked.vue.d.ts +0 -0
  162. /package/components/checkbox/{index.d.ts → v3/index.d.ts} +0 -0
  163. /package/components/checkbox/{index.js → v3/index.js} +0 -0
  164. /package/components/{filtersPanel/FilterSearchInput.vue.d.ts → checkbox/v4/icons/CheckedDisabledState.vue.d.ts} +0 -0
  165. /package/components/dropdown/{common → v3}/Label.vue.d.ts +0 -0
  166. /package/components/dropdown/{common → v3}/Option.vue.d.ts +0 -0
  167. /package/components/dropdown/{common → v3}/SearchInput.vue.d.ts +0 -0
  168. /package/components/filtersPanel/{Filter.d.ts → v3/Filter.d.ts} +0 -0
  169. /package/components/filtersPanel/{index.d.ts → v3/index.d.ts} +0 -0
  170. /package/components/filtersPanel/{index.js → v3/index.js} +0 -0
  171. /package/components/filtersPanel/{useHiddenFilter.d.ts → v3/useHiddenFilter.d.ts} +0 -0
  172. /package/components/filtersPanel/{useHiddenFilter.js → v3/useHiddenFilter.js} +0 -0
  173. /package/components/radioButton/{useRadio.d.ts → common/useRadio.d.ts} +0 -0
  174. /package/components/radioButton/{useRadio.js → common/useRadio.js} +0 -0
  175. /package/components/radioButton/{RadioButton.vue.d.ts → v3/RadioButton.vue.d.ts} +0 -0
  176. /package/components/radioButton/{RadioGroup.vue.d.ts → v3/RadioGroup.vue.d.ts} +0 -0
  177. /package/components/radioButton/{index.d.ts → v3/index.d.ts} +0 -0
  178. /package/components/radioButton/{index.js → v3/index.js} +0 -0
  179. /package/components/snackbar/{notify.d.ts → common/notify_old.d.ts} +0 -0
  180. /package/components/snackbar/{snackbar.types.d.ts → common/snackbar.types.d.ts} +0 -0
  181. /package/components/snackbar/{snackbar.types.js → common/snackbar.types.js} +0 -0
  182. /package/components/snackbar/{Snackbar.vue.d.ts → v3/Snackbar.vue.d.ts} +0 -0
@@ -0,0 +1,152 @@
1
+ declare const CheckboxTypes: () => ({
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: Partial<{
6
+ label: string;
7
+ testId: string;
8
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
9
+ label: {
10
+ type: import("vue").PropType<string>;
11
+ default: string;
12
+ };
13
+ testId: {
14
+ type: import("vue").PropType<string>;
15
+ default: string;
16
+ };
17
+ disabled: {
18
+ type: import("vue").PropType<boolean>;
19
+ };
20
+ isChecked: {
21
+ type: import("vue").PropType<boolean>;
22
+ required: true;
23
+ };
24
+ isIndeterminate: {
25
+ type: import("vue").PropType<boolean>;
26
+ };
27
+ }>> & {
28
+ onClick?: (event: MouseEvent) => any;
29
+ "onUpdate:isChecked"?: (value: boolean) => any;
30
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId">;
31
+ $attrs: {
32
+ [x: string]: unknown;
33
+ };
34
+ $refs: {
35
+ [x: string]: unknown;
36
+ };
37
+ $slots: Readonly<{
38
+ [name: string]: import("vue").Slot;
39
+ }>;
40
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
41
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
42
+ $emit: ((event: "click", event: MouseEvent) => void) & ((event: "update:isChecked", value: boolean) => void);
43
+ $el: any;
44
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
45
+ label: {
46
+ type: import("vue").PropType<string>;
47
+ default: string;
48
+ };
49
+ testId: {
50
+ type: import("vue").PropType<string>;
51
+ default: string;
52
+ };
53
+ disabled: {
54
+ type: import("vue").PropType<boolean>;
55
+ };
56
+ isChecked: {
57
+ type: import("vue").PropType<boolean>;
58
+ required: true;
59
+ };
60
+ isIndeterminate: {
61
+ type: import("vue").PropType<boolean>;
62
+ };
63
+ }>> & {
64
+ onClick?: (event: MouseEvent) => any;
65
+ "onUpdate:isChecked"?: (value: boolean) => any;
66
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
67
+ "update:isChecked": (value: boolean) => void;
68
+ click: (event: MouseEvent) => void;
69
+ }, string, {
70
+ label: string;
71
+ testId: string;
72
+ }, {}, string> & {
73
+ beforeCreate?: (() => void) | (() => void)[];
74
+ created?: (() => void) | (() => void)[];
75
+ beforeMount?: (() => void) | (() => void)[];
76
+ mounted?: (() => void) | (() => void)[];
77
+ beforeUpdate?: (() => void) | (() => void)[];
78
+ updated?: (() => void) | (() => void)[];
79
+ activated?: (() => void) | (() => void)[];
80
+ deactivated?: (() => void) | (() => void)[];
81
+ beforeDestroy?: (() => void) | (() => void)[];
82
+ beforeUnmount?: (() => void) | (() => void)[];
83
+ destroyed?: (() => void) | (() => void)[];
84
+ unmounted?: (() => void) | (() => void)[];
85
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
86
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
87
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
88
+ };
89
+ $forceUpdate: () => void;
90
+ $nextTick: typeof import("vue").nextTick;
91
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
92
+ } & Readonly<import("vue").ExtractPropTypes<{
93
+ label: {
94
+ type: import("vue").PropType<string>;
95
+ default: string;
96
+ };
97
+ testId: {
98
+ type: import("vue").PropType<string>;
99
+ default: string;
100
+ };
101
+ disabled: {
102
+ type: import("vue").PropType<boolean>;
103
+ };
104
+ isChecked: {
105
+ type: import("vue").PropType<boolean>;
106
+ required: true;
107
+ };
108
+ isIndeterminate: {
109
+ type: import("vue").PropType<boolean>;
110
+ };
111
+ }>> & {
112
+ onClick?: (event: MouseEvent) => any;
113
+ "onUpdate:isChecked"?: (value: boolean) => any;
114
+ } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
115
+ __isFragment?: never;
116
+ __isTeleport?: never;
117
+ __isSuspense?: never;
118
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
119
+ label: {
120
+ type: import("vue").PropType<string>;
121
+ default: string;
122
+ };
123
+ testId: {
124
+ type: import("vue").PropType<string>;
125
+ default: string;
126
+ };
127
+ disabled: {
128
+ type: import("vue").PropType<boolean>;
129
+ };
130
+ isChecked: {
131
+ type: import("vue").PropType<boolean>;
132
+ required: true;
133
+ };
134
+ isIndeterminate: {
135
+ type: import("vue").PropType<boolean>;
136
+ };
137
+ }>> & {
138
+ onClick?: (event: MouseEvent) => any;
139
+ "onUpdate:isChecked"?: (value: boolean) => any;
140
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
141
+ "update:isChecked": (value: boolean) => void;
142
+ click: (event: MouseEvent) => void;
143
+ }, string, {
144
+ label: string;
145
+ testId: string;
146
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
147
+ $slots: {
148
+ default?(_: {}): any;
149
+ };
150
+ }))[];
151
+ export { default as Checkbox } from './CheckboxV4.vue';
152
+ export { CheckboxTypes };
@@ -0,0 +1,6 @@
1
+ import o from "./CheckboxV4.vue.js";
2
+ const c = () => [o];
3
+ export {
4
+ o as Checkbox,
5
+ c as CheckboxTypes
6
+ };
@@ -1,8 +1,8 @@
1
1
  import o from "./Dropdown.vue2.js";
2
2
  /* empty css *//* empty css */import e from "../../../_virtual/_plugin-vue_export-helper.js";
3
- // import "../../../Dropdown.vue_vue_type_style_index_0_scoped_0114904e_lang.css"; //*');
3
+ // import "../../../Dropdown.vue_vue_type_style_index_0_scoped_e8324d12_lang.css"; //*');
4
4
  // import "../../../Dropdown.vue_vue_type_style_index_1_lang.css"; //');
5
- const r = /* @__PURE__ */ e(o, [["__scopeId", "data-v-0114904e"]]);
5
+ const r = /* @__PURE__ */ e(o, [["__scopeId", "data-v-e8324d12"]]);
6
6
  export {
7
7
  r as default
8
8
  };
@@ -1,8 +1,8 @@
1
- import "../../../Dropdown.vue_vue_type_style_index_0_scoped_0114904e_lang.css"; import "../../../Dropdown.vue_vue_type_style_index_1_lang.css"; import { defineComponent as le, openBlock as a, createElementBlock as i, normalizeClass as T, unref as e, renderSlot as b, createVNode as s, withCtx as n, Transition as ae, createTextVNode as r, toDisplayString as h, createCommentVNode as o, createBlock as I, isRef as de, createElementVNode as m, mergeProps as P, withModifiers as N, Fragment as oe, renderList as ie, toRaw as $, pushScopeId as ne, popScopeId as se } from "vue";
1
+ import "../../../Dropdown.vue_vue_type_style_index_0_scoped_e8324d12_lang.css"; import "../../../Dropdown.vue_vue_type_style_index_1_lang.css"; import { defineComponent as le, openBlock as a, createElementBlock as i, normalizeClass as T, unref as e, renderSlot as b, createVNode as s, withCtx as n, Transition as ae, createTextVNode as r, toDisplayString as h, createCommentVNode as o, createBlock as I, isRef as de, createElementVNode as m, mergeProps as P, withModifiers as N, Fragment as oe, renderList as ie, toRaw as $, pushScopeId as ne, popScopeId as se } from "vue";
2
2
  import x from "../../button/v3/Button.vue.js";
3
3
  import "../../button/v3/IconButton.vue.js";
4
4
  import "../../button/v3/ScrollButton.vue.js";
5
- import re from "../common/Option.vue.js";
5
+ import re from "./Option.vue.js";
6
6
  import A from "../../icon/v3/Icon.vue.js";
7
7
  import ue from "../../search/v4/SearchV4.vue.js";
8
8
  import "../../typography/Heading.vue.js";
@@ -10,7 +10,7 @@ import y from "../../typography/Text.vue.js";
10
10
  import { Dropdown as fe } from "floating-vue";
11
11
  import { DropdownTestIdModifiers as u } from "../../../testids/index.js";
12
12
  import { dropdownCommon as ce } from "../common/Dropdown.common.js";
13
- const me = (t) => (ne("data-v-0114904e"), t = t(), se(), t), ye = ["tabindex", "data-testid"], pe = ["disabled", "aria-expanded", "aria-labelledby", "aria-disabled"], be = {
13
+ const me = (t) => (ne("data-v-e8324d12"), t = t(), se(), t), ye = ["tabindex", "data-testid"], pe = ["disabled", "aria-expanded", "aria-labelledby", "aria-disabled"], be = {
14
14
  key: 0,
15
15
  class: "image-slot"
16
16
  }, he = { class: "angle-down" }, ke = {
@@ -0,0 +1,7 @@
1
+ import e from "./Label.vue2.js";
2
+ /* empty css */import o from "../../../_virtual/_plugin-vue_export-helper.js";
3
+ // import "../../../Label.vue_vue_type_style_index_0_scoped_48e00c04_lang.css"; //*');
4
+ const c = /* @__PURE__ */ o(e, [["__scopeId", "data-v-48e00c04"]]);
5
+ export {
6
+ c as default
7
+ };
@@ -1,7 +1,7 @@
1
- import "../../../Label.vue_vue_type_style_index_0_scoped_5faaafce_lang.css"; import { defineComponent as n, openBlock as l, createElementBlock as d, unref as e, normalizeClass as m, createVNode as c, withCtx as o, renderSlot as i, createBlock as u, createTextVNode as f, createCommentVNode as p } from "vue";
1
+ import "../../../Label.vue_vue_type_style_index_0_scoped_48e00c04_lang.css"; import { defineComponent as n, openBlock as l, createElementBlock as d, unref as e, normalizeClass as m, createVNode as c, withCtx as o, renderSlot as i, createBlock as u, createTextVNode as f, createCommentVNode as p } from "vue";
2
2
  import "../../typography/Heading.vue.js";
3
3
  import a from "../../typography/Text.vue.js";
4
- import { useDropdownContext as b } from "./DropdownContext.js";
4
+ import { useDropdownContext as b } from "../common/DropdownContext.js";
5
5
  import { useId as _ } from "../../../composables/useId.js";
6
6
  const h = /* @__PURE__ */ n({
7
7
  __name: "Label",
@@ -0,0 +1,7 @@
1
+ import o from "./Option.vue2.js";
2
+ /* empty css */import e from "../../../_virtual/_plugin-vue_export-helper.js";
3
+ // import "../../../Option.vue_vue_type_style_index_0_scoped_3d6ce2fc_lang.css"; //*');
4
+ const p = /* @__PURE__ */ e(o, [["__scopeId", "data-v-3d6ce2fc"]]);
5
+ export {
6
+ p as default
7
+ };
@@ -1,10 +1,10 @@
1
- import "../../../Option.vue_vue_type_style_index_0_scoped_2432f13f_lang.css"; import { defineComponent as B, openBlock as o, createElementBlock as n, normalizeClass as f, unref as e, createElementVNode as d, createBlock as p, createCommentVNode as s, renderSlot as c, createVNode as k, withCtx as b, createTextVNode as $, toDisplayString as g, withModifiers as N } from "vue";
1
+ import "../../../Option.vue_vue_type_style_index_0_scoped_3d6ce2fc_lang.css"; import { defineComponent as B, openBlock as o, createElementBlock as n, normalizeClass as f, unref as e, createElementVNode as d, createBlock as p, createCommentVNode as s, renderSlot as c, createVNode as k, withCtx as b, createTextVNode as $, toDisplayString as g, withModifiers as N } from "vue";
2
2
  import "../../typography/Heading.vue.js";
3
3
  import v from "../../typography/Text.vue.js";
4
- import w from "../../checkbox/Checkbox.vue.js";
4
+ import w from "../../checkbox/v3/Checkbox.vue.js";
5
5
  import z from "../../icon/v3/Icon.vue.js";
6
6
  import { NOOP as O } from "@vue/shared";
7
- import { optionCommon as S } from "./Option.common.js";
7
+ import { optionCommon as S } from "../common/Option.common.js";
8
8
  const V = {
9
9
  key: 1,
10
10
  class: "image"
@@ -1,7 +1,7 @@
1
1
  import e from "./SearchInput.vue2.js";
2
2
  /* empty css */import o from "../../../_virtual/_plugin-vue_export-helper.js";
3
- // import "../../../SearchInput.vue_vue_type_style_index_0_scoped_0b1ea2f6_lang.css"; //*');
4
- const s = /* @__PURE__ */ o(e, [["__scopeId", "data-v-0b1ea2f6"]]);
3
+ // import "../../../SearchInput.vue_vue_type_style_index_0_scoped_b256f8ef_lang.css"; //*');
4
+ const s = /* @__PURE__ */ o(e, [["__scopeId", "data-v-b256f8ef"]]);
5
5
  export {
6
6
  s as default
7
7
  };
@@ -1,5 +1,5 @@
1
- import "../../../SearchInput.vue_vue_type_style_index_0_scoped_0b1ea2f6_lang.css"; import { defineComponent as I, useSlots as x, ref as v, onMounted as z, computed as r, watch as V, renderSlot as f, unref as t, createElementVNode as m, normalizeClass as s, openBlock as u, createElementBlock as $, createCommentVNode as i, createVNode as O, withCtx as A, createBlock as h } from "vue";
2
- import { useDropdownContext as B, Mode as b } from "./DropdownContext.js";
1
+ import "../../../SearchInput.vue_vue_type_style_index_0_scoped_b256f8ef_lang.css"; import { defineComponent as I, useSlots as x, ref as v, onMounted as z, computed as r, watch as V, renderSlot as f, unref as t, createElementVNode as m, normalizeClass as s, openBlock as u, createElementBlock as $, createCommentVNode as i, createVNode as O, withCtx as A, createBlock as h } from "vue";
2
+ import { useDropdownContext as B, Mode as b } from "../common/DropdownContext.js";
3
3
  import g from "../../icon/v3/Icon.vue.js";
4
4
  import "../../button/v3/Button.vue.js";
5
5
  import E from "../../button/v3/IconButton.vue.js";
@@ -1,7 +1,7 @@
1
1
  import Dropdown from './Dropdown.vue';
2
- import Option from '../common/Option.vue';
3
- import Label from '../common/Label.vue';
4
- import SearchInput from '../common/SearchInput.vue';
2
+ import Option from './Option.vue';
3
+ import Label from './Label.vue';
4
+ import SearchInput from './SearchInput.vue';
5
5
  declare const DropdownTypes: () => (({
6
6
  new (...args: any[]): {
7
7
  $: import("vue").ComponentInternalInstance;
@@ -1,7 +1,7 @@
1
1
  import o from "./Dropdown.vue.js";
2
- import r from "../common/Option.vue.js";
3
- import p from "../common/Label.vue.js";
4
- import m from "../common/SearchInput.vue.js";
2
+ import r from "./Option.vue.js";
3
+ import p from "./Label.vue.js";
4
+ import m from "./SearchInput.vue.js";
5
5
  const f = () => [o, r, p, m];
6
6
  export {
7
7
  o as Dropdown,
@@ -1,7 +1,7 @@
1
1
  import o from "./OptionV4.vue2.js";
2
- /* empty css */import e from "../../../_virtual/_plugin-vue_export-helper.js";
3
- // import "../../../OptionV4.vue_vue_type_style_index_0_scoped_b879fe79_lang.css"; //*');
4
- const s = /* @__PURE__ */ e(o, [["__scopeId", "data-v-b879fe79"]]);
2
+ /* empty css */import _ from "../../../_virtual/_plugin-vue_export-helper.js";
3
+ // import "../../../OptionV4.vue_vue_type_style_index_0_scoped_92add735_lang.css"; //*');
4
+ const s = /* @__PURE__ */ _(o, [["__scopeId", "data-v-92add735"]]);
5
5
  export {
6
6
  s as default
7
7
  };
@@ -1,7 +1,7 @@
1
- import "../../../OptionV4.vue_vue_type_style_index_0_scoped_b879fe79_lang.css"; import { defineComponent as C, openBlock as o, createElementBlock as n, normalizeClass as f, unref as e, createElementVNode as d, createBlock as p, createCommentVNode as l, renderSlot as c, createVNode as b, withCtx as k, createTextVNode as g, toDisplayString as B, withModifiers as $ } from "vue";
1
+ import "../../../OptionV4.vue_vue_type_style_index_0_scoped_92add735_lang.css"; import { defineComponent as C, openBlock as o, createElementBlock as n, normalizeClass as f, unref as e, createElementVNode as d, createBlock as p, createCommentVNode as l, renderSlot as c, createVNode as b, withCtx as k, createTextVNode as g, toDisplayString as B, withModifiers as $ } from "vue";
2
2
  import "../../typography/Heading.vue.js";
3
3
  import N from "../../typography/Text.vue.js";
4
- import V from "../../checkbox/Checkbox.vue.js";
4
+ import V from "../../checkbox/v3/Checkbox.vue.js";
5
5
  import w from "../../icon/v4/IconV4.vue.js";
6
6
  import { NOOP as O } from "@vue/shared";
7
7
  import { optionCommon as S } from "../common/Option.common.js";
@@ -5,7 +5,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
5
5
  isHorizontal?: boolean;
6
6
  hasIcon?: boolean;
7
7
  isBordered?: boolean;
8
- iconName?: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "a-2" | "ab-test" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "add" | "analytics" | "android" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "block" | "border-color" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "cancel" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "error" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help" | "help-outline" | "history" | "ios" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "rotate" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4" | "check-circle" | "warning-octagon";
8
+ iconName?: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "FiltersSearch" | "a-2" | "ab-test" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "add" | "analytics" | "android" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "block" | "border-color" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "cancel" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "error" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help" | "help-outline" | "history" | "ios" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "rotate" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4" | "check-circle" | "warning-octagon";
9
9
  fontSize?: string;
10
10
  size?: "sm" | "lg";
11
11
  iconWidth: number;
@@ -31,7 +31,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
31
31
  isHorizontal?: boolean;
32
32
  hasIcon?: boolean;
33
33
  isBordered?: boolean;
34
- iconName?: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "a-2" | "ab-test" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "add" | "analytics" | "android" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "block" | "border-color" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "cancel" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "error" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help" | "help-outline" | "history" | "ios" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "rotate" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4" | "check-circle" | "warning-octagon";
34
+ iconName?: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "FiltersSearch" | "a-2" | "ab-test" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "add" | "analytics" | "android" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "block" | "border-color" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "cancel" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "error" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help" | "help-outline" | "history" | "ios" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "rotate" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4" | "check-circle" | "warning-octagon";
35
35
  fontSize?: string;
36
36
  size?: "sm" | "lg";
37
37
  iconWidth: number;
@@ -54,7 +54,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
54
54
  title: string;
55
55
  size: "sm" | "lg";
56
56
  fontSize: string;
57
- iconName: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "a-2" | "ab-test" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "add" | "analytics" | "android" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "block" | "border-color" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "cancel" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "error" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help" | "help-outline" | "history" | "ios" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "rotate" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4" | "check-circle" | "warning-octagon";
57
+ iconName: "filter" | "a" | "b" | "link" | "style" | "image" | "switch" | "search" | "FiltersSearch" | "a-2" | "ab-test" | "ab-test-2" | "a-circle" | "account-balance-wallet" | "account-circle" | "account-circle-outline" | "add" | "analytics" | "android" | "angle-down" | "angle-left" | "angle-right" | "angle-up" | "app-store" | "area-chart" | "arrow-back" | "arrow-downward" | "arrow-forward" | "arrow-left" | "arrow-right" | "arrow-sort-down" | "arrow-sort-up" | "arrow-upward" | "auto-awesome" | "auto-mode" | "hammer" | "autorenew" | "b-2" | "b-circle" | "banner" | "bidding" | "bidding-2" | "block" | "border-color" | "bug" | "bullhorn" | "bullseye-arrow" | "cached" | "calendar" | "calendar-today" | "cancel" | "chart-bar" | "chart-line" | "chart-mixed" | "check" | "check-bold" | "close" | "close-bold" | "computer-mouse" | "copy-to-clipboard" | "widgets-flat-squares" | "adjust" | "copy-to-clipboard-filled" | "cube" | "cube-background" | "marketing" | "create" | "creative" | "cross" | "crown-fill" | "cup" | "cup-a" | "cup-b" | "delete" | "diamond" | "dots" | "download" | "download-2" | "download-done" | "drag-indicator" | "ecpi" | "email" | "email-envelope" | "error" | "eye" | "favorite-border" | "filter-list" | "frame" | "fullscreen" | "fullscreen-exit" | "functions" | "gamepad-alt" | "games" | "gavel" | "gift" | "git-hub" | "globe-stand" | "google-play" | "group" | "hand-pointer" | "hands" | "heartbeat" | "help" | "help-outline" | "history" | "ios" | "image-not-supported" | "image-slash" | "import-export" | "import-export-2" | "importent" | "info" | "info-outline" | "insights" | "interstitial" | "ios-14" | "js" | "landscape" | "launch" | "levelplay" | "limit-circle" | "limit-octagon" | "loading-clean" | "lock" | "lock-open" | "login" | "logout" | "military-tech" | "mix" | "mix-2" | "mobile-landscape" | "mobile-portrait" | "money-check" | "more-horiz" | "more-vert" | "mouse" | "mouse-pointer" | "moving-up" | "notifications-none" | "offerwall" | "palyable" | "paper-plane-off" | "paper-plane" | "pause" | "pause-circle-filled" | "pause-circle-outline" | "phone-iphone" | "photo" | "photo-2" | "play-arrow" | "play-circle-filled-white" | "play-circle-outline" | "qrcode" | "quick-ab" | "quick-ab-2" | "react" | "redo" | "refresh" | "remove" | "replay" | "rewarded-video" | "rocket-launch" | "rotate" | "route" | "sack-dollar" | "schedule" | "search-bold" | "share" | "slack" | "sports-esports" | "star" | "star-fill" | "status-banner" | "status-interstitial" | "status-offerwall" | "status-rewarded-video" | "stop-circle-filled" | "stop-circle-outline" | "success" | "success-full" | "table-edit" | "tablet-landscape" | "tablet-mac" | "tablet-portrait" | "texture" | "theme-dark" | "theme-light" | "timelapse" | "timeline" | "trending-down" | "trending-flat" | "trending-up" | "tune" | "two-tone-banner" | "two-tone-interstitial" | "two-tone-offerwall" | "two-tone-rewarded-video" | "undo" | "unfold-less" | "unfold-more" | "vertical-align-top" | "vertical-align-top-2" | "vibration" | "video-round" | "view-carousel" | "visibility" | "visibility-off" | "visibility-off-strok" | "visibility-strok" | "volume-off" | "volume-up" | "warning" | "warning-2" | "web-app" | "widgets" | "widgets-fill" | "widgetsz" | "wifi-protected-setup" | "native-ad" | "status-native-ad" | "two-tone-native-ad" | "question" | "info-v4" | "check-v4" | "warning-circle" | "eye-v4" | "eye-slash" | "warning-v4" | "check-circle" | "warning-octagon";
58
58
  subtitle: string;
59
59
  buttonText: string;
60
60
  isHorizontal: boolean;