@dt-frames/ui 2.0.10 → 2.0.12
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/container/index.d.ts +2 -93
- package/es/components/curd/index.js +7 -2966
- package/es/components/curd/src/components/Curd.d.ts +19 -891
- package/es/components/curd/src/hooks/useCurd.d.ts +2 -2
- package/es/components/curd/src/props.d.ts +6 -4
- package/es/components/curd/src/types/curd.type.d.ts +2 -2
- package/es/components/drawer/index.d.ts +10 -167
- package/es/components/drawer/index.js +24 -462
- package/es/components/drawer/src/components/DrawerFooter.d.ts +1 -84
- package/es/components/drawer/src/index.d.ts +10 -167
- package/es/components/drawer/src/types/index.type.d.ts +2 -2
- package/es/components/form/index.d.ts +5 -1
- package/es/components/form/index.js +81 -485
- package/es/components/form/src/components/FormItem.d.ts +3 -1
- package/es/components/form/src/components/formIcon.d.ts +3 -11
- package/es/components/form/src/components/formInputUseDialog.d.ts +2 -2
- package/es/components/form/src/props.d.ts +7 -5
- package/es/components/form/src/types/form.type.d.ts +3 -0
- package/es/components/form/src/types/items.type.d.ts +6 -4
- package/es/components/icons/index.d.ts +497 -497
- package/es/components/iframe/index.d.ts +2 -0
- package/es/components/iframe/index.js +72 -0
- package/es/components/iframe/index.less +29 -0
- package/es/components/iframe/src/index.d.ts +38 -0
- package/es/components/modal/index.d.ts +2 -1
- package/es/components/modal/index.js +23 -475
- package/es/components/modal/src/components/Modal.d.ts +1 -1
- package/es/components/modal/src/components/ModalFooter.d.ts +2 -95
- package/es/components/modal/src/components/ModalWrap.d.ts +1 -75
- package/es/components/modal/src/index.d.ts +14 -179
- package/es/components/table/index.js +328 -2030
- package/es/components/table/src/components/TableAction.d.ts +1 -1
- package/es/components/table/src/components/editTable/EditTableCell.d.ts +1 -1
- package/es/components/table/src/components/tableSetting/DownloadCtrl.d.ts +1 -877
- package/es/components/table/src/index.d.ts +10 -10
- package/es/components/tree/src/components/TreeHeader.d.ts +1 -1
- package/es/components/tree/src/index.d.ts +2 -2
- package/es/components/upload/index.d.ts +2 -0
- package/es/components/upload/index.js +419 -0
- package/es/components/upload/index.less +37 -0
- package/es/components/upload/src/basicProps.d.ts +89 -0
- package/es/components/upload/src/components/PdfView.d.ts +9 -0
- package/es/components/upload/src/hooks/useFile.d.ts +15 -0
- package/es/components/upload/src/index.d.ts +236 -0
- package/es/components/upload/src/type/file.d.ts +10 -0
- package/es/components/upload/src/utils/upload.d.ts +2 -0
- package/es/theme/index.d.ts +2 -1
- package/es/theme/index.js +98 -145
- package/es/theme/index.less +5 -1
- package/es/theme/src/components/content/index.d.ts +2 -0
- package/es/theme/src/components/header/index.d.ts +809 -809
- package/es/theme/src/components/header/multiple-header.d.ts +918 -918
- package/es/theme/src/hooks/useMenu.d.ts +1 -1
- package/es/theme/src/index.d.ts +2059 -2057
- package/index.d.ts +3 -1
- package/index.js +24 -2
- package/manualContentPath.js +124 -0
- package/package.json +8 -3
- package/vite.config.ts +19 -4
- package/es/components/curd/index.less +0 -2
- package/es/components/form/src/index.d.ts +0 -2922
- package/es/components/table/src/components/TableHeader.d.ts +0 -1136
- package/es/components/table/src/components/tableSetting/Download.d.ts +0 -922
- package/es/components/table/src/components/tableSetting/index.d.ts +0 -1030
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
|
|
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";
|
|
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,8 @@ 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 {
|
|
18
|
+
import { DtSlotContainer as DtSlotContainer$1 } from "../components/container";
|
|
19
|
+
import { Popover as Popover$1, Modal, LayoutFooter } from "ant-design-vue";
|
|
19
20
|
import "ant-design-vue/es/avatar/style";
|
|
20
21
|
import "ant-design-vue/es/drawer/style";
|
|
21
22
|
import "ant-design-vue/es/button/style";
|
|
@@ -28,11 +29,11 @@ import en from "ant-design-vue/es/locale/en_US";
|
|
|
28
29
|
import dayjs from "dayjs";
|
|
29
30
|
import "dayjs/locale/zh-cn";
|
|
30
31
|
import "dayjs/locale/es-us";
|
|
31
|
-
var Theme
|
|
32
|
+
var Theme = /* @__PURE__ */ ((Theme2) => {
|
|
32
33
|
Theme2["DARK"] = "dark";
|
|
33
34
|
Theme2["LIGHT"] = "light";
|
|
34
35
|
return Theme2;
|
|
35
|
-
})(Theme
|
|
36
|
+
})(Theme || {});
|
|
36
37
|
var MenuType = /* @__PURE__ */ ((MenuType2) => {
|
|
37
38
|
MenuType2["SIDE"] = "sidebar";
|
|
38
39
|
MenuType2["TOP_MENU"] = "top-menu";
|
|
@@ -69,7 +70,7 @@ const defaultThemeConf = {
|
|
|
69
70
|
},
|
|
70
71
|
headOptions: {
|
|
71
72
|
fixed: true,
|
|
72
|
-
theme: Theme
|
|
73
|
+
theme: Theme.LIGHT,
|
|
73
74
|
showLogo: true,
|
|
74
75
|
showBackToTop: true,
|
|
75
76
|
useLockPage: true,
|
|
@@ -85,7 +86,7 @@ const defaultThemeConf = {
|
|
|
85
86
|
},
|
|
86
87
|
menuOptions: {
|
|
87
88
|
fixed: true,
|
|
88
|
-
theme: Theme
|
|
89
|
+
theme: Theme.DARK,
|
|
89
90
|
collapsed: false,
|
|
90
91
|
collapsedShowTitle: false,
|
|
91
92
|
canDrag: true,
|
|
@@ -682,27 +683,18 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
|
|
|
682
683
|
key: 0,
|
|
683
684
|
target: getTarget,
|
|
684
685
|
visibilityHeight: 300
|
|
685
|
-
})) : createCommentVNode("
|
|
686
|
+
})) : createCommentVNode("", true);
|
|
686
687
|
};
|
|
687
688
|
}
|
|
688
689
|
});
|
|
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"]]);
|
|
697
690
|
const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
698
691
|
__name: "index",
|
|
699
692
|
setup(__props) {
|
|
700
693
|
return (_ctx, _cache) => {
|
|
701
|
-
return openBlock(), createBlock(
|
|
694
|
+
return openBlock(), createBlock(_sfc_main$z);
|
|
702
695
|
};
|
|
703
696
|
}
|
|
704
697
|
});
|
|
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"]]);
|
|
706
698
|
const _hoisted_1$i = /* @__PURE__ */ createElementVNode("i", { class: "block i ic:baseline-autorenew" }, null, -1);
|
|
707
699
|
const _hoisted_2$9 = [
|
|
708
700
|
_hoisted_1$i
|
|
@@ -723,7 +715,6 @@ const _sfc_main$x = /* @__PURE__ */ defineComponent({
|
|
|
723
715
|
};
|
|
724
716
|
}
|
|
725
717
|
});
|
|
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"]]);
|
|
727
718
|
function useTabs(_router) {
|
|
728
719
|
const tabStore = useRouteReuseStore();
|
|
729
720
|
const router = _router || useRouter();
|
|
@@ -905,7 +896,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
|
905
896
|
}, 1032, ["onClick", "disabled"]),
|
|
906
897
|
item.divider ? (openBlock(), createBlock(_component_AMenuDivider, {
|
|
907
898
|
key: `d-${index}`
|
|
908
|
-
})) : createCommentVNode("
|
|
899
|
+
})) : createCommentVNode("", true)
|
|
909
900
|
], 64);
|
|
910
901
|
}), 256))
|
|
911
902
|
]),
|
|
@@ -929,7 +920,6 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
|
929
920
|
};
|
|
930
921
|
}
|
|
931
922
|
});
|
|
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"]]);
|
|
933
923
|
function initAffixTabs() {
|
|
934
924
|
const affixList = ref([]);
|
|
935
925
|
const tabStore = useRouteReuseStore();
|
|
@@ -1064,10 +1054,10 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
1064
1054
|
closable: !(item && item.meta && item.meta.affix)
|
|
1065
1055
|
}, {
|
|
1066
1056
|
tab: withCtx(() => [
|
|
1067
|
-
unref$1(getShowQuick) ? (openBlock(), createBlock(unref$1(
|
|
1057
|
+
unref$1(getShowQuick) ? (openBlock(), createBlock(unref$1(_sfc_main$w), {
|
|
1068
1058
|
key: 0,
|
|
1069
1059
|
tabItem: item
|
|
1070
|
-
}, null, 8, ["tabItem"])) : createCommentVNode("
|
|
1060
|
+
}, null, 8, ["tabItem"])) : createCommentVNode("", true)
|
|
1071
1061
|
]),
|
|
1072
1062
|
_: 2
|
|
1073
1063
|
}, 1032, ["closable"]);
|
|
@@ -1078,12 +1068,12 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
1078
1068
|
unref$1(getShowRedo) || unref$1(getShowQuick) ? {
|
|
1079
1069
|
name: "rightExtra",
|
|
1080
1070
|
fn: withCtx(() => [
|
|
1081
|
-
unref$1(getShowRedo) ? (openBlock(), createBlock(unref$1(
|
|
1082
|
-
unref$1(getShowQuick) ? (openBlock(), createBlock(unref$1(
|
|
1071
|
+
unref$1(getShowRedo) ? (openBlock(), createBlock(unref$1(_sfc_main$x), { key: 0 })) : createCommentVNode("", true),
|
|
1072
|
+
unref$1(getShowQuick) ? (openBlock(), createBlock(unref$1(_sfc_main$w), {
|
|
1083
1073
|
key: 1,
|
|
1084
1074
|
isExtra: "",
|
|
1085
1075
|
tabItem: _ctx.$route
|
|
1086
|
-
}, null, 8, ["tabItem"])) : createCommentVNode("
|
|
1076
|
+
}, null, 8, ["tabItem"])) : createCommentVNode("", true)
|
|
1087
1077
|
]),
|
|
1088
1078
|
key: "0"
|
|
1089
1079
|
} : void 0
|
|
@@ -1092,7 +1082,6 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
1092
1082
|
};
|
|
1093
1083
|
}
|
|
1094
1084
|
});
|
|
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"]]);
|
|
1096
1085
|
const _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
1097
1086
|
__name: "fullscreen",
|
|
1098
1087
|
setup(__props) {
|
|
@@ -1109,7 +1098,6 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
|
1109
1098
|
};
|
|
1110
1099
|
}
|
|
1111
1100
|
});
|
|
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"]]);
|
|
1113
1101
|
const isServer = typeof window === "undefined";
|
|
1114
1102
|
const BAR_MAP = {
|
|
1115
1103
|
vertical: {
|
|
@@ -1351,13 +1339,12 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
|
|
|
1351
1339
|
};
|
|
1352
1340
|
}
|
|
1353
1341
|
});
|
|
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"]]);
|
|
1355
1342
|
const _sfc_main$s = /* @__PURE__ */ defineComponent({
|
|
1356
1343
|
__name: "scroll-container",
|
|
1357
1344
|
setup(__props) {
|
|
1358
1345
|
const scrollbarRef = ref(null);
|
|
1359
1346
|
return (_ctx, _cache) => {
|
|
1360
|
-
return openBlock(), createBlock(
|
|
1347
|
+
return openBlock(), createBlock(_sfc_main$t, mergeProps({
|
|
1361
1348
|
ref_key: "scrollbarRef",
|
|
1362
1349
|
ref: scrollbarRef
|
|
1363
1350
|
}, _ctx.$attrs, { class: "w-full h-full" }), {
|
|
@@ -1369,7 +1356,6 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
|
|
|
1369
1356
|
};
|
|
1370
1357
|
}
|
|
1371
1358
|
});
|
|
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"]]);
|
|
1373
1359
|
const _sfc_main$r = /* @__PURE__ */ defineComponent({
|
|
1374
1360
|
__name: "slot-container",
|
|
1375
1361
|
props: {
|
|
@@ -1388,15 +1374,14 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
|
|
|
1388
1374
|
};
|
|
1389
1375
|
}
|
|
1390
1376
|
});
|
|
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"]]);
|
|
1392
1377
|
const withInstall = (comp) => {
|
|
1393
1378
|
comp.install = (app) => {
|
|
1394
1379
|
app.component(comp.name, comp);
|
|
1395
1380
|
};
|
|
1396
1381
|
return comp;
|
|
1397
1382
|
};
|
|
1398
|
-
const DtScrollContainer = withInstall(
|
|
1399
|
-
const DtSlotContainer = withInstall(
|
|
1383
|
+
const DtScrollContainer = withInstall(_sfc_main$s);
|
|
1384
|
+
const DtSlotContainer = withInstall(_sfc_main$r);
|
|
1400
1385
|
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=";
|
|
1401
1386
|
const _hoisted_1$e = ["src"];
|
|
1402
1387
|
const _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
@@ -1434,7 +1419,6 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
|
1434
1419
|
};
|
|
1435
1420
|
}
|
|
1436
1421
|
});
|
|
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"]]);
|
|
1438
1422
|
const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
1439
1423
|
__name: "trigger",
|
|
1440
1424
|
props: { theme: String },
|
|
@@ -1453,7 +1437,6 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
|
1453
1437
|
};
|
|
1454
1438
|
}
|
|
1455
1439
|
});
|
|
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"]]);
|
|
1457
1440
|
const _hoisted_1$d = { class: "dt-breadcrumb" };
|
|
1458
1441
|
const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
1459
1442
|
__name: "bread-crumb",
|
|
@@ -1481,7 +1464,6 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
1481
1464
|
};
|
|
1482
1465
|
}
|
|
1483
1466
|
});
|
|
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"]]);
|
|
1485
1467
|
const _hoisted_1$c = {
|
|
1486
1468
|
key: 0,
|
|
1487
1469
|
class: "dt-menu-filter h-7 pr-2"
|
|
@@ -1542,7 +1524,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
1542
1524
|
description: "\u6682\u65E0\u6570\u636E",
|
|
1543
1525
|
imageStyle: { width: "100%" }
|
|
1544
1526
|
})
|
|
1545
|
-
])) : createCommentVNode("
|
|
1527
|
+
])) : createCommentVNode("", true)
|
|
1546
1528
|
]),
|
|
1547
1529
|
default: withCtx(() => [
|
|
1548
1530
|
createVNode(_component_AInputSearch, {
|
|
@@ -1555,11 +1537,10 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
1555
1537
|
]),
|
|
1556
1538
|
_: 1
|
|
1557
1539
|
})
|
|
1558
|
-
])) : createCommentVNode("
|
|
1540
|
+
])) : createCommentVNode("", true);
|
|
1559
1541
|
};
|
|
1560
1542
|
}
|
|
1561
1543
|
});
|
|
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"]]);
|
|
1563
1544
|
const _hoisted_1$b = { class: "lang m-0" };
|
|
1564
1545
|
const _hoisted_2$6 = ["onClick"];
|
|
1565
1546
|
const _hoisted_3$4 = {
|
|
@@ -1619,7 +1600,6 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
|
1619
1600
|
};
|
|
1620
1601
|
}
|
|
1621
1602
|
});
|
|
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"]]);
|
|
1623
1603
|
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" };
|
|
1624
1604
|
const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
1625
1605
|
__name: "notify",
|
|
@@ -1633,20 +1613,20 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
|
1633
1613
|
overlayClassName: "dt-notify__popover"
|
|
1634
1614
|
}, {
|
|
1635
1615
|
content: withCtx(() => [
|
|
1636
|
-
unref$1(slots).notify ? (openBlock(), createBlock(unref$1(DtSlotContainer), {
|
|
1616
|
+
unref$1(slots).notify ? (openBlock(), createBlock(unref$1(DtSlotContainer$1), {
|
|
1637
1617
|
key: 0,
|
|
1638
1618
|
template: unref$1(slots).notify
|
|
1639
|
-
}, null, 8, ["template"])) : createCommentVNode("
|
|
1619
|
+
}, null, 8, ["template"])) : createCommentVNode("", true)
|
|
1640
1620
|
]),
|
|
1641
1621
|
default: withCtx(() => [
|
|
1642
1622
|
createElementVNode("span", _hoisted_1$a, [
|
|
1643
1623
|
withDirectives(createElementVNode("span", null, null, 512), [
|
|
1644
1624
|
[_directive_icon, "ant-design:bell-outlined"]
|
|
1645
1625
|
]),
|
|
1646
|
-
unref$1(slots).notifyBadge ? (openBlock(), createBlock(unref$1(DtSlotContainer), {
|
|
1626
|
+
unref$1(slots).notifyBadge ? (openBlock(), createBlock(unref$1(DtSlotContainer$1), {
|
|
1647
1627
|
key: 0,
|
|
1648
1628
|
template: unref$1(slots).notifyBadge
|
|
1649
|
-
}, null, 8, ["template"])) : createCommentVNode("
|
|
1629
|
+
}, null, 8, ["template"])) : createCommentVNode("", true)
|
|
1650
1630
|
])
|
|
1651
1631
|
]),
|
|
1652
1632
|
_: 1
|
|
@@ -1654,7 +1634,6 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
|
1654
1634
|
};
|
|
1655
1635
|
}
|
|
1656
1636
|
});
|
|
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"]]);
|
|
1658
1637
|
const _hoisted_1$9 = { class: "lang m-0" };
|
|
1659
1638
|
const _hoisted_2$5 = ["onClick"];
|
|
1660
1639
|
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" }, [
|
|
@@ -1717,7 +1696,6 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
|
|
|
1717
1696
|
};
|
|
1718
1697
|
}
|
|
1719
1698
|
});
|
|
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"]]);
|
|
1721
1699
|
const _hoisted_1$8 = { class: "m-0" };
|
|
1722
1700
|
const _hoisted_2$4 = {
|
|
1723
1701
|
class: "pr-2",
|
|
@@ -1752,10 +1730,10 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
|
1752
1730
|
}, {
|
|
1753
1731
|
content: withCtx(() => [
|
|
1754
1732
|
createElementVNode("div", _hoisted_1$8, [
|
|
1755
|
-
unref$1(slots).userInfo ? (openBlock(), createBlock(unref$1(DtSlotContainer), {
|
|
1733
|
+
unref$1(slots).userInfo ? (openBlock(), createBlock(unref$1(DtSlotContainer$1), {
|
|
1756
1734
|
key: 0,
|
|
1757
1735
|
template: unref$1(slots).userInfo
|
|
1758
|
-
}, null, 8, ["template"])) : createCommentVNode("
|
|
1736
|
+
}, null, 8, ["template"])) : createCommentVNode("", true),
|
|
1759
1737
|
unref$1(getShowLoginOut) ? (openBlock(), createElementBlock("div", {
|
|
1760
1738
|
key: 1,
|
|
1761
1739
|
onClick: _cache[0] || (_cache[0] = ($event) => signOut()),
|
|
@@ -1765,7 +1743,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
|
1765
1743
|
[_directive_icon, "ant-design:logout-outlined"]
|
|
1766
1744
|
]),
|
|
1767
1745
|
createElementVNode("span", null, toDisplayString(unref$1(t)("LOGIN_OUT")), 1)
|
|
1768
|
-
])) : createCommentVNode("
|
|
1746
|
+
])) : createCommentVNode("", true)
|
|
1769
1747
|
])
|
|
1770
1748
|
]),
|
|
1771
1749
|
default: withCtx(() => [
|
|
@@ -1784,7 +1762,6 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
|
1784
1762
|
};
|
|
1785
1763
|
}
|
|
1786
1764
|
});
|
|
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"]]);
|
|
1788
1765
|
var HandlerEnum = /* @__PURE__ */ ((HandlerEnum2) => {
|
|
1789
1766
|
HandlerEnum2[HandlerEnum2["CHANGE_LAYOUT"] = 0] = "CHANGE_LAYOUT";
|
|
1790
1767
|
HandlerEnum2[HandlerEnum2["SHOW_BREADCRUMB"] = 1] = "SHOW_BREADCRUMB";
|
|
@@ -1895,32 +1872,32 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
|
1895
1872
|
const menuTypeList = [
|
|
1896
1873
|
{
|
|
1897
1874
|
title: "\u5DE6\u4FA7\u83DC\u5355\u6A21\u5F0F",
|
|
1898
|
-
headTheme: Theme
|
|
1899
|
-
menuTheme: Theme
|
|
1875
|
+
headTheme: Theme.LIGHT,
|
|
1876
|
+
menuTheme: Theme.DARK,
|
|
1900
1877
|
mode: MenuMode.INLINE,
|
|
1901
1878
|
type: MenuType.SIDE,
|
|
1902
1879
|
split: false
|
|
1903
1880
|
},
|
|
1904
1881
|
{
|
|
1905
1882
|
title: "\u83DC\u5355\u6DF7\u5408\u6A21\u5F0F",
|
|
1906
|
-
headTheme: Theme
|
|
1907
|
-
menuTheme: Theme
|
|
1883
|
+
headTheme: Theme.DARK,
|
|
1884
|
+
menuTheme: Theme.LIGHT,
|
|
1908
1885
|
mode: MenuMode.INLINE,
|
|
1909
1886
|
type: MenuType.MIX,
|
|
1910
1887
|
split: true
|
|
1911
1888
|
},
|
|
1912
1889
|
{
|
|
1913
1890
|
title: "\u9876\u90E8\u83DC\u5355\u6A21\u5F0F",
|
|
1914
|
-
headTheme: Theme
|
|
1915
|
-
menuTheme: Theme
|
|
1891
|
+
headTheme: Theme.DARK,
|
|
1892
|
+
menuTheme: Theme.LIGHT,
|
|
1916
1893
|
mode: MenuMode.HORIZONTAL,
|
|
1917
1894
|
type: MenuType.TOP_MENU,
|
|
1918
1895
|
split: false
|
|
1919
1896
|
},
|
|
1920
1897
|
{
|
|
1921
1898
|
title: "\u5DE6\u4FA7\u83DC\u5355\u6DF7\u5408\u6A21\u5F0F",
|
|
1922
|
-
headTheme: Theme
|
|
1923
|
-
menuTheme: Theme
|
|
1899
|
+
headTheme: Theme.LIGHT,
|
|
1900
|
+
menuTheme: Theme.DARK,
|
|
1924
1901
|
mode: MenuMode.INLINE,
|
|
1925
1902
|
type: MenuType.MIX_SIDEBAR,
|
|
1926
1903
|
split: false
|
|
@@ -1958,7 +1935,6 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
|
1958
1935
|
};
|
|
1959
1936
|
}
|
|
1960
1937
|
});
|
|
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"]]);
|
|
1962
1938
|
const _hoisted_1$6 = { class: "flex justify-between mb-5" };
|
|
1963
1939
|
const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
1964
1940
|
__name: "select",
|
|
@@ -1996,7 +1972,6 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
|
1996
1972
|
};
|
|
1997
1973
|
}
|
|
1998
1974
|
});
|
|
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"]]);
|
|
2000
1975
|
const _hoisted_1$5 = { class: "flex justify-between mb-5" };
|
|
2001
1976
|
const _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
2002
1977
|
__name: "switch",
|
|
@@ -2033,7 +2008,6 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
|
2033
2008
|
};
|
|
2034
2009
|
}
|
|
2035
2010
|
});
|
|
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"]]);
|
|
2037
2011
|
const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
2038
2012
|
__name: "feature",
|
|
2039
2013
|
setup(__props) {
|
|
@@ -2110,7 +2084,7 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
|
2110
2084
|
return (_ctx, _cache) => {
|
|
2111
2085
|
return openBlock(), createElementBlock(Fragment, null, [
|
|
2112
2086
|
(openBlock(), createElementBlock(Fragment, null, renderList(switchItems, (item) => {
|
|
2113
|
-
return createVNode(
|
|
2087
|
+
return createVNode(_sfc_main$g, {
|
|
2114
2088
|
key: item.title,
|
|
2115
2089
|
title: item.title,
|
|
2116
2090
|
event: item.event,
|
|
@@ -2118,7 +2092,7 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
|
2118
2092
|
}, null, 8, ["title", "event", "def"]);
|
|
2119
2093
|
}), 64)),
|
|
2120
2094
|
(openBlock(), createElementBlock(Fragment, null, renderList(selectItems, (item) => {
|
|
2121
|
-
return createVNode(
|
|
2095
|
+
return createVNode(_sfc_main$h, {
|
|
2122
2096
|
key: item.title,
|
|
2123
2097
|
title: item.title,
|
|
2124
2098
|
event: item.event,
|
|
@@ -2130,7 +2104,6 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
|
2130
2104
|
};
|
|
2131
2105
|
}
|
|
2132
2106
|
});
|
|
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"]]);
|
|
2134
2107
|
const _hoisted_1$4 = { class: "mt-5" };
|
|
2135
2108
|
const _hoisted_2$2 = { class: "dt-setting-theme__tips p-3 text-12 bg-gray-100 rounded" };
|
|
2136
2109
|
const _sfc_main$e = /* @__PURE__ */ defineComponent({
|
|
@@ -2235,22 +2208,20 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
|
|
|
2235
2208
|
width: "320"
|
|
2236
2209
|
}, {
|
|
2237
2210
|
default: withCtx(() => [
|
|
2238
|
-
createCommentVNode(" \u5BFC\u822A\u680F\u6A21\u5F0F "),
|
|
2239
2211
|
createVNode(_component_ADivider, null, {
|
|
2240
2212
|
default: withCtx(() => [
|
|
2241
2213
|
createTextVNode(toDisplayString(unref$1(t)("NAV_MODE")), 1)
|
|
2242
2214
|
]),
|
|
2243
2215
|
_: 1
|
|
2244
2216
|
}),
|
|
2245
|
-
createVNode(unref$1(
|
|
2246
|
-
createCommentVNode(" \u754C\u9762\u663E\u793A "),
|
|
2217
|
+
createVNode(unref$1(_sfc_main$i)),
|
|
2247
2218
|
createVNode(_component_ADivider, null, {
|
|
2248
2219
|
default: withCtx(() => [
|
|
2249
2220
|
createTextVNode(toDisplayString(unref$1(t)("PAGE_SHOW")), 1)
|
|
2250
2221
|
]),
|
|
2251
2222
|
_: 1
|
|
2252
2223
|
}),
|
|
2253
|
-
createVNode(unref$1(
|
|
2224
|
+
createVNode(unref$1(_sfc_main$f)),
|
|
2254
2225
|
createVNode(_component_ADivider),
|
|
2255
2226
|
createElementVNode("div", _hoisted_1$4, [
|
|
2256
2227
|
createVNode(_component_AButton, {
|
|
@@ -2283,7 +2254,6 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
|
|
|
2283
2254
|
};
|
|
2284
2255
|
}
|
|
2285
2256
|
});
|
|
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"]]);
|
|
2287
2257
|
function useSplitMenu(splitType) {
|
|
2288
2258
|
const menusRef = ref([]);
|
|
2289
2259
|
const { currentRoute } = useRouter();
|
|
@@ -2385,7 +2355,7 @@ function getShallowMenus() {
|
|
|
2385
2355
|
});
|
|
2386
2356
|
return shallowMenuList;
|
|
2387
2357
|
}
|
|
2388
|
-
const BasicMenu
|
|
2358
|
+
const BasicMenu = {
|
|
2389
2359
|
items: {
|
|
2390
2360
|
type: Array
|
|
2391
2361
|
},
|
|
@@ -2402,7 +2372,7 @@ const BasicMenu$1 = {
|
|
|
2402
2372
|
default: MenuType.SIDE
|
|
2403
2373
|
},
|
|
2404
2374
|
theme: {
|
|
2405
|
-
default: Theme
|
|
2375
|
+
default: Theme.DARK
|
|
2406
2376
|
},
|
|
2407
2377
|
inlineCollapsed: Boolean,
|
|
2408
2378
|
isHorizontal: Boolean,
|
|
@@ -2418,7 +2388,7 @@ const ItemProp = {
|
|
|
2418
2388
|
},
|
|
2419
2389
|
theme: {
|
|
2420
2390
|
type: String,
|
|
2421
|
-
default: Theme
|
|
2391
|
+
default: Theme.DARK
|
|
2422
2392
|
},
|
|
2423
2393
|
isHorizontal: Boolean,
|
|
2424
2394
|
showTitle: Boolean,
|
|
@@ -2443,7 +2413,7 @@ const contentProps = {
|
|
|
2443
2413
|
collapse: Boolean,
|
|
2444
2414
|
mixSider: Boolean,
|
|
2445
2415
|
theme: {
|
|
2446
|
-
default: Theme
|
|
2416
|
+
default: Theme.DARK
|
|
2447
2417
|
},
|
|
2448
2418
|
collapsedShowTitle: Boolean,
|
|
2449
2419
|
beforeClickFn: {
|
|
@@ -2468,7 +2438,6 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
|
|
|
2468
2438
|
};
|
|
2469
2439
|
}
|
|
2470
2440
|
});
|
|
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"]]);
|
|
2472
2441
|
const _sfc_main$c = /* @__PURE__ */ defineComponent({
|
|
2473
2442
|
__name: "basic-menu-item",
|
|
2474
2443
|
props: ItemProp,
|
|
@@ -2480,14 +2449,13 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent({
|
|
|
2480
2449
|
key: _ctx.item.url
|
|
2481
2450
|
}, {
|
|
2482
2451
|
default: withCtx(() => [
|
|
2483
|
-
createVNode(
|
|
2452
|
+
createVNode(_sfc_main$d, normalizeProps(guardReactiveProps(props)), null, 16)
|
|
2484
2453
|
]),
|
|
2485
2454
|
_: 1
|
|
2486
2455
|
});
|
|
2487
2456
|
};
|
|
2488
2457
|
}
|
|
2489
2458
|
});
|
|
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"]]);
|
|
2491
2459
|
const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
2492
2460
|
__name: "basic-sub-menu-item",
|
|
2493
2461
|
props: ItemProp,
|
|
@@ -2505,16 +2473,14 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
2505
2473
|
const _component_BasicSubMenuItem = resolveComponent("BasicSubMenuItem", true);
|
|
2506
2474
|
const _component_ASubMenu = SubMenu;
|
|
2507
2475
|
return openBlock(), createElementBlock(Fragment, null, [
|
|
2508
|
-
createCommentVNode("
|
|
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
|
+
!menuHasChildren(unref$1(item)) && unref$1(getShowMenu) ? (openBlock(), createBlock(_sfc_main$c, normalizeProps(mergeProps({ key: 0 }, props)), null, 16)) : createCommentVNode("", true),
|
|
2511
2477
|
menuHasChildren(unref$1(item)) && unref$1(getShowMenu) ? (openBlock(), createBlock(_component_ASubMenu, {
|
|
2512
2478
|
class: normalizeClass([unref$1(theme)]),
|
|
2513
2479
|
key: unref$1(item).id,
|
|
2514
2480
|
popupClassName: "app-top-menu-popup"
|
|
2515
2481
|
}, {
|
|
2516
2482
|
title: withCtx(() => [
|
|
2517
|
-
createVNode(
|
|
2483
|
+
createVNode(_sfc_main$d, mergeProps(props, { item: unref$1(item) }), null, 16, ["item"])
|
|
2518
2484
|
]),
|
|
2519
2485
|
default: withCtx(() => [
|
|
2520
2486
|
(openBlock(true), createElementBlock(Fragment, null, renderList(unref$1(item).children, (childrenItem) => {
|
|
@@ -2524,15 +2490,14 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
2524
2490
|
}), 128))
|
|
2525
2491
|
]),
|
|
2526
2492
|
_: 1
|
|
2527
|
-
}, 8, ["class"])) : createCommentVNode("
|
|
2493
|
+
}, 8, ["class"])) : createCommentVNode("", true)
|
|
2528
2494
|
], 64);
|
|
2529
2495
|
};
|
|
2530
2496
|
}
|
|
2531
2497
|
});
|
|
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"]]);
|
|
2533
2498
|
const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
2534
2499
|
__name: "basic-menu",
|
|
2535
|
-
props: BasicMenu
|
|
2500
|
+
props: BasicMenu,
|
|
2536
2501
|
emits: ["menuClick"],
|
|
2537
2502
|
setup(__props, { emit: emits }) {
|
|
2538
2503
|
const {
|
|
@@ -2619,7 +2584,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
|
2619
2584
|
}, {
|
|
2620
2585
|
default: withCtx(() => [
|
|
2621
2586
|
(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.items, (item) => {
|
|
2622
|
-
return openBlock(), createBlock(
|
|
2587
|
+
return openBlock(), createBlock(_sfc_main$b, {
|
|
2623
2588
|
key: item.id,
|
|
2624
2589
|
item,
|
|
2625
2590
|
theme: _ctx.theme,
|
|
@@ -2632,7 +2597,6 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
|
2632
2597
|
};
|
|
2633
2598
|
}
|
|
2634
2599
|
});
|
|
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"]]);
|
|
2636
2600
|
const _sfc_main$9 = defineComponent({
|
|
2637
2601
|
name: "LayoutMenu",
|
|
2638
2602
|
props: {
|
|
@@ -2704,7 +2668,7 @@ const _sfc_main$9 = defineComponent({
|
|
|
2704
2668
|
}
|
|
2705
2669
|
}, null);
|
|
2706
2670
|
}
|
|
2707
|
-
return createVNode(
|
|
2671
|
+
return createVNode(_sfc_main$q, {
|
|
2708
2672
|
"showTitle": !unref$1(getCollapsed),
|
|
2709
2673
|
"class": unref$1(getLogoClass),
|
|
2710
2674
|
"theme": unref$1(getComputedTheme)
|
|
@@ -2729,7 +2693,7 @@ const _sfc_main$9 = defineComponent({
|
|
|
2729
2693
|
} = unref$1(getMenuProps);
|
|
2730
2694
|
if (!menus || !menus.length)
|
|
2731
2695
|
return null;
|
|
2732
|
-
return createVNode(
|
|
2696
|
+
return createVNode(_sfc_main$a, mergeProps(menuProps, {
|
|
2733
2697
|
"isHorizontal": props.isHorizontal,
|
|
2734
2698
|
"type": unref$1(getMenuType),
|
|
2735
2699
|
"showLogo": unref$1(getIsShowLogo),
|
|
@@ -2744,7 +2708,6 @@ const _sfc_main$9 = defineComponent({
|
|
|
2744
2708
|
};
|
|
2745
2709
|
}
|
|
2746
2710
|
});
|
|
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"]]);
|
|
2748
2711
|
const _hoisted_1$3 = {
|
|
2749
2712
|
key: 3,
|
|
2750
2713
|
class: "max-w-full pl-3 pr-20 dt-reuse-tabs__top"
|
|
@@ -2802,44 +2765,44 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
2802
2765
|
"w-0 flex-1": unref$1(getShowTab)
|
|
2803
2766
|
}])
|
|
2804
2767
|
}, [
|
|
2805
|
-
unref$1(getShowHeaderLogo) ? (openBlock(), createBlock(unref$1(
|
|
2768
|
+
unref$1(getShowHeaderLogo) ? (openBlock(), createBlock(unref$1(_sfc_main$q), {
|
|
2806
2769
|
key: 0,
|
|
2807
2770
|
theme: unref$1(getHeaderTheme),
|
|
2808
2771
|
class: "dt-header-logo"
|
|
2809
|
-
}, null, 8, ["theme"])) : createCommentVNode("
|
|
2810
|
-
unref$1(getShowHeaderTrigger) && !unref$1(getSplit) && !unref$1(getShowTab) ? (openBlock(), createBlock(unref$1(
|
|
2772
|
+
}, null, 8, ["theme"])) : createCommentVNode("", true),
|
|
2773
|
+
unref$1(getShowHeaderTrigger) && !unref$1(getSplit) && !unref$1(getShowTab) ? (openBlock(), createBlock(unref$1(_sfc_main$p), {
|
|
2811
2774
|
key: 1,
|
|
2812
2775
|
theme: unref$1(getHeaderTheme)
|
|
2813
|
-
}, null, 8, ["theme"])) : createCommentVNode("
|
|
2814
|
-
unref$1(getShowBread) && !unref$1(getShowTab) ? (openBlock(), createBlock(unref$1(
|
|
2776
|
+
}, null, 8, ["theme"])) : createCommentVNode("", true),
|
|
2777
|
+
unref$1(getShowBread) && !unref$1(getShowTab) ? (openBlock(), createBlock(unref$1(_sfc_main$o), { key: 2 })) : createCommentVNode("", true),
|
|
2815
2778
|
unref$1(getShowTab) ? (openBlock(), createElementBlock("div", _hoisted_1$3, [
|
|
2816
|
-
createVNode(
|
|
2817
|
-
])) : createCommentVNode("
|
|
2779
|
+
createVNode(_sfc_main$v)
|
|
2780
|
+
])) : createCommentVNode("", true)
|
|
2818
2781
|
], 2),
|
|
2819
2782
|
unref$1(getShowTopMenu) ? (openBlock(), createElementBlock("div", _hoisted_2$1, [
|
|
2820
|
-
createVNode(
|
|
2783
|
+
createVNode(_sfc_main$9, {
|
|
2821
2784
|
isHorizontal: true,
|
|
2822
2785
|
theme: unref$1(getHeaderTheme),
|
|
2823
2786
|
splitType: unref$1(getSplitType),
|
|
2824
2787
|
menuMode: unref$1(getMenuMode)
|
|
2825
2788
|
}, null, 8, ["theme", "splitType", "menuMode"])
|
|
2826
|
-
])) : createCommentVNode("
|
|
2789
|
+
])) : createCommentVNode("", true),
|
|
2827
2790
|
createElementVNode("div", {
|
|
2828
2791
|
class: "dt-header-action flex items-center",
|
|
2829
2792
|
style: normalizeStyle({
|
|
2830
2793
|
"padding-right": unref$1(getShowSettingTheme) ? "" : "20px"
|
|
2831
2794
|
})
|
|
2832
2795
|
}, [
|
|
2833
|
-
unref$1(getShowSearch) ? (openBlock(), createBlock(unref$1(
|
|
2834
|
-
unref$1(getShowNotice) ? (openBlock(), createBlock(unref$1(
|
|
2835
|
-
unref$1(getShowUiSize) ? (openBlock(), createBlock(unref$1(
|
|
2836
|
-
unref$1(getShowFullScreen) ? (openBlock(), createBlock(unref$1(
|
|
2837
|
-
unref$1(getShowLocale) ? (openBlock(), createBlock(unref$1(
|
|
2796
|
+
unref$1(getShowSearch) ? (openBlock(), createBlock(unref$1(_sfc_main$n), { key: 0 })) : createCommentVNode("", true),
|
|
2797
|
+
unref$1(getShowNotice) ? (openBlock(), createBlock(unref$1(_sfc_main$l), { key: 1 })) : createCommentVNode("", true),
|
|
2798
|
+
unref$1(getShowUiSize) ? (openBlock(), createBlock(unref$1(_sfc_main$k), { key: 2 })) : createCommentVNode("", true),
|
|
2799
|
+
unref$1(getShowFullScreen) ? (openBlock(), createBlock(unref$1(_sfc_main$u), { key: 3 })) : createCommentVNode("", true),
|
|
2800
|
+
unref$1(getShowLocale) ? (openBlock(), createBlock(unref$1(_sfc_main$m), {
|
|
2838
2801
|
key: 4,
|
|
2839
2802
|
reload: true
|
|
2840
|
-
})) : createCommentVNode("
|
|
2841
|
-
createVNode(unref$1(
|
|
2842
|
-
unref$1(getShowSettingTheme) ? (openBlock(), createBlock(unref$1(
|
|
2803
|
+
})) : createCommentVNode("", true),
|
|
2804
|
+
createVNode(unref$1(_sfc_main$j)),
|
|
2805
|
+
unref$1(getShowSettingTheme) ? (openBlock(), createBlock(unref$1(_sfc_main$e), { key: 5 })) : createCommentVNode("", true)
|
|
2843
2806
|
], 4)
|
|
2844
2807
|
]),
|
|
2845
2808
|
_: 1
|
|
@@ -2847,7 +2810,6 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
2847
2810
|
};
|
|
2848
2811
|
}
|
|
2849
2812
|
});
|
|
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"]]);
|
|
2851
2813
|
function useMenuSwitch() {
|
|
2852
2814
|
const brokenRef = ref(false);
|
|
2853
2815
|
const { getMiniWidthNumber } = useMenu();
|
|
@@ -2899,7 +2861,6 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
|
2899
2861
|
};
|
|
2900
2862
|
}
|
|
2901
2863
|
});
|
|
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"]]);
|
|
2903
2864
|
const _sfc_main$6 = /* @__PURE__ */ defineComponent({
|
|
2904
2865
|
__name: "drag-bar",
|
|
2905
2866
|
setup(__props) {
|
|
@@ -2926,7 +2887,6 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
|
|
|
2926
2887
|
};
|
|
2927
2888
|
}
|
|
2928
2889
|
});
|
|
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"]]);
|
|
2930
2890
|
const _hoisted_1$2 = { class: "dt-mix-sider__shallow-menu" };
|
|
2931
2891
|
const _hoisted_2 = { class: "m-0" };
|
|
2932
2892
|
const _hoisted_3 = { class: "dt-mix-sider__sub-shallow-menu" };
|
|
@@ -3010,7 +2970,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
|
3010
2970
|
style: unref$1(getWrapStyle),
|
|
3011
2971
|
class: ["dt-mix-sider fixed top-0 left-0 h-full overflow-hidden", unref$1(getMenuTheme)]
|
|
3012
2972
|
}, getMenuEvents), [
|
|
3013
|
-
createVNode(
|
|
2973
|
+
createVNode(_sfc_main$q, {
|
|
3014
2974
|
showTitle: false,
|
|
3015
2975
|
class: normalizeClass("justify-center z-10")
|
|
3016
2976
|
}),
|
|
@@ -3084,7 +3044,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
|
3084
3044
|
]),
|
|
3085
3045
|
_: 1
|
|
3086
3046
|
})
|
|
3087
|
-
], 4)) : createCommentVNode("
|
|
3047
|
+
], 4)) : createCommentVNode("", true)
|
|
3088
3048
|
]),
|
|
3089
3049
|
_: 1
|
|
3090
3050
|
})
|
|
@@ -3093,7 +3053,6 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
|
3093
3053
|
};
|
|
3094
3054
|
}
|
|
3095
3055
|
});
|
|
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"]]);
|
|
3097
3056
|
const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
3098
3057
|
__name: "index",
|
|
3099
3058
|
setup(__props) {
|
|
@@ -3154,17 +3113,17 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
3154
3113
|
const getMode = computed(() => {
|
|
3155
3114
|
return unref$1(getSplit) ? MenuMode.INLINE : null;
|
|
3156
3115
|
});
|
|
3157
|
-
const renderTrigger = h(
|
|
3116
|
+
const renderTrigger = h(_sfc_main$7);
|
|
3158
3117
|
return (_ctx, _cache) => {
|
|
3159
3118
|
const _component_ALayoutSider = LayoutSider;
|
|
3160
|
-
return unref$1(getIsMixSidebar) ? (openBlock(),
|
|
3119
|
+
return unref$1(getIsMixSidebar) ? (openBlock(), createBlock(_sfc_main$5, {
|
|
3161
3120
|
key: 0
|
|
3162
|
-
}
|
|
3121
|
+
})) : (openBlock(), createElementBlock(Fragment, {
|
|
3163
3122
|
key: 1
|
|
3164
|
-
}, [
|
|
3123
|
+
}, [unref$1(getMenuFixed) ? withDirectives((openBlock(), createElementBlock("div", {
|
|
3165
3124
|
key: 0,
|
|
3166
3125
|
style: normalizeStyle(unref$1(hiddenDomStyle))
|
|
3167
|
-
}, null, 4)), [[vShow, unref$1(showClassSideBarRef)]]) : createCommentVNode("
|
|
3126
|
+
}, null, 4)), [[vShow, unref$1(showClassSideBarRef)]]) : createCommentVNode("", true), withDirectives(createVNode(_component_ALayoutSider, mergeProps({
|
|
3168
3127
|
ref_key: "sideRef",
|
|
3169
3128
|
ref: sideRef,
|
|
3170
3129
|
collapsible: "",
|
|
@@ -3177,11 +3136,11 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
3177
3136
|
theme: unref$1(getMenuTheme),
|
|
3178
3137
|
trigger: unref$1(renderTrigger)
|
|
3179
3138
|
}, unref$1(getTriggerAttr)), {
|
|
3180
|
-
default: withCtx(() => [createVNode(
|
|
3139
|
+
default: withCtx(() => [createVNode(_sfc_main$9, {
|
|
3181
3140
|
theme: unref$1(getMenuTheme),
|
|
3182
3141
|
menuMode: unref$1(getMode),
|
|
3183
3142
|
splitType: unref$1(getSplitType)
|
|
3184
|
-
}, null, 8, ["theme", "menuMode", "splitType"]), createVNode(
|
|
3143
|
+
}, null, 8, ["theme", "menuMode", "splitType"]), createVNode(_sfc_main$6, {
|
|
3185
3144
|
ref_key: "dragBarRef",
|
|
3186
3145
|
ref: dragBarRef
|
|
3187
3146
|
}, null, 512)]),
|
|
@@ -3190,7 +3149,6 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
3190
3149
|
};
|
|
3191
3150
|
}
|
|
3192
3151
|
});
|
|
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"]]);
|
|
3194
3152
|
const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
3195
3153
|
__name: "multiple-header",
|
|
3196
3154
|
setup(__props) {
|
|
@@ -3238,23 +3196,21 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
|
3238
3196
|
});
|
|
3239
3197
|
return (_ctx, _cache) => {
|
|
3240
3198
|
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 "),
|
|
3242
3199
|
unref$1(getFixed) ? (openBlock(), createElementBlock("div", {
|
|
3243
3200
|
key: 0,
|
|
3244
3201
|
style: normalizeStyle(unref$1(getPlaceholderDomStyle))
|
|
3245
|
-
}, null, 4)) : createCommentVNode("
|
|
3202
|
+
}, null, 4)) : createCommentVNode("", true),
|
|
3246
3203
|
createElementVNode("div", {
|
|
3247
3204
|
style: normalizeStyle(unref$1(getWrapStyle)),
|
|
3248
3205
|
class: normalizeClass(unref$1(getClass))
|
|
3249
3206
|
}, [
|
|
3250
|
-
unref$1(getShowInsetHeaderRef) ? (openBlock(), createBlock(
|
|
3251
|
-
unref$1(getShowMultipleTab) && !unref$1(getMultipleTabPosIsTop) ? (openBlock(), createBlock(
|
|
3207
|
+
unref$1(getShowInsetHeaderRef) ? (openBlock(), createBlock(_sfc_main$8, { key: 0 })) : createCommentVNode("", true),
|
|
3208
|
+
unref$1(getShowMultipleTab) && !unref$1(getMultipleTabPosIsTop) ? (openBlock(), createBlock(_sfc_main$v, { key: 1 })) : createCommentVNode("", true)
|
|
3252
3209
|
], 6)
|
|
3253
3210
|
]);
|
|
3254
3211
|
};
|
|
3255
3212
|
}
|
|
3256
3213
|
});
|
|
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"]]);
|
|
3258
3214
|
const _hoisted_1$1 = { class: "pr-2.5" };
|
|
3259
3215
|
const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
3260
3216
|
__name: "index",
|
|
@@ -3271,7 +3227,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
3271
3227
|
};
|
|
3272
3228
|
});
|
|
3273
3229
|
return (_ctx, _cache) => {
|
|
3274
|
-
return openBlock(), createBlock(unref$1(LayoutFooter
|
|
3230
|
+
return openBlock(), createBlock(unref$1(LayoutFooter), {
|
|
3275
3231
|
class: "text-center p-0 w-full block border-t border-gray-200",
|
|
3276
3232
|
style: normalizeStyle(unref$1(footerOptions))
|
|
3277
3233
|
}, {
|
|
@@ -3284,7 +3240,6 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
3284
3240
|
};
|
|
3285
3241
|
}
|
|
3286
3242
|
});
|
|
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"]]);
|
|
3288
3243
|
const _hoisted_1 = ["loading"];
|
|
3289
3244
|
const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
3290
3245
|
__name: "index",
|
|
@@ -3293,6 +3248,8 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
3293
3248
|
const { getLayoutContentMode, getPageLoading, getOpenPageLoading } = useTheme();
|
|
3294
3249
|
const { getCanCache } = useMultipleTab();
|
|
3295
3250
|
const tabStore = useRouteReuseStore();
|
|
3251
|
+
const { currentRoute } = useRouter();
|
|
3252
|
+
const contentMode = computed(() => unref$1(currentRoute).meta.contentMode || unref$1(getLayoutContentMode));
|
|
3296
3253
|
function getTransitionName(route) {
|
|
3297
3254
|
return route.meta.transitionName || unref$1(getTransitionMode);
|
|
3298
3255
|
}
|
|
@@ -3301,10 +3258,10 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
3301
3258
|
});
|
|
3302
3259
|
return (_ctx, _cache) => {
|
|
3303
3260
|
const _component_router_view = resolveComponent("router-view");
|
|
3304
|
-
const _component_ALayoutContent = LayoutContent
|
|
3261
|
+
const _component_ALayoutContent = LayoutContent;
|
|
3305
3262
|
return openBlock(), createElementBlock("div", {
|
|
3306
3263
|
id: "dt-layout-content",
|
|
3307
|
-
class: normalizeClass([["dt-layout-content", unref$1(
|
|
3264
|
+
class: normalizeClass([["dt-layout-content", unref$1(contentMode)], "relative flex-auto overflow-x-hidden min-h-0 flex"]),
|
|
3308
3265
|
loading: unref$1(getPageLoading) && unref$1(getOpenPageLoading)
|
|
3309
3266
|
}, [
|
|
3310
3267
|
createVNode(_component_ALayoutContent, null, {
|
|
@@ -3338,16 +3295,9 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
3338
3295
|
};
|
|
3339
3296
|
}
|
|
3340
3297
|
});
|
|
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"]]);
|
|
3342
3298
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
3343
3299
|
__name: "index",
|
|
3344
3300
|
setup(__props) {
|
|
3345
|
-
ConfigProvider.config({
|
|
3346
|
-
prefixCls: "custom",
|
|
3347
|
-
theme: {
|
|
3348
|
-
primaryColor: "#25b864"
|
|
3349
|
-
}
|
|
3350
|
-
});
|
|
3351
3301
|
const { currentRoute } = useRouter();
|
|
3352
3302
|
const { getShowFullHeaderRef, getIsZH, getHeaderHeight, getUiSize } = useHeader();
|
|
3353
3303
|
const { getSplit, getShowMenu, getShowSidebar, getIsMixSidebar } = useMenu();
|
|
@@ -3397,7 +3347,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
3397
3347
|
);
|
|
3398
3348
|
return (_ctx, _cache) => {
|
|
3399
3349
|
const _component_ALayout = Layout;
|
|
3400
|
-
const _component_AConfigProvider = ConfigProvider
|
|
3350
|
+
const _component_AConfigProvider = ConfigProvider;
|
|
3401
3351
|
return openBlock(), createElementBlock("div", {
|
|
3402
3352
|
class: normalizeClass(["dt-theme w-full h-full", `dt-theme-${unref$1(getUiSize)}`])
|
|
3403
3353
|
}, [
|
|
@@ -3411,24 +3361,24 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
3411
3361
|
class: "w-full h-full flex"
|
|
3412
3362
|
}, {
|
|
3413
3363
|
default: withCtx(() => [
|
|
3414
|
-
createVNode(
|
|
3415
|
-
unref$1(getShowFullHeaderRef) ? (openBlock(), createBlock(
|
|
3364
|
+
createVNode(_sfc_main$y),
|
|
3365
|
+
unref$1(getShowFullHeaderRef) ? (openBlock(), createBlock(_sfc_main$8, {
|
|
3416
3366
|
key: 0,
|
|
3417
3367
|
fixed: ""
|
|
3418
|
-
})) : createCommentVNode("
|
|
3368
|
+
})) : createCommentVNode("", true),
|
|
3419
3369
|
createVNode(_component_ALayout, {
|
|
3420
3370
|
class: normalizeClass(unref$1(layoutClass)),
|
|
3421
3371
|
style: normalizeStyle(unref$1(layoutOption))
|
|
3422
3372
|
}, {
|
|
3423
3373
|
default: withCtx(() => [
|
|
3424
|
-
unref$1(getShowSidebar) ? (openBlock(), createBlock(
|
|
3374
|
+
unref$1(getShowSidebar) ? (openBlock(), createBlock(_sfc_main$4, { key: 0 })) : createCommentVNode("", true),
|
|
3425
3375
|
createVNode(_component_ALayout, { class: "dt-theme-main flex w-full h-ful transition-width duration-200" }, {
|
|
3426
3376
|
default: withCtx(() => [
|
|
3427
|
-
createVNode(
|
|
3428
|
-
createVNode(
|
|
3377
|
+
createVNode(_sfc_main$3),
|
|
3378
|
+
createVNode(_sfc_main$1, {
|
|
3429
3379
|
style: normalizeStyle(unref$1(getContentStyle))
|
|
3430
3380
|
}, null, 8, ["style"]),
|
|
3431
|
-
unref$1(getFooter) && unref$1(getFooter)["show"] ? (openBlock(), createBlock(
|
|
3381
|
+
unref$1(getFooter) && unref$1(getFooter)["show"] ? (openBlock(), createBlock(_sfc_main$2, { key: 0 })) : createCommentVNode("", true)
|
|
3432
3382
|
]),
|
|
3433
3383
|
_: 1
|
|
3434
3384
|
})
|
|
@@ -3445,7 +3395,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
3445
3395
|
};
|
|
3446
3396
|
}
|
|
3447
3397
|
});
|
|
3448
|
-
const Theme = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/index.vue"]]);
|
|
3449
3398
|
const EN = {
|
|
3450
3399
|
"UI": {
|
|
3451
3400
|
"ADD": "Add ",
|
|
@@ -3654,7 +3603,7 @@ const ZH = {
|
|
|
3654
3603
|
}
|
|
3655
3604
|
};
|
|
3656
3605
|
const uiLang = (lang) => lang === Language.ZH ? ZH : EN;
|
|
3657
|
-
const DtTheme = withInstall$1(
|
|
3606
|
+
const DtTheme = withInstall$1(_sfc_main);
|
|
3658
3607
|
export {
|
|
3659
3608
|
ContentMode,
|
|
3660
3609
|
DtTheme,
|
|
@@ -3663,6 +3612,10 @@ export {
|
|
|
3663
3612
|
UiSize,
|
|
3664
3613
|
defaultThemeConf,
|
|
3665
3614
|
uiLang,
|
|
3615
|
+
useHeader,
|
|
3616
|
+
useMenu,
|
|
3617
|
+
useMultipleTab,
|
|
3666
3618
|
useRouteReuseStore,
|
|
3619
|
+
useTheme,
|
|
3667
3620
|
useThemeStore
|
|
3668
3621
|
};
|