@histoire/controls 0.16.4 → 0.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/dist/components/HstCopyIcon.vue.d.ts +10 -13
  2. package/dist/components/HstWrapper.vue.d.ts +22 -30
  3. package/dist/components/button/HstButton.story.vue.d.ts +1 -1
  4. package/dist/components/button/HstButton.vue.d.ts +10 -15
  5. package/dist/components/button/HstButtonGroup.story.vue.d.ts +1 -1
  6. package/dist/components/button/HstButtonGroup.vue.d.ts +26 -21
  7. package/dist/components/checkbox/HstCheckbox.story.vue.d.ts +1 -1
  8. package/dist/components/checkbox/HstCheckbox.vue.d.ts +18 -19
  9. package/dist/components/checkbox/HstCheckboxList.story.vue.d.ts +1 -1
  10. package/dist/components/checkbox/HstCheckboxList.vue.d.ts +28 -21
  11. package/dist/components/checkbox/HstSimpleCheckbox.story.vue.d.ts +1 -1
  12. package/dist/components/checkbox/HstSimpleCheckbox.vue.d.ts +17 -18
  13. package/dist/components/colorselect/HstColorSelect.story.vue.d.ts +1 -1
  14. package/dist/components/colorselect/HstColorSelect.vue.d.ts +18 -19
  15. package/dist/components/design-tokens/HstColorShades.story.vue.d.ts +1 -1
  16. package/dist/components/design-tokens/HstColorShades.vue.d.ts +25 -20
  17. package/dist/components/design-tokens/HstTokenGrid.story.vue.d.ts +1 -1
  18. package/dist/components/design-tokens/HstTokenGrid.vue.d.ts +30 -32
  19. package/dist/components/design-tokens/HstTokenList.story.vue.d.ts +1 -1
  20. package/dist/components/design-tokens/HstTokenList.vue.d.ts +19 -18
  21. package/dist/components/json/HstJson.story.vue.d.ts +1 -1
  22. package/dist/components/json/HstJson.vue.d.ts +20 -19
  23. package/dist/components/number/HstNumber.story.vue.d.ts +1 -1
  24. package/dist/components/number/HstNumber.vue.d.ts +18 -19
  25. package/dist/components/radio/HstRadio.story.vue.d.ts +1 -1
  26. package/dist/components/radio/HstRadio.vue.d.ts +26 -21
  27. package/dist/components/select/CustomSelect.vue.d.ts +23 -20
  28. package/dist/components/select/HstSelect.story.vue.d.ts +1 -1
  29. package/dist/components/select/HstSelect.vue.d.ts +26 -21
  30. package/dist/components/slider/HstSlider.story.vue.d.ts +1 -1
  31. package/dist/components/slider/HstSlider.vue.d.ts +33 -22
  32. package/dist/components/text/HstText.story.vue.d.ts +1 -1
  33. package/dist/components/text/HstText.vue.d.ts +18 -19
  34. package/dist/components/textarea/HstTextarea.story.vue.d.ts +1 -1
  35. package/dist/components/textarea/HstTextarea.vue.d.ts +18 -19
  36. package/dist/index.d.ts +1566 -530
  37. package/dist/index.es.js +5357 -4920
  38. package/dist/style-standalone.css +148 -145
  39. package/dist/style.css +1 -1
  40. package/package.json +26 -26
  41. package/src/components/checkbox/HstCheckbox.vue +3 -3
  42. package/src/components/checkbox/HstCheckboxList.vue +3 -3
  43. package/src/components/checkbox/HstSimpleCheckbox.vue +2 -2
  44. package/src/components/checkbox/__snapshots__/HstCheckbox.spec.ts.snap +3 -69
  45. package/src/components/json/HstJson.vue +2 -2
  46. package/src/components/select/CustomSelect.vue +2 -2
  47. package/src/components/select/HstSelect.vue +2 -2
  48. package/tsconfig.json +1 -2
  49. package/vite.config.ts +18 -9
  50. package/dist/peeky-preview.d.ts +0 -1
  51. package/peeky.config.ts +0 -21
  52. package/src/peeky-preview.ts +0 -1
package/dist/index.d.ts CHANGED
@@ -2,11 +2,53 @@ export declare const HstButton: {
2
2
  new (...args: any[]): {
3
3
  $: import("@vue/runtime-core").ComponentInternalInstance;
4
4
  $data: {};
5
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
6
- color: {
7
- type: import("@vue/runtime-core").PropType<"flat" | "default" | "primary">;
8
- };
9
- }>> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
5
+ $props: {
6
+ key?: string | number | symbol;
7
+ ref?: import("@vue/runtime-core").VNodeRef;
8
+ ref_for?: boolean;
9
+ ref_key?: string;
10
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
11
+ [key: string]: any;
12
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
13
+ [key: string]: any;
14
+ }>) => void)[];
15
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
16
+ [key: string]: any;
17
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
18
+ [key: string]: any;
19
+ }>) => void)[];
20
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
21
+ [key: string]: any;
22
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
23
+ [key: string]: any;
24
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
25
+ [key: string]: any;
26
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
27
+ [key: string]: any;
28
+ }>) => void)[];
29
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
30
+ [key: string]: any;
31
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
32
+ [key: string]: any;
33
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
34
+ [key: string]: any;
35
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
36
+ [key: string]: any;
37
+ }>) => void)[];
38
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
39
+ [key: string]: any;
40
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
41
+ [key: string]: any;
42
+ }>) => void)[];
43
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
44
+ [key: string]: any;
45
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
46
+ [key: string]: any;
47
+ }>) => void)[];
48
+ class?: unknown;
49
+ style?: unknown;
50
+ readonly color?: "flat" | "default" | "primary";
51
+ };
10
52
  $attrs: {
11
53
  [x: string]: unknown;
12
54
  };
@@ -14,17 +56,17 @@ export declare const HstButton: {
14
56
  [x: string]: unknown;
15
57
  };
16
58
  $slots: Readonly<{
17
- [name: string]: import("@vue/runtime-core").Slot;
59
+ [name: string]: import("@vue/runtime-core").Slot<any>;
18
60
  }>;
19
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
20
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
61
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
62
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
21
63
  $emit: (event: string, ...args: any[]) => void;
22
64
  $el: any;
23
65
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
24
66
  color: {
25
67
  type: import("@vue/runtime-core").PropType<"flat" | "default" | "primary">;
26
68
  };
27
- }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string> & {
69
+ }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
28
70
  beforeCreate?: (() => void) | (() => void)[];
29
71
  created?: (() => void) | (() => void)[];
30
72
  beforeMount?: (() => void) | (() => void)[];
@@ -39,7 +81,7 @@ export declare const HstButton: {
39
81
  unmounted?: (() => void) | (() => void)[];
40
82
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
41
83
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
42
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
84
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
43
85
  };
44
86
  $forceUpdate: () => void;
45
87
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -56,29 +98,65 @@ export declare const HstButton: {
56
98
  color: {
57
99
  type: import("@vue/runtime-core").PropType<"flat" | "default" | "primary">;
58
100
  };
59
- }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
101
+ }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
60
102
  $slots: {
61
- default: (_: {}) => any;
103
+ default?(_: {}): any;
62
104
  };
63
105
  });
64
106
  export declare const HstButtonGroup: {
65
107
  new (...args: any[]): {
66
108
  $: import("@vue/runtime-core").ComponentInternalInstance;
67
109
  $data: {};
68
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
69
- title: {
70
- type: import("@vue/runtime-core").PropType<string>;
71
- };
72
- modelValue: {
73
- type: import("@vue/runtime-core").PropType<string>;
74
- };
75
- options: {
76
- type: import("@vue/runtime-core").PropType<string[] | Record<string, string | number> | number[] | import("./types").HstControlOption[]>;
77
- required: true;
78
- };
79
- }>> & {
110
+ $props: {
111
+ key?: string | number | symbol;
112
+ ref?: import("@vue/runtime-core").VNodeRef;
113
+ ref_for?: boolean;
114
+ ref_key?: string;
115
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
116
+ [key: string]: any;
117
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
118
+ [key: string]: any;
119
+ }>) => void)[];
120
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
121
+ [key: string]: any;
122
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
123
+ [key: string]: any;
124
+ }>) => void)[];
125
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
126
+ [key: string]: any;
127
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
128
+ [key: string]: any;
129
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
130
+ [key: string]: any;
131
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
132
+ [key: string]: any;
133
+ }>) => void)[];
134
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
135
+ [key: string]: any;
136
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
137
+ [key: string]: any;
138
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
139
+ [key: string]: any;
140
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
141
+ [key: string]: any;
142
+ }>) => void)[];
143
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
144
+ [key: string]: any;
145
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
146
+ [key: string]: any;
147
+ }>) => void)[];
148
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
149
+ [key: string]: any;
150
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
151
+ [key: string]: any;
152
+ }>) => void)[];
153
+ class?: unknown;
154
+ style?: unknown;
155
+ readonly title?: string;
156
+ readonly modelValue?: string;
157
+ readonly options: string[] | Record<string, string | number> | number[] | import("./types").HstControlOption[];
80
158
  "onUpdate:modelValue"?: (value: string) => any;
81
- } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
159
+ };
82
160
  $attrs: {
83
161
  [x: string]: unknown;
84
162
  };
@@ -86,10 +164,10 @@ export declare const HstButtonGroup: {
86
164
  [x: string]: unknown;
87
165
  };
88
166
  $slots: Readonly<{
89
- [name: string]: import("@vue/runtime-core").Slot;
167
+ [name: string]: import("@vue/runtime-core").Slot<any>;
90
168
  }>;
91
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
92
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
169
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
170
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
93
171
  $emit: (event: "update:modelValue", value: string) => void;
94
172
  $el: any;
95
173
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -107,7 +185,7 @@ export declare const HstButtonGroup: {
107
185
  "onUpdate:modelValue"?: (value: string) => any;
108
186
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
109
187
  "update:modelValue": (value: string) => void;
110
- }, string, {}, {}, string> & {
188
+ }, string, {}, {}, string, {}> & {
111
189
  beforeCreate?: (() => void) | (() => void)[];
112
190
  created?: (() => void) | (() => void)[];
113
191
  beforeMount?: (() => void) | (() => void)[];
@@ -122,7 +200,7 @@ export declare const HstButtonGroup: {
122
200
  unmounted?: (() => void) | (() => void)[];
123
201
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
124
202
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
125
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
203
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
126
204
  };
127
205
  $forceUpdate: () => void;
128
206
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -159,25 +237,64 @@ export declare const HstButtonGroup: {
159
237
  "onUpdate:modelValue"?: (value: string) => any;
160
238
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
161
239
  "update:modelValue": (value: string) => void;
162
- }, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
240
+ }, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
163
241
  $slots: {
164
- actions: (_: {}) => any;
242
+ actions?(_: {}): any;
165
243
  };
166
244
  });
167
245
  export declare const HstCheckbox: {
168
246
  new (...args: any[]): {
169
247
  $: import("@vue/runtime-core").ComponentInternalInstance;
170
248
  $data: {};
171
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
172
- modelValue: {
173
- type: import("@vue/runtime-core").PropType<boolean | "true" | "false">;
174
- };
175
- title: {
176
- type: import("@vue/runtime-core").PropType<string>;
177
- };
178
- }>> & {
249
+ $props: {
250
+ key?: string | number | symbol;
251
+ ref?: import("@vue/runtime-core").VNodeRef;
252
+ ref_for?: boolean;
253
+ ref_key?: string;
254
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
255
+ [key: string]: any;
256
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
257
+ [key: string]: any;
258
+ }>) => void)[];
259
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
260
+ [key: string]: any;
261
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
262
+ [key: string]: any;
263
+ }>) => void)[];
264
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
265
+ [key: string]: any;
266
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
267
+ [key: string]: any;
268
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
269
+ [key: string]: any;
270
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
271
+ [key: string]: any;
272
+ }>) => void)[];
273
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
274
+ [key: string]: any;
275
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
276
+ [key: string]: any;
277
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
278
+ [key: string]: any;
279
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
280
+ [key: string]: any;
281
+ }>) => void)[];
282
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
283
+ [key: string]: any;
284
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
285
+ [key: string]: any;
286
+ }>) => void)[];
287
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
288
+ [key: string]: any;
289
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
290
+ [key: string]: any;
291
+ }>) => void)[];
292
+ class?: unknown;
293
+ style?: unknown;
294
+ readonly title?: string;
295
+ readonly modelValue?: boolean | "true" | "false";
179
296
  "onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
180
- } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
297
+ };
181
298
  $attrs: {
182
299
  [x: string]: unknown;
183
300
  };
@@ -185,10 +302,10 @@ export declare const HstCheckbox: {
185
302
  [x: string]: unknown;
186
303
  };
187
304
  $slots: Readonly<{
188
- [name: string]: import("@vue/runtime-core").Slot;
305
+ [name: string]: import("@vue/runtime-core").Slot<any>;
189
306
  }>;
190
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
191
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
307
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
308
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
192
309
  $emit: (event: "update:modelValue", newValue: boolean | "true" | "false") => void;
193
310
  $el: any;
194
311
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -202,7 +319,7 @@ export declare const HstCheckbox: {
202
319
  "onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
203
320
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
204
321
  'update:modelValue': (newValue: boolean | "true" | "false") => true;
205
- }, string, {}, {}, string> & {
322
+ }, string, {}, {}, string, {}> & {
206
323
  beforeCreate?: (() => void) | (() => void)[];
207
324
  created?: (() => void) | (() => void)[];
208
325
  beforeMount?: (() => void) | (() => void)[];
@@ -217,7 +334,7 @@ export declare const HstCheckbox: {
217
334
  unmounted?: (() => void) | (() => void)[];
218
335
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
219
336
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
220
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
337
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
221
338
  };
222
339
  $forceUpdate: () => void;
223
340
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -246,30 +363,65 @@ export declare const HstCheckbox: {
246
363
  "onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
247
364
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
248
365
  'update:modelValue': (newValue: boolean | "true" | "false") => true;
249
- }, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
366
+ }, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
250
367
  $slots: {
251
- actions: (_: {}) => any;
368
+ actions?(_: {}): any;
252
369
  };
253
370
  });
