bm-admin-ui 1.0.2-alpha → 1.0.5-alpha

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.
Files changed (40) hide show
  1. package/es/components/multi-cascader-compose/index.d.ts +29 -0
  2. package/es/components/multi-cascader-compose/index.js +51 -53
  3. package/es/components/multi-cascader-compose/src/multi-cascader-compose.vue.d.ts +29 -0
  4. package/es/components/multi-cascader-compose/src/props.d.ts +10 -2
  5. package/es/components/search-filter/index.d.ts +1 -3
  6. package/es/components/search-filter/index.js +53 -54
  7. package/es/components/search-filter/src/search-filter.vue.d.ts +1 -3
  8. package/es/components/shops-filter/index.js +92 -102
  9. package/es/components/staffs-selector/index.js +62 -41
  10. package/es/components/upload/index.js +6 -19
  11. package/index.esm.js +41510 -4174
  12. package/index.js +41509 -4173
  13. package/lib/components/multi-cascader-compose/index.d.ts +29 -0
  14. package/lib/components/multi-cascader-compose/index.js +50 -52
  15. package/lib/components/multi-cascader-compose/src/multi-cascader-compose.vue.d.ts +29 -0
  16. package/lib/components/multi-cascader-compose/src/props.d.ts +10 -2
  17. package/lib/components/search-filter/index.d.ts +1 -3
  18. package/lib/components/search-filter/index.js +52 -53
  19. package/lib/components/search-filter/src/search-filter.vue.d.ts +1 -3
  20. package/lib/components/shops-filter/index.js +91 -101
  21. package/lib/components/staffs-selector/index.js +62 -41
  22. package/lib/components/upload/index.js +6 -19
  23. package/package.json +29 -30
  24. package/theme-chalk/button.css +1 -1
  25. package/theme-chalk/float-table.css +1 -1
  26. package/theme-chalk/floating-vue.css +1 -1
  27. package/theme-chalk/flow-designer.css +1 -1
  28. package/theme-chalk/index.css +1 -1
  29. package/theme-chalk/multi-cascader-compose.css +1 -1
  30. package/theme-chalk/over-tooltips.css +1 -1
  31. package/theme-chalk/search-filter.css +1 -1
  32. package/theme-chalk/timeline.css +1 -1
  33. package/theme-chalk/upload.css +1 -1
  34. package/types/components/multi-cascader-compose/index.d.ts +29 -0
  35. package/types/components/multi-cascader-compose/src/multi-cascader-compose.vue.d.ts +29 -0
  36. package/types/components/multi-cascader-compose/src/props.d.ts +10 -2
  37. package/types/components/search-filter/index.d.ts +1 -3
  38. package/types/components/search-filter/src/search-filter.vue.d.ts +1 -3
  39. package/pnpm-global/5/node_modules/.pnpm/lock.yaml +0 -3
  40. package/pnpm-global/5/pnpm-lock.yaml +0 -4
@@ -81,7 +81,7 @@ function boundAlpha(a) {
81
81
  */
82
82
  function convertToPercentage(n) {
83
83
  if (n <= 1) {
84
- return "".concat(Number(n) * 100, "%");
84
+ return Number(n) * 100 + "%";
85
85
  }
86
86
  return n;
87
87
  }
@@ -463,12 +463,12 @@ var CSS_INTEGER = '[-\\+]?\\d+%?';
463
463
  // <http://www.w3.org/TR/css3-values/#number-value>
464
464
  var CSS_NUMBER = '[-\\+]?\\d*\\.\\d+%?';
465
465
  // Allow positive/negative integer/number. Don't capture the either/or, just the entire outcome.
466
- var CSS_UNIT = "(?:".concat(CSS_NUMBER, ")|(?:").concat(CSS_INTEGER, ")");
466
+ var CSS_UNIT = "(?:" + CSS_NUMBER + ")|(?:" + CSS_INTEGER + ")";
467
467
  // Actual matching.
468
468
  // Parentheses and commas are optional, but not required.
469
469
  // Whitespace can take the place of commas or opening paren
470
- var PERMISSIVE_MATCH3 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
471
- var PERMISSIVE_MATCH4 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
470
+ var PERMISSIVE_MATCH3 = "[\\s|\\(]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")\\s*\\)?";
471
+ var PERMISSIVE_MATCH4 = "[\\s|\\(]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")\\s*\\)?";
472
472
  var matchers = {
473
473
  CSS_UNIT: new RegExp(CSS_UNIT),
474
474
  rgb: new RegExp('rgb' + PERMISSIVE_MATCH3),
@@ -793,19 +793,6 @@ Object.keys(presetPrimaryColors).forEach(function (key) {
793
793
  });
794
794
  presetDarkPalettes[key].primary = presetDarkPalettes[key][5];
795
795
  });
796
- presetPalettes.red;
797
- presetPalettes.volcano;
798
- presetPalettes.gold;
799
- presetPalettes.orange;
800
- presetPalettes.yellow;
801
- presetPalettes.lime;
802
- presetPalettes.green;
803
- presetPalettes.cyan;
804
- presetPalettes.blue;
805
- presetPalettes.geekblue;
806
- presetPalettes.purple;
807
- presetPalettes.magenta;
808
- presetPalettes.grey;
809
796
 
