veloce-vue 0.17.0 → 0.19.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 +64 -0
- package/components/Button.vue.d.ts +65 -13
- package/components/Checkbox.vue.d.ts +84 -0
- package/components/Drawer.vue.d.ts +80 -0
- package/components/Input.vue.d.ts +99 -0
- package/components/Modal.vue.d.ts +27 -0
- package/components/Popover.vue.d.ts +51 -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/Switch.vue.d.ts +44 -0
- package/components/Tooltip.vue.d.ts +51 -0
- package/components/icon/icons.d.ts +133 -3
- package/exports/types.d.ts +14 -0
- package/exports/ui.d.ts +11 -0
- package/exports/utils.d.ts +1 -0
- package/icons.js +1 -1
- package/index-Cqxg4hfC.js +2928 -0
- package/package.json +3 -2
- package/ui.js +6650 -39
- package/veloce.css +1 -1
- package/index-DETZgETo.js +0 -147
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { AccordionItem } from '../exports/types';
|
|
2
|
+
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
declare function __VLS_template(): {
|
|
4
|
+
attrs: Partial<{}>;
|
|
5
|
+
slots: Partial<Record<string, (_: {}) => any>>;
|
|
6
|
+
refs: {};
|
|
7
|
+
rootEl: any;
|
|
8
|
+
};
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
+
declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
11
|
+
items: {
|
|
12
|
+
type: () => AccordionItem[];
|
|
13
|
+
required: true;
|
|
14
|
+
};
|
|
15
|
+
shadow: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
contentClass: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
headerClass: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
multiple: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
31
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
32
|
+
items: {
|
|
33
|
+
type: () => AccordionItem[];
|
|
34
|
+
required: true;
|
|
35
|
+
};
|
|
36
|
+
shadow: {
|
|
37
|
+
type: BooleanConstructor;
|
|
38
|
+
default: boolean;
|
|
39
|
+
};
|
|
40
|
+
contentClass: {
|
|
41
|
+
type: StringConstructor;
|
|
42
|
+
default: string;
|
|
43
|
+
};
|
|
44
|
+
headerClass: {
|
|
45
|
+
type: StringConstructor;
|
|
46
|
+
default: string;
|
|
47
|
+
};
|
|
48
|
+
multiple: {
|
|
49
|
+
type: BooleanConstructor;
|
|
50
|
+
default: boolean;
|
|
51
|
+
};
|
|
52
|
+
}>> & Readonly<{}>, {
|
|
53
|
+
shadow: boolean;
|
|
54
|
+
contentClass: string;
|
|
55
|
+
headerClass: string;
|
|
56
|
+
multiple: boolean;
|
|
57
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
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
|
+
};
|
|
@@ -1,6 +1,16 @@
|
|
|
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
|
-
declare
|
|
4
|
+
declare function __VLS_template(): {
|
|
5
|
+
attrs: Partial<{}>;
|
|
6
|
+
slots: {
|
|
7
|
+
default?(_: {}): any;
|
|
8
|
+
};
|
|
9
|
+
refs: {};
|
|
10
|
+
rootEl: HTMLButtonElement;
|
|
11
|
+
};
|
|
12
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
+
declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
4
14
|
label: {
|
|
5
15
|
type: StringConstructor;
|
|
6
16
|
default: string;
|
|
@@ -14,7 +24,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
14
24
|
default: boolean;
|
|
15
25
|
};
|
|
16
26
|
variant: {
|
|
17
|
-
type: () =>
|
|
27
|
+
type: () => Variant;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
severity: {
|
|
31
|
+
type: () => Severity;
|
|
18
32
|
default: string;
|
|
19
33
|
};
|
|
20
34
|
icon: {
|
|
@@ -26,7 +40,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
26
40
|
default: string;
|
|
27
41
|
};
|
|
28
42
|
iconPosition: {
|
|
29
|
-
type: () =>
|
|
43
|
+
type: () => Position;
|
|
30
44
|
default: string;
|
|
31
45
|
};
|
|
32
46
|
rounded: {
|
|
@@ -34,9 +48,21 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
34
48
|
default: boolean;
|
|
35
49
|
};
|
|
36
50
|
size: {
|
|
37
|
-
type: () =>
|
|
51
|
+
type: () => Size;
|
|
38
52
|
default: string;
|
|
39
53
|
};
|
|
54
|
+
fontWeight: {
|
|
55
|
+
type: () => FontWeight;
|
|
56
|
+
default: FontWeight;
|
|
57
|
+
};
|
|
58
|
+
showLogs: {
|
|
59
|
+
type: BooleanConstructor;
|
|
60
|
+
default: boolean;
|
|
61
|
+
};
|
|
62
|
+
neumorphic: {
|
|
63
|
+
type: BooleanConstructor;
|
|
64
|
+
default: boolean;
|
|
65
|
+
};
|
|
40
66
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
41
67
|
label: {
|
|
42
68
|
type: StringConstructor;
|
|
@@ -51,7 +77,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
51
77
|
default: boolean;
|
|
52
78
|
};
|
|
53
79
|
variant: {
|
|
54
|
-
type: () =>
|
|
80
|
+
type: () => Variant;
|
|
81
|
+
default: string;
|
|
82
|
+
};
|
|
83
|
+
severity: {
|
|
84
|
+
type: () => Severity;
|
|
55
85
|
default: string;
|
|
56
86
|
};
|
|
57
87
|
icon: {
|
|
@@ -63,7 +93,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
63
93
|
default: string;
|
|
64
94
|
};
|
|
65
95
|
iconPosition: {
|
|
66
|
-
type: () =>
|
|
96
|
+
type: () => Position;
|
|
67
97
|
default: string;
|
|
68
98
|
};
|
|
69
99
|
rounded: {
|
|
@@ -71,18 +101,40 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
71
101
|
default: boolean;
|
|
72
102
|
};
|
|
73
103
|
size: {
|
|
74
|
-
type: () =>
|
|
104
|
+
type: () => Size;
|
|
75
105
|
default: string;
|
|
76
106
|
};
|
|
107
|
+
fontWeight: {
|
|
108
|
+
type: () => FontWeight;
|
|
109
|
+
default: FontWeight;
|
|
110
|
+
};
|
|
111
|
+
showLogs: {
|
|
112
|
+
type: BooleanConstructor;
|
|
113
|
+
default: boolean;
|
|
114
|
+
};
|
|
115
|
+
neumorphic: {
|
|
116
|
+
type: BooleanConstructor;
|
|
117
|
+
default: boolean;
|
|
118
|
+
};
|
|
77
119
|
}>> & Readonly<{}>, {
|
|
78
120
|
label: string;
|
|
79
121
|
loading: boolean;
|
|
80
|
-
icon: "check" | "
|
|
81
|
-
size:
|
|
122
|
+
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";
|
|
123
|
+
size: Size;
|
|
124
|
+
fontWeight: FontWeight;
|
|
125
|
+
rounded: boolean;
|
|
82
126
|
disabled: boolean;
|
|
83
|
-
variant:
|
|
127
|
+
variant: Variant;
|
|
128
|
+
severity: Severity;
|
|
84
129
|
iconClass: string;
|
|
85
|
-
iconPosition:
|
|
86
|
-
|
|
87
|
-
|
|
130
|
+
iconPosition: Position;
|
|
131
|
+
showLogs: boolean;
|
|
132
|
+
neumorphic: boolean;
|
|
133
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLButtonElement>;
|
|
134
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
88
135
|
export default _default;
|
|
136
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
137
|
+
new (): {
|
|
138
|
+
$slots: S;
|
|
139
|
+
};
|
|
140
|
+
};
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import { Icons } from '../exports/icons';
|
|
2
|
+
import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
type CheckboxSize = "sm" | "md" | "lg";
|
|
4
|
+
type CheckboxVariant = "primary" | "secondary" | "success" | "info" | "error" | "warning";
|
|
5
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
6
|
+
label: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
labelClass: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
checkboxClass: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
size: {
|
|
19
|
+
type: () => CheckboxSize;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
variant: {
|
|
23
|
+
type: () => CheckboxVariant;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
icon: {
|
|
27
|
+
type: () => Icons;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
disabled: {
|
|
31
|
+
type: BooleanConstructor;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
34
|
+
modelValue: {
|
|
35
|
+
type: PropType<boolean>;
|
|
36
|
+
required: true;
|
|
37
|
+
};
|
|
38
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
39
|
+
"update:modelValue": (value: boolean) => any;
|
|
40
|
+
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
41
|
+
label: {
|
|
42
|
+
type: StringConstructor;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
labelClass: {
|
|
46
|
+
type: StringConstructor;
|
|
47
|
+
default: string;
|
|
48
|
+
};
|
|
49
|
+
checkboxClass: {
|
|
50
|
+
type: StringConstructor;
|
|
51
|
+
default: string;
|
|
52
|
+
};
|
|
53
|
+
size: {
|
|
54
|
+
type: () => CheckboxSize;
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
variant: {
|
|
58
|
+
type: () => CheckboxVariant;
|
|
59
|
+
default: string;
|
|
60
|
+
};
|
|
61
|
+
icon: {
|
|
62
|
+
type: () => Icons;
|
|
63
|
+
default: string;
|
|
64
|
+
};
|
|
65
|
+
disabled: {
|
|
66
|
+
type: BooleanConstructor;
|
|
67
|
+
default: boolean;
|
|
68
|
+
};
|
|
69
|
+
modelValue: {
|
|
70
|
+
type: PropType<boolean>;
|
|
71
|
+
required: true;
|
|
72
|
+
};
|
|
73
|
+
}>> & Readonly<{
|
|
74
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
75
|
+
}>, {
|
|
76
|
+
label: string;
|
|
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
|
+
size: CheckboxSize;
|
|
79
|
+
disabled: boolean;
|
|
80
|
+
variant: CheckboxVariant;
|
|
81
|
+
labelClass: string;
|
|
82
|
+
checkboxClass: string;
|
|
83
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
84
|
+
export default _default;
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
content?(_: {}): any;
|
|
7
|
+
footer?(_: {}): any;
|
|
8
|
+
};
|
|
9
|
+
refs: {};
|
|
10
|
+
rootEl: any;
|
|
11
|
+
};
|
|
12
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
+
declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
14
|
+
direction: {
|
|
15
|
+
type: () => "left" | "bottom" | "right";
|
|
16
|
+
default: string;
|
|
17
|
+
options: string[];
|
|
18
|
+
};
|
|
19
|
+
title: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
description: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
showFooter: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
31
|
+
show: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
modelValue: {
|
|
36
|
+
type: PropType<any>;
|
|
37
|
+
};
|
|
38
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
39
|
+
"update:modelValue": (value: any) => any;
|
|
40
|
+
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
41
|
+
direction: {
|
|
42
|
+
type: () => "left" | "bottom" | "right";
|
|
43
|
+
default: string;
|
|
44
|
+
options: string[];
|
|
45
|
+
};
|
|
46
|
+
title: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
description: {
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
default: string;
|
|
53
|
+
};
|
|
54
|
+
showFooter: {
|
|
55
|
+
type: BooleanConstructor;
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
58
|
+
show: {
|
|
59
|
+
type: BooleanConstructor;
|
|
60
|
+
default: boolean;
|
|
61
|
+
};
|
|
62
|
+
modelValue: {
|
|
63
|
+
type: PropType<any>;
|
|
64
|
+
};
|
|
65
|
+
}>> & Readonly<{
|
|
66
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
67
|
+
}>, {
|
|
68
|
+
title: string;
|
|
69
|
+
direction: "left" | "right" | "bottom";
|
|
70
|
+
description: string;
|
|
71
|
+
showFooter: boolean;
|
|
72
|
+
show: boolean;
|
|
73
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
74
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
75
|
+
export default _default;
|
|
76
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
77
|
+
new (): {
|
|
78
|
+
$slots: S;
|
|
79
|
+
};
|
|
80
|
+
};
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { Icons } from '../exports/icons';
|
|
2
|
+
import { Size } from '../exports/types';
|
|
3
|
+
import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
4
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
5
|
+
leadingIcon: {
|
|
6
|
+
type: () => Icons;
|
|
7
|
+
default: string;
|
|
8
|
+
};
|
|
9
|
+
trailingIcon: {
|
|
10
|
+
type: () => Icons;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
13
|
+
placeholder: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
iconClass: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
helpText: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
type: {
|
|
26
|
+
type: () => "text" | "password";
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
29
|
+
labelStyle: {
|
|
30
|
+
type: () => "float" | "static";
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
label: {
|
|
34
|
+
type: StringConstructor;
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
size: {
|
|
38
|
+
type: () => Size;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
modelValue: {
|
|
42
|
+
type: PropType<any>;
|
|
43
|
+
};
|
|
44
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
45
|
+
"update:modelValue": (value: any) => any;
|
|
46
|
+
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
47
|
+
leadingIcon: {
|
|
48
|
+
type: () => Icons;
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
51
|
+
trailingIcon: {
|
|
52
|
+
type: () => Icons;
|
|
53
|
+
default: string;
|
|
54
|
+
};
|
|
55
|
+
placeholder: {
|
|
56
|
+
type: StringConstructor;
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
59
|
+
iconClass: {
|
|
60
|
+
type: StringConstructor;
|
|
61
|
+
default: string;
|
|
62
|
+
};
|
|
63
|
+
helpText: {
|
|
64
|
+
type: StringConstructor;
|
|
65
|
+
default: string;
|
|
66
|
+
};
|
|
67
|
+
type: {
|
|
68
|
+
type: () => "text" | "password";
|
|
69
|
+
default: string;
|
|
70
|
+
};
|
|
71
|
+
labelStyle: {
|
|
72
|
+
type: () => "float" | "static";
|
|
73
|
+
default: string;
|
|
74
|
+
};
|
|
75
|
+
label: {
|
|
76
|
+
type: StringConstructor;
|
|
77
|
+
default: string;
|
|
78
|
+
};
|
|
79
|
+
size: {
|
|
80
|
+
type: () => Size;
|
|
81
|
+
default: string;
|
|
82
|
+
};
|
|
83
|
+
modelValue: {
|
|
84
|
+
type: PropType<any>;
|
|
85
|
+
};
|
|
86
|
+
}>> & Readonly<{
|
|
87
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
88
|
+
}>, {
|
|
89
|
+
label: string;
|
|
90
|
+
type: "text" | "password";
|
|
91
|
+
size: Size;
|
|
92
|
+
placeholder: string;
|
|
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";
|
|
96
|
+
helpText: string;
|
|
97
|
+
labelStyle: "float" | "static";
|
|
98
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
99
|
+
export default _default;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
type __VLS_PublicProps = {
|
|
3
|
+
modelValue?: any;
|
|
4
|
+
};
|
|
5
|
+
declare function __VLS_template(): {
|
|
6
|
+
attrs: Partial<{}>;
|
|
7
|
+
slots: {
|
|
8
|
+
default?(_: {}): any;
|
|
9
|
+
content?(_: {}): any;
|
|
10
|
+
footer?(_: {}): any;
|
|
11
|
+
};
|
|
12
|
+
refs: {};
|
|
13
|
+
rootEl: any;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
|
+
declare const __VLS_component: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
17
|
+
"update:modelValue": (value: any) => any;
|
|
18
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
19
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
20
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
22
|
+
export default _default;
|
|
23
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
24
|
+
new (): {
|
|
25
|
+
$slots: S;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
body?(_: {}): any;
|
|
7
|
+
};
|
|
8
|
+
refs: {};
|
|
9
|
+
rootEl: HTMLDivElement;
|
|
10
|
+
};
|
|
11
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
+
declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
13
|
+
position: {
|
|
14
|
+
type: () => "top" | "bottom";
|
|
15
|
+
default: string;
|
|
16
|
+
options: string[];
|
|
17
|
+
};
|
|
18
|
+
bodyClass: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
contentClass: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
27
|
+
position: {
|
|
28
|
+
type: () => "top" | "bottom";
|
|
29
|
+
default: string;
|
|
30
|
+
options: string[];
|
|
31
|
+
};
|
|
32
|
+
bodyClass: {
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
contentClass: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
}>> & Readonly<{}>, {
|
|
41
|
+
contentClass: string;
|
|
42
|
+
position: "top" | "bottom";
|
|
43
|
+
bodyClass: string;
|
|
44
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
45
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
46
|
+
export default _default;
|
|
47
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
48
|
+
new (): {
|
|
49
|
+
$slots: S;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
3
|
+
showTooltip: {
|
|
4
|
+
type: BooleanConstructor;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
tooltipPosition: {
|
|
8
|
+
type: () => "top" | "bottom";
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
modelValue: {
|
|
12
|
+
type: PropType<number>;
|
|
13
|
+
required: true;
|
|
14
|
+
};
|
|
15
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
16
|
+
"update:modelValue": (value: number) => any;
|
|
17
|
+
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
18
|
+
showTooltip: {
|
|
19
|
+
type: BooleanConstructor;
|
|
20
|
+
default: boolean;
|
|
21
|
+
};
|
|
22
|
+
tooltipPosition: {
|
|
23
|
+
type: () => "top" | "bottom";
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
modelValue: {
|
|
27
|
+
type: PropType<number>;
|
|
28
|
+
required: true;
|
|
29
|
+
};
|
|
30
|
+
}>> & Readonly<{
|
|
31
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
32
|
+
}>, {
|
|
33
|
+
showTooltip: boolean;
|
|
34
|
+
tooltipPosition: "top" | "bottom";
|
|
35
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
36
|
+
export default _default;
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { Variant, Severity, Size, FontWeight } from '../exports/types';
|
|
2
|
+
import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
+
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
4
|
+
options: {
|
|
5
|
+
type: () => string[];
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
variant: {
|
|
9
|
+
type: () => Variant;
|
|
10
|
+
default: Variant;
|
|
11
|
+
};
|
|
12
|
+
severity: {
|
|
13
|
+
type: () => Severity;
|
|
14
|
+
default: Severity;
|
|
15
|
+
};
|
|
16
|
+
size: {
|
|
17
|
+
type: () => Size;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
showFilter: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
default: boolean;
|
|
23
|
+
};
|
|
24
|
+
isOpen: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
28
|
+
closeOnClickOutside: {
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
32
|
+
fontWeight: {
|
|
33
|
+
type: () => FontWeight;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
modelValue: {
|
|
37
|
+
type: PropType<string>;
|
|
38
|
+
};
|
|
39
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
40
|
+
"update:isOpen": (...args: any[]) => void;
|
|
41
|
+
"update:modelValue": (value: string) => void;
|
|
42
|
+
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
43
|
+
options: {
|
|
44
|
+
type: () => string[];
|
|
45
|
+
required: true;
|
|
46
|
+
};
|
|
47
|
+
variant: {
|
|
48
|
+
type: () => Variant;
|
|
49
|
+
default: Variant;
|
|
50
|
+
};
|
|
51
|
+
severity: {
|
|
52
|
+
type: () => Severity;
|
|
53
|
+
default: Severity;
|
|
54
|
+
};
|
|
55
|
+
size: {
|
|
56
|
+
type: () => Size;
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
59
|
+
showFilter: {
|
|
60
|
+
type: BooleanConstructor;
|
|
61
|
+
default: boolean;
|
|
62
|
+
};
|
|
63
|
+
isOpen: {
|
|
64
|
+
type: BooleanConstructor;
|
|
65
|
+
default: boolean;
|
|
66
|
+
};
|
|
67
|
+
closeOnClickOutside: {
|
|
68
|
+
type: BooleanConstructor;
|
|
69
|
+
default: boolean;
|
|
70
|
+
};
|
|
71
|
+
fontWeight: {
|
|
72
|
+
type: () => FontWeight;
|
|
73
|
+
default: string;
|
|
74
|
+
};
|
|
75
|
+
modelValue: {
|
|
76
|
+
type: PropType<string>;
|
|
77
|
+
};
|
|
78
|
+
}>> & Readonly<{
|
|
79
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
80
|
+
"onUpdate:isOpen"?: ((...args: any[]) => any) | undefined;
|
|
81
|
+
}>, {
|
|
82
|
+
size: Size;
|
|
83
|
+
fontWeight: FontWeight;
|
|
84
|
+
variant: Variant;
|
|
85
|
+
severity: Severity;
|
|
86
|
+
isOpen: boolean;
|
|
87
|
+
showFilter: boolean;
|
|
88
|
+
closeOnClickOutside: boolean;
|
|
89
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
90
|
+
target: HTMLDivElement;
|
|
91
|
+
}, HTMLDivElement>;
|
|
92
|
+
export default _default;
|