@histoire/controls 1.0.0-alpha.1 → 1.0.0-alpha.3

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 (55) hide show
  1. package/dist/components/HstWrapper.vue.d.ts +4 -4
  2. package/dist/components/button/HstButton.vue.d.ts +3 -3
  3. package/dist/components/button/HstButtonGroup.vue.d.ts +3 -3
  4. package/dist/components/checkbox/HstCheckbox.vue.d.ts +5 -5
  5. package/dist/components/checkbox/HstCheckboxList.vue.d.ts +3 -3
  6. package/dist/components/checkbox/HstSimpleCheckbox.vue.d.ts +3 -1
  7. package/dist/components/colorselect/HstColorSelect.vue.d.ts +5 -5
  8. package/dist/components/design-tokens/HstColorShades.vue.d.ts +4 -4
  9. package/dist/components/design-tokens/HstTokenGrid.vue.d.ts +4 -4
  10. package/dist/components/design-tokens/HstTokenList.vue.d.ts +4 -4
  11. package/dist/components/json/HstJson.vue.d.ts +6 -4
  12. package/dist/components/number/HstNumber.vue.d.ts +8 -6
  13. package/dist/components/radio/HstRadio.vue.d.ts +5 -5
  14. package/dist/components/select/CustomSelect.vue.d.ts +4 -4
  15. package/dist/components/select/HstSelect.vue.d.ts +3 -3
  16. package/dist/components/slider/HstSlider.vue.d.ts +5 -3
  17. package/dist/components/text/HstText.vue.d.ts +8 -6
  18. package/dist/components/textarea/HstTextarea.vue.d.ts +8 -6
  19. package/dist/index.d.ts +104 -84
  20. package/dist/index.es.css +1 -1
  21. package/dist/index.es.js +1895 -1840
  22. package/package.json +4 -4
  23. package/src/components/HstWrapper.vue +0 -1
  24. package/src/components/checkbox/HstCheckbox.vue +1 -1
  25. package/src/components/colorselect/HstColorSelect.vue +1 -1
  26. package/src/components/design-tokens/HstTokenGrid.vue +1 -1
  27. package/src/components/number/HstNumber.vue +1 -1
  28. package/src/components/radio/HstRadio.vue +1 -1
  29. package/src/components/slider/HstSlider.vue +1 -1
  30. package/src/components/text/HstText.vue +1 -1
  31. package/src/components/textarea/HstTextarea.vue +1 -1
  32. package/.histoire/dist/__sandbox.html +0 -16
  33. package/.histoire/dist/assets/BaseEmpty.d30f3079.js +0 -11
  34. package/.histoire/dist/assets/HomeView.8e044be6.js +0 -24
  35. package/.histoire/dist/assets/HstCheckbox.story.3d04d85b.js +0 -144
  36. package/.histoire/dist/assets/HstColorShades.story.68cf74d1.js +0 -532
  37. package/.histoire/dist/assets/HstCopyIcon.e40e725e.js +0 -51
  38. package/.histoire/dist/assets/HstNumber.story.1e1964ff.js +0 -160
  39. package/.histoire/dist/assets/HstSelect.story.04860383.js +0 -277
  40. package/.histoire/dist/assets/HstText.story.c915d831.js +0 -137
  41. package/.histoire/dist/assets/HstTextarea.story.802b9c26.js +0 -105
  42. package/.histoire/dist/assets/HstTokenGrid.story.025819d6.js +0 -148
  43. package/.histoire/dist/assets/HstTokenList.story.d3aa6575.js +0 -176
  44. package/.histoire/dist/assets/HstWrapper.246b6982.js +0 -56
  45. package/.histoire/dist/assets/SearchPane.daa2675c.js +0 -426
  46. package/.histoire/dist/assets/StoryView.2f64dad1.js +0 -2260
  47. package/.histoire/dist/assets/bundle-main.784e5bf7.js +0 -1156
  48. package/.histoire/dist/assets/bundle-sandbox.5e153933.js +0 -84
  49. package/.histoire/dist/assets/const.268165fd.js +0 -658
  50. package/.histoire/dist/assets/global-components.6736b2a9.js +0 -5722
  51. package/.histoire/dist/assets/search-docs-data.b9a75539.js +0 -6
  52. package/.histoire/dist/assets/style.04507241.css +0 -2504
  53. package/.histoire/dist/assets/vendor.2833ae3d.js +0 -28970
  54. package/.histoire/dist/histoire.svg +0 -51
  55. package/.histoire/dist/index.html +0 -16
