fit2cloud-ui-plus 1.1.15 → 1.1.17-beta.0

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 (31) hide show
  1. package/lib/fit2cloud-ui-plus.es.js +53 -61
  2. package/lib/fit2cloud-ui-plus.umd.js +1 -1
  3. package/package.json +1 -1
  4. package/src/components/filter-bar/FuFilterInput.vue +4 -14
  5. package/src/components/filter-bar/filter-components/FuFilterSelect.vue +2 -1
  6. package/types/examples/pages/search/attributes.d.ts +57 -0
  7. package/types/examples/pages/search/demo/BaseSearchbar.vue.d.ts +66 -0
  8. package/types/examples/pages/search/demo/ComplexComponentsDemo.vue.d.ts +60 -0
  9. package/types/examples/pages/search/demo/ComplexSearchDemo.vue.d.ts +84 -0
  10. package/types/examples/pages/search/demo/CustomComponentsDemo.vue.d.ts +50 -0
  11. package/types/examples/pages/search/demo/EchoConditionsDemo.vue.d.ts +52 -0
  12. package/types/examples/pages/search/demo/QuickSearchDemo.vue.d.ts +18 -0
  13. package/types/examples/pages/search/demo/SearchBarButtonDemo.vue.d.ts +54 -0
  14. package/types/examples/pages/search/index.vue.d.ts +150 -0
  15. package/types/src/components/ steps/FuHorizontalNavigation.vue.d.ts +13 -0
  16. package/types/src/components/ steps/FuHorizontalSteps.vue.d.ts +6 -0
  17. package/types/src/components/ steps/FuStep.vue.d.ts +2 -0
  18. package/types/src/components/ steps/FuStepButton.vue.d.ts +2 -0
  19. package/types/src/components/ steps/FuSteps.vue.d.ts +12 -0
  20. package/types/src/components/ steps/FuStepsFooter.d.ts +6 -0
  21. package/types/src/components/ steps/FuVerticalNavigation.vue.d.ts +14 -0
  22. package/types/src/components/ steps/FuVerticalSteps.vue.d.ts +6 -0
  23. package/types/src/components/ steps/Stepper.d.ts +39 -0
  24. package/types/src/components/ steps/index.d.ts +2 -0
  25. package/types/src/components/ steps/types.d.ts +27 -0
  26. package/types/src/components/filter-bar/FuFilterInput.vue.d.ts +1 -4
  27. package/types/src/components/filter-bar/FuSearchInput.vue.d.ts +17 -0
  28. package/types/src/components/search-bar/complex-components/index.d.ts +0 -0
  29. package/types/src/components/search-bar/complex-components/mixins.d.ts +6 -0
  30. package/types/src/components/table/FuTableBody-backup.d.ts +3 -0
  31. package/types/src/tools/utils.d.ts +2 -0
@@ -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, watch, resolveComponent, openBlock, createBlock, mergeProps, onMounted, onUpdated, withCtx, createElementVNode, toDisplayString, nextTick, createElementBlock, Fragment, renderList, createVNode, withDirectives, createTextVNode, createCommentVNode, vShow, renderSlot, resolveDynamicComponent, normalizeClass, withModifiers, h, vModelText, normalizeStyle, Transition, useSlots, normalizeProps, guardReactiveProps, resolveDirective, isVNode, Comment } from "vue";
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();
@@ -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: ["update:modelValue", "change"],
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/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/filter-bar/FuFilterInput.vue"]]);
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/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/filter-bar/FuFilterConditionText.vue"]]);
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,7 +644,7 @@ const _sfc_main$H = /* @__PURE__ */ defineComponent({
654
644
  };
655
645
  }
656
646
  });
657
- var FuFilterConditions = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/filter-bar/FuFilterConditions.vue"]]);
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" };
@@ -892,7 +882,7 @@ 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/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/filter-bar/FuFilter.vue"]]);
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
887
  const _hoisted_2$e = { class: "fu-filter-bar__top" };
898
888
  const _hoisted_3$c = { class: "top_left" };
@@ -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/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/filter-bar/FuFilterBar.vue"]]);
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,7 +1052,7 @@ const _sfc_main$E = /* @__PURE__ */ defineComponent({
1062
1052
  };
1063
1053
  }
1064
1054
  });
