fit2cloud-ui-plus 1.2.0-beta.0 → 1.2.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/README.md +1 -1
- package/lib/fit2cloud-ui-plus.es.js +63 -56
- package/lib/fit2cloud-ui-plus.umd.js +1 -1
- package/package.json +2 -1
- package/src/components/table/table-column-select/FuTableColumnSelectPopover.vue +0 -7
- package/src/hooks/use-global-config/index.ts +1 -0
- package/src/hooks/use-locale/index.ts +23 -13
- package/src/index.ts +2 -1
- package/src/locale/lang/ja.ts +2 -2
- package/src/locale/lang/pt-br.ts +1 -1
- package/src/locale/lang/ru.ts +1 -1
- package/src/locale/lang/zh-cn.ts +1 -1
- package/src/locale/lang/zh-tw.ts +1 -1
- package/src/styles/components/filter-bar.scss +4 -2
- package/types/examples/locale/index.d.ts +416 -0
- package/types/src/hooks/use-global-config/index.d.ts +1 -0
- package/types/src/hooks/use-locale/index.d.ts +1 -0
- package/types/examples/pages/search/attributes.d.ts +0 -57
- package/types/examples/pages/search/demo/BaseSearchbar.vue.d.ts +0 -66
- package/types/examples/pages/search/demo/ComplexComponentsDemo.vue.d.ts +0 -60
- package/types/examples/pages/search/demo/ComplexSearchDemo.vue.d.ts +0 -84
- package/types/examples/pages/search/demo/CustomComponentsDemo.vue.d.ts +0 -50
- package/types/examples/pages/search/demo/EchoConditionsDemo.vue.d.ts +0 -52
- package/types/examples/pages/search/demo/QuickSearchDemo.vue.d.ts +0 -18
- package/types/examples/pages/search/demo/SearchBarButtonDemo.vue.d.ts +0 -54
- package/types/examples/pages/search/index.vue.d.ts +0 -150
- package/types/src/components/ steps/FuHorizontalNavigation.vue.d.ts +0 -13
- package/types/src/components/ steps/FuHorizontalSteps.vue.d.ts +0 -6
- package/types/src/components/ steps/FuStep.vue.d.ts +0 -2
- package/types/src/components/ steps/FuStepButton.vue.d.ts +0 -2
- package/types/src/components/ steps/FuSteps.vue.d.ts +0 -12
- package/types/src/components/ steps/FuStepsFooter.d.ts +0 -6
- package/types/src/components/ steps/FuVerticalNavigation.vue.d.ts +0 -14
- package/types/src/components/ steps/FuVerticalSteps.vue.d.ts +0 -6
- package/types/src/components/ steps/Stepper.d.ts +0 -39
- package/types/src/components/ steps/index.d.ts +0 -2
- package/types/src/components/ steps/types.d.ts +0 -27
- package/types/src/components/filter-bar/FuSearchInput.vue.d.ts +0 -17
- package/types/src/components/search-bar/complex-components/index.d.ts +0 -0
- package/types/src/components/search-bar/complex-components/mixins.d.ts +0 -6
- package/types/src/components/table/FuTableBody-backup.d.ts +0 -3
- package/types/src/components/table/types.d.ts +0 -2
- package/types/src/tools/utils.d.ts +0 -2
package/README.md
CHANGED
|
@@ -56,7 +56,7 @@ app.mount('#app')
|
|
|
56
56
|
|
|
57
57
|
### License & Copyright
|
|
58
58
|
|
|
59
|
-
Copyright (c) 2014-
|
|
59
|
+
Copyright (c) 2014-2025 FIT2CLOUD 飞致云, All rights reserved.
|
|
60
60
|
|
|
61
61
|
Licensed under The GNU General Public License version 3 (GPLv3) (the "License"); you may not use this file except in
|
|
62
62
|
compliance with the License. You may obtain a copy of the License at
|
|
@@ -464,7 +464,7 @@ var Chinese = {
|
|
|
464
464
|
table: {
|
|
465
465
|
ok: "\u786E\u5B9A",
|
|
466
466
|
cancel: "\u53D6\u6D88",
|
|
467
|
-
custom_table_fields: "\
|
|
467
|
+
custom_table_fields: "\u9009\u62E9\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",
|
|
470
470
|
more: "\u66F4\u591A"
|
|
@@ -478,10 +478,15 @@ var Chinese = {
|
|
|
478
478
|
}
|
|
479
479
|
};
|
|
480
480
|
const buildTranslator = (locale) => (path, option) => translate(path, option, unref(locale));
|
|
481
|
-
const translate = (path, option, locale) =>
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
481
|
+
const translate = (path, option, locale) => {
|
|
482
|
+
if (!i18nHandler) {
|
|
483
|
+
return get(locale, path, path).replace(/\{(\w+)\}/g, (_, key) => {
|
|
484
|
+
var _a2;
|
|
485
|
+
return `${(_a2 = option == null ? void 0 : option[key]) != null ? _a2 : `{${key}}`}`;
|
|
486
|
+
});
|
|
487
|
+
}
|
|
488
|
+
return i18nHandler(path);
|
|
489
|
+
};
|
|
485
490
|
const buildLocaleContext = (locale) => {
|
|
486
491
|
const lang = computed(() => unref(locale).name);
|
|
487
492
|
const localeRef = isRef(locale) ? locale : ref(locale);
|
|
@@ -495,6 +500,10 @@ const useLocale = () => {
|
|
|
495
500
|
const locale = useGlobalConfig("locale");
|
|
496
501
|
return buildLocaleContext(computed(() => locale.value || Chinese));
|
|
497
502
|
};
|
|
503
|
+
let i18nHandler;
|
|
504
|
+
const i18n = (fn) => {
|
|
505
|
+
i18nHandler = fn || i18nHandler;
|
|
506
|
+
};
|
|
498
507
|
const useProp = (name2) => {
|
|
499
508
|
const vm = getCurrentInstance();
|
|
500
509
|
return computed(() => {
|
|
@@ -560,7 +569,7 @@ const _sfc_main$J = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
560
569
|
};
|
|
561
570
|
}
|
|
562
571
|
}));
|
|
563
|
-
var FuFilterInput = /* @__PURE__ */ _export_sfc(_sfc_main$J, [["__file", "/Users/
|
|
572
|
+
var FuFilterInput = /* @__PURE__ */ _export_sfc(_sfc_main$J, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/filter-bar/FuFilterInput.vue"]]);
|
|
564
573
|
const _sfc_main$I = /* @__PURE__ */ defineComponent({
|
|
565
574
|
__name: "FuFilterConditionText",
|
|
566
575
|
props: {
|
|
@@ -604,7 +613,7 @@ const _sfc_main$I = /* @__PURE__ */ defineComponent({
|
|
|
604
613
|
};
|
|
605
614
|
}
|
|
606
615
|
});
|
|
607
|
-
var FuFilterConditionText = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["__file", "/Users/
|
|
616
|
+
var FuFilterConditionText = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/filter-bar/FuFilterConditionText.vue"]]);
|
|
608
617
|
const _hoisted_1$o = { class: "fu-filter-conditions" };
|
|
609
618
|
const _sfc_main$H = /* @__PURE__ */ defineComponent({
|
|
610
619
|
__name: "FuFilterConditions",
|
|
@@ -644,7 +653,7 @@ const _sfc_main$H = /* @__PURE__ */ defineComponent({
|
|
|
644
653
|
};
|
|
645
654
|
}
|
|
646
655
|
});
|
|
647
|
-
var FuFilterConditions = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["__file", "/Users/
|
|
656
|
+
var FuFilterConditions = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/filter-bar/FuFilterConditions.vue"]]);
|
|
648
657
|
const selectKey = Symbol("SelectKey");
|
|
649
658
|
const referenceKey$1 = Symbol("ReferenceKey");
|
|
650
659
|
const _hoisted_1$n = { class: "fu-filter__result" };
|
|
@@ -882,7 +891,7 @@ const _sfc_main$G = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
882
891
|
};
|
|
883
892
|
}
|
|
884
893
|
}));
|
|
885
|
-
var FuFilter = /* @__PURE__ */ _export_sfc(_sfc_main$G, [["__file", "/Users/
|
|
894
|
+
var FuFilter = /* @__PURE__ */ _export_sfc(_sfc_main$G, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/filter-bar/FuFilter.vue"]]);
|
|
886
895
|
const _hoisted_1$m = { class: "fu-filter-bar" };
|
|
887
896
|
const _hoisted_2$d = { class: "fu-filter-bar__top" };
|
|
888
897
|
const _hoisted_3$c = { class: "top_left" };
|
|
@@ -1014,7 +1023,7 @@ const _sfc_main$F = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1014
1023
|
};
|
|
1015
1024
|
}
|
|
1016
1025
|
}));
|
|
1017
|
-
var FuFilterBar = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["__file", "/Users/
|
|
1026
|
+
var FuFilterBar = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/filter-bar/FuFilterBar.vue"]]);
|
|
1018
1027
|
const _hoisted_1$l = ["onClick"];
|
|
1019
1028
|
const _sfc_main$E = /* @__PURE__ */ defineComponent({
|
|
1020
1029
|
__name: "FuFilterOption",
|
|
@@ -1052,7 +1061,7 @@ const _sfc_main$E = /* @__PURE__ */ defineComponent({
|
|
|
1052
1061
|
};
|
|
1053
1062
|
}
|
|
1054
1063
|
});
|
|
1055
|
-
var FuFilterOption = /* @__PURE__ */ _export_sfc(_sfc_main$E, [["__file", "/Users/
|
|
1064
|
+
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"]]);
|
|
1056
1065
|
const _hoisted_1$k = { class: "fu-filter-component" };
|
|
1057
1066
|
const _hoisted_2$c = { class: "fu-filter-component__label" };
|
|
1058
1067
|
const _hoisted_3$b = { class: "fu-filter-component__content" };
|
|
@@ -1206,7 +1215,7 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1206
1215
|
};
|
|
1207
1216
|
}
|
|
1208
1217
|
}));
|
|
1209
|
-
var FuFilterSelect = /* @__PURE__ */ _export_sfc(_sfc_main$D, [["__file", "/Users/
|
|
1218
|
+
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"]]);
|
|
1210
1219
|
const _hoisted_1$j = { class: "fu-filter-component" };
|
|
1211
1220
|
const _hoisted_2$b = { class: "fu-filter-component__label" };
|
|
1212
1221
|
const _hoisted_3$a = { class: "fu-filter-component__content" };
|
|
@@ -1346,7 +1355,7 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1346
1355
|
};
|
|
1347
1356
|
}
|
|
1348
1357
|
}));
|
|
1349
|
-
var FuFilterNormalSelect = /* @__PURE__ */ _export_sfc(_sfc_main$C, [["__file", "/Users/
|
|
1358
|
+
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"]]);
|
|
1350
1359
|
const getCheckDate = (timestamp) => {
|
|
1351
1360
|
if (!timestamp)
|
|
1352
1361
|
return false;
|
|
@@ -1444,7 +1453,7 @@ const _sfc_main$B = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1444
1453
|
};
|
|
1445
1454
|
}
|
|
1446
1455
|
}));
|
|
1447
|
-
var FuFilterDate = /* @__PURE__ */ _export_sfc(_sfc_main$B, [["__file", "/Users/
|
|
1456
|
+
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"]]);
|
|
1448
1457
|
const _hoisted_1$h = { class: "fu-filter-component" };
|
|
1449
1458
|
const _hoisted_2$9 = { class: "fu-filter-component__label" };
|
|
1450
1459
|
const _hoisted_3$8 = { class: "fu-filter-component__content" };
|
|
@@ -1512,7 +1521,7 @@ const _sfc_main$A = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1512
1521
|
};
|
|
1513
1522
|
}
|
|
1514
1523
|
}));
|
|
1515
|
-
var FuFilterDateTime = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["__file", "/Users/
|
|
1524
|
+
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"]]);
|
|
1516
1525
|
const _hoisted_1$g = { class: "fu-filter-component" };
|
|
1517
1526
|
const _hoisted_2$8 = { class: "fu-filter-component__label" };
|
|
1518
1527
|
const _hoisted_3$7 = { class: "fu-filter-component__content" };
|
|
@@ -1566,7 +1575,7 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1566
1575
|
};
|
|
1567
1576
|
}
|
|
1568
1577
|
}));
|
|
1569
|
-
var FuFilterInputText = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["__file", "/Users/
|
|
1578
|
+
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"]]);
|
|
1570
1579
|
FuFilterBar.install = (app) => {
|
|
1571
1580
|
app.component(FuFilterBar.name, FuFilterBar);
|
|
1572
1581
|
app.component(FuFilter.name, FuFilter);
|
|
@@ -1646,7 +1655,7 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1646
1655
|
};
|
|
1647
1656
|
}
|
|
1648
1657
|
}));
|
|
1649
|
-
var FuIconButton = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__file", "/Users/
|
|
1658
|
+
var FuIconButton = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/icon-button/FuIconButton.vue"]]);
|
|
1650
1659
|
FuIconButton.install = (app) => {
|
|
1651
1660
|
app.component(FuIconButton.name, FuIconButton);
|
|
1652
1661
|
};
|
|
@@ -1762,7 +1771,7 @@ const _sfc_main$x = defineComponent({
|
|
|
1762
1771
|
};
|
|
1763
1772
|
}
|
|
1764
1773
|
});
|
|
1765
|
-
var FuReadWriteSwitch = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__file", "/Users/
|
|
1774
|
+
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"]]);
|
|
1766
1775
|
const __default__$l = { name: "FuInputRwSwitch" };
|
|
1767
1776
|
const _sfc_main$w = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$l), {
|
|
1768
1777
|
props: {
|
|
@@ -1815,7 +1824,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1815
1824
|
};
|
|
1816
1825
|
}
|
|
1817
1826
|
}));
|
|
1818
|
-
var FuInputRwSwitch = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__file", "/Users/
|
|
1827
|
+
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"]]);
|
|
1819
1828
|
const __default__$k = { name: "FuSelectRwSwitch" };
|
|
1820
1829
|
const _sfc_main$v = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$k), {
|
|
1821
1830
|
props: {
|
|
@@ -1899,7 +1908,7 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1899
1908
|
};
|
|
1900
1909
|
}
|
|
1901
1910
|
}));
|
|
1902
|
-
var FuSelectRwSwitch = /* @__PURE__ */ _export_sfc(_sfc_main$v, [["__file", "/Users/
|
|
1911
|
+
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"]]);
|
|
1903
1912
|
FuReadWriteSwitch.install = (app) => {
|
|
1904
1913
|
app.component(FuReadWriteSwitch.name, FuReadWriteSwitch);
|
|
1905
1914
|
app.component(FuInputRwSwitch.name, FuInputRwSwitch);
|
|
@@ -1978,7 +1987,7 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
1978
1987
|
};
|
|
1979
1988
|
}
|
|
1980
1989
|
}));
|
|
1981
|
-
var FuQuickSearch = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__file", "/Users/
|
|
1990
|
+
var FuQuickSearch = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/search-bar/FuQuickSearch.vue"]]);
|
|
1982
1991
|
const referenceKey = Symbol("ReferenceKey");
|
|
1983
1992
|
const _hoisted_1$d = { class: "fu-complex-components" };
|
|
1984
1993
|
const _hoisted_2$7 = { class: "fu-complex-components__body" };
|
|
@@ -2107,7 +2116,7 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2107
2116
|
};
|
|
2108
2117
|
}
|
|
2109
2118
|
}));
|
|
2110
|
-
var FuComplexSearch = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__file", "/Users/
|
|
2119
|
+
var FuComplexSearch = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/search-bar/FuComplexSearch.vue"]]);
|
|
2111
2120
|
const __default__$h = { name: "FuSearchBarButton" };
|
|
2112
2121
|
const _sfc_main$s = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$h), {
|
|
2113
2122
|
props: {
|
|
@@ -2138,7 +2147,7 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2138
2147
|
};
|
|
2139
2148
|
}
|
|
2140
2149
|
}));
|
|
2141
|
-
var FuSearchBarButton = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__file", "/Users/
|
|
2150
|
+
var FuSearchBarButton = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/search-bar/FuSearchBarButton.vue"]]);
|
|
2142
2151
|
const _hoisted_1$c = { class: "fu-search-conditions__item" };
|
|
2143
2152
|
const _hoisted_2$6 = { key: 0 };
|
|
2144
2153
|
const _hoisted_3$5 = { class: "condition-value" };
|
|
@@ -2187,7 +2196,7 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2187
2196
|
};
|
|
2188
2197
|
}
|
|
2189
2198
|
}));
|
|
2190
|
-
var FuSearchConditions = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__file", "/Users/
|
|
2199
|
+
var FuSearchConditions = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/search-bar/FuSearchContions.vue"]]);
|
|
2191
2200
|
const _hoisted_1$b = { class: "fu-search-bar" };
|
|
2192
2201
|
const _hoisted_2$5 = { class: "fu-search-bar__content" };
|
|
2193
2202
|
const _hoisted_3$4 = { class: "fu-search-bar__buttons" };
|
|
@@ -2350,7 +2359,7 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2350
2359
|
};
|
|
2351
2360
|
}
|
|
2352
2361
|
}));
|
|
2353
|
-
var FuSearchBar = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__file", "/Users/
|
|
2362
|
+
var FuSearchBar = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/search-bar/FuSearchBar.vue"]]);
|
|
2354
2363
|
const _hoisted_1$a = { class: "fu-complex-component" };
|
|
2355
2364
|
const _hoisted_2$4 = { class: "fu-complex-component__label" };
|
|
2356
2365
|
const _hoisted_3$3 = { class: "fu-complex-component__content" };
|
|
@@ -2446,7 +2455,7 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2446
2455
|
};
|
|
2447
2456
|
}
|
|
2448
2457
|
}));
|
|
2449
|
-
var FuComplexSelect = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__file", "/Users/
|
|
2458
|
+
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"]]);
|
|
2450
2459
|
const _hoisted_1$9 = { class: "fu-complex-component" };
|
|
2451
2460
|
const _hoisted_2$3 = { class: "fu-complex-component__label" };
|
|
2452
2461
|
const _hoisted_3$2 = { class: "fu-complex-component__content" };
|
|
@@ -2503,7 +2512,7 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2503
2512
|
};
|
|
2504
2513
|
}
|
|
2505
2514
|
}));
|
|
2506
|
-
var FuComplexInput = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__file", "/Users/
|
|
2515
|
+
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"]]);
|
|
2507
2516
|
const _hoisted_1$8 = { class: "fu-complex-component" };
|
|
2508
2517
|
const _hoisted_2$2 = { class: "fu-complex-component__label" };
|
|
2509
2518
|
const _hoisted_3$1 = { class: "fu-complex-component__content" };
|
|
@@ -2571,7 +2580,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2571
2580
|
};
|
|
2572
2581
|
}
|
|
2573
2582
|
}));
|
|
2574
|
-
var FuComplexDate = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__file", "/Users/
|
|
2583
|
+
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"]]);
|
|
2575
2584
|
const _hoisted_1$7 = { class: "fu-complex-component" };
|
|
2576
2585
|
const _hoisted_2$1 = { class: "fu-complex-component__label" };
|
|
2577
2586
|
const _hoisted_3 = { class: "fu-complex-component__content" };
|
|
@@ -2639,7 +2648,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2639
2648
|
};
|
|
2640
2649
|
}
|
|
2641
2650
|
}));
|
|
2642
|
-
var FuComplexDateTime = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__file", "/Users/
|
|
2651
|
+
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"]]);
|
|
2643
2652
|
FuSearchBar.install = (app) => {
|
|
2644
2653
|
app.component(FuQuickSearch.name, FuQuickSearch);
|
|
2645
2654
|
app.component(FuSearchBar.name, FuSearchBar);
|
|
@@ -2786,7 +2795,7 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
|
2786
2795
|
};
|
|
2787
2796
|
}
|
|
2788
2797
|
});
|
|
2789
|
-
var FuSpeedDialButton = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__file", "/Users/
|
|
2798
|
+
var FuSpeedDialButton = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/speed-dial/FuSpeedDialButton.vue"]]);
|
|
2790
2799
|
const SpeedDialKey = Symbol("SpeedDialKey");
|
|
2791
2800
|
const _hoisted_1$6 = { class: "fu-speed-dial-action-button" };
|
|
2792
2801
|
const _sfc_main$k = /* @__PURE__ */ defineComponent({
|
|
@@ -2878,7 +2887,7 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
|
|
|
2878
2887
|
};
|
|
2879
2888
|
}
|
|
2880
2889
|
});
|
|
2881
|
-
var FuSpeedDialActionButton = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__file", "/Users/
|
|
2890
|
+
var FuSpeedDialActionButton = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/speed-dial/FuSpeedDialActionButton.vue"]]);
|
|
2882
2891
|
const __default__$a = { name: "FuSpeedDialItem" };
|
|
2883
2892
|
const _sfc_main$j = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$a), {
|
|
2884
2893
|
props: {
|
|
@@ -2969,7 +2978,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
2969
2978
|
};
|
|
2970
2979
|
}
|
|
2971
2980
|
}));
|
|
2972
|
-
var FuSpeedDialItem = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__file", "/Users/
|
|
2981
|
+
var FuSpeedDialItem = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/speed-dial/FuSpeedDialItem.vue"]]);
|
|
2973
2982
|
const _hoisted_1$5 = { class: "fu-speed-dial__content" };
|
|
2974
2983
|
const __default__$9 = { name: "FuSpeedDial" };
|
|
2975
2984
|
const _sfc_main$i = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$9), {
|
|
@@ -3240,7 +3249,7 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
3240
3249
|
};
|
|
3241
3250
|
}
|
|
3242
3251
|
}));
|
|
3243
|
-
var FuSpeedDial = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__file", "/Users/
|
|
3252
|
+
var FuSpeedDial = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/speed-dial/FuSpeedDial.vue"]]);
|
|
3244
3253
|
FuSpeedDial.install = (app) => {
|
|
3245
3254
|
app.component(FuSpeedDial.name, FuSpeedDial);
|
|
3246
3255
|
app.component(FuSpeedDialItem.name, FuSpeedDialItem);
|
|
@@ -3456,7 +3465,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
3456
3465
|
};
|
|
3457
3466
|
}
|
|
3458
3467
|
}));
|
|
3459
|
-
var FuSplitPane = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__file", "/Users/
|
|
3468
|
+
var FuSplitPane = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/split-pane/FuSplitPane.vue"]]);
|
|
3460
3469
|
FuSplitPane.install = (app) => {
|
|
3461
3470
|
app.component(FuSplitPane.name, FuSplitPane);
|
|
3462
3471
|
};
|
|
@@ -3497,7 +3506,7 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
|
3497
3506
|
};
|
|
3498
3507
|
}
|
|
3499
3508
|
});
|
|
3500
|
-
var FuHorizontalNavigation = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__file", "/Users/
|
|
3509
|
+
var FuHorizontalNavigation = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/steps/FuHorizontalNavigation.vue"]]);
|
|
3501
3510
|
const _sfc_main$f = {};
|
|
3502
3511
|
function _sfc_render(_ctx, _cache) {
|
|
3503
3512
|
const _component_el_button = resolveComponent("el-button");
|
|
@@ -3508,7 +3517,7 @@ function _sfc_render(_ctx, _cache) {
|
|
|
3508
3517
|
_: 3
|
|
3509
3518
|
}, 16);
|
|
3510
3519
|
}
|
|
3511
|
-
var FuStepButton = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["render", _sfc_render], ["__file", "/Users/
|
|
3520
|
+
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"]]);
|
|
3512
3521
|
var FuStepsFooter = defineComponent({
|
|
3513
3522
|
name: "FuStepsFooter",
|
|
3514
3523
|
components: {
|
|
@@ -3749,7 +3758,7 @@ const _sfc_main$e = defineComponent({
|
|
|
3749
3758
|
};
|
|
3750
3759
|
}
|
|
3751
3760
|
});
|
|
3752
|
-
var FuHorizontalSteps = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["__file", "/Users/
|
|
3761
|
+
var FuHorizontalSteps = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/steps/FuHorizontalSteps.vue"]]);
|
|
3753
3762
|
const _sfc_main$d = /* @__PURE__ */ defineComponent({
|
|
3754
3763
|
__name: "FuVerticalNavigation",
|
|
3755
3764
|
props: {
|
|
@@ -3807,7 +3816,7 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
|
|
|
3807
3816
|
};
|
|
3808
3817
|
}
|
|
3809
3818
|
});
|
|
3810
|
-
var FuVerticalNavigation = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["__file", "/Users/
|
|
3819
|
+
var FuVerticalNavigation = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/steps/FuVerticalNavigation.vue"]]);
|
|
3811
3820
|
const _sfc_main$c = defineComponent({
|
|
3812
3821
|
name: "FuVerticalSteps",
|
|
3813
3822
|
components: { FuVerticalNavigation, FuStepsFooter },
|
|
@@ -3871,7 +3880,7 @@ const _sfc_main$c = defineComponent({
|
|
|
3871
3880
|
};
|
|
3872
3881
|
}
|
|
3873
3882
|
});
|
|
3874
|
-
var FuVerticalSteps = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__file", "/Users/
|
|
3883
|
+
var FuVerticalSteps = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/steps/FuVerticalSteps.vue"]]);
|
|
3875
3884
|
const _sfc_main$b = defineComponent({
|
|
3876
3885
|
name: "FuSteps",
|
|
3877
3886
|
components: {
|
|
@@ -3910,7 +3919,7 @@ const _sfc_main$b = defineComponent({
|
|
|
3910
3919
|
}
|
|
3911
3920
|
}
|
|
3912
3921
|
});
|
|
3913
|
-
var FuSteps = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__file", "/Users/
|
|
3922
|
+
var FuSteps = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/steps/FuSteps.vue"]]);
|
|
3914
3923
|
const _hoisted_1$3 = { class: "fu-step" };
|
|
3915
3924
|
const __default__$7 = { name: "FuStep" };
|
|
3916
3925
|
const _sfc_main$a = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$7), {
|
|
@@ -3927,7 +3936,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
3927
3936
|
};
|
|
3928
3937
|
}
|
|
3929
3938
|
}));
|
|
3930
|
-
var FuStep = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__file", "/Users/
|
|
3939
|
+
var FuStep = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/steps/FuStep.vue"]]);
|
|
3931
3940
|
FuSteps.install = (app) => {
|
|
3932
3941
|
app.component(FuStep.name, FuStep);
|
|
3933
3942
|
app.component(FuSteps.name, FuSteps);
|
|
@@ -4135,7 +4144,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
4135
4144
|
};
|
|
4136
4145
|
}
|
|
4137
4146
|
}));
|
|
4138
|
-
var FuTable = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__file", "/Users/
|
|
4147
|
+
var FuTable = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/table/FuTable.vue"]]);
|
|
4139
4148
|
const tableColumnSelect = () => {
|
|
4140
4149
|
function dragstart(event, index) {
|
|
4141
4150
|
if (event.dataTransfer) {
|
|
@@ -4237,9 +4246,6 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
4237
4246
|
var _a2;
|
|
4238
4247
|
return ((_a2 = props.columns) == null ? void 0 : _a2.length) > 0 && !isFixAll.value;
|
|
4239
4248
|
});
|
|
4240
|
-
const header = computed(() => {
|
|
4241
|
-
return props.title || t2("fu.table.custom_table_fields");
|
|
4242
|
-
});
|
|
4243
4249
|
return (_ctx, _cache) => {
|
|
4244
4250
|
const _component_el_checkbox = resolveComponent("el-checkbox");
|
|
4245
4251
|
const _component_el_button = resolveComponent("el-button");
|
|
@@ -4263,7 +4269,6 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
4263
4269
|
}, 1032, ["icon"])
|
|
4264
4270
|
]),
|
|
4265
4271
|
default: withCtx(() => [
|
|
4266
|
-
createElementVNode("h3", null, toDisplayString(unref(header)), 1),
|
|
4267
4272
|
createElementVNode("div", _hoisted_1$2, [
|
|
4268
4273
|
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.columns, (c, i) => {
|
|
4269
4274
|
return openBlock(), createElementBlock("div", {
|
|
@@ -4299,7 +4304,7 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
4299
4304
|
};
|
|
4300
4305
|
}
|
|
4301
4306
|
});
|
|
4302
|
-
var FuTableColumnSelectPopover = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__file", "/Users/
|
|
4307
|
+
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"]]);
|
|
4303
4308
|
const _hoisted_1$1 = { style: { "display": "inline-block" } };
|
|
4304
4309
|
const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
4305
4310
|
__name: "FuTableColumnSelectDialog",
|
|
@@ -4438,7 +4443,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
|
4438
4443
|
};
|
|
4439
4444
|
}
|
|
4440
4445
|
});
|
|
4441
|
-
var FuTableColumnSelectDialog = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__file", "/Users/
|
|
4446
|
+
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"]]);
|
|
4442
4447
|
const _sfc_main$6 = defineComponent({
|
|
4443
4448
|
name: "FuTableColumnSelect",
|
|
4444
4449
|
props: ["type"],
|
|
@@ -4453,7 +4458,7 @@ const _sfc_main$6 = defineComponent({
|
|
|
4453
4458
|
};
|
|
4454
4459
|
}
|
|
4455
4460
|
});
|
|
4456
|
-
var FuTableColumnSelect = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["__file", "/Users/
|
|
4461
|
+
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"]]);
|
|
4457
4462
|
const __default__$5 = { name: "FuTablePagination" };
|
|
4458
4463
|
const _sfc_main$5 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$5), {
|
|
4459
4464
|
props: {
|
|
@@ -4502,7 +4507,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
4502
4507
|
};
|
|
4503
4508
|
}
|
|
4504
4509
|
}));
|
|
4505
|
-
var FuTablePagination = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__file", "/Users/
|
|
4510
|
+
var FuTablePagination = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/table/FuTablePagination.vue"]]);
|
|
4506
4511
|
const __default__$4 = { name: "FuTableButton" };
|
|
4507
4512
|
const _sfc_main$4 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$4), {
|
|
4508
4513
|
props: {
|
|
@@ -4531,7 +4536,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
4531
4536
|
};
|
|
4532
4537
|
}
|
|
4533
4538
|
}));
|
|
4534
|
-
var FuTableButton = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__file", "/Users/
|
|
4539
|
+
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"]]);
|
|
4535
4540
|
const __default__$3 = { name: "FuTableMoreButton" };
|
|
4536
4541
|
const _sfc_main$3 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$3), {
|
|
4537
4542
|
props: {
|
|
@@ -4617,7 +4622,7 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
4617
4622
|
};
|
|
4618
4623
|
}
|
|
4619
4624
|
}));
|
|
4620
|
-
var FuTableMoreButton = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["__file", "/Users/
|
|
4625
|
+
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"]]);
|
|
4621
4626
|
const __default__$2 = { name: "FuTableOperations" };
|
|
4622
4627
|
const _sfc_main$2 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, __default__$2), {
|
|
4623
4628
|
props: {
|
|
@@ -4724,7 +4729,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
4724
4729
|
};
|
|
4725
4730
|
}
|
|
4726
4731
|
}));
|
|
4727
|
-
var FuTableOperations = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__file", "/Users/
|
|
4732
|
+
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"]]);
|
|
4728
4733
|
const _hoisted_1 = { class: "fu-dropdown-link" };
|
|
4729
4734
|
const _hoisted_2 = {
|
|
4730
4735
|
key: 0,
|
|
@@ -4858,7 +4863,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues
|
|
|
4858
4863
|
};
|
|
4859
4864
|
}
|
|
4860
4865
|
}));
|
|
4861
|
-
var FuTableColumnDropdown = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__file", "/Users/
|
|
4866
|
+
var FuTableColumnDropdown = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/table/FuTableColumnDropdown.vue"]]);
|
|
4862
4867
|
FuTable.install = (app) => {
|
|
4863
4868
|
app.component(FuTable.name, FuTable);
|
|
4864
4869
|
app.component(FuTablePagination.name, FuTablePagination);
|
|
@@ -5015,7 +5020,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({
|
|
|
5015
5020
|
};
|
|
5016
5021
|
}
|
|
5017
5022
|
}));
|
|
5018
|
-
var FuTabs = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "/Users/
|
|
5023
|
+
var FuTabs = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "/Users/runner/work/fit2cloud-ui-plus/fit2cloud-ui-plus/src/components/tabs/FuTabs.vue"]]);
|
|
5019
5024
|
FuTabs.install = (app) => {
|
|
5020
5025
|
app.component(FuTabs.name, FuTabs);
|
|
5021
5026
|
};
|
|
@@ -5024,7 +5029,7 @@ var __glob_2_8 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProp
|
|
|
5024
5029
|
"default": FuTabs
|
|
5025
5030
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
5026
5031
|
const name = "fit2cloud-ui-plus";
|
|
5027
|
-
const version = "1.2.
|
|
5032
|
+
const version = "1.2.1";
|
|
5028
5033
|
const main = "./lib/fit2cloud-ui-plus.es.js";
|
|
5029
5034
|
const files = [
|
|
5030
5035
|
"lib",
|
|
@@ -5055,6 +5060,7 @@ const dependencies = {
|
|
|
5055
5060
|
"vite-plugin-markdown": "^2.0.2",
|
|
5056
5061
|
vue: "^3.2.37",
|
|
5057
5062
|
"vue-clipboard3": "^2.0.0",
|
|
5063
|
+
"vue-i18n": "^10.0.5",
|
|
5058
5064
|
"vue-router": "^4.0.14"
|
|
5059
5065
|
};
|
|
5060
5066
|
const devDependencies = {
|
|
@@ -5088,6 +5094,7 @@ const install = (app, config) => {
|
|
|
5088
5094
|
let component = components[key].default;
|
|
5089
5095
|
app.use(component);
|
|
5090
5096
|
});
|
|
5097
|
+
i18n(config == null ? void 0 : config.i18n);
|
|
5091
5098
|
provideGlobalConfig(config);
|
|
5092
5099
|
};
|
|
5093
5100
|
const plugin = {
|