package/dist/index.d.ts CHANGED
@@ -18,7 +18,7 @@ export declare const HstButton: {
18
18
  color?: "flat" | "default" | "primary";
19
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
20
  $slots: {
21
- default?(_: {}): any;
21
+ default?: (props: {}) => any;
22
22
  };
23
23
  });
24
24
  export declare const HstButtonGroup: {
@@ -57,12 +57,12 @@ export declare const HstButtonGroup: {
57
57
  "update:modelValue": (value: string) => any;
58
58
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
59
59
  $slots: {
60
- actions?(_: {}): any;
60
+ actions?: (props: {}) => any;
61
61
  };
62
62
  });
63
63
  export declare const HstCheckbox: {
64
64
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
65
- modelValue?: boolean | "true" | "false";
65
+ modelValue?: (boolean | "true" | "false") | null;
66
66
  title?: string;
67
67
  }> & Readonly<{
68
68
  "onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
@@ -76,7 +76,7 @@ export declare const HstCheckbox: {
76
76
  M: {};
77
77
  Defaults: {};
78
78
  }, Readonly<{
79
- modelValue?: boolean | "true" | "false";
79
+ modelValue?: (boolean | "true" | "false") | null;
80
80
  title?: string;
81
81
  }> & Readonly<{
82
82
  "onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
@@ -85,7 +85,7 @@ export declare const HstCheckbox: {
85
85
  __isTeleport?: never;
86
86
  __isSuspense?: never;
87
87
  } & import("vue").ComponentOptionsBase<Readonly<{
88
- modelValue?: boolean | "true" | "false";
88
+ modelValue?: (boolean | "true" | "false") | null;
89
89
  title?: string;
90
90
  }> & Readonly<{
91
91
  "onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
@@ -93,7 +93,7 @@ export declare const HstCheckbox: {
93
93
  "update:modelValue": (newValue: boolean | "true" | "false") => void;
94
94
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
95
95
  $slots: {
96
- actions?(_: {}): any;
96
+ actions?: (props: {}) => any;
97
97
  };
98
98
  });
99
99
  export declare const HstCheckboxList: {
@@ -132,18 +132,20 @@ export declare const HstCheckboxList: {
132
132
  "update:modelValue": (value: string[]) => any;
133
133
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
134
134
  $slots: {
135
- actions?(_: {}): any;
135
+ actions?: (props: {}) => any;
136
136
  };
137
137
  });
138
138
  export declare const HstText: {
139
139
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
140
140
  title?: string;
141
- modelValue?: string;
141
+ modelValue?: string | null;
142
142
  }> & Readonly<{
143
143
  "onUpdate:modelValue"?: (newValue: string) => any;
144
144
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
145
145
  "update:modelValue": (newValue: string) => void;
146
- }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
146
+ }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {
147
+ input: (typeof __VLS_nativeElements)["input"];
148
+ }, any, import("vue").ComponentProvideOptions, {
147
149
  P: {};
148
150
  B: {};
149
151
  D: {};
@@ -152,7 +154,7 @@ export declare const HstText: {
152
154
  Defaults: {};
153
155
  }, Readonly<{
154
156
  title?: string;
155
- modelValue?: string;
157
+ modelValue?: string | null;
156
158
  }> & Readonly<{
157
159
  "onUpdate:modelValue"?: (newValue: string) => any;
158
160
  }>, {}, {}, {}, {}, {}>;
@@ -161,25 +163,27 @@ export declare const HstText: {
161
163
  __isSuspense?: never;
162
164
  } & import("vue").ComponentOptionsBase<Readonly<{
163
165
  title?: string;
164
- modelValue?: string;
166
+ modelValue?: string | null;
165
167
  }> & Readonly<{
166
168
  "onUpdate:modelValue"?: (newValue: string) => any;
167
169
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
168
170
  "update:modelValue": (newValue: string) => void;
169
171
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
170
172
  $slots: {
171
- actions?(_: {}): any;
173
+ actions?: (props: {}) => any;
172
174
  };
173
175
  });
174
176
  export declare const HstNumber: {
175
177
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
176
178
  title?: string;
177
- modelValue?: number;
179
+ modelValue?: number | null;
178
180
  }> & Readonly<{
179
181
  "onUpdate:modelValue"?: (newValue: number) => any;
180
182
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
181
183
  "update:modelValue": (newValue: number) => void;
182
- }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
184
+ }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {
185
+ input: (typeof __VLS_nativeElements)["input"];
186
+ }, any, import("vue").ComponentProvideOptions, {
183
187
  P: {};
184
188
  B: {};
185
189
  D: {};
@@ -188,7 +192,7 @@ export declare const HstNumber: {
188
192
  Defaults: {};
189
193
  }, Readonly<{
190
194
  title?: string;
191
- modelValue?: number;
195
+ modelValue?: number | null;
192
196
  }> & Readonly<{
193
197
  "onUpdate:modelValue"?: (newValue: number) => any;
194
198
  }>, {}, {}, {}, {}, {}>;
@@ -197,40 +201,44 @@ export declare const HstNumber: {
197
201
  __isSuspense?: never;
198
202
  } & import("vue").ComponentOptionsBase<Readonly<{
199
203
  title?: string;
200
- modelValue?: number;
204
+ modelValue?: number | null;
201
205
  }> & Readonly<{
202
206
  "onUpdate:modelValue"?: (newValue: number) => any;
203
207
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
204
208
  "update:modelValue": (newValue: number) => void;
205
209
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
206
210
  $slots: {
207
- actions?(_: {}): any;
211
+ actions?: (props: {}) => any;
208
212
  };
209
213
  });