1065
- var FuFilterOption = /* @__PURE__ */ _export_sfc(_sfc_main$E, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/filter-bar/filter-components/FuFilterOption.vue"]]);
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
1057
  const _hoisted_2$d = { class: "fu-filter-component__label" };
1068
1058
  const _hoisted_3$b = { class: "fu-filter-component__content" };
@@ -1144,7 +1134,9 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
1144
1134
  return value;
1145
1135
  }
1146
1136
  function getCondition() {
1147
- if (!selection.value || Array.isArray(selection.value) && selection.value.length === 0)
1137
+ if ((selection == null ? void 0 : selection.value) === void 0 || (selection == null ? void 0 : selection.value) === "")
1138
+ return;
1139
+ if (Array.isArray(selection.value) && selection.value.length === 0)
1148
1140
  return;
1149
1141
  let { field: field2, label } = props;
1150
1142
  return { field: field2, label, value: selection.value, valueLabel: valueLabel.value };
@@ -1214,7 +1206,7 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
1214
1206
  };
1215
1207
  }
1216
1208
  }));
1217
- var FuFilterSelect = /* @__PURE__ */ _export_sfc(_sfc_main$D, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/filter-bar/filter-components/FuFilterSelect.vue"]]);
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"]]);
1218
1210
  const _hoisted_1$j = { class: "fu-filter-component" };
1219
1211
  const _hoisted_2$c = { class: "fu-filter-component__label" };
1220
1212
  const _hoisted_3$a = { class: "fu-filter-component__content" };
@@ -1354,7 +1346,7 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
1354
1346
  };
1355
1347
  }
1356
1348
  }));
1357
- var FuFilterNormalSelect = /* @__PURE__ */ _export_sfc(_sfc_main$C, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/filter-bar/filter-components/FuFilterNormalSelect.vue"]]);
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"]]);
1358
1350
  const getCheckDate = (timestamp) => {
1359
1351
  if (!timestamp)
1360
1352
  return false;
@@ -1452,7 +1444,7 @@ const _sfc_main$B = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
1452
1444
  };
1453
1445
  }
1454
1446
  }));
1455
- var FuFilterDate = /* @__PURE__ */ _export_sfc(_sfc_main$B, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/filter-bar/filter-components/FuFilterDate.vue"]]);
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"]]);
1456
1448
  const _hoisted_1$h = { class: "fu-filter-component" };
1457
1449
  const _hoisted_2$a = { class: "fu-filter-component__label" };
1458
1450
  const _hoisted_3$8 = { class: "fu-filter-component__content" };
@@ -1520,7 +1512,7 @@ const _sfc_main$A = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
1520
1512
  };
1521
1513
  }
1522
1514
  }));
1523
- var FuFilterDateTime = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/filter-bar/filter-components/FuFilterDateTime.vue"]]);
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"]]);
1524
1516
  const _hoisted_1$g = { class: "fu-filter-component" };
1525
1517
  const _hoisted_2$9 = { class: "fu-filter-component__label" };
1526
1518
  const _hoisted_3$7 = { class: "fu-filter-component__content" };
@@ -1574,7 +1566,7 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
1574
1566
  };
1575
1567
  }
1576
1568
  }));
1577
- var FuFilterInputText = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/filter-bar/filter-components/FuFilterInputText.vue"]]);
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"]]);
1578
1570
  FuFilterBar.install = (app) => {
1579
1571
  app.component(FuFilterBar.name, FuFilterBar);
1580
1572
  app.component(FuFilter.name, FuFilter);
@@ -1654,7 +1646,7 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
1654
1646
  };
1655
1647
  }
1656
1648
  }));
1657
- var FuIconButton = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/icon-button/FuIconButton.vue"]]);
1649
+ var FuIconButton = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/icon-button/FuIconButton.vue"]]);
1658
1650
  FuIconButton.install = (app) => {
1659
1651
  app.component(FuIconButton.name, FuIconButton);
1660
1652
  };
@@ -1770,7 +1762,7 @@ const _sfc_main$x = defineComponent({
1770
1762
  };
1771
1763
  }
1772
1764
  });
1773
- var FuReadWriteSwitch = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/read-write-switch/FuReadWriteSwitch.vue"]]);
1765
+ var FuReadWriteSwitch = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/read-write-switch/FuReadWriteSwitch.vue"]]);
1774
1766
  const __default__$l = { name: "FuInputRwSwitch" };
