veloce-vue 0.18.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/Accordion.vue.d.ts +1 -8
- package/components/Badge.vue.d.ts +58 -0
- package/components/Button.vue.d.ts +40 -12
- package/components/Checkbox.vue.d.ts +1 -1
- package/components/Chip.vue.d.ts +81 -0
- package/components/Drawer.vue.d.ts +1 -1
- package/components/Fieldset.vue.d.ts +62 -0
- package/components/Input.vue.d.ts +21 -2
- package/components/Layout.vue.d.ts +38 -0
- package/components/Message.vue.d.ts +64 -0
- package/components/Popover.vue.d.ts +1 -1
- package/components/ProgressBar.vue.d.ts +70 -0
- package/components/ProgressSpinner.vue.d.ts +25 -0
- package/components/RangeSlider.vue.d.ts +36 -0
- package/components/Select.vue.d.ts +92 -0
- package/components/Separator.vue.d.ts +107 -0
- package/components/Skeleton.vue.d.ts +51 -0
- package/components/Switch.vue.d.ts +44 -0
- package/components/Tooltip.vue.d.ts +51 -0
- package/components/icon/icons.d.ts +132 -6
- package/exports/types.d.ts +14 -0
- package/exports/ui.d.ts +14 -1
- package/icons.js +1 -1
- package/index-Cqxg4hfC.js +2928 -0
- package/package.json +1 -1
- package/ui.js +3696 -2495
- package/veloce.css +1 -1
- package/index-1Hh5u2VX.js +0 -227
|
@@ -1,12 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AccordionItem } from '../exports/types';
|
|
2
2
|
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
-
export type AccordionItem = {
|
|
4
|
-
title: string;
|
|
5
|
-
content: string;
|
|
6
|
-
slot?: string;
|
|
7
|
-
icon?: Icons;
|
|
8
|
-
active?: boolean;
|
|
9
|
-
};
|
|
10
3
|
declare function __VLS_template(): {
|
|
11
4
|
attrs: Partial<{}>;
|
|
12
5
|
slots: Partial<Record<string, (_: {}) => any>>;
|
|
@@ -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
|
+
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Icons } from '../exports/icons';
|
|
2
|
+
import { Variant, Severity, Position, Size, FontWeight } from '../exports/types';
|
|
2
3
|
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
4
|
declare function __VLS_template(): {
|
|
4
5
|
attrs: Partial<{}>;
|
|
@@ -6,7 +7,7 @@ declare function __VLS_template(): {
|
|
|
6
7
|
default?(_: {}): any;
|
|
7
8
|
};
|
|
8
9
|
refs: {};
|
|
9
|
-
rootEl:
|
|
10
|
+
rootEl: HTMLButtonElement;
|
|
10
11
|
};
|
|
11
12
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
13
|
declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
@@ -23,7 +24,11 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
23
24
|
default: boolean;
|
|
24
25
|
};
|
|
25
26
|
variant: {
|
|
26
|
-
type: () =>
|
|
27
|
+
type: () => Variant;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
severity: {
|
|
31
|
+
type: () => Severity;
|
|
27
32
|
default: string;
|
|
28
33
|
};
|
|
29
34
|
icon: {
|
|
@@ -35,7 +40,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
35
40
|
default: string;
|
|
36
41
|
};
|
|
37
42
|
iconPosition: {
|
|
38
|
-
type: () =>
|
|
43
|
+
type: () => Position;
|
|
39
44
|
default: string;
|
|
40
45
|
};
|
|
41
46
|
rounded: {
|
|
@@ -43,9 +48,17 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
43
48
|
default: boolean;
|
|
44
49
|
};
|
|
45
50
|
size: {
|
|
46
|
-
type: () =>
|
|
51
|
+
type: () => Size;
|
|
47
52
|
default: string;
|
|
48
53
|
};
|
|
54
|
+
fontWeight: {
|
|
55
|
+
type: () => FontWeight;
|
|
56
|
+
default: FontWeight;
|
|
57
|
+
};
|
|
58
|
+
neumorphic: {
|
|
59
|
+
type: BooleanConstructor;
|
|
60
|
+
default: boolean;
|
|
61
|
+
};
|
|
49
62
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
50
63
|
label: {
|
|
51
64
|
type: StringConstructor;
|
|
@@ -60,7 +73,11 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
60
73
|
default: boolean;
|
|
61
74
|
};
|
|
62
75
|
variant: {
|
|
63
|
-
type: () =>
|
|
76
|
+
type: () => Variant;
|
|
77
|
+
default: string;
|
|
78
|
+
};
|
|
79
|
+
severity: {
|
|
80
|
+
type: () => Severity;
|
|
64
81
|
default: string;
|
|
65
82
|
};
|
|
66
83
|
icon: {
|
|
@@ -72,7 +89,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
72
89
|
default: string;
|
|
73
90
|
};
|
|
74
91
|
iconPosition: {
|
|
75
|
-
type: () =>
|
|
92
|
+
type: () => Position;
|
|
76
93
|
default: string;
|
|
77
94
|
};
|
|
78
95
|
rounded: {
|
|
@@ -80,20 +97,31 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
80
97
|
default: boolean;
|
|
81
98
|
};
|
|
82
99
|
size: {
|
|
83
|
-
type: () =>
|
|
100
|
+
type: () => Size;
|
|
84
101
|
default: string;
|
|
85
102
|
};
|
|
103
|
+
fontWeight: {
|
|
104
|
+
type: () => FontWeight;
|
|
105
|
+
default: FontWeight;
|
|
106
|
+
};
|
|
107
|
+
neumorphic: {
|
|
108
|
+
type: BooleanConstructor;
|
|
109
|
+
default: boolean;
|
|
110
|
+
};
|
|
86
111
|
}>> & Readonly<{}>, {
|
|
87
112
|
label: string;
|
|
88
113
|
loading: boolean;
|
|
89
|
-
icon: "check" | "
|
|
90
|
-
size:
|
|
114
|
+
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";
|
|
115
|
+
size: Size;
|
|
116
|
+
fontWeight: FontWeight;
|
|
91
117
|
rounded: boolean;
|
|
118
|
+
severity: Severity;
|
|
92
119
|
disabled: boolean;
|
|
93
|
-
variant:
|
|
120
|
+
variant: Variant;
|
|
94
121
|
iconClass: string;
|
|
95
|
-
iconPosition:
|
|
96
|
-
|
|
122
|
+
iconPosition: Position;
|
|
123
|
+
neumorphic: boolean;
|
|
124
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLButtonElement>;
|
|
97
125
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
98
126
|
export default _default;
|
|
99
127
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -74,7 +74,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
74
74
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
75
75
|
}>, {
|
|
76
76
|
label: string;
|
|
77
|
-
icon: "check" | "
|
|
77
|
+
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";
|
|
78
78
|
size: CheckboxSize;
|
|
79
79
|
disabled: boolean;
|
|
80
80
|
variant: CheckboxVariant;
|
|
@@ -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
|
+
};
|
|
@@ -66,7 +66,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
66
66
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
67
67
|
}>, {
|
|
68
68
|
title: string;
|
|
69
|
-
direction: "
|
|
69
|
+
direction: "left" | "right" | "bottom";
|
|
70
70
|
description: string;
|
|
71
71
|
showFooter: boolean;
|
|
72
72
|
show: boolean;
|
|
@@ -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
|
+
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Icons } from '../exports/icons';
|
|
2
|
+
import { Size } from '../exports/types';
|
|
2
3
|
import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
4
|
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
4
5
|
leadingIcon: {
|
|
@@ -13,6 +14,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
13
14
|
type: StringConstructor;
|
|
14
15
|
default: string;
|
|
15
16
|
};
|
|
17
|
+
iconClass: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
16
21
|
helpText: {
|
|
17
22
|
type: StringConstructor;
|
|
18
23
|
default: string;
|
|
@@ -29,6 +34,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
29
34
|
type: StringConstructor;
|
|
30
35
|
default: string;
|
|
31
36
|
};
|
|
37
|
+
size: {
|
|
38
|
+
type: () => Size;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
32
41
|
modelValue: {
|
|
33
42
|
type: PropType<any>;
|
|
34
43
|
};
|
|
@@ -47,6 +56,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
47
56
|
type: StringConstructor;
|
|
48
57
|
default: string;
|
|
49
58
|
};
|
|
59
|
+
iconClass: {
|
|
60
|
+
type: StringConstructor;
|
|
61
|
+
default: string;
|
|
62
|
+
};
|
|
50
63
|
helpText: {
|
|
51
64
|
type: StringConstructor;
|
|
52
65
|
default: string;
|
|
@@ -63,6 +76,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
63
76
|
type: StringConstructor;
|
|
64
77
|
default: string;
|
|
65
78
|
};
|
|
79
|
+
size: {
|
|
80
|
+
type: () => Size;
|
|
81
|
+
default: string;
|
|
82
|
+
};
|
|
66
83
|
modelValue: {
|
|
67
84
|
type: PropType<any>;
|
|
68
85
|
};
|
|
@@ -71,9 +88,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
71
88
|
}>, {
|
|
72
89
|
label: string;
|
|
73
90
|
type: "text" | "password";
|
|
91
|
+
size: Size;
|
|
74
92
|
placeholder: string;
|
|
75
|
-
|
|
76
|
-
|
|
93
|
+
iconClass: string;
|
|
94
|
+
leadingIcon: "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";
|
|
95
|
+
trailingIcon: "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";
|
|
77
96
|
helpText: string;
|
|
78
97
|
labelStyle: "float" | "static";
|
|
79
98
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
@@ -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
|
+
};
|
|
@@ -39,7 +39,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
|
39
39
|
};
|
|
40
40
|
}>> & Readonly<{}>, {
|
|
41
41
|
contentClass: string;
|
|
42
|
-
position: "
|
|
42
|
+
position: "top" | "bottom";
|
|
43
43
|
bodyClass: string;
|
|
44
44
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
45
45
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -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;
|