254
371
  export declare const HstCheckboxList: {
255
372
  new (...args: any[]): {
256
373
  $: import("@vue/runtime-core").ComponentInternalInstance;
257
374
  $data: {};
258
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
259
- title: {
260
- type: import("@vue/runtime-core").PropType<string>;
261
- };
262
- modelValue: {
263
- type: import("@vue/runtime-core").PropType<string[]>;
264
- required: true;
265
- };
266
- options: {
267
- type: import("@vue/runtime-core").PropType<string[] | import("./types").HstControlOption[]>;
268
- required: true;
269
- };
270
- }>> & {
375
+ $props: {
376
+ key?: string | number | symbol;
377
+ ref?: import("@vue/runtime-core").VNodeRef;
378
+ ref_for?: boolean;
379
+ ref_key?: string;
380
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
381
+ [key: string]: any;
382
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
383
+ [key: string]: any;
384
+ }>) => void)[];
385
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
386
+ [key: string]: any;
387
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
388
+ [key: string]: any;
389
+ }>) => void)[];
390
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
391
+ [key: string]: any;
392
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
393
+ [key: string]: any;
394
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
395
+ [key: string]: any;
396
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
397
+ [key: string]: any;
398
+ }>) => void)[];
399
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
400
+ [key: string]: any;
401
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
402
+ [key: string]: any;
403
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
404
+ [key: string]: any;
405
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
406
+ [key: string]: any;
407
+ }>) => void)[];
408
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
409
+ [key: string]: any;
410
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
411
+ [key: string]: any;
412
+ }>) => void)[];
413
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
414
+ [key: string]: any;
415
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
416
+ [key: string]: any;
417
+ }>) => void)[];
418
+ class?: unknown;
419
+ style?: unknown;
420
+ readonly title?: string;
421
+ readonly modelValue: string[];
422
+ readonly options: string[] | import("./types").HstControlOption[];
271
423
  "onUpdate:modelValue"?: (value: string[]) => any;
272
- } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
424
+ };
273
425
  $attrs: {
274
426
  [x: string]: unknown;
275
427
  };
@@ -277,10 +429,10 @@ export declare const HstCheckboxList: {
277
429
  [x: string]: unknown;
278
430
  };
279
431
  $slots: Readonly<{
280
- [name: string]: import("@vue/runtime-core").Slot;
432
+ [name: string]: import("@vue/runtime-core").Slot<any>;
281
433
  }>;
282
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
283
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
434
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
435
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
284
436
  $emit: (event: "update:modelValue", value: string[]) => void;
285
437
  $el: any;
286
438
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -299,7 +451,7 @@ export declare const HstCheckboxList: {
299
451
  "onUpdate:modelValue"?: (value: string[]) => any;
300
452
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
301
453
  "update:modelValue": (value: string[]) => void;
302
- }, string, {}, {}, string> & {
454
+ }, string, {}, {}, string, {}> & {
303
455
  beforeCreate?: (() => void) | (() => void)[];
304
456
  created?: (() => void) | (() => void)[];
305
457
  beforeMount?: (() => void) | (() => void)[];
@@ -314,7 +466,7 @@ export declare const HstCheckboxList: {
314
466
  unmounted?: (() => void) | (() => void)[];
315
467
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
316
468
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
317
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
469
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
318
470
  };
319
471
  $forceUpdate: () => void;
320
472
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -353,25 +505,64 @@ export declare const HstCheckboxList: {
353
505
  "onUpdate:modelValue"?: (value: string[]) => any;
354
506
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
355
507
  "update:modelValue": (value: string[]) => void;
356
- }, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
508
+ }, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
357
509
  $slots: {
358
- actions: (_: {}) => any;
510
+ actions?(_: {}): any;
359
511
  };
360
512
  });
361
513
  export declare const HstText: {
362
514
  new (...args: any[]): {
363
515
  $: import("@vue/runtime-core").ComponentInternalInstance;
364
516
  $data: {};
365
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
366
- title: {
367
- type: import("@vue/runtime-core").PropType<string>;
368
- };
369
- modelValue: {
370
- type: import("@vue/runtime-core").PropType<string>;
371
- };
372
- }>> & {
517
+ $props: {
518
+ key?: string | number | symbol;
519
+ ref?: import("@vue/runtime-core").VNodeRef;
520
+ ref_for?: boolean;
521
+ ref_key?: string;
522
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
523
+ [key: string]: any;
524
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
525
+ [key: string]: any;
526
+ }>) => void)[];
527
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
528
+ [key: string]: any;
529
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
530
+ [key: string]: any;
531
+ }>) => void)[];
532
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
533
+ [key: string]: any;
534
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
535
+ [key: string]: any;
536
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
537
+ [key: string]: any;
538
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
539
+ [key: string]: any;
540
+ }>) => void)[];
541
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
542
+ [key: string]: any;
543
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
544
+ [key: string]: any;
545
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
546
+ [key: string]: any;
547
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
548
+ [key: string]: any;
549
+ }>) => void)[];
550
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
551
+ [key: string]: any;
552
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
553
+ [key: string]: any;
554
+ }>) => void)[];
555
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
556
+ [key: string]: any;
557
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
558
+ [key: string]: any;
559
+ }>) => void)[];
560
+ class?: unknown;
561
+ style?: unknown;
562
+ readonly title?: string;
563
+ readonly modelValue?: string;
373
564
  "onUpdate:modelValue"?: (newValue: string) => any;
374
- } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
565
+ };
375
566
  $attrs: {
376
567
  [x: string]: unknown;
377
568
  };
@@ -379,10 +570,10 @@ export declare const HstText: {
379
570
  [x: string]: unknown;
380
571
  };
381
572
  $slots: Readonly<{
382
- [name: string]: import("@vue/runtime-core").Slot;
573
+ [name: string]: import("@vue/runtime-core").Slot<any>;
383
574
  }>;
384
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
385
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
575
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
576
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
386
577
  $emit: (event: "update:modelValue", newValue: string) => void;
387
578
  $el: any;
388
579
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -396,7 +587,7 @@ export declare const HstText: {
396
587
  "onUpdate:modelValue"?: (newValue: string) => any;
397
588
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
398
589
  'update:modelValue': (newValue: string) => true;
399
- }, string, {}, {}, string> & {
590
+ }, string, {}, {}, string, {}> & {
400
591
  beforeCreate?: (() => void) | (() => void)[];
401
592
  created?: (() => void) | (() => void)[];
402
593
  beforeMount?: (() => void) | (() => void)[];
@@ -411,7 +602,7 @@ export declare const HstText: {
411
602
  unmounted?: (() => void) | (() => void)[];
412
603
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
413
604
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
414
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
605
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
415
606
  };
416
607
  $forceUpdate: () => void;
417
608
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -440,25 +631,64 @@ export declare const HstText: {
440
631
  "onUpdate:modelValue"?: (newValue: string) => any;
441
632
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
442
633
  'update:modelValue': (newValue: string) => true;
443
- }, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
634
+ }, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
444
635
  $slots: {
445
- actions: (_: {}) => any;
636
+ actions?(_: {}): any;
446
637
  };
447
638
  });
448
639
  export declare const HstNumber: {
449
640
  new (...args: any[]): {
450
641
  $: import("@vue/runtime-core").ComponentInternalInstance;
451
642
  $data: {};
452
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
453
- title: {
454
- type: import("@vue/runtime-core").PropType<string>;
455
- };
456
- modelValue: {
457
- type: import("@vue/runtime-core").PropType<number>;
458
- };
459
- }>> & {
643
+ $props: {
644
+ key?: string | number | symbol;
645
+ ref?: import("@vue/runtime-core").VNodeRef;
646
+ ref_for?: boolean;
647
+ ref_key?: string;
648
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
649
+ [key: string]: any;
650
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
651
+ [key: string]: any;
652
+ }>) => void)[];
653
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
654
+ [key: string]: any;
655
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
656
+ [key: string]: any;
657
+ }>) => void)[];
658
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
659
+ [key: string]: any;
660
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
661
+ [key: string]: any;
662
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
663
+ [key: string]: any;
664
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
665
+ [key: string]: any;
666
+ }>) => void)[];
667
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
668
+ [key: string]: any;
669
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
670
+ [key: string]: any;
671
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
672
+ [key: string]: any;
673
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
674
+ [key: string]: any;
675
+ }>) => void)[];
676
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
677
+ [key: string]: any;
678
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
679
+ [key: string]: any;
680
+ }>) => void)[];
681
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
682
+ [key: string]: any;
683
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
684
+ [key: string]: any;
685
+ }>) => void)[];
686
+ class?: unknown;
687
+ style?: unknown;
688
+ readonly title?: string;
689
+ readonly modelValue?: number;
460
690
  "onUpdate:modelValue"?: (newValue: number) => any;
461
- } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
691
+ };
462
692
  $attrs: {
463
693
  [x: string]: unknown;
464
694
  };
@@ -466,10 +696,10 @@ export declare const HstNumber: {
466
696
  [x: string]: unknown;
467
697
  };
468
698
  $slots: Readonly<{
469
- [name: string]: import("@vue/runtime-core").Slot;
699
+ [name: string]: import("@vue/runtime-core").Slot<any>;
470
700
  }>;
471
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
472
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
701
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
702
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
473
703
  $emit: (event: "update:modelValue", newValue: number) => void;
474
704
  $el: any;
475
705
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -483,7 +713,7 @@ export declare const HstNumber: {
483
713
  "onUpdate:modelValue"?: (newValue: number) => any;
484
714
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
485
715
  'update:modelValue': (newValue: number) => true;
486
- }, string, {}, {}, string> & {
716
+ }, string, {}, {}, string, {}> & {
487
717
  beforeCreate?: (() => void) | (() => void)[];
488
718
  created?: (() => void) | (() => void)[];
489
719
  beforeMount?: (() => void) | (() => void)[];
@@ -498,7 +728,7 @@ export declare const HstNumber: {
498
728
  unmounted?: (() => void) | (() => void)[];
499
729
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
500
730
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
501
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
731
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
502
732
  };
503
733
  $forceUpdate: () => void;
504
734
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -527,9 +757,9 @@ export declare const HstNumber: {
527
757
  "onUpdate:modelValue"?: (newValue: number) => any;
528
758
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
529
759
  'update:modelValue': (newValue: number) => true;
530
- }, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
760
+ }, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
531
761
  $slots: {
532
- actions: (_: {}) => any;
762
+ actions?(_: {}): any;
533
763
  };
534
764
  });
535
765
  export declare const HstSlider: import("@vue/runtime-core").DefineComponent<{
@@ -566,21 +796,60 @@ export declare const HstSlider: import("@vue/runtime-core").DefineComponent<{
566
796
  };
567
797
  }>> & {
568
798
  "onUpdate:modelValue"?: (newValue: number) => any;
569
- }, {}>;
799
+ }, {}, {}>;
570
800
  export declare const HstTextarea: {
571
801
  new (...args: any[]): {
572
802
  $: import("@vue/runtime-core").ComponentInternalInstance;
573
803
  $data: {};
574
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
575
- title: {
576
- type: import("@vue/runtime-core").PropType<string>;
577
- };
578
- modelValue: {
579
- type: import("@vue/runtime-core").PropType<string>;
580
- };
581
- }>> & {
804
+ $props: {
805
+ key?: string | number | symbol;
806
+ ref?: import("@vue/runtime-core").VNodeRef;
807
+ ref_for?: boolean;
808
+ ref_key?: string;
809
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
810
+ [key: string]: any;
811
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
812
+ [key: string]: any;
813
+ }>) => void)[];
814
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
815
+ [key: string]: any;
816
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
817
+ [key: string]: any;
818
+ }>) => void)[];
819
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
820
+ [key: string]: any;
821
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
822
+ [key: string]: any;
823
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
824
+ [key: string]: any;
825
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
826
+ [key: string]: any;
827
+ }>) => void)[];
828
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
829
+ [key: string]: any;
830
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
831
+ [key: string]: any;
832
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
833
+ [key: string]: any;
834
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
835
+ [key: string]: any;
836
+ }>) => void)[];
837
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
838
+ [key: string]: any;
839
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
840
+ [key: string]: any;
841
+ }>) => void)[];
842
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
843
+ [key: string]: any;
844
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
845
+ [key: string]: any;
846
+ }>) => void)[];
847
+ class?: unknown;
848
+ style?: unknown;
849
+ readonly title?: string;
850
+ readonly modelValue?: string;
582
851
  "onUpdate:modelValue"?: (newValue: string) => any;
583
- } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
852
+ };
584
853
  $attrs: {
585
854
  [x: string]: unknown;
586
855
  };
@@ -588,10 +857,10 @@ export declare const HstTextarea: {
588
857
  [x: string]: unknown;
589
858
  };
590
859
  $slots: Readonly<{
591
- [name: string]: import("@vue/runtime-core").Slot;
860
+ [name: string]: import("@vue/runtime-core").Slot<any>;
592
861
  }>;
593
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
594
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
862
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
863
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
595
864
  $emit: (event: "update:modelValue", newValue: string) => void;
596
865
  $el: any;
597
866
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -605,7 +874,7 @@ export declare const HstTextarea: {
605
874
  "onUpdate:modelValue"?: (newValue: string) => any;
606
875
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
607
876
  'update:modelValue': (newValue: string) => true;
608
- }, string, {}, {}, string> & {
877
+ }, string, {}, {}, string, {}> & {
609
878
  beforeCreate?: (() => void) | (() => void)[];
610
879
  created?: (() => void) | (() => void)[];
611
880
  beforeMount?: (() => void) | (() => void)[];
@@ -620,7 +889,7 @@ export declare const HstTextarea: {
620
889
  unmounted?: (() => void) | (() => void)[];
621
890
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
622
891
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
623
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
892
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
624
893
  };
625
894
  $forceUpdate: () => void;
626
895
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -649,29 +918,65 @@ export declare const HstTextarea: {
649
918
  "onUpdate:modelValue"?: (newValue: string) => any;
650
919
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
651
920
  'update:modelValue': (newValue: string) => true;
652
- }, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
921
+ }, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
653
922
  $slots: {
654
- actions: (_: {}) => any;
923
+ actions?(_: {}): any;
655
924
  };
656
925
  });
