histoire-controls 1.0.0-alpha.6

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