1775
1767
  const _sfc_main$w = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$l), {
1776
1768
  props: {
@@ -1823,7 +1815,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
1823
1815
  };
1824
1816
  }
1825
1817
  }));
1826
- var FuInputRwSwitch = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/read-write-switch/FuInputRwSwitch.vue"]]);
1818
+ var FuInputRwSwitch = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/read-write-switch/FuInputRwSwitch.vue"]]);
1827
1819
  const __default__$k = { name: "FuSelectRwSwitch" };
1828
1820
  const _sfc_main$v = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$k), {
1829
1821
  props: {
@@ -1907,7 +1899,7 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
1907
1899
  };
1908
1900
  }
1909
1901
  }));
1910
- var FuSelectRwSwitch = /* @__PURE__ */ _export_sfc(_sfc_main$v, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/read-write-switch/FuSelectRwSwitch.vue"]]);
1902
+ var FuSelectRwSwitch = /* @__PURE__ */ _export_sfc(_sfc_main$v, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/read-write-switch/FuSelectRwSwitch.vue"]]);
1911
1903
  FuReadWriteSwitch.install = (app) => {
1912
1904
  app.component(FuReadWriteSwitch.name, FuReadWriteSwitch);
1913
1905
  app.component(FuInputRwSwitch.name, FuInputRwSwitch);
@@ -1986,7 +1978,7 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
1986
1978
  };
1987
1979
  }
1988
1980
  }));
1989
- var FuQuickSearch = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/search-bar/FuQuickSearch.vue"]]);
1981
+ var FuQuickSearch = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/search-bar/FuQuickSearch.vue"]]);
1990
1982
  const referenceKey = Symbol("ReferenceKey");
1991
1983
  const _hoisted_1$d = { class: "fu-complex-components" };
1992
1984
  const _hoisted_2$8 = { class: "fu-complex-components__body" };
@@ -2115,7 +2107,7 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
2115
2107
  };
2116
2108
  }
2117
2109
  }));
2118
- var FuComplexSearch = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/search-bar/FuComplexSearch.vue"]]);
2110
+ var FuComplexSearch = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/search-bar/FuComplexSearch.vue"]]);
2119
2111
  const __default__$h = { name: "FuSearchBarButton" };
2120
2112
  const _sfc_main$s = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$h), {
2121
2113
  props: {
@@ -2146,7 +2138,7 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
2146
2138
  };
2147
2139
  }
2148
2140
  }));
2149
- var FuSearchBarButton = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/search-bar/FuSearchBarButton.vue"]]);
2141
+ var FuSearchBarButton = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/search-bar/FuSearchBarButton.vue"]]);
2150
2142
  const _hoisted_1$c = { class: "fu-search-conditions__item" };
2151
2143
  const _hoisted_2$7 = { key: 0 };
2152
2144
  const _hoisted_3$5 = { class: "condition-value" };
@@ -2195,7 +2187,7 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
2195
2187
  };
2196
2188
  }
2197
2189
  }));
2198
- var FuSearchConditions = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/search-bar/FuSearchContions.vue"]]);
2190
+ var FuSearchConditions = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/search-bar/FuSearchContions.vue"]]);
2199
2191
  const _hoisted_1$b = { class: "fu-search-bar" };
2200
2192
  const _hoisted_2$6 = { class: "fu-search-bar__content" };
2201
2193
  const _hoisted_3$4 = { class: "fu-search-bar__buttons" };
@@ -2358,7 +2350,7 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
2358
2350
  };
2359
2351
  }
2360
2352
  }));
2361
- var FuSearchBar = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/search-bar/FuSearchBar.vue"]]);
2353
+ var FuSearchBar = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/search-bar/FuSearchBar.vue"]]);
2362
2354
  const _hoisted_1$a = { class: "fu-complex-component" };
2363
2355
  const _hoisted_2$5 = { class: "fu-complex-component__label" };
2364
2356
  const _hoisted_3$3 = { class: "fu-complex-component__content" };
@@ -2454,7 +2446,7 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
2454
2446
  };
2455
2447
  }
2456
2448
  }));
2457
- var FuComplexSelect = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/search-bar/complex-components/FuComplexSelect.vue"]]);
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"]]);
2458
2450
  const _hoisted_1$9 = { class: "fu-complex-component" };