657
926
  export declare const HstSelect: {
658
927
  new (...args: any[]): {
659
928
  $: import("@vue/runtime-core").ComponentInternalInstance;
660
929
  $data: {};
661
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
662
- title: {
663
- type: import("@vue/runtime-core").PropType<string>;
664
- };
665
- modelValue: {
666
- type: import("@vue/runtime-core").PropType<any>;
667
- };
668
- options: {
669
- type: import("@vue/runtime-core").PropType<string[] | import("./types").HstControlOption[] | Record<string, any>>;
670
- required: true;
671
- };
672
- }>> & {
930
+ $props: {
931
+ key?: string | number | symbol;
932
+ ref?: import("@vue/runtime-core").VNodeRef;
933
+ ref_for?: boolean;
934
+ ref_key?: string;
935
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
936
+ [key: string]: any;
937
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
938
+ [key: string]: any;
939
+ }>) => void)[];
940
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
941
+ [key: string]: any;
942
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
943
+ [key: string]: any;
944
+ }>) => void)[];
945
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
946
+ [key: string]: any;
947
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
948
+ [key: string]: any;
949
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
950
+ [key: string]: any;
951
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
952
+ [key: string]: any;
953
+ }>) => void)[];
954
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
955
+ [key: string]: any;
956
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
957
+ [key: string]: any;
958
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
959
+ [key: string]: any;
960
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
961
+ [key: string]: any;
962
+ }>) => void)[];
963
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
964
+ [key: string]: any;
965
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
966
+ [key: string]: any;
967
+ }>) => void)[];
968
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
969
+ [key: string]: any;
970
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
971
+ [key: string]: any;
972
+ }>) => void)[];
973
+ class?: unknown;
974
+ style?: unknown;
975
+ readonly title?: string;
976
+ readonly modelValue?: any;
977
+ readonly options: unknown;
673
978
  "onUpdate:modelValue"?: (value: any) => any;
674
- } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
979
+ };
675
980
  $attrs: {
676
981
  [x: string]: unknown;
677
982
  };
@@ -679,10 +984,10 @@ export declare const HstSelect: {
679
984
  [x: string]: unknown;
680
985
  };
681
986
  $slots: Readonly<{
682
- [name: string]: import("@vue/runtime-core").Slot;
987
+ [name: string]: import("@vue/runtime-core").Slot<any>;
683
988
  }>;
684
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
685
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
989
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
990
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
686
991
  $emit: (event: "update:modelValue", value: any) => void;
687
992
  $el: any;
688
993
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -693,14 +998,14 @@ export declare const HstSelect: {
693
998
  type: import("@vue/runtime-core").PropType<any>;
694
999
  };
695
1000
  options: {
696
- type: import("@vue/runtime-core").PropType<string[] | import("./types").HstControlOption[] | Record<string, any>>;
1001
+ type: import("@vue/runtime-core").PropType<Record<string, any> | string[] | import("./types").HstControlOption[]>;
697
1002
  required: true;
698
1003
  };
699
1004
  }>> & {
700
1005
  "onUpdate:modelValue"?: (value: any) => any;
701
1006
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
702
1007
  "update:modelValue": (value: any) => void;
703
- }, string, {}, {}, string> & {
1008
+ }, string, {}, {}, string, {}> & {
704
1009
  beforeCreate?: (() => void) | (() => void)[];
705
1010
  created?: (() => void) | (() => void)[];
706
1011
  beforeMount?: (() => void) | (() => void)[];
@@ -715,7 +1020,7 @@ export declare const HstSelect: {
715
1020
  unmounted?: (() => void) | (() => void)[];
716
1021
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
717
1022
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
718
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
1023
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
719
1024
  };
720
1025
  $forceUpdate: () => void;
721
1026
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -728,7 +1033,7 @@ export declare const HstSelect: {
728
1033
  type: import("@vue/runtime-core").PropType<any>;
729
1034
  };
730
1035
  options: {
731
- type: import("@vue/runtime-core").PropType<string[] | import("./types").HstControlOption[] | Record<string, any>>;
1036
+ type: import("@vue/runtime-core").PropType<Record<string, any> | string[] | import("./types").HstControlOption[]>;
732
1037
  required: true;
733
1038
  };
734
1039
  }>> & {
@@ -745,34 +1050,71 @@ export declare const HstSelect: {
745
1050
  type: import("@vue/runtime-core").PropType<any>;
746
1051
  };
747
1052
  options: {
748
- type: import("@vue/runtime-core").PropType<string[] | import("./types").HstControlOption[] | Record<string, any>>;
1053
+ type: import("@vue/runtime-core").PropType<Record<string, any> | string[] | import("./types").HstControlOption[]>;
749
1054
  required: true;
750
1055
  };
751
1056
  }>> & {
752
1057
  "onUpdate:modelValue"?: (value: any) => any;
753
1058
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
754
1059
  "update:modelValue": (value: any) => void;
755
- }, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
1060
+ }, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
756
1061
  $slots: {
757
- actions: (_: {}) => any;
1062
+ actions?(_: {}): any;
758
1063
  };
759
1064
  });
760
1065
  export declare const HstColorShades: {
761
1066
  new (...args: any[]): {
762
1067
  $: import("@vue/runtime-core").ComponentInternalInstance;
763
1068
  $data: {};
764
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
765
- shades: {
766
- type: import("@vue/runtime-core").PropType<Record<string, any>>;
767
- required: true;
768
- };
769
- getName: {
770
- type: import("@vue/runtime-core").PropType<(key: string, color: string) => string>;
771
- };
772
- search: {
773
- type: import("@vue/runtime-core").PropType<string>;
774
- };
775
- }>> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
1069
+ $props: {
1070
+ key?: string | number | symbol;
1071
+ ref?: import("@vue/runtime-core").VNodeRef;
1072
+ ref_for?: boolean;
1073
+ ref_key?: string;
1074
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1075
+ [key: string]: any;
1076
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1077
+ [key: string]: any;
1078
+ }>) => void)[];
1079
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1080
+ [key: string]: any;
1081
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1082
+ [key: string]: any;
1083
+ }>) => void)[];
1084
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1085
+ [key: string]: any;
1086
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1087
+ [key: string]: any;
1088
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1089
+ [key: string]: any;
1090
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1091
+ [key: string]: any;
1092
+ }>) => void)[];
1093
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1094
+ [key: string]: any;
1095
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1096
+ [key: string]: any;
1097
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1098
+ [key: string]: any;
1099
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1100
+ [key: string]: any;
1101
+ }>) => void)[];
1102
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1103
+ [key: string]: any;
1104
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1105
+ [key: string]: any;
1106
+ }>) => void)[];
1107
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1108
+ [key: string]: any;
1109
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1110
+ [key: string]: any;
1111
+ }>) => void)[];
1112
+ class?: unknown;
1113
+ style?: unknown;
1114
+ readonly search?: string;
1115
+ readonly shades: unknown;
1116
+ readonly getName?: (key: string, color: string) => string;
1117
+ };
776
1118
  $attrs: {
777
1119
  [x: string]: unknown;
778
1120
  };
@@ -780,10 +1122,10 @@ export declare const HstColorShades: {
780
1122
  [x: string]: unknown;
781
1123
  };
782
1124
  $slots: Readonly<{
783
- [name: string]: import("@vue/runtime-core").Slot;
1125
+ [name: string]: import("@vue/runtime-core").Slot<any>;
784
1126
  }>;
785
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
786
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1127
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
1128
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
787
1129
  $emit: (event: string, ...args: any[]) => void;
788
1130
  $el: any;
789
1131
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -797,7 +1139,7 @@ export declare const HstColorShades: {
797
1139
  search: {
798
1140
  type: import("@vue/runtime-core").PropType<string>;
799
1141
  };
800
- }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string> & {
1142
+ }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
801
1143
  beforeCreate?: (() => void) | (() => void)[];
802
1144
  created?: (() => void) | (() => void)[];
803
1145
  beforeMount?: (() => void) | (() => void)[];
@@ -812,7 +1154,7 @@ export declare const HstColorShades: {
812
1154
  unmounted?: (() => void) | (() => void)[];
813
1155
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
814
1156
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
815
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
1157
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
816
1158
  };
817
1159
  $forceUpdate: () => void;
818
1160
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -843,26 +1185,65 @@ export declare const HstColorShades: {
843
1185
  search: {
844
1186
  type: import("@vue/runtime-core").PropType<string>;
845
1187
  };
846
- }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
1188
+ }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
847
1189
  $slots: {
848
- default: (_: {
1190
+ default?(_: {
849
1191
  color: string;
850
- }) => any;
1192
+ }): any;
851
1193
  };
852
1194
  });
853
1195
  export declare const HstTokenList: {
854
1196
  new (...args: any[]): {
855
1197
  $: import("@vue/runtime-core").ComponentInternalInstance;
856
1198
  $data: {};
857
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
858
- tokens: {
859
- type: import("@vue/runtime-core").PropType<Record<string, string | number | any[] | Record<string, any>>>;
860
- required: true;
861
- };
862
- getName: {
863
- type: import("@vue/runtime-core").PropType<(key: string, value: string | number | any[] | Record<string, any>) => string>;
864
- };
865
- }>> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
1199
+ $props: {
1200
+ key?: string | number | symbol;
1201
+ ref?: import("@vue/runtime-core").VNodeRef;
1202
+ ref_for?: boolean;
1203
+ ref_key?: string;
1204
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1205
+ [key: string]: any;
1206
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1207
+ [key: string]: any;
1208
+ }>) => void)[];
1209
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1210
+ [key: string]: any;
1211
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1212
+ [key: string]: any;
1213
+ }>) => void)[];
1214
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1215
+ [key: string]: any;
1216
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1217
+ [key: string]: any;
1218
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1219
+ [key: string]: any;
1220
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1221
+ [key: string]: any;
1222
+ }>) => void)[];
1223
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1224
+ [key: string]: any;
1225
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1226
+ [key: string]: any;
1227
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1228
+ [key: string]: any;
1229
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1230
+ [key: string]: any;
1231
+ }>) => void)[];
1232
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1233
+ [key: string]: any;
1234
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1235
+ [key: string]: any;
1236
+ }>) => void)[];
1237
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1238
+ [key: string]: any;
1239
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1240
+ [key: string]: any;
1241
+ }>) => void)[];
1242
+ class?: unknown;
1243
+ style?: unknown;
1244
+ readonly getName?: (key: string, value: string | number | any[] | Record<string, any>) => string;
1245
+ readonly tokens: Record<string, string | number | any[] | Record<string, any>>;
1246
+ };
866
1247
  $attrs: {
867
1248
  [x: string]: unknown;
868
1249
  };
@@ -870,10 +1251,10 @@ export declare const HstTokenList: {
870
1251
  [x: string]: unknown;
871
1252
  };
872
1253
  $slots: Readonly<{
873
- [name: string]: import("@vue/runtime-core").Slot;
1254
+ [name: string]: import("@vue/runtime-core").Slot<any>;
874
1255
  }>;
875
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
876
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1256
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
1257
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
877
1258
  $emit: (event: string, ...args: any[]) => void;
878
1259
  $el: any;
879
1260
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -884,7 +1265,7 @@ export declare const HstTokenList: {
884
1265
  getName: {
885
1266
  type: import("@vue/runtime-core").PropType<(key: string, value: string | number | any[] | Record<string, any>) => string>;
886
1267
  };
887
- }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string> & {
1268
+ }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
888
1269
  beforeCreate?: (() => void) | (() => void)[];
889
1270
  created?: (() => void) | (() => void)[];
890
1271
  beforeMount?: (() => void) | (() => void)[];
@@ -899,7 +1280,7 @@ export declare const HstTokenList: {
899
1280
  unmounted?: (() => void) | (() => void)[];
900
1281
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
901
1282
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
902
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
1283
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
903
1284
  };
904
1285
  $forceUpdate: () => void;
905
1286
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -924,40 +1305,70 @@ export declare const HstTokenList: {
924
1305
  getName: {
925
1306
  type: import("@vue/runtime-core").PropType<(key: string, value: string | number | any[] | Record<string, any>) => string>;
926
1307
  };
927
- }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
1308
+ }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
928
1309
  $slots: {
929
- default: (_: {
1310
+ default?(_: {
930
1311
  token: {
931
1312
  key: string;
932
1313
  name: string;
933
1314
  value: string | Record<string, any>;
934
1315
  };
935
- }) => any;
1316
+ }): any;
936
1317
  };
937
1318
  });
938
1319
  export declare const HstTokenGrid: {
939
1320
  new (...args: any[]): {
940
1321
  $: import("@vue/runtime-core").ComponentInternalInstance;
941
1322
  $data: {};
942
- $props: Partial<{
943
- getName: (key: string, value: string | number | any[] | Record<string, any>) => string;
944
- colSize: number;
945
- }> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
946
- getName: {
947
- type: import("@vue/runtime-core").PropType<(key: string, value: string | number | any[] | Record<string, any>) => string>;
948
- } & {
949
- default: any;
950
- };
951
- colSize: {
952
- type: import("@vue/runtime-core").PropType<number>;
953
- } & {
954
- default: number;
955
- };
956
- tokens: {
957
- type: import("@vue/runtime-core").PropType<Record<string, string | number | any[] | Record<string, any>>>;
958
- required: true;
959
- };
960
- }>> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, "getName" | "colSize">;
1323
+ $props: {
1324
+ getName?: (key: string, value: string | number | any[] | Record<string, any>) => string;
1325
+ colSize?: number;
1326
+ key?: string | number | symbol;
1327
+ ref?: import("@vue/runtime-core").VNodeRef;
1328
+ ref_for?: boolean;
1329
+ ref_key?: string;
1330
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1331
+ [key: string]: any;
1332
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1333
+ [key: string]: any;
1334
+ }>) => void)[];
1335
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1336
+ [key: string]: any;
1337
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1338
+ [key: string]: any;
1339
+ }>) => void)[];
1340
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1341
+ [key: string]: any;
1342
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1343
+ [key: string]: any;
1344
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1345
+ [key: string]: any;
1346
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1347
+ [key: string]: any;
1348
+ }>) => void)[];
1349
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1350
+ [key: string]: any;
1351
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1352
+ [key: string]: any;
1353
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1354
+ [key: string]: any;
1355
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1356
+ [key: string]: any;
1357
+ }>) => void)[];
1358
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1359
+ [key: string]: any;
1360
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1361
+ [key: string]: any;
1362
+ }>) => void)[];
1363
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1364
+ [key: string]: any;
1365
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1366
+ [key: string]: any;
1367
+ }>) => void)[];
1368
+ class?: unknown;
1369
+ style?: unknown;
1370
+ readonly tokens: Record<string, string | number | any[] | Record<string, any>>;
1371
+ };
961
1372
  $attrs: {
962
1373
  [x: string]: unknown;
963
1374
  };
@@ -965,21 +1376,19 @@ export declare const HstTokenGrid: {
965
1376
  [x: string]: unknown;
966
1377
  };
