@histoire/controls 1.0.0-alpha.2 → 1.0.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/checkbox/HstCheckbox.vue.d.ts +2 -2
- package/dist/components/colorselect/HstColorSelect.vue.d.ts +2 -2
- package/dist/components/number/HstNumber.vue.d.ts +2 -2
- package/dist/components/radio/HstRadio.vue.d.ts +2 -2
- package/dist/components/slider/HstSlider.vue.d.ts +2 -2
- package/dist/components/text/HstText.vue.d.ts +2 -2
- package/dist/components/textarea/HstTextarea.vue.d.ts +2 -2
- package/dist/index.d.ts +40 -40
- package/dist/index.es.css +1 -1
- package/dist/index.es.js +982 -988
- package/package.json +4 -4
- package/src/components/HstWrapper.vue +0 -1
- package/src/components/checkbox/HstCheckbox.vue +1 -1
- package/src/components/colorselect/HstColorSelect.vue +1 -1
- package/src/components/design-tokens/HstTokenGrid.vue +1 -1
- package/src/components/number/HstNumber.vue +1 -1
- package/src/components/radio/HstRadio.vue +1 -1
- package/src/components/slider/HstSlider.vue +1 -1
- package/src/components/text/HstText.vue +1 -1
- package/src/components/textarea/HstTextarea.vue +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
2
|
-
modelValue?: boolean | "true" | "false";
|
|
2
|
+
modelValue?: (boolean | "true" | "false") | null;
|
|
3
3
|
title?: string;
|
|
4
4
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
5
|
"update:modelValue": (newValue: boolean | "true" | "false") => void;
|
|
6
6
|
}, string, import("vue").PublicProps, Readonly<{
|
|
7
|
-
modelValue?: boolean | "true" | "false";
|
|
7
|
+
modelValue?: (boolean | "true" | "false") | null;
|
|
8
8
|
title?: string;
|
|
9
9
|
}> & Readonly<{
|
|
10
10
|
"onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
2
2
|
title?: string;
|
|
3
|
-
modelValue?: string;
|
|
3
|
+
modelValue?: string | null;
|
|
4
4
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
5
|
"update:modelValue": (newValue: string) => void;
|
|
6
6
|
}, string, import("vue").PublicProps, Readonly<{
|
|
7
7
|
title?: string;
|
|
8
|
-
modelValue?: string;
|
|
8
|
+
modelValue?: string | null;
|
|
9
9
|
}> & Readonly<{
|
|
10
10
|
"onUpdate:modelValue"?: (newValue: string) => any;
|
|
11
11
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
2
2
|
title?: string;
|
|
3
|
-
modelValue?: number;
|
|
3
|
+
modelValue?: number | null;
|
|
4
4
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
5
|
"update:modelValue": (newValue: number) => void;
|
|
6
6
|
}, string, import("vue").PublicProps, Readonly<{
|
|
7
7
|
title?: string;
|
|
8
|
-
modelValue?: number;
|
|
8
|
+
modelValue?: number | null;
|
|
9
9
|
}> & Readonly<{
|
|
10
10
|
"onUpdate:modelValue"?: (newValue: number) => any;
|
|
11
11
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import type { HstControlOption } from '../../types';
|
|
2
2
|
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
3
3
|
title?: string;
|
|
4
|
-
modelValue?: string;
|
|
4
|
+
modelValue?: string | null;
|
|
5
5
|
options: HstControlOption[];
|
|
6
6
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
7
7
|
"update:modelValue": (value: string) => any;
|
|
8
8
|
}, string, import("vue").PublicProps, Readonly<{
|
|
9
9
|
title?: string;
|
|
10
|
-
modelValue?: string;
|
|
10
|
+
modelValue?: string | null;
|
|
11
11
|
options: HstControlOption[];
|
|
12
12
|
}> & Readonly<{
|
|
13
13
|
"onUpdate:modelValue"?: (value: string) => any;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{
|
|
2
2
|
title?: string;
|
|
3
|
-
modelValue?: number;
|
|
3
|
+
modelValue?: number | null;
|
|
4
4
|
min: number;
|
|
5
5
|
max: number;
|
|
6
6
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
7
|
"update:modelValue": (newValue: number) => void;
|
|
8
8
|
}, string, import("vue").PublicProps, Readonly<{
|
|
9
9
|
title?: string;
|
|
10
|
-
modelValue?: number;
|
|
10
|
+
modelValue?: number | null;
|
|
11
11
|
min: number;
|
|
12
12
|
max: number;
|
|
13
13
|
}> & Readonly<{
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
2
2
|
title?: string;
|
|
3
|
-
modelValue?: string;
|
|
3
|
+
modelValue?: string | null;
|
|
4
4
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
5
|
"update:modelValue": (newValue: string) => void;
|
|
6
6
|
}, string, import("vue").PublicProps, Readonly<{
|
|
7
7
|
title?: string;
|
|
8
|
-
modelValue?: string;
|
|
8
|
+
modelValue?: string | null;
|
|
9
9
|
}> & Readonly<{
|
|
10
10
|
"onUpdate:modelValue"?: (newValue: string) => any;
|
|
11
11
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
2
2
|
title?: string;
|
|
3
|
-
modelValue?: string;
|
|
3
|
+
modelValue?: string | null;
|
|
4
4
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
5
|
"update:modelValue": (newValue: string) => void;
|
|
6
6
|
}, string, import("vue").PublicProps, Readonly<{
|
|
7
7
|
title?: string;
|
|
8
|
-
modelValue?: string;
|
|
8
|
+
modelValue?: string | null;
|
|
9
9
|
}> & Readonly<{
|
|
10
10
|
"onUpdate:modelValue"?: (newValue: string) => any;
|
|
11
11
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
|
package/dist/index.d.ts
CHANGED
|
@@ -62,7 +62,7 @@ export declare const HstButtonGroup: {
|
|
|
62
62
|
});
|
|
63
63
|
export declare const HstCheckbox: {
|
|
64
64
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
65
|
-
modelValue?: boolean | "true" | "false";
|
|
65
|
+
modelValue?: (boolean | "true" | "false") | null;
|
|
66
66
|
title?: string;
|
|
67
67
|
}> & Readonly<{
|
|
68
68
|
"onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
|
|
@@ -76,7 +76,7 @@ export declare const HstCheckbox: {
|
|
|
76
76
|
M: {};
|
|
77
77
|
Defaults: {};
|
|
78
78
|
}, Readonly<{
|
|
79
|
-
modelValue?: boolean | "true" | "false";
|
|
79
|
+
modelValue?: (boolean | "true" | "false") | null;
|
|
80
80
|
title?: string;
|
|
81
81
|
}> & Readonly<{
|
|
82
82
|
"onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
|
|
@@ -85,7 +85,7 @@ export declare const HstCheckbox: {
|
|
|
85
85
|
__isTeleport?: never;
|
|
86
86
|
__isSuspense?: never;
|
|
87
87
|
} & import("vue").ComponentOptionsBase<Readonly<{
|
|
88
|
-
modelValue?: boolean | "true" | "false";
|
|
88
|
+
modelValue?: (boolean | "true" | "false") | null;
|
|
89
89
|
title?: string;
|
|
90
90
|
}> & Readonly<{
|
|
91
91
|
"onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
|
|
@@ -138,7 +138,7 @@ export declare const HstCheckboxList: {
|
|
|
138
138
|
export declare const HstText: {
|
|
139
139
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
140
140
|
title?: string;
|
|
141
|
-
modelValue?: string;
|
|
141
|
+
modelValue?: string | null;
|
|
142
142
|
}> & Readonly<{
|
|
143
143
|
"onUpdate:modelValue"?: (newValue: string) => any;
|
|
144
144
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -154,7 +154,7 @@ export declare const HstText: {
|
|
|
154
154
|
Defaults: {};
|
|
155
155
|
}, Readonly<{
|
|
156
156
|
title?: string;
|
|
157
|
-
modelValue?: string;
|
|
157
|
+
modelValue?: string | null;
|
|
158
158
|
}> & Readonly<{
|
|
159
159
|
"onUpdate:modelValue"?: (newValue: string) => any;
|
|
160
160
|
}>, {}, {}, {}, {}, {}>;
|
|
@@ -163,7 +163,7 @@ export declare const HstText: {
|
|
|
163
163
|
__isSuspense?: never;
|
|
164
164
|
} & import("vue").ComponentOptionsBase<Readonly<{
|
|
165
165
|
title?: string;
|
|
166
|
-
modelValue?: string;
|
|
166
|
+
modelValue?: string | null;
|
|
167
167
|
}> & Readonly<{
|
|
168
168
|
"onUpdate:modelValue"?: (newValue: string) => any;
|
|
169
169
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -176,7 +176,7 @@ export declare const HstText: {
|
|
|
176
176
|
export declare const HstNumber: {
|
|
177
177
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
178
178
|
title?: string;
|
|
179
|
-
modelValue?: number;
|
|
179
|
+
modelValue?: number | null;
|
|
180
180
|
}> & Readonly<{
|
|
181
181
|
"onUpdate:modelValue"?: (newValue: number) => any;
|
|
182
182
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -192,7 +192,7 @@ export declare const HstNumber: {
|
|
|
192
192
|
Defaults: {};
|
|
193
193
|
}, Readonly<{
|
|
194
194
|
title?: string;
|
|
195
|
-
modelValue?: number;
|
|
195
|
+
modelValue?: number | null;
|
|
196
196
|
}> & Readonly<{
|
|
197
197
|
"onUpdate:modelValue"?: (newValue: number) => any;
|
|
198
198
|
}>, {}, {}, {}, {}, {}>;
|
|
@@ -201,7 +201,7 @@ export declare const HstNumber: {
|
|
|
201
201
|
__isSuspense?: never;
|
|
202
202
|
} & import("vue").ComponentOptionsBase<Readonly<{
|
|
203
203
|
title?: string;
|
|
204
|
-
modelValue?: number;
|
|
204
|
+
modelValue?: number | null;
|
|
205
205
|
}> & Readonly<{
|
|
206
206
|
"onUpdate:modelValue"?: (newValue: number) => any;
|
|
207
207
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -213,14 +213,14 @@ export declare const HstNumber: {
|
|
|
213
213
|
});
|
|
214
214
|
export declare const HstSlider: import("vue").DefineComponent<{
|
|
215
215
|
title?: string;
|
|
216
|
-
modelValue?: number;
|
|
216
|
+
modelValue?: number | null;
|
|
217
217
|
min: number;
|
|
218
218
|
max: number;
|
|
219
219
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
220
220
|
"update:modelValue": (newValue: number) => void;
|
|
221
221
|
}, string, import("vue").PublicProps, Readonly<{
|
|
222
222
|
title?: string;
|
|
223
|
-
modelValue?: number;
|
|
223
|
+
modelValue?: number | null;
|
|
224
224
|
min: number;
|
|
225
225
|
max: number;
|
|
226
226
|
}> & Readonly<{
|
|
@@ -231,7 +231,7 @@ export declare const HstSlider: import("vue").DefineComponent<{
|
|
|
231
231
|
export declare const HstTextarea: {
|
|
232
232
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
233
233
|
title?: string;
|
|
234
|
-
modelValue?: string;
|
|
234
|
+
modelValue?: string | null;
|
|
235
235
|
}> & Readonly<{
|
|
236
236
|
"onUpdate:modelValue"?: (newValue: string) => any;
|
|
237
237
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -247,7 +247,7 @@ export declare const HstTextarea: {
|
|
|
247
247
|
Defaults: {};
|
|
248
248
|
}, Readonly<{
|
|
249
249
|
title?: string;
|
|
250
|
-
modelValue?: string;
|
|
250
|
+
modelValue?: string | null;
|
|
251
251
|
}> & Readonly<{
|
|
252
252
|
"onUpdate:modelValue"?: (newValue: string) => any;
|
|
253
253
|
}>, {}, {}, {}, {}, {}>;
|
|
@@ -256,7 +256,7 @@ export declare const HstTextarea: {
|
|
|
256
256
|
__isSuspense?: never;
|
|
257
257
|
} & import("vue").ComponentOptionsBase<Readonly<{
|
|
258
258
|
title?: string;
|
|
259
|
-
modelValue?: string;
|
|
259
|
+
modelValue?: string | null;
|
|
260
260
|
}> & Readonly<{
|
|
261
261
|
"onUpdate:modelValue"?: (newValue: string) => any;
|
|
262
262
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -420,7 +420,7 @@ export declare const HstCopyIcon: import("vue").DefineComponent<{
|
|
|
420
420
|
export declare const HstRadio: {
|
|
421
421
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
422
422
|
title?: string;
|
|
423
|
-
modelValue?: string;
|
|
423
|
+
modelValue?: string | null;
|
|
424
424
|
options: import("./types").HstControlOption[];
|
|
425
425
|
}> & Readonly<{
|
|
426
426
|
"onUpdate:modelValue"?: (value: string) => any;
|
|
@@ -435,7 +435,7 @@ export declare const HstRadio: {
|
|
|
435
435
|
Defaults: {};
|
|
436
436
|
}, Readonly<{
|
|
437
437
|
title?: string;
|
|
438
|
-
modelValue?: string;
|
|
438
|
+
modelValue?: string | null;
|
|
439
439
|
options: import("./types").HstControlOption[];
|
|
440
440
|
}> & Readonly<{
|
|
441
441
|
"onUpdate:modelValue"?: (value: string) => any;
|
|
@@ -445,7 +445,7 @@ export declare const HstRadio: {
|
|
|
445
445
|
__isSuspense?: never;
|
|
446
446
|
} & import("vue").ComponentOptionsBase<Readonly<{
|
|
447
447
|
title?: string;
|
|
448
|
-
modelValue?: string;
|
|
448
|
+
modelValue?: string | null;
|
|
449
449
|
options: import("./types").HstControlOption[];
|
|
450
450
|
}> & Readonly<{
|
|
451
451
|
"onUpdate:modelValue"?: (value: string) => any;
|
|
@@ -497,7 +497,7 @@ export declare const HstJson: {
|
|
|
497
497
|
export declare const HstColorSelect: {
|
|
498
498
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
499
499
|
title?: string;
|
|
500
|
-
modelValue?: string;
|
|
500
|
+
modelValue?: string | null;
|
|
501
501
|
}> & Readonly<{
|
|
502
502
|
"onUpdate:modelValue"?: (newValue: string) => any;
|
|
503
503
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -511,7 +511,7 @@ export declare const HstColorSelect: {
|
|
|
511
511
|
Defaults: {};
|
|
512
512
|
}, Readonly<{
|
|
513
513
|
title?: string;
|
|
514
|
-
modelValue?: string;
|
|
514
|
+
modelValue?: string | null;
|
|
515
515
|
}> & Readonly<{
|
|
516
516
|
"onUpdate:modelValue"?: (newValue: string) => any;
|
|
517
517
|
}>, {}, {}, {}, {}, {}>;
|
|
@@ -520,7 +520,7 @@ export declare const HstColorSelect: {
|
|
|
520
520
|
__isSuspense?: never;
|
|
521
521
|
} & import("vue").ComponentOptionsBase<Readonly<{
|
|
522
522
|
title?: string;
|
|
523
|
-
modelValue?: string;
|
|
523
|
+
modelValue?: string | null;
|
|
524
524
|
}> & Readonly<{
|
|
525
525
|
"onUpdate:modelValue"?: (newValue: string) => any;
|
|
526
526
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -595,7 +595,7 @@ export declare const components: {
|
|
|
595
595
|
});
|
|
596
596
|
HstCheckbox: {
|
|
597
597
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
598
|
-
modelValue?: boolean | "true" | "false";
|
|
598
|
+
modelValue?: (boolean | "true" | "false") | null;
|
|
599
599
|
title?: string;
|
|
600
600
|
}> & Readonly<{
|
|
601
601
|
"onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
|
|
@@ -609,7 +609,7 @@ export declare const components: {
|
|
|
609
609
|
M: {};
|
|
610
610
|
Defaults: {};
|
|
611
611
|
}, Readonly<{
|
|
612
|
-
modelValue?: boolean | "true" | "false";
|
|
612
|
+
modelValue?: (boolean | "true" | "false") | null;
|
|
613
613
|
title?: string;
|
|
614
614
|
}> & Readonly<{
|
|
615
615
|
"onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
|
|
@@ -618,7 +618,7 @@ export declare const components: {
|
|
|
618
618
|
__isTeleport?: never;
|
|
619
619
|
__isSuspense?: never;
|
|
620
620
|
} & import("vue").ComponentOptionsBase<Readonly<{
|
|
621
|
-
modelValue?: boolean | "true" | "false";
|
|
621
|
+
modelValue?: (boolean | "true" | "false") | null;
|
|
622
622
|
title?: string;
|
|
623
623
|
}> & Readonly<{
|
|
624
624
|
"onUpdate:modelValue"?: (newValue: boolean | "true" | "false") => any;
|
|
@@ -671,7 +671,7 @@ export declare const components: {
|
|
|
671
671
|
HstText: {
|
|
672
672
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
673
673
|
title?: string;
|
|
674
|
-
modelValue?: string;
|
|
674
|
+
modelValue?: string | null;
|
|
675
675
|
}> & Readonly<{
|
|
676
676
|
"onUpdate:modelValue"?: (newValue: string) => any;
|
|
677
677
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -687,7 +687,7 @@ export declare const components: {
|
|
|
687
687
|
Defaults: {};
|
|
688
688
|
}, Readonly<{
|
|
689
689
|
title?: string;
|
|
690
|
-
modelValue?: string;
|
|
690
|
+
modelValue?: string | null;
|
|
691
691
|
}> & Readonly<{
|
|
692
692
|
"onUpdate:modelValue"?: (newValue: string) => any;
|
|
693
693
|
}>, {}, {}, {}, {}, {}>;
|
|
@@ -696,7 +696,7 @@ export declare const components: {
|
|
|
696
696
|
__isSuspense?: never;
|
|
697
697
|
} & import("vue").ComponentOptionsBase<Readonly<{
|
|
698
698
|
title?: string;
|
|
699
|
-
modelValue?: string;
|
|
699
|
+
modelValue?: string | null;
|
|
700
700
|
}> & Readonly<{
|
|
701
701
|
"onUpdate:modelValue"?: (newValue: string) => any;
|
|
702
702
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -709,7 +709,7 @@ export declare const components: {
|
|
|
709
709
|
HstNumber: {
|
|
710
710
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
711
711
|
title?: string;
|
|
712
|
-
modelValue?: number;
|
|
712
|
+
modelValue?: number | null;
|
|
713
713
|
}> & Readonly<{
|
|
714
714
|
"onUpdate:modelValue"?: (newValue: number) => any;
|
|
715
715
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -725,7 +725,7 @@ export declare const components: {
|
|
|
725
725
|
Defaults: {};
|
|
726
726
|
}, Readonly<{
|
|
727
727
|
title?: string;
|
|
728
|
-
modelValue?: number;
|
|
728
|
+
modelValue?: number | null;
|
|
729
729
|
}> & Readonly<{
|
|
730
730
|
"onUpdate:modelValue"?: (newValue: number) => any;
|
|
731
731
|
}>, {}, {}, {}, {}, {}>;
|
|
@@ -734,7 +734,7 @@ export declare const components: {
|
|
|
734
734
|
__isSuspense?: never;
|
|
735
735
|
} & import("vue").ComponentOptionsBase<Readonly<{
|
|
736
736
|
title?: string;
|
|
737
|
-
modelValue?: number;
|
|
737
|
+
modelValue?: number | null;
|
|
738
738
|
}> & Readonly<{
|
|
739
739
|
"onUpdate:modelValue"?: (newValue: number) => any;
|
|
740
740
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -746,14 +746,14 @@ export declare const components: {
|
|
|
746
746
|
});
|
|
747
747
|
HstSlider: import("vue").DefineComponent<{
|
|
748
748
|
title?: string;
|
|
749
|
-
modelValue?: number;
|
|
749
|
+
modelValue?: number | null;
|
|
750
750
|
min: number;
|
|
751
751
|
max: number;
|
|
752
752
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
753
753
|
"update:modelValue": (newValue: number) => void;
|
|
754
754
|
}, string, import("vue").PublicProps, Readonly<{
|
|
755
755
|
title?: string;
|
|
756
|
-
modelValue?: number;
|
|
756
|
+
modelValue?: number | null;
|
|
757
757
|
min: number;
|
|
758
758
|
max: number;
|
|
759
759
|
}> & Readonly<{
|
|
@@ -764,7 +764,7 @@ export declare const components: {
|
|
|
764
764
|
HstTextarea: {
|
|
765
765
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
766
766
|
title?: string;
|
|
767
|
-
modelValue?: string;
|
|
767
|
+
modelValue?: string | null;
|
|
768
768
|
}> & Readonly<{
|
|
769
769
|
"onUpdate:modelValue"?: (newValue: string) => any;
|
|
770
770
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -780,7 +780,7 @@ export declare const components: {
|
|
|
780
780
|
Defaults: {};
|
|
781
781
|
}, Readonly<{
|
|
782
782
|
title?: string;
|
|
783
|
-
modelValue?: string;
|
|
783
|
+
modelValue?: string | null;
|
|
784
784
|
}> & Readonly<{
|
|
785
785
|
"onUpdate:modelValue"?: (newValue: string) => any;
|
|
786
786
|
}>, {}, {}, {}, {}, {}>;
|
|
@@ -789,7 +789,7 @@ export declare const components: {
|
|
|
789
789
|
__isSuspense?: never;
|
|
790
790
|
} & import("vue").ComponentOptionsBase<Readonly<{
|
|
791
791
|
title?: string;
|
|
792
|
-
modelValue?: string;
|
|
792
|
+
modelValue?: string | null;
|
|
793
793
|
}> & Readonly<{
|
|
794
794
|
"onUpdate:modelValue"?: (newValue: string) => any;
|
|
795
795
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -841,7 +841,7 @@ export declare const components: {
|
|
|
841
841
|
HstRadio: {
|
|
842
842
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
843
843
|
title?: string;
|
|
844
|
-
modelValue?: string;
|
|
844
|
+
modelValue?: string | null;
|
|
845
845
|
options: import("./types").HstControlOption[];
|
|
846
846
|
}> & Readonly<{
|
|
847
847
|
"onUpdate:modelValue"?: (value: string) => any;
|
|
@@ -856,7 +856,7 @@ export declare const components: {
|
|
|
856
856
|
Defaults: {};
|
|
857
857
|
}, Readonly<{
|
|
858
858
|
title?: string;
|
|
859
|
-
modelValue?: string;
|
|
859
|
+
modelValue?: string | null;
|
|
860
860
|
options: import("./types").HstControlOption[];
|
|
861
861
|
}> & Readonly<{
|
|
862
862
|
"onUpdate:modelValue"?: (value: string) => any;
|
|
@@ -866,7 +866,7 @@ export declare const components: {
|
|
|
866
866
|
__isSuspense?: never;
|
|
867
867
|
} & import("vue").ComponentOptionsBase<Readonly<{
|
|
868
868
|
title?: string;
|
|
869
|
-
modelValue?: string;
|
|
869
|
+
modelValue?: string | null;
|
|
870
870
|
options: import("./types").HstControlOption[];
|
|
871
871
|
}> & Readonly<{
|
|
872
872
|
"onUpdate:modelValue"?: (value: string) => any;
|
|
@@ -1030,7 +1030,7 @@ export declare const components: {
|
|
|
1030
1030
|
HstColorSelect: {
|
|
1031
1031
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1032
1032
|
title?: string;
|
|
1033
|
-
modelValue?: string;
|
|
1033
|
+
modelValue?: string | null;
|
|
1034
1034
|
}> & Readonly<{
|
|
1035
1035
|
"onUpdate:modelValue"?: (newValue: string) => any;
|
|
1036
1036
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -1044,7 +1044,7 @@ export declare const components: {
|
|
|
1044
1044
|
Defaults: {};
|
|
1045
1045
|
}, Readonly<{
|
|
1046
1046
|
title?: string;
|
|
1047
|
-
modelValue?: string;
|
|
1047
|
+
modelValue?: string | null;
|
|
1048
1048
|
}> & Readonly<{
|
|
1049
1049
|
"onUpdate:modelValue"?: (newValue: string) => any;
|
|
1050
1050
|
}>, {}, {}, {}, {}, {}>;
|
|
@@ -1053,7 +1053,7 @@ export declare const components: {
|
|
|
1053
1053
|
__isSuspense?: never;
|
|
1054
1054
|
} & import("vue").ComponentOptionsBase<Readonly<{
|
|
1055
1055
|
title?: string;
|
|
1056
|
-
modelValue?: string;
|
|
1056
|
+
modelValue?: string | null;
|
|
1057
1057
|
}> & Readonly<{
|
|
1058
1058
|
"onUpdate:modelValue"?: (newValue: string) => any;
|
|
1059
1059
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
package/dist/index.es.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.htw-bind-col-size{grid-template-columns:repeat(auto-fill,minmax(var(--histoire-col-size),1fr))}.__histoire-json-code[data-v-d4369e5a] .cm-editor{height:100%;min-width:280px}.v-popper{line-height:0}.htw-dark .v-popper--theme-dropdown .v-popper__inner{--tw-border-opacity: 1;border-color:rgb(31 31 33 / var(--tw-border-opacity, 1));--tw-bg-opacity: 1;background-color:rgb(63 63 70 / var(--tw-bg-opacity, 1));--tw-text-opacity: 1;color:rgb(244 244 245 / var(--tw-text-opacity, 1))}.htw-dark .v-popper--theme-dropdown .v-popper__arrow-inner{--tw-border-opacity: 1;border-color:rgb(63 63 70 / var(--tw-border-opacity, 1))}.htw-dark .v-popper--theme-dropdown .v-popper__arrow-outer{--tw-border-opacity: 1;border-color:rgb(31 31 33 / var(--tw-border-opacity, 1))}.v-popper--theme-dropdown.v-popper__popper--show-from .v-popper__wrapper{transform:scale(.75)}.v-popper--theme-dropdown.v-popper__popper--show-to .v-popper__wrapper{transform:none;transition:transform .15s cubic-bezier(0,1,.5,1)}.v-popper__popper:focus-visible{outline:none}.htw-range-input::-webkit-slider-thumb{height:.75rem;width:.75rem;-webkit-appearance:none
|
|
1
|
+
.htw-bind-col-size{grid-template-columns:repeat(auto-fill,minmax(var(--histoire-col-size),1fr))}.__histoire-json-code[data-v-d4369e5a] .cm-editor{height:100%;min-width:280px}.v-popper{line-height:0}.htw-dark .v-popper--theme-dropdown .v-popper__inner{--tw-border-opacity: 1;border-color:rgb(31 31 33 / var(--tw-border-opacity, 1));--tw-bg-opacity: 1;background-color:rgb(63 63 70 / var(--tw-bg-opacity, 1));--tw-text-opacity: 1;color:rgb(244 244 245 / var(--tw-text-opacity, 1))}.htw-dark .v-popper--theme-dropdown .v-popper__arrow-inner{--tw-border-opacity: 1;border-color:rgb(63 63 70 / var(--tw-border-opacity, 1))}.htw-dark .v-popper--theme-dropdown .v-popper__arrow-outer{--tw-border-opacity: 1;border-color:rgb(31 31 33 / var(--tw-border-opacity, 1))}.v-popper--theme-dropdown.v-popper__popper--show-from .v-popper__wrapper{transform:scale(.75)}.v-popper--theme-dropdown.v-popper__popper--show-to .v-popper__wrapper{transform:none;transition:transform .15s cubic-bezier(0,1,.5,1)}.v-popper__popper:focus-visible{outline:none}.htw-range-input::-webkit-slider-thumb{height:.75rem;width:.75rem;-webkit-appearance:none;appearance:none;border-radius:9999px;border-width:1px;border-style:solid;border-color:#00000040;--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1))}.htw-range-input:is(.htw-dark *)::-webkit-slider-thumb{border-color:#ffffff40;--tw-bg-opacity: 1;background-color:rgb(63 63 70 / var(--tw-bg-opacity, 1))}.htw-range-input:hover::-webkit-slider-thumb{--tw-border-opacity: 1 !important;border-color:rgb(16 185 129 / var(--tw-border-opacity, 1))!important;--tw-bg-opacity: 1 !important;background-color:rgb(16 185 129 / var(--tw-bg-opacity, 1))!important}.htw-range-input::-moz-range-thumb{height:.75rem;width:.75rem;-moz-appearance:none;appearance:none;border-radius:9999px;border-width:1px;border-style:solid;border-color:#00000040;--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1))}.htw-range-input:is(.htw-dark *)::-moz-range-thumb{border-color:#ffffff40;--tw-bg-opacity: 1;background-color:rgb(63 63 70 / var(--tw-bg-opacity, 1))}.htw-range-input:hover::-moz-range-thumb{--tw-border-opacity: 1 !important;border-color:rgb(16 185 129 / var(--tw-border-opacity, 1))!important;--tw-bg-opacity: 1 !important;background-color:rgb(16 185 129 / var(--tw-bg-opacity, 1))!important}
|