2459
2451
  const _hoisted_2$4 = { class: "fu-complex-component__label" };
2460
2452
  const _hoisted_3$2 = { class: "fu-complex-component__content" };
@@ -2511,7 +2503,7 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
2511
2503
  };
2512
2504
  }
2513
2505
  }));
2514
- var FuComplexInput = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/search-bar/complex-components/FuComplexInput.vue"]]);
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"]]);
2515
2507
  const _hoisted_1$8 = { class: "fu-complex-component" };
2516
2508
  const _hoisted_2$3 = { class: "fu-complex-component__label" };
2517
2509
  const _hoisted_3$1 = { class: "fu-complex-component__content" };
@@ -2579,7 +2571,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
2579
2571
  };
2580
2572
  }
2581
2573
  }));
2582
- var FuComplexDate = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/search-bar/complex-components/FuComplexDate.vue"]]);
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"]]);
2583
2575
  const _hoisted_1$7 = { class: "fu-complex-component" };
2584
2576
  const _hoisted_2$2 = { class: "fu-complex-component__label" };
2585
2577
  const _hoisted_3 = { class: "fu-complex-component__content" };
@@ -2647,7 +2639,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
2647
2639
  };
2648
2640
  }
2649
2641
  }));
2650
- var FuComplexDateTime = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/search-bar/complex-components/FuComplexDateTime.vue"]]);
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"]]);
2651
2643
  FuSearchBar.install = (app) => {
2652
2644
  app.component(FuQuickSearch.name, FuQuickSearch);
2653
2645
  app.component(FuSearchBar.name, FuSearchBar);
@@ -2794,7 +2786,7 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
2794
2786
  };
2795
2787
  }
2796
2788
  });
2797
- var FuSpeedDialButton = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/speed-dial/FuSpeedDialButton.vue"]]);
2789
+ var FuSpeedDialButton = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/speed-dial/FuSpeedDialButton.vue"]]);
2798
2790
  const SpeedDialKey = Symbol("SpeedDialKey");
2799
2791
  const _hoisted_1$6 = { class: "fu-speed-dial-action-button" };
2800
2792
  const _sfc_main$k = /* @__PURE__ */ defineComponent({
@@ -2886,7 +2878,7 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
2886
2878
  };
2887
2879
  }
2888
2880
  });
2889
- var FuSpeedDialActionButton = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/speed-dial/FuSpeedDialActionButton.vue"]]);
2881
+ var FuSpeedDialActionButton = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/speed-dial/FuSpeedDialActionButton.vue"]]);
2890
2882
  const __default__$a = { name: "FuSpeedDialItem" };
2891
2883
  const _sfc_main$j = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$a), {
2892
2884
  props: {
@@ -2977,7 +2969,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
2977
2969
  };
2978
2970
  }
2979
2971
  }));
2980
- var FuSpeedDialItem = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/speed-dial/FuSpeedDialItem.vue"]]);
2972
+ var FuSpeedDialItem = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/speed-dial/FuSpeedDialItem.vue"]]);
2981
2973
  const _hoisted_1$5 = { class: "fu-speed-dial__content" };
2982
2974
  const __default__$9 = { name: "FuSpeedDial" };
2983
2975
  const _sfc_main$i = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$9), {
@@ -3248,7 +3240,7 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
3248
3240
  };
3249
3241
  }
3250
3242
  }));
3251
- var FuSpeedDial = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/speed-dial/FuSpeedDial.vue"]]);
3243
+ var FuSpeedDial = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/speed-dial/FuSpeedDial.vue"]]);
3252
3244
  FuSpeedDial.install = (app) => {
3253
3245
  app.component(FuSpeedDial.name, FuSpeedDial);
3254
3246
  app.component(FuSpeedDialItem.name, FuSpeedDialItem);
@@ -3464,7 +3456,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
3464
3456
  };
3465
3457
  }
3466
3458
  }));
3467
- var FuSplitPane = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/split-pane/FuSplitPane.vue"]]);
3459
+ var FuSplitPane = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/split-pane/FuSplitPane.vue"]]);
3468
3460
  FuSplitPane.install = (app) => {
3469
3461
  app.component(FuSplitPane.name, FuSplitPane);
3470
3462
  };
@@ -3505,7 +3497,7 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
3505
3497
  };
3506
3498
  }
3507
3499
  });