967
1378
  $slots: Readonly<{
968
- [name: string]: import("@vue/runtime-core").Slot;
1379
+ [name: string]: import("@vue/runtime-core").Slot<any>;
969
1380
  }>;
970
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
971
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1381
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
1382
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
972
1383
  $emit: (event: string, ...args: any[]) => void;
973
1384
  $el: any;
974
1385
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
975
1386
  getName: {
976
1387
  type: import("@vue/runtime-core").PropType<(key: string, value: string | number | any[] | Record<string, any>) => string>;
977
- } & {
978
1388
  default: any;
979
1389
  };
980
1390
  colSize: {
981
1391
  type: import("@vue/runtime-core").PropType<number>;
982
- } & {
983
1392
  default: number;
984
1393
  };
985
1394
  tokens: {
@@ -989,7 +1398,7 @@ export declare const HstTokenGrid: {
989
1398
  }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {
990
1399
  getName: (key: string, value: string | number | any[] | Record<string, any>) => string;
991
1400
  colSize: number;
992
- }, {}, string> & {
1401
+ }, {}, string, {}> & {
993
1402
  beforeCreate?: (() => void) | (() => void)[];
994
1403
  created?: (() => void) | (() => void)[];
995
1404
  beforeMount?: (() => void) | (() => void)[];
@@ -1004,7 +1413,7 @@ export declare const HstTokenGrid: {
1004
1413
  unmounted?: (() => void) | (() => void)[];
1005
1414
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
1006
1415
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
1007
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
1416
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
1008
1417
  };
1009
1418
  $forceUpdate: () => void;
1010
1419
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -1012,12 +1421,10 @@ export declare const HstTokenGrid: {
1012
1421
  } & Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1013
1422
  getName: {
1014
1423
  type: import("@vue/runtime-core").PropType<(key: string, value: string | number | any[] | Record<string, any>) => string>;
1015
- } & {
1016
1424
  default: any;
1017
1425
  };
1018
1426
  colSize: {
1019
1427
  type: import("@vue/runtime-core").PropType<number>;
1020
- } & {
1021
1428
  default: number;
1022
1429
  };
1023
1430
  tokens: {
@@ -1031,12 +1438,10 @@ export declare const HstTokenGrid: {
1031
1438
  } & import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1032
1439
  getName: {
1033
1440
  type: import("@vue/runtime-core").PropType<(key: string, value: string | number | any[] | Record<string, any>) => string>;
1034
- } & {
1035
1441
  default: any;
1036
1442
  };
1037
1443
  colSize: {
1038
1444
  type: import("@vue/runtime-core").PropType<number>;
1039
- } & {
1040
1445
  default: number;
1041
1446
  };
1042
1447
  tokens: {
@@ -1046,15 +1451,15 @@ export declare const HstTokenGrid: {
1046
1451
  }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {
1047
1452
  getName: (key: string, value: string | number | any[] | Record<string, any>) => string;
1048
1453
  colSize: number;
1049
- }, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
1454
+ }, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
1050
1455
  $slots: {
1051
- default: (_: {
1456
+ default?(_: {
1052
1457
  token: {
1053
1458
  key: string;
1054
1459
  name: string;
1055
1460
  value: string | Record<string, any>;
1056
1461
  };
1057
- }) => any;
1462
+ }): any;
1058
1463
  };
1059
1464
  });
1060
1465
  export declare const HstCopyIcon: import("@vue/runtime-core").DefineComponent<{
@@ -1067,25 +1472,61 @@ export declare const HstCopyIcon: import("@vue/runtime-core").DefineComponent<{
1067
1472
  type: import("@vue/runtime-core").PropType<string | (() => import("@histoire/shared").Awaitable<string>)>;
1068
1473
  required: true;
1069
1474
  };
1070
- }>>, {}>;
1475
+ }>>, {}, {}>;
1071
1476
  export declare const HstRadio: {
1072
1477
  new (...args: any[]): {
1073
1478
  $: import("@vue/runtime-core").ComponentInternalInstance;
1074
1479
  $data: {};
1075
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1076
- title: {
1077
- type: import("@vue/runtime-core").PropType<string>;
1078
- };
1079
- modelValue: {
1080
- type: import("@vue/runtime-core").PropType<string>;
1081
- };
1082
- options: {
1083
- type: import("@vue/runtime-core").PropType<import("./types").HstControlOption[]>;
1084
- required: true;
1085
- };
1086
- }>> & {
1480
+ $props: {
1481
+ key?: string | number | symbol;
1482
+ ref?: import("@vue/runtime-core").VNodeRef;
1483
+ ref_for?: boolean;
1484
+ ref_key?: string;
1485
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1486
+ [key: string]: any;
1487
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1488
+ [key: string]: any;
1489
+ }>) => void)[];
1490
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1491
+ [key: string]: any;
1492
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1493
+ [key: string]: any;
1494
+ }>) => void)[];
1495
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1496
+ [key: string]: any;
1497
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1498
+ [key: string]: any;
1499
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1500
+ [key: string]: any;
1501
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1502
+ [key: string]: any;
1503
+ }>) => void)[];
1504
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1505
+ [key: string]: any;
1506
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1507
+ [key: string]: any;
1508
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1509
+ [key: string]: any;
1510
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1511
+ [key: string]: any;
1512
+ }>) => void)[];
1513
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1514
+ [key: string]: any;
1515
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1516
+ [key: string]: any;
1517
+ }>) => void)[];
1518
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1519
+ [key: string]: any;
1520
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1521
+ [key: string]: any;
1522
+ }>) => void)[];
1523
+ class?: unknown;
1524
+ style?: unknown;
1525
+ readonly title?: string;
1526
+ readonly modelValue?: string;
1527
+ readonly options: import("./types").HstControlOption[];
1087
1528
  "onUpdate:modelValue"?: (value: string) => any;
1088
- } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
1529
+ };
1089
1530
  $attrs: {
1090
1531
  [x: string]: unknown;
1091
1532
  };
@@ -1093,10 +1534,10 @@ export declare const HstRadio: {
1093
1534
  [x: string]: unknown;
1094
1535
  };
1095
1536
  $slots: Readonly<{
1096
- [name: string]: import("@vue/runtime-core").Slot;
1537
+ [name: string]: import("@vue/runtime-core").Slot<any>;
1097
1538
  }>;
1098
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1099
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1539
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
1540
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
1100
1541
  $emit: (event: "update:modelValue", value: string) => void;
1101
1542
  $el: any;
1102
1543
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -1114,7 +1555,7 @@ export declare const HstRadio: {
1114
1555
  "onUpdate:modelValue"?: (value: string) => any;
1115
1556
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
1116
1557
  "update:modelValue": (value: string) => void;
1117
- }, string, {}, {}, string> & {
1558
+ }, string, {}, {}, string, {}> & {
1118
1559
  beforeCreate?: (() => void) | (() => void)[];
1119
1560
  created?: (() => void) | (() => void)[];
1120
1561
  beforeMount?: (() => void) | (() => void)[];
@@ -1129,7 +1570,7 @@ export declare const HstRadio: {
1129
1570
  unmounted?: (() => void) | (() => void)[];
1130
1571
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
1131
1572
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
1132
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
1573
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
1133
1574
  };
1134
1575
  $forceUpdate: () => void;
1135
1576
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -1166,26 +1607,64 @@ export declare const HstRadio: {
1166
1607
  "onUpdate:modelValue"?: (value: string) => any;
1167
1608
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
1168
1609
  "update:modelValue": (value: string) => void;
1169
- }, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
1610
+ }, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
1170
1611
  $slots: {
1171
- actions: (_: {}) => any;
1612
+ actions?(_: {}): any;
1172
1613
  };
1173
1614
  });
1174
1615
  export declare const HstJson: {
1175
1616
  new (...args: any[]): {
1176
1617
  $: import("@vue/runtime-core").ComponentInternalInstance;
1177
1618
  $data: {};
1178
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1179
- title: {
1180
- type: import("@vue/runtime-core").PropType<string>;
1181
- };
1182
- modelValue: {
1183
- type: import("@vue/runtime-core").PropType<unknown>;
1184
- required: true;
1185
- };
1186
- }>> & {
1619
+ $props: {
1620
+ key?: string | number | symbol;
1621
+ ref?: import("@vue/runtime-core").VNodeRef;
1622
+ ref_for?: boolean;
1623
+ ref_key?: string;
1624
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1625
+ [key: string]: any;
1626
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1627
+ [key: string]: any;
1628
+ }>) => void)[];
1629
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1630
+ [key: string]: any;
1631
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1632
+ [key: string]: any;
1633
+ }>) => void)[];
1634
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1635
+ [key: string]: any;
1636
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1637
+ [key: string]: any;
1638
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1639
+ [key: string]: any;
1640
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1641
+ [key: string]: any;
1642
+ }>) => void)[];
1643
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1644
+ [key: string]: any;
1645
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1646
+ [key: string]: any;
1647
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1648
+ [key: string]: any;
1649
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1650
+ [key: string]: any;
1651
+ }>) => void)[];
1652
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1653
+ [key: string]: any;
1654
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1655
+ [key: string]: any;
1656
+ }>) => void)[];
1657
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1658
+ [key: string]: any;
1659
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1660
+ [key: string]: any;
1661
+ }>) => void)[];
1662
+ class?: unknown;
1663
+ style?: unknown;
1664
+ readonly title?: string;
1665
+ readonly modelValue: unknown;
1187
1666
  "onUpdate:modelValue"?: (newValue: unknown) => any;
1188
- } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
1667
+ };
1189
1668
  $attrs: {
1190
1669
  [x: string]: unknown;
1191
1670
  };
@@ -1193,10 +1672,10 @@ export declare const HstJson: {
1193
1672
  [x: string]: unknown;
1194
1673
  };
1195
1674
  $slots: Readonly<{
1196
- [name: string]: import("@vue/runtime-core").Slot;
1675
+ [name: string]: import("@vue/runtime-core").Slot<any>;
1197
1676
  }>;
1198
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1199
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1677
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
1678
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
1200
1679
  $emit: (event: "update:modelValue", newValue: unknown) => void;
1201
1680
  $el: any;
1202
1681
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -1211,7 +1690,7 @@ export declare const HstJson: {
1211
1690
  "onUpdate:modelValue"?: (newValue: unknown) => any;
1212
1691
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
1213
1692
  'update:modelValue': (newValue: unknown) => true;
1214
- }, string, {}, {}, string> & {
1693
+ }, string, {}, {}, string, {}> & {
1215
1694
  beforeCreate?: (() => void) | (() => void)[];
1216
1695
  created?: (() => void) | (() => void)[];
1217
1696
  beforeMount?: (() => void) | (() => void)[];
@@ -1226,7 +1705,7 @@ export declare const HstJson: {
1226
1705
  unmounted?: (() => void) | (() => void)[];
1227
1706
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
1228
1707
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
1229
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
1708
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
1230
1709
  };
1231
1710
  $forceUpdate: () => void;
1232
1711
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -1257,25 +1736,64 @@ export declare const HstJson: {
1257
1736
  "onUpdate:modelValue"?: (newValue: unknown) => any;
1258
1737
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
1259
1738
  'update:modelValue': (newValue: unknown) => true;
1260
- }, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
1739
+ }, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
1261
1740
  $slots: {
1262
- actions: (_: {}) => any;
1741
+ actions?(_: {}): any;
1263
1742
  };
1264
1743
  });
1265
1744
  export declare const HstColorSelect: {
1266
1745
  new (...args: any[]): {
1267
1746
  $: import("@vue/runtime-core").ComponentInternalInstance;
1268
1747
  $data: {};
1269
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1270
- title: {
1271
- type: import("@vue/runtime-core").PropType<string>;
1272
- };
1273
- modelValue: {
1274
- type: import("@vue/runtime-core").PropType<string>;
1275
- };
1276
- }>> & {
1748
+ $props: {
1749
+ key?: string | number | symbol;
1750
+ ref?: import("@vue/runtime-core").VNodeRef;
1751
+ ref_for?: boolean;
1752
+ ref_key?: string;
1753
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1754
+ [key: string]: any;
1755
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1756
+ [key: string]: any;
1757
+ }>) => void)[];
1758
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1759
+ [key: string]: any;
1760
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1761
+ [key: string]: any;
1762
+ }>) => void)[];
1763
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1764
+ [key: string]: any;
1765
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1766
+ [key: string]: any;
1767
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1768
+ [key: string]: any;
1769
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1770
+ [key: string]: any;
1771
+ }>) => void)[];
1772
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1773
+ [key: string]: any;
1774
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1775
+ [key: string]: any;
1776
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1777
+ [key: string]: any;
1778
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1779
+ [key: string]: any;
1780
+ }>) => void)[];
1781
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1782
+ [key: string]: any;
1783
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1784
+ [key: string]: any;
1785
+ }>) => void)[];
1786
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1787
+ [key: string]: any;
1788
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1789
+ [key: string]: any;
1790
+ }>) => void)[];
1791
+ class?: unknown;
1792
+ style?: unknown;
1793
+ readonly title?: string;
1794
+ readonly modelValue?: string;
1277
1795
  "onUpdate:modelValue"?: (newValue: string) => any;
1278
- } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
1796
+ };
1279
1797
  $attrs: {
1280
1798
  [x: string]: unknown;
1281
1799
  };
@@ -1283,10 +1801,10 @@ export declare const HstColorSelect: {
1283
1801
  [x: string]: unknown;
1284
1802
  };
1285
1803
  $slots: Readonly<{
1286
- [name: string]: import("@vue/runtime-core").Slot;
1804
+ [name: string]: import("@vue/runtime-core").Slot<any>;
1287
1805
  }>;
1288
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1289
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1806
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
1807
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
1290
1808
  $emit: (event: "update:modelValue", newValue: string) => void;
1291
1809
  $el: any;
1292
1810
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -1300,7 +1818,7 @@ export declare const HstColorSelect: {
1300
1818
  "onUpdate:modelValue"?: (newValue: string) => any;
1301
1819
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
1302
1820
  'update:modelValue': (newValue: string) => true;
1303
- }, string, {}, {}, string> & {
1821
+ }, string, {}, {}, string, {}> & {
1304
1822
  beforeCreate?: (() => void) | (() => void)[];
1305
1823
  created?: (() => void) | (() => void)[];
1306
1824
  beforeMount?: (() => void) | (() => void)[];
@@ -1315,7 +1833,7 @@ export declare const HstColorSelect: {
1315
1833
  unmounted?: (() => void) | (() => void)[];
1316
1834
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
1317
1835
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
1318
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
1836
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
1319
1837
  };
1320
1838
  $forceUpdate: () => void;
1321
1839
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -1344,9 +1862,9 @@ export declare const HstColorSelect: {
1344
1862
  "onUpdate:modelValue"?: (newValue: string) => any;
1345
1863
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
1346
1864
  'update:modelValue': (newValue: string) => true;
1347
- }, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
1865
+ }, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
1348
1866
  $slots: {
1349
- actions: (_: {}) => any;
1867
+ actions?(_: {}): any;
1350
1868
  };