810
797
  // https://github.com/substack/insert-css
811
798
  var containers = []; // will store container HTMLElement references
@@ -1383,34 +1370,36 @@ const _sfc_main = vue.defineComponent({
1383
1370
  };
1384
1371
  }
1385
1372
  });
1386
- const _hoisted_1 = /* @__PURE__ */ vue.createElementVNode("span", null, "\u8BF7\u9009\u62E9", -1);
1387
- const _hoisted_2 = { class: "input-icon active-icon" };
1388
- const _hoisted_3 = { class: "pop-seleted-title" };
1389
- const _hoisted_4 = /* @__PURE__ */ vue.createTextVNode(" \u5DF2\u9009\u62E9");
1390
- const _hoisted_5 = /* @__PURE__ */ vue.createTextVNode("\u9879 ");
1391
- const _hoisted_6 = { class: "__shops-filter-list" };
1392
- const _hoisted_7 = {
1373
+ const _hoisted_1 = { key: 0 };
1374
+ const _hoisted_2 = /* @__PURE__ */ vue.createElementVNode("span", null, "\u8BF7\u9009\u62E9", -1);
1375
+ const _hoisted_3 = { class: "input-icon active-icon" };
1376
+ const _hoisted_4 = { key: 1 };
1377
+ const _hoisted_5 = { class: "pop-seleted-title" };
1378
+ const _hoisted_6 = /* @__PURE__ */ vue.createTextVNode(" \u5DF2\u9009\u62E9");
1379
+ const _hoisted_7 = /* @__PURE__ */ vue.createTextVNode("\u9879 ");
1380
+ const _hoisted_8 = { class: "__shops-filter-list" };
1381
+ const _hoisted_9 = {
1393
1382
  key: 0,
1394
1383
  class: "__shops-filter-tabs"
1395
1384
  };
1396
- const _hoisted_8 = { class: "label" };
1397
- const _hoisted_9 = { class: "__shops-filter-areas" };
1398
- const _hoisted_10 = ["onClick"];
1399
- const _hoisted_11 = ["onClick"];
1400
- const _hoisted_12 = { class: "__shops-filter-selecting" };
1401
- const _hoisted_13 = /* @__PURE__ */ vue.createTextVNode(" \u5DF2\u9009\u62E9");
1402
- const _hoisted_14 = /* @__PURE__ */ vue.createTextVNode("\u9879 ");
1403
- const _hoisted_15 = { class: "__checkbox-operate-box" };
1404
- const _hoisted_16 = /* @__PURE__ */ vue.createTextVNode("\u5168\u9009");
1405
- const _hoisted_17 = /* @__PURE__ */ vue.createTextVNode("\u53CD\u9009");
1406
- const _hoisted_18 = /* @__PURE__ */ vue.createTextVNode("\u6E05\u7A7A");
1407
- const _hoisted_19 = {
1385
+ const _hoisted_10 = { class: "label" };
1386
+ const _hoisted_11 = { class: "__shops-filter-areas" };
1387
+ const _hoisted_12 = ["onClick"];
1388
+ const _hoisted_13 = ["onClick"];
1389
+ const _hoisted_14 = { class: "__shops-filter-selecting" };
1390
+ const _hoisted_15 = /* @__PURE__ */ vue.createTextVNode(" \u5DF2\u9009\u62E9");
1391
+ const _hoisted_16 = /* @__PURE__ */ vue.createTextVNode("\u9879 ");
1392
+ const _hoisted_17 = { class: "__checkbox-operate-box" };
1393
+ const _hoisted_18 = /* @__PURE__ */ vue.createTextVNode("\u5168\u9009");
1394
+ const _hoisted_19 = /* @__PURE__ */ vue.createTextVNode("\u53CD\u9009");
1395
+ const _hoisted_20 = /* @__PURE__ */ vue.createTextVNode("\u6E05\u7A7A");
1396
+ const _hoisted_21 = {
1408
1397
  key: 0,
1409
1398
  class: "__shops-filter-selecting"
1410
1399
  };
1411
- const _hoisted_20 = /* @__PURE__ */ vue.createTextVNode(" \u5DF2\u9009\u62E9");
1412
- const _hoisted_21 = /* @__PURE__ */ vue.createTextVNode("\u9879 ");
1413
- const _hoisted_22 = /* @__PURE__ */ vue.createElementVNode("span", { style: { "color": "#9393a3" } }, "\u6682\u65E0\u6570\u636E", -1);
1400
+ const _hoisted_22 = /* @__PURE__ */ vue.createTextVNode(" \u5DF2\u9009\u62E9");
1401
+ const _hoisted_23 = /* @__PURE__ */ vue.createTextVNode("\u9879 ");
1402
+ const _hoisted_24 = /* @__PURE__ */ vue.createElementVNode("span", { style: { "color": "#9393a3" } }, "\u6682\u65E0\u6570\u636E", -1);
1414
1403
  function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
1415
1404
  const _component_down_outlined = vue.resolveComponent("down-outlined");
1416
1405
  const _component_close_circle_filled = vue.resolveComponent("close-circle-filled");
@@ -1437,60 +1426,61 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
1437
1426
  style: vue.normalizeStyle({ width: _ctx.displayParams?.width || "436px" }),
1438
1427
  onClick: _cache[3] || (_cache[3] = (...args) => _ctx.triggleActive && _ctx.triggleActive(...args))
1439
1428
  }, [
1440
- _ctx.selected && !_ctx.selected.length ? (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 0 }, [
1441
- _hoisted_1,
1442
- vue.createElementVNode("span", _hoisted_2, [
1429
+ _ctx.selected && !_ctx.selected.length ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1, [
1430
+ _hoisted_2,
1431
+ vue.createElementVNode("span", _hoisted_3, [
1443
1432
  vue.createVNode(_component_down_outlined)
1444
1433
  ])
1445
- ], 64)) : _ctx.selected && _ctx.selected.length ? (vue.openBlock(), vue.createBlock(_component_Popover, {
1446
- key: 1,
1447
- title: "",
1448
- "overlay-class-name": "__shops-filter-popover"
1449
- }, {
1450
- content: vue.withCtx(() => [
1451
- vue.createElementVNode("div", {
1452
- class: "pop-seleted",
1453
- style: vue.normalizeStyle({ "min-width": _ctx.displayParams?.width || "436px" })
1454
- }, [
1455
- vue.createElementVNode("div", _hoisted_3, [
1456
- _hoisted_4,
1457
- vue.createElementVNode("span", null, vue.toDisplayString(_ctx.selected.length), 1),
1458
- _hoisted_5
1459
- ]),
1434
+ ])) : _ctx.selected && _ctx.selected.length ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_4, [
1435
+ vue.createVNode(_component_Popover, {
1436
+ title: "",
1437
+ "overlay-class-name": "__shops-filter-popover"
1438
+ }, {
1439
+ content: vue.withCtx(() => [
1460
1440
  vue.createElementVNode("div", {
1461
- class: "pop-seleted-shops",
1462
- onWheel: _cache[0] || (_cache[0] = vue.withModifiers(() => {
1463
- }, ["stop"]))
1441
+ class: "pop-seleted",
1442
+ style: vue.normalizeStyle({ "min-width": _ctx.displayParams?.width || "436px" })
1464
1443
  }, [
1444
+ vue.createElementVNode("div", _hoisted_5, [
1445
+ _hoisted_6,
1446
+ vue.createElementVNode("span", null, vue.toDisplayString(_ctx.selected.length), 1),
1447
+ _hoisted_7
1448
+ ]),
1449
+ vue.createElementVNode("div", {
1450
+ class: "pop-seleted-shops",
1451
+ onWheel: _cache[0] || (_cache[0] = vue.withModifiers(() => {
1452
+ }, ["stop"]))
1453
+ }, [
1454
+ (vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.selected, (item) => {
1455
+ return vue.openBlock(), vue.createElementBlock("div", {
1456
+ key: item,
1457
+ class: "pop-seleted-item"
1458
+ }, vue.toDisplayString(_ctx.shopListByCode[item]), 1);
1459
+ }), 128))
1460
+ ], 32)
1461
+ ], 4)
1462
+ ]),
1463
+ default: vue.withCtx(() => [
1464
+ vue.createElementVNode("div", _hoisted_8, [
1465
1465
  (vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.selected, (item) => {
1466
1466
  return vue.openBlock(), vue.createElementBlock("div", {
1467
1467
  key: item,
1468
- class: "pop-seleted-item"
1468
+ class: "selected-tag"
1469
1469
  }, vue.toDisplayString(_ctx.shopListByCode[item]), 1);
1470
- }), 128))
1471
- ], 32)
1472
- ], 4)
1473
- ]),
1474
- default: vue.withCtx(() => [
1475
- vue.createElementVNode("div", _hoisted_6, [
1476
- (vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.selected, (item) => {
1477
- return vue.openBlock(), vue.createElementBlock("div", {
1478
- key: item,
1479
- class: "selected-tag"
1480
- }, vue.toDisplayString(_ctx.shopListByCode[item]), 1);
1481
- }), 128)),
1482
- vue.createElementVNode("div", {
1483
- class: "delete-icon",
1484
- onClick: _cache[1] || (_cache[1] = vue.withModifiers((...args) => _ctx.clearAllSelected && _ctx.clearAllSelected(...args), ["stop"])),
1485
- onMouseover: _cache[2] || (_cache[2] = vue.withModifiers(() => {
1486
- }, ["stop"]))
1487
- }, [
1488
- vue.createVNode(_component_close_circle_filled, { style: { "color": "#9393a3" } })
1489
- ], 32)
1490
- ])
1491
- ]),
1492
- _: 1
1493
- })) : vue.createCommentVNode("v-if", true)
1470
+ }), 128)),
1471
+ vue.createElementVNode("div", {
1472
+ class: "delete-icon",
1473
+ onClick: _cache[1] || (_cache[1] = vue.withModifiers((...args) => _ctx.clearAllSelected && _ctx.clearAllSelected(...args), ["stop"])),
1474
+ onMouseover: _cache[2] || (_cache[2] = vue.withModifiers(() => {
1475
+ }, ["stop"]))
1476
+ }, [
1477
+ vue.createVNode(_component_close_circle_filled, { style: { "color": "#9393a3" } })
1478
+ ], 32)
1479
+ ])
1480
+ ]),
1481
+ _: 1
1482
+ })
1483
+ ])) : vue.createCommentVNode("v-if", true)
1494
1484
  ], 6),