210
214
  export declare const HstSlider: import("vue").DefineComponent<{
211
215
  title?: string;
212
- modelValue?: number;
216
+ modelValue?: number | null;
213
217
  min: number;
214
218
  max: number;
215
219
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
216
220
  "update:modelValue": (newValue: number) => void;
217
221
  }, string, import("vue").PublicProps, Readonly<{
218
222
  title?: string;
219
- modelValue?: number;
223
+ modelValue?: number | null;
220
224
  min: number;
221
225
  max: number;
222
226
  }> & Readonly<{
223
227
  "onUpdate:modelValue"?: (newValue: number) => any;
224
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
228
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
229
+ input: (typeof __VLS_nativeElements)["input"];
230
+ }, any>;
225
231
  export declare const HstTextarea: {
226
232
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
227
233
  title?: string;
228
- modelValue?: string;
234
+ modelValue?: string | null;
229
235
  }> & Readonly<{
230
236
  "onUpdate:modelValue"?: (newValue: string) => any;
231
237
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
232
238
  "update:modelValue": (newValue: string) => void;
233
- }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
239
+ }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {
240
+ input: (typeof __VLS_nativeElements)["textarea"];
241
+ }, any, import("vue").ComponentProvideOptions, {
234
242
  P: {};
235
243
  B: {};
236
244
  D: {};
@@ -239,7 +247,7 @@ export declare const HstTextarea: {
239
247
  Defaults: {};
240
248
  }, Readonly<{
241
249
  title?: string;
242
- modelValue?: string;
250
+ modelValue?: string | null;
243
251
  }> & Readonly<{
244
252
  "onUpdate:modelValue"?: (newValue: string) => any;
245
253
  }>, {}, {}, {}, {}, {}>;
@@ -248,14 +256,14 @@ export declare const HstTextarea: {
248
256
  __isSuspense?: never;
249
257
  } & import("vue").ComponentOptionsBase<Readonly<{
250
258
  title?: string;
251
- modelValue?: string;
259
+ modelValue?: string | null;
252
260
  }> & Readonly<{
253
261
  "onUpdate:modelValue"?: (newValue: string) => any;
254
262
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
255
263
  "update:modelValue": (newValue: string) => void;
256
264
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
257
265
  $slots: {
258
- actions?(_: {}): any;
266
+ actions?: (props: {}) => any;
259
267
  };
260
268
  });