1351
1869
  });
1352
1870
  export declare const components: {
@@ -1354,11 +1872,53 @@ export declare const components: {
1354
1872
  new (...args: any[]): {
1355
1873
  $: import("@vue/runtime-core").ComponentInternalInstance;
1356
1874
  $data: {};
1357
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1358
- color: {
1359
- type: import("@vue/runtime-core").PropType<"flat" | "default" | "primary">;
1360
- };
1361
- }>> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
1875
+ $props: {
1876
+ key?: string | number | symbol;
1877
+ ref?: import("@vue/runtime-core").VNodeRef;
1878
+ ref_for?: boolean;
1879
+ ref_key?: string;
1880
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1881
+ [key: string]: any;
1882
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1883
+ [key: string]: any;
1884
+ }>) => void)[];
1885
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1886
+ [key: string]: any;
1887
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1888
+ [key: string]: any;
1889
+ }>) => void)[];
1890
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1891
+ [key: string]: any;
1892
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1893
+ [key: string]: any;
1894
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1895
+ [key: string]: any;
1896
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1897
+ [key: string]: any;
1898
+ }>) => void)[];
1899
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1900
+ [key: string]: any;
1901
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1902
+ [key: string]: any;
1903
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1904
+ [key: string]: any;
1905
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1906
+ [key: string]: any;
1907
+ }>) => void)[];
1908
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1909
+ [key: string]: any;
1910
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1911
+ [key: string]: any;
1912
+ }>) => void)[];
1913
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1914
+ [key: string]: any;
1915
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1916
+ [key: string]: any;
1917
+ }>) => void)[];
1918
+ class?: unknown;
1919
+ style?: unknown;
1920
+ readonly color?: "flat" | "default" | "primary";
1921
+ };
1362
1922
  $attrs: {
1363
1923
  [x: string]: unknown;
1364
1924
  };
@@ -1366,17 +1926,17 @@ export declare const components: {
1366
1926
  [x: string]: unknown;
1367
1927
  };
1368
1928
  $slots: Readonly<{
1369
- [name: string]: import("@vue/runtime-core").Slot;
1929
+ [name: string]: import("@vue/runtime-core").Slot<any>;
1370
1930
  }>;
1371
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1372
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1931
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
1932
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
1373
1933
  $emit: (event: string, ...args: any[]) => void;
1374
1934
  $el: any;
1375
1935
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1376
1936
  color: {
1377
1937
  type: import("@vue/runtime-core").PropType<"flat" | "default" | "primary">;
1378
1938
  };
1379
- }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string> & {
1939
+ }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
1380
1940
  beforeCreate?: (() => void) | (() => void)[];
1381
1941
  created?: (() => void) | (() => void)[];
1382
1942
  beforeMount?: (() => void) | (() => void)[];
@@ -1391,7 +1951,7 @@ export declare const components: {
1391
1951
  unmounted?: (() => void) | (() => void)[];
1392
1952
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
1393
1953
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
1394
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
1954
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
1395
1955
  };
1396
1956
  $forceUpdate: () => void;
1397
1957
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -1408,29 +1968,65 @@ export declare const components: {
1408
1968
  color: {
1409
1969
  type: import("@vue/runtime-core").PropType<"flat" | "default" | "primary">;
1410
1970
  };
1411
- }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
1971
+ }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
1412
1972
  $slots: {
1413
- default: (_: {}) => any;
1973
+ default?(_: {}): any;
1414
1974
  };
1415
1975
  });
1416
1976
  HstButtonGroup: {
1417
1977
  new (...args: any[]): {
1418
1978
  $: import("@vue/runtime-core").ComponentInternalInstance;
1419
1979
  $data: {};
1420
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1421
- title: {
1422
- type: import("@vue/runtime-core").PropType<string>;
1423
- };
1424
- modelValue: {
1425
- type: import("@vue/runtime-core").PropType<string>;
1426
- };
1427
- options: {
1428
- type: import("@vue/runtime-core").PropType<string[] | Record<string, string | number> | number[] | import("./types").HstControlOption[]>;
1429
- required: true;
1430
- };
1431
- }>> & {
1980
+ $props: {
1981
+ key?: string | number | symbol;
1982
+ ref?: import("@vue/runtime-core").VNodeRef;
1983
+ ref_for?: boolean;
1984
+ ref_key?: string;
1985
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1986
+ [key: string]: any;
1987
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1988
+ [key: string]: any;
1989
+ }>) => void)[];
1990
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1991
+ [key: string]: any;
1992
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1993
+ [key: string]: any;
1994
+ }>) => void)[];
1995
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1996
+ [key: string]: any;
1997
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
1998
+ [key: string]: any;
1999
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2000
+ [key: string]: any;
2001
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2002
+ [key: string]: any;
2003
+ }>) => void)[];
2004
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2005
+ [key: string]: any;
2006
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2007
+ [key: string]: any;
2008
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2009
+ [key: string]: any;
2010
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2011
+ [key: string]: any;
2012
+ }>) => void)[];
2013
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2014
+ [key: string]: any;
2015
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2016
+ [key: string]: any;
2017
+ }>) => void)[];
2018
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2019
+ [key: string]: any;
2020
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2021
+ [key: string]: any;
2022
+ }>) => void)[];
2023
+ class?: unknown;
2024
+ style?: unknown;
2025
+ readonly title?: string;
2026
+ readonly modelValue?: string;
2027
+ readonly options: string[] | Record<string, string | number> | number[] | import("./types").HstControlOption[];
1432
2028
  "onUpdate:modelValue"?: (value: string) => any;
1433
- } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
2029
+ };
1434
2030
  $attrs: {
1435
2031
  [x: string]: unknown;
1436
2032
  };
@@ -1438,10 +2034,10 @@ export declare const components: {
1438
2034
  [x: string]: unknown;
1439
2035
  };
1440
2036
  $slots: Readonly<{
1441
- [name: string]: import("@vue/runtime-core").Slot;
2037
+ [name: string]: import("@vue/runtime-core").Slot<any>;
1442
2038
  }>;
1443
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1444
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
2039
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
2040
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
1445
2041
  $emit: (event: "update:modelValue", value: string) => void;
1446
2042
  $el: any;
1447
2043
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -1459,7 +2055,7 @@ export declare const components: {
1459
2055
  "onUpdate:modelValue"?: (value: string) => any;
1460
2056
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
1461
2057
  "update:modelValue": (value: string) => void;
1462
- }, string, {}, {}, string> & {
2058
+ }, string, {}, {}, string, {}> & {
1463
2059
  beforeCreate?: (() => void) | (() => void)[];
1464
2060
  created?: (() => void) | (() => void)[];
1465
2061
  beforeMount?: (() => void) | (() => void)[];
@@ -1474,7 +2070,7 @@ export declare const components: {
1474
2070
  unmounted?: (() => void) | (() => void)[];
1475
2071
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
1476
2072
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
1477
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
2073
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
1478
2074
  };
1479
2075
  $forceUpdate: () => void;
1480
2076
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -1511,25 +2107,64 @@ export declare const components: {
1511
2107
  "onUpdate:modelValue"?: (value: string) => any;
1512
2108
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
1513
2109
  "update:modelValue": (value: string) => void;
1514
- }, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
2110
+ }, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
1515
2111
  $slots: {
1516
- actions: (_: {}) => any;
2112
+ actions?(_: {}): any;
1517
2113
  };
1518
2114
  });
1519
2115
  HstCheckbox: {
1520
2116
  new (...args: any[]): {
1521
2117
  $: import("@vue/runtime-core").ComponentInternalInstance;
1522
2118
  $data: {};
1523
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1524
- modelValue: {
1525
- type: import("@vue/runtime-core").PropType<boolean | "true" | "false">;
1526
- };
1527
- title: {
1528
- type: import("@vue/runtime-core").PropType<string>;
1529
- };
1530
- }>> & {
2119
+ $props: {
2120
+ key?: string | number | symbol;
2121
+ ref?: import("@vue/runtime-core").VNodeRef;
2122
+ ref_for?: boolean;
2123
+ ref_key?: string;
2124
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2125
+ [key: string]: any;
2126
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2127
+ [key: string]: any;
2128
+ }>) => void)[];
2129
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2130
+ [key: string]: any;
2131
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2132
+ [key: string]: any;
2133
+ }>) => void)[];
2134
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2135
+ [key: string]: any;
2136
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2137
+ [key: string]: any;
2138
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2139
+ [key: string]: any;
2140
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2141
+ [key: string]: any;
2142
+ }>) => void)[];
2143
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2144
+ [key: string]: any;
2145
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2146
+ [key: string]: any;
2147
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2148
+ [key: string]: any;
2149
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2150
+ [key: string]: any;
2151
+ }>) => void)[];
2152
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2153
+ [key: string]: any;
2154
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2155
+ [key: string]: any;
2156
+ }>) => void)[];
2157
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2158
+ [key: string]: any;
2159
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2160
+ [key: string]: any;
2161
+ }>) => void)[];
2162
+ class?: unknown;
2163
+ style?: unknown;
2164
+ readonly title?: string;
2165
+ readonly modelValue?: boolean | "true" | "false";
1531
2166
  "onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
1532
- } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
2167
+ };
1533
2168
  $attrs: {
1534
2169
  [x: string]: unknown;
1535
2170
  };
@@ -1537,10 +2172,10 @@ export declare const components: {
1537
2172
  [x: string]: unknown;
1538
2173
  };
1539
2174
  $slots: Readonly<{
1540
- [name: string]: import("@vue/runtime-core").Slot;
2175
+ [name: string]: import("@vue/runtime-core").Slot<any>;
1541
2176
  }>;
1542
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1543
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
2177
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
2178
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
1544
2179
  $emit: (event: "update:modelValue", newValue: boolean | "true" | "false") => void;
1545
2180
  $el: any;
1546
2181
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -1554,7 +2189,7 @@ export declare const components: {
1554
2189
  "onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
1555
2190
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
1556
2191
  'update:modelValue': (newValue: boolean | "true" | "false") => true;
1557
- }, string, {}, {}, string> & {
2192
+ }, string, {}, {}, string, {}> & {
1558
2193
  beforeCreate?: (() => void) | (() => void)[];
1559
2194
  created?: (() => void) | (() => void)[];
1560
2195
  beforeMount?: (() => void) | (() => void)[];
@@ -1569,7 +2204,7 @@ export declare const components: {
1569
2204
  unmounted?: (() => void) | (() => void)[];
1570
2205
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
1571
2206
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
1572
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
2207
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
1573
2208
  };
1574
2209
  $forceUpdate: () => void;
1575
2210
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -1598,30 +2233,65 @@ export declare const components: {
1598
2233
  "onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
1599
2234
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
1600
2235
  'update:modelValue': (newValue: boolean | "true" | "false") => true;
1601
- }, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
2236
+ }, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
1602
2237
  $slots: {
1603
- actions: (_: {}) => any;
2238
+ actions?(_: {}): any;
1604
2239
  };
1605
2240
  });
1606
2241
  HstCheckboxList: {
1607
2242
  new (...args: any[]): {
1608
2243
  $: import("@vue/runtime-core").ComponentInternalInstance;
1609
2244
  $data: {};
1610
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1611
- title: {
1612
- type: import("@vue/runtime-core").PropType<string>;
1613
- };
1614
- modelValue: {
1615
- type: import("@vue/runtime-core").PropType<string[]>;
1616
- required: true;
1617
- };
1618
- options: {
1619
- type: import("@vue/runtime-core").PropType<string[] | import("./types").HstControlOption[]>;
1620
- required: true;
1621
- };
1622
- }>> & {
2245
+ $props: {
2246
+ key?: string | number | symbol;
2247
+ ref?: import("@vue/runtime-core").VNodeRef;
2248
+ ref_for?: boolean;
2249
+ ref_key?: string;
2250
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2251
+ [key: string]: any;
2252
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2253
+ [key: string]: any;
2254
+ }>) => void)[];
2255
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2256
+ [key: string]: any;
2257
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2258
+ [key: string]: any;
2259
+ }>) => void)[];
2260
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2261
+ [key: string]: any;
2262
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2263
+ [key: string]: any;
2264
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2265
+ [key: string]: any;
2266
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2267
+ [key: string]: any;
2268
+ }>) => void)[];
2269
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2270
+ [key: string]: any;
2271
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2272
+ [key: string]: any;
2273
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2274
+ [key: string]: any;
2275
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2276
+ [key: string]: any;
2277
+ }>) => void)[];
2278
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2279
+ [key: string]: any;
2280
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2281
+ [key: string]: any;
2282
+ }>) => void)[];
2283
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2284
+ [key: string]: any;
2285
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2286
+ [key: string]: any;
2287
+ }>) => void)[];
2288
+ class?: unknown;
2289
+ style?: unknown;
2290
+ readonly title?: string;
2291
+ readonly modelValue: string[];
2292
+ readonly options: string[] | import("./types").HstControlOption[];
1623
2293
  "onUpdate:modelValue"?: (value: string[]) => any;
1624
- } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
2294
+ };
1625
2295
  $attrs: {
1626
2296
  [x: string]: unknown;
1627
2297
  };
@@ -1629,10 +2299,10 @@ export declare const components: {
1629
2299
  [x: string]: unknown;
1630
2300
  };
1631
2301
  $slots: Readonly<{
1632
- [name: string]: import("@vue/runtime-core").Slot;
2302
+ [name: string]: import("@vue/runtime-core").Slot<any>;
1633
2303
  }>;
1634
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1635
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
2304
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
2305
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
1636
2306
  $emit: (event: "update:modelValue", value: string[]) => void;
1637
2307
  $el: any;
