bm-admin-ui 1.0.9-alpha → 1.0.10-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.
- package/es/components/feedback/index.js +6 -19
- package/es/components/multi-cascader-compose/index.js +4 -17
- package/es/components/search-filter/index.d.ts +1 -3
- package/es/components/search-filter/index.js +6 -18
- package/es/components/search-filter/src/search-filter.vue.d.ts +1 -3
- package/es/components/shops-filter/index.js +4 -17
- package/es/components/staffs-selector/index.js +5 -18
- package/es/components/upload/index.js +6 -19
- package/index.esm.js +37174 -953
- package/index.js +37174 -953
- package/lib/components/feedback/index.js +5 -18
- package/lib/components/multi-cascader-compose/index.js +4 -17
- package/lib/components/search-filter/index.d.ts +1 -3
- package/lib/components/search-filter/index.js +6 -18
- package/lib/components/search-filter/src/search-filter.vue.d.ts +1 -3
- package/lib/components/shops-filter/index.js +4 -17
- package/lib/components/staffs-selector/index.js +5 -18
- package/lib/components/upload/index.js +6 -19
- package/package.json +29 -29
- package/theme-chalk/button.css +1 -1
- package/theme-chalk/feedback.css +1 -1
- package/theme-chalk/float-table.css +1 -1
- package/theme-chalk/floating-vue.css +1 -1
- package/theme-chalk/flow-designer.css +1 -1
- package/theme-chalk/index.css +1 -1
- package/theme-chalk/modal.css +1 -1
- package/theme-chalk/multi-cascader-compose.css +1 -1
- package/theme-chalk/over-tooltips.css +1 -1
- package/theme-chalk/search-filter.css +1 -1
- package/theme-chalk/timeline.css +1 -1
- package/theme-chalk/upload.css +1 -1
- package/types/components/search-filter/index.d.ts +1 -3
- package/types/components/search-filter/src/search-filter.vue.d.ts +1 -3
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { notification, Modal, Button } from 'ant-design-vue';
|
|
2
2
|
import { withInstall } from 'bm-admin-ui/es/utils/with-install';
|
|
3
3
|
import { h, nextTick, createVNode, defineComponent, computed, openBlock, createBlock, unref, withCtx, resolveDynamicComponent, renderSlot, useSlots, resolveComponent, createSlots, createElementVNode, createTextVNode } from 'vue';
|
|
4
4
|
import AAlert from 'ant-design-vue/lib/alert';
|
|
5
5
|
import AModal$1 from 'ant-design-vue/lib/modal';
|
|
6
6
|
import message from 'ant-design-vue/lib/message';
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
/******************************************************************************
|
|
9
9
|
Copyright (c) Microsoft Corporation.
|
|
10
10
|
|
|
11
11
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
@@ -94,7 +94,7 @@ function boundAlpha(a) {
|
|
|
94
94
|
*/
|
|
95
95
|
function convertToPercentage(n) {
|
|
96
96
|
if (n <= 1) {
|
|
97
|
-
return Number(n) * 100
|
|
97
|
+
return "".concat(Number(n) * 100, "%");
|
|
98
98
|
}
|
|
99
99
|
return n;
|
|
100
100
|
}
|
|
@@ -476,12 +476,12 @@ var CSS_INTEGER = '[-\\+]?\\d+%?';
|
|
|
476
476
|
// <http://www.w3.org/TR/css3-values/#number-value>
|
|
477
477
|
var CSS_NUMBER = '[-\\+]?\\d*\\.\\d+%?';
|
|
478
478
|
// Allow positive/negative integer/number. Don't capture the either/or, just the entire outcome.
|
|
479
|
-
var CSS_UNIT = "(?:"
|
|
479
|
+
var CSS_UNIT = "(?:".concat(CSS_NUMBER, ")|(?:").concat(CSS_INTEGER, ")");
|
|
480
480
|
// Actual matching.
|
|
481
481
|
// Parentheses and commas are optional, but not required.
|
|
482
482
|
// Whitespace can take the place of commas or opening paren
|
|
483
|
-
var PERMISSIVE_MATCH3 = "[\\s|\\(]+("
|
|
484
|
-
var PERMISSIVE_MATCH4 = "[\\s|\\(]+("
|
|
483
|
+
var PERMISSIVE_MATCH3 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
|
|
484
|
+
var PERMISSIVE_MATCH4 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
|
|
485
485
|
var matchers = {
|
|
486
486
|
CSS_UNIT: new RegExp(CSS_UNIT),
|
|
487
487
|
rgb: new RegExp('rgb' + PERMISSIVE_MATCH3),
|
|
@@ -806,19 +806,6 @@ Object.keys(presetPrimaryColors).forEach(function (key) {
|
|
|
806
806
|
});
|
|
807
807
|
presetDarkPalettes[key].primary = presetDarkPalettes[key][5];
|
|
808
808
|
});
|
|
809
|
-
presetPalettes.red;
|
|
810
|
-
presetPalettes.volcano;
|
|
811
|
-
presetPalettes.gold;
|
|
812
|
-
presetPalettes.orange;
|
|
813
|
-
presetPalettes.yellow;
|
|
814
|
-
presetPalettes.lime;
|
|
815
|
-
presetPalettes.green;
|
|
816
|
-
presetPalettes.cyan;
|
|
817
|
-
presetPalettes.blue;
|
|
818
|
-
presetPalettes.geekblue;
|
|
819
|
-
presetPalettes.purple;
|
|
820
|
-
presetPalettes.magenta;
|
|
821
|
-
presetPalettes.grey;
|
|
822
809
|
|
|
823
810
|
// https://github.com/substack/insert-css
|
|
824
811
|
var containers = []; // will store container HTMLElement references
|
|
@@ -65,7 +65,7 @@ function boundAlpha(a) {
|
|
|
65
65
|
*/
|
|
66
66
|
function convertToPercentage(n) {
|
|
67
67
|
if (n <= 1) {
|
|
68
|
-
return Number(n) * 100
|
|
68
|
+
return "".concat(Number(n) * 100, "%");
|
|
69
69
|
}
|
|
70
70
|
return n;
|
|
71
71
|
}
|
|
@@ -447,12 +447,12 @@ var CSS_INTEGER = '[-\\+]?\\d+%?';
|
|
|
447
447
|
// <http://www.w3.org/TR/css3-values/#number-value>
|
|
448
448
|
var CSS_NUMBER = '[-\\+]?\\d*\\.\\d+%?';
|
|
449
449
|
// Allow positive/negative integer/number. Don't capture the either/or, just the entire outcome.
|
|
450
|
-
var CSS_UNIT = "(?:"
|
|
450
|
+
var CSS_UNIT = "(?:".concat(CSS_NUMBER, ")|(?:").concat(CSS_INTEGER, ")");
|
|
451
451
|
// Actual matching.
|
|
452
452
|
// Parentheses and commas are optional, but not required.
|
|
453
453
|
// Whitespace can take the place of commas or opening paren
|
|
454
|
-
var PERMISSIVE_MATCH3 = "[\\s|\\(]+("
|
|
455
|
-
var PERMISSIVE_MATCH4 = "[\\s|\\(]+("
|
|
454
|
+
var PERMISSIVE_MATCH3 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
|
|
455
|
+
var PERMISSIVE_MATCH4 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
|
|
456
456
|
var matchers = {
|
|
457
457
|
CSS_UNIT: new RegExp(CSS_UNIT),
|
|
458
458
|
rgb: new RegExp('rgb' + PERMISSIVE_MATCH3),
|
|
@@ -777,19 +777,6 @@ Object.keys(presetPrimaryColors).forEach(function (key) {
|
|
|
777
777
|
});
|
|
778
778
|
presetDarkPalettes[key].primary = presetDarkPalettes[key][5];
|
|
779
779
|
});
|
|
780
|
-
presetPalettes.red;
|
|
781
|
-
presetPalettes.volcano;
|
|
782
|
-
presetPalettes.gold;
|
|
783
|
-
presetPalettes.orange;
|
|
784
|
-
presetPalettes.yellow;
|
|
785
|
-
presetPalettes.lime;
|
|
786
|
-
presetPalettes.green;
|
|
787
|
-
presetPalettes.cyan;
|
|
788
|
-
presetPalettes.blue;
|
|
789
|
-
presetPalettes.geekblue;
|
|
790
|
-
presetPalettes.purple;
|
|
791
|
-
presetPalettes.magenta;
|
|
792
|
-
presetPalettes.grey;
|
|
793
780
|
|
|
794
781
|
// https://github.com/substack/insert-css
|
|
795
782
|
var containers = []; // will store container HTMLElement references
|
|
@@ -114,9 +114,7 @@ declare const BmSearchFilter: import("bm-admin-ui/es/utils/with-install").SFCWit
|
|
|
114
114
|
gutter: unknown[];
|
|
115
115
|
};
|
|
116
116
|
form: {
|
|
117
|
-
labelCol:
|
|
118
|
-
[x: string]: any;
|
|
119
|
-
};
|
|
117
|
+
labelCol: Record<string, any>;
|
|
120
118
|
labelAlign: string;
|
|
121
119
|
wrapperCol: {
|
|
122
120
|
span: number;
|
|
@@ -66,7 +66,7 @@ function boundAlpha(a) {
|
|
|
66
66
|
*/
|
|
67
67
|
function convertToPercentage(n) {
|
|
68
68
|
if (n <= 1) {
|
|
69
|
-
return Number(n) * 100
|
|
69
|
+
return "".concat(Number(n) * 100, "%");
|
|
70
70
|
}
|
|
71
71
|
return n;
|
|
72
72
|
}
|
|
@@ -448,12 +448,12 @@ var CSS_INTEGER = '[-\\+]?\\d+%?';
|
|
|
448
448
|
// <http://www.w3.org/TR/css3-values/#number-value>
|
|
449
449
|
var CSS_NUMBER = '[-\\+]?\\d*\\.\\d+%?';
|
|
450
450
|
// Allow positive/negative integer/number. Don't capture the either/or, just the entire outcome.
|
|
451
|
-
var CSS_UNIT = "(?:"
|
|
451
|
+
var CSS_UNIT = "(?:".concat(CSS_NUMBER, ")|(?:").concat(CSS_INTEGER, ")");
|
|
452
452
|
// Actual matching.
|
|
453
453
|
// Parentheses and commas are optional, but not required.
|
|
454
454
|
// Whitespace can take the place of commas or opening paren
|
|
455
|
-
var PERMISSIVE_MATCH3 = "[\\s|\\(]+("
|
|
456
|
-
var PERMISSIVE_MATCH4 = "[\\s|\\(]+("
|
|
455
|
+
var PERMISSIVE_MATCH3 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
|
|
456
|
+
var PERMISSIVE_MATCH4 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
|
|
457
457
|
var matchers = {
|
|
458
458
|
CSS_UNIT: new RegExp(CSS_UNIT),
|
|
459
459
|
rgb: new RegExp('rgb' + PERMISSIVE_MATCH3),
|
|
@@ -778,19 +778,6 @@ Object.keys(presetPrimaryColors).forEach(function (key) {
|
|
|
778
778
|
});
|
|
779
779
|
presetDarkPalettes[key].primary = presetDarkPalettes[key][5];
|
|
780
780
|
});
|
|
781
|
-
presetPalettes.red;
|
|
782
|
-
presetPalettes.volcano;
|
|
783
|
-
presetPalettes.gold;
|
|
784
|
-
presetPalettes.orange;
|
|
785
|
-
presetPalettes.yellow;
|
|
786
|
-
presetPalettes.lime;
|
|
787
|
-
presetPalettes.green;
|
|
788
|
-
presetPalettes.cyan;
|
|
789
|
-
presetPalettes.blue;
|
|
790
|
-
presetPalettes.geekblue;
|
|
791
|
-
presetPalettes.purple;
|
|
792
|
-
presetPalettes.magenta;
|
|
793
|
-
presetPalettes.grey;
|
|
794
781
|
|
|
795
782
|
// https://github.com/substack/insert-css
|
|
796
783
|
var containers = []; // will store container HTMLElement references
|
|
@@ -1290,6 +1277,7 @@ const _hoisted_2$1 = { class: "bm-search-filter-actions" };
|
|
|
1290
1277
|
const _hoisted_3$1 = /* @__PURE__ */ createTextVNode("\u91CD\u7F6E");
|
|
1291
1278
|
const _hoisted_4$1 = /* @__PURE__ */ createTextVNode("\u67E5\u8BE2");
|
|
1292
1279
|
const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
1280
|
+
__name: "search-reset-btn",
|
|
1293
1281
|
props: searchResetBtnProps,
|
|
1294
1282
|
emits: ["submit", "reset", "expand"],
|
|
1295
1283
|
setup(__props, { emit: emits }) {
|
|
@@ -1978,7 +1966,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1978
1966
|
"onUpdate:api": _cache[0] || (_cache[0] = ($event) => fApi.value = $event),
|
|
1979
1967
|
"model-value": props.value,
|
|
1980
1968
|
rule: unref(rule),
|
|
1981
|
-
option
|
|
1969
|
+
option,
|
|
1982
1970
|
onChange: handleChange
|
|
1983
1971
|
}, null, 8, ["api", "model-value", "rule", "option"])
|
|
1984
1972
|
], 2);
|
|
@@ -70,7 +70,7 @@ function boundAlpha(a) {
|
|
|
70
70
|
*/
|
|
71
71
|
function convertToPercentage(n) {
|
|
72
72
|
if (n <= 1) {
|
|
73
|
-
return Number(n) * 100
|
|
73
|
+
return "".concat(Number(n) * 100, "%");
|
|
74
74
|
}
|
|
75
75
|
return n;
|
|
76
76
|
}
|
|
@@ -452,12 +452,12 @@ var CSS_INTEGER = '[-\\+]?\\d+%?';
|
|
|
452
452
|
// <http://www.w3.org/TR/css3-values/#number-value>
|
|
453
453
|
var CSS_NUMBER = '[-\\+]?\\d*\\.\\d+%?';
|
|
454
454
|
// Allow positive/negative integer/number. Don't capture the either/or, just the entire outcome.
|
|
455
|
-
var CSS_UNIT = "(?:"
|
|
455
|
+
var CSS_UNIT = "(?:".concat(CSS_NUMBER, ")|(?:").concat(CSS_INTEGER, ")");
|
|
456
456
|
// Actual matching.
|
|
457
457
|
// Parentheses and commas are optional, but not required.
|
|
458
458
|
// Whitespace can take the place of commas or opening paren
|
|
459
|
-
var PERMISSIVE_MATCH3 = "[\\s|\\(]+("
|
|
460
|
-
var PERMISSIVE_MATCH4 = "[\\s|\\(]+("
|
|
459
|
+
var PERMISSIVE_MATCH3 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
|
|
460
|
+
var PERMISSIVE_MATCH4 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
|
|
461
461
|
var matchers = {
|
|
462
462
|
CSS_UNIT: new RegExp(CSS_UNIT),
|
|
463
463
|
rgb: new RegExp('rgb' + PERMISSIVE_MATCH3),
|
|
@@ -782,19 +782,6 @@ Object.keys(presetPrimaryColors).forEach(function (key) {
|
|
|
782
782
|
});
|
|
783
783
|
presetDarkPalettes[key].primary = presetDarkPalettes[key][5];
|
|
784
784
|
});
|
|
785
|
-
presetPalettes.red;
|
|
786
|
-
presetPalettes.volcano;
|
|
787
|
-
presetPalettes.gold;
|
|
788
|
-
presetPalettes.orange;
|
|
789
|
-
presetPalettes.yellow;
|
|
790
|
-
presetPalettes.lime;
|
|
791
|
-
presetPalettes.green;
|
|
792
|
-
presetPalettes.cyan;
|
|
793
|
-
presetPalettes.blue;
|
|
794
|
-
presetPalettes.geekblue;
|
|
795
|
-
presetPalettes.purple;
|
|
796
|
-
presetPalettes.magenta;
|
|
797
|
-
presetPalettes.grey;
|
|
798
785
|
|
|
799
786
|
// https://github.com/substack/insert-css
|
|
800
787
|
var containers = []; // will store container HTMLElement references
|
|
@@ -71,7 +71,7 @@ function boundAlpha(a) {
|
|
|
71
71
|
*/
|
|
72
72
|
function convertToPercentage(n) {
|
|
73
73
|
if (n <= 1) {
|
|
74
|
-
return Number(n) * 100
|
|
74
|
+
return "".concat(Number(n) * 100, "%");
|
|
75
75
|
}
|
|
76
76
|
return n;
|
|
77
77
|
}
|
|
@@ -453,12 +453,12 @@ var CSS_INTEGER = '[-\\+]?\\d+%?';
|
|
|
453
453
|
// <http://www.w3.org/TR/css3-values/#number-value>
|
|
454
454
|
var CSS_NUMBER = '[-\\+]?\\d*\\.\\d+%?';
|
|
455
455
|
// Allow positive/negative integer/number. Don't capture the either/or, just the entire outcome.
|
|
456
|
-
var CSS_UNIT = "(?:"
|
|
456
|
+
var CSS_UNIT = "(?:".concat(CSS_NUMBER, ")|(?:").concat(CSS_INTEGER, ")");
|
|
457
457
|
// Actual matching.
|
|
458
458
|
// Parentheses and commas are optional, but not required.
|
|
459
459
|
// Whitespace can take the place of commas or opening paren
|
|
460
|
-
var PERMISSIVE_MATCH3 = "[\\s|\\(]+("
|
|
461
|
-
var PERMISSIVE_MATCH4 = "[\\s|\\(]+("
|
|
460
|
+
var PERMISSIVE_MATCH3 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
|
|
461
|
+
var PERMISSIVE_MATCH4 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
|
|
462
462
|
var matchers = {
|
|
463
463
|
CSS_UNIT: new RegExp(CSS_UNIT),
|
|
464
464
|
rgb: new RegExp('rgb' + PERMISSIVE_MATCH3),
|
|
@@ -783,19 +783,6 @@ Object.keys(presetPrimaryColors).forEach(function (key) {
|
|
|
783
783
|
});
|
|
784
784
|
presetDarkPalettes[key].primary = presetDarkPalettes[key][5];
|
|
785
785
|
});
|
|
786
|
-
presetPalettes.red;
|
|
787
|
-
presetPalettes.volcano;
|
|
788
|
-
presetPalettes.gold;
|
|
789
|
-
presetPalettes.orange;
|
|
790
|
-
presetPalettes.yellow;
|
|
791
|
-
presetPalettes.lime;
|
|
792
|
-
presetPalettes.green;
|
|
793
|
-
presetPalettes.cyan;
|
|
794
|
-
presetPalettes.blue;
|
|
795
|
-
presetPalettes.geekblue;
|
|
796
|
-
presetPalettes.purple;
|
|
797
|
-
presetPalettes.magenta;
|
|
798
|
-
presetPalettes.grey;
|
|
799
786
|
|
|
800
787
|
// https://github.com/substack/insert-css
|
|
801
788
|
var containers = []; // will store container HTMLElement references
|
|
@@ -1835,7 +1822,7 @@ function _sfc_render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1835
1822
|
]);
|
|
1836
1823
|
}), 128))
|
|
1837
1824
|
])) : createCommentVNode("v-if", true)
|
|
1838
|
-
],
|
|
1825
|
+
], 64))
|
|
1839
1826
|
])
|
|
1840
1827
|
]),
|
|
1841
1828
|
createElementVNode("div", _hoisted_14, [
|
|
@@ -65,7 +65,7 @@ function boundAlpha(a) {
|
|
|
65
65
|
*/
|
|
66
66
|
function convertToPercentage(n) {
|
|
67
67
|
if (n <= 1) {
|
|
68
|
-
return Number(n) * 100
|
|
68
|
+
return "".concat(Number(n) * 100, "%");
|
|
69
69
|
}
|
|
70
70
|
return n;
|
|
71
71
|
}
|
|
@@ -447,12 +447,12 @@ var CSS_INTEGER = '[-\\+]?\\d+%?';
|
|
|
447
447
|
// <http://www.w3.org/TR/css3-values/#number-value>
|
|
448
448
|
var CSS_NUMBER = '[-\\+]?\\d*\\.\\d+%?';
|
|
449
449
|
// Allow positive/negative integer/number. Don't capture the either/or, just the entire outcome.
|
|
450
|
-
var CSS_UNIT = "(?:"
|
|
450
|
+
var CSS_UNIT = "(?:".concat(CSS_NUMBER, ")|(?:").concat(CSS_INTEGER, ")");
|
|
451
451
|
// Actual matching.
|
|
452
452
|
// Parentheses and commas are optional, but not required.
|
|
453
453
|
// Whitespace can take the place of commas or opening paren
|
|
454
|
-
var PERMISSIVE_MATCH3 = "[\\s|\\(]+("
|
|
455
|
-
var PERMISSIVE_MATCH4 = "[\\s|\\(]+("
|
|
454
|
+
var PERMISSIVE_MATCH3 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
|
|
455
|
+
var PERMISSIVE_MATCH4 = "[\\s|\\(]+(".concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")[,|\\s]+(").concat(CSS_UNIT, ")\\s*\\)?");
|
|
456
456
|
var matchers = {
|
|
457
457
|
CSS_UNIT: new RegExp(CSS_UNIT),
|
|
458
458
|
rgb: new RegExp('rgb' + PERMISSIVE_MATCH3),
|
|
@@ -777,19 +777,6 @@ Object.keys(presetPrimaryColors).forEach(function (key) {
|
|
|
777
777
|
});
|
|
778
778
|
presetDarkPalettes[key].primary = presetDarkPalettes[key][5];
|
|
779
779
|
});
|
|
780
|
-
presetPalettes.red;
|
|
781
|
-
presetPalettes.volcano;
|
|
782
|
-
presetPalettes.gold;
|
|
783
|
-
presetPalettes.orange;
|
|
784
|
-
presetPalettes.yellow;
|
|
785
|
-
presetPalettes.lime;
|
|
786
|
-
presetPalettes.green;
|
|
787
|
-
presetPalettes.cyan;
|
|
788
|
-
presetPalettes.blue;
|
|
789
|
-
presetPalettes.geekblue;
|
|
790
|
-
presetPalettes.purple;
|
|
791
|
-
presetPalettes.magenta;
|
|
792
|
-
presetPalettes.grey;
|
|
793
780
|
|
|
794
781
|
// https://github.com/substack/insert-css
|
|
795
782
|
var containers = []; // will store container HTMLElement references
|
|
@@ -1715,7 +1702,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1715
1702
|
key: 1,
|
|
1716
1703
|
file: item
|
|
1717
1704
|
})
|
|
1718
|
-
],
|
|
1705
|
+
], 64)) : createCommentVNode("v-if", true),
|
|
1719
1706
|
createCommentVNode(" \u56FE\u7247\u9519\u8BEF\u5C55\u793A "),
|
|
1720
1707
|
item.status === "error" ? (openBlock(), createElementBlock("div", {
|
|
1721
1708
|
key: 2,
|
|
@@ -1761,7 +1748,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1761
1748
|
}, 8, ["class", "disabled"]),
|
|
1762
1749
|
_ctx.extraConfigs.tips && _ctx.extraConfigs.showTips ? (openBlock(), createElementBlock("div", _hoisted_23, toDisplayString(_ctx.extraConfigs.tips), 1)) : createCommentVNode("v-if", true)
|
|
1763
1750
|
])) : createCommentVNode("v-if", true)
|
|
1764
|
-
],
|
|
1751
|
+
], 64))
|
|
1765
1752
|
]),
|
|
1766
1753
|
_: 3
|
|
1767
1754
|
}, 16, ["class"])) : createCommentVNode("v-if", true),
|