fit2cloud-ui-plus 1.1.16 → 1.1.17-beta.1
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/lib/fit2cloud-ui-plus.es.js +88 -131
- package/lib/fit2cloud-ui-plus.umd.js +1 -1
- package/package.json +1 -1
- package/src/components/filter-bar/FuFilterInput.vue +4 -14
- package/src/components/table/FuTable.vue +1 -3
- package/src/components/table/FuTableBody.ts +0 -1
- package/src/components/table/table-column-select/FuTableColumnSelectDialog.vue +7 -14
- package/src/components/table/table-column-select/FuTableColumnSelectPopover.vue +2 -17
- package/src/components/table/table-column-select/utils.ts +1 -6
- package/src/locale/lang/en.ts +1 -1
- package/src/locale/lang/zh-cn.ts +1 -1
- package/src/locale/lang/zh-tw.ts +1 -1
- package/types/examples/pages/search/attributes.d.ts +57 -0
- package/types/examples/pages/search/demo/BaseSearchbar.vue.d.ts +66 -0
- package/types/examples/pages/search/demo/ComplexComponentsDemo.vue.d.ts +60 -0
- package/types/examples/pages/search/demo/ComplexSearchDemo.vue.d.ts +84 -0
- package/types/examples/pages/search/demo/CustomComponentsDemo.vue.d.ts +50 -0
- package/types/examples/pages/search/demo/EchoConditionsDemo.vue.d.ts +52 -0
- package/types/examples/pages/search/demo/QuickSearchDemo.vue.d.ts +18 -0
- package/types/examples/pages/search/demo/SearchBarButtonDemo.vue.d.ts +54 -0
- package/types/examples/pages/search/index.vue.d.ts +150 -0
- package/types/src/components/ steps/FuHorizontalNavigation.vue.d.ts +13 -0
- package/types/src/components/ steps/FuHorizontalSteps.vue.d.ts +6 -0
- package/types/src/components/ steps/FuStep.vue.d.ts +2 -0
- package/types/src/components/ steps/FuStepButton.vue.d.ts +2 -0
- package/types/src/components/ steps/FuSteps.vue.d.ts +12 -0
- package/types/src/components/ steps/FuStepsFooter.d.ts +6 -0
- package/types/src/components/ steps/FuVerticalNavigation.vue.d.ts +14 -0
- package/types/src/components/ steps/FuVerticalSteps.vue.d.ts +6 -0
- package/types/src/components/ steps/Stepper.d.ts +39 -0
- package/types/src/components/ steps/index.d.ts +2 -0
- package/types/src/components/ steps/types.d.ts +27 -0
- package/types/src/components/filter-bar/FuFilterInput.vue.d.ts +1 -4
- package/types/src/components/filter-bar/FuSearchInput.vue.d.ts +17 -0
- package/types/src/components/search-bar/complex-components/index.d.ts +0 -0
- package/types/src/components/search-bar/complex-components/mixins.d.ts +6 -0
- package/types/src/components/table/FuTableBody-backup.d.ts +3 -0
- package/types/src/components/table/table-column-select/utils.d.ts +1 -2
- package/types/src/locale/lang/en.d.ts +1 -1
- package/types/src/locale/lang/zh-cn.d.ts +1 -1
- package/types/src/locale/lang/zh-tw.d.ts +1 -1
- package/types/src/tools/utils.d.ts +2 -0
- package/src/components/table/types.ts +0 -3
|
@@ -21,7 +21,7 @@ var __publicField = (obj, key, value) => {
|
|
|
21
21
|
__defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
22
22
|
return value;
|
|
23
23
|
};
|
|
24
|
-
import { ref, getCurrentInstance, inject, computed, provide, unref, isRef, defineComponent,
|
|
24
|
+
import { ref, getCurrentInstance, inject, computed, provide, unref, isRef, defineComponent, resolveComponent, openBlock, createBlock, mergeProps, onMounted, onUpdated, withCtx, createElementVNode, toDisplayString, nextTick, createElementBlock, Fragment, renderList, createVNode, withDirectives, createTextVNode, createCommentVNode, vShow, renderSlot, resolveDynamicComponent, normalizeClass, withModifiers, watch, h, vModelText, normalizeStyle, Transition, useSlots, normalizeProps, guardReactiveProps, resolveDirective, isVNode, Comment } from "vue";
|
|
25
25
|
const COMPONENTS_SIZE = ["", "default", "small", "large"];
|
|
26
26
|
const validateSize = (val) => ["", ...COMPONENTS_SIZE].includes(val);
|
|
27
27
|
const globalConfig = ref();
|
|
@@ -463,7 +463,7 @@ var Chinese = {
|
|
|
463
463
|
},
|
|
464
464
|
table: {
|
|
465
465
|
ok: "\u786E\u5B9A",
|
|
466
|
-
|
|
466
|
+
cancel: "\u53D6\u6D88",
|
|
467
467
|
custom_table_fields: "\u81EA\u5B9A\u4E49\u8868\u683C\u5B57\u6BB5",
|
|
468
468
|
custom_table_fields_desc: "\u56FA\u5B9A\u5B57\u6BB5\u4E0D\u5728\u9009\u62E9\u8303\u56F4\uFF0C\u53EF\u62D6\u62FD\u81EA\u5B9A\u4E49\u987A\u5E8F",
|
|
469
469
|
custom_table_rows: "\u9009\u9879\u5217",
|
|
@@ -525,25 +525,16 @@ const _sfc_main$J = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
525
525
|
size: {
|
|
526
526
|
type: String,
|
|
527
527
|
validator: validateSize
|
|
528
|
-
}
|
|
529
|
-
modelValue: String
|
|
528
|
+
}
|
|
530
529
|
},
|
|
531
|
-
emits: ["
|
|
530
|
+
emits: ["change"],
|
|
532
531
|
setup(__props, { emit }) {
|
|
533
|
-
const props = __props;
|
|
534
532
|
const quick = ref("");
|
|
535
533
|
const configSize = useSize();
|
|
536
|
-
watch(() => props.modelValue, (val) => {
|
|
537
|
-
quick.value = val;
|
|
538
|
-
});
|
|
539
|
-
function input(e) {
|
|
540
|
-
emit("update:modelValue", quick.value, e);
|
|
541
|
-
}
|
|
542
534
|
function blur(e) {
|
|
543
535
|
emit("change", quick.value, e);
|
|
544
536
|
}
|
|
545
537
|
function clear() {
|
|
546
|
-
emit("update:modelValue", quick.value);
|
|
547
538
|
emit("change", quick.value);
|
|
548
539
|
}
|
|
549
540
|
function keydown(e) {
|
|
@@ -559,7 +550,6 @@ const _sfc_main$J = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
559
550
|
"prefix-icon": "Search",
|
|
560
551
|
modelValue: quick.value,
|
|
561
552
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => quick.value = $event),
|
|
562
|
-
onInput: input,
|
|
563
553
|
onBlur: blur,
|
|
564
554
|
onKeydown: keydown,
|
|
565
555
|
onClear: clear
|
|
@@ -570,7 +560,7 @@ const _sfc_main$J = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
570
560
|
};
|
|
571
561
|
}
|
|
572
562
|
}));
|
|
573
|
-
var FuFilterInput = /* @__PURE__ */ _export_sfc(_sfc_main$J, [["__file", "/Users/
|
|
563
|
+
var FuFilterInput = /* @__PURE__ */ _export_sfc(_sfc_main$J, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/filter-bar/FuFilterInput.vue"]]);
|
|
574
564
|
const _sfc_main$I = /* @__PURE__ */ defineComponent({
|
|
575
565
|
__name: "FuFilterConditionText",
|
|
576
566
|
props: {
|
|
@@ -614,7 +604,7 @@ const _sfc_main$I = /* @__PURE__ */ defineComponent({
|
|
|
614
604
|
};
|
|
615
605
|
}
|
|
616
606
|
});
|
|
617
|
-
var FuFilterConditionText = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["__file", "/Users/
|
|
607
|
+
var FuFilterConditionText = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/filter-bar/FuFilterConditionText.vue"]]);
|
|
618
608
|
const _hoisted_1$o = { class: "fu-filter-conditions" };
|
|
619
609
|
const _sfc_main$H = /* @__PURE__ */ defineComponent({
|
|
620
610
|
__name: "FuFilterConditions",
|
|
@@ -654,11 +644,11 @@ const _sfc_main$H = /* @__PURE__ */ defineComponent({
|
|
|
654
644
|
};
|
|
655
645
|
}
|
|
656
646
|
});
|
|
657
|
-
var FuFilterConditions = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["__file", "/Users/
|
|
647
|
+
var FuFilterConditions = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/filter-bar/FuFilterConditions.vue"]]);
|
|
658
648
|
const selectKey = Symbol("SelectKey");
|
|
659
649
|
const referenceKey$1 = Symbol("ReferenceKey");
|
|
660
650
|
const _hoisted_1$n = { class: "fu-filter__result" };
|
|
661
|
-
const _hoisted_2$
|
|
651
|
+
const _hoisted_2$e = { style: { "opacity": "0.6" } };
|
|
662
652
|
const _hoisted_3$d = /* @__PURE__ */ createElementVNode("div", { class: "fu-filter__split" }, null, -1);
|
|
663
653
|
const _hoisted_4$2 = { class: "drawer-body" };
|
|
664
654
|
const _hoisted_5$1 = { class: "drawer-footer" };
|
|
@@ -795,7 +785,7 @@ const _sfc_main$G = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
795
785
|
}, [
|
|
796
786
|
createElementVNode("div", _hoisted_1$n, [
|
|
797
787
|
createTextVNode(toDisplayString(__props.count) + " ", 1),
|
|
798
|
-
createElementVNode("span", _hoisted_2$
|
|
788
|
+
createElementVNode("span", _hoisted_2$e, toDisplayString(unref(t2)("fu.filter_bar.results")), 1)
|
|
799
789
|
]),
|
|
800
790
|
_hoisted_3$d,
|
|
801
791
|
scroll.value ? (openBlock(), createElementBlock("div", {
|
|
@@ -892,9 +882,9 @@ const _sfc_main$G = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
892
882
|
};
|
|
893
883
|
}
|
|
894
884
|
}));
|
|
895
|
-
var FuFilter = /* @__PURE__ */ _export_sfc(_sfc_main$G, [["__file", "/Users/
|
|
885
|
+
var FuFilter = /* @__PURE__ */ _export_sfc(_sfc_main$G, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/filter-bar/FuFilter.vue"]]);
|
|
896
886
|
const _hoisted_1$m = { class: "fu-filter-bar" };
|
|
897
|
-
const _hoisted_2$
|
|
887
|
+
const _hoisted_2$d = { class: "fu-filter-bar__top" };
|
|
898
888
|
const _hoisted_3$c = { class: "top_left" };
|
|
899
889
|
const _hoisted_4$1 = { class: "top_right" };
|
|
900
890
|
const _hoisted_5 = { key: 0 };
|
|
@@ -963,7 +953,7 @@ const _sfc_main$F = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
963
953
|
return (_ctx, _cache) => {
|
|
964
954
|
const _component_el_button = resolveComponent("el-button");
|
|
965
955
|
return openBlock(), createElementBlock("div", _hoisted_1$m, [
|
|
966
|
-
createElementVNode("div", _hoisted_2$
|
|
956
|
+
createElementVNode("div", _hoisted_2$d, [
|
|
967
957
|
createElementVNode("div", _hoisted_3$c, [
|
|
968
958
|
renderSlot(_ctx.$slots, "tl")
|
|
969
959
|
]),
|
|
@@ -1024,7 +1014,7 @@ const _sfc_main$F = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1024
1014
|
};
|
|
1025
1015
|
}
|
|
1026
1016
|
}));
|
|
1027
|
-
var FuFilterBar = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["__file", "/Users/
|
|
1017
|
+
var FuFilterBar = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/filter-bar/FuFilterBar.vue"]]);
|
|
1028
1018
|
const _hoisted_1$l = ["onClick"];
|
|
1029
1019
|
const _sfc_main$E = /* @__PURE__ */ defineComponent({
|
|
1030
1020
|
__name: "FuFilterOption",
|
|
@@ -1062,9 +1052,9 @@ const _sfc_main$E = /* @__PURE__ */ defineComponent({
|
|
|
1062
1052
|
};
|
|
1063
1053
|
}
|
|
1064
1054
|
});
|
|
1065
|
-
var FuFilterOption = /* @__PURE__ */ _export_sfc(_sfc_main$E, [["__file", "/Users/
|
|
1055
|
+
var FuFilterOption = /* @__PURE__ */ _export_sfc(_sfc_main$E, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/filter-bar/filter-components/FuFilterOption.vue"]]);
|
|
1066
1056
|
const _hoisted_1$k = { class: "fu-filter-component" };
|
|
1067
|
-
const _hoisted_2$
|
|
1057
|
+
const _hoisted_2$c = { class: "fu-filter-component__label" };
|
|
1068
1058
|
const _hoisted_3$b = { class: "fu-filter-component__content" };
|
|
1069
1059
|
const _hoisted_4 = { class: "fu-filter-option" };
|
|
1070
1060
|
const __default__$r = { name: "FuFilterSelect" };
|
|
@@ -1171,7 +1161,7 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1171
1161
|
const _component_el_icon = resolveComponent("el-icon");
|
|
1172
1162
|
const _component_el_popover = resolveComponent("el-popover");
|
|
1173
1163
|
return openBlock(), createElementBlock("div", _hoisted_1$k, [
|
|
1174
|
-
createElementVNode("div", _hoisted_2$
|
|
1164
|
+
createElementVNode("div", _hoisted_2$c, toDisplayString(__props.label), 1),
|
|
1175
1165
|
createElementVNode("div", _hoisted_3$b, [
|
|
1176
1166
|
(openBlock(true), createElementBlock(Fragment, null, renderList(unref(showOptions), (o) => {
|
|
1177
1167
|
return openBlock(), createBlock(FuFilterOption, {
|
|
@@ -1216,9 +1206,9 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1216
1206
|
};
|
|
1217
1207
|
}
|
|
1218
1208
|
}));
|
|
1219
|
-
var FuFilterSelect = /* @__PURE__ */ _export_sfc(_sfc_main$D, [["__file", "/Users/
|
|
1209
|
+
var FuFilterSelect = /* @__PURE__ */ _export_sfc(_sfc_main$D, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/filter-bar/filter-components/FuFilterSelect.vue"]]);
|
|
1220
1210
|
const _hoisted_1$j = { class: "fu-filter-component" };
|
|
1221
|
-
const _hoisted_2$
|
|
1211
|
+
const _hoisted_2$b = { class: "fu-filter-component__label" };
|
|
1222
1212
|
const _hoisted_3$a = { class: "fu-filter-component__content" };
|
|
1223
1213
|
const __default__$q = { name: "FuFilterNormalSelect" };
|
|
1224
1214
|
const _sfc_main$C = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$q), {
|
|
@@ -1318,7 +1308,7 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1318
1308
|
const _component_el_option = resolveComponent("el-option");
|
|
1319
1309
|
const _component_el_select = resolveComponent("el-select");
|
|
1320
1310
|
return openBlock(), createElementBlock("div", _hoisted_1$j, [
|
|
1321
|
-
createElementVNode("div", _hoisted_2$
|
|
1311
|
+
createElementVNode("div", _hoisted_2$b, toDisplayString(__props.label), 1),
|
|
1322
1312
|
createElementVNode("div", _hoisted_3$a, [
|
|
1323
1313
|
createVNode(_component_el_select, mergeProps({
|
|
1324
1314
|
modelValue: selection.value,
|
|
@@ -1356,7 +1346,7 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1356
1346
|
};
|
|
1357
1347
|
}
|
|
1358
1348
|
}));
|
|
1359
|
-
var FuFilterNormalSelect = /* @__PURE__ */ _export_sfc(_sfc_main$C, [["__file", "/Users/
|
|
1349
|
+
var FuFilterNormalSelect = /* @__PURE__ */ _export_sfc(_sfc_main$C, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/filter-bar/filter-components/FuFilterNormalSelect.vue"]]);
|
|
1360
1350
|
const getCheckDate = (timestamp) => {
|
|
1361
1351
|
if (!timestamp)
|
|
1362
1352
|
return false;
|
|
@@ -1387,7 +1377,7 @@ const dateFormat = (timestamp) => {
|
|
|
1387
1377
|
return `${y}-${m}-${d}`;
|
|
1388
1378
|
};
|
|
1389
1379
|
const _hoisted_1$i = { class: "fu-filter-component" };
|
|
1390
|
-
const _hoisted_2$
|
|
1380
|
+
const _hoisted_2$a = { class: "fu-filter-component__label" };
|
|
1391
1381
|
const _hoisted_3$9 = { class: "fu-filter-component__content" };
|
|
1392
1382
|
const __default__$p = { name: "FuFilterDate" };
|
|
1393
1383
|
const _sfc_main$B = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$p), {
|
|
@@ -1434,7 +1424,7 @@ const _sfc_main$B = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1434
1424
|
return (_ctx, _cache) => {
|
|
1435
1425
|
const _component_el_date_picker = resolveComponent("el-date-picker");
|
|
1436
1426
|
return openBlock(), createElementBlock("div", _hoisted_1$i, [
|
|
1437
|
-
createElementVNode("div", _hoisted_2$
|
|
1427
|
+
createElementVNode("div", _hoisted_2$a, toDisplayString(__props.label), 1),
|
|
1438
1428
|
createElementVNode("div", _hoisted_3$9, [
|
|
1439
1429
|
createCommentVNode("configSize"),
|
|
1440
1430
|
createVNode(_component_el_date_picker, mergeProps({
|
|
@@ -1454,9 +1444,9 @@ const _sfc_main$B = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1454
1444
|
};
|
|
1455
1445
|
}
|
|
1456
1446
|
}));
|
|
1457
|
-
var FuFilterDate = /* @__PURE__ */ _export_sfc(_sfc_main$B, [["__file", "/Users/
|
|
1447
|
+
var FuFilterDate = /* @__PURE__ */ _export_sfc(_sfc_main$B, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/filter-bar/filter-components/FuFilterDate.vue"]]);
|
|
1458
1448
|
const _hoisted_1$h = { class: "fu-filter-component" };
|
|
1459
|
-
const _hoisted_2$
|
|
1449
|
+
const _hoisted_2$9 = { class: "fu-filter-component__label" };
|
|
1460
1450
|
const _hoisted_3$8 = { class: "fu-filter-component__content" };
|
|
1461
1451
|
const __default__$o = { name: "FuFilterDateTime" };
|
|
1462
1452
|
const _sfc_main$A = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$o), {
|
|
@@ -1503,7 +1493,7 @@ const _sfc_main$A = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1503
1493
|
return (_ctx, _cache) => {
|
|
1504
1494
|
const _component_el_date_picker = resolveComponent("el-date-picker");
|
|
1505
1495
|
return openBlock(), createElementBlock("div", _hoisted_1$h, [
|
|
1506
|
-
createElementVNode("div", _hoisted_2$
|
|
1496
|
+
createElementVNode("div", _hoisted_2$9, toDisplayString(__props.label), 1),
|
|
1507
1497
|
createElementVNode("div", _hoisted_3$8, [
|
|
1508
1498
|
createVNode(_component_el_date_picker, mergeProps({
|
|
1509
1499
|
class: "fu-filter-date",
|
|
@@ -1522,9 +1512,9 @@ const _sfc_main$A = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1522
1512
|
};
|
|
1523
1513
|
}
|
|
1524
1514
|
}));
|
|
1525
|
-
var FuFilterDateTime = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["__file", "/Users/
|
|
1515
|
+
var FuFilterDateTime = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/filter-bar/filter-components/FuFilterDateTime.vue"]]);
|
|
1526
1516
|
const _hoisted_1$g = { class: "fu-filter-component" };
|
|
1527
|
-
const _hoisted_2$
|
|
1517
|
+
const _hoisted_2$8 = { class: "fu-filter-component__label" };
|
|
1528
1518
|
const _hoisted_3$7 = { class: "fu-filter-component__content" };
|
|
1529
1519
|
const __default__$n = { name: "FuFilterInputText" };
|
|
1530
1520
|
const _sfc_main$z = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$n), {
|
|
@@ -1564,7 +1554,7 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1564
1554
|
return (_ctx, _cache) => {
|
|
1565
1555
|
const _component_el_input = resolveComponent("el-input");
|
|
1566
1556
|
return openBlock(), createElementBlock("div", _hoisted_1$g, [
|
|
1567
|
-
createElementVNode("div", _hoisted_2$
|
|
1557
|
+
createElementVNode("div", _hoisted_2$8, toDisplayString(__props.label), 1),
|
|
1568
1558
|
createElementVNode("div", _hoisted_3$7, [
|
|
1569
1559
|
createVNode(_component_el_input, mergeProps({
|
|
1570
1560
|
class: "fu-filter-input-text",
|
|
@@ -1576,7 +1566,7 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1576
1566
|
};
|
|
1577
1567
|
}
|
|
1578
1568
|
}));
|
|
1579
|
-
var FuFilterInputText = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["__file", "/Users/
|
|
1569
|
+
var FuFilterInputText = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/filter-bar/filter-components/FuFilterInputText.vue"]]);
|
|
1580
1570
|
FuFilterBar.install = (app) => {
|
|
1581
1571
|
app.component(FuFilterBar.name, FuFilterBar);
|
|
1582
1572
|
app.component(FuFilter.name, FuFilter);
|
|
@@ -1656,7 +1646,7 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1656
1646
|
};
|
|
1657
1647
|
}
|
|
1658
1648
|
}));
|
|
1659
|
-
var FuIconButton = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__file", "/Users/
|
|
1649
|
+
var FuIconButton = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/icon-button/FuIconButton.vue"]]);
|
|
1660
1650
|
FuIconButton.install = (app) => {
|
|
1661
1651
|
app.component(FuIconButton.name, FuIconButton);
|
|
1662
1652
|
};
|
|
@@ -1772,7 +1762,7 @@ const _sfc_main$x = defineComponent({
|
|
|
1772
1762
|
};
|
|
1773
1763
|
}
|
|
1774
1764
|
});
|
|
1775
|
-
var FuReadWriteSwitch = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__file", "/Users/
|
|
1765
|
+
var FuReadWriteSwitch = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/read-write-switch/FuReadWriteSwitch.vue"]]);
|
|
1776
1766
|
const __default__$l = { name: "FuInputRwSwitch" };
|
|
1777
1767
|
const _sfc_main$w = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$l), {
|
|
1778
1768
|
props: {
|
|
@@ -1825,7 +1815,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1825
1815
|
};
|
|
1826
1816
|
}
|
|
1827
1817
|
}));
|
|
1828
|
-
var FuInputRwSwitch = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__file", "/Users/
|
|
1818
|
+
var FuInputRwSwitch = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/read-write-switch/FuInputRwSwitch.vue"]]);
|
|
1829
1819
|
const __default__$k = { name: "FuSelectRwSwitch" };
|
|
1830
1820
|
const _sfc_main$v = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$k), {
|
|
1831
1821
|
props: {
|
|
@@ -1909,7 +1899,7 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1909
1899
|
};
|
|
1910
1900
|
}
|
|
1911
1901
|
}));
|
|
1912
|
-
var FuSelectRwSwitch = /* @__PURE__ */ _export_sfc(_sfc_main$v, [["__file", "/Users/
|
|
1902
|
+
var FuSelectRwSwitch = /* @__PURE__ */ _export_sfc(_sfc_main$v, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/read-write-switch/FuSelectRwSwitch.vue"]]);
|
|
1913
1903
|
FuReadWriteSwitch.install = (app) => {
|
|
1914
1904
|
app.component(FuReadWriteSwitch.name, FuReadWriteSwitch);
|
|
1915
1905
|
app.component(FuInputRwSwitch.name, FuInputRwSwitch);
|
|
@@ -1988,10 +1978,10 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1988
1978
|
};
|
|
1989
1979
|
}
|
|
1990
1980
|
}));
|
|
1991
|
-
var FuQuickSearch = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__file", "/Users/
|
|
1981
|
+
var FuQuickSearch = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/search-bar/FuQuickSearch.vue"]]);
|
|
1992
1982
|
const referenceKey = Symbol("ReferenceKey");
|
|
1993
1983
|
const _hoisted_1$d = { class: "fu-complex-components" };
|
|
1994
|
-
const _hoisted_2$
|
|
1984
|
+
const _hoisted_2$7 = { class: "fu-complex-components__body" };
|
|
1995
1985
|
const _hoisted_3$6 = { class: "fu-complex-components__footer" };
|
|
1996
1986
|
const __default__$i = { name: "FuComplexSearch" };
|
|
1997
1987
|
const _sfc_main$t = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$i), {
|
|
@@ -2082,7 +2072,7 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2082
2072
|
]),
|
|
2083
2073
|
default: withCtx(() => [
|
|
2084
2074
|
createElementVNode("div", _hoisted_1$d, [
|
|
2085
|
-
createElementVNode("div", _hoisted_2$
|
|
2075
|
+
createElementVNode("div", _hoisted_2$7, [
|
|
2086
2076
|
renderSlot(_ctx.$slots, "default", {}, () => [
|
|
2087
2077
|
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.components, (c) => {
|
|
2088
2078
|
return openBlock(), createBlock(resolveDynamicComponent(c.component), mergeProps(c, { size: unref(configSize) }), null, 16, ["size"]);
|
|
@@ -2117,7 +2107,7 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2117
2107
|
};
|
|
2118
2108
|
}
|
|
2119
2109
|
}));
|
|
2120
|
-
var FuComplexSearch = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__file", "/Users/
|
|
2110
|
+
var FuComplexSearch = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/search-bar/FuComplexSearch.vue"]]);
|
|
2121
2111
|
const __default__$h = { name: "FuSearchBarButton" };
|
|
2122
2112
|
const _sfc_main$s = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$h), {
|
|
2123
2113
|
props: {
|
|
@@ -2148,9 +2138,9 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2148
2138
|
};
|
|
2149
2139
|
}
|
|
2150
2140
|
}));
|
|
2151
|
-
var FuSearchBarButton = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__file", "/Users/
|
|
2141
|
+
var FuSearchBarButton = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/search-bar/FuSearchBarButton.vue"]]);
|
|
2152
2142
|
const _hoisted_1$c = { class: "fu-search-conditions__item" };
|
|
2153
|
-
const _hoisted_2$
|
|
2143
|
+
const _hoisted_2$6 = { key: 0 };
|
|
2154
2144
|
const _hoisted_3$5 = { class: "condition-value" };
|
|
2155
2145
|
const __default__$g = { name: "FuSearchConditions" };
|
|
2156
2146
|
const _sfc_main$r = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$g), {
|
|
@@ -2180,7 +2170,7 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2180
2170
|
}, [
|
|
2181
2171
|
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.conditions, (condition, index) => {
|
|
2182
2172
|
return openBlock(), createElementBlock("div", _hoisted_1$c, [
|
|
2183
|
-
condition.label ? (openBlock(), createElementBlock("div", _hoisted_2$
|
|
2173
|
+
condition.label ? (openBlock(), createElementBlock("div", _hoisted_2$6, toDisplayString(condition.label), 1)) : createCommentVNode("v-if", true),
|
|
2184
2174
|
createElementVNode("div", _hoisted_3$5, toDisplayString(condition.valueLabel), 1),
|
|
2185
2175
|
createVNode(_component_el_icon, {
|
|
2186
2176
|
class: "condition-remove",
|
|
@@ -2197,9 +2187,9 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2197
2187
|
};
|
|
2198
2188
|
}
|
|
2199
2189
|
}));
|
|
2200
|
-
var FuSearchConditions = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__file", "/Users/
|
|
2190
|
+
var FuSearchConditions = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/search-bar/FuSearchContions.vue"]]);
|
|
2201
2191
|
const _hoisted_1$b = { class: "fu-search-bar" };
|
|
2202
|
-
const _hoisted_2$
|
|
2192
|
+
const _hoisted_2$5 = { class: "fu-search-bar__content" };
|
|
2203
2193
|
const _hoisted_3$4 = { class: "fu-search-bar__buttons" };
|
|
2204
2194
|
const __default__$f = { name: "FuSearchBar" };
|
|
2205
2195
|
const _sfc_main$q = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$f), {
|
|
@@ -2307,7 +2297,7 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2307
2297
|
});
|
|
2308
2298
|
return (_ctx, _cache) => {
|
|
2309
2299
|
return openBlock(), createElementBlock("div", _hoisted_1$b, [
|
|
2310
|
-
createElementVNode("div", _hoisted_2$
|
|
2300
|
+
createElementVNode("div", _hoisted_2$5, [
|
|
2311
2301
|
createVNode(FuComplexSearch, {
|
|
2312
2302
|
ref_key: "complexRef",
|
|
2313
2303
|
ref: complexRef,
|
|
@@ -2360,9 +2350,9 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2360
2350
|
};
|
|
2361
2351
|
}
|
|
2362
2352
|
}));
|
|
2363
|
-
var FuSearchBar = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__file", "/Users/
|
|
2353
|
+
var FuSearchBar = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/search-bar/FuSearchBar.vue"]]);
|
|
2364
2354
|
const _hoisted_1$a = { class: "fu-complex-component" };
|
|
2365
|
-
const _hoisted_2$
|
|
2355
|
+
const _hoisted_2$4 = { class: "fu-complex-component__label" };
|
|
2366
2356
|
const _hoisted_3$3 = { class: "fu-complex-component__content" };
|
|
2367
2357
|
const __default__$e = { name: "FuComplexSelect" };
|
|
2368
2358
|
const _sfc_main$p = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$e), {
|
|
@@ -2431,7 +2421,7 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2431
2421
|
const _component_el_option = resolveComponent("el-option");
|
|
2432
2422
|
const _component_el_select = resolveComponent("el-select");
|
|
2433
2423
|
return openBlock(), createElementBlock("div", _hoisted_1$a, [
|
|
2434
|
-
createElementVNode("div", _hoisted_2$
|
|
2424
|
+
createElementVNode("div", _hoisted_2$4, toDisplayString(__props.label), 1),
|
|
2435
2425
|
createElementVNode("div", _hoisted_3$3, [
|
|
2436
2426
|
createVNode(_component_el_select, mergeProps({
|
|
2437
2427
|
class: "fu-complex-select",
|
|
@@ -2456,9 +2446,9 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2456
2446
|
};
|
|
2457
2447
|
}
|
|
2458
2448
|
}));
|
|
2459
|
-
var FuComplexSelect = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__file", "/Users/
|
|
2449
|
+
var FuComplexSelect = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/search-bar/complex-components/FuComplexSelect.vue"]]);
|
|
2460
2450
|
const _hoisted_1$9 = { class: "fu-complex-component" };
|
|
2461
|
-
const _hoisted_2$
|
|
2451
|
+
const _hoisted_2$3 = { class: "fu-complex-component__label" };
|
|
2462
2452
|
const _hoisted_3$2 = { class: "fu-complex-component__content" };
|
|
2463
2453
|
const __default__$d = { name: "FuComplexInput" };
|
|
2464
2454
|
const _sfc_main$o = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$d), {
|
|
@@ -2500,7 +2490,7 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2500
2490
|
return (_ctx, _cache) => {
|
|
2501
2491
|
const _component_el_input = resolveComponent("el-input");
|
|
2502
2492
|
return openBlock(), createElementBlock("div", _hoisted_1$9, [
|
|
2503
|
-
createElementVNode("div", _hoisted_2$
|
|
2493
|
+
createElementVNode("div", _hoisted_2$3, toDisplayString(__props.label), 1),
|
|
2504
2494
|
createElementVNode("div", _hoisted_3$2, [
|
|
2505
2495
|
createVNode(_component_el_input, mergeProps({
|
|
2506
2496
|
modelValue: inputValue.value,
|
|
@@ -2513,9 +2503,9 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2513
2503
|
};
|
|
2514
2504
|
}
|
|
2515
2505
|
}));
|
|
2516
|
-
var FuComplexInput = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__file", "/Users/
|
|
2506
|
+
var FuComplexInput = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/search-bar/complex-components/FuComplexInput.vue"]]);
|
|
2517
2507
|
const _hoisted_1$8 = { class: "fu-complex-component" };
|
|
2518
|
-
const _hoisted_2$
|
|
2508
|
+
const _hoisted_2$2 = { class: "fu-complex-component__label" };
|
|
2519
2509
|
const _hoisted_3$1 = { class: "fu-complex-component__content" };
|
|
2520
2510
|
const __default__$c = { name: "FuComplexDate" };
|
|
2521
2511
|
const _sfc_main$n = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$c), {
|
|
@@ -2562,7 +2552,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2562
2552
|
return (_ctx, _cache) => {
|
|
2563
2553
|
const _component_el_date_picker = resolveComponent("el-date-picker");
|
|
2564
2554
|
return openBlock(), createElementBlock("div", _hoisted_1$8, [
|
|
2565
|
-
createElementVNode("div", _hoisted_2$
|
|
2555
|
+
createElementVNode("div", _hoisted_2$2, toDisplayString(__props.label), 1),
|
|
2566
2556
|
createElementVNode("div", _hoisted_3$1, [
|
|
2567
2557
|
createVNode(_component_el_date_picker, mergeProps({
|
|
2568
2558
|
class: "fu-complex-date",
|
|
@@ -2581,9 +2571,9 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2581
2571
|
};
|
|
2582
2572
|
}
|
|
2583
2573
|
}));
|
|
2584
|
-
var FuComplexDate = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__file", "/Users/
|
|
2574
|
+
var FuComplexDate = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/search-bar/complex-components/FuComplexDate.vue"]]);
|
|
2585
2575
|
const _hoisted_1$7 = { class: "fu-complex-component" };
|
|
2586
|
-
const _hoisted_2$
|
|
2576
|
+
const _hoisted_2$1 = { class: "fu-complex-component__label" };
|
|
2587
2577
|
const _hoisted_3 = { class: "fu-complex-component__content" };
|
|
2588
2578
|
const __default__$b = { name: "FuComplexDateTime" };
|
|
2589
2579
|
const _sfc_main$m = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$b), {
|
|
@@ -2630,7 +2620,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2630
2620
|
return (_ctx, _cache) => {
|
|
2631
2621
|
const _component_el_date_picker = resolveComponent("el-date-picker");
|
|
2632
2622
|
return openBlock(), createElementBlock("div", _hoisted_1$7, [
|
|
2633
|
-
createElementVNode("div", _hoisted_2$
|
|
2623
|
+
createElementVNode("div", _hoisted_2$1, toDisplayString(__props.label), 1),
|
|
2634
2624
|
createElementVNode("div", _hoisted_3, [
|
|
2635
2625
|
createVNode(_component_el_date_picker, mergeProps({
|
|
2636
2626
|
class: "fu-complex-date-time",
|
|
@@ -2649,7 +2639,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2649
2639
|
};
|
|
2650
2640
|
}
|
|
2651
2641
|
}));
|
|
2652
|
-
var FuComplexDateTime = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__file", "/Users/
|
|
2642
|
+
var FuComplexDateTime = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/search-bar/complex-components/FuComplexDateTime.vue"]]);
|
|
2653
2643
|
FuSearchBar.install = (app) => {
|
|
2654
2644
|
app.component(FuQuickSearch.name, FuQuickSearch);
|
|
2655
2645
|
app.component(FuSearchBar.name, FuSearchBar);
|
|
@@ -2796,7 +2786,7 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
|
2796
2786
|
};
|
|
2797
2787
|
}
|
|
2798
2788
|
});
|
|
2799
|
-
var FuSpeedDialButton = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__file", "/Users/
|
|
2789
|
+
var FuSpeedDialButton = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/speed-dial/FuSpeedDialButton.vue"]]);
|
|
2800
2790
|
const SpeedDialKey = Symbol("SpeedDialKey");
|
|
2801
2791
|
const _hoisted_1$6 = { class: "fu-speed-dial-action-button" };
|
|
2802
2792
|
const _sfc_main$k = /* @__PURE__ */ defineComponent({
|
|
@@ -2888,7 +2878,7 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
|
|
|
2888
2878
|
};
|
|
2889
2879
|
}
|
|
2890
2880
|
});
|
|
2891
|
-
var FuSpeedDialActionButton = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__file", "/Users/
|
|
2881
|
+
var FuSpeedDialActionButton = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/speed-dial/FuSpeedDialActionButton.vue"]]);
|
|
2892
2882
|
const __default__$a = { name: "FuSpeedDialItem" };
|
|
2893
2883
|
const _sfc_main$j = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$a), {
|
|
2894
2884
|
props: {
|
|
@@ -2979,7 +2969,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2979
2969
|
};
|
|
2980
2970
|
}
|
|
2981
2971
|
}));
|
|
2982
|
-
var FuSpeedDialItem = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__file", "/Users/
|
|
2972
|
+
var FuSpeedDialItem = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/speed-dial/FuSpeedDialItem.vue"]]);
|
|
2983
2973
|
const _hoisted_1$5 = { class: "fu-speed-dial__content" };
|
|
2984
2974
|
const __default__$9 = { name: "FuSpeedDial" };
|
|
2985
2975
|
const _sfc_main$i = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$9), {
|
|
@@ -3250,7 +3240,7 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
3250
3240
|
};
|
|
3251
3241
|
}
|
|
3252
3242
|
}));
|
|
3253
|
-
var FuSpeedDial = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__file", "/Users/
|
|
3243
|
+
var FuSpeedDial = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/speed-dial/FuSpeedDial.vue"]]);
|
|
3254
3244
|
FuSpeedDial.install = (app) => {
|
|
3255
3245
|
app.component(FuSpeedDial.name, FuSpeedDial);
|
|
3256
3246
|
app.component(FuSpeedDialItem.name, FuSpeedDialItem);
|
|
@@ -3466,7 +3456,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
3466
3456
|
};
|
|
3467
3457
|
}
|
|
3468
3458
|
}));
|
|
3469
|
-
var FuSplitPane = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__file", "/Users/
|
|
3459
|
+
var FuSplitPane = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/split-pane/FuSplitPane.vue"]]);
|
|
3470
3460
|
FuSplitPane.install = (app) => {
|
|
3471
3461
|
app.component(FuSplitPane.name, FuSplitPane);
|
|
3472
3462
|
};
|
|
@@ -3507,7 +3497,7 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
|
3507
3497
|
};
|
|
3508
3498
|
}
|
|
3509
3499
|
});
|
|
3510
|
-
var FuHorizontalNavigation = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__file", "/Users/
|
|
3500
|
+
var FuHorizontalNavigation = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/steps/FuHorizontalNavigation.vue"]]);
|
|
3511
3501
|
const _sfc_main$f = {};
|
|
3512
3502
|
function _sfc_render(_ctx, _cache) {
|
|
3513
3503
|
const _component_el_button = resolveComponent("el-button");
|
|
@@ -3518,7 +3508,7 @@ function _sfc_render(_ctx, _cache) {
|
|
|
3518
3508
|
_: 3
|
|
3519
3509
|
}, 16);
|
|
3520
3510
|
}
|
|
3521
|
-
var FuStepButton = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["render", _sfc_render], ["__file", "/Users/
|
|
3511
|
+
var FuStepButton = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["render", _sfc_render], ["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/steps/FuStepButton.vue"]]);
|
|
3522
3512
|
var FuStepsFooter = defineComponent({
|
|
3523
3513
|
name: "FuStepsFooter",
|
|
3524
3514
|
components: {
|
|
@@ -3759,7 +3749,7 @@ const _sfc_main$e = defineComponent({
|
|
|
3759
3749
|
};
|
|
3760
3750
|
}
|
|
3761
3751
|
});
|
|
3762
|
-
var FuHorizontalSteps = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["__file", "/Users/
|
|
3752
|
+
var FuHorizontalSteps = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/steps/FuHorizontalSteps.vue"]]);
|
|
3763
3753
|
const _sfc_main$d = /* @__PURE__ */ defineComponent({
|
|
3764
3754
|
__name: "FuVerticalNavigation",
|
|
3765
3755
|
props: {
|
|
@@ -3817,7 +3807,7 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
|
|
|
3817
3807
|
};
|
|
3818
3808
|
}
|
|
3819
3809
|
});
|
|
3820
|
-
var FuVerticalNavigation = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["__file", "/Users/
|
|
3810
|
+
var FuVerticalNavigation = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/steps/FuVerticalNavigation.vue"]]);
|
|
3821
3811
|
const _sfc_main$c = defineComponent({
|
|
3822
3812
|
name: "FuVerticalSteps",
|
|
3823
3813
|
components: { FuVerticalNavigation, FuStepsFooter },
|
|
@@ -3881,7 +3871,7 @@ const _sfc_main$c = defineComponent({
|
|
|
3881
3871
|
};
|
|
3882
3872
|
}
|
|
3883
3873
|
});
|
|
3884
|
-
var FuVerticalSteps = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__file", "/Users/
|
|
3874
|
+
var FuVerticalSteps = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/steps/FuVerticalSteps.vue"]]);
|
|
3885
3875
|
const _sfc_main$b = defineComponent({
|
|
3886
3876
|
name: "FuSteps",
|
|
3887
3877
|
components: {
|
|
@@ -3920,7 +3910,7 @@ const _sfc_main$b = defineComponent({
|
|
|
3920
3910
|
}
|
|
3921
3911
|
}
|
|
3922
3912
|
});
|
|
3923
|
-
var FuSteps = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__file", "/Users/
|
|
3913
|
+
var FuSteps = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/steps/FuSteps.vue"]]);
|
|
3924
3914
|
const _hoisted_1$3 = { class: "fu-step" };
|
|
3925
3915
|
const __default__$7 = { name: "FuStep" };
|
|
3926
3916
|
const _sfc_main$a = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$7), {
|
|
@@ -3937,7 +3927,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
3937
3927
|
};
|
|
3938
3928
|
}
|
|
3939
3929
|
}));
|
|
3940
|
-
var FuStep = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__file", "/Users/
|
|
3930
|
+
var FuStep = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/steps/FuStep.vue"]]);
|
|
3941
3931
|
FuSteps.install = (app) => {
|
|
3942
3932
|
app.component(FuStep.name, FuStep);
|
|
3943
3933
|
app.component(FuSteps.name, FuSteps);
|
|
@@ -4011,7 +4001,6 @@ const FuTableBody = (props, context) => {
|
|
|
4011
4001
|
});
|
|
4012
4002
|
return nodes;
|
|
4013
4003
|
};
|
|
4014
|
-
const LocalKey = Symbol("LocalKey");
|
|
4015
4004
|
const __default__$6 = { name: "FuTable" };
|
|
4016
4005
|
const _sfc_main$9 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$6), {
|
|
4017
4006
|
props: {
|
|
@@ -4109,7 +4098,6 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
4109
4098
|
initColumns(children, props.columns);
|
|
4110
4099
|
}
|
|
4111
4100
|
});
|
|
4112
|
-
provide(LocalKey, props.localKey);
|
|
4113
4101
|
onUpdated(() => {
|
|
4114
4102
|
updateNodes(children);
|
|
4115
4103
|
updateColumns(children, props.columns);
|
|
@@ -4147,11 +4135,8 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
4147
4135
|
};
|
|
4148
4136
|
}
|
|
4149
4137
|
}));
|
|
4150
|
-
var FuTable = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__file", "/Users/
|
|
4151
|
-
const tableColumnSelect = (
|
|
4152
|
-
const columnsKey = computed(() => {
|
|
4153
|
-
return localKey ? "FU-T-" + localKey : "";
|
|
4154
|
-
});
|
|
4138
|
+
var FuTable = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/table/FuTable.vue"]]);
|
|
4139
|
+
const tableColumnSelect = () => {
|
|
4155
4140
|
function dragstart(event, index) {
|
|
4156
4141
|
if (event.dataTransfer) {
|
|
4157
4142
|
event.dataTransfer.effectAllowed = "move";
|
|
@@ -4194,7 +4179,6 @@ const tableColumnSelect = (localKey) => {
|
|
|
4194
4179
|
}
|
|
4195
4180
|
}
|
|
4196
4181
|
return {
|
|
4197
|
-
columnsKey,
|
|
4198
4182
|
dragstart,
|
|
4199
4183
|
dragenter,
|
|
4200
4184
|
dragleave,
|
|
@@ -4203,7 +4187,6 @@ const tableColumnSelect = (localKey) => {
|
|
|
4203
4187
|
};
|
|
4204
4188
|
};
|
|
4205
4189
|
const _hoisted_1$2 = { class: "fu-table-column-select-popper__body" };
|
|
4206
|
-
const _hoisted_2$1 = { class: "fu-table-column-select-popper__footer" };
|
|
4207
4190
|
const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
4208
4191
|
__name: "FuTableColumnSelectPopover",
|
|
4209
4192
|
props: {
|
|
@@ -4236,15 +4219,13 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
4236
4219
|
setup(__props) {
|
|
4237
4220
|
const props = __props;
|
|
4238
4221
|
const { t: t2 } = useLocale();
|
|
4239
|
-
const localKey = inject(LocalKey, void 0);
|
|
4240
4222
|
const {
|
|
4241
|
-
columnsKey,
|
|
4242
4223
|
dragstart,
|
|
4243
4224
|
dragenter,
|
|
4244
4225
|
dragleave,
|
|
4245
4226
|
dragend,
|
|
4246
4227
|
drop
|
|
4247
|
-
} = tableColumnSelect(
|
|
4228
|
+
} = tableColumnSelect();
|
|
4248
4229
|
const slotName = computed(() => props.onlyIcon ? "onlyIcon" : "default");
|
|
4249
4230
|
const isFixAll = computed(() => {
|
|
4250
4231
|
var _a2;
|
|
@@ -4259,12 +4240,6 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
4259
4240
|
const header = computed(() => {
|
|
4260
4241
|
return props.title || t2("fu.table.custom_table_fields");
|
|
4261
4242
|
});
|
|
4262
|
-
function reset() {
|
|
4263
|
-
if (columnsKey) {
|
|
4264
|
-
localStorage.removeItem(columnsKey.value);
|
|
4265
|
-
}
|
|
4266
|
-
props.columns.splice(0, props.columns.length);
|
|
4267
|
-
}
|
|
4268
4243
|
return (_ctx, _cache) => {
|
|
4269
4244
|
const _component_el_checkbox = resolveComponent("el-checkbox");
|
|
4270
4245
|
const _component_el_button = resolveComponent("el-button");
|
|
@@ -4317,17 +4292,6 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
4317
4292
|
])
|
|
4318
4293
|
]);
|
|
4319
4294
|
}), 128))
|
|
4320
|
-
]),
|
|
4321
|
-
createElementVNode("div", _hoisted_2$1, [
|
|
4322
|
-
unref(columnsKey) ? (openBlock(), createBlock(_component_el_button, {
|
|
4323
|
-
key: 0,
|
|
4324
|
-
onClick: reset
|
|
4325
|
-
}, {
|
|
4326
|
-
default: withCtx(() => [
|
|
4327
|
-
createTextVNode(toDisplayString(unref(t2)("fu.table.reset")), 1)
|
|
4328
|
-
]),
|
|
4329
|
-
_: 1
|
|
4330
|
-
})) : createCommentVNode("v-if", true)
|
|
4331
4295
|
])
|
|
4332
4296
|
]),
|
|
4333
4297
|
_: 1
|
|
@@ -4335,7 +4299,7 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
4335
4299
|
};
|
|
4336
4300
|
}
|
|
4337
4301
|
});
|
|
4338
|
-
var FuTableColumnSelectPopover = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__file", "/Users/
|
|
4302
|
+
var FuTableColumnSelectPopover = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/table/table-column-select/FuTableColumnSelectPopover.vue"]]);
|
|
4339
4303
|
const _hoisted_1$1 = { style: { "display": "inline-block" } };
|
|
4340
4304
|
const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
4341
4305
|
__name: "FuTableColumnSelectDialog",
|
|
@@ -4359,7 +4323,6 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
|
4359
4323
|
},
|
|
4360
4324
|
setup(__props) {
|
|
4361
4325
|
const props = __props;
|
|
4362
|
-
const localKey = inject(LocalKey, void 0);
|
|
4363
4326
|
const { t: t2 } = useLocale();
|
|
4364
4327
|
const slotName = computed(() => props.onlyIcon ? "onlyIcon" : "default");
|
|
4365
4328
|
const cloneColumn = (source, target) => {
|
|
@@ -4369,13 +4332,12 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
|
4369
4332
|
return target;
|
|
4370
4333
|
};
|
|
4371
4334
|
const {
|
|
4372
|
-
columnsKey,
|
|
4373
4335
|
dragstart,
|
|
4374
4336
|
dragenter,
|
|
4375
4337
|
dragleave,
|
|
4376
4338
|
dragend,
|
|
4377
4339
|
drop
|
|
4378
|
-
} = tableColumnSelect(
|
|
4340
|
+
} = tableColumnSelect();
|
|
4379
4341
|
const cloneColumns = ref([]);
|
|
4380
4342
|
const visible = ref(false);
|
|
4381
4343
|
const header = computed(() => {
|
|
@@ -4392,11 +4354,8 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
|
4392
4354
|
});
|
|
4393
4355
|
visible.value = false;
|
|
4394
4356
|
}
|
|
4395
|
-
function
|
|
4396
|
-
|
|
4397
|
-
localStorage.removeItem(columnsKey.value);
|
|
4398
|
-
}
|
|
4399
|
-
props.columns.splice(0, props.columns.length);
|
|
4357
|
+
function cancel() {
|
|
4358
|
+
cloneColumns.value = [];
|
|
4400
4359
|
visible.value = false;
|
|
4401
4360
|
}
|
|
4402
4361
|
return (_ctx, _cache) => {
|
|
@@ -4420,6 +4379,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
|
4420
4379
|
modelValue: visible.value,
|
|
4421
4380
|
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => visible.value = $event),
|
|
4422
4381
|
onOpen: open,
|
|
4382
|
+
"show-close": false,
|
|
4423
4383
|
"append-to-body": ""
|
|
4424
4384
|
}, {
|
|
4425
4385
|
header: withCtx(() => [
|
|
@@ -4431,15 +4391,12 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
|
4431
4391
|
}, null, 8, ["title"])
|
|
4432
4392
|
]),
|
|
4433
4393
|
footer: withCtx(() => [
|
|
4434
|
-
|
|
4435
|
-
key: 0,
|
|
4436
|
-
onClick: reset
|
|
4437
|
-
}, {
|
|
4394
|
+
createVNode(_component_el_button, { onClick: cancel }, {
|
|
4438
4395
|
default: withCtx(() => [
|
|
4439
|
-
createTextVNode(toDisplayString(unref(t2)("fu.table.
|
|
4396
|
+
createTextVNode(toDisplayString(unref(t2)("fu.table.cancel")), 1)
|
|
4440
4397
|
]),
|
|
4441
4398
|
_: 1
|
|
4442
|
-
})
|
|
4399
|
+
}),
|
|
4443
4400
|
createVNode(_component_el_button, {
|
|
4444
4401
|
type: "primary",
|
|
4445
4402
|
onClick: ok
|
|
@@ -4481,7 +4438,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
|
4481
4438
|
};
|
|
4482
4439
|
}
|
|
4483
4440
|
});
|
|
4484
|
-
var FuTableColumnSelectDialog = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__file", "/Users/
|
|
4441
|
+
var FuTableColumnSelectDialog = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/table/table-column-select/FuTableColumnSelectDialog.vue"]]);
|
|
4485
4442
|
const _sfc_main$6 = defineComponent({
|
|
4486
4443
|
name: "FuTableColumnSelect",
|
|
4487
4444
|
props: ["type"],
|
|
@@ -4496,7 +4453,7 @@ const _sfc_main$6 = defineComponent({
|
|
|
4496
4453
|
};
|
|
4497
4454
|
}
|
|
4498
4455
|
});
|
|
4499
|
-
var FuTableColumnSelect = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["__file", "/Users/
|
|
4456
|
+
var FuTableColumnSelect = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/table/table-column-select/FuTableColumnSelect.vue"]]);
|
|
4500
4457
|
const __default__$5 = { name: "FuTablePagination" };
|
|
4501
4458
|
const _sfc_main$5 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$5), {
|
|
4502
4459
|
props: {
|
|
@@ -4545,7 +4502,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
4545
4502
|
};
|
|
4546
4503
|
}
|
|
4547
4504
|
}));
|
|
4548
|
-
var FuTablePagination = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__file", "/Users/
|
|
4505
|
+
var FuTablePagination = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/table/FuTablePagination.vue"]]);
|
|
4549
4506
|
const __default__$4 = { name: "FuTableButton" };
|
|
4550
4507
|
const _sfc_main$4 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$4), {
|
|
4551
4508
|
props: {
|
|
@@ -4574,7 +4531,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
4574
4531
|
};
|
|
4575
4532
|
}
|
|
4576
4533
|
}));
|
|
4577
|
-
var FuTableButton = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__file", "/Users/
|
|
4534
|
+
var FuTableButton = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/table/table-operations/FuTableButton.vue"]]);
|
|
4578
4535
|
const __default__$3 = { name: "FuTableMoreButton" };
|
|
4579
4536
|
const _sfc_main$3 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$3), {
|
|
4580
4537
|
props: {
|
|
@@ -4660,7 +4617,7 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
4660
4617
|
};
|
|
4661
4618
|
}
|
|
4662
4619
|
}));
|
|
4663
|
-
var FuTableMoreButton = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["__file", "/Users/
|
|
4620
|
+
var FuTableMoreButton = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/table/table-operations/FuTableMoreButton.vue"]]);
|
|
4664
4621
|
const __default__$2 = { name: "FuTableOperations" };
|
|
4665
4622
|
const _sfc_main$2 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$2), {
|
|
4666
4623
|
props: {
|
|
@@ -4767,7 +4724,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
4767
4724
|
};
|
|
4768
4725
|
}
|
|
4769
4726
|
}));
|
|
4770
|
-
var FuTableOperations = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__file", "/Users/
|
|
4727
|
+
var FuTableOperations = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/table/table-operations/FuTableOperations.vue"]]);
|
|
4771
4728
|
const _hoisted_1 = { class: "fu-dropdown-link" };
|
|
4772
4729
|
const _hoisted_2 = {
|
|
4773
4730
|
key: 0,
|
|
@@ -4901,7 +4858,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
4901
4858
|
};
|
|
4902
4859
|
}
|
|
4903
4860
|
}));
|
|
4904
|
-
var FuTableColumnDropdown = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__file", "/Users/
|
|
4861
|
+
var FuTableColumnDropdown = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/table/FuTableColumnDropdown.vue"]]);
|
|
4905
4862
|
FuTable.install = (app) => {
|
|
4906
4863
|
app.component(FuTable.name, FuTable);
|
|
4907
4864
|
app.component(FuTablePagination.name, FuTablePagination);
|
|
@@ -5058,7 +5015,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({
|
|
|
5058
5015
|
};
|
|
5059
5016
|
}
|
|
5060
5017
|
}));
|
|
5061
|
-
var FuTabs = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "/Users/
|
|
5018
|
+
var FuTabs = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/tabs/FuTabs.vue"]]);
|
|
5062
5019
|
FuTabs.install = (app) => {
|
|
5063
5020
|
app.component(FuTabs.name, FuTabs);
|
|
5064
5021
|
};
|
|
@@ -5067,7 +5024,7 @@ var __glob_2_8 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProp
|
|
|
5067
5024
|
"default": FuTabs
|
|
5068
5025
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
5069
5026
|
const name = "fit2cloud-ui-plus";
|
|
5070
|
-
const version = "1.1.
|
|
5027
|
+
const version = "1.1.17-beta.1";
|
|
5071
5028
|
const main = "./lib/fit2cloud-ui-plus.es.js";
|
|
5072
5029
|
const files = [
|
|
5073
5030
|
"lib",
|