1638
2308
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -1651,7 +2321,7 @@ export declare const components: {
1651
2321
  "onUpdate:modelValue"?: (value: string[]) => any;
1652
2322
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
1653
2323
  "update:modelValue": (value: string[]) => void;
1654
- }, string, {}, {}, string> & {
2324
+ }, string, {}, {}, string, {}> & {
1655
2325
  beforeCreate?: (() => void) | (() => void)[];
1656
2326
  created?: (() => void) | (() => void)[];
1657
2327
  beforeMount?: (() => void) | (() => void)[];
@@ -1666,7 +2336,7 @@ export declare const components: {
1666
2336
  unmounted?: (() => void) | (() => void)[];
1667
2337
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
1668
2338
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
1669
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
2339
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
1670
2340
  };
1671
2341
  $forceUpdate: () => void;
1672
2342
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -1705,25 +2375,64 @@ export declare const components: {
1705
2375
  "onUpdate:modelValue"?: (value: string[]) => any;
1706
2376
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
1707
2377
  "update:modelValue": (value: string[]) => void;
1708
- }, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
2378
+ }, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
1709
2379
  $slots: {
1710
- actions: (_: {}) => any;
2380
+ actions?(_: {}): any;
1711
2381
  };
1712
2382
  });
1713
2383
  HstText: {
1714
2384
  new (...args: any[]): {
1715
2385
  $: import("@vue/runtime-core").ComponentInternalInstance;
1716
2386
  $data: {};
1717
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1718
- title: {
1719
- type: import("@vue/runtime-core").PropType<string>;
1720
- };
1721
- modelValue: {
1722
- type: import("@vue/runtime-core").PropType<string>;
1723
- };
1724
- }>> & {
2387
+ $props: {
2388
+ key?: string | number | symbol;
2389
+ ref?: import("@vue/runtime-core").VNodeRef;
2390
+ ref_for?: boolean;
2391
+ ref_key?: string;
2392
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2393
+ [key: string]: any;
2394
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2395
+ [key: string]: any;
2396
+ }>) => void)[];
2397
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2398
+ [key: string]: any;
2399
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2400
+ [key: string]: any;
2401
+ }>) => void)[];
2402
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2403
+ [key: string]: any;
2404
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2405
+ [key: string]: any;
2406
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2407
+ [key: string]: any;
2408
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2409
+ [key: string]: any;
2410
+ }>) => void)[];
2411
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2412
+ [key: string]: any;
2413
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2414
+ [key: string]: any;
2415
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2416
+ [key: string]: any;
2417
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2418
+ [key: string]: any;
2419
+ }>) => void)[];
2420
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2421
+ [key: string]: any;
2422
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2423
+ [key: string]: any;
2424
+ }>) => void)[];
2425
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2426
+ [key: string]: any;
2427
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2428
+ [key: string]: any;
2429
+ }>) => void)[];
2430
+ class?: unknown;
2431
+ style?: unknown;
2432
+ readonly title?: string;
2433
+ readonly modelValue?: string;
1725
2434
  "onUpdate:modelValue"?: (newValue: string) => any;
1726
- } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
2435
+ };
1727
2436
  $attrs: {
1728
2437
  [x: string]: unknown;
1729
2438
  };
@@ -1731,10 +2440,10 @@ export declare const components: {
1731
2440
  [x: string]: unknown;
1732
2441
  };
1733
2442
  $slots: Readonly<{
1734
- [name: string]: import("@vue/runtime-core").Slot;
2443
+ [name: string]: import("@vue/runtime-core").Slot<any>;
1735
2444
  }>;
1736
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1737
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
2445
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
2446
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
1738
2447
  $emit: (event: "update:modelValue", newValue: string) => void;
1739
2448
  $el: any;
1740
2449
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -1748,7 +2457,7 @@ export declare const components: {
1748
2457
  "onUpdate:modelValue"?: (newValue: string) => any;
1749
2458
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
1750
2459
  'update:modelValue': (newValue: string) => true;
1751
- }, string, {}, {}, string> & {
2460
+ }, string, {}, {}, string, {}> & {
1752
2461
  beforeCreate?: (() => void) | (() => void)[];
1753
2462
  created?: (() => void) | (() => void)[];
1754
2463
  beforeMount?: (() => void) | (() => void)[];
@@ -1763,7 +2472,7 @@ export declare const components: {
1763
2472
  unmounted?: (() => void) | (() => void)[];
1764
2473
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
1765
2474
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
1766
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
2475
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
1767
2476
  };
1768
2477
  $forceUpdate: () => void;
1769
2478
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -1792,25 +2501,64 @@ export declare const components: {
1792
2501
  "onUpdate:modelValue"?: (newValue: string) => any;
1793
2502
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
1794
2503
  'update:modelValue': (newValue: string) => true;
1795
- }, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
2504
+ }, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
1796
2505
  $slots: {
1797
- actions: (_: {}) => any;
2506
+ actions?(_: {}): any;
1798
2507
  };
1799
2508
  });
1800
2509
  HstNumber: {
1801
2510
  new (...args: any[]): {
1802
2511
  $: import("@vue/runtime-core").ComponentInternalInstance;
1803
2512
  $data: {};
1804
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1805
- title: {
1806
- type: import("@vue/runtime-core").PropType<string>;
1807
- };
1808
- modelValue: {
1809
- type: import("@vue/runtime-core").PropType<number>;
1810
- };
1811
- }>> & {
2513
+ $props: {
2514
+ key?: string | number | symbol;
2515
+ ref?: import("@vue/runtime-core").VNodeRef;
2516
+ ref_for?: boolean;
2517
+ ref_key?: string;
2518
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2519
+ [key: string]: any;
2520
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2521
+ [key: string]: any;
2522
+ }>) => void)[];
2523
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2524
+ [key: string]: any;
2525
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2526
+ [key: string]: any;
2527
+ }>) => void)[];
2528
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2529
+ [key: string]: any;
2530
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2531
+ [key: string]: any;
2532
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2533
+ [key: string]: any;
2534
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2535
+ [key: string]: any;
2536
+ }>) => void)[];
2537
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2538
+ [key: string]: any;
2539
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2540
+ [key: string]: any;
2541
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2542
+ [key: string]: any;
2543
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2544
+ [key: string]: any;
2545
+ }>) => void)[];
2546
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2547
+ [key: string]: any;
2548
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2549
+ [key: string]: any;
2550
+ }>) => void)[];
2551
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2552
+ [key: string]: any;
2553
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2554
+ [key: string]: any;
2555
+ }>) => void)[];
2556
+ class?: unknown;
2557
+ style?: unknown;
2558
+ readonly title?: string;
2559
+ readonly modelValue?: number;
1812
2560
  "onUpdate:modelValue"?: (newValue: number) => any;
1813
- } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
2561
+ };
1814
2562
  $attrs: {
1815
2563
  [x: string]: unknown;
1816
2564
  };
@@ -1818,10 +2566,10 @@ export declare const components: {
1818
2566
  [x: string]: unknown;
1819
2567
  };
1820
2568
  $slots: Readonly<{
1821
- [name: string]: import("@vue/runtime-core").Slot;
2569
+ [name: string]: import("@vue/runtime-core").Slot<any>;
1822
2570
  }>;
1823
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1824
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
2571
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
2572
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
1825
2573
  $emit: (event: "update:modelValue", newValue: number) => void;
1826
2574
  $el: any;
1827
2575
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -1835,7 +2583,7 @@ export declare const components: {
1835
2583
  "onUpdate:modelValue"?: (newValue: number) => any;
1836
2584
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
1837
2585
  'update:modelValue': (newValue: number) => true;
1838
- }, string, {}, {}, string> & {
2586
+ }, string, {}, {}, string, {}> & {
1839
2587
  beforeCreate?: (() => void) | (() => void)[];
1840
2588
  created?: (() => void) | (() => void)[];
1841
2589
  beforeMount?: (() => void) | (() => void)[];
@@ -1850,7 +2598,7 @@ export declare const components: {
1850
2598
  unmounted?: (() => void) | (() => void)[];
1851
2599
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
1852
2600
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
1853
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
2601
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
1854
2602
  };
1855
2603
  $forceUpdate: () => void;
1856
2604
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -1879,9 +2627,9 @@ export declare const components: {
1879
2627
  "onUpdate:modelValue"?: (newValue: number) => any;
1880
2628
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
1881
2629
  'update:modelValue': (newValue: number) => true;
1882
- }, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
2630
+ }, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
1883
2631
  $slots: {
1884
- actions: (_: {}) => any;
2632
+ actions?(_: {}): any;
1885
2633
  };
1886
2634
  });
1887
2635
  HstSlider: import("@vue/runtime-core").DefineComponent<{
@@ -1918,21 +2666,60 @@ export declare const components: {
1918
2666
  };
1919
2667
  }>> & {
1920
2668
  "onUpdate:modelValue"?: (newValue: number) => any;
1921
- }, {}>;
2669
+ }, {}, {}>;
1922
2670
  HstTextarea: {
1923
2671
  new (...args: any[]): {
1924
2672
  $: import("@vue/runtime-core").ComponentInternalInstance;
1925
2673
  $data: {};
1926
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
1927
- title: {
1928
- type: import("@vue/runtime-core").PropType<string>;
1929
- };
1930
- modelValue: {
1931
- type: import("@vue/runtime-core").PropType<string>;
1932
- };
1933
- }>> & {
2674
+ $props: {
2675
+ key?: string | number | symbol;
2676
+ ref?: import("@vue/runtime-core").VNodeRef;
2677
+ ref_for?: boolean;
2678
+ ref_key?: string;
2679
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2680
+ [key: string]: any;
2681
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2682
+ [key: string]: any;
2683
+ }>) => void)[];
2684
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2685
+ [key: string]: any;
2686
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2687
+ [key: string]: any;
2688
+ }>) => void)[];
2689
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2690
+ [key: string]: any;
2691
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2692
+ [key: string]: any;
2693
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2694
+ [key: string]: any;
2695
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2696
+ [key: string]: any;
2697
+ }>) => void)[];
2698
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2699
+ [key: string]: any;
2700
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2701
+ [key: string]: any;
2702
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2703
+ [key: string]: any;
2704
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2705
+ [key: string]: any;
2706
+ }>) => void)[];
2707
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2708
+ [key: string]: any;
2709
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2710
+ [key: string]: any;
2711
+ }>) => void)[];
2712
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2713
+ [key: string]: any;
2714
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2715
+ [key: string]: any;
2716
+ }>) => void)[];
2717
+ class?: unknown;
2718
+ style?: unknown;
2719
+ readonly title?: string;
2720
+ readonly modelValue?: string;
1934
2721
  "onUpdate:modelValue"?: (newValue: string) => any;
1935
- } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
2722
+ };
1936
2723
  $attrs: {
1937
2724
  [x: string]: unknown;
1938
2725
  };
@@ -1940,10 +2727,10 @@ export declare const components: {
1940
2727
  [x: string]: unknown;
1941
2728
  };
1942
2729
  $slots: Readonly<{
1943
- [name: string]: import("@vue/runtime-core").Slot;
2730
+ [name: string]: import("@vue/runtime-core").Slot<any>;
1944
2731
  }>;
1945
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
1946
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
2732
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
2733
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
1947
2734
  $emit: (event: "update:modelValue", newValue: string) => void;
1948
2735
  $el: any;
1949
2736
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -1957,7 +2744,7 @@ export declare const components: {
1957
2744
  "onUpdate:modelValue"?: (newValue: string) => any;
1958
2745
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
1959
2746
  'update:modelValue': (newValue: string) => true;
1960
- }, string, {}, {}, string> & {
2747
+ }, string, {}, {}, string, {}> & {
1961
2748
  beforeCreate?: (() => void) | (() => void)[];
1962
2749
  created?: (() => void) | (() => void)[];
1963
2750
  beforeMount?: (() => void) | (() => void)[];
@@ -1972,7 +2759,7 @@ export declare const components: {
1972
2759
  unmounted?: (() => void) | (() => void)[];
1973
2760
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
1974
2761
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
1975
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
2762
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
1976
2763
  };
1977
2764
  $forceUpdate: () => void;
1978
2765
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -2001,29 +2788,65 @@ export declare const components: {
2001
2788
  "onUpdate:modelValue"?: (newValue: string) => any;
2002
2789
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
2003
2790
  'update:modelValue': (newValue: string) => true;
2004
- }, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
2791
+ }, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
2005
2792
  $slots: {
2006
- actions: (_: {}) => any;
2793
+ actions?(_: {}): any;
2007
2794
  };
2008
2795
  });
2009
2796
  HstSelect: {
2010
2797
  new (...args: any[]): {
2011
2798
  $: import("@vue/runtime-core").ComponentInternalInstance;
2012
2799
  $data: {};
2013
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2014
- title: {
2015
- type: import("@vue/runtime-core").PropType<string>;
2016
- };
2017
- modelValue: {
2018
- type: import("@vue/runtime-core").PropType<any>;
2019
- };
2020
- options: {
2021
- type: import("@vue/runtime-core").PropType<string[] | import("./types").HstControlOption[] | Record<string, any>>;
2022
- required: true;
2023
- };
2024
- }>> & {
2800
+ $props: {
2801
+ key?: string | number | symbol;
2802
+ ref?: import("@vue/runtime-core").VNodeRef;
2803
+ ref_for?: boolean;
2804
+ ref_key?: string;
2805
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2806
+ [key: string]: any;
2807
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2808
+ [key: string]: any;
2809
+ }>) => void)[];
2810
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2811
+ [key: string]: any;
2812
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2813
+ [key: string]: any;
2814
+ }>) => void)[];
2815
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2816
+ [key: string]: any;
2817
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2818
+ [key: string]: any;
2819
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2820
+ [key: string]: any;
2821
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2822
+ [key: string]: any;
2823
+ }>) => void)[];
2824
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2825
+ [key: string]: any;
2826
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2827
+ [key: string]: any;
2828
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2829
+ [key: string]: any;
2830
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2831
+ [key: string]: any;
2832
+ }>) => void)[];
2833
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2834
+ [key: string]: any;
2835
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2836
+ [key: string]: any;
2837
+ }>) => void)[];
2838
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2839
+ [key: string]: any;
2840
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2841
+ [key: string]: any;
2842
+ }>) => void)[];
2843
+ class?: unknown;
2844
+ style?: unknown;
2845
+ readonly title?: string;
2846
+ readonly modelValue?: any;
2847
+ readonly options: unknown;
2025
2848
  "onUpdate:modelValue"?: (value: any) => any;
2026
- } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
2849
+ };
2027
2850
  $attrs: {
2028
2851
  [x: string]: unknown;
2029
2852
  };
@@ -2031,10 +2854,10 @@ export declare const components: {
2031
2854
  [x: string]: unknown;
2032
2855
  };