1495
1485
  vue.withDirectives(vue.createElementVNode("div", {
1496
1486
  class: "__shops-filter-search-input",
@@ -1509,38 +1499,38 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
1509
1499
  vue.withDirectives(vue.createElementVNode("div", {
1510
1500
  class: vue.normalizeClass(["__shops-filter-content", { "__shops-filter-no-absolute": _ctx.showAlways }])
1511
1501
  }, [
1512
- _ctx.filterArr && _ctx.filterArr.length ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_7, [
1502
+ _ctx.filterArr && _ctx.filterArr.length ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_9, [
1513
1503
  (vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.filterArr, (item, index) => {
1514
1504
  return vue.openBlock(), vue.createElementBlock("div", {
1515
1505
  key: item.paramsStr,
1516
1506
  class: "__shops-filter-area-tabs"
1517
1507
  }, [
1518
- vue.createElementVNode("div", _hoisted_8, vue.toDisplayString(item.label) + ":", 1),
1519
- vue.createElementVNode("div", _hoisted_9, [
1508
+ vue.createElementVNode("div", _hoisted_10, vue.toDisplayString(item.label) + ":", 1),
1509
+ vue.createElementVNode("div", _hoisted_11, [
1520
1510
  vue.createElementVNode("span", {
1521
1511
  class: vue.normalizeClass({
1522
1512
  active: !(item.multiple ? _ctx.filterSelects[index].length : !!_ctx.filterSelects[index])
1523
1513
  }),
1524
1514
  onClick: vue.withModifiers(($event) => _ctx.changeFilterSelect(index, ""), ["self"])
1525
- }, "\u5168\u90E8", 10, _hoisted_10),
1515
+ }, "\u5168\u90E8", 10, _hoisted_12),
1526
1516
  (vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(item.list, (element) => {
1527
1517
  return vue.openBlock(), vue.createElementBlock("span", {
1528
1518
  key: element.code,
1529
1519
  class: vue.normalizeClass({ active: _ctx.filterIsActive(index, element.code) }),
1530
1520
  onClick: vue.withModifiers(($event) => _ctx.changeFilterSelect(index, element.code), ["self"])
1531
- }, vue.toDisplayString(element.label), 11, _hoisted_11);
1521
+ }, vue.toDisplayString(element.label), 11, _hoisted_13);
1532
1522
  }), 128))
1533
1523
  ])
1534
1524
  ]);
1535
1525
  }), 128)),
1536
- vue.createElementVNode("div", _hoisted_12, [
1537
- _hoisted_13,
1526
+ vue.createElementVNode("div", _hoisted_14, [
1527
+ _hoisted_15,
1538
1528
  vue.createElementVNode("span", null, vue.toDisplayString(_ctx.selected.length), 1),
1539
- _hoisted_14
1529
+ _hoisted_16
1540
1530
  ])
1541
1531
  ])) : vue.createCommentVNode("v-if", true),
1542
1532
  _ctx.shopList && _ctx.shopList.length ? (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 1 }, [
1543
- vue.createElementVNode("div", _hoisted_15, [
1533
+ vue.createElementVNode("div", _hoisted_17, [
1544
1534
  vue.createVNode(_component_Checkbox, {
1545
1535
  checked: _ctx.checkAll,
1546
1536
  "onUpdate:checked": _cache[5] || (_cache[5] = ($event) => _ctx.checkAll = $event),
@@ -1548,7 +1538,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
1548
1538
  onChange: _ctx.onCheckAllChange
1549
1539
  }, {
1550
1540
  default: vue.withCtx(() => [
1551
- _hoisted_16
1541
+ _hoisted_18
1552
1542
  ]),
1553
1543
  _: 1
1554
1544
  }, 8, ["checked", "indeterminate", "onChange"]),
@@ -1558,7 +1548,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
1558
1548
  onChange: _ctx.invertChange
1559
1549
  }, {
1560
1550
  default: vue.withCtx(() => [
1561
- _hoisted_17
1551
+ _hoisted_19
1562
1552
  ]),
1563
1553
  _: 1
1564
1554
  }, 8, ["checked", "onChange"]),
@@ -1570,14 +1560,14 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
1570
1560
  vue.createVNode(_component_delete_outlined)
1571
1561
  ]),
1572
1562
  default: vue.withCtx(() => [
1573
- _hoisted_18
1563
+ _hoisted_20
1574
1564
  ]),
1575
1565
  _: 1
1576
1566
  }, 8, ["onClick"]),
1577
- _ctx.filterArr && !_ctx.filterArr.length ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_19, [
1578
- _hoisted_20,
1567
+ _ctx.filterArr && !_ctx.filterArr.length ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_21, [
1568
+ _hoisted_22,
1579
1569
  vue.createElementVNode("span", null, vue.toDisplayString(_ctx.selected.length), 1),
1580
- _hoisted_21
1570
+ _hoisted_23
1581
1571
  ])) : vue.createCommentVNode("v-if", true)
