luyoumin-ui 0.0.63 → 0.0.64
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/dist/components/LymBadge.vue.d.ts +1 -1
- package/dist/components/LymBubbleContainer.vue.d.ts +2 -2
- package/dist/components/LymButton.vue.d.ts +4 -4
- package/dist/components/LymCarousel.vue.d.ts +2 -2
- package/dist/components/LymCheckBox.vue.d.ts +2 -2
- package/dist/components/LymCheckBoxGroup.vue.d.ts +2 -2
- package/dist/components/LymColorPicker.vue.d.ts +1 -1
- package/dist/components/LymDialog.vue.d.ts +3 -3
- package/dist/components/LymDivider.vue.d.ts +1 -1
- package/dist/components/LymDrawer.vue.d.ts +3 -3
- package/dist/components/LymFormItem.vue.d.ts +1 -1
- package/dist/components/LymInput.vue.d.ts +6 -6
- package/dist/components/LymLink.vue.d.ts +2 -2
- package/dist/components/LymPagination.vue.d.ts +2 -2
- package/dist/components/LymProgress.vue.d.ts +1 -1
- package/dist/components/LymRate.vue.d.ts +3 -3
- package/dist/components/LymSelect.vue.d.ts +16 -7
- package/dist/components/LymSlider.vue.d.ts +3 -3
- package/dist/components/LymSteps.vue.d.ts +1 -1
- package/dist/components/LymSwitch.vue.d.ts +1 -1
- package/dist/components/LymTag.vue.d.ts +2 -2
- package/dist/components/cascader/LymCascader.vue.d.ts +2 -2
- package/dist/components/collapse/LymCollapseItem.vue.d.ts +1 -1
- package/dist/components/date/LymTimePicker.vue.d.ts +3 -3
- package/dist/components/generic-img/LymGenericImg.vue.d.ts +4 -4
- package/dist/components/loading/LymLoading.vue.d.ts +1 -1
- package/dist/components/notification/LymNotification.vue.d.ts +2 -2
- package/dist/components/table/LymTable.vue.d.ts +10 -10
- package/dist/components/table/LymTableColumn.vue.d.ts +4 -4
- package/dist/components/tabs/LymTabPane.vue.d.ts +1 -1
- package/dist/components/tabs/LymTabs.vue.d.ts +1 -1
- package/dist/components/tree/LymTree.vue.d.ts +4 -4
- package/dist/components/tree/LymTreeNode.vue.d.ts +3 -3
- package/dist/components/tree/LymTreeSelect.vue.d.ts +8 -8
- package/dist/luyoumin-ui.es.js +25 -11
- package/dist/luyoumin-ui.umd.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -106,10 +106,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
106
106
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
107
107
|
}, {
|
|
108
108
|
value: string | number;
|
|
109
|
+
type: "default" | "primary" | "success" | "info" | "warning" | "danger";
|
|
109
110
|
max: number;
|
|
110
111
|
isDot: boolean;
|
|
111
112
|
hidden: boolean;
|
|
112
|
-
type: "default" | "primary" | "success" | "info" | "warning" | "danger";
|
|
113
113
|
position: "top-left" | "top-right" | "bottom-left" | "bottom-right";
|
|
114
114
|
showZero: boolean;
|
|
115
115
|
bgColor: string;
|
|
@@ -109,15 +109,15 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
109
109
|
}>> & {
|
|
110
110
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
111
111
|
}, {
|
|
112
|
-
bgColor: string;
|
|
113
112
|
modelValue: boolean;
|
|
113
|
+
fontSize: string | number;
|
|
114
|
+
bgColor: string;
|
|
114
115
|
positionTarget: HTMLElement;
|
|
115
116
|
direction: "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end" | "right" | "right-start" | "right-end";
|
|
116
117
|
maxW: string;
|
|
117
118
|
zIndex: string | number;
|
|
118
119
|
offsetX: string | number;
|
|
119
120
|
offsetY: string | number;
|
|
120
|
-
fontSize: string | number;
|
|
121
121
|
color: string;
|
|
122
122
|
borderColor: string;
|
|
123
123
|
triangleBgColor: string;
|
|
@@ -134,19 +134,19 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
134
134
|
default: string;
|
|
135
135
|
};
|
|
136
136
|
}>> & {
|
|
137
|
-
onClick?: (() => any) | undefined;
|
|
138
137
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
138
|
+
onClick?: (() => any) | undefined;
|
|
139
139
|
}, {
|
|
140
|
+
disabled: boolean;
|
|
140
141
|
circle: boolean;
|
|
141
|
-
type: "default" | "primary" | "success" | "info" | "warning" | "danger";
|
|
142
142
|
fontSize: string;
|
|
143
|
+
padding: string;
|
|
144
|
+
type: "default" | "primary" | "success" | "info" | "warning" | "danger";
|
|
143
145
|
round: boolean;
|
|
144
146
|
fontWeight: string;
|
|
145
|
-
padding: string;
|
|
146
147
|
borderRadius: string;
|
|
147
148
|
circlePadding: string;
|
|
148
149
|
plain: boolean;
|
|
149
|
-
disabled: boolean;
|
|
150
150
|
icon: string;
|
|
151
151
|
iconSize: string | number;
|
|
152
152
|
loading: boolean;
|
|
@@ -160,13 +160,13 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
160
160
|
default: boolean;
|
|
161
161
|
};
|
|
162
162
|
}>> & {
|
|
163
|
-
onChange?: ((val: any) => any) | undefined;
|
|
164
163
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
164
|
+
onChange?: ((val: any) => any) | undefined;
|
|
165
165
|
}, {
|
|
166
166
|
data: any[];
|
|
167
|
+
width: string;
|
|
167
168
|
type: "" | "card";
|
|
168
169
|
direction: "horizontal" | "vertical";
|
|
169
|
-
width: string;
|
|
170
170
|
height: string;
|
|
171
171
|
initialIndex: number;
|
|
172
172
|
trigger: "click" | "hover";
|
|
@@ -80,15 +80,15 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
80
80
|
default: boolean;
|
|
81
81
|
};
|
|
82
82
|
}>> & {
|
|
83
|
-
onChange?: ((val: boolean) => any) | undefined;
|
|
84
83
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
84
|
+
onChange?: ((val: boolean) => any) | undefined;
|
|
85
85
|
"onUpdate:disabled"?: ((val: any) => any) | undefined;
|
|
86
86
|
}, {
|
|
87
|
+
disabled: boolean;
|
|
87
88
|
label: string;
|
|
88
89
|
value: string;
|
|
89
90
|
modelValue: boolean;
|
|
90
91
|
size: number;
|
|
91
|
-
disabled: boolean;
|
|
92
92
|
labelSpace: string;
|
|
93
93
|
labelFontSize: string;
|
|
94
94
|
isCircle: boolean;
|
|
@@ -54,11 +54,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
54
54
|
default: boolean;
|
|
55
55
|
};
|
|
56
56
|
}>> & {
|
|
57
|
-
onChange?: ((val: any) => any) | undefined;
|
|
58
57
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
58
|
+
onChange?: ((val: any) => any) | undefined;
|
|
59
59
|
}, {
|
|
60
|
-
max: number;
|
|
61
60
|
modelValue: any[];
|
|
61
|
+
max: number;
|
|
62
62
|
singleCheck: boolean;
|
|
63
63
|
}, {}>, {
|
|
64
64
|
default?(_: {}): any;
|
|
@@ -63,8 +63,8 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
63
63
|
}>> & {
|
|
64
64
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
65
65
|
}, {
|
|
66
|
-
modelValue: string;
|
|
67
66
|
disabled: boolean;
|
|
67
|
+
modelValue: string;
|
|
68
68
|
showAlpha: boolean;
|
|
69
69
|
predefine: string[];
|
|
70
70
|
}, {}>;
|
|
@@ -114,14 +114,14 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
114
114
|
}, {
|
|
115
115
|
title: string;
|
|
116
116
|
modelValue: boolean;
|
|
117
|
-
top: string;
|
|
118
|
-
zIndex: number;
|
|
119
117
|
width: string;
|
|
120
118
|
padding: string;
|
|
119
|
+
showClose: boolean;
|
|
120
|
+
top: string;
|
|
121
|
+
zIndex: number;
|
|
121
122
|
isTitleCenter: boolean;
|
|
122
123
|
isFooterCenter: boolean;
|
|
123
124
|
canCloseByClickCover: boolean;
|
|
124
|
-
showClose: boolean;
|
|
125
125
|
bodyMaxH: string;
|
|
126
126
|
alignTop: boolean;
|
|
127
127
|
modal: boolean;
|
|
@@ -75,8 +75,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
75
75
|
default: string;
|
|
76
76
|
};
|
|
77
77
|
}>>, {
|
|
78
|
-
direction: "horizontal" | "vertical";
|
|
79
78
|
fontSize: string;
|
|
79
|
+
direction: "horizontal" | "vertical";
|
|
80
80
|
contentPosition: "left" | "right" | "center";
|
|
81
81
|
lineColor: string;
|
|
82
82
|
lineStyle: "solid" | "dashed" | "dotted";
|
|
@@ -110,14 +110,14 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
110
110
|
}, {
|
|
111
111
|
title: string;
|
|
112
112
|
modelValue: boolean;
|
|
113
|
+
padding: string;
|
|
114
|
+
size: string;
|
|
115
|
+
showClose: boolean;
|
|
113
116
|
direction: "ltr" | "rtl" | "ttb" | "btt";
|
|
114
117
|
zIndex: number;
|
|
115
|
-
size: string;
|
|
116
|
-
padding: string;
|
|
117
118
|
isTitleCenter: boolean;
|
|
118
119
|
isFooterCenter: boolean;
|
|
119
120
|
canCloseByClickCover: boolean;
|
|
120
|
-
showClose: boolean;
|
|
121
121
|
modal: boolean;
|
|
122
122
|
beforeClose: Function;
|
|
123
123
|
}, {}>, {
|
|
@@ -77,8 +77,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
77
77
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
78
78
|
}, {
|
|
79
79
|
label: string;
|
|
80
|
-
trigger: "change" | "blur" | "submit";
|
|
81
80
|
required: boolean;
|
|
81
|
+
trigger: "change" | "blur" | "submit";
|
|
82
82
|
labelPosition: "top" | "left" | "right";
|
|
83
83
|
labelAlignType: "left" | "right";
|
|
84
84
|
labelWidth: string | number;
|
|
@@ -157,19 +157,19 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
157
157
|
default: number;
|
|
158
158
|
};
|
|
159
159
|
}>> & {
|
|
160
|
-
onBlur?: (() => any) | undefined;
|
|
161
160
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
161
|
+
onBlur?: (() => any) | undefined;
|
|
162
162
|
onFocuse?: (() => any) | undefined;
|
|
163
163
|
}, {
|
|
164
|
-
|
|
165
|
-
type: string;
|
|
164
|
+
disabled: boolean;
|
|
166
165
|
modelValue: string;
|
|
167
166
|
width: string | number;
|
|
168
|
-
|
|
169
|
-
|
|
167
|
+
clearable: boolean;
|
|
168
|
+
type: string;
|
|
170
169
|
placeholder: string;
|
|
170
|
+
max: number;
|
|
171
|
+
min: number;
|
|
171
172
|
maxlength: string;
|
|
172
|
-
clearable: boolean;
|
|
173
173
|
formatter: Function;
|
|
174
174
|
showPassword: boolean;
|
|
175
175
|
noSpaces: boolean;
|
|
@@ -87,10 +87,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
87
87
|
}>> & {
|
|
88
88
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
89
89
|
}, {
|
|
90
|
+
disabled: boolean;
|
|
90
91
|
type: "default" | "primary" | "success" | "info" | "warning" | "danger";
|
|
91
|
-
href: string;
|
|
92
92
|
target: "_self" | "_blank" | "_parent" | "_top" | "_mywindow";
|
|
93
|
-
|
|
93
|
+
href: string;
|
|
94
94
|
iconSize: string | number;
|
|
95
95
|
iconSpace: string;
|
|
96
96
|
hasUnderline: boolean;
|
|
@@ -160,16 +160,16 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
160
160
|
default: string;
|
|
161
161
|
};
|
|
162
162
|
}>> & {
|
|
163
|
-
onChange?: (() => any) | undefined;
|
|
164
163
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
164
|
+
onChange?: (() => any) | undefined;
|
|
165
165
|
onSizeChange?: ((val: any) => any) | undefined;
|
|
166
166
|
onCurrentChange?: ((val: any) => any) | undefined;
|
|
167
167
|
onPrevClick?: ((val: any) => any) | undefined;
|
|
168
168
|
onNextClick?: ((val: any) => any) | undefined;
|
|
169
169
|
}, {
|
|
170
|
+
disabled: boolean;
|
|
170
171
|
modelValue: Record<string, any>;
|
|
171
172
|
fontSize: string | number;
|
|
172
|
-
disabled: boolean;
|
|
173
173
|
iconSize: string | number;
|
|
174
174
|
background: boolean;
|
|
175
175
|
maxPageCount: number;
|
|
@@ -123,9 +123,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
123
123
|
default: boolean;
|
|
124
124
|
};
|
|
125
125
|
}>>, {
|
|
126
|
+
fontSize: number;
|
|
126
127
|
type: "circle" | "line" | "dashboard";
|
|
127
128
|
bgColor: string;
|
|
128
|
-
fontSize: number;
|
|
129
129
|
color: string;
|
|
130
130
|
transitionDuration: number;
|
|
131
131
|
indeterminate: boolean;
|
|
@@ -118,13 +118,13 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
118
118
|
default: string;
|
|
119
119
|
};
|
|
120
120
|
}>> & {
|
|
121
|
-
onChange?: (() => any) | undefined;
|
|
122
121
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
122
|
+
onChange?: (() => any) | undefined;
|
|
123
123
|
}, {
|
|
124
|
-
|
|
124
|
+
disabled: boolean;
|
|
125
125
|
modelValue: number;
|
|
126
126
|
size: number;
|
|
127
|
-
|
|
127
|
+
max: number;
|
|
128
128
|
icon: string;
|
|
129
129
|
allowHalf: boolean;
|
|
130
130
|
thresholds: any[];
|
|
@@ -117,6 +117,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
117
117
|
type: BooleanConstructor;
|
|
118
118
|
default: boolean;
|
|
119
119
|
};
|
|
120
|
+
needIntervalForPoints: {
|
|
121
|
+
type: BooleanConstructor;
|
|
122
|
+
default: boolean;
|
|
123
|
+
};
|
|
120
124
|
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
121
125
|
"update:modelValue": (val: any) => void;
|
|
122
126
|
selectCompleted: () => void;
|
|
@@ -239,25 +243,29 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
239
243
|
type: BooleanConstructor;
|
|
240
244
|
default: boolean;
|
|
241
245
|
};
|
|
246
|
+
needIntervalForPoints: {
|
|
247
|
+
type: BooleanConstructor;
|
|
248
|
+
default: boolean;
|
|
249
|
+
};
|
|
242
250
|
}>> & {
|
|
243
251
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
244
252
|
onSelectCompleted?: (() => any) | undefined;
|
|
245
253
|
}, {
|
|
246
|
-
modelValue: string | any[];
|
|
247
|
-
fontSize: string | number;
|
|
248
|
-
width: string | number;
|
|
249
|
-
padding: string;
|
|
250
254
|
disabled: boolean;
|
|
251
|
-
|
|
252
|
-
clearable: boolean;
|
|
255
|
+
modelValue: string | any[];
|
|
253
256
|
options: any[];
|
|
254
|
-
valueKey: string;
|
|
255
257
|
labelKey: string;
|
|
258
|
+
valueKey: string;
|
|
259
|
+
width: string | number;
|
|
256
260
|
ddbWidth: string | number;
|
|
261
|
+
fontSize: string | number;
|
|
262
|
+
padding: string;
|
|
257
263
|
scrollMaxH: string;
|
|
258
264
|
filterable: boolean;
|
|
259
265
|
remote: boolean;
|
|
260
266
|
remoteMethod: Function;
|
|
267
|
+
multiple: boolean;
|
|
268
|
+
clearable: boolean;
|
|
261
269
|
collapseTags: boolean;
|
|
262
270
|
collapseTagsTooltip: boolean;
|
|
263
271
|
isCascader: boolean;
|
|
@@ -266,6 +274,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
266
274
|
cascaderMultiple: boolean;
|
|
267
275
|
cascaderCheckStrictly: boolean;
|
|
268
276
|
cascaderShowAllLevels: boolean;
|
|
277
|
+
needIntervalForPoints: boolean;
|
|
269
278
|
}, {}>, {
|
|
270
279
|
selectedContent?(_: {
|
|
271
280
|
selectedData: any;
|
|
@@ -207,12 +207,12 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
207
207
|
}>> & {
|
|
208
208
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
209
209
|
}, {
|
|
210
|
-
|
|
210
|
+
disabled: boolean;
|
|
211
211
|
modelValue: number;
|
|
212
212
|
width: string;
|
|
213
|
-
height: string;
|
|
214
213
|
size: "" | "default" | "small" | "large";
|
|
215
|
-
|
|
214
|
+
max: number;
|
|
215
|
+
height: string;
|
|
216
216
|
vertical: boolean;
|
|
217
217
|
min: number;
|
|
218
218
|
step: number;
|
|
@@ -147,10 +147,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
147
147
|
}, {
|
|
148
148
|
data: any[];
|
|
149
149
|
modelValue: string | number;
|
|
150
|
+
valueKey: string;
|
|
150
151
|
fontSize: string | number;
|
|
151
152
|
color: string;
|
|
152
153
|
center: boolean;
|
|
153
|
-
valueKey: string;
|
|
154
154
|
lineSize: string | number;
|
|
155
155
|
orientation: "horizontal" | "vertical";
|
|
156
156
|
pointSize: string | number;
|
|
@@ -109,10 +109,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
109
109
|
}>> & {
|
|
110
110
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
111
111
|
}, {
|
|
112
|
+
disabled: boolean;
|
|
112
113
|
modelValue: string | number | boolean;
|
|
113
114
|
width: string | number;
|
|
114
115
|
height: string | number;
|
|
115
|
-
disabled: boolean;
|
|
116
116
|
loading: boolean;
|
|
117
117
|
activeColor: string;
|
|
118
118
|
activeValue: string | number | boolean;
|
|
@@ -65,11 +65,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
65
65
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
66
66
|
onClose?: (() => any) | undefined;
|
|
67
67
|
}, {
|
|
68
|
-
type: "primary" | "success" | "info" | "warning" | "danger";
|
|
69
68
|
modelValue: boolean;
|
|
70
69
|
fontSize: string | number;
|
|
71
|
-
round: boolean;
|
|
72
70
|
padding: string;
|
|
71
|
+
type: "primary" | "success" | "info" | "warning" | "danger";
|
|
72
|
+
round: boolean;
|
|
73
73
|
effect: "plain" | "light" | "dark";
|
|
74
74
|
closable: boolean;
|
|
75
75
|
}, {}>, {
|
|
@@ -142,10 +142,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
142
142
|
onCompleted?: (() => any) | undefined;
|
|
143
143
|
}, {
|
|
144
144
|
modelValue: any[];
|
|
145
|
-
multiple: boolean;
|
|
146
145
|
options: any[];
|
|
147
|
-
valueKey: string;
|
|
148
146
|
labelKey: string;
|
|
147
|
+
valueKey: string;
|
|
148
|
+
multiple: boolean;
|
|
149
149
|
levelW: string;
|
|
150
150
|
levelH: string;
|
|
151
151
|
expandTrigger: string;
|
|
@@ -29,8 +29,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
29
29
|
}>> & {
|
|
30
30
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
31
31
|
}, {
|
|
32
|
-
title: string;
|
|
33
32
|
disabled: boolean;
|
|
33
|
+
title: string;
|
|
34
34
|
identifier: string | number;
|
|
35
35
|
}, {}>, {
|
|
36
36
|
title?(_: {}): any;
|
|
@@ -168,18 +168,18 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
168
168
|
default: null;
|
|
169
169
|
};
|
|
170
170
|
}>> & {
|
|
171
|
+
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
171
172
|
onFocus?: ((val: any) => any) | undefined;
|
|
172
173
|
onBlur?: ((val: any) => any) | undefined;
|
|
173
174
|
onChange?: ((val: any) => any) | undefined;
|
|
174
|
-
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
175
175
|
onClear?: ((val: any) => any) | undefined;
|
|
176
176
|
"onVisible-change"?: ((val: any) => any) | undefined;
|
|
177
177
|
}, {
|
|
178
|
-
modelValue: boolean;
|
|
179
178
|
disabled: boolean;
|
|
179
|
+
modelValue: boolean;
|
|
180
|
+
clearable: boolean;
|
|
180
181
|
placeholder: string;
|
|
181
182
|
format: string;
|
|
182
|
-
clearable: boolean;
|
|
183
183
|
prefixIcon: string;
|
|
184
184
|
suffixIcon: string;
|
|
185
185
|
readonly: boolean;
|
|
@@ -10,11 +10,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
10
10
|
default: string;
|
|
11
11
|
};
|
|
12
12
|
size: {
|
|
13
|
-
type: (
|
|
13
|
+
type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
|
|
14
14
|
default: string;
|
|
15
15
|
};
|
|
16
16
|
hoverSize: {
|
|
17
|
-
type: (
|
|
17
|
+
type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
|
|
18
18
|
default: string;
|
|
19
19
|
};
|
|
20
20
|
fillColor: {
|
|
@@ -63,11 +63,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
63
63
|
default: string;
|
|
64
64
|
};
|
|
65
65
|
size: {
|
|
66
|
-
type: (
|
|
66
|
+
type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
|
|
67
67
|
default: string;
|
|
68
68
|
};
|
|
69
69
|
hoverSize: {
|
|
70
|
-
type: (
|
|
70
|
+
type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
|
|
71
71
|
default: string;
|
|
72
72
|
};
|
|
73
73
|
fillColor: {
|
|
@@ -106,9 +106,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
106
106
|
};
|
|
107
107
|
}>>, {
|
|
108
108
|
text: string;
|
|
109
|
+
target: HTMLElement;
|
|
109
110
|
bgColor: string;
|
|
110
111
|
zIndex: number;
|
|
111
|
-
target: HTMLElement;
|
|
112
112
|
icon: string;
|
|
113
113
|
iconSize: number;
|
|
114
114
|
iconColor: string;
|
|
@@ -87,11 +87,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
87
87
|
}>> & {
|
|
88
88
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
89
89
|
}, {
|
|
90
|
+
fontSize: number;
|
|
91
|
+
padding: string;
|
|
90
92
|
type: "default" | "success" | "warning" | "danger";
|
|
91
93
|
top: number;
|
|
92
|
-
fontSize: number;
|
|
93
94
|
maxWidth: number;
|
|
94
|
-
padding: string;
|
|
95
95
|
maxHeight: number;
|
|
96
96
|
content: string;
|
|
97
97
|
openDuration: number;
|
|
@@ -54,7 +54,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
54
54
|
default: string;
|
|
55
55
|
};
|
|
56
56
|
rowStyle: {
|
|
57
|
-
type: (
|
|
57
|
+
type: (FunctionConstructor | ObjectConstructor)[];
|
|
58
58
|
default(): {};
|
|
59
59
|
};
|
|
60
60
|
cellClassName: {
|
|
@@ -62,7 +62,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
62
62
|
default: string;
|
|
63
63
|
};
|
|
64
64
|
cellStyle: {
|
|
65
|
-
type: (
|
|
65
|
+
type: (FunctionConstructor | ObjectConstructor)[];
|
|
66
66
|
default(): {};
|
|
67
67
|
};
|
|
68
68
|
headerRowClassName: {
|
|
@@ -70,7 +70,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
70
70
|
default: string;
|
|
71
71
|
};
|
|
72
72
|
headerRowStyle: {
|
|
73
|
-
type: (
|
|
73
|
+
type: (FunctionConstructor | ObjectConstructor)[];
|
|
74
74
|
default(): {};
|
|
75
75
|
};
|
|
76
76
|
headerCellClassName: {
|
|
@@ -78,7 +78,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
78
78
|
default: string;
|
|
79
79
|
};
|
|
80
80
|
headerCellStyle: {
|
|
81
|
-
type: (
|
|
81
|
+
type: (FunctionConstructor | ObjectConstructor)[];
|
|
82
82
|
default(): {};
|
|
83
83
|
};
|
|
84
84
|
rowKey: {
|
|
@@ -231,7 +231,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
231
231
|
default: string;
|
|
232
232
|
};
|
|
233
233
|
rowStyle: {
|
|
234
|
-
type: (
|
|
234
|
+
type: (FunctionConstructor | ObjectConstructor)[];
|
|
235
235
|
default(): {};
|
|
236
236
|
};
|
|
237
237
|
cellClassName: {
|
|
@@ -239,7 +239,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
239
239
|
default: string;
|
|
240
240
|
};
|
|
241
241
|
cellStyle: {
|
|
242
|
-
type: (
|
|
242
|
+
type: (FunctionConstructor | ObjectConstructor)[];
|
|
243
243
|
default(): {};
|
|
244
244
|
};
|
|
245
245
|
headerRowClassName: {
|
|
@@ -247,7 +247,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
247
247
|
default: string;
|
|
248
248
|
};
|
|
249
249
|
headerRowStyle: {
|
|
250
|
-
type: (
|
|
250
|
+
type: (FunctionConstructor | ObjectConstructor)[];
|
|
251
251
|
default(): {};
|
|
252
252
|
};
|
|
253
253
|
headerCellClassName: {
|
|
@@ -255,7 +255,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
255
255
|
default: string;
|
|
256
256
|
};
|
|
257
257
|
headerCellStyle: {
|
|
258
|
-
type: (
|
|
258
|
+
type: (FunctionConstructor | ObjectConstructor)[];
|
|
259
259
|
default(): {};
|
|
260
260
|
};
|
|
261
261
|
rowKey: {
|
|
@@ -335,8 +335,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
335
335
|
default: boolean;
|
|
336
336
|
};
|
|
337
337
|
}>> & {
|
|
338
|
-
onSelect?: ((val: any) => any) | undefined;
|
|
339
338
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
339
|
+
onSelect?: ((val: any) => any) | undefined;
|
|
340
340
|
onCurrentChange?: ((val: any) => any) | undefined;
|
|
341
341
|
onSelectAll?: ((val: any) => any) | undefined;
|
|
342
342
|
onSelectionChange?: ((val: any) => any) | undefined;
|
|
@@ -357,8 +357,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
357
357
|
}, {
|
|
358
358
|
data: Record<string, any>;
|
|
359
359
|
modelValue: boolean;
|
|
360
|
-
height: string | number;
|
|
361
360
|
size: "" | "default" | "small" | "large";
|
|
361
|
+
height: string | number;
|
|
362
362
|
load: Function;
|
|
363
363
|
maxHeight: string | number;
|
|
364
364
|
stripe: boolean;
|
|
@@ -47,7 +47,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
47
47
|
default: null;
|
|
48
48
|
};
|
|
49
49
|
sortBy: {
|
|
50
|
-
type: (
|
|
50
|
+
type: (StringConstructor | FunctionConstructor | ObjectConstructor)[];
|
|
51
51
|
default: null;
|
|
52
52
|
};
|
|
53
53
|
sortOrders: {
|
|
@@ -160,7 +160,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
160
160
|
default: null;
|
|
161
161
|
};
|
|
162
162
|
sortBy: {
|
|
163
|
-
type: (
|
|
163
|
+
type: (StringConstructor | FunctionConstructor | ObjectConstructor)[];
|
|
164
164
|
default: null;
|
|
165
165
|
};
|
|
166
166
|
sortOrders: {
|
|
@@ -227,9 +227,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
227
227
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
228
228
|
}, {
|
|
229
229
|
label: string;
|
|
230
|
-
fixed: string | boolean;
|
|
231
|
-
type: "default" | "index" | "selection" | "expand";
|
|
232
230
|
width: string | number;
|
|
231
|
+
type: "default" | "index" | "selection" | "expand";
|
|
232
|
+
fixed: string | boolean;
|
|
233
233
|
index: number | Function;
|
|
234
234
|
align: "left" | "right" | "center";
|
|
235
235
|
prop: string;
|
|
@@ -45,8 +45,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
45
45
|
}>> & {
|
|
46
46
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
47
47
|
}, {
|
|
48
|
-
label: string;
|
|
49
48
|
disabled: boolean;
|
|
49
|
+
label: string;
|
|
50
50
|
closable: boolean;
|
|
51
51
|
identifier: string | number;
|
|
52
52
|
lazy: boolean;
|
|
@@ -157,9 +157,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
157
157
|
onTabRemove?: (() => any) | undefined;
|
|
158
158
|
onTabAdd?: (() => any) | undefined;
|
|
159
159
|
}, {
|
|
160
|
-
type: "" | "card" | "border-card";
|
|
161
160
|
modelValue: string | number;
|
|
162
161
|
fontSize: string | number;
|
|
162
|
+
type: "" | "card" | "border-card";
|
|
163
163
|
color: string;
|
|
164
164
|
fontWeight: string;
|
|
165
165
|
activeColor: string;
|
|
@@ -144,14 +144,14 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
144
144
|
default: boolean;
|
|
145
145
|
};
|
|
146
146
|
}>> & {
|
|
147
|
-
onChange?: ((val: any) => any) | undefined;
|
|
148
147
|
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
148
|
+
onChange?: ((val: any) => any) | undefined;
|
|
149
149
|
}, {
|
|
150
|
-
fontSize: number;
|
|
151
|
-
singleCheck: boolean;
|
|
152
|
-
valueKey: string;
|
|
153
150
|
labelKey: string;
|
|
151
|
+
valueKey: string;
|
|
152
|
+
fontSize: number;
|
|
154
153
|
checkStrictly: boolean;
|
|
154
|
+
singleCheck: boolean;
|
|
155
155
|
accordion: boolean;
|
|
156
156
|
childrenKey: string;
|
|
157
157
|
multipleCheck: boolean;
|