fit2cloud-ui-plus 1.1.16 → 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 (30) hide show
  1. package/lib/fit2cloud-ui-plus.es.js +50 -60
  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/types/examples/pages/search/attributes.d.ts +57 -0
  6. package/types/examples/pages/search/demo/BaseSearchbar.vue.d.ts +66 -0
  7. package/types/examples/pages/search/demo/ComplexComponentsDemo.vue.d.ts +60 -0
  8. package/types/examples/pages/search/demo/ComplexSearchDemo.vue.d.ts +84 -0
  9. package/types/examples/pages/search/demo/CustomComponentsDemo.vue.d.ts +50 -0
  10. package/types/examples/pages/search/demo/EchoConditionsDemo.vue.d.ts +52 -0
  11. package/types/examples/pages/search/demo/QuickSearchDemo.vue.d.ts +18 -0
  12. package/types/examples/pages/search/demo/SearchBarButtonDemo.vue.d.ts +54 -0
  13. package/types/examples/pages/search/index.vue.d.ts +150 -0
  14. package/types/src/components/ steps/FuHorizontalNavigation.vue.d.ts +13 -0
  15. package/types/src/components/ steps/FuHorizontalSteps.vue.d.ts +6 -0
  16. package/types/src/components/ steps/FuStep.vue.d.ts +2 -0
  17. package/types/src/components/ steps/FuStepButton.vue.d.ts +2 -0
  18. package/types/src/components/ steps/FuSteps.vue.d.ts +12 -0
  19. package/types/src/components/ steps/FuStepsFooter.d.ts +6 -0
  20. package/types/src/components/ steps/FuVerticalNavigation.vue.d.ts +14 -0
  21. package/types/src/components/ steps/FuVerticalSteps.vue.d.ts +6 -0
  22. package/types/src/components/ steps/Stepper.d.ts +39 -0
  23. package/types/src/components/ steps/index.d.ts +2 -0
  24. package/types/src/components/ steps/types.d.ts +27 -0
  25. package/types/src/components/filter-bar/FuFilterInput.vue.d.ts +1 -4
  26. package/types/src/components/filter-bar/FuSearchInput.vue.d.ts +17 -0
  27. package/types/src/components/search-bar/complex-components/index.d.ts +0 -0
  28. package/types/src/components/search-bar/complex-components/mixins.d.ts +6 -0
  29. package/types/src/components/table/FuTableBody-backup.d.ts +3 -0
  30. 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" };
@@ -1216,7 +1206,7 @@ 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/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"]]);
1220
1210
  const _hoisted_1$j = { class: "fu-filter-component" };
1221
1211
  const _hoisted_2$c = { class: "fu-filter-component__label" };
1222
1212
  const _hoisted_3$a = { class: "fu-filter-component__content" };
@@ -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/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"]]);
1360
1350
  const getCheckDate = (timestamp) => {
1361
1351
  if (!timestamp)
1362
1352
  return false;
@@ -1454,7 +1444,7 @@ 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/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"]]);
1458
1448
  const _hoisted_1$h = { class: "fu-filter-component" };
1459
1449
  const _hoisted_2$a = { class: "fu-filter-component__label" };
1460
1450
  const _hoisted_3$8 = { class: "fu-filter-component__content" };
@@ -1522,7 +1512,7 @@ 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/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"]]);
1526
1516
  const _hoisted_1$g = { class: "fu-filter-component" };
1527
1517
  const _hoisted_2$9 = { class: "fu-filter-component__label" };
1528
1518
  const _hoisted_3$7 = { class: "fu-filter-component__content" };
@@ -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/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"]]);
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/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"]]);
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/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"]]);
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/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"]]);
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/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"]]);
1913
1903
  FuReadWriteSwitch.install = (app) => {
1914
1904
  app.component(FuReadWriteSwitch.name, FuReadWriteSwitch);
1915
1905
  app.component(FuInputRwSwitch.name, FuInputRwSwitch);
@@ -1988,7 +1978,7 @@ 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/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"]]);
1992
1982
  const referenceKey = Symbol("ReferenceKey");
1993
1983
  const _hoisted_1$d = { class: "fu-complex-components" };
1994
1984
  const _hoisted_2$8 = { class: "fu-complex-components__body" };
@@ -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/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"]]);
2121
2111
  const __default__$h = { name: "FuSearchBarButton" };
2122
2112
  const _sfc_main$s = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$h), {
2123
2113
  props: {
@@ -2148,7 +2138,7 @@ 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/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"]]);
2152
2142
  const _hoisted_1$c = { class: "fu-search-conditions__item" };
2153
2143
  const _hoisted_2$7 = { key: 0 };
2154
2144
  const _hoisted_3$5 = { class: "condition-value" };
@@ -2197,7 +2187,7 @@ 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/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"]]);
2201
2191
  const _hoisted_1$b = { class: "fu-search-bar" };
2202
2192
  const _hoisted_2$6 = { class: "fu-search-bar__content" };
2203
2193
  const _hoisted_3$4 = { class: "fu-search-bar__buttons" };
@@ -2360,7 +2350,7 @@ 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/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"]]);
2364
2354
  const _hoisted_1$a = { class: "fu-complex-component" };
2365
2355
  const _hoisted_2$5 = { class: "fu-complex-component__label" };
2366
2356
  const _hoisted_3$3 = { class: "fu-complex-component__content" };
@@ -2456,7 +2446,7 @@ 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/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"]]);
2460
2450
  const _hoisted_1$9 = { class: "fu-complex-component" };
2461
2451
  const _hoisted_2$4 = { class: "fu-complex-component__label" };
2462
2452
  const _hoisted_3$2 = { class: "fu-complex-component__content" };
@@ -2513,7 +2503,7 @@ 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/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"]]);
2517
2507
  const _hoisted_1$8 = { class: "fu-complex-component" };
2518
2508
  const _hoisted_2$3 = { class: "fu-complex-component__label" };
2519
2509
  const _hoisted_3$1 = { class: "fu-complex-component__content" };
@@ -2581,7 +2571,7 @@ 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/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"]]);
2585
2575
  const _hoisted_1$7 = { class: "fu-complex-component" };
2586
2576
  const _hoisted_2$2 = { class: "fu-complex-component__label" };
2587
2577
  const _hoisted_3 = { class: "fu-complex-component__content" };
@@ -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/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"]]);
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/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"]]);
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/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"]]);
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/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"]]);
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/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"]]);
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/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"]]);
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/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"]]);
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/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"]]);
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/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"]]);
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/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"]]);
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/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"]]);
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/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"]]);
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/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"]]);
3941
3931
  FuSteps.install = (app) => {
3942
3932
  app.component(FuStep.name, FuStep);
3943
3933
  app.component(FuSteps.name, FuSteps);
@@ -4147,7 +4137,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
4147
4137
  };
4148
4138
  }
4149
4139
  }));
