@poveste/controls 0.1.0

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 (92) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +5 -0
  3. package/dist/components/HstCopyIcon.story.vue.d.ts +2 -0
  4. package/dist/components/HstCopyIcon.vue.d.ts +7 -0
  5. package/dist/components/HstWrapper.vue.d.ts +20 -0
  6. package/dist/components/button/HstButton.story.vue.d.ts +2 -0
  7. package/dist/components/button/HstButton.vue.d.ts +13 -0
  8. package/dist/components/button/HstButtonGroup.story.vue.d.ts +2 -0
  9. package/dist/components/button/HstButtonGroup.vue.d.ts +22 -0
  10. package/dist/components/checkbox/HstCheckbox.story.vue.d.ts +2 -0
  11. package/dist/components/checkbox/HstCheckbox.vue.d.ts +19 -0
  12. package/dist/components/checkbox/HstCheckboxList.story.vue.d.ts +2 -0
  13. package/dist/components/checkbox/HstCheckboxList.vue.d.ts +22 -0
  14. package/dist/components/checkbox/HstSimpleCheckbox.story.vue.d.ts +2 -0
  15. package/dist/components/checkbox/HstSimpleCheckbox.vue.d.ts +12 -0
  16. package/dist/components/colorselect/HstColorSelect.story.vue.d.ts +2 -0
  17. package/dist/components/colorselect/HstColorSelect.vue.d.ts +19 -0
  18. package/dist/components/design-tokens/HstColorShades.story.vue.d.ts +2 -0
  19. package/dist/components/design-tokens/HstColorShades.vue.d.ts +19 -0
  20. package/dist/components/design-tokens/HstTokenGrid.story.vue.d.ts +2 -0
  21. package/dist/components/design-tokens/HstTokenGrid.vue.d.ts +26 -0
  22. package/dist/components/design-tokens/HstTokenList.story.vue.d.ts +2 -0
  23. package/dist/components/design-tokens/HstTokenList.vue.d.ts +21 -0
  24. package/dist/components/json/HstJson.story.vue.d.ts +2 -0
  25. package/dist/components/json/HstJson.vue.d.ts +19 -0
  26. package/dist/components/number/HstNumber.story.vue.d.ts +2 -0
  27. package/dist/components/number/HstNumber.vue.d.ts +19 -0
  28. package/dist/components/radio/HstRadio.story.vue.d.ts +2 -0
  29. package/dist/components/radio/HstRadio.vue.d.ts +22 -0
  30. package/dist/components/select/CustomSelect.vue.d.ts +22 -0
  31. package/dist/components/select/HstSelect.story.vue.d.ts +2 -0
  32. package/dist/components/select/HstSelect.vue.d.ts +22 -0
  33. package/dist/components/slider/HstSlider.story.vue.d.ts +2 -0
  34. package/dist/components/slider/HstSlider.vue.d.ts +16 -0
  35. package/dist/components/text/HstText.story.vue.d.ts +2 -0
  36. package/dist/components/text/HstText.vue.d.ts +19 -0
  37. package/dist/components/textarea/HstTextarea.story.vue.d.ts +2 -0
  38. package/dist/components/textarea/HstTextarea.vue.d.ts +19 -0
  39. package/dist/index.d.ts +1047 -0
  40. package/dist/index.es.css +1 -0
  41. package/dist/index.es.js +16392 -0
  42. package/dist/style-standalone.css +973 -0
  43. package/dist/types.d.ts +4 -0
  44. package/dist/utils.d.ts +1 -0
  45. package/package.json +72 -0
  46. package/postcss.config.cjs +8 -0
  47. package/src/components/HstCopyIcon.story.vue +26 -0
  48. package/src/components/HstCopyIcon.vue +38 -0
  49. package/src/components/HstWrapper.vue +41 -0
  50. package/src/components/button/HstButton.story.vue +30 -0
  51. package/src/components/button/HstButton.vue +26 -0
  52. package/src/components/button/HstButtonGroup.story.vue +79 -0
  53. package/src/components/button/HstButtonGroup.vue +71 -0
  54. package/src/components/checkbox/HstCheckbox.spec.ts +28 -0
  55. package/src/components/checkbox/HstCheckbox.story.vue +47 -0
  56. package/src/components/checkbox/HstCheckbox.vue +56 -0
  57. package/src/components/checkbox/HstCheckboxList.story.vue +49 -0
  58. package/src/components/checkbox/HstCheckboxList.vue +82 -0
  59. package/src/components/checkbox/HstSimpleCheckbox.story.vue +28 -0
  60. package/src/components/checkbox/HstSimpleCheckbox.vue +82 -0
  61. package/src/components/checkbox/__snapshots__/HstCheckbox.spec.ts.snap +5 -0
  62. package/src/components/colorselect/HstColorSelect.story.vue +28 -0
  63. package/src/components/colorselect/HstColorSelect.vue +89 -0
  64. package/src/components/design-tokens/HstColorShades.story.vue +392 -0
  65. package/src/components/design-tokens/HstColorShades.vue +101 -0
  66. package/src/components/design-tokens/HstTokenGrid.story.vue +36 -0
  67. package/src/components/design-tokens/HstTokenGrid.vue +88 -0
  68. package/src/components/design-tokens/HstTokenList.story.vue +81 -0
  69. package/src/components/design-tokens/HstTokenList.vue +62 -0
  70. package/src/components/json/HstJson.story.vue +41 -0
  71. package/src/components/json/HstJson.vue +151 -0
  72. package/src/components/number/HstNumber.story.vue +42 -0
  73. package/src/components/number/HstNumber.vue +95 -0
  74. package/src/components/radio/HstRadio.story.vue +51 -0
  75. package/src/components/radio/HstRadio.vue +109 -0
  76. package/src/components/select/CustomSelect.vue +119 -0
  77. package/src/components/select/HstSelect.story.vue +161 -0
  78. package/src/components/select/HstSelect.vue +40 -0
  79. package/src/components/slider/HstSlider.story.vue +37 -0
  80. package/src/components/slider/HstSlider.vue +103 -0
  81. package/src/components/text/HstText.story.vue +63 -0
  82. package/src/components/text/HstText.vue +44 -0
  83. package/src/components/textarea/HstTextarea.story.vue +35 -0
  84. package/src/components/textarea/HstTextarea.vue +44 -0
  85. package/src/end.d.ts +8 -0
  86. package/src/index.ts +54 -0
  87. package/src/style/main.css +17 -0
  88. package/src/types.ts +4 -0
  89. package/src/utils.ts +12 -0
  90. package/tailwind.config.cjs +13 -0
  91. package/tsconfig.json +53 -0
  92. package/vite.config.ts +46 -0
