@dt-frames/ui 2.0.9 → 2.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/components/curd/index.js +69 -77
- package/es/components/curd/index.less +2 -0
- package/es/components/curd/src/components/Curd.d.ts +16 -8
- package/es/components/curd/src/hooks/useCurd.d.ts +1 -1
- package/es/components/curd/src/props.d.ts +0 -1
- package/es/components/form/index.js +50 -21
- package/es/components/form/index.less +18 -0
- package/es/components/form/src/components/FormButtons.d.ts +13 -3
- package/es/components/form/src/components/FormItem.d.ts +0 -1
- package/es/components/form/src/hooks/useLabelWidth.d.ts +2 -18
- package/es/components/form/src/props.d.ts +3 -4
- package/es/components/form/src/types/form.type.d.ts +3 -3
- package/es/components/form/src/types/items.type.d.ts +12 -5
- package/es/components/modal/index.js +22 -2
- package/es/components/modal/src/components/Modal.d.ts +1 -1
- package/es/components/modal/src/components/ModalFooter.d.ts +10 -0
- package/es/components/modal/src/index.d.ts +14 -4
- package/es/components/modal/src/props.d.ts +2 -1
- package/es/components/table/index.js +33 -54
- package/es/components/table/index.less +3 -3
- package/es/components/table/src/components/tableSetting/DownloadCtrl.d.ts +15 -5
- package/es/theme/index.js +144 -88
- package/es/theme/index.less +1 -0
- package/es/theme/src/components/header/components/size.d.ts +5 -5
- package/es/theme/src/components/header/index.d.ts +5 -5
- package/es/theme/src/components/header/multiple-header.d.ts +5 -5
- package/es/theme/src/index.d.ts +10 -10
- package/es/theme/transition.less +105 -0
- package/package.json +1 -1
package/es/theme/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BackTop, MenuItem, MenuDivider, Menu, Dropdown, TabPane, Tabs, Breadcrumb, Empty, InputSearch, Popover, Avatar, Tooltip, Select, Switch, Divider, Button, Drawer, SubMenu, LayoutHeader, LayoutSider, LayoutContent, Layout, ConfigProvider } from "ant-design-vue/es";
|
|
1
|
+
import { BackTop, MenuItem, MenuDivider, Menu, Dropdown, TabPane, Tabs, Breadcrumb, Empty, InputSearch, Popover, Avatar, Tooltip, Select, Switch, Divider, Button, Drawer, SubMenu, LayoutHeader, LayoutSider, LayoutContent as LayoutContent$1, Layout, ConfigProvider as ConfigProvider$1 } from "ant-design-vue/es";
|
|
2
2
|
import "ant-design-vue/es/config-provider/style";
|
|
3
3
|
import "ant-design-vue/es/layout/style";
|
|
4
4
|
import { toRaw, unref as unref$1, computed, onMounted, nextTick, defineComponent, openBlock, createBlock, createCommentVNode, createElementBlock, createElementVNode, reactive, withCtx, createVNode, Fragment, renderList, normalizeClass, toDisplayString, ref, watch, createSlots, getCurrentInstance, inject, onUnmounted, h, provide, onBeforeUnmount, normalizeStyle, resolveDynamicComponent, renderSlot, mergeProps, withDirectives, vShow, watchEffect, resolveDirective, createTextVNode, normalizeProps, guardReactiveProps, resolveComponent, toRef, withModifiers, Transition, KeepAlive } from "vue";
|
|
@@ -15,7 +15,7 @@ import "ant-design-vue/es/breadcrumb/style";
|
|
|
15
15
|
import "ant-design-vue/es/popover/style";
|
|
16
16
|
import "ant-design-vue/es/input/style";
|
|
17
17
|
import "ant-design-vue/es/empty/style";
|
|
18
|
-
import { Popover as Popover$1, Modal, LayoutFooter } from "ant-design-vue";
|
|
18
|
+
import { Popover as Popover$1, Modal, LayoutFooter as LayoutFooter$1, ConfigProvider } from "ant-design-vue";
|
|
19
19
|
import "ant-design-vue/es/avatar/style";
|
|
20
20
|
import "ant-design-vue/es/drawer/style";
|
|
21
21
|
import "ant-design-vue/es/button/style";
|
|
@@ -28,11 +28,11 @@ import en from "ant-design-vue/es/locale/en_US";
|
|
|
28
28
|
import dayjs from "dayjs";
|
|
29
29
|
import "dayjs/locale/zh-cn";
|
|
30
30
|
import "dayjs/locale/es-us";
|
|
31
|
-
var Theme = /* @__PURE__ */ ((Theme2) => {
|
|
31
|
+
var Theme$1 = /* @__PURE__ */ ((Theme2) => {
|
|
32
32
|
Theme2["DARK"] = "dark";
|
|
33
33
|
Theme2["LIGHT"] = "light";
|
|
34
34
|
return Theme2;
|
|
35
|
-
})(Theme || {});
|
|
35
|
+
})(Theme$1 || {});
|
|
36
36
|
var MenuType = /* @__PURE__ */ ((MenuType2) => {
|
|
37
37
|
MenuType2["SIDE"] = "sidebar";
|
|
38
38
|
MenuType2["TOP_MENU"] = "top-menu";
|
|
@@ -69,7 +69,7 @@ const defaultThemeConf = {
|
|
|
69
69
|
},
|
|
70
70
|
headOptions: {
|
|
71
71
|
fixed: true,
|
|
72
|
-
theme: Theme.LIGHT,
|
|
72
|
+
theme: Theme$1.LIGHT,
|
|
73
73
|
showLogo: true,
|
|
74
74
|
showBackToTop: true,
|
|
75
75
|
useLockPage: true,
|
|
@@ -85,7 +85,7 @@ const defaultThemeConf = {
|
|
|
85
85
|
},
|
|
86
86
|
menuOptions: {
|
|
87
87
|
fixed: true,
|
|
88
|
-
theme: Theme.DARK,
|
|
88
|
+
theme: Theme$1.DARK,
|
|
89
89
|
collapsed: false,
|
|
90
90
|
collapsedShowTitle: false,
|
|
91
91
|
canDrag: true,
|
|
@@ -682,18 +682,27 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
|
|
|
682
682
|
key: 0,
|
|
683
683
|
target: getTarget,
|
|
684
684
|
visibilityHeight: 300
|
|
685
|
-
})) : createCommentVNode("", true);
|
|
685
|
+
})) : createCommentVNode("v-if", true);
|
|
686
686
|
};
|
|
687
687
|
}
|
|
688
688
|
});
|
|
689
|
+
const _export_sfc = (sfc, props) => {
|
|
690
|
+
const target = sfc.__vccOpts || sfc;
|
|
691
|
+
for (const [key, val] of props) {
|
|
692
|
+
target[key] = val;
|
|
693
|
+
}
|
|
694
|
+
return target;
|
|
695
|
+
};
|
|
696
|
+
const DtBackTop = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/feature/back-top.vue"]]);
|
|
689
697
|
const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
690
698
|
__name: "index",
|
|
691
699
|
setup(__props) {
|
|
692
700
|
return (_ctx, _cache) => {
|
|
693
|
-
return openBlock(), createBlock(
|
|
701
|
+
return openBlock(), createBlock(DtBackTop);
|
|
694
702
|
};
|
|
695
703
|
}
|
|
696
704
|
});
|
|
705
|
+
const DtFeature$1 = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/feature/index.vue"]]);
|
|
697
706
|
const _hoisted_1$i = /* @__PURE__ */ createElementVNode("i", { class: "block i ic:baseline-autorenew" }, null, -1);
|
|
698
707
|
const _hoisted_2$9 = [
|
|
699
708
|
_hoisted_1$i
|
|
@@ -714,6 +723,7 @@ const _sfc_main$x = /* @__PURE__ */ defineComponent({
|
|
|
714
723
|
};
|
|
715
724
|
}
|
|
716
725
|
});
|
|
726
|
+
const DtTabRedo = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/tabs/components/TabRedo.vue"]]);
|
|
717
727
|
function useTabs(_router) {
|
|
718
728
|
const tabStore = useRouteReuseStore();
|
|
719
729
|
const router = _router || useRouter();
|
|
@@ -895,7 +905,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
|
895
905
|
}, 1032, ["onClick", "disabled"]),
|
|
896
906
|
item.divider ? (openBlock(), createBlock(_component_AMenuDivider, {
|
|
897
907
|
key: `d-${index}`
|
|
898
|
-
})) : createCommentVNode("", true)
|
|
908
|
+
})) : createCommentVNode("v-if", true)
|
|
899
909
|
], 64);
|
|
900
910
|
}), 256))
|
|
901
911
|
]),
|
|
@@ -919,6 +929,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
|
919
929
|
};
|
|
920
930
|
}
|
|
921
931
|
});
|
|
932
|
+
const DtTabContent = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/tabs/components/TabContent.vue"]]);
|
|
922
933
|
function initAffixTabs() {
|
|
923
934
|
const affixList = ref([]);
|
|
924
935
|
const tabStore = useRouteReuseStore();
|
|
@@ -1053,10 +1064,10 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
1053
1064
|
closable: !(item && item.meta && item.meta.affix)
|
|
1054
1065
|
}, {
|
|
1055
1066
|
tab: withCtx(() => [
|
|
1056
|
-
unref$1(getShowQuick) ? (openBlock(), createBlock(unref$1(
|
|
1067
|
+
unref$1(getShowQuick) ? (openBlock(), createBlock(unref$1(DtTabContent), {
|
|
1057
1068
|
key: 0,
|
|
1058
1069
|
tabItem: item
|
|
1059
|
-
}, null, 8, ["tabItem"])) : createCommentVNode("", true)
|
|
1070
|
+
}, null, 8, ["tabItem"])) : createCommentVNode("v-if", true)
|
|
1060
1071
|
]),
|
|
1061
1072
|
_: 2
|
|
1062
1073
|
}, 1032, ["closable"]);
|
|
@@ -1067,12 +1078,12 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
1067
1078
|
unref$1(getShowRedo) || unref$1(getShowQuick) ? {
|
|
1068
1079
|
name: "rightExtra",
|
|
1069
1080
|
fn: withCtx(() => [
|
|
1070
|
-
unref$1(getShowRedo) ? (openBlock(), createBlock(unref$1(
|
|
1071
|
-
unref$1(getShowQuick) ? (openBlock(), createBlock(unref$1(
|
|
1081
|
+
unref$1(getShowRedo) ? (openBlock(), createBlock(unref$1(DtTabRedo), { key: 0 })) : createCommentVNode("v-if", true),
|
|
1082
|
+
unref$1(getShowQuick) ? (openBlock(), createBlock(unref$1(DtTabContent), {
|
|
1072
1083
|
key: 1,
|
|
1073
1084
|
isExtra: "",
|
|
1074
1085
|
tabItem: _ctx.$route
|
|
1075
|
-
}, null, 8, ["tabItem"])) : createCommentVNode("", true)
|
|
1086
|
+
}, null, 8, ["tabItem"])) : createCommentVNode("v-if", true)
|
|
1076
1087
|
]),
|
|
1077
1088
|
key: "0"
|
|
1078
1089
|
} : void 0
|
|
@@ -1081,6 +1092,7 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
1081
1092
|
};
|
|
1082
1093
|
}
|
|
1083
1094
|
});
|
|
1095
|
+
const MultipleTabs = /* @__PURE__ */ _export_sfc(_sfc_main$v, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/tabs/index.vue"]]);
|
|
1084
1096
|
const _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
1085
1097
|
__name: "fullscreen",
|
|
1086
1098
|
setup(__props) {
|
|
@@ -1097,6 +1109,7 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
|
1097
1109
|
};
|
|
1098
1110
|
}
|
|
1099
1111
|
});
|
|
1112
|
+
const DtFullScreen = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/fullscreen.vue"]]);
|
|
1100
1113
|
const isServer = typeof window === "undefined";
|
|
1101
1114
|
const BAR_MAP = {
|
|
1102
1115
|
vertical: {
|
|
@@ -1338,12 +1351,13 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
|
|
|
1338
1351
|
};
|
|
1339
1352
|
}
|
|
1340
1353
|
});
|
|
1354
|
+
const ScrollBar = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/components/container/src/components/scroll-bar.vue"]]);
|
|
1341
1355
|
const _sfc_main$s = /* @__PURE__ */ defineComponent({
|
|
1342
1356
|
__name: "scroll-container",
|
|
1343
1357
|
setup(__props) {
|
|
1344
1358
|
const scrollbarRef = ref(null);
|
|
1345
1359
|
return (_ctx, _cache) => {
|
|
1346
|
-
return openBlock(), createBlock(
|
|
1360
|
+
return openBlock(), createBlock(ScrollBar, mergeProps({
|
|
1347
1361
|
ref_key: "scrollbarRef",
|
|
1348
1362
|
ref: scrollbarRef
|
|
1349
1363
|
}, _ctx.$attrs, { class: "w-full h-full" }), {
|
|
@@ -1355,6 +1369,7 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
|
|
|
1355
1369
|
};
|
|
1356
1370
|
}
|
|
1357
1371
|
});
|
|
1372
|
+
const ScrollContainer = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/components/container/src/scroll-container.vue"]]);
|
|
1358
1373
|
const _sfc_main$r = /* @__PURE__ */ defineComponent({
|
|
1359
1374
|
__name: "slot-container",
|
|
1360
1375
|
props: {
|
|
@@ -1373,14 +1388,15 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
|
|
|
1373
1388
|
};
|
|
1374
1389
|
}
|
|
1375
1390
|
});
|
|
1391
|
+
const SlotContainer = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/components/container/src/slot-container.vue"]]);
|
|
1376
1392
|
const withInstall = (comp) => {
|
|
1377
1393
|
comp.install = (app) => {
|
|
1378
1394
|
app.component(comp.name, comp);
|
|
1379
1395
|
};
|
|
1380
1396
|
return comp;
|
|
1381
1397
|
};
|
|
1382
|
-
const DtScrollContainer = withInstall(
|
|
1383
|
-
const DtSlotContainer = withInstall(
|
|
1398
|
+
const DtScrollContainer = withInstall(ScrollContainer);
|
|
1399
|
+
const DtSlotContainer = withInstall(SlotContainer);
|
|
1384
1400
|
const logoUrl = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADkAAAA5CAYAAACMGIOFAAAACXBIWXMAAAsTAAALEwEAmpwYAAAzfGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDggNzkuMTY0MDM2LCAyMDE5LzA4LzEzLTAxOjA2OjU3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAxOS0wNS0wNlQxMToyNzoyOCswODowMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAyMS0xMC0yNFQxNDozMToxNiswODowMCIgeG1wOk1vZGlmeURhdGU9IjIwMjEtMTAtMjRUMTQ6MzE6MTYrMDg6MDAiIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NWU1YmFlNWUtOTQzOS1lYjQ4LWJiMjEtZjZjM2UwOWYxODM2IiB4bXBNTTpEb2N1bWVudElEPSJhZG9iZTpkb2NpZDpwaG90b3Nob3A6ZGU4M2YxYWYtODBkMS1kMTRlLTg5ZWMtNGE1MjUzNzFkZTcwIiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6OTg1ODkwODQtMjkyYi01ODRiLTkzODAtNWJmY2E3NjJmYzk5Ij4gPHBob3Rvc2hvcDpEb2N1bWVudEFuY2VzdG9ycz4gPHJkZjpCYWc+IDxyZGY6bGk+MDBCQTBEMEExQ0M5RDAwNTMxNTlBMjBGRTcxOTA2RTg8L3JkZjpsaT4gPHJkZjpsaT4wMTQwNjdEM0ZDNjM5OTM3RTc4QkFCNDFBMzdCNzMwNTwvcmRmOmxpPiA8cmRmOmxpPjAyRDI2REY0MDMxREJFOUM5N0Q5Mzg1RjE5QTUwMUQ0PC9yZGY6bGk+IDxyZGY6bGk+MDcxNDVGQzc5RjkxODMwQjNGRUNFOUZCODNEMDZDN0M8L3JkZjpsaT4gPHJkZjpsaT4wRDgyMkI0MThFM0E2RjZCMjBDMEM2NjkwOUI0QTc5QTwvcmRmOmxpPiA8cmRmOmxpPjBGOUM0NTJBMkZGQTE3QzU4RTQ5MzVFQUU3RUJEQzI1PC9yZGY6bGk+IDxyZGY6bGk+MTY2N0I2OTg3MUJGRjQ4MThEODU5RENGMjIzOTUyMjg8L3JkZjpsaT4gPHJkZjpsaT4xOTNFMUQ2M0ExRDJEN0VBN0U0MTFBMzlBQzNENkJBMzwvcmRmOmxpPiA8cmRmOmxpPjIwNjY1MENBM0RBNUM2OURFQjZCRjAyMTQ3MEUzM0Y1PC9yZGY6bGk+IDxyZGY6bGk+MjE1QzM3NDMwNUM1MUVDQ0FENUM1RDUzQThCMEMwMkI8L3JkZjpsaT4gPHJkZjpsaT4yMThDREMzM0Y0OTE1NTMzQzRFQjMwRUIzQTU3MjM1RjwvcmRmOmxpPiA8cmRmOmxpPjI0N0QxRUVDRThCMjkzOTJCNzQ3RjVCMzQ3Rjc5RDRGPC9yZGY6bGk+IDxyZGY6bGk+MkVDOURBNDM2NEQ2RTBCRjYwNzExRDJFOUY1OEM4ODg8L3JkZjpsaT4gPHJkZjpsaT4zNzEyQTgyQjE3NEM0OUMwMDg2MTUxMEJBODEzMDlBOTwvcmRmOmxpPiA8cmRmOmxpPjNEQjIwQTEwQzQyQjZGMkZEMEMwQkYyNUZDNEU5NzFFPC9yZGY6bGk+IDxyZGY6bGk+NDFDMTBEM0IzRUFBQTUwQjI5ODRBNzY1MEM5QzQzMTc8L3JkZjpsaT4gPHJkZjpsaT40OTQxN0MwQjQxMDgxRkJDRDQxNjAwQTM1QUE0MkEwMzwvcmRmOmxpPiA8cmRmOmxpPjRCQUVBREUyQjhFMTk4MTA2MkM5RjQzMTFCREI5Njg5PC9yZGY6bGk+IDxyZGY6bGk+NEU5NTUxOEI4OUI2MjEwOTRFNDdGMEU3MUQ4MUYxRjQ8L3JkZjpsaT4gPHJkZjpsaT41NDlEOUJFODJBRjc3NzVFOTMzRDc3QjJDOEY4N0QwMDwvcmRmOmxpPiA8cmRmOmxpPjU1NTQ4QzhDN0VEODdCRDI2MUI1RTNDRTBCQzdGNUM3PC9yZGY6bGk+IDxyZGY6bGk+NTg0RjVFMjNEMEFFMDA0NUQ4OENBM0I3MTUxNDQyODk8L3JkZjpsaT4gPHJkZjpsaT41OUVDMTdCMzk5Q0Y3QzFDQkJEN0FBMDUwODYyMzY1OTwvcmRmOmxpPiA8cmRmOmxpPjVDRUFCMzA0QUVFMTUyMzVGMDM3Mjg1NTdDMjFCQTBBPC9yZGY6bGk+IDxyZGY6bGk+NUUwRkI3MDI4QjU5NDlBNEFDRkU0NjIwNjRCQjVFNTc8L3JkZjpsaT4gPHJkZjpsaT42NzlCNDI1OEZGQjVDQTZBQUM2MDgzQkJBQTNFMDYwRTwvcmRmOmxpPiA8cmRmOmxpPjZDMDkzMzdDRjQxRTU3NTQ2NTFFMTJCNkRDMTU5OTcyPC9yZGY6bGk+IDxyZGY6bGk+NzU1RTZBRjM1MzM3ODA5MkM3NzlCNDE1MDAwRDg0RkE8L3JkZjpsaT4gPHJkZjpsaT43OUJDMjI2N0QxODVCOTM4MTA4RDQ2N0ZBNEI0QzVBOTwvcmRmOmxpPiA8cmRmOmxpPjdDMTMzQkQ1NDA3MzQ3RTVBREJFMzJBNDlCODIzRUFEPC9yZGY6bGk+IDxyZGY6bGk+ODE2QzZGQUI0NTQ4NzMyNjU5NTc2NkNCNEYzNDFEQUQ8L3JkZjpsaT4gPHJkZjpsaT44MzZFNkZCNjlEMDk4Njg5RDc4RDdEQjlEQjhDREExRTwvcmRmOmxpPiA8cmRmOmxpPjg1QTM5MUEyMkM2NEY1Q0IwQTM3QTg2MzZFNTRGOUY2PC9yZGY6bGk+IDxyZGY6bGk+OEE0QkZEOTQzQUZGOTlEMDdEREU1MUYwMDFDNEE5REE8L3JkZjpsaT4gPHJkZjpsaT45NEMzMkU2QTE1MTdCNzBBNDM5ODVBQTc2NTM0NEI2OTwvcmRmOmxpPiA8cmRmOmxpPkFCMzlENjBENTExNEVFOEE4RkJBREUyRTkyMEM0NUExPC9yZGY6bGk+IDxyZGY6bGk+QjIwMUZGOTM3QzYwNzkxMEY4MUY5REJERkNDRkZGRTk8L3JkZjpsaT4gPHJkZjpsaT5CRTYxMzMxREQ1MkI2MjlFNjgwNUVCMzQ3MkRFRTJEMjwvcmRmOmxpPiA8cmRmOmxpPkJFQzM4NTRBODA1RkQ1NkM3RThEMkUxN0M0NzA5ODkwPC9yZGY6bGk+IDxyZGY6bGk+Qzg5NkI0OTZGMTgyREU1MTgzNTg3MEIwOTM0MUQ4RTg8L3JkZjpsaT4gPHJkZjpsaT5DQkJEN0U5OEM1MEI0RTE0RDA0MkNFNTMzQUE1QTgyMDwvcmRmOmxpPiA8cmRmOmxpPkQ5NjQzNUIwNkRFNTQ2OTg4MDUyMjVDNERBRkUzOEIyPC9yZGY6bGk+IDxyZGY6bGk+RTJCNTc3NDY4ODE4NEI2Mzk4OTE0RTI4MkQ5RThFODQ8L3JkZjpsaT4gPHJkZjpsaT5FNDJCMEFDNjg1OTAyMTcyQzIxNjEyQkJGMjFGRjg0QjwvcmRmOmxpPiA8cmRmOmxpPkU1QjQzNTBCREVFMTQ1NUMxM0UxNTU1NEM2MEY2QjQ0PC9yZGY6bGk+IDxyZGY6bGk+RUI3NzhBRjNENDVERUNBQkFCRUEwRkZDQTg4QTEyNDM8L3JkZjpsaT4gPHJkZjpsaT5GNTY3RjdBNDRCNTJFQUMwNTYxNkVBODdGRjlEMzMxQzwvcmRmOmxpPiA8cmRmOmxpPkY1RjgzQTQyMzI4N0E0MUUyMTM5ODdDNTRERjhFOUQ3PC9yZGY6bGk+IDxyZGY6bGk+RkVBQkZDQTQyQzY1N0ZFN0Y1MjEzOEQ0NkQyRTQ2MjM8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6MDQ3NzM4NzYtZTg2Zi0xMWU3LTg4MmMtYWRiZmQ5NWE3NjU0PC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjA4ZjFmZmI5LWM1MWUtMTE3OS1iNTJlLWFkNGFiZjVjNmRhZDwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDowYjM2MmY4Yi1hY2I2LTExZTUtOGZmZS1lMzQ2MTgxMGQzZTk8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6MTAwMDFlZTUtZGVmNy03MjRiLTg3OTctZDg4YjE0ZWI3YjExPC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjE0Y2YxMGI4LWNlOTItMTE3OS04ZDJhLWIzNjcyY2QwOWI2MzwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDoxNzM4ZDA5ZS05YTk4LTExZTUtOTE3ZS1kNGExOTRhYWE2N2U8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6MWZkODY3YmItYzJlOC0xMTc5LWFkOTYtZjBjODUzNzZkYjFkPC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjIxMzMzNjE3LWNjYWItMDg0OS04YWFmLWE0MzQwY2ZiZGVmZjwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDoyNGI4YzllYS05MDU3LTExZTYtODBkYi04ZTk5ZjZiZDFiNTY8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6MmRmNzZkN2YtOWMyMy0xMWU1LWJlOTUtZDNiYjFlNDBhYmZhPC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjM0NDUxNTQyLTlhYjQtMTFlNS05MTdlLWQ0YTE5NGFhYTY3ZTwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDozNTU4NmExZi00M2FiLTExNzktYTg2Ny1hMmFiMmIxYjU2OTY8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6Mzg2ZDAwYzAtNmRjMi0xMTc3LWFiNjUtYTIwYWMzNDdjYzI2PC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjNhNDdmMTQxLWJlNmItZjE0My1hMzM3LTM4ZmIwZGQzMzljYjwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDozYjk1ZmY2Zi1hYjAwLTExNzktOGEyYS1lYmY4MzMyOTc0NTc8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6NDVjOGUzYjMtYjg5Mi00ZTQwLTg3YjUtYWIwNTk0NmFjMDE2PC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjQ4YTI0ZDkyLWUyMzMtMjM0NC1iNTQ1LWE3OTA3MDY1MjJiMzwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDo0YmNiZWZkMS04MTBlLTJkNGEtYTA4NS04MGVmYmMwZjJiODA8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6NTUzNTRjMmEtYzMyOC0xMTc5LWFkOTYtZjBjODUzNzZkYjFkPC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjcxODQ0ZWUwLWMwY2MtMTE3OS05ODliLWNlNWRkM2Y3NmNhYjwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDo3MzFhNjYwZC1jY2Q4LWNiNDQtOWZkYS1jOTY1NjAwYTlmOTI8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6NzdiYjEwZmYtYjI4ZC0xMWU4LThiN2UtZjE3MTY4ZDMxZTljPC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjgyNGIxODI5LTliYTUtMTFlNS1hZmM2LTg3NjcxZTA3ZTBjNDwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDo4MzQ2YzY1NC1kMzM0LTEwNDMtYjZjNS1kYTM3N2QwYWIyNTg8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6OTgyODRiN2UtOWIzNi0xMWU1LTkxN2UtZDRhMTk0YWFhNjdlPC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjlkNDM5Y2UwLWIyM2UtMTFlNS05MTYxLWY5ZDdjYzE1OTQzMjwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDo5ZWQ1MWIzNS1hYzM2LTExNzktYmE0ZS1kZjIxY2JlNzI1Yjk8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6YTE2NTQzNjYtODg0ZS0xMWU1LThjOTAtYzY5MjYzYzdiOTYxPC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOmEzMzUzZGI3LWE4MDItOTc0Mi1iZmYzLTI0Mzk4YjY5OTI5ZTwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDphZDM0MWU1Ni1iMjczLTE2NDktODY2ZC0xN2E5MjcxZjExODg8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6YmExNjlmMjMtOTA1OC0xMWU2LTgwZGItOGU5OWY2YmQxYjU2PC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOmJlNjYzNjRhLWUwM2YtNWU0OS05YmY0LWM0YjIwMTc3NTliNTwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDpiZTY2YzcxYy1hYTQ1LTExZTUtYmY4Yi1hZWNlNTk4MWMzNmQ8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6Yzc5Yzc3YzYtOWMxOS0xMWU1LWJlOTUtZDNiYjFlNDBhYmZhPC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOmNjZDJjZGNhLTQ2OWUtMTE3OS1iYzUzLWRmNDJmNjRkYjZhYzwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDpkZDE2YWYyNi1iNGI2LTExNzktODkwYi05YjY5NDhiZDgzZTk8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6ZTNmZmVlNjgtM2MxMi03MzQzLWE1NTItOTAxYmFkMTViOGMwPC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOmVhOGYyYzNkLTkwNTMtMTFlNi04MGRiLThlOTlmNmJkMWI1NjwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDpmMTc1NDg3ZC05YjcwLTExZTUtYWU3Mi1lYmI4OWUwZmQwZWY8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6Zjg4Y2M5NGQtYzcwZS0xMTc5LWJjNzQtYzljNmY5NjcyYTQ0PC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOmY5MTdmNjM5LTkwNGUtMTFlNi05MThjLWZmZjgyYjQxY2YyZTwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDpmYWU1ZDczNy05YTIzLTExZTUtOTJlNC04YzM5MzI2N2QwMWM8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjAwMWU2NDI1LWI5ZTgtMWQ0My1hY2EzLWQwMzM3MDM4NGFjYzwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6MDE4MDExNzQwNzIwNjgxMTgwODNBMzJBMUI2ODVERTQ8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjAyZDdmMjgzLTE0ZTUtNDAyOS1hZWZhLThmMGIwOTk0NWQyMDwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6MDUyN2I1ODctZGRiZi1jNzQ2LWI3YzYtZGQ5MDlhNzhhZDllPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDowRUVEMzFGQkQxQjBFMjExQjc5OUFEQTUzNjYzOTg5NTwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6MGNkOWFiZWMtM2UyOC1hZjQ3LTk1NjctZjBlY2EwZTU4MGFkPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDoxMDdGMjg5NDUxNTAxMUU4QkNGOEU4NzI4QzNERDBCMDwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6MTBjZGNiZGMtY2M2NS00ZWJmLWEzZmEtMWZmNjIyMTc2ODZjPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDoxM2Q2YjY5My0zM2QwLWZmNDctOTk1Yy0yZGRkYzQ0NTgxMTI8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjFGRjAyMjJBNzI3RkUzMTE4QTIyRkI5QzU1Rjk3RkVGPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDoxY2MzNWUzOC0yMTY3LTk4NDgtOTNhOC05ZmMyNTAxNGMzMzM8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjI2NzdiOWEzLTQxZDItMzE0NC1iNTI0LWQ3N2U1YTYyZGI0MDwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6MjZlYjJmNWItNWViYy00ODk3LWEyZmItYjc0MGQ5ZTMwZDc2PC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDoyQkU5QjkyOUIyNkExMUU1QjIxNjhFODMzRDJENUU0RjwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6MmEyYTA2OWEtNjEwNS00NzM3LWE0ZjktNmJiNWEwNzI2ZjdhPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDoyYzRhZDFjYy1lNzUwLTFlNDctYTlmMi0xNTEwZTFiMDRiOTM8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjJkZWZlNGVjLTdjYzctYmU0OS1iYzg5LTQ5OGUzZmQ1ZjVmZjwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6MzRDNjBDN0JCMkQwMTFFNTg4NUM5MjhFNTk3ODMxQ0Y8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjM2Y2ViMGI3LTU4MTktNTQ0NC1iN2NmLWU2OWEyODBmNWFhMTwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6M0VBQzJERDc1MzUxRTgxMTk3NkFGMzlCNEI2QUZCRjg8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjNhNWFiMjgwLTQwZmUtNGY1ZS05ZmE2LTcxNjE2YjczODEyYjwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6M2Q1Njg0OTgtOTg0ZC00NThhLWIyNDktZWFjYzMyMjUyYTIwPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDo0MTk0ZmE2Mi1jYWRlLThmNDktYTIxNy1lY2E3ZWUzZDIyYTA8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjQ0MzMyRjU5QjI2MDExRTU4RDNGOEJEQUJDMENEMEFDPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDo0NmVkZjRlNC05MTUyLTVlNGItODA4Ny1kYTQzN2JjNWRjM2M8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjQ4RTNEMDA3MDgyMDY4MTE4MjJBRDdEMjNEMDQ0QTk1PC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDo1Y2EzNTUzMS1lOTZmLTRjMjAtOWViYi01M2U3NTJkMDMxYWQ8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjVlODc5ZTZmLWE3MjMtMjI0Ny1iOGQ4LWE5MDI4YzY4YmQyZjwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6NjViOTJlMzAtNWU0NC0wNjRmLTk3YWQtMzg2YWI5ZTQ3NzEwPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDo2ODc0QjFFNzZBMjA2ODExODIyQUM2N0Y1OEJFQTE3OTwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6NjliYWZkZWItNDM4NS04MjQ4LTk2NDgtMTIyN2YxMTE2ZTViPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDo2QTc0QjFFNzZBMjA2ODExODIyQUM2N0Y1OEJFQTE3OTwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6NkZENTNBMzgwQTIwNjgxMTgyMkFDRjE5MTgwRTgxQjI8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjZlYjFkY2Y1LTliNjctOWQ0NC05MWJmLWZmODQzYWNmMTZmMTwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6NzI2MGY1YjQtY2MxNy1kZjRlLWIwMWUtZjEzYWQyMWQwODkwPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDo3NDljYmFlOC0xNTRmLTM5NDAtOWVlNi0yMmQxZjgwZmEzYTE8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjc3OUQyNjQwQjI1QjExRTU5M0MxRDg5NTlDNDg0NDg1PC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDo3YTE1ZGNmMS1kYTE4LTQ3YzUtYWI0ZS1iOTQ4NTUyOTAyNjc8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjdhOTJkNDBiLTY5ZTctNDlhMy04ZDIzLTIzZjNkNzc0ZmVkYTwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6N2MwMmQ3YjEtMDNkYS00Zjg1LTk5YzAtMDBiM2YwMzI5MDNmPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDo3ZGRjODNmMS1jYTIxLTlhNDMtYWFlMS1kMjhkZTkyMjc3OWQ8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjhEMzA2NTQ0OTYxQjExRTQ4OTM3REM3Rjg4OUZGMDQzPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDo4RkNCRUNBRkIyNkMxMUU1OUExNDgwMjUxQTI3MzQzNjwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6OGM2NWIxOTYtOWNhNC1mNDQ0LTlkMzQtZDM1MzM4YTllMjE1PC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDo4Y2M3ODA2MS0yNzk2LTRlYTAtYTVhZC1hNjk3ZDRjMjA3OGU8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjkzNTk1Mzc0LTc5MjUtM2U0ZC1iMDRjLTk2YzU2OTY1NGNkYjwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6OTU5NkI5OTE3NzIwNjgxMTgyMkFDNjdGNThCRUExNzk8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjlGMUZFMkJFRTNDMEU1MTE5QUU5OUNFNTZGNjc4NzY3PC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDpCQkFFMjI5OEYxMTlFOTExODhFMjgzQjVGRjY0QkU5MjwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6QzM3MTlGNDQwMkM0RTUxMUJBNDE4NUE1ODhCNTEwODc8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOkM5NjUwQ0I5MDcyMDY4MTE4MDgzQTE1REU3MzQzNjUyPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDpENTNBODdBQzQxNjdFNDExQkZERUY2ODdGMzU2NEY5NzwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6REJDMjdENjQyRTZCRTUxMTlGQkVGMkREMkU4REFDRUY8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOkRFQjkwOEE1OEI3OEU1MTE5MTk5OUVFQkJCRDI4M0UyPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDpGODdGMTE3NDA3MjA2ODExODIyQUNCNkU2OTFDMjRGRjwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6YTIyZmVmZDItNTM0MS05NDQ4LWFiNDQtYWJhZjhmNDgxOTlhPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDphMjk1Y2U2Ny1iOWIxLThhNGUtOGZmYS02YjJjOTIxMDlmMTY8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOmE2NDcwMTE5LTg3ZWUtOGU0ZC04ODZlLTM1MDUwY2Y3YTBjYzwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6YTdiMjA5MmItMDg2Zi02NTQ3LWJhNTUtNzEzN2ZhOTRmZjVjPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDphN2M2ZjA0NS1lNTE3LTVlNGUtOTUzZi1mY2I3ODMyMzZkMDY8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOmE4NGU1MWFmLWJhZTYtNGNiOS05ZGQ3LTZmOTJjYWVjZDQ1NDwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6YWVkZjcwYWMtOGExNy05OTQ1LTgxYzctM2FmNWFlM2UwM2VhPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDpiMjljYzBmMi05MTg1LTQ0ZjEtOWU5YS1kMzhkMTkwMmU5OGQ8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOmJhMGJjNGViLTJjYzgtMTg0ZC1iN2Q1LTE2MzQxM2JkY2I5MjwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6YmMxYzdmNWYtNTMzMy1kZDQ3LTg1NmMtMDFlNTJhN2NiMWY4PC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDpiZTE0OWFhNy0zZDM4LTc5NGEtOWVhMi0xYWFiMDAxNGMwNzY8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOmJmYWIwNDVmLTQ4MTItNDdlNi05N2NlLWNjNzk1NmUzYTFhNzwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6YzIxNWY4ODUtNGI4Ny01YjQxLTg1M2YtM2Q5NmRlNWMxOThlPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDpjNWIxODhiNC1hZTMzLTRiODctYmRjZC05M2U5Yzk0MWM1YjA8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOmM5YTI2YzkyLTQ1MTgtNGI1YS04NjIwLWIxYjExMTZlMGZkZDwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6Y2YwMDViZTUtNWYzZi1mMTQ1LWI5OGEtYTU2YjU1NTk4YzkyPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDpkZDliOTBkMi01MjcyLTQyOWUtODQ2Zi1mMTMxMmE0ODNlNjE8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOmU1NmQyNjUyLWM3YzQtMzk0ZC05MzA4LTlmM2Q5YmQzMGU1MDwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6ZTcwNTM5OWQtNDY0ZS00M2ZmLWE1MmMtY2RjOGE4YmY3ZWE2PC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDplZDAxYWNlYS0xNDYwLTYxNGQtODdlNC1mMmEzNDM1NjA3Njk8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOmVlNDYzYjU0LTRjMjItNGMyZC1hZjQwLTdlN2U0Yzc2YTcwMDwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6ZWVlNzBjZjMtZDRiZC05MjQxLThiNzAtN2NjYmFkMzViZGU2PC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDplZmQ5MzI1Mi01MjBkLWYxNDEtOTAxMy0wZGI3MTBhZWRmNzU8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOmY1YjljZjZkLTM2YjgtYTc0MS1iMGZmLTE3ZGU0YzQwNjZjNjwvcmRmOmxpPiA8L3JkZjpCYWc+IDwvcGhvdG9zaG9wOkRvY3VtZW50QW5jZXN0b3JzPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjk4NTg5MDg0LTI5MmItNTg0Yi05MzgwLTViZmNhNzYyZmM5OSIgc3RFdnQ6d2hlbj0iMjAxOS0wNS0wNlQxMToyNzoyOCswODowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDplY2UyZWZjMi01NDlkLTBkNDgtYTExNi1kZTI1ZmU1NzNkYzkiIHN0RXZ0OndoZW49IjIwMTktMDUtMDZUMTE6NDM6MjQrMDg6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE5IChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NDQ5NDBhMmEtNzEwNy00YmFlLThjOTMtY2ZjNGRkM2UyYjc2IiBzdEV2dDp3aGVuPSIyMDE5LTA3LTAyVDEyOjIwOjE5KzA4OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHN0RXZ0OmNoYW5nZWQ9Ii8iLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNvbnZlcnRlZCIgc3RFdnQ6cGFyYW1ldGVycz0iZnJvbSBhcHBsaWNhdGlvbi92bmQuYWRvYmUucGhvdG9zaG9wIHRvIGltYWdlL3BuZyIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iZGVyaXZlZCIgc3RFdnQ6cGFyYW1ldGVycz0iY29udmVydGVkIGZyb20gYXBwbGljYXRpb24vdm5kLmFkb2JlLnBob3Rvc2hvcCB0byBpbWFnZS9wbmciLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjZlYjlkOTFjLTI5NDAtNGMwZS1iMjEwLTg3NGMwNmY5NzBkMyIgc3RFdnQ6d2hlbj0iMjAxOS0wNy0wMlQxMjoyMDoxOSswODowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiBzdEV2dDpjaGFuZ2VkPSIvIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDo1ZTViYWU1ZS05NDM5LWViNDgtYmIyMS1mNmMzZTA5ZjE4MzYiIHN0RXZ0OndoZW49IjIwMjEtMTAtMjRUMTQ6MzE6MTYrMDg6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCAyMS4wIChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NDQ5NDBhMmEtNzEwNy00YmFlLThjOTMtY2ZjNGRkM2UyYjc2IiBzdFJlZjpkb2N1bWVudElEPSJhZG9iZTpkb2NpZDpwaG90b3Nob3A6NWJmZGU1MDUtMmVkMy1lZjQxLWFiYjgtNWRjYTRhNjUxZjVlIiBzdFJlZjpvcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6OTg1ODkwODQtMjkyYi01ODRiLTkzODAtNWJmY2E3NjJmYzk5Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+UQTyIAAAAptJREFUaN7l2ktoE0EYwPH/xtRXbRupRlsQ04JoRRQE8aQiYhHFg+JFRD1oC4oVfJx6UDwIRSsURYUiorWCiohaRSz0IIoExMfBS7A+wEIjqXFpFySm6XrYTTEmpunuJu7OfJdsJjNf8svMJDPsKLqu82covWpmQWliDHgF3ARuAKqdZHpjIOO5D3eED1gNnAcGgHPAHCeTuy3KgaPAB/PRLyIyHQGzR18CS0RFpmOVOV+3i4wEmAXcBY6LjARQgLPACZGR6TgFHPAEUkGnpixKtf+7leYXgK2uRU5XErTVtvJ1WYjI0gYuLThkJc0UoAsIFVLZX+re6wrtZVPl0/GyZ9paO38x14D1gO6antxc9SQDGBudS3d8l52U64B9rhquO2ffGr9WUwF2f7nOcKrSbtrTQIWjwzVYBg0zrH2aqcoYfSMbePtzBZ1DzUST85z47oLAYRObe5pMdheyoxo6661tVEJvFIZTRRkkg+aP0C8370LsRg2wzbHhOpCAB/Hs8uXlUDfNuA6PwLdkdp1kcXeqB4HbjiDDGoQ1Jau8faFOXdC47ogq9Kol7801Zo8OirCsy7e2bRRl7ZovtsiA3JjLJBoyACwSHQmwUgbkYhmQ9TIga2VAzpcBWSEDskoG5EwZkKMyIDUZkDEZkP0yICMyIN/LgHwhOvIj8El05P1chaIhu0VHvgbeiY5s/9cLoiAjwB3Rkccwjq4Ji3wEPM5XwevIGNA8USUvI3VgPzlu8IiEbAUeFlLRq8iLQFuhlb2I7ABaJtPA57E5eBI4wgTndv4Ov0eAKrAH6LHS2As9+RzjTlWP1QRuRv4AmjBOXX22k8iNw1UDLgNngCEnEroJGQeumLuJmJOJ/zdSB/qAq8A9IFGMN/kNt6GNd9kLeHQAAAAASUVORK5CYII=";
|
|
1385
1401
|
const _hoisted_1$e = ["src"];
|
|
1386
1402
|
const _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
@@ -1418,6 +1434,7 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
|
1418
1434
|
};
|
|
1419
1435
|
}
|
|
1420
1436
|
});
|
|
1437
|
+
const DtLogo = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/logo.vue"]]);
|
|
1421
1438
|
const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
1422
1439
|
__name: "trigger",
|
|
1423
1440
|
props: { theme: String },
|
|
@@ -1436,6 +1453,7 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
|
1436
1453
|
};
|
|
1437
1454
|
}
|
|
1438
1455
|
});
|
|
1456
|
+
const DtTrigger = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/trigger.vue"]]);
|
|
1439
1457
|
const _hoisted_1$d = { class: "dt-breadcrumb" };
|
|
1440
1458
|
const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
1441
1459
|
__name: "bread-crumb",
|
|
@@ -1463,6 +1481,7 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
1463
1481
|
};
|
|
1464
1482
|
}
|
|
1465
1483
|
});
|
|
1484
|
+
const DtBreadCrumb = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/bread-crumb.vue"]]);
|
|
1466
1485
|
const _hoisted_1$c = {
|
|
1467
1486
|
key: 0,
|
|
1468
1487
|
class: "dt-menu-filter h-7 pr-2"
|
|
@@ -1523,7 +1542,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
1523
1542
|
description: "\u6682\u65E0\u6570\u636E",
|
|
1524
1543
|
imageStyle: { width: "100%" }
|
|
1525
1544
|
})
|
|
1526
|
-
])) : createCommentVNode("", true)
|
|
1545
|
+
])) : createCommentVNode("v-if", true)
|
|
1527
1546
|
]),
|
|
1528
1547
|
default: withCtx(() => [
|
|
1529
1548
|
createVNode(_component_AInputSearch, {
|
|
@@ -1536,10 +1555,11 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
1536
1555
|
]),
|
|
1537
1556
|
_: 1
|
|
1538
1557
|
})
|
|
1539
|
-
])) : createCommentVNode("", true);
|
|
1558
|
+
])) : createCommentVNode("v-if", true);
|
|
1540
1559
|
};
|
|
1541
1560
|
}
|
|
1542
1561
|
});
|
|
1562
|
+
const DtMenuFilter = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/menu-filter.vue"]]);
|
|
1543
1563
|
const _hoisted_1$b = { class: "lang m-0" };
|
|
1544
1564
|
const _hoisted_2$6 = ["onClick"];
|
|
1545
1565
|
const _hoisted_3$4 = {
|
|
@@ -1599,6 +1619,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
|
1599
1619
|
};
|
|
1600
1620
|
}
|
|
1601
1621
|
});
|
|
1622
|
+
const DtLangPicker = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/lang-picker.vue"]]);
|
|
1602
1623
|
const _hoisted_1$a = { class: "dt_header_icon text-lg text-gray-800 cursor-pointer px-3 hover:bg-gray-500 hover:bg-opacity-50 transition-all duration-300 relative" };
|
|
1603
1624
|
const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
1604
1625
|
__name: "notify",
|
|
@@ -1615,7 +1636,7 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
|
1615
1636
|
unref$1(slots).notify ? (openBlock(), createBlock(unref$1(DtSlotContainer), {
|
|
1616
1637
|
key: 0,
|
|
1617
1638
|
template: unref$1(slots).notify
|
|
1618
|
-
}, null, 8, ["template"])) : createCommentVNode("", true)
|
|
1639
|
+
}, null, 8, ["template"])) : createCommentVNode("v-if", true)
|
|
1619
1640
|
]),
|
|
1620
1641
|
default: withCtx(() => [
|
|
1621
1642
|
createElementVNode("span", _hoisted_1$a, [
|
|
@@ -1625,7 +1646,7 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
|
1625
1646
|
unref$1(slots).notifyBadge ? (openBlock(), createBlock(unref$1(DtSlotContainer), {
|
|
1626
1647
|
key: 0,
|
|
1627
1648
|
template: unref$1(slots).notifyBadge
|
|
1628
|
-
}, null, 8, ["template"])) : createCommentVNode("", true)
|
|
1649
|
+
}, null, 8, ["template"])) : createCommentVNode("v-if", true)
|
|
1629
1650
|
])
|
|
1630
1651
|
]),
|
|
1631
1652
|
_: 1
|
|
@@ -1633,6 +1654,7 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
|
1633
1654
|
};
|
|
1634
1655
|
}
|
|
1635
1656
|
});
|
|
1657
|
+
const DtNotify = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/notify.vue"]]);
|
|
1636
1658
|
const _hoisted_1$9 = { class: "lang m-0" };
|
|
1637
1659
|
const _hoisted_2$5 = ["onClick"];
|
|
1638
1660
|
const _hoisted_3$3 = /* @__PURE__ */ createElementVNode("span", { class: "dt_header_icon text-lg text-gray-800 cursor-pointer px-3 hover:bg-gray-500 hover:bg-opacity-50 transition-all duration-300" }, [
|
|
@@ -1695,6 +1717,7 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
|
|
|
1695
1717
|
};
|
|
1696
1718
|
}
|
|
1697
1719
|
});
|
|
1720
|
+
const DtSize = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/size.vue"]]);
|
|
1698
1721
|
const _hoisted_1$8 = { class: "m-0" };
|
|
1699
1722
|
const _hoisted_2$4 = {
|
|
1700
1723
|
class: "pr-2",
|
|
@@ -1732,7 +1755,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
|
1732
1755
|
unref$1(slots).userInfo ? (openBlock(), createBlock(unref$1(DtSlotContainer), {
|
|
1733
1756
|
key: 0,
|
|
1734
1757
|
template: unref$1(slots).userInfo
|
|
1735
|
-
}, null, 8, ["template"])) : createCommentVNode("", true),
|
|
1758
|
+
}, null, 8, ["template"])) : createCommentVNode("v-if", true),
|
|
1736
1759
|
unref$1(getShowLoginOut) ? (openBlock(), createElementBlock("div", {
|
|
1737
1760
|
key: 1,
|
|
1738
1761
|
onClick: _cache[0] || (_cache[0] = ($event) => signOut()),
|
|
@@ -1742,7 +1765,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
|
1742
1765
|
[_directive_icon, "ant-design:logout-outlined"]
|
|
1743
1766
|
]),
|
|
1744
1767
|
createElementVNode("span", null, toDisplayString(unref$1(t)("LOGIN_OUT")), 1)
|
|
1745
|
-
])) : createCommentVNode("", true)
|
|
1768
|
+
])) : createCommentVNode("v-if", true)
|
|
1746
1769
|
])
|
|
1747
1770
|
]),
|
|
1748
1771
|
default: withCtx(() => [
|
|
@@ -1761,6 +1784,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
|
1761
1784
|
};
|
|
1762
1785
|
}
|
|
1763
1786
|
});
|
|
1787
|
+
const DtUserInfo = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/user-info.vue"]]);
|
|
1764
1788
|
var HandlerEnum = /* @__PURE__ */ ((HandlerEnum2) => {
|
|
1765
1789
|
HandlerEnum2[HandlerEnum2["CHANGE_LAYOUT"] = 0] = "CHANGE_LAYOUT";
|
|
1766
1790
|
HandlerEnum2[HandlerEnum2["SHOW_BREADCRUMB"] = 1] = "SHOW_BREADCRUMB";
|
|
@@ -1871,32 +1895,32 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
|
1871
1895
|
const menuTypeList = [
|
|
1872
1896
|
{
|
|
1873
1897
|
title: "\u5DE6\u4FA7\u83DC\u5355\u6A21\u5F0F",
|
|
1874
|
-
headTheme: Theme.LIGHT,
|
|
1875
|
-
menuTheme: Theme.DARK,
|
|
1898
|
+
headTheme: Theme$1.LIGHT,
|
|
1899
|
+
menuTheme: Theme$1.DARK,
|
|
1876
1900
|
mode: MenuMode.INLINE,
|
|
1877
1901
|
type: MenuType.SIDE,
|
|
1878
1902
|
split: false
|
|
1879
1903
|
},
|
|
1880
1904
|
{
|
|
1881
1905
|
title: "\u83DC\u5355\u6DF7\u5408\u6A21\u5F0F",
|
|
1882
|
-
headTheme: Theme.DARK,
|
|
1883
|
-
menuTheme: Theme.LIGHT,
|
|
1906
|
+
headTheme: Theme$1.DARK,
|
|
1907
|
+
menuTheme: Theme$1.LIGHT,
|
|
1884
1908
|
mode: MenuMode.INLINE,
|
|
1885
1909
|
type: MenuType.MIX,
|
|
1886
1910
|
split: true
|
|
1887
1911
|
},
|
|
1888
1912
|
{
|
|
1889
1913
|
title: "\u9876\u90E8\u83DC\u5355\u6A21\u5F0F",
|
|
1890
|
-
headTheme: Theme.DARK,
|
|
1891
|
-
menuTheme: Theme.LIGHT,
|
|
1914
|
+
headTheme: Theme$1.DARK,
|
|
1915
|
+
menuTheme: Theme$1.LIGHT,
|
|
1892
1916
|
mode: MenuMode.HORIZONTAL,
|
|
1893
1917
|
type: MenuType.TOP_MENU,
|
|
1894
1918
|
split: false
|
|
1895
1919
|
},
|
|
1896
1920
|
{
|
|
1897
1921
|
title: "\u5DE6\u4FA7\u83DC\u5355\u6DF7\u5408\u6A21\u5F0F",
|
|
1898
|
-
headTheme: Theme.LIGHT,
|
|
1899
|
-
menuTheme: Theme.DARK,
|
|
1922
|
+
headTheme: Theme$1.LIGHT,
|
|
1923
|
+
menuTheme: Theme$1.DARK,
|
|
1900
1924
|
mode: MenuMode.INLINE,
|
|
1901
1925
|
type: MenuType.MIX_SIDEBAR,
|
|
1902
1926
|
split: false
|
|
@@ -1934,6 +1958,7 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
|
1934
1958
|
};
|
|
1935
1959
|
}
|
|
1936
1960
|
});
|
|
1961
|
+
const DtMenuType = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/theme-drawer/menu-type.vue"]]);
|
|
1937
1962
|
const _hoisted_1$6 = { class: "flex justify-between mb-5" };
|
|
1938
1963
|
const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
1939
1964
|
__name: "select",
|
|
@@ -1971,6 +1996,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
|
1971
1996
|
};
|
|
1972
1997
|
}
|
|
1973
1998
|
});
|
|
1999
|
+
const DtTSelect = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/theme-drawer/select.vue"]]);
|
|
1974
2000
|
const _hoisted_1$5 = { class: "flex justify-between mb-5" };
|
|
1975
2001
|
const _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
1976
2002
|
__name: "switch",
|
|
@@ -2007,6 +2033,7 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
|
2007
2033
|
};
|
|
2008
2034
|
}
|
|
2009
2035
|
});
|
|
2036
|
+
const DtTSwitch = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/theme-drawer/switch.vue"]]);
|
|
2010
2037
|
const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
2011
2038
|
__name: "feature",
|
|
2012
2039
|
setup(__props) {
|
|
@@ -2083,7 +2110,7 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
|
2083
2110
|
return (_ctx, _cache) => {
|
|
2084
2111
|
return openBlock(), createElementBlock(Fragment, null, [
|
|
2085
2112
|
(openBlock(), createElementBlock(Fragment, null, renderList(switchItems, (item) => {
|
|
2086
|
-
return createVNode(
|
|
2113
|
+
return createVNode(DtTSwitch, {
|
|
2087
2114
|
key: item.title,
|
|
2088
2115
|
title: item.title,
|
|
2089
2116
|
event: item.event,
|
|
@@ -2091,7 +2118,7 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
|
2091
2118
|
}, null, 8, ["title", "event", "def"]);
|
|
2092
2119
|
}), 64)),
|
|
2093
2120
|
(openBlock(), createElementBlock(Fragment, null, renderList(selectItems, (item) => {
|
|
2094
|
-
return createVNode(
|
|
2121
|
+
return createVNode(DtTSelect, {
|
|
2095
2122
|
key: item.title,
|
|
2096
2123
|
title: item.title,
|
|
2097
2124
|
event: item.event,
|
|
@@ -2103,6 +2130,7 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
|
2103
2130
|
};
|
|
2104
2131
|
}
|
|
2105
2132
|
});
|
|
2133
|
+
const DtFeature = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/theme-drawer/feature.vue"]]);
|
|
2106
2134
|
const _hoisted_1$4 = { class: "mt-5" };
|
|
2107
2135
|
const _hoisted_2$2 = { class: "dt-setting-theme__tips p-3 text-12 bg-gray-100 rounded" };
|
|
2108
2136
|
const _sfc_main$e = /* @__PURE__ */ defineComponent({
|
|
@@ -2207,20 +2235,22 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
|
|
|
2207
2235
|
width: "320"
|
|
2208
2236
|
}, {
|
|
2209
2237
|
default: withCtx(() => [
|
|
2238
|
+
createCommentVNode(" \u5BFC\u822A\u680F\u6A21\u5F0F "),
|
|
2210
2239
|
createVNode(_component_ADivider, null, {
|
|
2211
2240
|
default: withCtx(() => [
|
|
2212
2241
|
createTextVNode(toDisplayString(unref$1(t)("NAV_MODE")), 1)
|
|
2213
2242
|
]),
|
|
2214
2243
|
_: 1
|
|
2215
2244
|
}),
|
|
2216
|
-
createVNode(unref$1(
|
|
2245
|
+
createVNode(unref$1(DtMenuType)),
|
|
2246
|
+
createCommentVNode(" \u754C\u9762\u663E\u793A "),
|
|
2217
2247
|
createVNode(_component_ADivider, null, {
|
|
2218
2248
|
default: withCtx(() => [
|
|
2219
2249
|
createTextVNode(toDisplayString(unref$1(t)("PAGE_SHOW")), 1)
|
|
2220
2250
|
]),
|
|
2221
2251
|
_: 1
|
|
2222
2252
|
}),
|
|
2223
|
-
createVNode(unref$1(
|
|
2253
|
+
createVNode(unref$1(DtFeature)),
|
|
2224
2254
|
createVNode(_component_ADivider),
|
|
2225
2255
|
createElementVNode("div", _hoisted_1$4, [
|
|
2226
2256
|
createVNode(_component_AButton, {
|
|
@@ -2253,6 +2283,7 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
|
|
|
2253
2283
|
};
|
|
2254
2284
|
}
|
|
2255
2285
|
});
|
|
2286
|
+
const DtSettingTheme = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/setting-theme.vue"]]);
|
|
2256
2287
|
function useSplitMenu(splitType) {
|
|
2257
2288
|
const menusRef = ref([]);
|
|
2258
2289
|
const { currentRoute } = useRouter();
|
|
@@ -2354,7 +2385,7 @@ function getShallowMenus() {
|
|
|
2354
2385
|
});
|
|
2355
2386
|
return shallowMenuList;
|
|
2356
2387
|
}
|
|
2357
|
-
const BasicMenu = {
|
|
2388
|
+
const BasicMenu$1 = {
|
|
2358
2389
|
items: {
|
|
2359
2390
|
type: Array
|
|
2360
2391
|
},
|
|
@@ -2371,7 +2402,7 @@ const BasicMenu = {
|
|
|
2371
2402
|
default: MenuType.SIDE
|
|
2372
2403
|
},
|
|
2373
2404
|
theme: {
|
|
2374
|
-
default: Theme.DARK
|
|
2405
|
+
default: Theme$1.DARK
|
|
2375
2406
|
},
|
|
2376
2407
|
inlineCollapsed: Boolean,
|
|
2377
2408
|
isHorizontal: Boolean,
|
|
@@ -2387,7 +2418,7 @@ const ItemProp = {
|
|
|
2387
2418
|
},
|
|
2388
2419
|
theme: {
|
|
2389
2420
|
type: String,
|
|
2390
|
-
default: Theme.DARK
|
|
2421
|
+
default: Theme$1.DARK
|
|
2391
2422
|
},
|
|
2392
2423
|
isHorizontal: Boolean,
|
|
2393
2424
|
showTitle: Boolean,
|
|
@@ -2412,7 +2443,7 @@ const contentProps = {
|
|
|
2412
2443
|
collapse: Boolean,
|
|
2413
2444
|
mixSider: Boolean,
|
|
2414
2445
|
theme: {
|
|
2415
|
-
default: Theme.DARK
|
|
2446
|
+
default: Theme$1.DARK
|
|
2416
2447
|
},
|
|
2417
2448
|
collapsedShowTitle: Boolean,
|
|
2418
2449
|
beforeClickFn: {
|
|
@@ -2437,6 +2468,7 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
|
|
|
2437
2468
|
};
|
|
2438
2469
|
}
|
|
2439
2470
|
});
|
|
2471
|
+
const MenuItemContent = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/sider/components/basic-menu/menu-item-content.vue"]]);
|
|
2440
2472
|
const _sfc_main$c = /* @__PURE__ */ defineComponent({
|
|
2441
2473
|
__name: "basic-menu-item",
|
|
2442
2474
|
props: ItemProp,
|
|
@@ -2448,13 +2480,14 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent({
|
|
|
2448
2480
|
key: _ctx.item.url
|
|
2449
2481
|
}, {
|
|
2450
2482
|
default: withCtx(() => [
|
|
2451
|
-
createVNode(
|
|
2483
|
+
createVNode(MenuItemContent, normalizeProps(guardReactiveProps(props)), null, 16)
|
|
2452
2484
|
]),
|
|
2453
2485
|
_: 1
|
|
2454
2486
|
});
|
|
2455
2487
|
};
|
|
2456
2488
|
}
|
|
2457
2489
|
});
|
|
2490
|
+
const BasicMenuItem = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/sider/components/basic-menu/basic-menu-item.vue"]]);
|
|
2458
2491
|
const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
2459
2492
|
__name: "basic-sub-menu-item",
|
|
2460
2493
|
props: ItemProp,
|
|
@@ -2472,14 +2505,16 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
2472
2505
|
const _component_BasicSubMenuItem = resolveComponent("BasicSubMenuItem", true);
|
|
2473
2506
|
const _component_ASubMenu = SubMenu;
|
|
2474
2507
|
return openBlock(), createElementBlock(Fragment, null, [
|
|
2475
|
-
|
|
2508
|
+
createCommentVNode(" \u6CA1\u6709\u5B50\u8282\u70B9 "),
|
|
2509
|
+
!menuHasChildren(unref$1(item)) && unref$1(getShowMenu) ? (openBlock(), createBlock(BasicMenuItem, normalizeProps(mergeProps({ key: 0 }, props)), null, 16)) : createCommentVNode("v-if", true),
|
|
2510
|
+
createCommentVNode(" \u6709\u5B50\u8282\u70B9 "),
|
|
2476
2511
|
menuHasChildren(unref$1(item)) && unref$1(getShowMenu) ? (openBlock(), createBlock(_component_ASubMenu, {
|
|
2477
2512
|
class: normalizeClass([unref$1(theme)]),
|
|
2478
2513
|
key: unref$1(item).id,
|
|
2479
2514
|
popupClassName: "app-top-menu-popup"
|
|
2480
2515
|
}, {
|
|
2481
2516
|
title: withCtx(() => [
|
|
2482
|
-
createVNode(
|
|
2517
|
+
createVNode(MenuItemContent, mergeProps(props, { item: unref$1(item) }), null, 16, ["item"])
|
|
2483
2518
|
]),
|
|
2484
2519
|
default: withCtx(() => [
|
|
2485
2520
|
(openBlock(true), createElementBlock(Fragment, null, renderList(unref$1(item).children, (childrenItem) => {
|
|
@@ -2489,14 +2524,15 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
2489
2524
|
}), 128))
|
|
2490
2525
|
]),
|
|
2491
2526
|
_: 1
|
|
2492
|
-
}, 8, ["class"])) : createCommentVNode("", true)
|
|
2527
|
+
}, 8, ["class"])) : createCommentVNode("v-if", true)
|
|
2493
2528
|
], 64);
|
|
2494
2529
|
};
|
|
2495
2530
|
}
|
|
2496
2531
|
});
|
|
2532
|
+
const BasicSubMenuItem = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/sider/components/basic-menu/basic-sub-menu-item.vue"]]);
|
|
2497
2533
|
const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
2498
2534
|
__name: "basic-menu",
|
|
2499
|
-
props: BasicMenu,
|
|
2535
|
+
props: BasicMenu$1,
|
|
2500
2536
|
emits: ["menuClick"],
|
|
2501
2537
|
setup(__props, { emit: emits }) {
|
|
2502
2538
|
const {
|
|
@@ -2583,7 +2619,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
|
2583
2619
|
}, {
|
|
2584
2620
|
default: withCtx(() => [
|
|
2585
2621
|
(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.items, (item) => {
|
|
2586
|
-
return openBlock(), createBlock(
|
|
2622
|
+
return openBlock(), createBlock(BasicSubMenuItem, {
|
|
2587
2623
|
key: item.id,
|
|
2588
2624
|
item,
|
|
2589
2625
|
theme: _ctx.theme,
|
|
@@ -2596,6 +2632,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
|
2596
2632
|
};
|
|
2597
2633
|
}
|
|
2598
2634
|
});
|
|
2635
|
+
const BasicMenu = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/sider/components/basic-menu/basic-menu.vue"]]);
|
|
2599
2636
|
const _sfc_main$9 = defineComponent({
|
|
2600
2637
|
name: "LayoutMenu",
|
|
2601
2638
|
props: {
|
|
@@ -2667,7 +2704,7 @@ const _sfc_main$9 = defineComponent({
|
|
|
2667
2704
|
}
|
|
2668
2705
|
}, null);
|
|
2669
2706
|
}
|
|
2670
|
-
return createVNode(
|
|
2707
|
+
return createVNode(DtLogo, {
|
|
2671
2708
|
"showTitle": !unref$1(getCollapsed),
|
|
2672
2709
|
"class": unref$1(getLogoClass),
|
|
2673
2710
|
"theme": unref$1(getComputedTheme)
|
|
@@ -2692,7 +2729,7 @@ const _sfc_main$9 = defineComponent({
|
|
|
2692
2729
|
} = unref$1(getMenuProps);
|
|
2693
2730
|
if (!menus || !menus.length)
|
|
2694
2731
|
return null;
|
|
2695
|
-
return createVNode(
|
|
2732
|
+
return createVNode(BasicMenu, mergeProps(menuProps, {
|
|
2696
2733
|
"isHorizontal": props.isHorizontal,
|
|
2697
2734
|
"type": unref$1(getMenuType),
|
|
2698
2735
|
"showLogo": unref$1(getIsShowLogo),
|
|
@@ -2707,6 +2744,7 @@ const _sfc_main$9 = defineComponent({
|
|
|
2707
2744
|
};
|
|
2708
2745
|
}
|
|
2709
2746
|
});
|
|
2747
|
+
const LayoutMenu = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/sider/components/layout-menu.vue"]]);
|
|
2710
2748
|
const _hoisted_1$3 = {
|
|
2711
2749
|
key: 3,
|
|
2712
2750
|
class: "max-w-full pl-3 pr-20 dt-reuse-tabs__top"
|
|
@@ -2764,44 +2802,44 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
2764
2802
|
"w-0 flex-1": unref$1(getShowTab)
|
|
2765
2803
|
}])
|
|
2766
2804
|
}, [
|
|
2767
|
-
unref$1(getShowHeaderLogo) ? (openBlock(), createBlock(unref$1(
|
|
2805
|
+
unref$1(getShowHeaderLogo) ? (openBlock(), createBlock(unref$1(DtLogo), {
|
|
2768
2806
|
key: 0,
|
|
2769
2807
|
theme: unref$1(getHeaderTheme),
|
|
2770
2808
|
class: "dt-header-logo"
|
|
2771
|
-
}, null, 8, ["theme"])) : createCommentVNode("", true),
|
|
2772
|
-
unref$1(getShowHeaderTrigger) && !unref$1(getSplit) && !unref$1(getShowTab) ? (openBlock(), createBlock(unref$1(
|
|
2809
|
+
}, null, 8, ["theme"])) : createCommentVNode("v-if", true),
|
|
2810
|
+
unref$1(getShowHeaderTrigger) && !unref$1(getSplit) && !unref$1(getShowTab) ? (openBlock(), createBlock(unref$1(DtTrigger), {
|
|
2773
2811
|
key: 1,
|
|
2774
2812
|
theme: unref$1(getHeaderTheme)
|
|
2775
|
-
}, null, 8, ["theme"])) : createCommentVNode("", true),
|
|
2776
|
-
unref$1(getShowBread) && !unref$1(getShowTab) ? (openBlock(), createBlock(unref$1(
|
|
2813
|
+
}, null, 8, ["theme"])) : createCommentVNode("v-if", true),
|
|
2814
|
+
unref$1(getShowBread) && !unref$1(getShowTab) ? (openBlock(), createBlock(unref$1(DtBreadCrumb), { key: 2 })) : createCommentVNode("v-if", true),
|
|
2777
2815
|
unref$1(getShowTab) ? (openBlock(), createElementBlock("div", _hoisted_1$3, [
|
|
2778
|
-
createVNode(
|
|
2779
|
-
])) : createCommentVNode("", true)
|
|
2816
|
+
createVNode(MultipleTabs)
|
|
2817
|
+
])) : createCommentVNode("v-if", true)
|
|
2780
2818
|
], 2),
|
|
2781
2819
|
unref$1(getShowTopMenu) ? (openBlock(), createElementBlock("div", _hoisted_2$1, [
|
|
2782
|
-
createVNode(
|
|
2820
|
+
createVNode(LayoutMenu, {
|
|
2783
2821
|
isHorizontal: true,
|
|
2784
2822
|
theme: unref$1(getHeaderTheme),
|
|
2785
2823
|
splitType: unref$1(getSplitType),
|
|
2786
2824
|
menuMode: unref$1(getMenuMode)
|
|
2787
2825
|
}, null, 8, ["theme", "splitType", "menuMode"])
|
|
2788
|
-
])) : createCommentVNode("", true),
|
|
2826
|
+
])) : createCommentVNode("v-if", true),
|
|
2789
2827
|
createElementVNode("div", {
|
|
2790
2828
|
class: "dt-header-action flex items-center",
|
|
2791
2829
|
style: normalizeStyle({
|
|
2792
2830
|
"padding-right": unref$1(getShowSettingTheme) ? "" : "20px"
|
|
2793
2831
|
})
|
|
2794
2832
|
}, [
|
|
2795
|
-
unref$1(getShowSearch) ? (openBlock(), createBlock(unref$1(
|
|
2796
|
-
unref$1(getShowNotice) ? (openBlock(), createBlock(unref$1(
|
|
2797
|
-
unref$1(getShowUiSize) ? (openBlock(), createBlock(unref$1(
|
|
2798
|
-
unref$1(getShowFullScreen) ? (openBlock(), createBlock(unref$1(
|
|
2799
|
-
unref$1(getShowLocale) ? (openBlock(), createBlock(unref$1(
|
|
2833
|
+
unref$1(getShowSearch) ? (openBlock(), createBlock(unref$1(DtMenuFilter), { key: 0 })) : createCommentVNode("v-if", true),
|
|
2834
|
+
unref$1(getShowNotice) ? (openBlock(), createBlock(unref$1(DtNotify), { key: 1 })) : createCommentVNode("v-if", true),
|
|
2835
|
+
unref$1(getShowUiSize) ? (openBlock(), createBlock(unref$1(DtSize), { key: 2 })) : createCommentVNode("v-if", true),
|
|
2836
|
+
unref$1(getShowFullScreen) ? (openBlock(), createBlock(unref$1(DtFullScreen), { key: 3 })) : createCommentVNode("v-if", true),
|
|
2837
|
+
unref$1(getShowLocale) ? (openBlock(), createBlock(unref$1(DtLangPicker), {
|
|
2800
2838
|
key: 4,
|
|
2801
2839
|
reload: true
|
|
2802
|
-
})) : createCommentVNode("", true),
|
|
2803
|
-
createVNode(unref$1(
|
|
2804
|
-
unref$1(getShowSettingTheme) ? (openBlock(), createBlock(unref$1(
|
|
2840
|
+
})) : createCommentVNode("v-if", true),
|
|
2841
|
+
createVNode(unref$1(DtUserInfo)),
|
|
2842
|
+
unref$1(getShowSettingTheme) ? (openBlock(), createBlock(unref$1(DtSettingTheme), { key: 5 })) : createCommentVNode("v-if", true)
|
|
2805
2843
|
], 4)
|
|
2806
2844
|
]),
|
|
2807
2845
|
_: 1
|
|
@@ -2809,6 +2847,7 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
2809
2847
|
};
|
|
2810
2848
|
}
|
|
2811
2849
|
});
|
|
2850
|
+
const DtHeader = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/index.vue"]]);
|
|
2812
2851
|
function useMenuSwitch() {
|
|
2813
2852
|
const brokenRef = ref(false);
|
|
2814
2853
|
const { getMiniWidthNumber } = useMenu();
|
|
@@ -2860,6 +2899,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
|
2860
2899
|
};
|
|
2861
2900
|
}
|
|
2862
2901
|
});
|
|
2902
|
+
const LayoutTrigger = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/sider/components/sider-trigger.vue"]]);
|
|
2863
2903
|
const _sfc_main$6 = /* @__PURE__ */ defineComponent({
|
|
2864
2904
|
__name: "drag-bar",
|
|
2865
2905
|
setup(__props) {
|
|
@@ -2886,6 +2926,7 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
|
|
|
2886
2926
|
};
|
|
2887
2927
|
}
|
|
2888
2928
|
});
|
|
2929
|
+
const DragBar = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/sider/components/drag-bar.vue"]]);
|
|
2889
2930
|
const _hoisted_1$2 = { class: "dt-mix-sider__shallow-menu" };
|
|
2890
2931
|
const _hoisted_2 = { class: "m-0" };
|
|
2891
2932
|
const _hoisted_3 = { class: "dt-mix-sider__sub-shallow-menu" };
|
|
@@ -2969,7 +3010,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
|
2969
3010
|
style: unref$1(getWrapStyle),
|
|
2970
3011
|
class: ["dt-mix-sider fixed top-0 left-0 h-full overflow-hidden", unref$1(getMenuTheme)]
|
|
2971
3012
|
}, getMenuEvents), [
|
|
2972
|
-
createVNode(
|
|
3013
|
+
createVNode(DtLogo, {
|
|
2973
3014
|
showTitle: false,
|
|
2974
3015
|
class: normalizeClass("justify-center z-10")
|
|
2975
3016
|
}),
|
|
@@ -3043,7 +3084,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
|
3043
3084
|
]),
|
|
3044
3085
|
_: 1
|
|
3045
3086
|
})
|
|
3046
|
-
], 4)) : createCommentVNode("", true)
|
|
3087
|
+
], 4)) : createCommentVNode("v-if", true)
|
|
3047
3088
|
]),
|
|
3048
3089
|
_: 1
|
|
3049
3090
|
})
|
|
@@ -3052,6 +3093,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
|
3052
3093
|
};
|
|
3053
3094
|
}
|
|
3054
3095
|
});
|
|
3096
|
+
const MixSider = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/sider/mix-sider.vue"]]);
|
|
3055
3097
|
const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
3056
3098
|
__name: "index",
|
|
3057
3099
|
setup(__props) {
|
|
@@ -3112,17 +3154,17 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
3112
3154
|
const getMode = computed(() => {
|
|
3113
3155
|
return unref$1(getSplit) ? MenuMode.INLINE : null;
|
|
3114
3156
|
});
|
|
3115
|
-
const renderTrigger = h(
|
|
3157
|
+
const renderTrigger = h(LayoutTrigger);
|
|
3116
3158
|
return (_ctx, _cache) => {
|
|
3117
3159
|
const _component_ALayoutSider = LayoutSider;
|
|
3118
|
-
return unref$1(getIsMixSidebar) ? (openBlock(),
|
|
3160
|
+
return unref$1(getIsMixSidebar) ? (openBlock(), createElementBlock(Fragment, {
|
|
3119
3161
|
key: 0
|
|
3120
|
-
})) : (openBlock(), createElementBlock(Fragment, {
|
|
3162
|
+
}, [createCommentVNode(" \u5DE6\u4FA7\u83DC\u5355\u6DF7\u5408\u6A21\u5F0F "), createVNode(MixSider)], 64)) : (openBlock(), createElementBlock(Fragment, {
|
|
3121
3163
|
key: 1
|
|
3122
|
-
}, [unref$1(getMenuFixed) ? withDirectives((openBlock(), createElementBlock("div", {
|
|
3164
|
+
}, [createCommentVNode(" \u521B\u5EFA\u4E00\u4E2A\u7A7A\u7684div\u5728\u5DE6\u4FA7\u5360\u4F4D "), unref$1(getMenuFixed) ? withDirectives((openBlock(), createElementBlock("div", {
|
|
3123
3165
|
key: 0,
|
|
3124
3166
|
style: normalizeStyle(unref$1(hiddenDomStyle))
|
|
3125
|
-
}, null, 4)), [[vShow, unref$1(showClassSideBarRef)]]) : createCommentVNode("", true), withDirectives(createVNode(_component_ALayoutSider, mergeProps({
|
|
3167
|
+
}, null, 4)), [[vShow, unref$1(showClassSideBarRef)]]) : createCommentVNode("v-if", true), withDirectives(createVNode(_component_ALayoutSider, mergeProps({
|
|
3126
3168
|
ref_key: "sideRef",
|
|
3127
3169
|
ref: sideRef,
|
|
3128
3170
|
collapsible: "",
|
|
@@ -3135,11 +3177,11 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
3135
3177
|
theme: unref$1(getMenuTheme),
|
|
3136
3178
|
trigger: unref$1(renderTrigger)
|
|
3137
3179
|
}, unref$1(getTriggerAttr)), {
|
|
3138
|
-
default: withCtx(() => [createVNode(
|
|
3180
|
+
default: withCtx(() => [createVNode(LayoutMenu, {
|
|
3139
3181
|
theme: unref$1(getMenuTheme),
|
|
3140
3182
|
menuMode: unref$1(getMode),
|
|
3141
3183
|
splitType: unref$1(getSplitType)
|
|
3142
|
-
}, null, 8, ["theme", "menuMode", "splitType"]), createVNode(
|
|
3184
|
+
}, null, 8, ["theme", "menuMode", "splitType"]), createVNode(DragBar, {
|
|
3143
3185
|
ref_key: "dragBarRef",
|
|
3144
3186
|
ref: dragBarRef
|
|
3145
3187
|
}, null, 512)]),
|
|
@@ -3148,6 +3190,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
3148
3190
|
};
|
|
3149
3191
|
}
|
|
3150
3192
|
});
|
|
3193
|
+
const LayoutSideBar = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/sider/index.vue"]]);
|
|
3151
3194
|
const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
3152
3195
|
__name: "multiple-header",
|
|
3153
3196
|
setup(__props) {
|
|
@@ -3195,21 +3238,23 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
|
3195
3238
|
});
|
|
3196
3239
|
return (_ctx, _cache) => {
|
|
3197
3240
|
return openBlock(), createElementBlock("div", null, [
|
|
3241
|
+
createCommentVNode(" \u751F\u6210\u4E00\u4E2A\u7A7A\u7684\u5360\u4F4D\u7B26, \u53EA\u6709\u5728header\u4E3Afixed\u7684\u6A21\u5F0F\u624D\u663E\u793A "),
|
|
3198
3242
|
unref$1(getFixed) ? (openBlock(), createElementBlock("div", {
|
|
3199
3243
|
key: 0,
|
|
3200
3244
|
style: normalizeStyle(unref$1(getPlaceholderDomStyle))
|
|
3201
|
-
}, null, 4)) : createCommentVNode("", true),
|
|
3245
|
+
}, null, 4)) : createCommentVNode("v-if", true),
|
|
3202
3246
|
createElementVNode("div", {
|
|
3203
3247
|
style: normalizeStyle(unref$1(getWrapStyle)),
|
|
3204
3248
|
class: normalizeClass(unref$1(getClass))
|
|
3205
3249
|
}, [
|
|
3206
|
-
unref$1(getShowInsetHeaderRef) ? (openBlock(), createBlock(
|
|
3207
|
-
unref$1(getShowMultipleTab) && !unref$1(getMultipleTabPosIsTop) ? (openBlock(), createBlock(
|
|
3250
|
+
unref$1(getShowInsetHeaderRef) ? (openBlock(), createBlock(DtHeader, { key: 0 })) : createCommentVNode("v-if", true),
|
|
3251
|
+
unref$1(getShowMultipleTab) && !unref$1(getMultipleTabPosIsTop) ? (openBlock(), createBlock(MultipleTabs, { key: 1 })) : createCommentVNode("v-if", true)
|
|
3208
3252
|
], 6)
|
|
3209
3253
|
]);
|
|
3210
3254
|
};
|
|
3211
3255
|
}
|
|
3212
3256
|
});
|
|
3257
|
+
const LayoutMultipleHeader = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/multiple-header.vue"]]);
|
|
3213
3258
|
const _hoisted_1$1 = { class: "pr-2.5" };
|
|
3214
3259
|
const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
3215
3260
|
__name: "index",
|
|
@@ -3226,7 +3271,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
3226
3271
|
};
|
|
3227
3272
|
});
|
|
3228
3273
|
return (_ctx, _cache) => {
|
|
3229
|
-
return openBlock(), createBlock(unref$1(LayoutFooter), {
|
|
3274
|
+
return openBlock(), createBlock(unref$1(LayoutFooter$1), {
|
|
3230
3275
|
class: "text-center p-0 w-full block border-t border-gray-200",
|
|
3231
3276
|
style: normalizeStyle(unref$1(footerOptions))
|
|
3232
3277
|
}, {
|
|
@@ -3239,6 +3284,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
3239
3284
|
};
|
|
3240
3285
|
}
|
|
3241
3286
|
});
|
|
3287
|
+
const LayoutFooter = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/footer/index.vue"]]);
|
|
3242
3288
|
const _hoisted_1 = ["loading"];
|
|
3243
3289
|
const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
3244
3290
|
__name: "index",
|
|
@@ -3255,7 +3301,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
3255
3301
|
});
|
|
3256
3302
|
return (_ctx, _cache) => {
|
|
3257
3303
|
const _component_router_view = resolveComponent("router-view");
|
|
3258
|
-
const _component_ALayoutContent = LayoutContent;
|
|
3304
|
+
const _component_ALayoutContent = LayoutContent$1;
|
|
3259
3305
|
return openBlock(), createElementBlock("div", {
|
|
3260
3306
|
id: "dt-layout-content",
|
|
3261
3307
|
class: normalizeClass([["dt-layout-content", unref$1(getLayoutContentMode)], "relative flex-auto overflow-x-hidden min-h-0 flex"]),
|
|
@@ -3266,7 +3312,9 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
3266
3312
|
createVNode(_component_router_view, null, {
|
|
3267
3313
|
default: withCtx(({ Component, route }) => [
|
|
3268
3314
|
createVNode(Transition, {
|
|
3269
|
-
name: getTransitionName(route)
|
|
3315
|
+
name: getTransitionName(route),
|
|
3316
|
+
mode: "out-in",
|
|
3317
|
+
appear: ""
|
|
3270
3318
|
}, {
|
|
3271
3319
|
default: withCtx(() => [
|
|
3272
3320
|
!route.meta.hideTab && unref$1(getCanCache) ? (openBlock(), createBlock(KeepAlive, {
|
|
@@ -3290,9 +3338,16 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
3290
3338
|
};
|
|
3291
3339
|
}
|
|
3292
3340
|
});
|
|
3341
|
+
const LayoutContent = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/content/index.vue"]]);
|
|
3293
3342
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
3294
3343
|
__name: "index",
|
|
3295
3344
|
setup(__props) {
|
|
3345
|
+
ConfigProvider.config({
|
|
3346
|
+
prefixCls: "custom",
|
|
3347
|
+
theme: {
|
|
3348
|
+
primaryColor: "#25b864"
|
|
3349
|
+
}
|
|
3350
|
+
});
|
|
3296
3351
|
const { currentRoute } = useRouter();
|
|
3297
3352
|
const { getShowFullHeaderRef, getIsZH, getHeaderHeight, getUiSize } = useHeader();
|
|
3298
3353
|
const { getSplit, getShowMenu, getShowSidebar, getIsMixSidebar } = useMenu();
|
|
@@ -3342,7 +3397,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
3342
3397
|
);
|
|
3343
3398
|
return (_ctx, _cache) => {
|
|
3344
3399
|
const _component_ALayout = Layout;
|
|
3345
|
-
const _component_AConfigProvider = ConfigProvider;
|
|
3400
|
+
const _component_AConfigProvider = ConfigProvider$1;
|
|
3346
3401
|
return openBlock(), createElementBlock("div", {
|
|
3347
3402
|
class: normalizeClass(["dt-theme w-full h-full", `dt-theme-${unref$1(getUiSize)}`])
|
|
3348
3403
|
}, [
|
|
@@ -3356,24 +3411,24 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
3356
3411
|
class: "w-full h-full flex"
|
|
3357
3412
|
}, {
|
|
3358
3413
|
default: withCtx(() => [
|
|
3359
|
-
createVNode(
|
|
3360
|
-
unref$1(getShowFullHeaderRef) ? (openBlock(), createBlock(
|
|
3414
|
+
createVNode(DtFeature$1),
|
|
3415
|
+
unref$1(getShowFullHeaderRef) ? (openBlock(), createBlock(DtHeader, {
|
|
3361
3416
|
key: 0,
|
|
3362
3417
|
fixed: ""
|
|
3363
|
-
})) : createCommentVNode("", true),
|
|
3418
|
+
})) : createCommentVNode("v-if", true),
|
|
3364
3419
|
createVNode(_component_ALayout, {
|
|
3365
3420
|
class: normalizeClass(unref$1(layoutClass)),
|
|
3366
3421
|
style: normalizeStyle(unref$1(layoutOption))
|
|
3367
3422
|
}, {
|
|
3368
3423
|
default: withCtx(() => [
|
|
3369
|
-
unref$1(getShowSidebar) ? (openBlock(), createBlock(
|
|
3424
|
+
unref$1(getShowSidebar) ? (openBlock(), createBlock(LayoutSideBar, { key: 0 })) : createCommentVNode("v-if", true),
|
|
3370
3425
|
createVNode(_component_ALayout, { class: "dt-theme-main flex w-full h-ful transition-width duration-200" }, {
|
|
3371
3426
|
default: withCtx(() => [
|
|
3372
|
-
createVNode(
|
|
3373
|
-
createVNode(
|
|
3427
|
+
createVNode(LayoutMultipleHeader),
|
|
3428
|
+
createVNode(LayoutContent, {
|
|
3374
3429
|
style: normalizeStyle(unref$1(getContentStyle))
|
|
3375
3430
|
}, null, 8, ["style"]),
|
|
3376
|
-
unref$1(getFooter) && unref$1(getFooter)["show"] ? (openBlock(), createBlock(
|
|
3431
|
+
unref$1(getFooter) && unref$1(getFooter)["show"] ? (openBlock(), createBlock(LayoutFooter, { key: 0 })) : createCommentVNode("v-if", true)
|
|
3377
3432
|
]),
|
|
3378
3433
|
_: 1
|
|
3379
3434
|
})
|
|
@@ -3390,6 +3445,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
3390
3445
|
};
|
|
3391
3446
|
}
|
|
3392
3447
|
});
|
|
3448
|
+
const Theme = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/index.vue"]]);
|
|
3393
3449
|
const EN = {
|
|
3394
3450
|
"UI": {
|
|
3395
3451
|
"ADD": "Add ",
|
|
@@ -3598,7 +3654,7 @@ const ZH = {
|
|
|
3598
3654
|
}
|
|
3599
3655
|
};
|
|
3600
3656
|
const uiLang = (lang) => lang === Language.ZH ? ZH : EN;
|
|
3601
|
-
const DtTheme = withInstall$1(
|
|
3657
|
+
const DtTheme = withInstall$1(Theme);
|
|
3602
3658
|
export {
|
|
3603
3659
|
ContentMode,
|
|
3604
3660
|
DtTheme,
|