1582
1572
  ]),
1583
1573
  vue.createElementVNode("div", {
@@ -1609,7 +1599,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
1609
1599
  ], 64)) : vue.createCommentVNode("v-if", true),
1610
1600
  _ctx.shopList && !_ctx.shopList.length ? (vue.openBlock(), vue.createBlock(_component_Empty, { key: 2 }, {
1611
1601
  description: vue.withCtx(() => [
1612
- _hoisted_22
1602
+ _hoisted_24
1613
1603
  ]),
1614
1604
  _: 1
1615
1605
  })) : vue.createCommentVNode("v-if", true)
@@ -84,7 +84,7 @@ function boundAlpha(a) {
84
84
  */
85
85
  function convertToPercentage(n) {
86
86
  if (n <= 1) {
87
- return "".concat(Number(n) * 100, "%");
87
+ return Number(n) * 100 + "%";
88
88
  }
89
89
  return n;
90
90
  }
@@ -466,12 +466,12 @@ var CSS_INTEGER = '[-\\+]?\\d+%?';
466
466
  // <http://www.w3.org/TR/css3-values/#number-value>
467
467
  var CSS_NUMBER = '[-\\+]?\\d*\\.\\d+%?';
468
468
  // Allow positive/negative integer/number. Don't capture the either/or, just the entire outcome.
469
- var CSS_UNIT = "(?:".concat(CSS_NUMBER, ")|(?:").concat(CSS_INTEGER, ")");
469
+ var CSS_UNIT = "(?:" + CSS_NUMBER + ")|(?:" + CSS_INTEGER + ")";
470
470
  // Actual matching.
471
471
  // Parentheses and commas are optional, but not required.
472
472
  // Whitespace can take the place of commas or opening paren
473
- var PERMISSIVE_MATCH3 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
474
- var PERMISSIVE_MATCH4 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
473
+ var PERMISSIVE_MATCH3 = "[\\s|\\(]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")\\s*\\)?";
474
+ var PERMISSIVE_MATCH4 = "[\\s|\\(]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")\\s*\\)?";
475
475
  var matchers = {
476
476
  CSS_UNIT: new RegExp(CSS_UNIT),
477
477
  rgb: new RegExp('rgb' + PERMISSIVE_MATCH3),
@@ -796,19 +796,6 @@ Object.keys(presetPrimaryColors).forEach(function (key) {
796
796
  });
797
797
  presetDarkPalettes[key].primary = presetDarkPalettes[key][5];
798
798
  });
