luyoumin-ui 0.0.59 → 0.0.61
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/README.md +12 -1
- package/dist/components/LymBadge.vue.d.ts +125 -0
- package/dist/components/LymBubbleContainer.vue.d.ts +14 -14
- package/dist/components/LymButton.vue.d.ts +6 -6
- package/dist/components/LymCard.vue.d.ts +29 -0
- package/dist/components/LymCarousel.vue.d.ts +192 -0
- package/dist/components/LymCheckBox.vue.d.ts +2 -2
- package/dist/components/LymCheckBoxGroup.vue.d.ts +1 -1
- package/dist/components/LymColorPicker.vue.d.ts +9 -0
- package/dist/components/LymDialog.vue.d.ts +3 -3
- package/dist/components/LymDivider.vue.d.ts +3 -3
- package/dist/components/LymDrawer.vue.d.ts +4 -4
- package/dist/components/LymForm.vue.d.ts +119 -0
- package/dist/components/LymFormItem.vue.d.ts +96 -0
- package/dist/components/LymInput.vue.d.ts +9 -5
- package/dist/components/LymLink.vue.d.ts +2 -2
- package/dist/components/LymPagination.vue.d.ts +185 -0
- package/dist/components/LymPopover.vue.d.ts +10 -10
- package/dist/components/LymProgress.vue.d.ts +152 -0
- package/dist/components/LymRate.vue.d.ts +136 -0
- package/dist/components/LymSelect.vue.d.ts +11 -11
- package/dist/components/LymSkeleton.vue.d.ts +18 -0
- package/dist/components/LymSlider.vue.d.ts +243 -0
- package/dist/components/LymSteps.vue.d.ts +173 -3
- package/dist/components/LymSwitch.vue.d.ts +126 -0
- package/dist/components/LymTag.vue.d.ts +83 -0
- package/dist/components/LymTooltip.vue.d.ts +10 -10
- package/dist/components/cascader/LymCascader.vue.d.ts +3 -3
- package/dist/components/collapse/LymCollapse.vue.d.ts +60 -0
- package/dist/components/collapse/LymCollapseItem.vue.d.ts +44 -0
- package/dist/components/date/LymDatePicker.vue.d.ts +18 -0
- package/dist/components/date/LymDateTimePicker.vue.d.ts +18 -0
- package/dist/components/date/LymTimePicker.vue.d.ts +199 -0
- package/dist/components/generic-img/LymGenericImg.vue.d.ts +21 -3
- package/dist/components/loading/LymLoading.vue.d.ts +1 -1
- package/dist/components/notification/LymNotification.vue.d.ts +1 -1
- package/dist/components/table/LymTable.vue.d.ts +406 -0
- package/dist/components/table/LymTableColumn.vue.d.ts +270 -0
- package/dist/components/tabs/LymTabPane.vue.d.ts +3 -3
- package/dist/components/tabs/LymTabs.vue.d.ts +15 -15
- package/dist/components/tree/LymTree.vue.d.ts +7 -7
- package/dist/components/tree/LymTreeNode.vue.d.ts +6 -6
- package/dist/components/tree/LymTreeSelect.vue.d.ts +15 -15
- package/dist/global.d.ts +24 -5
- package/dist/index.d.ts +21 -2
- package/dist/luyoumin-ui.es.js +34936 -25
- package/dist/luyoumin-ui.umd.js +1 -40
- package/dist/style.css +1 -1
- package/dist/utils/number_utils.d.ts +1 -0
- package/dist/utils/string_utils.d.ts +5 -0
- package/package.json +1 -1
- package/src/global.d.ts +24 -5
- package/src/style.css +17 -13
- package/dist/charts-data-BRZf_apm.js +0 -49278
- package/dist/components/echarts/LymEcharts.vue.d.ts +0 -3
- package/dist/components/echarts/charts-data-deal.d.ts +0 -1474
- package/dist/components/echarts/charts-data.d.ts +0 -17190
- package/dist/components/echarts/data-filter.d.ts +0 -214
- package/dist/components/echarts/svg-list.d.ts +0 -10
- package/dist/index-BC0fg8VO.js +0 -105933
package/README.md
CHANGED
|
@@ -15,4 +15,15 @@ This template should help get you started developing with Vue 3 and TypeScript i
|
|
|
15
15
|
import 'luyoumin-ui/dist/style.css';
|
|
16
16
|
const app = createApp(App);
|
|
17
17
|
app.use(LymUi);
|
|
18
|
-
app.mount("#app");
|
|
18
|
+
app.mount("#app");
|
|
19
|
+
|
|
20
|
+
// npm 发布流程:
|
|
21
|
+
// 1、npm login (输入账号密码和邮箱验证码登录,账号:luyoumin,密码:luyoumin19936871)
|
|
22
|
+
// 2、npm publish (每次上传需要更改版本号)
|
|
23
|
+
// 双因素认证名:lym-2fa-token
|
|
24
|
+
// 双因素认证代码:
|
|
25
|
+
081952eefa03b453cf87db2c16b9f7919177fc57b9dc54d24c983f10491ad14a
|
|
26
|
+
de3cf9a279a1b7f7d2983bda551ad568dac4f8709cc57786d65502962efaa207
|
|
27
|
+
d6cdf3b0ca1350a7234deb891e8b98f4bee09998983ca1b249bd0c1a04d82894
|
|
28
|
+
fc62c95f158d8f0348af82f9083819982d6f6e90b6119ce73a0842fb403124ea
|
|
29
|
+
6e742bd91058094fca1c63caf81d8f917c98d9036998785484dd5e956b3d437b
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
4
|
+
value: {
|
|
5
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
6
|
+
default: boolean;
|
|
7
|
+
};
|
|
8
|
+
max: {
|
|
9
|
+
type: NumberConstructor;
|
|
10
|
+
default: number;
|
|
11
|
+
};
|
|
12
|
+
isDot: {
|
|
13
|
+
type: BooleanConstructor;
|
|
14
|
+
default: boolean;
|
|
15
|
+
};
|
|
16
|
+
hidden: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
type: {
|
|
21
|
+
type: PropType<"default" | "primary" | "success" | "info" | "warning" | "danger">;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
position: {
|
|
25
|
+
type: PropType<"top-left" | "top-right" | "bottom-left" | "bottom-right">;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
showZero: {
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
32
|
+
bgColor: {
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
default: string;
|
|
35
|
+
};
|
|
36
|
+
offset: {
|
|
37
|
+
type: {
|
|
38
|
+
(arrayLength: number): Number[];
|
|
39
|
+
(...items: Number[]): Number[];
|
|
40
|
+
new (arrayLength: number): Number[];
|
|
41
|
+
new (...items: Number[]): Number[];
|
|
42
|
+
isArray(arg: any): arg is any[];
|
|
43
|
+
readonly prototype: any[];
|
|
44
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
45
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
46
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
47
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
48
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
49
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
50
|
+
};
|
|
51
|
+
default: () => number[];
|
|
52
|
+
};
|
|
53
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
54
|
+
"update:modelValue": (val: any) => void;
|
|
55
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
56
|
+
value: {
|
|
57
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
58
|
+
default: boolean;
|
|
59
|
+
};
|
|
60
|
+
max: {
|
|
61
|
+
type: NumberConstructor;
|
|
62
|
+
default: number;
|
|
63
|
+
};
|
|
64
|
+
isDot: {
|
|
65
|
+
type: BooleanConstructor;
|
|
66
|
+
default: boolean;
|
|
67
|
+
};
|
|
68
|
+
hidden: {
|
|
69
|
+
type: BooleanConstructor;
|
|
70
|
+
default: boolean;
|
|
71
|
+
};
|
|
72
|
+
type: {
|
|
73
|
+
type: PropType<"default" | "primary" | "success" | "info" | "warning" | "danger">;
|
|
74
|
+
default: string;
|
|
75
|
+
};
|
|
76
|
+
position: {
|
|
77
|
+
type: PropType<"top-left" | "top-right" | "bottom-left" | "bottom-right">;
|
|
78
|
+
default: string;
|
|
79
|
+
};
|
|
80
|
+
showZero: {
|
|
81
|
+
type: BooleanConstructor;
|
|
82
|
+
default: boolean;
|
|
83
|
+
};
|
|
84
|
+
bgColor: {
|
|
85
|
+
type: StringConstructor;
|
|
86
|
+
default: string;
|
|
87
|
+
};
|
|
88
|
+
offset: {
|
|
89
|
+
type: {
|
|
90
|
+
(arrayLength: number): Number[];
|
|
91
|
+
(...items: Number[]): Number[];
|
|
92
|
+
new (arrayLength: number): Number[];
|
|
93
|
+
new (...items: Number[]): Number[];
|
|
94
|
+
isArray(arg: any): arg is any[];
|
|
95
|
+
readonly prototype: any[];
|
|
96
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
97
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
98
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
99
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
100
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
101
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
102
|
+
};
|
|
103
|
+
default: () => number[];
|
|
104
|
+
};
|
|
105
|
+
}>> & {
|
|
106
|
+
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
107
|
+
}, {
|
|
108
|
+
type: "default" | "primary" | "success" | "info" | "warning" | "danger";
|
|
109
|
+
value: string | number;
|
|
110
|
+
max: number;
|
|
111
|
+
isDot: boolean;
|
|
112
|
+
hidden: boolean;
|
|
113
|
+
position: "top-left" | "top-right" | "bottom-left" | "bottom-right";
|
|
114
|
+
showZero: boolean;
|
|
115
|
+
bgColor: string;
|
|
116
|
+
offset: Number[];
|
|
117
|
+
}, {}>, {
|
|
118
|
+
default?(_: {}): any;
|
|
119
|
+
}>;
|
|
120
|
+
export default _default;
|
|
121
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
122
|
+
new (): {
|
|
123
|
+
$slots: S;
|
|
124
|
+
};
|
|
125
|
+
};
|
|
@@ -13,7 +13,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
13
13
|
default: () => null;
|
|
14
14
|
};
|
|
15
15
|
direction: {
|
|
16
|
-
type: PropType<"
|
|
16
|
+
type: PropType<"top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end" | "right" | "right-start" | "right-end">;
|
|
17
17
|
default: string;
|
|
18
18
|
};
|
|
19
19
|
bgColor: {
|
|
@@ -25,19 +25,19 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
25
25
|
default: string;
|
|
26
26
|
};
|
|
27
27
|
zIndex: {
|
|
28
|
-
type: (
|
|
28
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
29
29
|
default: number;
|
|
30
30
|
};
|
|
31
31
|
offsetX: {
|
|
32
|
-
type: (
|
|
32
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
33
33
|
default: number;
|
|
34
34
|
};
|
|
35
35
|
offsetY: {
|
|
36
|
-
type: (
|
|
36
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
37
37
|
default: number;
|
|
38
38
|
};
|
|
39
39
|
fontSize: {
|
|
40
|
-
type: (
|
|
40
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
41
41
|
default: string;
|
|
42
42
|
};
|
|
43
43
|
color: {
|
|
@@ -67,7 +67,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
67
67
|
default: () => null;
|
|
68
68
|
};
|
|
69
69
|
direction: {
|
|
70
|
-
type: PropType<"
|
|
70
|
+
type: PropType<"top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end" | "right" | "right-start" | "right-end">;
|
|
71
71
|
default: string;
|
|
72
72
|
};
|
|
73
73
|
bgColor: {
|
|
@@ -79,19 +79,19 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
79
79
|
default: string;
|
|
80
80
|
};
|
|
81
81
|
zIndex: {
|
|
82
|
-
type: (
|
|
82
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
83
83
|
default: number;
|
|
84
84
|
};
|
|
85
85
|
offsetX: {
|
|
86
|
-
type: (
|
|
86
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
87
87
|
default: number;
|
|
88
88
|
};
|
|
89
89
|
offsetY: {
|
|
90
|
-
type: (
|
|
90
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
91
91
|
default: number;
|
|
92
92
|
};
|
|
93
93
|
fontSize: {
|
|
94
|
-
type: (
|
|
94
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
95
95
|
default: string;
|
|
96
96
|
};
|
|
97
97
|
color: {
|
|
@@ -109,16 +109,16 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
109
109
|
}>> & {
|
|
110
110
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
111
111
|
}, {
|
|
112
|
-
color: string;
|
|
113
112
|
modelValue: boolean;
|
|
113
|
+
zIndex: string | number;
|
|
114
114
|
fontSize: string | number;
|
|
115
|
-
positionTarget: HTMLElement;
|
|
116
|
-
direction: "left" | "right" | "bottom" | "top" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
|
|
117
115
|
bgColor: string;
|
|
116
|
+
positionTarget: HTMLElement;
|
|
117
|
+
direction: "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end" | "right" | "right-start" | "right-end";
|
|
118
118
|
maxW: string;
|
|
119
|
-
zIndex: string | number;
|
|
120
119
|
offsetX: string | number;
|
|
121
120
|
offsetY: string | number;
|
|
121
|
+
color: string;
|
|
122
122
|
borderColor: string;
|
|
123
123
|
triangleBgColor: string;
|
|
124
124
|
}, {}>, {
|
|
@@ -46,7 +46,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
46
46
|
default: string;
|
|
47
47
|
};
|
|
48
48
|
iconSize: {
|
|
49
|
-
type: (
|
|
49
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
50
50
|
default: string;
|
|
51
51
|
};
|
|
52
52
|
loading: {
|
|
@@ -114,7 +114,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
114
114
|
default: string;
|
|
115
115
|
};
|
|
116
116
|
iconSize: {
|
|
117
|
-
type: (
|
|
117
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
118
118
|
default: string;
|
|
119
119
|
};
|
|
120
120
|
loading: {
|
|
@@ -137,16 +137,16 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
137
137
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
138
138
|
onClick?: (() => any) | undefined;
|
|
139
139
|
}, {
|
|
140
|
-
round: boolean;
|
|
141
|
-
type: "default" | "primary" | "success" | "info" | "warning" | "danger";
|
|
142
140
|
circle: boolean;
|
|
141
|
+
padding: string;
|
|
142
|
+
type: "default" | "primary" | "success" | "info" | "warning" | "danger";
|
|
143
143
|
fontSize: string;
|
|
144
144
|
fontWeight: string;
|
|
145
|
-
disabled: boolean;
|
|
146
|
-
padding: string;
|
|
147
145
|
borderRadius: string;
|
|
146
|
+
round: boolean;
|
|
148
147
|
circlePadding: string;
|
|
149
148
|
plain: boolean;
|
|
149
|
+
disabled: boolean;
|
|
150
150
|
icon: string;
|
|
151
151
|
iconSize: string | number;
|
|
152
152
|
loading: boolean;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
4
|
+
shadow: {
|
|
5
|
+
type: PropType<"always" | "never" | "hover">;
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
|
+
"update:modelValue": (val: any) => void;
|
|
10
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
11
|
+
shadow: {
|
|
12
|
+
type: PropType<"always" | "never" | "hover">;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
}>> & {
|
|
16
|
+
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
17
|
+
}, {
|
|
18
|
+
shadow: "always" | "never" | "hover";
|
|
19
|
+
}, {}>, {
|
|
20
|
+
header?(_: {}): any;
|
|
21
|
+
default?(_: {}): any;
|
|
22
|
+
footer?(_: {}): any;
|
|
23
|
+
}>;
|
|
24
|
+
export default _default;
|
|
25
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
26
|
+
new (): {
|
|
27
|
+
$slots: S;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
4
|
+
data: {
|
|
5
|
+
type: {
|
|
6
|
+
(arrayLength: number): any[];
|
|
7
|
+
(...items: any[]): any[];
|
|
8
|
+
new (arrayLength: number): any[];
|
|
9
|
+
new (...items: any[]): any[];
|
|
10
|
+
isArray(arg: any): arg is any[];
|
|
11
|
+
readonly prototype: any[];
|
|
12
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
13
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
14
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
15
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
16
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
17
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
18
|
+
};
|
|
19
|
+
default(): never[];
|
|
20
|
+
};
|
|
21
|
+
height: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
width: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
29
|
+
initialIndex: {
|
|
30
|
+
type: NumberConstructor;
|
|
31
|
+
default: number;
|
|
32
|
+
};
|
|
33
|
+
trigger: {
|
|
34
|
+
type: PropType<"click" | "hover">;
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
autoplay: {
|
|
38
|
+
type: BooleanConstructor;
|
|
39
|
+
default: boolean;
|
|
40
|
+
};
|
|
41
|
+
interval: {
|
|
42
|
+
type: NumberConstructor;
|
|
43
|
+
default: number;
|
|
44
|
+
};
|
|
45
|
+
indicatorPosition: {
|
|
46
|
+
type: PropType<"" | "none" | "outside">;
|
|
47
|
+
default: string;
|
|
48
|
+
};
|
|
49
|
+
indicatorActiveColor: {
|
|
50
|
+
type: StringConstructor;
|
|
51
|
+
default: string;
|
|
52
|
+
};
|
|
53
|
+
indicatorColor: {
|
|
54
|
+
type: StringConstructor;
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
arrow: {
|
|
58
|
+
type: PropType<"always" | "never" | "hover">;
|
|
59
|
+
default: string;
|
|
60
|
+
};
|
|
61
|
+
type: {
|
|
62
|
+
type: PropType<"" | "card">;
|
|
63
|
+
default: string;
|
|
64
|
+
};
|
|
65
|
+
loop: {
|
|
66
|
+
type: BooleanConstructor;
|
|
67
|
+
default: boolean;
|
|
68
|
+
};
|
|
69
|
+
direction: {
|
|
70
|
+
type: PropType<"horizontal" | "vertical">;
|
|
71
|
+
default: string;
|
|
72
|
+
};
|
|
73
|
+
pauseOnHover: {
|
|
74
|
+
type: BooleanConstructor;
|
|
75
|
+
default: boolean;
|
|
76
|
+
};
|
|
77
|
+
motionBlur: {
|
|
78
|
+
type: BooleanConstructor;
|
|
79
|
+
default: boolean;
|
|
80
|
+
};
|
|
81
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
82
|
+
"update:modelValue": (val: any) => void;
|
|
83
|
+
change: (val: any) => void;
|
|
84
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
85
|
+
data: {
|
|
86
|
+
type: {
|
|
87
|
+
(arrayLength: number): any[];
|
|
88
|
+
(...items: any[]): any[];
|
|
89
|
+
new (arrayLength: number): any[];
|
|
90
|
+
new (...items: any[]): any[];
|
|
91
|
+
isArray(arg: any): arg is any[];
|
|
92
|
+
readonly prototype: any[];
|
|
93
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
94
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
95
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
96
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
97
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
98
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
99
|
+
};
|
|
100
|
+
default(): never[];
|
|
101
|
+
};
|
|
102
|
+
height: {
|
|
103
|
+
type: StringConstructor;
|
|
104
|
+
default: string;
|
|
105
|
+
};
|
|
106
|
+
width: {
|
|
107
|
+
type: StringConstructor;
|
|
108
|
+
default: string;
|
|
109
|
+
};
|
|
110
|
+
initialIndex: {
|
|
111
|
+
type: NumberConstructor;
|
|
112
|
+
default: number;
|
|
113
|
+
};
|
|
114
|
+
trigger: {
|
|
115
|
+
type: PropType<"click" | "hover">;
|
|
116
|
+
default: string;
|
|
117
|
+
};
|
|
118
|
+
autoplay: {
|
|
119
|
+
type: BooleanConstructor;
|
|
120
|
+
default: boolean;
|
|
121
|
+
};
|
|
122
|
+
interval: {
|
|
123
|
+
type: NumberConstructor;
|
|
124
|
+
default: number;
|
|
125
|
+
};
|
|
126
|
+
indicatorPosition: {
|
|
127
|
+
type: PropType<"" | "none" | "outside">;
|
|
128
|
+
default: string;
|
|
129
|
+
};
|
|
130
|
+
indicatorActiveColor: {
|
|
131
|
+
type: StringConstructor;
|
|
132
|
+
default: string;
|
|
133
|
+
};
|
|
134
|
+
indicatorColor: {
|
|
135
|
+
type: StringConstructor;
|
|
136
|
+
default: string;
|
|
137
|
+
};
|
|
138
|
+
arrow: {
|
|
139
|
+
type: PropType<"always" | "never" | "hover">;
|
|
140
|
+
default: string;
|
|
141
|
+
};
|
|
142
|
+
type: {
|
|
143
|
+
type: PropType<"" | "card">;
|
|
144
|
+
default: string;
|
|
145
|
+
};
|
|
146
|
+
loop: {
|
|
147
|
+
type: BooleanConstructor;
|
|
148
|
+
default: boolean;
|
|
149
|
+
};
|
|
150
|
+
direction: {
|
|
151
|
+
type: PropType<"horizontal" | "vertical">;
|
|
152
|
+
default: string;
|
|
153
|
+
};
|
|
154
|
+
pauseOnHover: {
|
|
155
|
+
type: BooleanConstructor;
|
|
156
|
+
default: boolean;
|
|
157
|
+
};
|
|
158
|
+
motionBlur: {
|
|
159
|
+
type: BooleanConstructor;
|
|
160
|
+
default: boolean;
|
|
161
|
+
};
|
|
162
|
+
}>> & {
|
|
163
|
+
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
164
|
+
onChange?: ((val: any) => any) | undefined;
|
|
165
|
+
}, {
|
|
166
|
+
data: any[];
|
|
167
|
+
width: string;
|
|
168
|
+
type: "" | "card";
|
|
169
|
+
direction: "horizontal" | "vertical";
|
|
170
|
+
height: string;
|
|
171
|
+
initialIndex: number;
|
|
172
|
+
trigger: "click" | "hover";
|
|
173
|
+
autoplay: boolean;
|
|
174
|
+
interval: number;
|
|
175
|
+
indicatorPosition: "" | "none" | "outside";
|
|
176
|
+
indicatorActiveColor: string;
|
|
177
|
+
indicatorColor: string;
|
|
178
|
+
arrow: "always" | "never" | "hover";
|
|
179
|
+
loop: boolean;
|
|
180
|
+
pauseOnHover: boolean;
|
|
181
|
+
motionBlur: boolean;
|
|
182
|
+
}, {}>, {
|
|
183
|
+
default?(_: {
|
|
184
|
+
item: any;
|
|
185
|
+
}): any;
|
|
186
|
+
}>;
|
|
187
|
+
export default _default;
|
|
188
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
189
|
+
new (): {
|
|
190
|
+
$slots: S;
|
|
191
|
+
};
|
|
192
|
+
};
|
|
@@ -84,14 +84,14 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
84
84
|
onChange?: ((val: boolean) => any) | undefined;
|
|
85
85
|
"onUpdate:disabled"?: ((val: any) => any) | undefined;
|
|
86
86
|
}, {
|
|
87
|
+
size: number;
|
|
87
88
|
label: string;
|
|
88
89
|
modelValue: boolean;
|
|
89
|
-
|
|
90
|
+
value: string;
|
|
90
91
|
disabled: boolean;
|
|
91
92
|
labelSpace: string;
|
|
92
93
|
labelFontSize: string;
|
|
93
94
|
isCircle: boolean;
|
|
94
|
-
value: string;
|
|
95
95
|
isIndeterminate: boolean;
|
|
96
96
|
}, {}>;
|
|
97
97
|
export default _default;
|
|
@@ -58,8 +58,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
58
58
|
onChange?: ((val: any) => any) | undefined;
|
|
59
59
|
}, {
|
|
60
60
|
modelValue: any[];
|
|
61
|
-
max: number;
|
|
62
61
|
singleCheck: boolean;
|
|
62
|
+
max: number;
|
|
63
63
|
}, {}>, {
|
|
64
64
|
default?(_: {}): any;
|
|
65
65
|
}>;
|
|
@@ -24,6 +24,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
24
24
|
};
|
|
25
25
|
default(): never[];
|
|
26
26
|
};
|
|
27
|
+
disabled: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
27
31
|
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
28
32
|
"update:modelValue": (val: any) => void;
|
|
29
33
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -52,10 +56,15 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
52
56
|
};
|
|
53
57
|
default(): never[];
|
|
54
58
|
};
|
|
59
|
+
disabled: {
|
|
60
|
+
type: BooleanConstructor;
|
|
61
|
+
default: boolean;
|
|
62
|
+
};
|
|
55
63
|
}>> & {
|
|
56
64
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
57
65
|
}, {
|
|
58
66
|
modelValue: string;
|
|
67
|
+
disabled: boolean;
|
|
59
68
|
showAlpha: boolean;
|
|
60
69
|
predefine: string[];
|
|
61
70
|
}, {}>;
|
|
@@ -109,21 +109,21 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
109
109
|
default: boolean;
|
|
110
110
|
};
|
|
111
111
|
}>> & {
|
|
112
|
-
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
113
112
|
onClose?: (() => any) | undefined;
|
|
113
|
+
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
114
114
|
}, {
|
|
115
115
|
title: string;
|
|
116
|
-
top: string;
|
|
117
116
|
modelValue: boolean;
|
|
118
|
-
padding: string;
|
|
119
117
|
zIndex: number;
|
|
120
118
|
width: string;
|
|
119
|
+
padding: string;
|
|
121
120
|
isTitleCenter: boolean;
|
|
122
121
|
isFooterCenter: boolean;
|
|
123
122
|
canCloseByClickCover: boolean;
|
|
124
123
|
showClose: boolean;
|
|
125
124
|
bodyMaxH: string;
|
|
126
125
|
alignTop: boolean;
|
|
126
|
+
top: string;
|
|
127
127
|
modal: boolean;
|
|
128
128
|
}, {}>, {
|
|
129
129
|
header?(_: {
|
|
@@ -6,7 +6,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
6
6
|
default: string;
|
|
7
7
|
};
|
|
8
8
|
contentPosition: {
|
|
9
|
-
type: PropType<"
|
|
9
|
+
type: PropType<"left" | "right" | "center">;
|
|
10
10
|
default: string;
|
|
11
11
|
};
|
|
12
12
|
fontSize: {
|
|
@@ -43,7 +43,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
43
43
|
default: string;
|
|
44
44
|
};
|
|
45
45
|
contentPosition: {
|
|
46
|
-
type: PropType<"
|
|
46
|
+
type: PropType<"left" | "right" | "center">;
|
|
47
47
|
default: string;
|
|
48
48
|
};
|
|
49
49
|
fontSize: {
|
|
@@ -77,7 +77,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
77
77
|
}>>, {
|
|
78
78
|
fontSize: string;
|
|
79
79
|
direction: "horizontal" | "vertical";
|
|
80
|
-
contentPosition: "
|
|
80
|
+
contentPosition: "left" | "right" | "center";
|
|
81
81
|
lineColor: string;
|
|
82
82
|
lineStyle: "solid" | "dashed" | "dotted";
|
|
83
83
|
lineW: string;
|
|
@@ -104,21 +104,21 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
104
104
|
default: null;
|
|
105
105
|
};
|
|
106
106
|
}>> & {
|
|
107
|
-
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
108
107
|
onClose?: (() => any) | undefined;
|
|
108
|
+
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
109
109
|
onBeforeClose?: ((val: any) => any) | undefined;
|
|
110
110
|
}, {
|
|
111
|
+
size: string;
|
|
111
112
|
title: string;
|
|
112
113
|
modelValue: boolean;
|
|
113
|
-
size: string;
|
|
114
|
-
padding: string;
|
|
115
|
-
direction: "ltr" | "rtl" | "ttb" | "btt";
|
|
116
114
|
zIndex: number;
|
|
115
|
+
padding: string;
|
|
117
116
|
isTitleCenter: boolean;
|
|
118
117
|
isFooterCenter: boolean;
|
|
119
118
|
canCloseByClickCover: boolean;
|
|
120
119
|
showClose: boolean;
|
|
121
120
|
modal: boolean;
|
|
121
|
+
direction: "ltr" | "rtl" | "ttb" | "btt";
|
|
122
122
|
beforeClose: Function;
|
|
123
123
|
}, {}>, {
|
|
124
124
|
header?(_: {
|