261
269
  export declare const HstSelect: {
@@ -294,7 +302,7 @@ export declare const HstSelect: {
294
302
  "update:modelValue": (value: any) => any;
295
303
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
296
304
  $slots: {
297
- actions?(_: {}): any;
305
+ actions?: (props: {}) => any;
298
306
  };
299
307
  });
300
308
  export declare const HstColorShades: {
@@ -323,9 +331,9 @@ export declare const HstColorShades: {
323
331
  search?: string;
324
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 () => {
325
333
  $slots: {
326
- default?(_: {
334
+ default?: (props: {
327
335
  color: string;
328
- }): any;
336
+ }) => any;
329
337
  };
330
338
  });
331
339
  export declare const HstTokenList: {
@@ -351,13 +359,13 @@ export declare const HstTokenList: {
351
359
  getName?: (key: string, value: string | number | any[] | Record<string, any>) => string;
352
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 () => {
353
361
  $slots: {
354
- default?(_: {
362
+ default?: (props: {
355
363
  token: {
356
364
  key: string;
357
365
  name: string;
358
366
  value: string | any[] | Record<string, any>;
359
367
  };
360
- }): any;
368
+ }) => any;
361
369
  };
362
370
  });
363
371
  export declare const HstTokenGrid: {
@@ -395,13 +403,13 @@ export declare const HstTokenGrid: {
395
403
  colSize: number;
396
404
  }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
397
405
  $slots: {
398
- default?(_: {
406
+ default?: (props: {
399
407
  token: {
400
408
  key: string;
401
409
  name: string;
402
410
  value: string | any[] | Record<string, any>;
403
411
  };
404
- }): any;
412
+ }) => any;
405
413
  };
406
414
  });
407
415
  export declare const HstCopyIcon: import("vue").DefineComponent<{
@@ -412,7 +420,7 @@ export declare const HstCopyIcon: import("vue").DefineComponent<{
412
420
  export declare const HstRadio: {
413
421
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
414
422
  title?: string;
415
- modelValue?: string;
423
+ modelValue?: string | null;
416
424
  options: import("./types").HstControlOption[];
417
425
  }> & Readonly<{
418
426
  "onUpdate:modelValue"?: (value: string) => any;
@@ -427,7 +435,7 @@ export declare const HstRadio: {
427
435
  Defaults: {};
428
436
  }, Readonly<{
429
437
  title?: string;
430
- modelValue?: string;
438
+ modelValue?: string | null;
431
439
  options: import("./types").HstControlOption[];
432
440
  }> & Readonly<{
433
441
  "onUpdate:modelValue"?: (value: string) => any;
@@ -437,7 +445,7 @@ export declare const HstRadio: {
437
445
  __isSuspense?: never;
438
446
  } & import("vue").ComponentOptionsBase<Readonly<{
439
447
  title?: string;
440
- modelValue?: string;
448
+ modelValue?: string | null;
441
449
  options: import("./types").HstControlOption[];
442
450
  }> & Readonly<{
443
451
  "onUpdate:modelValue"?: (value: string) => any;
@@ -445,7 +453,7 @@ export declare const HstRadio: {
445
453
  "update:modelValue": (value: string) => any;
446
454
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
447
455
  $slots: {
448
- actions?(_: {}): any;
456
+ actions?: (props: {}) => any;
449
457
  };
450
458
  });
451
459
  export declare const HstJson: {
@@ -456,7 +464,9 @@ export declare const HstJson: {
456
464
  "onUpdate:modelValue"?: (newValue: unknown) => any;
457
465
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
458
466
  "update:modelValue": (newValue: unknown) => void;
459
- }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
467
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {
468
+ editorElement: (typeof __VLS_nativeElements)["div"];
469
+ }, any, import("vue").ComponentProvideOptions, {
460
470
  P: {};
461
471
  B: {};
462
472
  D: {};
@@ -481,13 +491,13 @@ export declare const HstJson: {
481
491
  "update:modelValue": (newValue: unknown) => void;
482
492
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
483
493
  $slots: {
484
- actions?(_: {}): any;
494
+ actions?: (props: {}) => any;
485
495
  };
486
496
  });
487
497
  export declare const HstColorSelect: {
488
498
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
489
499
  title?: string;
490
- modelValue?: string;
500
+ modelValue?: string | null;
491
501
  }> & Readonly<{
492
502
  "onUpdate:modelValue"?: (newValue: string) => any;
493
503
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -501,7 +511,7 @@ export declare const HstColorSelect: {
501
511
  Defaults: {};
502
512
  }, Readonly<{
503
513
  title?: string;
504
- modelValue?: string;
514
+ modelValue?: string | null;
505
515
  }> & Readonly<{
506
516
  "onUpdate:modelValue"?: (newValue: string) => any;
507
517
  }>, {}, {}, {}, {}, {}>;
@@ -510,14 +520,14 @@ export declare const HstColorSelect: {
510
520
  __isSuspense?: never;
511
521
  } & import("vue").ComponentOptionsBase<Readonly<{
512
522
  title?: string;
513
- modelValue?: string;
523
+ modelValue?: string | null;
514
524
  }> & Readonly<{
515
525
  "onUpdate:modelValue"?: (newValue: string) => any;
516
526
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
517
527
  "update:modelValue": (newValue: string) => void;
518
528
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
519
529
  $slots: {
520
- actions?(_: {}): any;
530
+ actions?: (props: {}) => any;
521
531
  };
522
532
  });
523
533
  export declare const components: {
@@ -541,7 +551,7 @@ export declare const components: {
541
551
  color?: "flat" | "default" | "primary";
542
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 () => {
543
553
  $slots: {
544
- default?(_: {}): any;
554
+ default?: (props: {}) => any;
545
555
  };
546
556
  });
547
557
  HstButtonGroup: {
@@ -580,12 +590,12 @@ export declare const components: {
580
590
  "update:modelValue": (value: string) => any;
581
591
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
582
592
  $slots: {
583
- actions?(_: {}): any;
593
+ actions?: (props: {}) => any;
584
594
  };
585
595
  });
586
596
  HstCheckbox: {
587
597
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
588
- modelValue?: boolean | "true" | "false";
598
+ modelValue?: (boolean | "true" | "false") | null;
589
599
  title?: string;
590
600
  }> & Readonly<{
591
601
  "onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
@@ -599,7 +609,7 @@ export declare const components: {
599
609
  M: {};
600
610
  Defaults: {};
601
611
  }, Readonly<{
602
- modelValue?: boolean | "true" | "false";
612
+ modelValue?: (boolean | "true" | "false") | null;
603
613
  title?: string;
604
614
  }> & Readonly<{
605
615
  "onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
@@ -608,7 +618,7 @@ export declare const components: {
608
618
  __isTeleport?: never;
609
619
  __isSuspense?: never;
610
620
  } & import("vue").ComponentOptionsBase<Readonly<{
611
- modelValue?: boolean | "true" | "false";
621
+ modelValue?: (boolean | "true" | "false") | null;
612
622
  title?: string;
613
623
  }> & Readonly<{
614
624
  "onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
@@ -616,7 +626,7 @@ export declare const components: {
616
626
  "update:modelValue": (newValue: boolean | "true" | "false") => void;
617
627
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
618
628
  $slots: {
619
- actions?(_: {}): any;
629
+ actions?: (props: {}) => any;
620
630
  };
621
631
  });
622
632
  HstCheckboxList: {
@@ -655,18 +665,20 @@ export declare const components: {
655
665
  "update:modelValue": (value: string[]) => any;
656
666
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
657
667
  $slots: {
658
- actions?(_: {}): any;
668
+ actions?: (props: {}) => any;
659
669
  };
660
670
  });
661
671
  HstText: {
662
672
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
663
673
  title?: string;
664
- modelValue?: string;
674
+ modelValue?: string | null;
665
675
  }> & Readonly<{
666
676
  "onUpdate:modelValue"?: (newValue: string) => any;
667
677
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
668
678
  "update:modelValue": (newValue: string) => void;
669
- }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
679
+ }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {
680
+ input: (typeof __VLS_nativeElements)["input"];
681
+ }, any, import("vue").ComponentProvideOptions, {
670
682
  P: {};
671
683
  B: {};
672
684
  D: {};
@@ -675,7 +687,7 @@ export declare const components: {
675
687
  Defaults: {};
676
688
  }, Readonly<{
677
689
  title?: string;
678
- modelValue?: string;
690
+ modelValue?: string | null;
679
691
  }> & Readonly<{
680
692
  "onUpdate:modelValue"?: (newValue: string) => any;
681
693
  }>, {}, {}, {}, {}, {}>;
@@ -684,25 +696,27 @@ export declare const components: {
684
696
  __isSuspense?: never;
685
697
  } & import("vue").ComponentOptionsBase<Readonly<{
686
698
  title?: string;
687
- modelValue?: string;
699
+ modelValue?: string | null;
688
700
  }> & Readonly<{
689
701
  "onUpdate:modelValue"?: (newValue: string) => any;
690
702
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
691
703
  "update:modelValue": (newValue: string) => void;
692
704
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
693
705
  $slots: {
694
- actions?(_: {}): any;
706
+ actions?: (props: {}) => any;
695
707
  };
696
708
  });
697
709
  HstNumber: {
698
710
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
699
711
  title?: string;
700
- modelValue?: number;
712
+ modelValue?: number | null;
701
713
  }> & Readonly<{
702
714
  "onUpdate:modelValue"?: (newValue: number) => any;
703
715
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
704
716
  "update:modelValue": (newValue: number) => void;
705
- }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
717
+ }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {
718
+ input: (typeof __VLS_nativeElements)["input"];
719
+ }, any, import("vue").ComponentProvideOptions, {
706
720
  P: {};
707
721
  B: {};
708
722
  D: {};
@@ -711,7 +725,7 @@ export declare const components: {
711
725
  Defaults: {};
712
726
  }, Readonly<{
713
727
  title?: string;
714
- modelValue?: number;
728
+ modelValue?: number | null;
715
729
  }> & Readonly<{
716
730
  "onUpdate:modelValue"?: (newValue: number) => any;
717
731
  }>, {}, {}, {}, {}, {}>;
@@ -720,40 +734,44 @@ export declare const components: {
720
734
  __isSuspense?: never;
721
735
  } & import("vue").ComponentOptionsBase<Readonly<{
722
736
  title?: string;
723
- modelValue?: number;
737
+ modelValue?: number | null;
724
738
  }> & Readonly<{
725
739
  "onUpdate:modelValue"?: (newValue: number) => any;
726
740
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
727
741
  "update:modelValue": (newValue: number) => void;
728
742
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
729
743
  $slots: {
730
- actions?(_: {}): any;
744
+ actions?: (props: {}) => any;
731
745
  };
732
746
  });
733
747
  HstSlider: import("vue").DefineComponent<{
734
748
  title?: string;
735
- modelValue?: number;
749
+ modelValue?: number | null;
736
750
  min: number;
737
751
  max: number;
738
752
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
739
753
  "update:modelValue": (newValue: number) => void;
740
754
  }, string, import("vue").PublicProps, Readonly<{
741
755
  title?: string;
742
- modelValue?: number;
756
+ modelValue?: number | null;
743
757
  min: number;
744
758
  max: number;
745
759
  }> & Readonly<{
746
760
  "onUpdate:modelValue"?: (newValue: number) => any;
747
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
761
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
762
+ input: (typeof __VLS_nativeElements)["input"];
763
+ }, any>;
748
764
  HstTextarea: {
749
765
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
750
766
  title?: string;
751
- modelValue?: string;
767
+ modelValue?: string | null;
752
768
  }> & Readonly<{
753
769
  "onUpdate:modelValue"?: (newValue: string) => any;
754
770
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
755
771
  "update:modelValue": (newValue: string) => void;
756
- }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
772
+ }, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {
773
+ input: (typeof __VLS_nativeElements)["textarea"];
774
+ }, any, import("vue").ComponentProvideOptions, {
757
775
  P: {};
758
776
  B: {};
759
777
  D: {};
@@ -762,7 +780,7 @@ export declare const components: {
762
780
  Defaults: {};
763
781
  }, Readonly<{
764
782
  title?: string;
765
- modelValue?: string;
783
+ modelValue?: string | null;
766
784
  }> & Readonly<{
767
785
  "onUpdate:modelValue"?: (newValue: string) => any;
768
786
  }>, {}, {}, {}, {}, {}>;
@@ -771,14 +789,14 @@ export declare const components: {
771
789
  __isSuspense?: never;
772
790
  } & import("vue").ComponentOptionsBase<Readonly<{
773
791
  title?: string;
774
- modelValue?: string;
792
+ modelValue?: string | null;
775
793
  }> & Readonly<{
776
794
  "onUpdate:modelValue"?: (newValue: string) => any;
777
795
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
778
796
  "update:modelValue": (newValue: string) => void;
779
797
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
780
798
  $slots: {
781
- actions?(_: {}): any;
799
+ actions?: (props: {}) => any;
782
800
  };
783
801
  });
784
802
  HstSelect: {
@@ -817,13 +835,13 @@ export declare const components: {
817
835
  "update:modelValue": (value: any) => any;
818
836
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
819
837
  $slots: {
820
- actions?(_: {}): any;
838
+ actions?: (props: {}) => any;
821
839
  };
822
840
  });
823
841
  HstRadio: {
824
842
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
825
843
  title?: string;
826
- modelValue?: string;
844
+ modelValue?: string | null;
827
845
  options: import("./types").HstControlOption[];
828
846
  }> & Readonly<{
829
847
  "onUpdate:modelValue"?: (value: string) => any;
@@ -838,7 +856,7 @@ export declare const components: {
838
856
  Defaults: {};
839
857
  }, Readonly<{
840
858
  title?: string;
841
- modelValue?: string;
859
+ modelValue?: string | null;
842
860
  options: import("./types").HstControlOption[];
843
861
  }> & Readonly<{
844
862
  "onUpdate:modelValue"?: (value: string) => any;
@@ -848,7 +866,7 @@ export declare const components: {
848
866
  __isSuspense?: never;
849
867
  } & import("vue").ComponentOptionsBase<Readonly<{
850
868
  title?: string;
851
- modelValue?: string;
869
+ modelValue?: string | null;
852
870
  options: import("./types").HstControlOption[];
853
871
  }> & Readonly<{
854
872
  "onUpdate:modelValue"?: (value: string) => any;
@@ -856,7 +874,7 @@ export declare const components: {
856
874
  "update:modelValue": (value: string) => any;
857
875
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
858
876
  $slots: {
859
- actions?(_: {}): any;
877
+ actions?: (props: {}) => any;
860
878
  };
861
879
  });
862
880
  HstJson: {
@@ -867,7 +885,9 @@ export declare const components: {
867
885
  "onUpdate:modelValue"?: (newValue: unknown) => any;
868
886
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
869
887
  "update:modelValue": (newValue: unknown) => void;
870
- }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
888
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {
889
+ editorElement: (typeof __VLS_nativeElements)["div"];
890
+ }, any, import("vue").ComponentProvideOptions, {
871
891
  P: {};
872
892
  B: {};
873
893
  D: {};
@@ -892,7 +912,7 @@ export declare const components: {
892
912
  "update:modelValue": (newValue: unknown) => void;
893
913
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
894
914
  $slots: {
895
- actions?(_: {}): any;
915
+ actions?: (props: {}) => any;
896
916
  };
897
917
  });
898
918
  HstColorShades: {
@@ -921,9 +941,9 @@ export declare const components: {
921
941
  search?: string;
922
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 () => {
923
943
  $slots: {
924
- default?(_: {
944
+ default?: (props: {
925
945
  color: string;
926
- }): any;
946
+ }) => any;
927
947
  };
928
948
  });
929
949
  HstTokenList: {
@@ -949,13 +969,13 @@ export declare const components: {
949
969
  getName?: (key: string, value: string | number | any[] | Record<string, any>) => string;
950
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 () => {
951
971
  $slots: {
952
- default?(_: {
972
+ default?: (props: {
953
973
  token: {
954
974
  key: string;
955
975
  name: string;
956
976
  value: string | any[] | Record<string, any>;
957
977
  };
958
- }): any;
978
+ }) => any;
959
979
  };
960
980
  });
961
981
  HstTokenGrid: {
@@ -993,13 +1013,13 @@ export declare const components: {
993
1013
  colSize: number;
994
1014
  }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
995
1015
  $slots: {
996
- default?(_: {
1016
+ default?: (props: {
997
1017
  token: {
998
1018
  key: string;
999
1019
  name: string;
1000
1020
  value: string | any[] | Record<string, any>;
1001
1021
  };
1002
- }): any;
1022
+ }) => any;
1003
1023
  };
1004
1024
  });
1005
1025
  HstCopyIcon: import("vue").DefineComponent<{
@@ -1010,7 +1030,7 @@ export declare const components: {
1010
1030
  HstColorSelect: {
1011
1031
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
1012
1032
  title?: string;
1013
- modelValue?: string;
1033
+ modelValue?: string | null;
1014
1034
  }> & Readonly<{
1015
1035
  "onUpdate:modelValue"?: (newValue: string) => any;
1016
1036
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -1024,7 +1044,7 @@ export declare const components: {
1024
1044
  Defaults: {};
1025
1045
  }, Readonly<{
1026
1046
  title?: string;
1027
- modelValue?: string;
1047
+ modelValue?: string | null;
1028
1048
  }> & Readonly<{
1029
1049
  "onUpdate:modelValue"?: (newValue: string) => any;
1030
1050
  }>, {}, {}, {}, {}, {}>;
@@ -1033,14 +1053,14 @@ export declare const components: {
1033
1053
  __isSuspense?: never;
1034
1054
  } & import("vue").ComponentOptionsBase<Readonly<{
1035
1055
  title?: string;
1036
- modelValue?: string;
1056
+ modelValue?: string | null;
1037
1057
  }> & Readonly<{
1038
1058
  "onUpdate:modelValue"?: (newValue: string) => any;
1039
1059
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1040
1060
  "update:modelValue": (newValue: string) => void;
1041
1061
  }, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
1042
1062
  $slots: {
1043
- actions?(_: {}): any;
1063
+ actions?: (props: {}) => any;
1044
1064
  };
1045
1065
  });
1046
1066
  };