3508
- var FuHorizontalNavigation = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/steps/FuHorizontalNavigation.vue"]]);
3500
+ var FuHorizontalNavigation = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/steps/FuHorizontalNavigation.vue"]]);
3509
3501
  const _sfc_main$f = {};
3510
3502
  function _sfc_render(_ctx, _cache) {
3511
3503
  const _component_el_button = resolveComponent("el-button");
@@ -3516,7 +3508,7 @@ function _sfc_render(_ctx, _cache) {
3516
3508
  _: 3
3517
3509
  }, 16);
3518
3510
  }
3519
- var FuStepButton = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["render", _sfc_render], ["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/steps/FuStepButton.vue"]]);
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"]]);
3520
3512
  var FuStepsFooter = defineComponent({
3521
3513
  name: "FuStepsFooter",
3522
3514
  components: {
@@ -3757,7 +3749,7 @@ const _sfc_main$e = defineComponent({
3757
3749
  };
3758
3750
  }
3759
3751
  });
3760
- var FuHorizontalSteps = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/steps/FuHorizontalSteps.vue"]]);
3752
+ var FuHorizontalSteps = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/steps/FuHorizontalSteps.vue"]]);
3761
3753
  const _sfc_main$d = /* @__PURE__ */ defineComponent({
3762
3754
  __name: "FuVerticalNavigation",
3763
3755
  props: {
@@ -3815,7 +3807,7 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
3815
3807
  };
3816
3808
  }
3817
3809
  });
3818
- var FuVerticalNavigation = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/steps/FuVerticalNavigation.vue"]]);
3810
+ var FuVerticalNavigation = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/steps/FuVerticalNavigation.vue"]]);
3819
3811
  const _sfc_main$c = defineComponent({
3820
3812
  name: "FuVerticalSteps",
3821
3813
  components: { FuVerticalNavigation, FuStepsFooter },
@@ -3879,7 +3871,7 @@ const _sfc_main$c = defineComponent({
3879
3871
  };
3880
3872
  }
3881
3873
  });
3882
- var FuVerticalSteps = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/steps/FuVerticalSteps.vue"]]);
3874
+ var FuVerticalSteps = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/steps/FuVerticalSteps.vue"]]);
3883
3875
  const _sfc_main$b = defineComponent({
3884
3876
  name: "FuSteps",
3885
3877
  components: {
@@ -3918,7 +3910,7 @@ const _sfc_main$b = defineComponent({
3918
3910
  }
3919
3911
  }
3920
3912
  });
3921
- var FuSteps = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/steps/FuSteps.vue"]]);
3913
+ var FuSteps = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/steps/FuSteps.vue"]]);
3922
3914
  const _hoisted_1$3 = { class: "fu-step" };
3923
3915
  const __default__$7 = { name: "FuStep" };
3924
3916
  const _sfc_main$a = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$7), {
@@ -3935,7 +3927,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
3935
3927
  };
3936
3928
  }
3937
3929
  }));
3938
- var FuStep = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/steps/FuStep.vue"]]);
3930
+ var FuStep = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/steps/FuStep.vue"]]);
3939
3931
  FuSteps.install = (app) => {
3940
3932
  app.component(FuStep.name, FuStep);
3941
3933
  app.component(FuSteps.name, FuSteps);
@@ -4145,7 +4137,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
4145
4137
  };
4146
4138
  }
4147
4139
  }));
4148
- var FuTable = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/table/FuTable.vue"]]);
4140
+ var FuTable = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/table/FuTable.vue"]]);
4149
4141
  const tableColumnSelect = (localKey) => {
4150
4142
  const columnsKey = computed(() => {
4151
4143
  return localKey ? "FU-T-" + localKey : "";
@@ -4333,7 +4325,7 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
4333
4325
  };
4334
4326
  }
4335
4327
  });
4336
- var FuTableColumnSelectPopover = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/table/table-column-select/FuTableColumnSelectPopover.vue"]]);
4328
+ var FuTableColumnSelectPopover = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/table/table-column-select/FuTableColumnSelectPopover.vue"]]);
4337
4329
  const _hoisted_1$1 = { style: { "display": "inline-block" } };
4338
4330
  const _sfc_main$7 = /* @__PURE__ */ defineComponent({
4339
4331
  __name: "FuTableColumnSelectDialog",
@@ -4479,7 +4471,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
4479
4471
  };
4480
4472
  }
