veloce-vue 0.19.0 → 0.20.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/Badge.vue.d.ts +58 -0
- package/components/Button.vue.d.ts +1 -10
- package/components/Chip.vue.d.ts +81 -0
- package/components/Fieldset.vue.d.ts +62 -0
- package/components/Layout.vue.d.ts +38 -0
- package/components/Message.vue.d.ts +64 -0
- package/components/ProgressBar.vue.d.ts +70 -0
- package/components/ProgressSpinner.vue.d.ts +25 -0
- package/components/Select.vue.d.ts +1 -1
- package/components/Skeleton.vue.d.ts +51 -0
- package/components/Switch.vue.d.ts +1 -1
- package/exports/ui.d.ts +8 -0
- package/package.json +1 -1
- package/ui.js +2765 -2083
- package/veloce.css +1 -1
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { Severity, Size } from '../exports/types';
|
|
2
|
+
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
declare function __VLS_template(): {
|
|
4
|
+
attrs: Partial<{}>;
|
|
5
|
+
slots: {
|
|
6
|
+
default?(_: {}): any;
|
|
7
|
+
};
|
|
8
|
+
refs: {};
|
|
9
|
+
rootEl: HTMLSpanElement;
|
|
10
|
+
};
|
|
11
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
+
declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
13
|
+
value: {
|
|
14
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
severity: {
|
|
18
|
+
type: () => Severity;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
size: {
|
|
22
|
+
type: () => Size;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
dot: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
30
|
+
value: {
|
|
31
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
severity: {
|
|
35
|
+
type: () => Severity;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
size: {
|
|
39
|
+
type: () => Size;
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
42
|
+
dot: {
|
|
43
|
+
type: BooleanConstructor;
|
|
44
|
+
default: boolean;
|
|
45
|
+
};
|
|
46
|
+
}>> & Readonly<{}>, {
|
|
47
|
+
size: Size;
|
|
48
|
+
value: string | number;
|
|
49
|
+
severity: Severity;
|
|
50
|
+
dot: boolean;
|
|
51
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLSpanElement>;
|
|
52
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
53
|
+
export default _default;
|
|
54
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
55
|
+
new (): {
|
|
56
|
+
$slots: S;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
@@ -55,10 +55,6 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
55
55
|
type: () => FontWeight;
|
|
56
56
|
default: FontWeight;
|
|
57
57
|
};
|
|
58
|
-
showLogs: {
|
|
59
|
-
type: BooleanConstructor;
|
|
60
|
-
default: boolean;
|
|
61
|
-
};
|
|
62
58
|
neumorphic: {
|
|
63
59
|
type: BooleanConstructor;
|
|
64
60
|
default: boolean;
|
|
@@ -108,10 +104,6 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
108
104
|
type: () => FontWeight;
|
|
109
105
|
default: FontWeight;
|
|
110
106
|
};
|
|
111
|
-
showLogs: {
|
|
112
|
-
type: BooleanConstructor;
|
|
113
|
-
default: boolean;
|
|
114
|
-
};
|
|
115
107
|
neumorphic: {
|
|
116
108
|
type: BooleanConstructor;
|
|
117
109
|
default: boolean;
|
|
@@ -123,12 +115,11 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
123
115
|
size: Size;
|
|
124
116
|
fontWeight: FontWeight;
|
|
125
117
|
rounded: boolean;
|
|
118
|
+
severity: Severity;
|
|
126
119
|
disabled: boolean;
|
|
127
120
|
variant: Variant;
|
|
128
|
-
severity: Severity;
|
|
129
121
|
iconClass: string;
|
|
130
122
|
iconPosition: Position;
|
|
131
|
-
showLogs: boolean;
|
|
132
123
|
neumorphic: boolean;
|
|
133
124
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLButtonElement>;
|
|
134
125
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { Icons } from '../exports/icons';
|
|
2
|
+
import { Severity, Size } from '../exports/types';
|
|
3
|
+
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
4
|
+
declare function __VLS_template(): {
|
|
5
|
+
attrs: Partial<{}>;
|
|
6
|
+
slots: {
|
|
7
|
+
default?(_: {}): any;
|
|
8
|
+
};
|
|
9
|
+
refs: {};
|
|
10
|
+
rootEl: HTMLDivElement;
|
|
11
|
+
};
|
|
12
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
+
declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
14
|
+
label: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
icon: {
|
|
19
|
+
type: () => Icons;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
removable: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
severity: {
|
|
27
|
+
type: () => Severity;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
size: {
|
|
31
|
+
type: () => Size;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
rounded: {
|
|
35
|
+
type: BooleanConstructor;
|
|
36
|
+
default: boolean;
|
|
37
|
+
};
|
|
38
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
39
|
+
remove: () => any;
|
|
40
|
+
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
41
|
+
label: {
|
|
42
|
+
type: StringConstructor;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
icon: {
|
|
46
|
+
type: () => Icons;
|
|
47
|
+
default: string;
|
|
48
|
+
};
|
|
49
|
+
removable: {
|
|
50
|
+
type: BooleanConstructor;
|
|
51
|
+
default: boolean;
|
|
52
|
+
};
|
|
53
|
+
severity: {
|
|
54
|
+
type: () => Severity;
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
size: {
|
|
58
|
+
type: () => Size;
|
|
59
|
+
default: string;
|
|
60
|
+
};
|
|
61
|
+
rounded: {
|
|
62
|
+
type: BooleanConstructor;
|
|
63
|
+
default: boolean;
|
|
64
|
+
};
|
|
65
|
+
}>> & Readonly<{
|
|
66
|
+
onRemove?: (() => any) | undefined;
|
|
67
|
+
}>, {
|
|
68
|
+
label: string;
|
|
69
|
+
icon: "filter" | "code" | "link" | "menu" | "video" | "circle" | "image" | "stop" | "square" | "x" | "alert" | "alert-circle" | "archive" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "at-sign" | "bell" | "bookmark" | "camera" | "check" | "check-circle" | "check-square" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clock" | "close" | "cloud" | "cloud-download" | "cloud-upload" | "command" | "copy" | "credit-card" | "database" | "download" | "edit" | "external-link" | "eye" | "eye-off" | "fast-forward" | "file" | "file-audio" | "file-image" | "file-pdf" | "file-text" | "file-video" | "file-zip" | "folder" | "folder-open" | "folder-plus" | "grid" | "hamburger" | "hash" | "heart" | "help-circle" | "home" | "inbox" | "info" | "key" | "layout" | "link-2" | "list" | "loading" | "lock" | "log-in" | "log-out" | "mail" | "maximize" | "message-circle" | "message-square" | "mic" | "mic-off" | "minimize" | "minus" | "moon" | "more-horizontal" | "more-vertical" | "move" | "package" | "paperclip" | "pause" | "phone" | "play" | "plus" | "printer" | "radio-button" | "refresh-cw" | "repeat" | "rewind" | "rotate-ccw" | "rotate-cw" | "save" | "scissors" | "search" | "send" | "server" | "settings" | "share" | "shield" | "shuffle" | "sidebar" | "skip-back" | "skip-forward" | "slider" | "sliders" | "sort-asc" | "sort-desc" | "star" | "sun" | "tag" | "tags" | "terminal" | "thumbs-down" | "thumbs-up" | "toggle-left" | "toggle-right" | "trash" | "trash-2" | "unlink" | "unlock" | "upload" | "user" | "users" | "video-off" | "volume" | "volume-1" | "volume-2" | "volume-mute" | "volume-x" | "x-circle" | "zap" | "zoom-in" | "zoom-out";
|
|
70
|
+
size: Size;
|
|
71
|
+
rounded: boolean;
|
|
72
|
+
severity: Severity;
|
|
73
|
+
removable: boolean;
|
|
74
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
75
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
76
|
+
export default _default;
|
|
77
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
78
|
+
new (): {
|
|
79
|
+
$slots: S;
|
|
80
|
+
};
|
|
81
|
+
};
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { Icons } from '../exports/icons';
|
|
2
|
+
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
declare function __VLS_template(): {
|
|
4
|
+
attrs: Partial<{}>;
|
|
5
|
+
slots: {
|
|
6
|
+
default?(_: {}): any;
|
|
7
|
+
};
|
|
8
|
+
refs: {};
|
|
9
|
+
rootEl: HTMLFieldSetElement;
|
|
10
|
+
};
|
|
11
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
+
declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
13
|
+
legend: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
icon: {
|
|
18
|
+
type: () => Icons;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
toggleable: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
collapsed: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
30
|
+
"update:collapsed": (value: boolean) => any;
|
|
31
|
+
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
32
|
+
legend: {
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
icon: {
|
|
37
|
+
type: () => Icons;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
toggleable: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
default: boolean;
|
|
43
|
+
};
|
|
44
|
+
collapsed: {
|
|
45
|
+
type: BooleanConstructor;
|
|
46
|
+
default: boolean;
|
|
47
|
+
};
|
|
48
|
+
}>> & Readonly<{
|
|
49
|
+
"onUpdate:collapsed"?: ((value: boolean) => any) | undefined;
|
|
50
|
+
}>, {
|
|
51
|
+
legend: string;
|
|
52
|
+
icon: "filter" | "code" | "link" | "menu" | "video" | "circle" | "image" | "stop" | "square" | "x" | "alert" | "alert-circle" | "archive" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "at-sign" | "bell" | "bookmark" | "camera" | "check" | "check-circle" | "check-square" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clock" | "close" | "cloud" | "cloud-download" | "cloud-upload" | "command" | "copy" | "credit-card" | "database" | "download" | "edit" | "external-link" | "eye" | "eye-off" | "fast-forward" | "file" | "file-audio" | "file-image" | "file-pdf" | "file-text" | "file-video" | "file-zip" | "folder" | "folder-open" | "folder-plus" | "grid" | "hamburger" | "hash" | "heart" | "help-circle" | "home" | "inbox" | "info" | "key" | "layout" | "link-2" | "list" | "loading" | "lock" | "log-in" | "log-out" | "mail" | "maximize" | "message-circle" | "message-square" | "mic" | "mic-off" | "minimize" | "minus" | "moon" | "more-horizontal" | "more-vertical" | "move" | "package" | "paperclip" | "pause" | "phone" | "play" | "plus" | "printer" | "radio-button" | "refresh-cw" | "repeat" | "rewind" | "rotate-ccw" | "rotate-cw" | "save" | "scissors" | "search" | "send" | "server" | "settings" | "share" | "shield" | "shuffle" | "sidebar" | "skip-back" | "skip-forward" | "slider" | "sliders" | "sort-asc" | "sort-desc" | "star" | "sun" | "tag" | "tags" | "terminal" | "thumbs-down" | "thumbs-up" | "toggle-left" | "toggle-right" | "trash" | "trash-2" | "unlink" | "unlock" | "upload" | "user" | "users" | "video-off" | "volume" | "volume-1" | "volume-2" | "volume-mute" | "volume-x" | "x-circle" | "zap" | "zoom-in" | "zoom-out";
|
|
53
|
+
toggleable: boolean;
|
|
54
|
+
collapsed: boolean;
|
|
55
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLFieldSetElement>;
|
|
56
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
57
|
+
export default _default;
|
|
58
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
59
|
+
new (): {
|
|
60
|
+
$slots: S;
|
|
61
|
+
};
|
|
62
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
'header-actions'?(_: {}): any;
|
|
6
|
+
sidebar?(_: {
|
|
7
|
+
showSidebar: true;
|
|
8
|
+
onClose: () => void;
|
|
9
|
+
}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: any;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
16
|
+
brandName: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
21
|
+
sidebar: (showSidebar: boolean) => any;
|
|
22
|
+
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
23
|
+
brandName: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
}>> & Readonly<{
|
|
28
|
+
onSidebar?: ((showSidebar: boolean) => any) | undefined;
|
|
29
|
+
}>, {
|
|
30
|
+
brandName: string;
|
|
31
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
32
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
33
|
+
export default _default;
|
|
34
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
35
|
+
new (): {
|
|
36
|
+
$slots: S;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { Icons } from '../exports/icons';
|
|
2
|
+
import { Severity, Variant } from '../exports/types';
|
|
3
|
+
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
4
|
+
declare function __VLS_template(): {
|
|
5
|
+
attrs: Partial<{}>;
|
|
6
|
+
slots: {
|
|
7
|
+
icon?(_: {}): any;
|
|
8
|
+
default?(_: {}): any;
|
|
9
|
+
};
|
|
10
|
+
refs: {};
|
|
11
|
+
rootEl: HTMLDivElement;
|
|
12
|
+
};
|
|
13
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
+
declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
15
|
+
severity: {
|
|
16
|
+
type: () => Severity;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
variant: {
|
|
20
|
+
type: () => Variant;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
icon: {
|
|
24
|
+
type: () => Icons;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
closable: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
31
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
32
|
+
close: () => any;
|
|
33
|
+
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
34
|
+
severity: {
|
|
35
|
+
type: () => Severity;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
variant: {
|
|
39
|
+
type: () => Variant;
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
42
|
+
icon: {
|
|
43
|
+
type: () => Icons;
|
|
44
|
+
default: string;
|
|
45
|
+
};
|
|
46
|
+
closable: {
|
|
47
|
+
type: BooleanConstructor;
|
|
48
|
+
default: boolean;
|
|
49
|
+
};
|
|
50
|
+
}>> & Readonly<{
|
|
51
|
+
onClose?: (() => any) | undefined;
|
|
52
|
+
}>, {
|
|
53
|
+
icon: "filter" | "code" | "link" | "menu" | "video" | "circle" | "image" | "stop" | "square" | "x" | "alert" | "alert-circle" | "archive" | "arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "at-sign" | "bell" | "bookmark" | "camera" | "check" | "check-circle" | "check-square" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clock" | "close" | "cloud" | "cloud-download" | "cloud-upload" | "command" | "copy" | "credit-card" | "database" | "download" | "edit" | "external-link" | "eye" | "eye-off" | "fast-forward" | "file" | "file-audio" | "file-image" | "file-pdf" | "file-text" | "file-video" | "file-zip" | "folder" | "folder-open" | "folder-plus" | "grid" | "hamburger" | "hash" | "heart" | "help-circle" | "home" | "inbox" | "info" | "key" | "layout" | "link-2" | "list" | "loading" | "lock" | "log-in" | "log-out" | "mail" | "maximize" | "message-circle" | "message-square" | "mic" | "mic-off" | "minimize" | "minus" | "moon" | "more-horizontal" | "more-vertical" | "move" | "package" | "paperclip" | "pause" | "phone" | "play" | "plus" | "printer" | "radio-button" | "refresh-cw" | "repeat" | "rewind" | "rotate-ccw" | "rotate-cw" | "save" | "scissors" | "search" | "send" | "server" | "settings" | "share" | "shield" | "shuffle" | "sidebar" | "skip-back" | "skip-forward" | "slider" | "sliders" | "sort-asc" | "sort-desc" | "star" | "sun" | "tag" | "tags" | "terminal" | "thumbs-down" | "thumbs-up" | "toggle-left" | "toggle-right" | "trash" | "trash-2" | "unlink" | "unlock" | "upload" | "user" | "users" | "video-off" | "volume" | "volume-1" | "volume-2" | "volume-mute" | "volume-x" | "x-circle" | "zap" | "zoom-in" | "zoom-out";
|
|
54
|
+
severity: Severity;
|
|
55
|
+
variant: Variant;
|
|
56
|
+
closable: boolean;
|
|
57
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
58
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
59
|
+
export default _default;
|
|
60
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
61
|
+
new (): {
|
|
62
|
+
$slots: S;
|
|
63
|
+
};
|
|
64
|
+
};
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { Severity } from '../exports/types';
|
|
2
|
+
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
4
|
+
value: {
|
|
5
|
+
type: NumberConstructor;
|
|
6
|
+
default: number;
|
|
7
|
+
};
|
|
8
|
+
max: {
|
|
9
|
+
type: NumberConstructor;
|
|
10
|
+
default: number;
|
|
11
|
+
};
|
|
12
|
+
severity: {
|
|
13
|
+
type: () => Severity;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
striped: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
animated: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
default: boolean;
|
|
23
|
+
};
|
|
24
|
+
mode: {
|
|
25
|
+
type: () => "indeterminate" | "determinate";
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
textColor: {
|
|
29
|
+
type: () => Severity | "white";
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
33
|
+
value: {
|
|
34
|
+
type: NumberConstructor;
|
|
35
|
+
default: number;
|
|
36
|
+
};
|
|
37
|
+
max: {
|
|
38
|
+
type: NumberConstructor;
|
|
39
|
+
default: number;
|
|
40
|
+
};
|
|
41
|
+
severity: {
|
|
42
|
+
type: () => Severity;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
striped: {
|
|
46
|
+
type: BooleanConstructor;
|
|
47
|
+
default: boolean;
|
|
48
|
+
};
|
|
49
|
+
animated: {
|
|
50
|
+
type: BooleanConstructor;
|
|
51
|
+
default: boolean;
|
|
52
|
+
};
|
|
53
|
+
mode: {
|
|
54
|
+
type: () => "indeterminate" | "determinate";
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
textColor: {
|
|
58
|
+
type: () => Severity | "white";
|
|
59
|
+
default: string;
|
|
60
|
+
};
|
|
61
|
+
}>> & Readonly<{}>, {
|
|
62
|
+
mode: "indeterminate" | "determinate";
|
|
63
|
+
max: number;
|
|
64
|
+
value: number;
|
|
65
|
+
severity: Severity;
|
|
66
|
+
striped: boolean;
|
|
67
|
+
animated: boolean;
|
|
68
|
+
textColor: Severity | "white";
|
|
69
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
70
|
+
export default _default;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Severity, Size } from '../exports/types';
|
|
2
|
+
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
4
|
+
severity: {
|
|
5
|
+
type: () => Severity;
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
size: {
|
|
9
|
+
type: () => Size;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
13
|
+
severity: {
|
|
14
|
+
type: () => Severity;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
size: {
|
|
18
|
+
type: () => Size;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
}>> & Readonly<{}>, {
|
|
22
|
+
size: Size;
|
|
23
|
+
severity: Severity;
|
|
24
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
25
|
+
export default _default;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
3
|
+
width: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
height: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
rounded: {
|
|
12
|
+
type: BooleanConstructor;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
variant: {
|
|
16
|
+
type: () => "text" | "circular" | "rectangular";
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
animation: {
|
|
20
|
+
type: () => "pulse" | "wave" | "none";
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
24
|
+
width: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
height: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
rounded: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
variant: {
|
|
37
|
+
type: () => "text" | "circular" | "rectangular";
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
animation: {
|
|
41
|
+
type: () => "pulse" | "wave" | "none";
|
|
42
|
+
default: string;
|
|
43
|
+
};
|
|
44
|
+
}>> & Readonly<{}>, {
|
|
45
|
+
width: string;
|
|
46
|
+
height: string;
|
|
47
|
+
animation: "none" | "pulse" | "wave";
|
|
48
|
+
rounded: boolean;
|
|
49
|
+
variant: "text" | "circular" | "rectangular";
|
|
50
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
51
|
+
export default _default;
|
|
@@ -38,7 +38,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
38
38
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
39
39
|
}>, {
|
|
40
40
|
size: Size;
|
|
41
|
-
disabled: boolean;
|
|
42
41
|
severity: Severity;
|
|
42
|
+
disabled: boolean;
|
|
43
43
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
44
44
|
export default _default;
|
package/exports/ui.d.ts
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
export { default as Accordion } from '../components/Accordion.vue';
|
|
2
|
+
export { default as Badge } from '../components/Badge.vue';
|
|
2
3
|
export { default as Button } from '../components/Button.vue';
|
|
3
4
|
export { default as Checkbox } from '../components/Checkbox.vue';
|
|
5
|
+
export { default as Chip } from '../components/Chip.vue';
|
|
4
6
|
export { default as Drawer } from '../components/Drawer.vue';
|
|
7
|
+
export { default as Fieldset } from '../components/Fieldset.vue';
|
|
5
8
|
export { default as Input } from '../components/Input.vue';
|
|
9
|
+
export { default as Layout } from '../components/Layout.vue';
|
|
10
|
+
export { default as Message } from '../components/Message.vue';
|
|
6
11
|
export { default as Modal } from '../components/Modal.vue';
|
|
7
12
|
export { default as Popover } from '../components/Popover.vue';
|
|
13
|
+
export { default as ProgressBar } from '../components/ProgressBar.vue';
|
|
14
|
+
export { default as ProgressSpinner } from '../components/ProgressSpinner.vue';
|
|
8
15
|
export { default as RangeSlider } from '../components/RangeSlider.vue';
|
|
9
16
|
export { default as Select } from '../components/Select.vue';
|
|
10
17
|
export { default as Separator } from '../components/Separator.vue';
|
|
18
|
+
export { default as Skeleton } from '../components/Skeleton.vue';
|
|
11
19
|
export { default as Switch } from '../components/Switch.vue';
|
|
12
20
|
export { default as Tooltip } from '../components/Tooltip.vue';
|