veloce-vue 0.16.0 → 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.
- package/components/Button.vue.d.ts +88 -0
- package/exports/ui.d.ts +1 -2
- package/package.json +1 -1
- package/ui.js +53 -4042
- package/veloce.css +1 -1
- package/exports/lib.d.ts +0 -1
- package/lib/utils.d.ts +0 -2
- package/ui/accordion/Accordion.vue.d.ts +0 -13
- package/ui/accordion/AccordionContent.vue.d.ts +0 -22
- package/ui/accordion/AccordionItem.vue.d.ts +0 -22
- package/ui/accordion/AccordionRoot.vue.d.ts +0 -24
- package/ui/accordion/AccordionTrigger.vue.d.ts +0 -23
- package/ui/accordion/index.d.ts +0 -5
- package/ui/button/Button.vue.d.ts +0 -31
- package/ui/button/index.d.ts +0 -8
- package/utils/config.d.ts +0 -12
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { Icons } from '../exports/icons';
|
|
2
|
+
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
4
|
+
label: {
|
|
5
|
+
type: StringConstructor;
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
loading: {
|
|
9
|
+
type: BooleanConstructor;
|
|
10
|
+
default: boolean;
|
|
11
|
+
};
|
|
12
|
+
disabled: {
|
|
13
|
+
type: BooleanConstructor;
|
|
14
|
+
default: boolean;
|
|
15
|
+
};
|
|
16
|
+
variant: {
|
|
17
|
+
type: () => "outlined" | "link" | "ghost" | "solid" | "soft";
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
icon: {
|
|
21
|
+
type: () => Icons;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
iconClass: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
iconPosition: {
|
|
29
|
+
type: () => "left" | "right";
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
rounded: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
size: {
|
|
37
|
+
type: () => "sm" | "md" | "lg";
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
41
|
+
label: {
|
|
42
|
+
type: StringConstructor;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
loading: {
|
|
46
|
+
type: BooleanConstructor;
|
|
47
|
+
default: boolean;
|
|
48
|
+
};
|
|
49
|
+
disabled: {
|
|
50
|
+
type: BooleanConstructor;
|
|
51
|
+
default: boolean;
|
|
52
|
+
};
|
|
53
|
+
variant: {
|
|
54
|
+
type: () => "outlined" | "link" | "ghost" | "solid" | "soft";
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
icon: {
|
|
58
|
+
type: () => Icons;
|
|
59
|
+
default: string;
|
|
60
|
+
};
|
|
61
|
+
iconClass: {
|
|
62
|
+
type: StringConstructor;
|
|
63
|
+
default: string;
|
|
64
|
+
};
|
|
65
|
+
iconPosition: {
|
|
66
|
+
type: () => "left" | "right";
|
|
67
|
+
default: string;
|
|
68
|
+
};
|
|
69
|
+
rounded: {
|
|
70
|
+
type: BooleanConstructor;
|
|
71
|
+
default: boolean;
|
|
72
|
+
};
|
|
73
|
+
size: {
|
|
74
|
+
type: () => "sm" | "md" | "lg";
|
|
75
|
+
default: string;
|
|
76
|
+
};
|
|
77
|
+
}>> & Readonly<{}>, {
|
|
78
|
+
label: string;
|
|
79
|
+
loading: boolean;
|
|
80
|
+
icon: "check" | "close" | "loading" | "chevron-down" | "alert" | "hamburger";
|
|
81
|
+
size: "sm" | "md" | "lg";
|
|
82
|
+
disabled: boolean;
|
|
83
|
+
variant: "link" | "outlined" | "ghost" | "solid" | "soft";
|
|
84
|
+
iconClass: string;
|
|
85
|
+
iconPosition: "left" | "right";
|
|
86
|
+
rounded: boolean;
|
|
87
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
88
|
+
export default _default;
|
package/exports/ui.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export { Button } from '../ui/button';
|
|
1
|
+
export { default as Button } from '../components/Button.vue';
|