2033
2856
  $slots: Readonly<{
2034
- [name: string]: import("@vue/runtime-core").Slot;
2857
+ [name: string]: import("@vue/runtime-core").Slot<any>;
2035
2858
  }>;
2036
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
2037
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
2859
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
2860
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
2038
2861
  $emit: (event: "update:modelValue", value: any) => void;
2039
2862
  $el: any;
2040
2863
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -2045,14 +2868,14 @@ export declare const components: {
2045
2868
  type: import("@vue/runtime-core").PropType<any>;
2046
2869
  };
2047
2870
  options: {
2048
- type: import("@vue/runtime-core").PropType<string[] | import("./types").HstControlOption[] | Record<string, any>>;
2871
+ type: import("@vue/runtime-core").PropType<Record<string, any> | string[] | import("./types").HstControlOption[]>;
2049
2872
  required: true;
2050
2873
  };
2051
2874
  }>> & {
2052
2875
  "onUpdate:modelValue"?: (value: any) => any;
2053
2876
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
2054
2877
  "update:modelValue": (value: any) => void;
2055
- }, string, {}, {}, string> & {
2878
+ }, string, {}, {}, string, {}> & {
2056
2879
  beforeCreate?: (() => void) | (() => void)[];
2057
2880
  created?: (() => void) | (() => void)[];
2058
2881
  beforeMount?: (() => void) | (() => void)[];
@@ -2067,7 +2890,7 @@ export declare const components: {
2067
2890
  unmounted?: (() => void) | (() => void)[];
2068
2891
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
2069
2892
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
2070
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
2893
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
2071
2894
  };
2072
2895
  $forceUpdate: () => void;
2073
2896
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -2080,7 +2903,7 @@ export declare const components: {
2080
2903
  type: import("@vue/runtime-core").PropType<any>;
2081
2904
  };
2082
2905
  options: {
2083
- type: import("@vue/runtime-core").PropType<string[] | import("./types").HstControlOption[] | Record<string, any>>;
2906
+ type: import("@vue/runtime-core").PropType<Record<string, any> | string[] | import("./types").HstControlOption[]>;
2084
2907
  required: true;
2085
2908
  };
2086
2909
  }>> & {
@@ -2097,36 +2920,72 @@ export declare const components: {
2097
2920
  type: import("@vue/runtime-core").PropType<any>;
2098
2921
  };
2099
2922
  options: {
2100
- type: import("@vue/runtime-core").PropType<string[] | import("./types").HstControlOption[] | Record<string, any>>;
2923
+ type: import("@vue/runtime-core").PropType<Record<string, any> | string[] | import("./types").HstControlOption[]>;
2101
2924
  required: true;
2102
2925
  };
2103
2926
  }>> & {
2104
2927
  "onUpdate:modelValue"?: (value: any) => any;
2105
2928
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
2106
2929
  "update:modelValue": (value: any) => void;
2107
- }, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
2930
+ }, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
2108
2931
  $slots: {
2109
- actions: (_: {}) => any;
2932
+ actions?(_: {}): any;
2110
2933
  };
2111
2934
  });
2112
2935
  HstRadio: {
2113
2936
  new (...args: any[]): {
2114
2937
  $: import("@vue/runtime-core").ComponentInternalInstance;
2115
2938
  $data: {};
2116
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2117
- title: {
2118
- type: import("@vue/runtime-core").PropType<string>;
2119
- };
2120
- modelValue: {
2121
- type: import("@vue/runtime-core").PropType<string>;
2122
- };
2123
- options: {
2124
- type: import("@vue/runtime-core").PropType<import("./types").HstControlOption[]>;
2125
- required: true;
2126
- };
2127
- }>> & {
2939
+ $props: {
2940
+ key?: string | number | symbol;
2941
+ ref?: import("@vue/runtime-core").VNodeRef;
2942
+ ref_for?: boolean;
2943
+ ref_key?: string;
2944
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2945
+ [key: string]: any;
2946
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2947
+ [key: string]: any;
2948
+ }>) => void)[];
2949
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2950
+ [key: string]: any;
2951
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2952
+ [key: string]: any;
2953
+ }>) => void)[];
2954
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2955
+ [key: string]: any;
2956
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2957
+ [key: string]: any;
2958
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2959
+ [key: string]: any;
2960
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2961
+ [key: string]: any;
2962
+ }>) => void)[];
2963
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2964
+ [key: string]: any;
2965
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2966
+ [key: string]: any;
2967
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2968
+ [key: string]: any;
2969
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2970
+ [key: string]: any;
2971
+ }>) => void)[];
2972
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2973
+ [key: string]: any;
2974
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2975
+ [key: string]: any;
2976
+ }>) => void)[];
2977
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2978
+ [key: string]: any;
2979
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
2980
+ [key: string]: any;
2981
+ }>) => void)[];
2982
+ class?: unknown;
2983
+ style?: unknown;
2984
+ readonly title?: string;
2985
+ readonly modelValue?: string;
2986
+ readonly options: import("./types").HstControlOption[];
2128
2987
  "onUpdate:modelValue"?: (value: string) => any;
2129
- } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
2988
+ };
2130
2989
  $attrs: {
2131
2990
  [x: string]: unknown;
2132
2991
  };
@@ -2134,10 +2993,10 @@ export declare const components: {
2134
2993
  [x: string]: unknown;
2135
2994
  };
2136
2995
  $slots: Readonly<{
2137
- [name: string]: import("@vue/runtime-core").Slot;
2996
+ [name: string]: import("@vue/runtime-core").Slot<any>;
2138
2997
  }>;
2139
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
2140
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
2998
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
2999
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
2141
3000
  $emit: (event: "update:modelValue", value: string) => void;
2142
3001
  $el: any;
2143
3002
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -2155,7 +3014,7 @@ export declare const components: {
2155
3014
  "onUpdate:modelValue"?: (value: string) => any;
2156
3015
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
2157
3016
  "update:modelValue": (value: string) => void;
2158
- }, string, {}, {}, string> & {
3017
+ }, string, {}, {}, string, {}> & {
2159
3018
  beforeCreate?: (() => void) | (() => void)[];
2160
3019
  created?: (() => void) | (() => void)[];
2161
3020
  beforeMount?: (() => void) | (() => void)[];
@@ -2170,7 +3029,7 @@ export declare const components: {
2170
3029
  unmounted?: (() => void) | (() => void)[];
2171
3030
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
2172
3031
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
2173
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
3032
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
2174
3033
  };
2175
3034
  $forceUpdate: () => void;
2176
3035
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -2207,26 +3066,64 @@ export declare const components: {
2207
3066
  "onUpdate:modelValue"?: (value: string) => any;
2208
3067
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
2209
3068
  "update:modelValue": (value: string) => void;
2210
- }, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
3069
+ }, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
2211
3070
  $slots: {
2212
- actions: (_: {}) => any;
3071
+ actions?(_: {}): any;
2213
3072
  };
2214
3073
  });
2215
3074
  HstJson: {
2216
3075
  new (...args: any[]): {
2217
3076
  $: import("@vue/runtime-core").ComponentInternalInstance;
2218
3077
  $data: {};
2219
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2220
- title: {
2221
- type: import("@vue/runtime-core").PropType<string>;
2222
- };
2223
- modelValue: {
2224
- type: import("@vue/runtime-core").PropType<unknown>;
2225
- required: true;
2226
- };
2227
- }>> & {
3078
+ $props: {
3079
+ key?: string | number | symbol;
3080
+ ref?: import("@vue/runtime-core").VNodeRef;
3081
+ ref_for?: boolean;
3082
+ ref_key?: string;
3083
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3084
+ [key: string]: any;
3085
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3086
+ [key: string]: any;
3087
+ }>) => void)[];
3088
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3089
+ [key: string]: any;
3090
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3091
+ [key: string]: any;
3092
+ }>) => void)[];
3093
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3094
+ [key: string]: any;
3095
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3096
+ [key: string]: any;
3097
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3098
+ [key: string]: any;
3099
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3100
+ [key: string]: any;
3101
+ }>) => void)[];
3102
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3103
+ [key: string]: any;
3104
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3105
+ [key: string]: any;
3106
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3107
+ [key: string]: any;
3108
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3109
+ [key: string]: any;
3110
+ }>) => void)[];
3111
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3112
+ [key: string]: any;
3113
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3114
+ [key: string]: any;
3115
+ }>) => void)[];
3116
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3117
+ [key: string]: any;
3118
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3119
+ [key: string]: any;
3120
+ }>) => void)[];
3121
+ class?: unknown;
3122
+ style?: unknown;
3123
+ readonly title?: string;
3124
+ readonly modelValue: unknown;
2228
3125
  "onUpdate:modelValue"?: (newValue: unknown) => any;
2229
- } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
3126
+ };
2230
3127
  $attrs: {
2231
3128
  [x: string]: unknown;
2232
3129
  };
@@ -2234,10 +3131,10 @@ export declare const components: {
2234
3131
  [x: string]: unknown;
2235
3132
  };
2236
3133
  $slots: Readonly<{
2237
- [name: string]: import("@vue/runtime-core").Slot;
3134
+ [name: string]: import("@vue/runtime-core").Slot<any>;
2238
3135
  }>;
2239
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
2240
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
3136
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
3137
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
2241
3138
  $emit: (event: "update:modelValue", newValue: unknown) => void;
2242
3139
  $el: any;
2243
3140
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -2252,7 +3149,7 @@ export declare const components: {
2252
3149
  "onUpdate:modelValue"?: (newValue: unknown) => any;
2253
3150
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
2254
3151
  'update:modelValue': (newValue: unknown) => true;
2255
- }, string, {}, {}, string> & {
3152
+ }, string, {}, {}, string, {}> & {
2256
3153
  beforeCreate?: (() => void) | (() => void)[];
2257
3154
  created?: (() => void) | (() => void)[];
2258
3155
  beforeMount?: (() => void) | (() => void)[];
@@ -2267,7 +3164,7 @@ export declare const components: {
2267
3164
  unmounted?: (() => void) | (() => void)[];
2268
3165
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
2269
3166
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
2270
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
3167
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
2271
3168
  };
2272
3169
  $forceUpdate: () => void;
2273
3170
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -2298,27 +3195,64 @@ export declare const components: {
2298
3195
  "onUpdate:modelValue"?: (newValue: unknown) => any;
2299
3196
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
2300
3197
  'update:modelValue': (newValue: unknown) => true;
2301
- }, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
3198
+ }, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
2302
3199
  $slots: {
2303
- actions: (_: {}) => any;
3200
+ actions?(_: {}): any;
2304
3201
  };
2305
3202
  });
2306
3203
  HstColorShades: {
2307
3204
  new (...args: any[]): {
2308
3205
  $: import("@vue/runtime-core").ComponentInternalInstance;
2309
3206
  $data: {};
2310
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2311
- shades: {
2312
- type: import("@vue/runtime-core").PropType<Record<string, any>>;
2313
- required: true;
2314
- };
2315
- getName: {
2316
- type: import("@vue/runtime-core").PropType<(key: string, color: string) => string>;
2317
- };
2318
- search: {
2319
- type: import("@vue/runtime-core").PropType<string>;
2320
- };
2321
- }>> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
3207
+ $props: {
3208
+ key?: string | number | symbol;
3209
+ ref?: import("@vue/runtime-core").VNodeRef;
3210
+ ref_for?: boolean;
3211
+ ref_key?: string;
3212
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3213
+ [key: string]: any;
3214
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3215
+ [key: string]: any;
3216
+ }>) => void)[];
3217
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3218
+ [key: string]: any;
3219
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3220
+ [key: string]: any;
3221
+ }>) => void)[];
3222
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3223
+ [key: string]: any;
3224
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3225
+ [key: string]: any;
3226
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3227
+ [key: string]: any;
3228
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3229
+ [key: string]: any;
3230
+ }>) => void)[];
3231
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3232
+ [key: string]: any;
3233
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3234
+ [key: string]: any;
3235
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3236
+ [key: string]: any;
3237
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3238
+ [key: string]: any;
3239
+ }>) => void)[];
3240
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3241
+ [key: string]: any;
3242
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3243
+ [key: string]: any;
3244
+ }>) => void)[];
3245
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3246
+ [key: string]: any;
3247
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3248
+ [key: string]: any;
3249
+ }>) => void)[];
3250
+ class?: unknown;
3251
+ style?: unknown;
3252
+ readonly search?: string;
3253
+ readonly shades: unknown;
3254
+ readonly getName?: (key: string, color: string) => string;
3255
+ };
2322
3256
  $attrs: {
2323
3257
  [x: string]: unknown;
2324
3258
  };
@@ -2326,10 +3260,10 @@ export declare const components: {
2326
3260
  [x: string]: unknown;
2327
3261
  };
2328
3262
  $slots: Readonly<{
2329
- [name: string]: import("@vue/runtime-core").Slot;
3263
+ [name: string]: import("@vue/runtime-core").Slot<any>;
2330
3264
  }>;
2331
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
2332
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
3265
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
3266
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
2333
3267
  $emit: (event: string, ...args: any[]) => void;
2334
3268
  $el: any;
2335
3269
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -2343,7 +3277,7 @@ export declare const components: {
2343
3277
  search: {
2344
3278
  type: import("@vue/runtime-core").PropType<string>;
2345
3279
  };
2346
- }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string> & {
3280
+ }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
2347
3281
  beforeCreate?: (() => void) | (() => void)[];
2348
3282
  created?: (() => void) | (() => void)[];
2349
3283
  beforeMount?: (() => void) | (() => void)[];
@@ -2358,7 +3292,7 @@ export declare const components: {
2358
3292
  unmounted?: (() => void) | (() => void)[];
2359
3293
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
2360
3294
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
2361
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
3295
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
2362
3296
  };
2363
3297
  $forceUpdate: () => void;
2364
3298
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -2389,26 +3323,65 @@ export declare const components: {
2389
3323
  search: {
2390
3324
  type: import("@vue/runtime-core").PropType<string>;
2391
3325
  };
2392
- }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
3326
+ }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
2393
3327
  $slots: {
2394
- default: (_: {
3328
+ default?(_: {
2395
3329
  color: string;
2396
- }) => any;
3330
+ }): any;
2397
3331
  };
2398
3332
  });