799
- presetPalettes.red;
800
- presetPalettes.volcano;
801
- presetPalettes.gold;
802
- presetPalettes.orange;
803
- presetPalettes.yellow;
804
- presetPalettes.lime;
805
- presetPalettes.green;
806
- presetPalettes.cyan;
807
- presetPalettes.blue;
808
- presetPalettes.geekblue;
809
- presetPalettes.purple;
810
- presetPalettes.magenta;
811
- presetPalettes.grey;
812
799
 
813
800
  // https://github.com/substack/insert-css
814
801
  var containers = []; // will store container HTMLElement references
@@ -870,9 +857,9 @@ function insertCss(css, options) {
870
857
  return styleElement;
871
858
  }
872
859
 
873
- function _objectSpread$3(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? Object(arguments[i]) : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$3(target, key, source[key]); }); } return target; }
860
+ function _objectSpread$4(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? Object(arguments[i]) : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$4(target, key, source[key]); }); } return target; }
874
861
 
875
- function _defineProperty$3(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
862
+ function _defineProperty$4(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
876
863
  function warn(valid, message) {
877
864
  // Support uglify
878
865
  if (process.env.NODE_ENV !== 'production' && !valid && console !== undefined) {
@@ -888,14 +875,14 @@ function isIconDefinition(target) {
888
875
  }
889
876
  function generate(node, key, rootProps) {
890
877
  if (!rootProps) {
891
- return vue.h(node.tag, _objectSpread$3({
878
+ return vue.h(node.tag, _objectSpread$4({
892
879
  key: key
893
880
  }, node.attrs), (node.children || []).map(function (child, index) {
894
881
  return generate(child, "".concat(key, "-").concat(node.tag, "-").concat(index));
895
882
  }));
896
883
  }
897
884
 
898
- return vue.h(node.tag, _objectSpread$3({
885
+ return vue.h(node.tag, _objectSpread$4({
899
886
  key: key
900
887
  }, rootProps, node.attrs), (node.children || []).map(function (child, index) {
901
888
  return generate(child, "".concat(key, "-").concat(node.tag, "-").concat(index));
@@ -935,9 +922,9 @@ function _objectWithoutProperties$1(source, excluded) { if (source == null) retu
935
922
 
936
923
  function _objectWithoutPropertiesLoose$1(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
937
924
 
938
- function _objectSpread$2(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? Object(arguments[i]) : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$2(target, key, source[key]); }); } return target; }
925
+ function _objectSpread$3(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? Object(arguments[i]) : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$3(target, key, source[key]); }); } return target; }
939
926
 
940
- function _defineProperty$2(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
927
+ function _defineProperty$3(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
941
928
  var twoToneColorPalette = {
942
929
  primaryColor: '#333',
943
930
  secondaryColor: '#E6E6E6',
@@ -953,11 +940,11 @@ function setTwoToneColors(_ref) {
953
940
  }
954
941
 
955
942
  function getTwoToneColors() {
956
- return _objectSpread$2({}, twoToneColorPalette);
943
+ return _objectSpread$3({}, twoToneColorPalette);
957
944
  }
958
945
 
959
946
  var IconBase = function IconBase(props, context) {
960
- var _props$context$attrs = _objectSpread$2({}, props, context.attrs),
947
+ var _props$context$attrs = _objectSpread$3({}, props, context.attrs),
961
948
  icon = _props$context$attrs.icon,
962
949
  primaryColor = _props$context$attrs.primaryColor,
963
950
  secondaryColor = _props$context$attrs.secondaryColor,
@@ -982,12 +969,12 @@ var IconBase = function IconBase(props, context) {
982
969
  var target = icon;
983
970
 
984
971
  if (target && typeof target.icon === 'function') {
985
- target = _objectSpread$2({}, target, {
972
+ target = _objectSpread$3({}, target, {
986
973
  icon: target.icon(colors.primaryColor, colors.secondaryColor)
987
974
  });
988
975
  }
989
976
 
990
- return generate(target.icon, "svg-".concat(target.name), _objectSpread$2({}, restProps, {
977
+ return generate(target.icon, "svg-".concat(target.name), _objectSpread$3({}, restProps, {
991
978
  'data-icon': target.name,
992
979
  width: '1em',
993
980
  height: '1em',
@@ -1054,9 +1041,9 @@ function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Sy
1054
1041
 
1055
1042
  function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
1056
1043
 
1057
- function _objectSpread$1(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? Object(arguments[i]) : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$1(target, key, source[key]); }); } return target; }
1044
+ function _objectSpread$2(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? Object(arguments[i]) : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$2(target, key, source[key]); }); } return target; }
1058
1045
 
1059
- function _defineProperty$1(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
1046
+ function _defineProperty$2(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
1060
1047
 
1061
1048
  function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
1062
1049
 
@@ -1067,7 +1054,7 @@ setTwoToneColor('#1890ff');
1067
1054
  var Icon = function Icon(props, context) {
1068
1055
  var _classObj;
1069
1056
 
1070
- var _props$context$attrs = _objectSpread$1({}, props, context.attrs),
1057
+ var _props$context$attrs = _objectSpread$2({}, props, context.attrs),
1071
1058
  cls = _props$context$attrs["class"],
1072
1059
  icon = _props$context$attrs.icon,
1073
1060
  spin = _props$context$attrs.spin,
@@ -1079,7 +1066,7 @@ var Icon = function Icon(props, context) {
1079
1066
 
1080
1067
  var classObj = (_classObj = {
1081
1068
  anticon: true
1082
- }, _defineProperty$1(_classObj, "anticon-".concat(icon.name), Boolean(icon.name)), _defineProperty$1(_classObj, cls, cls), _classObj);
1069
+ }, _defineProperty$2(_classObj, "anticon-".concat(icon.name), Boolean(icon.name)), _defineProperty$2(_classObj, cls, cls), _classObj);
1083
1070
  var svgClassString = spin === '' || !!spin || icon.name === 'loading' ? 'anticon-spin' : '';
1084
1071
  var iconTabIndex = tabindex;
1085
1072
 
@@ -1098,7 +1085,7 @@ var Icon = function Icon(props, context) {
1098
1085
  primaryColor = _normalizeTwoToneColo2[0],
1099
1086
  secondaryColor = _normalizeTwoToneColo2[1];
1100
1087
 
1101
- return vue.createVNode("span", _objectSpread$1({
1088
+ return vue.createVNode("span", _objectSpread$2({
1102
1089
  "role": "img",
1103
1090
  "aria-label": icon.name
1104
1091
  }, restProps, {
@@ -1129,14 +1116,14 @@ var AntdIcon = Icon;
1129
1116
  var CloseCircleFilled$2 = { "icon": { "tag": "svg", "attrs": { "viewBox": "64 64 896 896", "focusable": "false" }, "children": [{ "tag": "path", "attrs": { "d": "M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm165.4 618.2l-66-.3L512 563.4l-99.3 118.4-66.1.3c-4.4 0-8-3.5-8-8 0-1.9.7-3.7 1.9-5.2l130.1-155L340.5 359a8.32 8.32 0 01-1.9-5.2c0-4.4 3.6-8 8-8l66.1.3L512 464.6l99.3-118.4 66-.3c4.4 0 8 3.5 8 8 0 1.9-.7 3.7-1.9 5.2L553.5 514l130 155c1.2 1.5 1.9 3.3 1.9 5.2 0 4.4-3.6 8-8 8z" } }] }, "name": "close-circle", "theme": "filled" };
1130
1117
  var CloseCircleFilledSvg = CloseCircleFilled$2;
1131
1118
 
1132
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? Object(arguments[i]) : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty(target, key, source[key]); }); } return target; }
1119
+ function _objectSpread$1(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? Object(arguments[i]) : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty$1(target, key, source[key]); }); } return target; }
1133
1120
 
1134
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
1121
+ function _defineProperty$1(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
1135
1122
 
1136
1123
  var CloseCircleFilled = function CloseCircleFilled(props, context) {
1137
- var p = _objectSpread({}, props, context.attrs);
1124
+ var p = _objectSpread$1({}, props, context.attrs);
1138
1125
 
1139
- return vue.createVNode(AntdIcon, _objectSpread({}, p, {
1126
+ return vue.createVNode(AntdIcon, _objectSpread$1({}, p, {
1140
1127
  "icon": CloseCircleFilledSvg
1141
1128
  }), null);
1142
1129
  };
@@ -1145,6 +1132,26 @@ CloseCircleFilled.displayName = 'CloseCircleFilled';
1145
1132
  CloseCircleFilled.inheritAttrs = false;
1146
1133
  var CloseCircleFilled$1 = CloseCircleFilled;
1147
1134
 
1135
+ // This icon file is generated automatically.
1136
+ var SearchOutlined$2 = { "icon": { "tag": "svg", "attrs": { "viewBox": "64 64 896 896", "focusable": "false" }, "children": [{ "tag": "path", "attrs": { "d": "M909.6 854.5L649.9 594.8C690.2 542.7 712 479 712 412c0-80.2-31.3-155.4-87.9-212.1-56.6-56.7-132-87.9-212.1-87.9s-155.5 31.3-212.1 87.9C143.2 256.5 112 331.8 112 412c0 80.1 31.3 155.5 87.9 212.1C256.5 680.8 331.8 712 412 712c67 0 130.6-21.8 182.7-62l259.7 259.6a8.2 8.2 0 0011.6 0l43.6-43.5a8.2 8.2 0 000-11.6zM570.4 570.4C528 612.7 471.8 636 412 636s-116-23.3-158.4-65.6C211.3 528 188 471.8 188 412s23.3-116.1 65.6-158.4C296 211.3 352.2 188 412 188s116.1 23.2 158.4 65.6S636 352.2 636 412s-23.3 116.1-65.6 158.4z" } }] }, "name": "search", "theme": "outlined" };
1137
+ var SearchOutlinedSvg = SearchOutlined$2;
1138
+
1139
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? Object(arguments[i]) : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty(target, key, source[key]); }); } return target; }
1140
+
1141
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
1142
+
1143
+ var SearchOutlined = function SearchOutlined(props, context) {
1144
+ var p = _objectSpread({}, props, context.attrs);
1145
+
1146
+ return vue.createVNode(AntdIcon, _objectSpread({}, p, {
1147
+ "icon": SearchOutlinedSvg
1148
+ }), null);
1149
+ };
1150
+
1151
+ SearchOutlined.displayName = 'SearchOutlined';
1152
+ SearchOutlined.inheritAttrs = false;
1153
+ var SearchOutlined$1 = SearchOutlined;
1154
+
1148
1155
  var _export_sfc = (sfc, props) => {
1149
1156
  const target = sfc.__vccOpts || sfc;
1150
1157
  for (const [key, val] of props) {
@@ -1154,7 +1161,14 @@ var _export_sfc = (sfc, props) => {
1154
1161
  };
1155
1162
 
1156
1163
  const _sfc_main$3 = vue.defineComponent({
1157
- components: { CloseCircleFilled: CloseCircleFilled$1, Empty: Empty__default["default"], AInput: AInput__default["default"], Checkbox: Checkbox__default["default"], ATree: ATree__default["default"] },
1164
+ components: {
1165
+ CloseCircleFilled: CloseCircleFilled$1,
1166
+ SearchOutlined: SearchOutlined$1,
1167
+ Empty: Empty__default["default"],
1168
+ AInput: AInput__default["default"],
1169
+ Checkbox: Checkbox__default["default"],
1170
+ ATree: ATree__default["default"]
1171
+ },
1158
1172
  props: {
1159
1173
  limit: {
1160
1174
  type: Number,
@@ -1416,7 +1430,7 @@ var multipleCmp = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["render", _sfc_rend
1416
1430
 
1417
1431
  const _sfc_main$2 = vue.defineComponent({
1418
1432
  name: "RadioCmp",
1419
- components: { ARadio: ARadio__default["default"], AInput: AInput__default["default"], ARadioGroup: ARadio.Group },
1433
+ components: { ARadio: ARadio__default["default"], AInput: AInput__default["default"], ARadioGroup: ARadio.Group, Empty: Empty__default["default"], SearchOutlined: SearchOutlined$1 },
1420
1434
  props: {
1421
1435
  list: {
1422
1436
  type: Array,
@@ -1514,7 +1528,14 @@ var radioCmp = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["render", _sfc_render$
1514
1528
 
1515
1529
  const _sfc_main$1 = vue.defineComponent({
1516
1530
  name: "VariedCmp",
1517
- components: { CloseCircleFilled: CloseCircleFilled$1, AInput: AInput__default["default"], Checkbox: Checkbox__default["default"], ATree: ATree__default["default"] },
1531
+ components: {
1532
+ CloseCircleFilled: CloseCircleFilled$1,
1533
+ SearchOutlined: SearchOutlined$1,
1534
+ AInput: AInput__default["default"],
1535
+ Checkbox: Checkbox__default["default"],
1536
+ ATree: ATree__default["default"],
1537
+ Empty: Empty__default["default"]
1538
+ },
1518
1539
  props: {
1519
1540
  list: {
1520
1541
  type: Array,
@@ -1814,7 +1835,7 @@ function _sfc_render$1(_ctx, _cache, $props, $setup, $data, $options) {
1814
1835
  ]);
1815
1836
  }), 128))
1816
1837
  ])) : vue.createCommentVNode("v-if", true)
1817
- ], 2112))
1838
+ ], 64))
1818
1839
  ])
1819
1840
  ]),
1820
1841
  vue.createElementVNode("div", _hoisted_14, [
@@ -1919,7 +1940,7 @@ const _sfc_main = vue.defineComponent({
1919
1940
  },
1920
1941
  summitSelect() {
1921
1942
  if (typeof state.selected === "string") {
1922
- emit("update:select", state.dataMap.get(state.selected));
1943
+ emit("update:select", [state.dataMap.get(state.selected)]);
1923
1944
  } else if (state.selected instanceof Array) {
1924
1945
  emit("update:select", state.selected.map((item) => state.dataMap.get(item)));
1925
1946
  }
@@ -69,7 +69,7 @@ function boundAlpha(a) {
69
69
  */
70
70
  function convertToPercentage(n) {
71
71
  if (n <= 1) {
72
- return "".concat(Number(n) * 100, "%");
72
+ return Number(n) * 100 + "%";
73
73
  }
74
74
  return n;
75
75
  }
@@ -451,12 +451,12 @@ var CSS_INTEGER = '[-\\+]?\\d+%?';
451
451
  // <http://www.w3.org/TR/css3-values/#number-value>
452
452
  var CSS_NUMBER = '[-\\+]?\\d*\\.\\d+%?';
453
453
  // Allow positive/negative integer/number. Don't capture the either/or, just the entire outcome.
454
- var CSS_UNIT = "(?:".concat(CSS_NUMBER, ")|(?:").concat(CSS_INTEGER, ")");
454
+ var CSS_UNIT = "(?:" + CSS_NUMBER + ")|(?:" + CSS_INTEGER + ")";
455
455
  // Actual matching.
456
456
  // Parentheses and commas are optional, but not required.
457
457
  // Whitespace can take the place of commas or opening paren
458
- var PERMISSIVE_MATCH3 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
459
- var PERMISSIVE_MATCH4 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
458
+ var PERMISSIVE_MATCH3 = "[\\s|\\(]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")\\s*\\)?";
459
+ var PERMISSIVE_MATCH4 = "[\\s|\\(]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")[,|\\s]+(" + CSS_UNIT + ")\\s*\\)?";
460
460
  var matchers = {
461
461
  CSS_UNIT: new RegExp(CSS_UNIT),
462
462
  rgb: new RegExp('rgb' + PERMISSIVE_MATCH3),
@@ -781,19 +781,6 @@ Object.keys(presetPrimaryColors).forEach(function (key) {
781
781
  });
782
782
  presetDarkPalettes[key].primary = presetDarkPalettes[key][5];
783
783
  });
784
- presetPalettes.red;
785
- presetPalettes.volcano;
786
- presetPalettes.gold;
787
- presetPalettes.orange;
788
- presetPalettes.yellow;
789
- presetPalettes.lime;
790
- presetPalettes.green;
791
- presetPalettes.cyan;
792
- presetPalettes.blue;
793
- presetPalettes.geekblue;
794
- presetPalettes.purple;
795
- presetPalettes.magenta;
796
- presetPalettes.grey;
797
784
 
798
785
  // https://github.com/substack/insert-css
799
786
  var containers = []; // will store container HTMLElement references
@@ -1719,7 +1706,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
1719
1706
  key: 1,
1720
1707
  file: item
1721
1708
  })
1722
- ], 2112)) : vue.createCommentVNode("v-if", true),
1709
+ ], 64)) : vue.createCommentVNode("v-if", true),
1723
1710
  vue.createCommentVNode(" \u56FE\u7247\u9519\u8BEF\u5C55\u793A "),
1724
1711
  item.status === "error" ? (vue.openBlock(), vue.createElementBlock("div", {
1725
1712
  key: 2,
@@ -1765,7 +1752,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
1765
1752
  }, 8, ["class", "disabled"]),
1766
1753
  _ctx.extraConfigs.tips && _ctx.extraConfigs.showTips ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_23, vue.toDisplayString(_ctx.extraConfigs.tips), 1)) : vue.createCommentVNode("v-if", true)
1767
1754
  ])) : vue.createCommentVNode("v-if", true)
1768
- ], 2112))
1755
+ ], 64))
1769
1756
  ]),
1770
1757
  _: 3
1771
1758
  }, 16, ["class"])) : vue.createCommentVNode("v-if", true),