4150
- 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"]]);
4151
4141
  const tableColumnSelect = (localKey) => {
4152
4142
  const columnsKey = computed(() => {
4153
4143
  return localKey ? "FU-T-" + localKey : "";
@@ -4335,7 +4325,7 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
4335
4325
  };
4336
4326
  }
4337
4327
  });
4338
- 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"]]);
4339
4329
  const _hoisted_1$1 = { style: { "display": "inline-block" } };
4340
4330
  const _sfc_main$7 = /* @__PURE__ */ defineComponent({
4341
4331
  __name: "FuTableColumnSelectDialog",
@@ -4481,7 +4471,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
4481
4471
  };
4482
4472
  }
4483
4473
  });
4484
- 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"]]);
4485
4475
  const _sfc_main$6 = defineComponent({
4486
4476
  name: "FuTableColumnSelect",
4487
4477
  props: ["type"],
@@ -4496,7 +4486,7 @@ const _sfc_main$6 = defineComponent({
4496
4486
  };
4497
4487
  }
4498
4488
  });
4499
- 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"]]);
4500
4490
  const __default__$5 = { name: "FuTablePagination" };
4501
4491
  const _sfc_main$5 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$5), {
4502
4492
  props: {
@@ -4545,7 +4535,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
4545
4535
  };
4546
4536
  }
4547
4537
  }));
4548
- 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"]]);
4549
4539
  const __default__$4 = { name: "FuTableButton" };
4550
4540
  const _sfc_main$4 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$4), {
4551
4541
  props: {
@@ -4574,7 +4564,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
4574
4564
  };
4575
4565
  }
4576
4566
  }));
4577
- 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"]]);
4578
4568
  const __default__$3 = { name: "FuTableMoreButton" };
4579
4569
  const _sfc_main$3 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$3), {
4580
4570
  props: {
@@ -4660,7 +4650,7 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
4660
4650
  };
4661
4651
  }
4662
4652
  }));
4663
- 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"]]);
4664
4654
  const __default__$2 = { name: "FuTableOperations" };
4665
4655
  const _sfc_main$2 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$2), {
4666
4656
  props: {
@@ -4767,7 +4757,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
4767
4757
  };
4768
4758
  }
4769
4759
  }));
4770
- 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"]]);
4771
4761
  const _hoisted_1 = { class: "fu-dropdown-link" };
4772
4762
  const _hoisted_2 = {
4773
4763
  key: 0,
@@ -4901,7 +4891,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
4901
4891
  };
4902
4892
  }
4903
4893
  }));
4904
- 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"]]);
4905
4895
  FuTable.install = (app) => {
4906
4896
  app.component(FuTable.name, FuTable);
4907
4897
  app.component(FuTablePagination.name, FuTablePagination);
@@ -5058,7 +5048,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({
5058
5048
  };
5059
5049
  }
5060
5050
  }));
5061
- 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"]]);
5062
5052
  FuTabs.install = (app) => {
5063
5053
  app.component(FuTabs.name, FuTabs);
5064
5054
  };
@@ -5067,7 +5057,7 @@ var __glob_2_8 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProp
5067
5057
  "default": FuTabs
5068
5058
  }, Symbol.toStringTag, { value: "Module" }));
5069
5059
  const name = "fit2cloud-ui-plus";
5070
- const version = "1.1.16";
5060
+ const version = "1.1.17-beta.0";
5071
5061
  const main = "./lib/fit2cloud-ui-plus.es.js";
5072
5062
  const files = [
5073
5063
  "lib",