persagy-vant 0.0.30 → 0.0.32
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 +11 -12
- package/bin/persagy-vant.mjs +63 -0
- package/es/cell/Cell.d.ts +34 -1
- package/es/cell/Cell.mjs +48 -12
- package/es/cell/index.css +1 -1
- package/es/cell/index.d.ts +20 -1
- package/es/cell/index.less +19 -0
- package/es/cell/var.less +1 -1
- package/es/collapse-item/CollapseItem.d.ts +25 -0
- package/es/collapse-item/index.d.ts +18 -0
- package/es/content-panel/ContentPanel.d.ts +46 -0
- package/es/content-panel/ContentPanel.mjs +72 -0
- package/es/content-panel/index.css +1 -0
- package/es/content-panel/index.d.ts +33 -0
- package/es/content-panel/index.less +54 -0
- package/es/content-panel/index.mjs +8 -0
- package/es/content-panel/style/index.mjs +11 -0
- package/es/content-panel/style/less.mjs +11 -0
- package/es/content-panel/var.css +0 -0
- package/es/content-panel/var.less +3 -0
- package/es/dialog/Dialog.d.ts +4 -0
- package/es/dialog/Dialog.mjs +14 -1
- package/es/dialog/function-call.d.ts +2 -0
- package/es/dialog/types.d.ts +2 -0
- package/es/field/Field.d.ts +25 -0
- package/es/field/Field.mjs +1 -1
- package/es/field/index.d.ts +18 -0
- package/es/index.d.ts +6 -1
- package/es/index.mjs +16 -1
- package/es/info-card/InfoCard.d.ts +1 -0
- package/es/info-card/InfoCard.mjs +1 -0
- package/es/label/Label.d.ts +67 -0
- package/es/label/Label.mjs +22 -7
- package/es/label/index.css +1 -1
- package/es/label/index.d.ts +45 -0
- package/es/label/index.less +19 -0
- package/es/label/var.less +4 -1
- package/es/loading/Loading.mjs +18 -21
- package/es/material-action-bar/MaterialActionBar.d.ts +66 -0
- package/es/material-action-bar/MaterialActionBar.mjs +132 -0
- package/es/material-action-bar/index.css +1 -0
- package/es/material-action-bar/index.d.ts +58 -0
- package/es/material-action-bar/index.less +33 -0
- package/es/material-action-bar/index.mjs +8 -0
- package/es/material-action-bar/style/index.mjs +19 -0
- package/es/material-action-bar/style/less.mjs +19 -0
- package/es/material-add/MaterialAdd.mjs +12 -7
- package/es/material-add/index.css +1 -1
- package/es/material-add/index.less +7 -5
- package/es/material-add/style/index.mjs +7 -0
- package/es/material-add/style/less.mjs +7 -0
- package/es/material-detail/MaterialDetail.d.ts +64 -0
- package/es/material-detail/MaterialDetail.mjs +192 -0
- package/es/material-detail/index.css +1 -0
- package/es/material-detail/index.d.ts +40 -0
- package/es/material-detail/index.less +20 -0
- package/es/material-detail/index.mjs +8 -0
- package/es/material-detail/style/index.mjs +11 -0
- package/es/material-detail/style/less.mjs +11 -0
- package/es/material-display-bar/MaterialDisplayBar.d.ts +159 -0
- package/es/material-display-bar/MaterialDisplayBar.mjs +109 -0
- package/es/material-display-bar/index.css +1 -0
- package/es/material-display-bar/index.d.ts +103 -0
- package/es/material-display-bar/index.less +113 -0
- package/es/material-display-bar/index.mjs +8 -0
- package/es/material-display-bar/style/index.mjs +11 -0
- package/es/material-display-bar/style/less.mjs +11 -0
- package/es/material-display-bar/var.css +0 -0
- package/es/material-display-bar/var.less +12 -0
- package/es/rate/RateCell.mjs +4 -1
- package/es/rate/index.css +1 -1
- package/es/rate/index.less +16 -3
- package/es/search/Search.d.ts +14 -1
- package/es/search/Search.mjs +5 -3
- package/es/search/index.css +1 -1
- package/es/search/index.d.ts +9 -0
- package/es/search/index.less +10 -0
- package/es/search/types.d.ts +1 -0
- package/es/step/index.css +1 -1
- package/es/step/var.less +2 -2
- package/es/style/base.css +1 -1
- package/es/style/css-variables.css +1 -1
- package/es/style/var.less +1 -1
- package/es/title-bar/TitleBar.d.ts +85 -0
- package/es/title-bar/TitleBar.mjs +62 -0
- package/es/title-bar/index.css +1 -0
- package/es/title-bar/index.d.ts +60 -0
- package/es/title-bar/index.less +25 -0
- package/es/title-bar/index.mjs +8 -0
- package/es/title-bar/style/index.mjs +4 -0
- package/es/title-bar/style/less.mjs +4 -0
- package/es/title-bar/var.css +0 -0
- package/es/title-bar/var.less +6 -0
- package/es/tree-select/TreeSelect.d.ts +13 -0
- package/es/tree-select/TreeSelect.mjs +4 -2
- package/es/tree-select/index.css +1 -1
- package/es/tree-select/index.d.ts +9 -0
- package/es/tree-select/index.less +6 -0
- package/lib/cell/Cell.d.ts +34 -1
- package/lib/cell/Cell.js +46 -10
- package/lib/cell/index.css +1 -1
- package/lib/cell/index.d.ts +20 -1
- package/lib/cell/index.less +19 -0
- package/lib/cell/var.less +1 -1
- package/lib/collapse-item/CollapseItem.d.ts +25 -0
- package/lib/collapse-item/index.d.ts +18 -0
- package/lib/content-panel/ContentPanel.d.ts +46 -0
- package/lib/content-panel/ContentPanel.js +91 -0
- package/lib/content-panel/index.css +1 -0
- package/lib/content-panel/index.d.ts +33 -0
- package/lib/content-panel/index.js +37 -0
- package/lib/content-panel/index.less +54 -0
- package/lib/content-panel/style/index.js +11 -0
- package/lib/content-panel/style/less.js +11 -0
- package/lib/content-panel/var.css +0 -0
- package/lib/content-panel/var.less +3 -0
- package/lib/dialog/Dialog.d.ts +4 -0
- package/lib/dialog/Dialog.js +13 -0
- package/lib/dialog/function-call.d.ts +2 -0
- package/lib/dialog/types.d.ts +2 -0
- package/lib/dog1.jpg +0 -0
- package/lib/dog2.jpg +0 -0
- package/lib/dog3.jpg +0 -0
- package/lib/field/Field.d.ts +25 -0
- package/lib/field/Field.js +1 -1
- package/lib/field/index.d.ts +18 -0
- package/lib/index.css +1 -1
- package/lib/index.d.ts +6 -1
- package/lib/index.js +16 -1
- package/lib/index.less +6 -1
- package/lib/info-card/InfoCard.d.ts +1 -0
- package/lib/info-card/InfoCard.js +1 -0
- package/lib/label/Label.d.ts +67 -0
- package/lib/label/Label.js +21 -6
- package/lib/label/index.css +1 -1
- package/lib/label/index.d.ts +45 -0
- package/lib/label/index.less +19 -0
- package/lib/label/var.less +4 -1
- package/lib/loading/Loading.js +18 -21
- package/lib/material-action-bar/MaterialActionBar.d.ts +66 -0
- package/lib/material-action-bar/MaterialActionBar.js +151 -0
- package/lib/material-action-bar/index.css +1 -0
- package/lib/material-action-bar/index.d.ts +58 -0
- package/lib/material-action-bar/index.js +37 -0
- package/lib/material-action-bar/index.less +33 -0
- package/lib/material-action-bar/style/index.js +19 -0
- package/lib/material-action-bar/style/less.js +19 -0
- package/lib/material-add/MaterialAdd.js +12 -7
- package/lib/material-add/index.css +1 -1
- package/lib/material-add/index.less +7 -5
- package/lib/material-add/style/index.js +7 -0
- package/lib/material-add/style/less.js +7 -0
- package/lib/material-detail/MaterialDetail.d.ts +64 -0
- package/lib/material-detail/MaterialDetail.js +211 -0
- package/lib/material-detail/index.css +1 -0
- package/lib/material-detail/index.d.ts +40 -0
- package/lib/material-detail/index.js +37 -0
- package/lib/material-detail/index.less +20 -0
- package/lib/material-detail/style/index.js +11 -0
- package/lib/material-detail/style/less.js +11 -0
- package/lib/material-display-bar/MaterialDisplayBar.d.ts +159 -0
- package/lib/material-display-bar/MaterialDisplayBar.js +128 -0
- package/lib/material-display-bar/index.css +1 -0
- package/lib/material-display-bar/index.d.ts +103 -0
- package/lib/material-display-bar/index.js +37 -0
- package/lib/material-display-bar/index.less +113 -0
- package/lib/material-display-bar/style/index.js +11 -0
- package/lib/material-display-bar/style/less.js +11 -0
- package/lib/material-display-bar/var.css +0 -0
- package/lib/material-display-bar/var.less +12 -0
- package/lib/rate/RateCell.js +4 -1
- package/lib/rate/index.css +1 -1
- package/lib/rate/index.less +16 -3
- package/lib/search/Search.d.ts +14 -1
- package/lib/search/Search.js +5 -3
- package/lib/search/index.css +1 -1
- package/lib/search/index.d.ts +9 -0
- package/lib/search/index.less +10 -0
- package/lib/search/types.d.ts +1 -0
- package/lib/step/index.css +1 -1
- package/lib/step/var.less +2 -2
- package/lib/style/base.css +1 -1
- package/lib/style/css-variables.css +1 -1
- package/lib/style/var.less +1 -1
- package/lib/title-bar/TitleBar.d.ts +85 -0
- package/lib/title-bar/TitleBar.js +81 -0
- package/lib/title-bar/index.css +1 -0
- package/lib/title-bar/index.d.ts +60 -0
- package/lib/title-bar/index.js +37 -0
- package/lib/title-bar/index.less +25 -0
- package/lib/title-bar/style/index.js +4 -0
- package/lib/title-bar/style/less.js +4 -0
- package/lib/title-bar/var.css +0 -0
- package/lib/title-bar/var.less +6 -0
- package/lib/tree-select/TreeSelect.d.ts +13 -0
- package/lib/tree-select/TreeSelect.js +3 -1
- package/lib/tree-select/index.css +1 -1
- package/lib/tree-select/index.d.ts +9 -0
- package/lib/tree-select/index.less +6 -0
- package/lib/vant.cjs.js +1641 -1218
- package/lib/vant.es.js +1641 -1218
- package/lib/vant.js +1641 -1218
- package/lib/vant.min.js +1 -1
- package/lib/web-types.json +1 -1
- package/package.json +6 -2
- package/skills/use-persagy-vant/references/business-component-catalog.md +8 -3
- package/skills/use-persagy-vant/references/component-catalog.md +7 -4
- package/skills/use-persagy-vant/references/component-documentation.md +1 -1
- package/skills/use-persagy-vant/references/design-interaction-baseline.md +3 -3
- package/skills/use-persagy-vant/references/page-recipes.md +18 -5
- package/skills/use-persagy-vant/references/reuse-policy.md +1 -1
- package/skills/use-persagy-vant/references/usage-patterns.md +9 -1
package/lib/index.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ export * from "./config-provider";
|
|
|
26
26
|
export * from "./contact-card";
|
|
27
27
|
export * from "./contact-edit";
|
|
28
28
|
export * from "./contact-list";
|
|
29
|
+
export * from "./content-panel";
|
|
29
30
|
export * from "./count-down";
|
|
30
31
|
export * from "./coupon";
|
|
31
32
|
export * from "./coupon-cell";
|
|
@@ -56,7 +57,10 @@ export * from "./list";
|
|
|
56
57
|
export * from "./loading";
|
|
57
58
|
export * from "./locale";
|
|
58
59
|
export * from "./location-select";
|
|
60
|
+
export * from "./material-action-bar";
|
|
59
61
|
export * from "./material-add";
|
|
62
|
+
export * from "./material-detail";
|
|
63
|
+
export * from "./material-display-bar";
|
|
60
64
|
export * from "./multi-person-select";
|
|
61
65
|
export * from "./nav-bar";
|
|
62
66
|
export * from "./notice-bar";
|
|
@@ -99,6 +103,7 @@ export * from "./tabbar";
|
|
|
99
103
|
export * from "./tabbar-item";
|
|
100
104
|
export * from "./tabs";
|
|
101
105
|
export * from "./tag";
|
|
106
|
+
export * from "./title-bar";
|
|
102
107
|
export * from "./toast";
|
|
103
108
|
export * from "./tree-select";
|
|
104
109
|
export * from "./uploader";
|
|
@@ -111,4 +116,4 @@ declare namespace _default {
|
|
|
111
116
|
}
|
|
112
117
|
export default _default;
|
|
113
118
|
export function install(app: any): void;
|
|
114
|
-
export const version: "0.0.
|
|
119
|
+
export const version: "0.0.32";
|
package/lib/index.js
CHANGED
|
@@ -51,6 +51,7 @@ var import_config_provider = require("./config-provider");
|
|
|
51
51
|
var import_contact_card = require("./contact-card");
|
|
52
52
|
var import_contact_edit = require("./contact-edit");
|
|
53
53
|
var import_contact_list = require("./contact-list");
|
|
54
|
+
var import_content_panel = require("./content-panel");
|
|
54
55
|
var import_count_down = require("./count-down");
|
|
55
56
|
var import_coupon = require("./coupon");
|
|
56
57
|
var import_coupon_cell = require("./coupon-cell");
|
|
@@ -80,7 +81,10 @@ var import_list = require("./list");
|
|
|
80
81
|
var import_loading = require("./loading");
|
|
81
82
|
var import_locale = require("./locale");
|
|
82
83
|
var import_location_select = require("./location-select");
|
|
84
|
+
var import_material_action_bar = require("./material-action-bar");
|
|
83
85
|
var import_material_add = require("./material-add");
|
|
86
|
+
var import_material_detail = require("./material-detail");
|
|
87
|
+
var import_material_display_bar = require("./material-display-bar");
|
|
84
88
|
var import_multi_person_select = require("./multi-person-select");
|
|
85
89
|
var import_nav_bar = require("./nav-bar");
|
|
86
90
|
var import_notice_bar = require("./notice-bar");
|
|
@@ -123,6 +127,7 @@ var import_tabbar = require("./tabbar");
|
|
|
123
127
|
var import_tabbar_item = require("./tabbar-item");
|
|
124
128
|
var import_tabs = require("./tabs");
|
|
125
129
|
var import_tag = require("./tag");
|
|
130
|
+
var import_title_bar = require("./title-bar");
|
|
126
131
|
var import_toast = require("./toast");
|
|
127
132
|
var import_tree_select = require("./tree-select");
|
|
128
133
|
var import_uploader = require("./uploader");
|
|
@@ -157,6 +162,7 @@ __reExport(stdin_exports, require("./config-provider"), module.exports);
|
|
|
157
162
|
__reExport(stdin_exports, require("./contact-card"), module.exports);
|
|
158
163
|
__reExport(stdin_exports, require("./contact-edit"), module.exports);
|
|
159
164
|
__reExport(stdin_exports, require("./contact-list"), module.exports);
|
|
165
|
+
__reExport(stdin_exports, require("./content-panel"), module.exports);
|
|
160
166
|
__reExport(stdin_exports, require("./count-down"), module.exports);
|
|
161
167
|
__reExport(stdin_exports, require("./coupon"), module.exports);
|
|
162
168
|
__reExport(stdin_exports, require("./coupon-cell"), module.exports);
|
|
@@ -187,7 +193,10 @@ __reExport(stdin_exports, require("./list"), module.exports);
|
|
|
187
193
|
__reExport(stdin_exports, require("./loading"), module.exports);
|
|
188
194
|
__reExport(stdin_exports, require("./locale"), module.exports);
|
|
189
195
|
__reExport(stdin_exports, require("./location-select"), module.exports);
|
|
196
|
+
__reExport(stdin_exports, require("./material-action-bar"), module.exports);
|
|
190
197
|
__reExport(stdin_exports, require("./material-add"), module.exports);
|
|
198
|
+
__reExport(stdin_exports, require("./material-detail"), module.exports);
|
|
199
|
+
__reExport(stdin_exports, require("./material-display-bar"), module.exports);
|
|
191
200
|
__reExport(stdin_exports, require("./multi-person-select"), module.exports);
|
|
192
201
|
__reExport(stdin_exports, require("./nav-bar"), module.exports);
|
|
193
202
|
__reExport(stdin_exports, require("./notice-bar"), module.exports);
|
|
@@ -230,13 +239,14 @@ __reExport(stdin_exports, require("./tabbar"), module.exports);
|
|
|
230
239
|
__reExport(stdin_exports, require("./tabbar-item"), module.exports);
|
|
231
240
|
__reExport(stdin_exports, require("./tabs"), module.exports);
|
|
232
241
|
__reExport(stdin_exports, require("./tag"), module.exports);
|
|
242
|
+
__reExport(stdin_exports, require("./title-bar"), module.exports);
|
|
233
243
|
__reExport(stdin_exports, require("./toast"), module.exports);
|
|
234
244
|
__reExport(stdin_exports, require("./tree-select"), module.exports);
|
|
235
245
|
__reExport(stdin_exports, require("./uploader"), module.exports);
|
|
236
246
|
__reExport(stdin_exports, require("./video-preview"), module.exports);
|
|
237
247
|
__reExport(stdin_exports, require("./work-order-card"), module.exports);
|
|
238
248
|
__reExport(stdin_exports, require("./work-order-filter"), module.exports);
|
|
239
|
-
const version = "0.0.
|
|
249
|
+
const version = "0.0.32";
|
|
240
250
|
function install(app) {
|
|
241
251
|
const components = [
|
|
242
252
|
import_action_bar.ActionBar,
|
|
@@ -267,6 +277,7 @@ function install(app) {
|
|
|
267
277
|
import_contact_card.ContactCard,
|
|
268
278
|
import_contact_edit.ContactEdit,
|
|
269
279
|
import_contact_list.ContactList,
|
|
280
|
+
import_content_panel.ContentPanel,
|
|
270
281
|
import_count_down.CountDown,
|
|
271
282
|
import_coupon.Coupon,
|
|
272
283
|
import_coupon_cell.CouponCell,
|
|
@@ -296,7 +307,10 @@ function install(app) {
|
|
|
296
307
|
import_loading.Loading,
|
|
297
308
|
import_locale.Locale,
|
|
298
309
|
import_location_select.LocationSelect,
|
|
310
|
+
import_material_action_bar.MaterialActionBar,
|
|
299
311
|
import_material_add.MaterialAdd,
|
|
312
|
+
import_material_detail.MaterialDetail,
|
|
313
|
+
import_material_display_bar.MaterialDisplayBar,
|
|
300
314
|
import_multi_person_select.MultiPersonSelect,
|
|
301
315
|
import_nav_bar.NavBar,
|
|
302
316
|
import_notice_bar.NoticeBar,
|
|
@@ -339,6 +353,7 @@ function install(app) {
|
|
|
339
353
|
import_tabbar_item.TabbarItem,
|
|
340
354
|
import_tabs.Tabs,
|
|
341
355
|
import_tag.Tag,
|
|
356
|
+
import_title_bar.TitleBar,
|
|
342
357
|
import_toast.Toast,
|
|
343
358
|
import_tree_select.TreeSelect,
|
|
344
359
|
import_uploader.Uploader,
|
package/lib/index.less
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
@import "./action-bar/index.less";
|
|
3
3
|
@import "./badge/index.less";
|
|
4
4
|
@import "./icon/index.less";
|
|
5
|
+
@import "./title-bar/index.less";
|
|
5
6
|
@import "./notice-bar/index.less";
|
|
6
7
|
@import "./image/index.less";
|
|
7
8
|
@import "./filter-tag/index.less";
|
|
@@ -31,6 +32,7 @@
|
|
|
31
32
|
@import "./calendar/index.less";
|
|
32
33
|
@import "./action-sheet/index.less";
|
|
33
34
|
@import "./form-panel/index.less";
|
|
35
|
+
@import "./content-panel/index.less";
|
|
34
36
|
@import "./checkbox-group/index.less";
|
|
35
37
|
@import "./checkbox/index.less";
|
|
36
38
|
@import "./coupon/index.less";
|
|
@@ -63,6 +65,7 @@
|
|
|
63
65
|
@import "./sticky/index.less";
|
|
64
66
|
@import "./swipe/index.less";
|
|
65
67
|
@import "./swipe-item/index.less";
|
|
68
|
+
@import "./material-detail/index.less";
|
|
66
69
|
@import "./image-preview/index.less";
|
|
67
70
|
@import "./uploader/index.less";
|
|
68
71
|
@import "./tabs/index.less";
|
|
@@ -88,7 +91,10 @@
|
|
|
88
91
|
@import "./index-bar/index.less";
|
|
89
92
|
@import "./index-anchor/index.less";
|
|
90
93
|
@import "./stepper/index.less";
|
|
94
|
+
@import "./material-action-bar/index.less";
|
|
91
95
|
@import "./material-add/index.less";
|
|
96
|
+
@import "./swipe-cell/index.less";
|
|
97
|
+
@import "./material-display-bar/index.less";
|
|
92
98
|
@import "./pagination/index.less";
|
|
93
99
|
@import "./password-input/index.less";
|
|
94
100
|
@import "./progress/index.less";
|
|
@@ -97,6 +103,5 @@
|
|
|
97
103
|
@import "./space/index.less";
|
|
98
104
|
@import "./steps/index.less";
|
|
99
105
|
@import "./step/index.less";
|
|
100
|
-
@import "./swipe-cell/index.less";
|
|
101
106
|
@import "./tabbar/index.less";
|
|
102
107
|
@import "./tabbar-item/index.less";
|
|
@@ -70,6 +70,7 @@ var stdin_default = (0, import_vue.defineComponent)({
|
|
|
70
70
|
const renderField = (field, index) => (0, import_vue.createVNode)(import_label.Label, {
|
|
71
71
|
"key": `${field.label}-${index}`,
|
|
72
72
|
"label": field.label,
|
|
73
|
+
"showColon": field.showColon,
|
|
73
74
|
"content": field.content,
|
|
74
75
|
"type": field.type,
|
|
75
76
|
"vertical": field.vertical,
|
package/lib/label/Label.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { type ExtractPropTypes, type PropType } from 'vue';
|
|
2
2
|
export declare type LabelType = 'default' | 'bold' | 'link' | 'tag' | 'media';
|
|
3
|
+
export declare type LabelSize = 'default' | 'mini';
|
|
4
|
+
export declare type LabelContentAlign = 'follow' | 'right';
|
|
3
5
|
export declare type LabelMediaType = 'image' | 'video';
|
|
4
6
|
export declare type LabelMedia = {
|
|
5
7
|
url: string;
|
|
@@ -12,6 +14,18 @@ declare const labelProps: {
|
|
|
12
14
|
type: PropType<string>;
|
|
13
15
|
default: string;
|
|
14
16
|
};
|
|
17
|
+
showLabel: {
|
|
18
|
+
type: BooleanConstructor;
|
|
19
|
+
default: true;
|
|
20
|
+
};
|
|
21
|
+
showContent: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
default: true;
|
|
24
|
+
};
|
|
25
|
+
showColon: {
|
|
26
|
+
type: PropType<boolean | undefined>;
|
|
27
|
+
default: undefined;
|
|
28
|
+
};
|
|
15
29
|
content: {
|
|
16
30
|
type: PropType<string>;
|
|
17
31
|
default: string;
|
|
@@ -20,6 +34,14 @@ declare const labelProps: {
|
|
|
20
34
|
type: PropType<LabelType>;
|
|
21
35
|
default: LabelType;
|
|
22
36
|
};
|
|
37
|
+
size: {
|
|
38
|
+
type: PropType<LabelSize>;
|
|
39
|
+
default: LabelSize;
|
|
40
|
+
};
|
|
41
|
+
contentAlign: {
|
|
42
|
+
type: PropType<LabelContentAlign>;
|
|
43
|
+
default: LabelContentAlign;
|
|
44
|
+
};
|
|
23
45
|
vertical: BooleanConstructor;
|
|
24
46
|
href: StringConstructor;
|
|
25
47
|
location: StringConstructor;
|
|
@@ -38,6 +60,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
38
60
|
type: PropType<string>;
|
|
39
61
|
default: string;
|
|
40
62
|
};
|
|
63
|
+
showLabel: {
|
|
64
|
+
type: BooleanConstructor;
|
|
65
|
+
default: true;
|
|
66
|
+
};
|
|
67
|
+
showContent: {
|
|
68
|
+
type: BooleanConstructor;
|
|
69
|
+
default: true;
|
|
70
|
+
};
|
|
71
|
+
showColon: {
|
|
72
|
+
type: PropType<boolean | undefined>;
|
|
73
|
+
default: undefined;
|
|
74
|
+
};
|
|
41
75
|
content: {
|
|
42
76
|
type: PropType<string>;
|
|
43
77
|
default: string;
|
|
@@ -46,6 +80,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
46
80
|
type: PropType<LabelType>;
|
|
47
81
|
default: LabelType;
|
|
48
82
|
};
|
|
83
|
+
size: {
|
|
84
|
+
type: PropType<LabelSize>;
|
|
85
|
+
default: LabelSize;
|
|
86
|
+
};
|
|
87
|
+
contentAlign: {
|
|
88
|
+
type: PropType<LabelContentAlign>;
|
|
89
|
+
default: LabelContentAlign;
|
|
90
|
+
};
|
|
49
91
|
vertical: BooleanConstructor;
|
|
50
92
|
href: StringConstructor;
|
|
51
93
|
location: StringConstructor;
|
|
@@ -62,6 +104,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
62
104
|
type: PropType<string>;
|
|
63
105
|
default: string;
|
|
64
106
|
};
|
|
107
|
+
showLabel: {
|
|
108
|
+
type: BooleanConstructor;
|
|
109
|
+
default: true;
|
|
110
|
+
};
|
|
111
|
+
showContent: {
|
|
112
|
+
type: BooleanConstructor;
|
|
113
|
+
default: true;
|
|
114
|
+
};
|
|
115
|
+
showColon: {
|
|
116
|
+
type: PropType<boolean | undefined>;
|
|
117
|
+
default: undefined;
|
|
118
|
+
};
|
|
65
119
|
content: {
|
|
66
120
|
type: PropType<string>;
|
|
67
121
|
default: string;
|
|
@@ -70,6 +124,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
70
124
|
type: PropType<LabelType>;
|
|
71
125
|
default: LabelType;
|
|
72
126
|
};
|
|
127
|
+
size: {
|
|
128
|
+
type: PropType<LabelSize>;
|
|
129
|
+
default: LabelSize;
|
|
130
|
+
};
|
|
131
|
+
contentAlign: {
|
|
132
|
+
type: PropType<LabelContentAlign>;
|
|
133
|
+
default: LabelContentAlign;
|
|
134
|
+
};
|
|
73
135
|
vertical: BooleanConstructor;
|
|
74
136
|
href: StringConstructor;
|
|
75
137
|
location: StringConstructor;
|
|
@@ -88,8 +150,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
88
150
|
type: LabelType;
|
|
89
151
|
label: string;
|
|
90
152
|
content: string;
|
|
153
|
+
size: LabelSize;
|
|
91
154
|
tags: string[];
|
|
92
155
|
media: LabelMedia[];
|
|
93
156
|
vertical: boolean;
|
|
157
|
+
showLabel: boolean;
|
|
158
|
+
showContent: boolean;
|
|
159
|
+
showColon: boolean | undefined;
|
|
160
|
+
contentAlign: LabelContentAlign;
|
|
94
161
|
}>;
|
|
95
162
|
export default _default;
|
package/lib/label/Label.js
CHANGED
|
@@ -28,8 +28,16 @@ var import_tag = require("../tag");
|
|
|
28
28
|
const [name, bem] = (0, import_utils.createNamespace)("label");
|
|
29
29
|
const labelProps = {
|
|
30
30
|
label: (0, import_utils.makeStringProp)(""),
|
|
31
|
+
showLabel: import_utils.truthProp,
|
|
32
|
+
showContent: import_utils.truthProp,
|
|
33
|
+
showColon: {
|
|
34
|
+
type: Boolean,
|
|
35
|
+
default: void 0
|
|
36
|
+
},
|
|
31
37
|
content: (0, import_utils.makeStringProp)(""),
|
|
32
38
|
type: (0, import_utils.makeStringProp)("default"),
|
|
39
|
+
size: (0, import_utils.makeStringProp)("default"),
|
|
40
|
+
contentAlign: (0, import_utils.makeStringProp)("follow"),
|
|
33
41
|
vertical: Boolean,
|
|
34
42
|
href: String,
|
|
35
43
|
location: String,
|
|
@@ -51,6 +59,14 @@ var stdin_default = (0, import_vue.defineComponent)({
|
|
|
51
59
|
emit
|
|
52
60
|
}) {
|
|
53
61
|
const vertical = (0, import_vue.computed)(() => props.vertical || props.type === "media");
|
|
62
|
+
const displayLabel = (0, import_vue.computed)(() => {
|
|
63
|
+
var _a;
|
|
64
|
+
const showColon = (_a = props.showColon) != null ? _a : !vertical.value && props.contentAlign !== "right";
|
|
65
|
+
if (!showColon || !props.label || /[::]$/.test(props.label)) {
|
|
66
|
+
return props.label;
|
|
67
|
+
}
|
|
68
|
+
return `${props.label}\uFF1A`;
|
|
69
|
+
});
|
|
54
70
|
const showLocation = (0, import_vue.computed)(() => props.vertical && (props.type === "bold" || props.type === "link") && !!props.location);
|
|
55
71
|
const renderText = () => {
|
|
56
72
|
var _a;
|
|
@@ -88,9 +104,6 @@ var stdin_default = (0, import_vue.defineComponent)({
|
|
|
88
104
|
}, [(0, import_vue.createVNode)(import_image.Image, {
|
|
89
105
|
"src": item.type === "video" ? item.poster || item.url : item.url,
|
|
90
106
|
"alt": item.alt,
|
|
91
|
-
"width": "64",
|
|
92
|
-
"height": "64",
|
|
93
|
-
"radius": "4",
|
|
94
107
|
"fit": "cover"
|
|
95
108
|
}, null), item.type === "video" && (0, import_vue.createVNode)(import_icon.Icon, {
|
|
96
109
|
"name": "play-circle-o",
|
|
@@ -105,12 +118,14 @@ var stdin_default = (0, import_vue.defineComponent)({
|
|
|
105
118
|
};
|
|
106
119
|
return () => (0, import_vue.createVNode)("div", {
|
|
107
120
|
"class": bem([props.type, {
|
|
121
|
+
mini: props.size === "mini",
|
|
108
122
|
vertical: vertical.value,
|
|
109
|
-
location: showLocation.value
|
|
123
|
+
location: showLocation.value,
|
|
124
|
+
"content-right": props.contentAlign === "right"
|
|
110
125
|
}])
|
|
111
|
-
}, [(0, import_vue.createVNode)("span", {
|
|
126
|
+
}, [props.showLabel && (0, import_vue.createVNode)("span", {
|
|
112
127
|
"class": bem("label")
|
|
113
|
-
}, [
|
|
128
|
+
}, [displayLabel.value]), props.showContent && (0, import_vue.createVNode)("div", {
|
|
114
129
|
"class": bem("value")
|
|
115
130
|
}, [renderContent(), showLocation.value && (0, import_vue.createVNode)("div", {
|
|
116
131
|
"class": bem("location")
|
package/lib/label/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
:root{--van-label-font-size: var(--van-font-size-md);--van-label-line-height: var(--van-line-height-lg);--van-label-label-color: var(--van-gray-
|
|
1
|
+
:root{--van-label-font-size: var(--van-font-size-md);--van-label-line-height: var(--van-line-height-lg);--van-label-mini-font-size: var(--van-font-size-sm);--van-label-mini-line-height: var(--van-line-height-md);--van-label-label-color: var(--van-gray-6);--van-label-value-color: var(--van-black);--van-label-bold-color: var(--van-gray-8);--van-label-link-color: var(--van-primary-color);--van-label-gap: 2px;--van-label-tags-gap: 4px;--van-label-media-gap: 6px;--van-label-media-size: 64px;--van-label-mini-media-size: 48px;--van-label-media-radius: 4px;--van-label-location-color: var(--van-gray-7);--van-label-location-font-size: var(--van-font-size-sm);--van-label-location-line-height: var(--van-line-height-md);--van-label-location-icon-size: 12px;--van-label-location-gap: 2px}.van-label{display:flex;align-items:flex-start;gap:var(--van-label-gap);color:var(--van-label-value-color);font-size:var(--van-label-font-size);line-height:var(--van-label-line-height)}.van-label--vertical{flex-direction:column}.van-label--content-right .van-label__value{text-align:right}.van-label--mini{--van-label-font-size: var(--van-label-mini-font-size);--van-label-line-height: var(--van-label-mini-line-height);--van-label-media-size: var(--van-label-mini-media-size)}.van-label__label{flex:none;color:var(--van-label-label-color);white-space:nowrap}.van-label__value{flex:1;min-width:0;color:inherit;overflow-wrap:anywhere}.van-label__text{display:block}.van-label--location .van-label__value{display:flex;flex-direction:column;gap:var(--van-label-location-gap);width:100%}.van-label--location .van-label__link{align-self:flex-start;text-align:left}.van-label__location{display:inline-flex;gap:var(--van-label-location-gap);align-items:center;width:-moz-fit-content;width:fit-content;max-width:100%;color:var(--van-label-location-color);font-size:var(--van-label-location-font-size);font-weight:400;line-height:var(--van-label-location-line-height);overflow-wrap:anywhere}.van-label__location .van-icon{flex:none;font-size:var(--van-label-location-icon-size)}.van-label--bold .van-label__value{color:var(--van-label-bold-color);font-weight:var(--van-font-weight-bold)}.van-label__link{display:inline;padding:0;color:var(--van-label-link-color);font:inherit;font-weight:var(--van-font-weight-bold);text-decoration:none;background:transparent;border:0;cursor:pointer;transition:opacity var(--van-animation-duration-fast)}.van-label__link:active{opacity:var(--van-active-opacity)}.van-label__tags,.van-label__media{display:flex;flex-wrap:wrap;align-items:flex-start}.van-label__tags{gap:var(--van-label-tags-gap);min-height:var(--van-label-line-height);align-items:center}.van-label__media{gap:var(--van-label-media-gap);width:100%}.van-label__media-item{position:relative;flex:none;width:var(--van-label-media-size);height:var(--van-label-media-size);padding:0;overflow:hidden;background:transparent;border:0;border-radius:var(--van-label-media-radius);cursor:pointer;transition:opacity var(--van-animation-duration-fast)}.van-label__media-item:active{opacity:var(--van-active-opacity)}.van-label__media-item .van-image{display:block;width:100%;height:100%}.van-label__play{position:absolute;top:50%;left:50%;color:var(--van-white);font-size:24px;transform:translate(-50%,-50%);text-shadow:0 1px 2px rgba(0,0,0,.45)}
|
package/lib/label/index.d.ts
CHANGED
|
@@ -3,6 +3,18 @@ export declare const Label: import("../utils").WithInstall<import("vue").DefineC
|
|
|
3
3
|
type: import("vue").PropType<string>;
|
|
4
4
|
default: string;
|
|
5
5
|
};
|
|
6
|
+
showLabel: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: true;
|
|
9
|
+
};
|
|
10
|
+
showContent: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: true;
|
|
13
|
+
};
|
|
14
|
+
showColon: {
|
|
15
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
16
|
+
default: undefined;
|
|
17
|
+
};
|
|
6
18
|
content: {
|
|
7
19
|
type: import("vue").PropType<string>;
|
|
8
20
|
default: string;
|
|
@@ -11,6 +23,14 @@ export declare const Label: import("../utils").WithInstall<import("vue").DefineC
|
|
|
11
23
|
type: import("vue").PropType<import("./Label").LabelType>;
|
|
12
24
|
default: import("./Label").LabelType;
|
|
13
25
|
};
|
|
26
|
+
size: {
|
|
27
|
+
type: import("vue").PropType<import("./Label").LabelSize>;
|
|
28
|
+
default: import("./Label").LabelSize;
|
|
29
|
+
};
|
|
30
|
+
contentAlign: {
|
|
31
|
+
type: import("vue").PropType<import("./Label").LabelContentAlign>;
|
|
32
|
+
default: import("./Label").LabelContentAlign;
|
|
33
|
+
};
|
|
14
34
|
vertical: BooleanConstructor;
|
|
15
35
|
href: StringConstructor;
|
|
16
36
|
location: StringConstructor;
|
|
@@ -27,6 +47,18 @@ export declare const Label: import("../utils").WithInstall<import("vue").DefineC
|
|
|
27
47
|
type: import("vue").PropType<string>;
|
|
28
48
|
default: string;
|
|
29
49
|
};
|
|
50
|
+
showLabel: {
|
|
51
|
+
type: BooleanConstructor;
|
|
52
|
+
default: true;
|
|
53
|
+
};
|
|
54
|
+
showContent: {
|
|
55
|
+
type: BooleanConstructor;
|
|
56
|
+
default: true;
|
|
57
|
+
};
|
|
58
|
+
showColon: {
|
|
59
|
+
type: import("vue").PropType<boolean | undefined>;
|
|
60
|
+
default: undefined;
|
|
61
|
+
};
|
|
30
62
|
content: {
|
|
31
63
|
type: import("vue").PropType<string>;
|
|
32
64
|
default: string;
|
|
@@ -35,6 +67,14 @@ export declare const Label: import("../utils").WithInstall<import("vue").DefineC
|
|
|
35
67
|
type: import("vue").PropType<import("./Label").LabelType>;
|
|
36
68
|
default: import("./Label").LabelType;
|
|
37
69
|
};
|
|
70
|
+
size: {
|
|
71
|
+
type: import("vue").PropType<import("./Label").LabelSize>;
|
|
72
|
+
default: import("./Label").LabelSize;
|
|
73
|
+
};
|
|
74
|
+
contentAlign: {
|
|
75
|
+
type: import("vue").PropType<import("./Label").LabelContentAlign>;
|
|
76
|
+
default: import("./Label").LabelContentAlign;
|
|
77
|
+
};
|
|
38
78
|
vertical: BooleanConstructor;
|
|
39
79
|
href: StringConstructor;
|
|
40
80
|
location: StringConstructor;
|
|
@@ -53,9 +93,14 @@ export declare const Label: import("../utils").WithInstall<import("vue").DefineC
|
|
|
53
93
|
type: import("./Label").LabelType;
|
|
54
94
|
label: string;
|
|
55
95
|
content: string;
|
|
96
|
+
size: import("./Label").LabelSize;
|
|
56
97
|
tags: string[];
|
|
57
98
|
media: import("./Label").LabelMedia[];
|
|
58
99
|
vertical: boolean;
|
|
100
|
+
showLabel: boolean;
|
|
101
|
+
showContent: boolean;
|
|
102
|
+
showColon: boolean | undefined;
|
|
103
|
+
contentAlign: import("./Label").LabelContentAlign;
|
|
59
104
|
}>>;
|
|
60
105
|
export default Label;
|
|
61
106
|
export type { LabelMedia, LabelMediaType, LabelProps, LabelType } from './Label';
|
package/lib/label/index.less
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
:root {
|
|
4
4
|
--van-label-font-size: @label-font-size;
|
|
5
5
|
--van-label-line-height: @label-line-height;
|
|
6
|
+
--van-label-mini-font-size: @label-mini-font-size;
|
|
7
|
+
--van-label-mini-line-height: @label-mini-line-height;
|
|
6
8
|
--van-label-label-color: @label-label-color;
|
|
7
9
|
--van-label-value-color: @label-value-color;
|
|
8
10
|
--van-label-bold-color: @label-bold-color;
|
|
@@ -11,6 +13,7 @@
|
|
|
11
13
|
--van-label-tags-gap: @label-tags-gap;
|
|
12
14
|
--van-label-media-gap: @label-media-gap;
|
|
13
15
|
--van-label-media-size: @label-media-size;
|
|
16
|
+
--van-label-mini-media-size: @label-mini-media-size;
|
|
14
17
|
--van-label-media-radius: @label-media-radius;
|
|
15
18
|
--van-label-location-color: @label-location-color;
|
|
16
19
|
--van-label-location-font-size: @label-location-font-size;
|
|
@@ -31,6 +34,16 @@
|
|
|
31
34
|
flex-direction: column;
|
|
32
35
|
}
|
|
33
36
|
|
|
37
|
+
&--content-right .van-label__value {
|
|
38
|
+
text-align: right;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
&--mini {
|
|
42
|
+
--van-label-font-size: var(--van-label-mini-font-size);
|
|
43
|
+
--van-label-line-height: var(--van-label-mini-line-height);
|
|
44
|
+
--van-label-media-size: var(--van-label-mini-media-size);
|
|
45
|
+
}
|
|
46
|
+
|
|
34
47
|
&__label {
|
|
35
48
|
flex: none;
|
|
36
49
|
color: var(--van-label-label-color);
|
|
@@ -136,6 +149,12 @@
|
|
|
136
149
|
}
|
|
137
150
|
}
|
|
138
151
|
|
|
152
|
+
&__media-item .van-image {
|
|
153
|
+
display: block;
|
|
154
|
+
width: 100%;
|
|
155
|
+
height: 100%;
|
|
156
|
+
}
|
|
157
|
+
|
|
139
158
|
&__play {
|
|
140
159
|
position: absolute;
|
|
141
160
|
top: 50%;
|
package/lib/label/var.less
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
@label-font-size: var(--van-font-size-md);
|
|
2
2
|
@label-line-height: var(--van-line-height-lg);
|
|
3
|
-
@label-
|
|
3
|
+
@label-mini-font-size: var(--van-font-size-sm);
|
|
4
|
+
@label-mini-line-height: var(--van-line-height-md);
|
|
5
|
+
@label-label-color: var(--van-gray-6);
|
|
4
6
|
@label-value-color: var(--van-black);
|
|
5
7
|
@label-bold-color: var(--van-gray-8);
|
|
6
8
|
@label-link-color: var(--van-primary-color);
|
|
@@ -8,6 +10,7 @@
|
|
|
8
10
|
@label-tags-gap: 4px;
|
|
9
11
|
@label-media-gap: 6px;
|
|
10
12
|
@label-media-size: 64px;
|
|
13
|
+
@label-mini-media-size: 48px;
|
|
11
14
|
@label-media-radius: 4px;
|
|
12
15
|
@label-location-color: var(--van-gray-7);
|
|
13
16
|
@label-location-font-size: var(--van-font-size-sm);
|
package/lib/loading/Loading.js
CHANGED
|
@@ -38,33 +38,30 @@ const CircularIcon = (0, import_vue.createVNode)("svg", {
|
|
|
38
38
|
const IllustrationIcon = (0, import_vue.createVNode)("svg", {
|
|
39
39
|
"class": bem("illustration"),
|
|
40
40
|
"viewBox": "0 0 120 120",
|
|
41
|
-
"
|
|
42
|
-
"aria-
|
|
41
|
+
"role": "img",
|
|
42
|
+
"aria-label": "Loading"
|
|
43
43
|
}, [(0, import_vue.createVNode)("rect", {
|
|
44
|
-
"x": "
|
|
45
|
-
"y": "
|
|
46
|
-
"width": "
|
|
47
|
-
"height": "
|
|
48
|
-
"rx": "
|
|
44
|
+
"x": "16",
|
|
45
|
+
"y": "42",
|
|
46
|
+
"width": "88",
|
|
47
|
+
"height": "62",
|
|
48
|
+
"rx": "8",
|
|
49
49
|
"fill": "currentColor",
|
|
50
|
-
"opacity": "0.
|
|
50
|
+
"opacity": "0.12"
|
|
51
51
|
}, null), (0, import_vue.createVNode)("path", {
|
|
52
|
-
"d": "
|
|
52
|
+
"d": "M28 42h64v62H28z",
|
|
53
53
|
"fill": "currentColor",
|
|
54
|
-
"opacity": "0.
|
|
55
|
-
}, null), (0, import_vue.createVNode)("path", {
|
|
56
|
-
"d": "M48 54h8v11h-8zm16 0h8v11h-8zm-16 22h8v11h-8zm16 0h8v11h-8z",
|
|
57
|
-
"fill": "white"
|
|
54
|
+
"opacity": "0.24"
|
|
58
55
|
}, null), (0, import_vue.createVNode)("path", {
|
|
59
|
-
"d": "
|
|
60
|
-
"fill": "white",
|
|
61
|
-
"opacity": "0.92"
|
|
62
|
-
}, null), (0, import_vue.createVNode)("circle", {
|
|
63
|
-
"cx": "94",
|
|
64
|
-
"cy": "31",
|
|
65
|
-
"r": "9",
|
|
56
|
+
"d": "M38 54h12v12H38zm18 0h12v12H56zm18 0h12v12H74zM38 74h12v18H38zm18 0h12v18H56zm18 0h12v18H74z",
|
|
66
57
|
"fill": "currentColor",
|
|
67
|
-
"opacity": "0.
|
|
58
|
+
"opacity": "0.78"
|
|
59
|
+
}, null), (0, import_vue.createVNode)("path", {
|
|
60
|
+
"d": "M48 42V27c0-7 5-12 12-12s12 5 12 12v15",
|
|
61
|
+
"fill": "none",
|
|
62
|
+
"stroke": "currentColor",
|
|
63
|
+
"stroke-width": "8",
|
|
64
|
+
"stroke-linecap": "round"
|
|
68
65
|
}, null)]);
|
|
69
66
|
const loadingProps = {
|
|
70
67
|
size: import_utils.numericProp,
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
import { type Numeric } from '../utils';
|
|
3
|
+
export declare type MaterialActionBarItem = {
|
|
4
|
+
id: Numeric;
|
|
5
|
+
name: string;
|
|
6
|
+
detail: string;
|
|
7
|
+
unit: string;
|
|
8
|
+
kind?: 'material' | 'tool';
|
|
9
|
+
};
|
|
10
|
+
declare const _default: import("vue").DefineComponent<{
|
|
11
|
+
item: {
|
|
12
|
+
type: PropType<MaterialActionBarItem>;
|
|
13
|
+
required: true;
|
|
14
|
+
};
|
|
15
|
+
modelValue: {
|
|
16
|
+
type: NumberConstructor;
|
|
17
|
+
required: true;
|
|
18
|
+
};
|
|
19
|
+
keyword: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
selected: BooleanConstructor;
|
|
24
|
+
enableInputDialog: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
default: true;
|
|
27
|
+
};
|
|
28
|
+
showWarning: BooleanConstructor;
|
|
29
|
+
warning: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "detail")[], "update:modelValue" | "detail", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
34
|
+
item: {
|
|
35
|
+
type: PropType<MaterialActionBarItem>;
|
|
36
|
+
required: true;
|
|
37
|
+
};
|
|
38
|
+
modelValue: {
|
|
39
|
+
type: NumberConstructor;
|
|
40
|
+
required: true;
|
|
41
|
+
};
|
|
42
|
+
keyword: {
|
|
43
|
+
type: StringConstructor;
|
|
44
|
+
default: string;
|
|
45
|
+
};
|
|
46
|
+
selected: BooleanConstructor;
|
|
47
|
+
enableInputDialog: {
|
|
48
|
+
type: BooleanConstructor;
|
|
49
|
+
default: true;
|
|
50
|
+
};
|
|
51
|
+
showWarning: BooleanConstructor;
|
|
52
|
+
warning: {
|
|
53
|
+
type: StringConstructor;
|
|
54
|
+
default: string;
|
|
55
|
+
};
|
|
56
|
+
}>> & {
|
|
57
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
58
|
+
onDetail?: ((...args: any[]) => any) | undefined;
|
|
59
|
+
}, {
|
|
60
|
+
selected: boolean;
|
|
61
|
+
warning: string;
|
|
62
|
+
keyword: string;
|
|
63
|
+
enableInputDialog: boolean;
|
|
64
|
+
showWarning: boolean;
|
|
65
|
+
}>;
|
|
66
|
+
export default _default;
|