bkui-vue 1.0.3-beta.39 → 1.0.3-beta.40
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/index.cjs.js +2 -2
- package/dist/index.esm.js +3407 -3422
- package/dist/index.umd.js +2 -2
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/dialog/dialog.css +28 -31
- package/lib/dialog/dialog.less +18 -17
- package/lib/dialog/dialog.variable.css +28 -31
- package/lib/dialog/index.js +12 -8
- package/lib/info-box/info-box.css +6 -11
- package/lib/info-box/info-box.d.ts +1 -1
- package/lib/info-box/info-box.less +6 -10
- package/lib/info-box/info-box.variable.css +6 -11
- package/lib/modal/index.js +7 -9
- package/lib/modal/modal.css +10 -15
- package/lib/modal/modal.less +5 -5
- package/lib/modal/modal.variable.css +10 -15
- package/lib/timeline/index.d.ts +73 -44
- package/lib/timeline/index.js +45 -63
- package/lib/timeline/timeline.d.ts +42 -29
- package/package.json +1 -1
@@ -139,27 +139,22 @@
|
|
139
139
|
.bk-modal-ctx.bk-info-wrapper .bk-modal-wrapper .bk-modal-body {
|
140
140
|
border-radius: 2px;
|
141
141
|
}
|
142
|
-
.bk-modal-ctx.bk-info-wrapper .bk-modal-wrapper .bk-dialog-header {
|
143
|
-
padding: 24px 24px 0;
|
144
|
-
}
|
145
142
|
.bk-modal-ctx.bk-info-wrapper .bk-modal-wrapper .bk-dialog-header .bk-dialog-title {
|
146
|
-
|
147
|
-
margin: 15px 0 10px;
|
143
|
+
margin-top: 16px;
|
148
144
|
}
|
149
145
|
.bk-modal-ctx.bk-info-wrapper .bk-modal-wrapper .bk-modal-content {
|
150
|
-
height:
|
151
|
-
max-height:
|
152
|
-
min-height:
|
153
|
-
padding: 0 50px 10px;
|
146
|
+
height: initial;
|
147
|
+
max-height: initial;
|
148
|
+
min-height: initial;
|
154
149
|
word-break: break-all;
|
155
150
|
}
|
156
151
|
.bk-modal-ctx.bk-info-wrapper .bk-modal-wrapper .bk-modal-content .bk-info-sub-title {
|
157
|
-
margin-bottom: 10px;
|
158
152
|
text-align: center;
|
159
153
|
word-break: break-all;
|
160
154
|
}
|
161
155
|
.bk-modal-ctx.bk-info-wrapper .bk-modal-wrapper .bk-modal-footer {
|
162
|
-
|
156
|
+
height: initial;
|
157
|
+
margin-top: 24px;
|
163
158
|
background-color: #fff;
|
164
159
|
border-top: none;
|
165
160
|
}
|
@@ -167,11 +162,11 @@
|
|
167
162
|
min-width: 88px;
|
168
163
|
}
|
169
164
|
.bk-modal-ctx {
|
170
|
-
pointer-events: auto;
|
171
165
|
top: 0px;
|
172
166
|
left: 0px;
|
173
167
|
width: 100%;
|
174
168
|
height: 100%;
|
169
|
+
pointer-events: auto;
|
175
170
|
}
|
176
171
|
.bk-modal-ctx.--show {
|
177
172
|
position: fixed;
|
@@ -180,9 +175,9 @@
|
|
180
175
|
display: none;
|
181
176
|
}
|
182
177
|
.bk-modal-ctx .bk-modal-ctx-mask {
|
183
|
-
display: none;
|
184
|
-
left: 0;
|
185
178
|
top: 0;
|
179
|
+
left: 0;
|
180
|
+
display: none;
|
186
181
|
width: 100%;
|
187
182
|
height: 100%;
|
188
183
|
background-color: rgba(0, 0, 0, 0.6);
|
@@ -224,7 +219,7 @@
|
|
224
219
|
}
|
225
220
|
.bk-modal-wrapper .bk-modal-body {
|
226
221
|
height: 100%;
|
227
|
-
|
222
|
+
overflow: hidden;
|
228
223
|
background: #fff;
|
229
224
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
230
225
|
}
|
package/lib/timeline/index.d.ts
CHANGED
@@ -1,43 +1,54 @@
|
|
1
1
|
declare const BkTimeline: {
|
2
2
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
3
|
-
list: import("vue-types").
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
3
|
+
list: import("vue-types").VueTypeDef<{
|
4
|
+
tag: string;
|
5
|
+
content: string;
|
6
|
+
type: string;
|
7
|
+
size: string;
|
8
|
+
color: string;
|
9
|
+
icon: Function;
|
10
|
+
filled: boolean;
|
11
|
+
border: boolean;
|
12
|
+
}[]>;
|
8
13
|
titleAble: import("vue-types").VueTypeValidableDef<boolean> & {
|
9
14
|
default: boolean;
|
10
15
|
} & {
|
11
16
|
default: boolean;
|
12
17
|
};
|
13
|
-
extCls: import("vue-types").VueTypeValidableDef<string> & {
|
14
|
-
default: string;
|
15
|
-
};
|
16
18
|
}>> & {
|
17
19
|
onSelect?: (...args: any[]) => any;
|
18
20
|
}, {
|
19
|
-
defaultTimelines: import("vue").
|
20
|
-
|
21
|
+
defaultTimelines: import("vue").ShallowRef<{
|
22
|
+
tag: string;
|
23
|
+
content: string;
|
24
|
+
type: string;
|
25
|
+
size: string;
|
26
|
+
color: string;
|
27
|
+
icon: Function;
|
28
|
+
filled: boolean;
|
29
|
+
border: boolean;
|
30
|
+
}[]>;
|
31
|
+
handleTitleSelect: (item: any) => void;
|
21
32
|
resolveClassName: (cls: string) => string;
|
22
33
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "select"[], import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
23
|
-
list: import("vue-types").
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
34
|
+
list: import("vue-types").VueTypeDef<{
|
35
|
+
tag: string;
|
36
|
+
content: string;
|
37
|
+
type: string;
|
38
|
+
size: string;
|
39
|
+
color: string;
|
40
|
+
icon: Function;
|
41
|
+
filled: boolean;
|
42
|
+
border: boolean;
|
43
|
+
}[]>;
|
28
44
|
titleAble: import("vue-types").VueTypeValidableDef<boolean> & {
|
29
45
|
default: boolean;
|
30
46
|
} & {
|
31
47
|
default: boolean;
|
32
48
|
};
|
33
|
-
extCls: import("vue-types").VueTypeValidableDef<string> & {
|
34
|
-
default: string;
|
35
|
-
};
|
36
49
|
}>> & {
|
37
50
|
onSelect?: (...args: any[]) => any;
|
38
51
|
}, {
|
39
|
-
extCls: string;
|
40
|
-
list: unknown[];
|
41
52
|
titleAble: boolean;
|
42
53
|
}, true, {}, {}, {
|
43
54
|
P: {};
|
@@ -47,56 +58,74 @@ declare const BkTimeline: {
|
|
47
58
|
M: {};
|
48
59
|
Defaults: {};
|
49
60
|
}, Readonly<import("vue").ExtractPropTypes<{
|
50
|
-
list: import("vue-types").
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
61
|
+
list: import("vue-types").VueTypeDef<{
|
62
|
+
tag: string;
|
63
|
+
content: string;
|
64
|
+
type: string;
|
65
|
+
size: string;
|
66
|
+
color: string;
|
67
|
+
icon: Function;
|
68
|
+
filled: boolean;
|
69
|
+
border: boolean;
|
70
|
+
}[]>;
|
55
71
|
titleAble: import("vue-types").VueTypeValidableDef<boolean> & {
|
56
72
|
default: boolean;
|
57
73
|
} & {
|
58
74
|
default: boolean;
|
59
75
|
};
|
60
|
-
extCls: import("vue-types").VueTypeValidableDef<string> & {
|
61
|
-
default: string;
|
62
|
-
};
|
63
76
|
}>> & {
|
64
77
|
onSelect?: (...args: any[]) => any;
|
65
78
|
}, {
|
66
|
-
defaultTimelines: import("vue").
|
67
|
-
|
79
|
+
defaultTimelines: import("vue").ShallowRef<{
|
80
|
+
tag: string;
|
81
|
+
content: string;
|
82
|
+
type: string;
|
83
|
+
size: string;
|
84
|
+
color: string;
|
85
|
+
icon: Function;
|
86
|
+
filled: boolean;
|
87
|
+
border: boolean;
|
88
|
+
}[]>;
|
89
|
+
handleTitleSelect: (item: any) => void;
|
68
90
|
resolveClassName: (cls: string) => string;
|
69
91
|
}, {}, {}, {}, {
|
70
|
-
extCls: string;
|
71
|
-
list: unknown[];
|
72
92
|
titleAble: boolean;
|
73
93
|
}>;
|
74
94
|
__isFragment?: never;
|
75
95
|
__isTeleport?: never;
|
76
96
|
__isSuspense?: never;
|
77
97
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
78
|
-
list: import("vue-types").
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
98
|
+
list: import("vue-types").VueTypeDef<{
|
99
|
+
tag: string;
|
100
|
+
content: string;
|
101
|
+
type: string;
|
102
|
+
size: string;
|
103
|
+
color: string;
|
104
|
+
icon: Function;
|
105
|
+
filled: boolean;
|
106
|
+
border: boolean;
|
107
|
+
}[]>;
|
83
108
|
titleAble: import("vue-types").VueTypeValidableDef<boolean> & {
|
84
109
|
default: boolean;
|
85
110
|
} & {
|
86
111
|
default: boolean;
|
87
112
|
};
|
88
|
-
extCls: import("vue-types").VueTypeValidableDef<string> & {
|
89
|
-
default: string;
|
90
|
-
};
|
91
113
|
}>> & {
|
92
114
|
onSelect?: (...args: any[]) => any;
|
93
115
|
}, {
|
94
|
-
defaultTimelines: import("vue").
|
95
|
-
|
116
|
+
defaultTimelines: import("vue").ShallowRef<{
|
117
|
+
tag: string;
|
118
|
+
content: string;
|
119
|
+
type: string;
|
120
|
+
size: string;
|
121
|
+
color: string;
|
122
|
+
icon: Function;
|
123
|
+
filled: boolean;
|
124
|
+
border: boolean;
|
125
|
+
}[]>;
|
126
|
+
handleTitleSelect: (item: any) => void;
|
96
127
|
resolveClassName: (cls: string) => string;
|
97
128
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "select"[], "select", {
|
98
|
-
extCls: string;
|
99
|
-
list: unknown[];
|
100
129
|
titleAble: boolean;
|
101
130
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[]>;
|
102
131
|
export default BkTimeline;
|
package/lib/timeline/index.js
CHANGED
@@ -48,7 +48,7 @@ function _typeof(o) {
|
|
48
48
|
;// CONCATENATED MODULE: external "vue"
|
49
49
|
var external_vue_x = y => { var x = {}; __webpack_require__.d(x, y); return x; }
|
50
50
|
var external_vue_y = x => () => x
|
51
|
-
const external_vue_namespaceObject = external_vue_x({ ["createVNode"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.createVNode, ["defineComponent"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.defineComponent, ["
|
51
|
+
const external_vue_namespaceObject = external_vue_x({ ["createVNode"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.createVNode, ["defineComponent"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.defineComponent, ["shallowRef"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.shallowRef, ["watch"]: () => __WEBPACK_EXTERNAL_MODULE_vue__.watch });
|
52
52
|
;// CONCATENATED MODULE: external "../config-provider"
|
53
53
|
var config_provider_x = y => { var x = {}; __webpack_require__.d(x, y); return x; }
|
54
54
|
var config_provider_y = x => () => x
|
@@ -85,9 +85,17 @@ const config_provider_namespaceObject = config_provider_x({ ["usePrefix"]: () =>
|
|
85
85
|
|
86
86
|
|
87
87
|
var timelineProps = {
|
88
|
-
list: shared_namespaceObject.PropTypes.
|
89
|
-
|
90
|
-
|
88
|
+
list: shared_namespaceObject.PropTypes.arrayOf(shared_namespaceObject.PropTypes.shape({
|
89
|
+
tag: String,
|
90
|
+
content: String,
|
91
|
+
type: String,
|
92
|
+
size: String,
|
93
|
+
color: String,
|
94
|
+
icon: Function,
|
95
|
+
filled: Boolean,
|
96
|
+
border: Boolean
|
97
|
+
}).isRequired),
|
98
|
+
titleAble: shared_namespaceObject.PropTypes.bool.def(false)
|
91
99
|
};
|
92
100
|
/* harmony default export */ const timeline = ((0,external_vue_namespaceObject.defineComponent)({
|
93
101
|
name: 'Timeline',
|
@@ -95,61 +103,35 @@ var timelineProps = {
|
|
95
103
|
emits: ['select'],
|
96
104
|
setup: function setup(props, _ref) {
|
97
105
|
var emit = _ref.emit;
|
98
|
-
var defaultTimelines = (0,external_vue_namespaceObject.
|
99
|
-
var
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
var _timeline$border;
|
104
|
-
defaults.push({
|
105
|
-
tag: timeline.tag,
|
106
|
-
content: timeline.content,
|
107
|
-
type: timeline.type,
|
108
|
-
size: timeline.size,
|
109
|
-
color: timeline.color,
|
110
|
-
icon: timeline.icon,
|
111
|
-
filled: timeline.filled,
|
112
|
-
border: (_timeline$border = timeline.border) !== null && _timeline$border !== void 0 ? _timeline$border : true
|
113
|
-
});
|
114
|
-
});
|
115
|
-
(_defaultTimelines$val = defaultTimelines.value).splice.apply(_defaultTimelines$val, [0, defaultTimelines.value.length].concat(defaults));
|
116
|
-
};
|
117
|
-
var init = function init() {
|
118
|
-
var _defaultTimelines$val2, _props$list;
|
119
|
-
(_defaultTimelines$val2 = defaultTimelines.value).splice.apply(_defaultTimelines$val2, [0, defaultTimelines.value.length].concat([{
|
120
|
-
tag: '步骤1',
|
121
|
-
content: '内容1'
|
122
|
-
}, {
|
123
|
-
tag: '步骤2',
|
124
|
-
content: '内容2'
|
125
|
-
}, {
|
126
|
-
tag: '步骤3',
|
127
|
-
content: '内容3'
|
128
|
-
}]));
|
129
|
-
if ((_props$list = props.list) !== null && _props$list !== void 0 && _props$list.length) {
|
130
|
-
updateTimelines(props.list);
|
131
|
-
}
|
132
|
-
};
|
133
|
-
var titleSelect = function titleSelect(item) {
|
134
|
-
try {
|
135
|
-
emit('select', item);
|
136
|
-
} catch (e) {
|
137
|
-
console.warn(e);
|
138
|
-
}
|
106
|
+
var defaultTimelines = (0,external_vue_namespaceObject.shallowRef)([]);
|
107
|
+
var _usePrefix = (0,config_provider_namespaceObject.usePrefix)(),
|
108
|
+
resolveClassName = _usePrefix.resolveClassName;
|
109
|
+
var handleTitleSelect = function handleTitleSelect(item) {
|
110
|
+
emit('select', item);
|
139
111
|
};
|
140
|
-
(0,external_vue_namespaceObject.onMounted)(init);
|
141
112
|
(0,external_vue_namespaceObject.watch)(function () {
|
142
113
|
return props.list;
|
143
114
|
}, function () {
|
144
|
-
|
115
|
+
defaultTimelines.value = props.list.map(function (item) {
|
116
|
+
var _item$border;
|
117
|
+
return {
|
118
|
+
tag: item.tag,
|
119
|
+
content: item.content,
|
120
|
+
type: item.type,
|
121
|
+
size: item.size,
|
122
|
+
color: item.color,
|
123
|
+
icon: item.icon,
|
124
|
+
filled: item.filled,
|
125
|
+
border: (_item$border = item.border) !== null && _item$border !== void 0 ? _item$border : true
|
126
|
+
};
|
127
|
+
});
|
145
128
|
}, {
|
129
|
+
immediate: true,
|
146
130
|
deep: true
|
147
131
|
});
|
148
|
-
var _usePrefix = (0,config_provider_namespaceObject.usePrefix)(),
|
149
|
-
resolveClassName = _usePrefix.resolveClassName;
|
150
132
|
return {
|
151
133
|
defaultTimelines: defaultTimelines,
|
152
|
-
|
134
|
+
handleTitleSelect: handleTitleSelect,
|
153
135
|
resolveClassName: resolveClassName
|
154
136
|
};
|
155
137
|
},
|
@@ -157,10 +139,7 @@ var timelineProps = {
|
|
157
139
|
var _this = this;
|
158
140
|
var isIcon = function isIcon(timeline) {
|
159
141
|
var icon = timeline.icon;
|
160
|
-
|
161
|
-
return _typeof(icon) === 'object' || typeof icon === 'function';
|
162
|
-
}
|
163
|
-
return false;
|
142
|
+
return _typeof(icon) === 'object' || typeof icon === 'function';
|
164
143
|
};
|
165
144
|
var makeClass = function makeClass(item) {
|
166
145
|
var timelineClsPrefix = _this.resolveClassName('timeline');
|
@@ -173,21 +152,24 @@ var timelineProps = {
|
|
173
152
|
var timelinesCls = (0,shared_namespaceObject.classes)({}, "".concat(timelineClsPrefix, " ").concat(timelineThemeCls, " ").concat(timelineSizeCls, " ").concat(timelinesColorsCls, " ").concat(timelineFilledCls, " ").concat(timelineCustomIcon));
|
174
153
|
return timelinesCls;
|
175
154
|
};
|
176
|
-
var
|
177
|
-
|
178
|
-
|
179
|
-
|
155
|
+
var renderContent = function renderContent(item) {
|
156
|
+
if (_this.$slots.content) {
|
157
|
+
return (0,external_vue_namespaceObject.createVNode)("div", {
|
158
|
+
"class": "".concat(_this.resolveClassName('timeline-content'))
|
159
|
+
}, [_this.$slots.content(item)]);
|
160
|
+
}
|
161
|
+
return (0,external_vue_namespaceObject.createVNode)("div", {
|
180
162
|
"class": "".concat(_this.resolveClassName('timeline-content')),
|
181
163
|
"innerHTML": item.content
|
182
164
|
}, null);
|
183
165
|
};
|
184
166
|
return (0,external_vue_namespaceObject.createVNode)("ul", {
|
185
|
-
"class":
|
167
|
+
"class": this.resolveClassName('timeline')
|
186
168
|
}, [this.defaultTimelines.map(function (item) {
|
187
169
|
var _this$$slots$default, _this$$slots$default2, _this$$slots;
|
188
170
|
return (0,external_vue_namespaceObject.createVNode)("li", {
|
189
171
|
"class": ["".concat(_this.resolveClassName('timeline-dot')), makeClass(item)]
|
190
|
-
}, [isIcon(item)
|
172
|
+
}, [isIcon(item) && (0,external_vue_namespaceObject.createVNode)("div", {
|
191
173
|
"class": "".concat(_this.resolveClassName('timeline-icon')),
|
192
174
|
"style": {
|
193
175
|
border: item.border ? "2px solid ".concat(item.color) : '0px',
|
@@ -195,16 +177,16 @@ var timelineProps = {
|
|
195
177
|
}
|
196
178
|
}, [(0,external_vue_namespaceObject.createVNode)("span", {
|
197
179
|
"class": "".concat(_this.resolveClassName('timeline-icon-inner'))
|
198
|
-
}, [typeof item.icon === 'function' ? (0,external_vue_namespaceObject.createVNode)(item.icon, null, null) : item.icon])])
|
180
|
+
}, [typeof item.icon === 'function' ? (0,external_vue_namespaceObject.createVNode)(item.icon, null, null) : item.icon])]), (0,external_vue_namespaceObject.createVNode)("div", {
|
199
181
|
"class": "".concat(_this.resolveClassName('timeline-section'))
|
200
182
|
}, [(0,external_vue_namespaceObject.createVNode)("div", {
|
201
183
|
"class": "".concat(_this.resolveClassName('timeline-title')),
|
202
184
|
"onClick": function onClick() {
|
203
|
-
_this.
|
185
|
+
return _this.handleTitleSelect(item);
|
204
186
|
}
|
205
187
|
}, [(_this$$slots$default = (_this$$slots$default2 = (_this$$slots = _this.$slots)["default"]) === null || _this$$slots$default2 === void 0 ? void 0 : _this$$slots$default2.call(_this$$slots, item)) !== null && _this$$slots$default !== void 0 ? _this$$slots$default : (0,external_vue_namespaceObject.createVNode)("span", {
|
206
188
|
"innerHTML": item.tag
|
207
|
-
}, null)]),
|
189
|
+
}, null)]), renderContent(item)])]);
|
208
190
|
})]);
|
209
191
|
}
|
210
192
|
}));
|
@@ -25,58 +25,71 @@
|
|
25
25
|
*/
|
26
26
|
import { ExtractPropTypes } from 'vue';
|
27
27
|
declare const timelineProps: {
|
28
|
-
list: import("vue-types").
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
28
|
+
list: import("vue-types").VueTypeDef<{
|
29
|
+
tag: string;
|
30
|
+
content: string;
|
31
|
+
type: string;
|
32
|
+
size: string;
|
33
|
+
color: string;
|
34
|
+
icon: Function;
|
35
|
+
filled: boolean;
|
36
|
+
border: boolean;
|
37
|
+
}[]>;
|
33
38
|
titleAble: import("vue-types").VueTypeValidableDef<boolean> & {
|
34
39
|
default: boolean;
|
35
40
|
} & {
|
36
41
|
default: boolean;
|
37
42
|
};
|
38
|
-
extCls: import("vue-types").VueTypeValidableDef<string> & {
|
39
|
-
default: string;
|
40
|
-
};
|
41
43
|
};
|
42
|
-
export type TimelinePropTypes = ExtractPropTypes<typeof timelineProps
|
44
|
+
export type TimelinePropTypes = Readonly<ExtractPropTypes<typeof timelineProps>>;
|
43
45
|
declare const _default: import("vue").DefineComponent<{
|
44
|
-
list: import("vue-types").
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
46
|
+
list: import("vue-types").VueTypeDef<{
|
47
|
+
tag: string;
|
48
|
+
content: string;
|
49
|
+
type: string;
|
50
|
+
size: string;
|
51
|
+
color: string;
|
52
|
+
icon: Function;
|
53
|
+
filled: boolean;
|
54
|
+
border: boolean;
|
55
|
+
}[]>;
|
49
56
|
titleAble: import("vue-types").VueTypeValidableDef<boolean> & {
|
50
57
|
default: boolean;
|
51
58
|
} & {
|
52
59
|
default: boolean;
|
53
60
|
};
|
54
|
-
extCls: import("vue-types").VueTypeValidableDef<string> & {
|
55
|
-
default: string;
|
56
|
-
};
|
57
61
|
}, {
|
58
|
-
defaultTimelines: import("vue").
|
59
|
-
|
62
|
+
defaultTimelines: import("vue").ShallowRef<{
|
63
|
+
tag: string;
|
64
|
+
content: string;
|
65
|
+
type: string;
|
66
|
+
size: string;
|
67
|
+
color: string;
|
68
|
+
icon: Function;
|
69
|
+
filled: boolean;
|
70
|
+
border: boolean;
|
71
|
+
}[]>;
|
72
|
+
handleTitleSelect: (item: any) => void;
|
60
73
|
resolveClassName: (cls: string) => string;
|
61
74
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "select"[], "select", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
62
|
-
list: import("vue-types").
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
75
|
+
list: import("vue-types").VueTypeDef<{
|
76
|
+
tag: string;
|
77
|
+
content: string;
|
78
|
+
type: string;
|
79
|
+
size: string;
|
80
|
+
color: string;
|
81
|
+
icon: Function;
|
82
|
+
filled: boolean;
|
83
|
+
border: boolean;
|
84
|
+
}[]>;
|
67
85
|
titleAble: import("vue-types").VueTypeValidableDef<boolean> & {
|
68
86
|
default: boolean;
|
69
87
|
} & {
|
70
88
|
default: boolean;
|
71
89
|
};
|
72
|
-
extCls: import("vue-types").VueTypeValidableDef<string> & {
|
73
|
-
default: string;
|
74
|
-
};
|
75
90
|
}>> & {
|
76
91
|
onSelect?: (...args: any[]) => any;
|
77
92
|
}, {
|
78
|
-
extCls: string;
|
79
|
-
list: unknown[];
|
80
93
|
titleAble: boolean;
|
81
94
|
}, {}>;
|
82
95
|
export default _default;
|