@returnless/focus-ui 0.0.61 → 0.0.63
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/focus-ui.css +1 -1
- package/dist/focus-ui.js +1356 -1362
- package/dist/focus-ui.umd.cjs +15 -15
- package/dist/src/components/Stepper/Stepper.vue.d.ts +3 -0
- package/package.json +1 -1
|
@@ -8,6 +8,8 @@ type __VLS_Props = {
|
|
|
8
8
|
max: number;
|
|
9
9
|
/** The minimum value of the stepper. */
|
|
10
10
|
min: number;
|
|
11
|
+
/** Whether the label is hidden. */
|
|
12
|
+
labelHidden?: boolean;
|
|
11
13
|
};
|
|
12
14
|
type __VLS_PublicProps = {
|
|
13
15
|
modelValue?: number;
|
|
@@ -17,6 +19,7 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
17
19
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
18
20
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
19
21
|
}>, {
|
|
22
|
+
labelHidden: boolean;
|
|
20
23
|
color: TailwindColor | null;
|
|
21
24
|
max: number;
|
|
22
25
|
min: number;
|