2399
3333
  HstTokenList: {
2400
3334
  new (...args: any[]): {
2401
3335
  $: import("@vue/runtime-core").ComponentInternalInstance;
2402
3336
  $data: {};
2403
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2404
- tokens: {
2405
- type: import("@vue/runtime-core").PropType<Record<string, string | number | any[] | Record<string, any>>>;
2406
- required: true;
2407
- };
2408
- getName: {
2409
- type: import("@vue/runtime-core").PropType<(key: string, value: string | number | any[] | Record<string, any>) => string>;
2410
- };
2411
- }>> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
3337
+ $props: {
3338
+ key?: string | number | symbol;
3339
+ ref?: import("@vue/runtime-core").VNodeRef;
3340
+ ref_for?: boolean;
3341
+ ref_key?: string;
3342
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3343
+ [key: string]: any;
3344
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3345
+ [key: string]: any;
3346
+ }>) => void)[];
3347
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3348
+ [key: string]: any;
3349
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3350
+ [key: string]: any;
3351
+ }>) => void)[];
3352
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3353
+ [key: string]: any;
3354
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3355
+ [key: string]: any;
3356
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3357
+ [key: string]: any;
3358
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3359
+ [key: string]: any;
3360
+ }>) => void)[];
3361
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3362
+ [key: string]: any;
3363
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3364
+ [key: string]: any;
3365
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3366
+ [key: string]: any;
3367
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3368
+ [key: string]: any;
3369
+ }>) => void)[];
3370
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3371
+ [key: string]: any;
3372
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3373
+ [key: string]: any;
3374
+ }>) => void)[];
3375
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3376
+ [key: string]: any;
3377
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3378
+ [key: string]: any;
3379
+ }>) => void)[];
3380
+ class?: unknown;
3381
+ style?: unknown;
3382
+ readonly getName?: (key: string, value: string | number | any[] | Record<string, any>) => string;
3383
+ readonly tokens: Record<string, string | number | any[] | Record<string, any>>;
3384
+ };
2412
3385
  $attrs: {
2413
3386
  [x: string]: unknown;
2414
3387
  };
@@ -2416,10 +3389,10 @@ export declare const components: {
2416
3389
  [x: string]: unknown;
2417
3390
  };
2418
3391
  $slots: Readonly<{
2419
- [name: string]: import("@vue/runtime-core").Slot;
3392
+ [name: string]: import("@vue/runtime-core").Slot<any>;
2420
3393
  }>;
2421
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
2422
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
3394
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
3395
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
2423
3396
  $emit: (event: string, ...args: any[]) => void;
2424
3397
  $el: any;
2425
3398
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -2430,7 +3403,7 @@ export declare const components: {
2430
3403
  getName: {
2431
3404
  type: import("@vue/runtime-core").PropType<(key: string, value: string | number | any[] | Record<string, any>) => string>;
2432
3405
  };
2433
- }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string> & {
3406
+ }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
2434
3407
  beforeCreate?: (() => void) | (() => void)[];
2435
3408
  created?: (() => void) | (() => void)[];
2436
3409
  beforeMount?: (() => void) | (() => void)[];
@@ -2445,7 +3418,7 @@ export declare const components: {
2445
3418
  unmounted?: (() => void) | (() => void)[];
2446
3419
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
2447
3420
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
2448
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
3421
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
2449
3422
  };
2450
3423
  $forceUpdate: () => void;
2451
3424
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -2470,40 +3443,70 @@ export declare const components: {
2470
3443
  getName: {
2471
3444
  type: import("@vue/runtime-core").PropType<(key: string, value: string | number | any[] | Record<string, any>) => string>;
2472
3445
  };
2473
- }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
3446
+ }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
2474
3447
  $slots: {
2475
- default: (_: {
3448
+ default?(_: {
2476
3449
  token: {
2477
3450
  key: string;
2478
3451
  name: string;
2479
3452
  value: string | Record<string, any>;
2480
3453
  };
2481
- }) => any;
3454
+ }): any;
2482
3455
  };
2483
3456
  });
2484
3457
  HstTokenGrid: {
2485
3458
  new (...args: any[]): {
2486
3459
  $: import("@vue/runtime-core").ComponentInternalInstance;
2487
3460
  $data: {};
2488
- $props: Partial<{
2489
- getName: (key: string, value: string | number | any[] | Record<string, any>) => string;
2490
- colSize: number;
2491
- }> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2492
- getName: {
2493
- type: import("@vue/runtime-core").PropType<(key: string, value: string | number | any[] | Record<string, any>) => string>;
2494
- } & {
2495
- default: any;
2496
- };
2497
- colSize: {
2498
- type: import("@vue/runtime-core").PropType<number>;
2499
- } & {
2500
- default: number;
2501
- };
2502
- tokens: {
2503
- type: import("@vue/runtime-core").PropType<Record<string, string | number | any[] | Record<string, any>>>;
2504
- required: true;
2505
- };
2506
- }>> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, "getName" | "colSize">;
3461
+ $props: {
3462
+ getName?: (key: string, value: string | number | any[] | Record<string, any>) => string;
3463
+ colSize?: number;
3464
+ key?: string | number | symbol;
3465
+ ref?: import("@vue/runtime-core").VNodeRef;
3466
+ ref_for?: boolean;
3467
+ ref_key?: string;
3468
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3469
+ [key: string]: any;
3470
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3471
+ [key: string]: any;
3472
+ }>) => void)[];
3473
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3474
+ [key: string]: any;
3475
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3476
+ [key: string]: any;
3477
+ }>) => void)[];
3478
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3479
+ [key: string]: any;
3480
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3481
+ [key: string]: any;
3482
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3483
+ [key: string]: any;
3484
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3485
+ [key: string]: any;
3486
+ }>) => void)[];
3487
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3488
+ [key: string]: any;
3489
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3490
+ [key: string]: any;
3491
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3492
+ [key: string]: any;
3493
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3494
+ [key: string]: any;
3495
+ }>) => void)[];
3496
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3497
+ [key: string]: any;
3498
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3499
+ [key: string]: any;
3500
+ }>) => void)[];
3501
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3502
+ [key: string]: any;
3503
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3504
+ [key: string]: any;
3505
+ }>) => void)[];
3506
+ class?: unknown;
3507
+ style?: unknown;
3508
+ readonly tokens: Record<string, string | number | any[] | Record<string, any>>;
3509
+ };
2507
3510
  $attrs: {
2508
3511
  [x: string]: unknown;
2509
3512
  };
@@ -2511,21 +3514,19 @@ export declare const components: {
2511
3514
  [x: string]: unknown;
2512
3515
  };
2513
3516
  $slots: Readonly<{
2514
- [name: string]: import("@vue/runtime-core").Slot;
3517
+ [name: string]: import("@vue/runtime-core").Slot<any>;
2515
3518
  }>;
2516
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
2517
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
3519
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
3520
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
2518
3521
  $emit: (event: string, ...args: any[]) => void;
2519
3522
  $el: any;
2520
3523
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2521
3524
  getName: {
2522
3525
  type: import("@vue/runtime-core").PropType<(key: string, value: string | number | any[] | Record<string, any>) => string>;
2523
- } & {
2524
3526
  default: any;
2525
3527
  };
2526
3528
  colSize: {
2527
3529
  type: import("@vue/runtime-core").PropType<number>;
2528
- } & {
2529
3530
  default: number;
2530
3531
  };
2531
3532
  tokens: {
@@ -2535,7 +3536,7 @@ export declare const components: {
2535
3536
  }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {
2536
3537
  getName: (key: string, value: string | number | any[] | Record<string, any>) => string;
2537
3538
  colSize: number;
2538
- }, {}, string> & {
3539
+ }, {}, string, {}> & {
2539
3540
  beforeCreate?: (() => void) | (() => void)[];
2540
3541
  created?: (() => void) | (() => void)[];
2541
3542
  beforeMount?: (() => void) | (() => void)[];
@@ -2550,7 +3551,7 @@ export declare const components: {
2550
3551
  unmounted?: (() => void) | (() => void)[];
2551
3552
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
2552
3553
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
2553
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
3554
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
2554
3555
  };
2555
3556
  $forceUpdate: () => void;
2556
3557
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -2558,12 +3559,10 @@ export declare const components: {
2558
3559
  } & Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2559
3560
  getName: {
2560
3561
  type: import("@vue/runtime-core").PropType<(key: string, value: string | number | any[] | Record<string, any>) => string>;
2561
- } & {
2562
3562
  default: any;
2563
3563
  };
2564
3564
  colSize: {
2565
3565
  type: import("@vue/runtime-core").PropType<number>;
2566
- } & {
2567
3566
  default: number;
2568
3567
  };
2569
3568
  tokens: {
@@ -2577,12 +3576,10 @@ export declare const components: {
2577
3576
  } & import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2578
3577
  getName: {
2579
3578
  type: import("@vue/runtime-core").PropType<(key: string, value: string | number | any[] | Record<string, any>) => string>;
2580
- } & {
2581
3579
  default: any;
2582
3580
  };
2583
3581
  colSize: {
2584
3582
  type: import("@vue/runtime-core").PropType<number>;
2585
- } & {
2586
3583
  default: number;
2587
3584
  };
2588
3585
  tokens: {
@@ -2592,15 +3589,15 @@ export declare const components: {
2592
3589
  }>>, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, {
2593
3590
  getName: (key: string, value: string | number | any[] | Record<string, any>) => string;
2594
3591
  colSize: number;
2595
- }, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
3592
+ }, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
2596
3593
  $slots: {
2597
- default: (_: {
3594
+ default?(_: {
2598
3595
  token: {
2599
3596
  key: string;
2600
3597
  name: string;
2601
3598
  value: string | Record<string, any>;
2602
3599
  };
2603
- }) => any;
3600
+ }): any;
2604
3601
  };
2605
3602
  });
2606
3603
  HstCopyIcon: import("@vue/runtime-core").DefineComponent<{
@@ -2613,21 +3610,60 @@ export declare const components: {
2613
3610
  type: import("@vue/runtime-core").PropType<string | (() => import("@histoire/shared").Awaitable<string>)>;
2614
3611
  required: true;
2615
3612
  };
2616
- }>>, {}>;
3613
+ }>>, {}, {}>;
2617
3614
  HstColorSelect: {
2618
3615
  new (...args: any[]): {
2619
3616
  $: import("@vue/runtime-core").ComponentInternalInstance;
2620
3617
  $data: {};
2621
- $props: Partial<{}> & Omit<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
2622
- title: {
2623
- type: import("@vue/runtime-core").PropType<string>;
2624
- };
2625
- modelValue: {
2626
- type: import("@vue/runtime-core").PropType<string>;
2627
- };
2628
- }>> & {
3618
+ $props: {
3619
+ key?: string | number | symbol;
3620
+ ref?: import("@vue/runtime-core").VNodeRef;
3621
+ ref_for?: boolean;
3622
+ ref_key?: string;
3623
+ onVnodeBeforeMount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3624
+ [key: string]: any;
3625
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3626
+ [key: string]: any;
3627
+ }>) => void)[];
3628
+ onVnodeMounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3629
+ [key: string]: any;
3630
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3631
+ [key: string]: any;
3632
+ }>) => void)[];
3633
+ onVnodeBeforeUpdate?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3634
+ [key: string]: any;
3635
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3636
+ [key: string]: any;
3637
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3638
+ [key: string]: any;
3639
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3640
+ [key: string]: any;
3641
+ }>) => void)[];
3642
+ onVnodeUpdated?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3643
+ [key: string]: any;
3644
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3645
+ [key: string]: any;
3646
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3647
+ [key: string]: any;
3648
+ }>, oldVNode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3649
+ [key: string]: any;
3650
+ }>) => void)[];
3651
+ onVnodeBeforeUnmount?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3652
+ [key: string]: any;
3653
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3654
+ [key: string]: any;
3655
+ }>) => void)[];
3656
+ onVnodeUnmounted?: ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3657
+ [key: string]: any;
3658
+ }>) => void) | ((vnode: import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
3659
+ [key: string]: any;
3660
+ }>) => void)[];
3661
+ class?: unknown;
3662
+ style?: unknown;
3663
+ readonly title?: string;
3664
+ readonly modelValue?: string;
2629
3665
  "onUpdate:modelValue"?: (newValue: string) => any;
2630
- } & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, never>;
3666
+ };
2631
3667
  $attrs: {
2632
3668
  [x: string]: unknown;
2633
3669
  };
@@ -2635,10 +3671,10 @@ export declare const components: {
2635
3671
  [x: string]: unknown;
2636
3672
  };
2637
3673
  $slots: Readonly<{
2638
- [name: string]: import("@vue/runtime-core").Slot;
3674
+ [name: string]: import("@vue/runtime-core").Slot<any>;
2639
3675
  }>;
2640
- $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
2641
- $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
3676
+ $root: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
3677
+ $parent: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
2642
3678
  $emit: (event: "update:modelValue", newValue: string) => void;
2643
3679
  $el: any;
2644
3680
  $options: import("@vue/runtime-core").ComponentOptionsBase<Readonly<import("@vue/runtime-core").ExtractPropTypes<{
@@ -2652,7 +3688,7 @@ export declare const components: {
2652
3688
  "onUpdate:modelValue"?: (newValue: string) => any;
2653
3689
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
2654
3690
  'update:modelValue': (newValue: string) => true;
2655
- }, string, {}, {}, string> & {
3691
+ }, string, {}, {}, string, {}> & {
2656
3692
  beforeCreate?: (() => void) | (() => void)[];
2657
3693
  created?: (() => void) | (() => void)[];
2658
3694
  beforeMount?: (() => void) | (() => void)[];
@@ -2667,7 +3703,7 @@ export declare const components: {
2667
3703
  unmounted?: (() => void) | (() => void)[];
2668
3704
  renderTracked?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
2669
3705
  renderTriggered?: ((e: import("@vue/reactivity").DebuggerEvent) => void) | ((e: import("@vue/reactivity").DebuggerEvent) => void)[];
2670
- errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
3706
+ errorCaptured?: ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("@vue/runtime-core").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("@vue/runtime-core").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
2671
3707
  };
2672
3708
  $forceUpdate: () => void;
2673
3709
  $nextTick: typeof import("@vue/runtime-core").nextTick;
@@ -2696,9 +3732,9 @@ export declare const components: {
2696
3732
  "onUpdate:modelValue"?: (newValue: string) => any;
2697
3733
  }, {}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
2698
3734
  'update:modelValue': (newValue: string) => true;
2699
- }, string, {}, {}, string> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
3735
+ }, string, {}, {}, string, {}> & import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps & (new () => {
2700
3736
  $slots: {
2701
- actions: (_: {}) => any;
3737
+ actions?(_: {}): any;
2702
3738
  };
2703
3739
  });
2704
3740
  };