@@ -0,0 +1,1047 @@
1
+ export declare const HstButton: {
2
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
3
+ color?: "flat" | "default" | "primary";
4
+ }> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
5
+ P: {};
6
+ B: {};
7
+ D: {};
8
+ C: {};
9
+ M: {};
10
+ Defaults: {};
11
+ }, Readonly<{
12
+ color?: "flat" | "default" | "primary";
13
+ }> & Readonly<{}>, {}, {}, {}, {}, {}>;
14
+ __isFragment?: never;
15
+ __isTeleport?: never;
16
+ __isSuspense?: never;
17
+ } & import("vue").ComponentOptionsBase<Readonly<{
18
+ color?: "flat" | "default" | "primary";
19
+ }> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
20
+ $slots: {
21
+ default?: (props: {}) => any;
22
+ };
23
+ });
24
+ export declare const HstButtonGroup: {
25
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
26
+ title?: string;
27
+ modelValue?: string;
28
+ options: string[] | number[] | import("./types").HstControlOption[] | Record<string, string | number>;
29
+ }> & Readonly<{
30
+ "onUpdate:modelValue"?: (value: string) => any;
31
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
32
+ "update:modelValue": (value: string) => any;
33
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
34
+ P: {};
35
+ B: {};
36
+ D: {};
37
+ C: {};
38
+ M: {};
39
+ Defaults: {};
40
+ }, Readonly<{
41
+ title?: string;
42
+ modelValue?: string;
43
+ options: string[] | number[] | import("./types").HstControlOption[] | Record<string, string | number>;
44
+ }> & Readonly<{
45
+ "onUpdate:modelValue"?: (value: string) => any;
46
+ }>, {}, {}, {}, {}, {}>;
47
+ __isFragment?: never;
48
+ __isTeleport?: never;
49
+ __isSuspense?: never;
50
+ } & import("vue").ComponentOptionsBase<Readonly<{
51
+ title?: string;
52
+ modelValue?: string;
53
+ options: string[] | number[] | import("./types").HstControlOption[] | Record<string, string | number>;
54
+ }> & Readonly<{
55
+ "onUpdate:modelValue"?: (value: string) => any;
56
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
57
+ "update:modelValue": (value: string) => any;
58
+ }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
59
+ $slots: {
60
+ actions?: (props: {}) => any;
61
+ };
62
+ });
63
+ export declare const HstCheckbox: {
64
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
65
+ modelValue?: (boolean | "true" | "false") | null;
66
+ title?: string;
67
+ }> & Readonly<{
68
+ "onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
69
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
70
+ "update:modelValue": (newValue: boolean | "true" | "false") => void;
71
+ }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
72
+ P: {};
73
+ B: {};
74
+ D: {};
75
+ C: {};
76
+ M: {};
77
+ Defaults: {};
78
+ }, Readonly<{
79
+ modelValue?: (boolean | "true" | "false") | null;
80
+ title?: string;
81
+ }> & Readonly<{
82
+ "onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
83
+ }>, {}, {}, {}, {}, {}>;
84
+ __isFragment?: never;
85
+ __isTeleport?: never;
86
+ __isSuspense?: never;
87
+ } & import("vue").ComponentOptionsBase<Readonly<{
88
+ modelValue?: (boolean | "true" | "false") | null;
89
+ title?: string;
90
+ }> & Readonly<{
91
+ "onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
92
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
93
+ "update:modelValue": (newValue: boolean | "true" | "false") => void;
94
+ }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
95
+ $slots: {
96
+ actions?: (props: {}) => any;
97
+ };
98
+ });
99
+ export declare const HstCheckboxList: {
100
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
101
+ title?: string;
102
+ modelValue: Array<string>;
103
+ options: string[] | import("./types").HstControlOption[];
104
+ }> & Readonly<{
105
+ "onUpdate:modelValue"?: (value: string[]) => any;
106
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
107
+ "update:modelValue": (value: string[]) => any;
108
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
109
+ P: {};
110
+ B: {};
111
+ D: {};
112
+ C: {};
113
+ M: {};
114
+ Defaults: {};
115
+ }, Readonly<{
116
+ title?: string;
117
+ modelValue: Array<string>;
118
+ options: string[] | import("./types").HstControlOption[];
119
+ }> & Readonly<{
120
+ "onUpdate:modelValue"?: (value: string[]) => any;
121
+ }>, {}, {}, {}, {}, {}>;
122
+ __isFragment?: never;
123
+ __isTeleport?: never;
124
+ __isSuspense?: never;
125
+ } & import("vue").ComponentOptionsBase<Readonly<{
126
+ title?: string;
127
+ modelValue: Array<string>;
128
+ options: string[] | import("./types").HstControlOption[];
129
+ }> & Readonly<{
130
+ "onUpdate:modelValue"?: (value: string[]) => any;
131
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
132
+ "update:modelValue": (value: string[]) => any;
133
+ }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
134
+ $slots: {
135
+ actions?: (props: {}) => any;
136
+ };
137
+ });
138
+ export declare const HstText: {
139
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
140
+ title?: string;
141
+ modelValue?: string | null;
142
+ }> & Readonly<{
143
+ "onUpdate:modelValue"?: (newValue: string) => any;
144
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
145
+ "update:modelValue": (newValue: string) => void;
146
+ }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
147
+ P: {};
148
+ B: {};
149
+ D: {};
150
+ C: {};
151
+ M: {};
152
+ Defaults: {};
153
+ }, Readonly<{
154
+ title?: string;
155
+ modelValue?: string | null;
156
+ }> & Readonly<{
157
+ "onUpdate:modelValue"?: (newValue: string) => any;
158
+ }>, {}, {}, {}, {}, {}>;
159
+ __isFragment?: never;
160
+ __isTeleport?: never;
161
+ __isSuspense?: never;
162
+ } & import("vue").ComponentOptionsBase<Readonly<{
163
+ title?: string;
164
+ modelValue?: string | null;
165
+ }> & Readonly<{
166
+ "onUpdate:modelValue"?: (newValue: string) => any;
167
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
168
+ "update:modelValue": (newValue: string) => void;
169
+ }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
170
+ $slots: {
171
+ actions?: (props: {}) => any;
172
+ };
173
+ });
174
+ export declare const HstNumber: {
175
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
176
+ title?: string;
177
+ modelValue?: number | null;
178
+ }> & Readonly<{
179
+ "onUpdate:modelValue"?: (newValue: number) => any;
180
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
181
+ "update:modelValue": (newValue: number) => void;
182
+ }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
183
+ P: {};
184
+ B: {};
185
+ D: {};
186
+ C: {};
187
+ M: {};
188
+ Defaults: {};
189
+ }, Readonly<{
190
+ title?: string;
191
+ modelValue?: number | null;
192
+ }> & Readonly<{
193
+ "onUpdate:modelValue"?: (newValue: number) => any;
194
+ }>, {}, {}, {}, {}, {}>;
195
+ __isFragment?: never;
196
+ __isTeleport?: never;
197
+ __isSuspense?: never;
198
+ } & import("vue").ComponentOptionsBase<Readonly<{
199
+ title?: string;
200
+ modelValue?: number | null;
201
+ }> & Readonly<{
202
+ "onUpdate:modelValue"?: (newValue: number) => any;
203
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
204
+ "update:modelValue": (newValue: number) => void;
205
+ }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
206
+ $slots: {
207
+ actions?: (props: {}) => any;
208
+ };
209
+ });
210
+ export declare const HstSlider: import("vue").DefineComponent<{
211
+ title?: string;
212
+ modelValue?: number | null;
213
+ min: number;
214
+ max: number;
215
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
216
+ "update:modelValue": (newValue: number) => void;
217
+ }, string, import("vue").PublicProps, Readonly<{
218
+ title?: string;
219
+ modelValue?: number | null;
220
+ min: number;
221
+ max: number;
222
+ }> & Readonly<{
223
+ "onUpdate:modelValue"?: (newValue: number) => any;
224
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
225
+ export declare const HstTextarea: {
226
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
227
+ title?: string;
228
+ modelValue?: string | null;
229
+ }> & Readonly<{
230
+ "onUpdate:modelValue"?: (newValue: string) => any;
231
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
232
+ "update:modelValue": (newValue: string) => void;
233
+ }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
234
+ P: {};
235
+ B: {};
236
+ D: {};
237
+ C: {};
238
+ M: {};
239
+ Defaults: {};
240
+ }, Readonly<{
241
+ title?: string;
242
+ modelValue?: string | null;
243
+ }> & Readonly<{
244
+ "onUpdate:modelValue"?: (newValue: string) => any;
245
+ }>, {}, {}, {}, {}, {}>;
246
+ __isFragment?: never;
247
+ __isTeleport?: never;
248
+ __isSuspense?: never;
249
+ } & import("vue").ComponentOptionsBase<Readonly<{
250
+ title?: string;
251
+ modelValue?: string | null;
252
+ }> & Readonly<{
253
+ "onUpdate:modelValue"?: (newValue: string) => any;
254
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
255
+ "update:modelValue": (newValue: string) => void;
256
+ }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
257
+ $slots: {
258
+ actions?: (props: {}) => any;
259
+ };
260
+ });
261
+ export declare const HstSelect: {
262
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
263
+ title?: string;
264
+ modelValue?: any;
265
+ options: Record<string, any> | string[] | import("./types").HstControlOption[];
266
+ }> & Readonly<{
267
+ "onUpdate:modelValue"?: (value: any) => any;
268
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
269
+ "update:modelValue": (value: any) => any;
270
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
271
+ P: {};
272
+ B: {};
273
+ D: {};
274
+ C: {};
275
+ M: {};
276
+ Defaults: {};
277
+ }, Readonly<{
278
+ title?: string;
279
+ modelValue?: any;
280
+ options: Record<string, any> | string[] | import("./types").HstControlOption[];
281
+ }> & Readonly<{
282
+ "onUpdate:modelValue"?: (value: any) => any;
283
+ }>, {}, {}, {}, {}, {}>;
284
+ __isFragment?: never;
285
+ __isTeleport?: never;
286
+ __isSuspense?: never;
287
+ } & import("vue").ComponentOptionsBase<Readonly<{
288
+ title?: string;
289
+ modelValue?: any;
290
+ options: Record<string, any> | string[] | import("./types").HstControlOption[];
291
+ }> & Readonly<{
292
+ "onUpdate:modelValue"?: (value: any) => any;
293
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
294
+ "update:modelValue": (value: any) => any;
295
+ }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
296
+ $slots: {
297
+ actions?: (props: {}) => any;
298
+ };
299
+ });
300
+ export declare const HstColorShades: {
301
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
302
+ shades: Record<string, any>;
303
+ getName?: (key: string, color: string) => string;
304
+ search?: string;
305
+ }> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
306
+ P: {};
307
+ B: {};
308
+ D: {};
309
+ C: {};
310
+ M: {};
311
+ Defaults: {};
312
+ }, Readonly<{
313
+ shades: Record<string, any>;
314
+ getName?: (key: string, color: string) => string;
315
+ search?: string;
316
+ }> & Readonly<{}>, {}, {}, {}, {}, {}>;
317
+ __isFragment?: never;
318
+ __isTeleport?: never;
319
+ __isSuspense?: never;
320
+ } & import("vue").ComponentOptionsBase<Readonly<{
321
+ shades: Record<string, any>;
322
+ getName?: (key: string, color: string) => string;
323
+ search?: string;
324
+ }> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
325
+ $slots: {
326
+ default?: (props: {
327
+ color: string;
328
+ }) => any;
329
+ };
330
+ });
331
+ export declare const HstTokenList: {
332
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
333
+ tokens: Record<string, string | number | any[] | Record<string, any>>;
334
+ getName?: (key: string, value: string | number | any[] | Record<string, any>) => string;
335
+ }> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
336
+ P: {};
337
+ B: {};
338
+ D: {};
339
+ C: {};
340
+ M: {};
341
+ Defaults: {};
342
+ }, Readonly<{
343
+ tokens: Record<string, string | number | any[] | Record<string, any>>;
344
+ getName?: (key: string, value: string | number | any[] | Record<string, any>) => string;
345
+ }> & Readonly<{}>, {}, {}, {}, {}, {}>;
346
+ __isFragment?: never;
347
+ __isTeleport?: never;
348
+ __isSuspense?: never;
349
+ } & import("vue").ComponentOptionsBase<Readonly<{
350
+ tokens: Record<string, string | number | any[] | Record<string, any>>;
351
+ getName?: (key: string, value: string | number | any[] | Record<string, any>) => string;
352
+ }> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
353
+ $slots: {
354
+ default?: (props: {
355
+ token: {
356
+ key: string;
357
+ name: string;
358
+ value: string | any[] | Record<string, any>;
359
+ };
360
+ }) => any;
361
+ };
362
+ });
363
+ export declare const HstTokenGrid: {
364
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
365
+ tokens: Record<string, string | number | any[] | Record<string, any>>;
366
+ colSize?: number;
367
+ getName?: (key: string, value: string | number | any[] | Record<string, any>) => string;
368
+ }> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
369
+ getName: (key: string, value: string | number | any[] | Record<string, any>) => string;
370
+ colSize: number;
371
+ }, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
372
+ P: {};
373
+ B: {};
374
+ D: {};
375
+ C: {};
376
+ M: {};
377
+ Defaults: {};
378
+ }, Readonly<{
379
+ tokens: Record<string, string | number | any[] | Record<string, any>>;
380
+ colSize?: number;
381
+ getName?: (key: string, value: string | number | any[] | Record<string, any>) => string;
382
+ }> & Readonly<{}>, {}, {}, {}, {}, {
383
+ getName: (key: string, value: string | number | any[] | Record<string, any>) => string;
384
+ colSize: number;
385
+ }>;
386
+ __isFragment?: never;
387
+ __isTeleport?: never;
388
+ __isSuspense?: never;
389
+ } & import("vue").ComponentOptionsBase<Readonly<{
390
+ tokens: Record<string, string | number | any[] | Record<string, any>>;
391
+ colSize?: number;
392
+ getName?: (key: string, value: string | number | any[] | Record<string, any>) => string;
393
+ }> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
394
+ getName: (key: string, value: string | number | any[] | Record<string, any>) => string;
395
+ colSize: number;
396
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
397
+ $slots: {
398
+ default?: (props: {
399
+ token: {
400
+ key: string;
401
+ name: string;
402
+ value: string | any[] | Record<string, any>;
403
+ };
404
+ }) => any;
405
+ };
406
+ });
407
+ export declare const HstCopyIcon: import("vue").DefineComponent<{
408
+ content: string | (() => import("@poveste/shared").Awaitable<string>);
409
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
410
+ content: string | (() => import("@poveste/shared").Awaitable<string>);
411
+ }> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
412
+ export declare const HstRadio: {
413
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
414
+ title?: string;
415
+ modelValue?: string | null;
416
+ options: import("./types").HstControlOption[];
417
+ }> & Readonly<{
418
+ "onUpdate:modelValue"?: (value: string) => any;
419
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
420
+ "update:modelValue": (value: string) => any;
421
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
422
+ P: {};
423
+ B: {};
424
+ D: {};
425
+ C: {};
426
+ M: {};
427
+ Defaults: {};
428
+ }, Readonly<{
429
+ title?: string;
430
+ modelValue?: string | null;
431
+ options: import("./types").HstControlOption[];
432
+ }> & Readonly<{
433
+ "onUpdate:modelValue"?: (value: string) => any;
434
+ }>, {}, {}, {}, {}, {}>;
435
+ __isFragment?: never;
436
+ __isTeleport?: never;
437
+ __isSuspense?: never;
438
+ } & import("vue").ComponentOptionsBase<Readonly<{
439
+ title?: string;
440
+ modelValue?: string | null;
441
+ options: import("./types").HstControlOption[];
442
+ }> & Readonly<{
443
+ "onUpdate:modelValue"?: (value: string) => any;
444
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
445
+ "update:modelValue": (value: string) => any;
446
+ }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
447
+ $slots: {
448
+ actions?: (props: {}) => any;
449
+ };
450
+ });
451
+ export declare const HstJson: {
452
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
453
+ title?: string;
454
+ modelValue: unknown;
455
+ }> & Readonly<{
456
+ "onUpdate:modelValue"?: (newValue: unknown) => any;
457
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
458
+ "update:modelValue": (newValue: unknown) => void;
459
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
460
+ P: {};
461
+ B: {};
462
+ D: {};
463
+ C: {};
464
+ M: {};
465
+ Defaults: {};
466
+ }, Readonly<{
467
+ title?: string;
468
+ modelValue: unknown;
469
+ }> & Readonly<{
470
+ "onUpdate:modelValue"?: (newValue: unknown) => any;
471
+ }>, {}, {}, {}, {}, {}>;
472
+ __isFragment?: never;
473
+ __isTeleport?: never;
474
+ __isSuspense?: never;
475
+ } & import("vue").ComponentOptionsBase<Readonly<{
476
+ title?: string;
477
+ modelValue: unknown;
478
+ }> & Readonly<{
479
+ "onUpdate:modelValue"?: (newValue: unknown) => any;
480
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
481
+ "update:modelValue": (newValue: unknown) => void;
482
+ }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
483
+ $slots: {
484
+ actions?: (props: {}) => any;
485
+ };
486
+ });
487
+ export declare const HstColorSelect: {
488
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
489
+ title?: string;
490
+ modelValue?: string | null;
491
+ }> & Readonly<{
492
+ "onUpdate:modelValue"?: (newValue: string) => any;
493
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
494
+ "update:modelValue": (newValue: string) => void;
495
+ }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
496
+ P: {};
497
+ B: {};
498
+ D: {};
499
+ C: {};
500
+ M: {};
501
+ Defaults: {};
502
+ }, Readonly<{
503
+ title?: string;
504
+ modelValue?: string | null;
505
+ }> & Readonly<{
506
+ "onUpdate:modelValue"?: (newValue: string) => any;
507
+ }>, {}, {}, {}, {}, {}>;
508
+ __isFragment?: never;
509
+ __isTeleport?: never;
510
+ __isSuspense?: never;
511
+ } & import("vue").ComponentOptionsBase<Readonly<{
512
+ title?: string;
513
+ modelValue?: string | null;
514
+ }> & Readonly<{
515
+ "onUpdate:modelValue"?: (newValue: string) => any;
516
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
517
+ "update:modelValue": (newValue: string) => void;
518
+ }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
519
+ $slots: {
520
+ actions?: (props: {}) => any;
521
+ };
522
+ });
523
+ export declare const components: {
524
+ HstButton: {
525
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
526
+ color?: "flat" | "default" | "primary";
527
+ }> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
528
+ P: {};
529
+ B: {};
530
+ D: {};
531
+ C: {};
532
+ M: {};
533
+ Defaults: {};
534
+ }, Readonly<{
535
+ color?: "flat" | "default" | "primary";
536
+ }> & Readonly<{}>, {}, {}, {}, {}, {}>;
537
+ __isFragment?: never;
538
+ __isTeleport?: never;
539
+ __isSuspense?: never;
540
+ } & import("vue").ComponentOptionsBase<Readonly<{
541
+ color?: "flat" | "default" | "primary";
542
+ }> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
543
+ $slots: {
544
+ default?: (props: {}) => any;
545
+ };
546
+ });
547
+ HstButtonGroup: {
548
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
549
+ title?: string;
550
+ modelValue?: string;
551
+ options: string[] | number[] | import("./types").HstControlOption[] | Record<string, string | number>;
552
+ }> & Readonly<{
553
+ "onUpdate:modelValue"?: (value: string) => any;
554
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
555
+ "update:modelValue": (value: string) => any;
556
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
557
+ P: {};
558
+ B: {};
559
+ D: {};
560
+ C: {};
561
+ M: {};
562
+ Defaults: {};
563
+ }, Readonly<{
564
+ title?: string;
565
+ modelValue?: string;
566
+ options: string[] | number[] | import("./types").HstControlOption[] | Record<string, string | number>;
567
+ }> & Readonly<{
568
+ "onUpdate:modelValue"?: (value: string) => any;
569
+ }>, {}, {}, {}, {}, {}>;
570
+ __isFragment?: never;
571
+ __isTeleport?: never;
572
+ __isSuspense?: never;
573
+ } & import("vue").ComponentOptionsBase<Readonly<{
574
+ title?: string;
575
+ modelValue?: string;
576
+ options: string[] | number[] | import("./types").HstControlOption[] | Record<string, string | number>;
577
+ }> & Readonly<{
578
+ "onUpdate:modelValue"?: (value: string) => any;
579
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
580
+ "update:modelValue": (value: string) => any;
581
+ }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
582
+ $slots: {
583
+ actions?: (props: {}) => any;
584
+ };
585
+ });
586
+ HstCheckbox: {
587
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
588
+ modelValue?: (boolean | "true" | "false") | null;
589
+ title?: string;
590
+ }> & Readonly<{
591
+ "onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
592
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
593
+ "update:modelValue": (newValue: boolean | "true" | "false") => void;
594
+ }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
595
+ P: {};
596
+ B: {};
597
+ D: {};
598
+ C: {};
599
+ M: {};
600
+ Defaults: {};
601
+ }, Readonly<{
602
+ modelValue?: (boolean | "true" | "false") | null;
603
+ title?: string;
604
+ }> & Readonly<{
605
+ "onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
606
+ }>, {}, {}, {}, {}, {}>;
607
+ __isFragment?: never;
608
+ __isTeleport?: never;
609
+ __isSuspense?: never;
610
+ } & import("vue").ComponentOptionsBase<Readonly<{
611
+ modelValue?: (boolean | "true" | "false") | null;
612
+ title?: string;
613
+ }> & Readonly<{
614
+ "onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
615
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
616
+ "update:modelValue": (newValue: boolean | "true" | "false") => void;
617
+ }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
618
+ $slots: {
619
+ actions?: (props: {}) => any;
620
+ };
621
+ });
622
+ HstCheckboxList: {
623
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
624
+ title?: string;
625
+ modelValue: Array<string>;
626
+ options: string[] | import("./types").HstControlOption[];
627
+ }> & Readonly<{
628
+ "onUpdate:modelValue"?: (value: string[]) => any;
629
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
630
+ "update:modelValue": (value: string[]) => any;
631
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
632
+ P: {};
633
+ B: {};
634
+ D: {};
635
+ C: {};
636
+ M: {};
637
+ Defaults: {};
638
+ }, Readonly<{
639
+ title?: string;
640
+ modelValue: Array<string>;
641
+ options: string[] | import("./types").HstControlOption[];
642
+ }> & Readonly<{
643
+ "onUpdate:modelValue"?: (value: string[]) => any;
644
+ }>, {}, {}, {}, {}, {}>;
645
+ __isFragment?: never;
646
+ __isTeleport?: never;
647
+ __isSuspense?: never;
648
+ } & import("vue").ComponentOptionsBase<Readonly<{
649
+ title?: string;
650
+ modelValue: Array<string>;
651
+ options: string[] | import("./types").HstControlOption[];
652
+ }> & Readonly<{
653
+ "onUpdate:modelValue"?: (value: string[]) => any;
654
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
655
+ "update:modelValue": (value: string[]) => any;
656
+ }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
657
+ $slots: {
658
+ actions?: (props: {}) => any;
659
+ };
660
+ });
661
+ HstText: {
662
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
663
+ title?: string;
664
+ modelValue?: string | null;
665
+ }> & Readonly<{
666
+ "onUpdate:modelValue"?: (newValue: string) => any;
667
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
668
+ "update:modelValue": (newValue: string) => void;
669
+ }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
670
+ P: {};
671
+ B: {};
672
+ D: {};
673
+ C: {};
674
+ M: {};
675
+ Defaults: {};
676
+ }, Readonly<{
677
+ title?: string;
678
+ modelValue?: string | null;
679
+ }> & Readonly<{
680
+ "onUpdate:modelValue"?: (newValue: string) => any;
681
+ }>, {}, {}, {}, {}, {}>;
682
+ __isFragment?: never;
683
+ __isTeleport?: never;
684
+ __isSuspense?: never;
685
+ } & import("vue").ComponentOptionsBase<Readonly<{
686
+ title?: string;
687
+ modelValue?: string | null;
688
+ }> & Readonly<{
689
+ "onUpdate:modelValue"?: (newValue: string) => any;
690
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
691
+ "update:modelValue": (newValue: string) => void;
692
+ }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
693
+ $slots: {
694
+ actions?: (props: {}) => any;
695
+ };
696
+ });
697
+ HstNumber: {
698
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
699
+ title?: string;
700
+ modelValue?: number | null;
701
+ }> & Readonly<{
702
+ "onUpdate:modelValue"?: (newValue: number) => any;
703
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
704
+ "update:modelValue": (newValue: number) => void;
705
+ }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
706
+ P: {};
707
+ B: {};
708
+ D: {};
709
+ C: {};
710
+ M: {};
711
+ Defaults: {};
712
+ }, Readonly<{
713
+ title?: string;
714
+ modelValue?: number | null;
715
+ }> & Readonly<{
716
+ "onUpdate:modelValue"?: (newValue: number) => any;
717
+ }>, {}, {}, {}, {}, {}>;
718
+ __isFragment?: never;
719
+ __isTeleport?: never;
720
+ __isSuspense?: never;
721
+ } & import("vue").ComponentOptionsBase<Readonly<{
722
+ title?: string;
723
+ modelValue?: number | null;
724
+ }> & Readonly<{
725
+ "onUpdate:modelValue"?: (newValue: number) => any;
726
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
727
+ "update:modelValue": (newValue: number) => void;
728
+ }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
729
+ $slots: {
730
+ actions?: (props: {}) => any;
731
+ };
732
+ });
733
+ HstSlider: import("vue").DefineComponent<{
734
+ title?: string;
735
+ modelValue?: number | null;
736
+ min: number;
737
+ max: number;
738
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
739
+ "update:modelValue": (newValue: number) => void;
740
+ }, string, import("vue").PublicProps, Readonly<{
741
+ title?: string;
742
+ modelValue?: number | null;
743
+ min: number;
744
+ max: number;
745
+ }> & Readonly<{
746
+ "onUpdate:modelValue"?: (newValue: number) => any;
747
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
748
+ HstTextarea: {
749
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
750
+ title?: string;
751
+ modelValue?: string | null;
752
+ }> & Readonly<{
753
+ "onUpdate:modelValue"?: (newValue: string) => any;
754
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
755
+ "update:modelValue": (newValue: string) => void;
756
+ }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
757
+ P: {};
758
+ B: {};
759
+ D: {};
760
+ C: {};
761
+ M: {};
762
+ Defaults: {};
763
+ }, Readonly<{
764
+ title?: string;
765
+ modelValue?: string | null;
766
+ }> & Readonly<{
767
+ "onUpdate:modelValue"?: (newValue: string) => any;
768
+ }>, {}, {}, {}, {}, {}>;
769
+ __isFragment?: never;
770
+ __isTeleport?: never;
771
+ __isSuspense?: never;
772
+ } & import("vue").ComponentOptionsBase<Readonly<{
773
+ title?: string;
774
+ modelValue?: string | null;
775
+ }> & Readonly<{
776
+ "onUpdate:modelValue"?: (newValue: string) => any;
777
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
778
+ "update:modelValue": (newValue: string) => void;
779
+ }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
780
+ $slots: {
781
+ actions?: (props: {}) => any;
782
+ };
783
+ });
784
+ HstSelect: {
785
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
786
+ title?: string;
787
+ modelValue?: any;
788
+ options: Record<string, any> | string[] | import("./types").HstControlOption[];
789
+ }> & Readonly<{
790
+ "onUpdate:modelValue"?: (value: any) => any;
791
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
792
+ "update:modelValue": (value: any) => any;
793
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
794
+ P: {};
795
+ B: {};
796
+ D: {};
797
+ C: {};
798
+ M: {};
799
+ Defaults: {};
800
+ }, Readonly<{
801
+ title?: string;
802
+ modelValue?: any;
803
+ options: Record<string, any> | string[] | import("./types").HstControlOption[];
804
+ }> & Readonly<{
805
+ "onUpdate:modelValue"?: (value: any) => any;
806
+ }>, {}, {}, {}, {}, {}>;
807
+ __isFragment?: never;
808
+ __isTeleport?: never;
809
+ __isSuspense?: never;
810
+ } & import("vue").ComponentOptionsBase<Readonly<{
811
+ title?: string;
812
+ modelValue?: any;
813
+ options: Record<string, any> | string[] | import("./types").HstControlOption[];
814
+ }> & Readonly<{
815
+ "onUpdate:modelValue"?: (value: any) => any;
816
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
817
+ "update:modelValue": (value: any) => any;
818
+ }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
819
+ $slots: {
820
+ actions?: (props: {}) => any;
821
+ };
822
+ });
823
+ HstRadio: {
824
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
825
+ title?: string;
826
+ modelValue?: string | null;
827
+ options: import("./types").HstControlOption[];
828
+ }> & Readonly<{
829
+ "onUpdate:modelValue"?: (value: string) => any;
830
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
831
+ "update:modelValue": (value: string) => any;
832
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
833
+ P: {};
834
+ B: {};
835
+ D: {};
836
+ C: {};
837
+ M: {};
838
+ Defaults: {};
839
+ }, Readonly<{
840
+ title?: string;
841
+ modelValue?: string | null;
842
+ options: import("./types").HstControlOption[];
843
+ }> & Readonly<{
844
+ "onUpdate:modelValue"?: (value: string) => any;
845
+ }>, {}, {}, {}, {}, {}>;
846
+ __isFragment?: never;
847
+ __isTeleport?: never;
848
+ __isSuspense?: never;
849
+ } & import("vue").ComponentOptionsBase<Readonly<{
850
+ title?: string;
851
+ modelValue?: string | null;
852
+ options: import("./types").HstControlOption[];
853
+ }> & Readonly<{
854
+ "onUpdate:modelValue"?: (value: string) => any;
855
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
856
+ "update:modelValue": (value: string) => any;
857
+ }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
858
+ $slots: {
859
+ actions?: (props: {}) => any;
860
+ };
861
+ });
862
+ HstJson: {
863
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
864
+ title?: string;
865
+ modelValue: unknown;
866
+ }> & Readonly<{
867
+ "onUpdate:modelValue"?: (newValue: unknown) => any;
868
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
869
+ "update:modelValue": (newValue: unknown) => void;
870
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
871
+ P: {};
872
+ B: {};
873
+ D: {};
874
+ C: {};
875
+ M: {};
876
+ Defaults: {};
877
+ }, Readonly<{
878
+ title?: string;
879
+ modelValue: unknown;
880
+ }> & Readonly<{
881
+ "onUpdate:modelValue"?: (newValue: unknown) => any;
882
+ }>, {}, {}, {}, {}, {}>;
883
+ __isFragment?: never;
884
+ __isTeleport?: never;
885
+ __isSuspense?: never;
886
+ } & import("vue").ComponentOptionsBase<Readonly<{
887
+ title?: string;
888
+ modelValue: unknown;
889
+ }> & Readonly<{
890
+ "onUpdate:modelValue"?: (newValue: unknown) => any;
891
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
892
+ "update:modelValue": (newValue: unknown) => void;
893
+ }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
894
+ $slots: {
895
+ actions?: (props: {}) => any;
896
+ };
897
+ });
898
+ HstColorShades: {
899
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
900
+ shades: Record<string, any>;
901
+ getName?: (key: string, color: string) => string;
902
+ search?: string;
903
+ }> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
904
+ P: {};
905
+ B: {};
906
+ D: {};
907
+ C: {};
908
+ M: {};
909
+ Defaults: {};
910
+ }, Readonly<{
911
+ shades: Record<string, any>;
912
+ getName?: (key: string, color: string) => string;
913
+ search?: string;
914
+ }> & Readonly<{}>, {}, {}, {}, {}, {}>;
915
+ __isFragment?: never;
916
+ __isTeleport?: never;
917
+ __isSuspense?: never;
918
+ } & import("vue").ComponentOptionsBase<Readonly<{
919
+ shades: Record<string, any>;
920
+ getName?: (key: string, color: string) => string;
921
+ search?: string;
922
+ }> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
923
+ $slots: {
924
+ default?: (props: {
925
+ color: string;
926
+ }) => any;
927
+ };
928
+ });
929
+ HstTokenList: {
930
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
931
+ tokens: Record<string, string | number | any[] | Record<string, any>>;
932
+ getName?: (key: string, value: string | number | any[] | Record<string, any>) => string;
933
+ }> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
934
+ P: {};
935
+ B: {};
936
+ D: {};
937
+ C: {};
938
+ M: {};
939
+ Defaults: {};
940
+ }, Readonly<{
941
+ tokens: Record<string, string | number | any[] | Record<string, any>>;
942
+ getName?: (key: string, value: string | number | any[] | Record<string, any>) => string;
943
+ }> & Readonly<{}>, {}, {}, {}, {}, {}>;
944
+ __isFragment?: never;
945
+ __isTeleport?: never;
946
+ __isSuspense?: never;
947
+ } & import("vue").ComponentOptionsBase<Readonly<{
948
+ tokens: Record<string, string | number | any[] | Record<string, any>>;
949
+ getName?: (key: string, value: string | number | any[] | Record<string, any>) => string;
950
+ }> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
951
+ $slots: {
952
+ default?: (props: {
953
+ token: {
954
+ key: string;
955
+ name: string;
956
+ value: string | any[] | Record<string, any>;
957
+ };
958
+ }) => any;
959
+ };
960
+ });
961
+ HstTokenGrid: {
962
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
963
+ tokens: Record<string, string | number | any[] | Record<string, any>>;
964
+ colSize?: number;
965
+ getName?: (key: string, value: string | number | any[] | Record<string, any>) => string;
966
+ }> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
967
+ getName: (key: string, value: string | number | any[] | Record<string, any>) => string;
968
+ colSize: number;
969
+ }, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
970
+ P: {};
971
+ B: {};
972
+ D: {};
973
+ C: {};
974
+ M: {};
975
+ Defaults: {};
976
+ }, Readonly<{
977
+ tokens: Record<string, string | number | any[] | Record<string, any>>;
978
+ colSize?: number;
979
+ getName?: (key: string, value: string | number | any[] | Record<string, any>) => string;
980
+ }> & Readonly<{}>, {}, {}, {}, {}, {
981
+ getName: (key: string, value: string | number | any[] | Record<string, any>) => string;
982
+ colSize: number;
983
+ }>;
984
+ __isFragment?: never;
985
+ __isTeleport?: never;
986
+ __isSuspense?: never;
987
+ } & import("vue").ComponentOptionsBase<Readonly<{
988
+ tokens: Record<string, string | number | any[] | Record<string, any>>;
989
+ colSize?: number;
990
+ getName?: (key: string, value: string | number | any[] | Record<string, any>) => string;
991
+ }> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
992
+ getName: (key: string, value: string | number | any[] | Record<string, any>) => string;
993
+ colSize: number;
994
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
995
+ $slots: {
996
+ default?: (props: {
997
+ token: {
998
+ key: string;
999
+ name: string;
1000
+ value: string | any[] | Record<string, any>;
1001
+ };
1002
+ }) => any;
1003
+ };
1004
+ });
1005
+ HstCopyIcon: import("vue").DefineComponent<{
1006
+ content: string | (() => import("@poveste/shared").Awaitable<string>);
1007
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
1008
+ content: string | (() => import("@poveste/shared").Awaitable<string>);
1009
+ }> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
1010
+ HstColorSelect: {
1011
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
1012
+ title?: string;
1013
+ modelValue?: string | null;
1014
+ }> & Readonly<{
1015
+ "onUpdate:modelValue"?: (newValue: string) => any;
1016
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1017
+ "update:modelValue": (newValue: string) => void;
1018
+ }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
1019
+ P: {};
1020
+ B: {};
1021
+ D: {};
1022
+ C: {};
1023
+ M: {};
1024
+ Defaults: {};
1025
+ }, Readonly<{
1026
+ title?: string;
1027
+ modelValue?: string | null;
1028
+ }> & Readonly<{
1029
+ "onUpdate:modelValue"?: (newValue: string) => any;
1030
+ }>, {}, {}, {}, {}, {}>;
1031
+ __isFragment?: never;
1032
+ __isTeleport?: never;
1033
+ __isSuspense?: never;
1034
+ } & import("vue").ComponentOptionsBase<Readonly<{
1035
+ title?: string;
1036
+ modelValue?: string | null;
1037
+ }> & Readonly<{
1038
+ "onUpdate:modelValue"?: (newValue: string) => any;
1039
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1040
+ "update:modelValue": (newValue: string) => void;
1041
+ }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
1042
+ $slots: {
1043
+ actions?: (props: {}) => any;
1044
+ };
1045
+ });
1046
+ };
1047
+ export * from './types';