4481
4473
  });
4482
- var FuTableColumnSelectDialog = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/table/table-column-select/FuTableColumnSelectDialog.vue"]]);
4474
+ var FuTableColumnSelectDialog = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/table/table-column-select/FuTableColumnSelectDialog.vue"]]);
4483
4475
  const _sfc_main$6 = defineComponent({
4484
4476
  name: "FuTableColumnSelect",
4485
4477
  props: ["type"],
@@ -4494,7 +4486,7 @@ const _sfc_main$6 = defineComponent({
4494
4486
  };
4495
4487
  }
4496
4488
  });
4497
- var FuTableColumnSelect = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/table/table-column-select/FuTableColumnSelect.vue"]]);
4489
+ var FuTableColumnSelect = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/table/table-column-select/FuTableColumnSelect.vue"]]);
4498
4490
  const __default__$5 = { name: "FuTablePagination" };
4499
4491
  const _sfc_main$5 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$5), {
4500
4492
  props: {
@@ -4543,7 +4535,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
4543
4535
  };
4544
4536
  }
4545
4537
  }));
4546
- var FuTablePagination = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/table/FuTablePagination.vue"]]);
4538
+ var FuTablePagination = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/table/FuTablePagination.vue"]]);
4547
4539
  const __default__$4 = { name: "FuTableButton" };
4548
4540
  const _sfc_main$4 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$4), {
4549
4541
  props: {
@@ -4572,7 +4564,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
4572
4564
  };
4573
4565
  }
4574
4566
  }));
4575
- var FuTableButton = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/table/table-operations/FuTableButton.vue"]]);
4567
+ var FuTableButton = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/table/table-operations/FuTableButton.vue"]]);
4576
4568
  const __default__$3 = { name: "FuTableMoreButton" };
4577
4569
  const _sfc_main$3 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$3), {
4578
4570
  props: {
@@ -4658,7 +4650,7 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
4658
4650
  };
4659
4651
  }
4660
4652
  }));
4661
- var FuTableMoreButton = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/table/table-operations/FuTableMoreButton.vue"]]);
4653
+ var FuTableMoreButton = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/table/table-operations/FuTableMoreButton.vue"]]);
4662
4654
  const __default__$2 = { name: "FuTableOperations" };
4663
4655
  const _sfc_main$2 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$2), {
4664
4656
  props: {
@@ -4765,7 +4757,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
4765
4757
  };
4766
4758
  }
4767
4759
  }));
4768
- var FuTableOperations = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/table/table-operations/FuTableOperations.vue"]]);
4760
+ var FuTableOperations = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/table/table-operations/FuTableOperations.vue"]]);
4769
4761
  const _hoisted_1 = { class: "fu-dropdown-link" };
4770
4762
  const _hoisted_2 = {
4771
4763
  key: 0,
@@ -4899,7 +4891,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
4899
4891
  };
4900
4892
  }
4901
4893
  }));
4902
- var FuTableColumnDropdown = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/table/FuTableColumnDropdown.vue"]]);
4894
+ var FuTableColumnDropdown = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/table/FuTableColumnDropdown.vue"]]);
4903
4895
  FuTable.install = (app) => {
4904
4896
  app.component(FuTable.name, FuTable);
4905
4897
  app.component(FuTablePagination.name, FuTablePagination);
@@ -5056,7 +5048,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({
5056
5048
  };
5057
5049
  }
5058
5050
  }));
5059
- var FuTabs = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/tabs/FuTabs.vue"]]);
5051
+ var FuTabs = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "/Users/mokun/fit2cloud2.0/fit2cloud-ui-plus/src/components/tabs/FuTabs.vue"]]);
5060
5052
  FuTabs.install = (app) => {
5061
5053
  app.component(FuTabs.name, FuTabs);
5062
5054
  };
@@ -5065,7 +5057,7 @@ var __glob_2_8 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProp
5065
5057
  "default": FuTabs
5066
5058
  }, Symbol.toStringTag, { value: "Module" }));
5067
5059
  const name = "fit2cloud-ui-plus";
5068
- const version = "1.1.15";
5060
+ const version = "1.1.17-beta.0";
5069
5061
  const main = "./lib/fit2cloud-ui-plus.es.js";
5070
5062
  const files = [
5071
5063
  "lib",