@dazhicheng/ui 1.5.199 → 1.5.201

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (242) hide show
  1. package/dist/_virtual/_plugin-vue_export-helper.js +9 -0
  2. package/dist/api/dataTypeContext.js +17 -0
  3. package/dist/assets/img/empty_images/no_data.png.js +4 -0
  4. package/dist/assets/img/empty_images/search.png.js +4 -0
  5. package/dist/assets/img/image_status/develop.png.js +4 -0
  6. package/dist/assets/img/image_status/loading.gif.js +4 -0
  7. package/dist/assets/img/image_status/loading_fail.png.js +4 -0
  8. package/dist/assets/img/image_status/no_network.png.js +4 -0
  9. package/dist/assets/img/image_status/no_permission.png.js +4 -0
  10. package/dist/assets/svg/action_more.svg.js +4 -0
  11. package/dist/assets/svg/close.svg.js +4 -0
  12. package/dist/assets/svg/item_error.svg.js +4 -0
  13. package/dist/assets/svg/paixu-jiangxu.svg.js +4 -0
  14. package/dist/assets/svg/paixu-moren.svg.js +4 -0
  15. package/dist/assets/svg/paixu-shengxu.svg.js +4 -0
  16. package/dist/assets/svg/quanping.svg.js +4 -0
  17. package/dist/assets/svg/suoxiao.svg.js +4 -0
  18. package/dist/components/tt-api-component/index.js +7 -0
  19. package/dist/components/tt-api-component/index.vue.js +7 -0
  20. package/dist/components/tt-api-component/index.vue2.js +199 -0
  21. package/dist/components/tt-area/TtArea.vue.js +7 -0
  22. package/dist/components/tt-area/TtArea.vue2.js +36 -0
  23. package/dist/components/tt-button/components/AddButton.vue.js +24 -0
  24. package/dist/components/tt-button/components/AddButton.vue2.js +4 -0
  25. package/dist/components/tt-button/index.js +9 -0
  26. package/dist/components/tt-button/index.vue.js +7 -0
  27. package/dist/components/tt-button/index.vue2.js +68 -0
  28. package/dist/components/tt-checkbox/index.js +7 -0
  29. package/dist/components/tt-checkbox/index.vue.js +77 -0
  30. package/dist/components/tt-checkbox/index.vue2.js +4 -0
  31. package/dist/components/tt-drawer/index.js +14 -0
  32. package/dist/components/tt-drawer/src/RenderDrawer.vue.js +156 -0
  33. package/dist/components/tt-drawer/src/RenderDrawer.vue3.js +5 -0
  34. package/dist/components/tt-drawer/src/components/DrawerFooter.vue.js +56 -0
  35. package/dist/components/tt-drawer/src/components/DrawerFooter.vue3.js +5 -0
  36. package/dist/components/tt-drawer/src/components/DrawerHeader.vue.js +7 -0
  37. package/dist/components/tt-drawer/src/components/DrawerHeader.vue2.js +21 -0
  38. package/dist/components/tt-drawer/src/hooks/useDrawerRender.js +124 -0
  39. package/dist/components/tt-drawer/src/hooks/useResizable.js +98 -0
  40. package/dist/components/tt-drawer/src/index.js +17 -0
  41. package/dist/components/tt-drawer/src/props.js +72 -0
  42. package/dist/components/tt-drawer/src/utils/drawer-api.js +191 -0
  43. package/dist/components/tt-empty/index.js +34 -0
  44. package/dist/components/tt-form/index.js +65 -0
  45. package/dist/components/tt-form/src/components/ExpandableArrow.vue2.js +38 -0
  46. package/dist/components/tt-form/src/components/ExpandableArrow.vue3.js +5 -0
  47. package/dist/components/tt-form/src/components/FormActions.vue2.js +177 -0
  48. package/dist/components/tt-form/src/components/FormActions.vue3.js +5 -0
  49. package/dist/components/tt-form/src/components/FormElInput.vue.js +80 -0
  50. package/dist/components/tt-form/src/components/FormElInput.vue2.js +4 -0
  51. package/dist/components/tt-form/src/components/Slot.js +28 -0
  52. package/dist/components/tt-form/src/config.js +57 -0
  53. package/dist/components/tt-form/src/form/FormControl.vue.js +16 -0
  54. package/dist/components/tt-form/src/form/FormControl.vue2.js +4 -0
  55. package/dist/components/tt-form/src/form/FormDescription.vue.js +21 -0
  56. package/dist/components/tt-form/src/form/FormDescription.vue2.js +4 -0
  57. package/dist/components/tt-form/src/form/FormItem.vue.js +20 -0
  58. package/dist/components/tt-form/src/form/FormItem.vue2.js +4 -0
  59. package/dist/components/tt-form/src/form/FormLabel.vue.js +19 -0
  60. package/dist/components/tt-form/src/form/FormLabel.vue2.js +4 -0
  61. package/dist/components/tt-form/src/form/FormMessage.vue.js +18 -0
  62. package/dist/components/tt-form/src/form/FormMessage.vue2.js +4 -0
  63. package/dist/components/tt-form/src/form/FormMessageToolTip.vue.js +30 -0
  64. package/dist/components/tt-form/src/form/FormMessageToolTip.vue2.js +4 -0
  65. package/dist/components/tt-form/src/form/RenderContent.vue.js +31 -0
  66. package/dist/components/tt-form/src/form/RenderContent.vue2.js +4 -0
  67. package/dist/components/tt-form/src/form/injectionKeys.js +4 -0
  68. package/dist/components/tt-form/src/form/useFormField.js +24 -0
  69. package/dist/components/tt-form/src/form-render/FormField.vue.js +4 -0
  70. package/dist/components/tt-form/src/form-render/FormField.vue2.js +346 -0
  71. package/dist/components/tt-form/src/form-render/FormFieldContact.js +54 -0
  72. package/dist/components/tt-form/src/form-render/FormLabel.vue.js +4 -0
  73. package/dist/components/tt-form/src/form-render/FormLabel.vue2.js +102 -0
  74. package/dist/components/tt-form/src/form-render/array-register/FormArrayRegister.js +195 -0
  75. package/dist/components/tt-form/src/form-render/array-register/props.js +47 -0
  76. package/dist/components/tt-form/src/form-render/array-register/utils.js +12 -0
  77. package/dist/components/tt-form/src/form-render/context.js +15 -0
  78. package/dist/components/tt-form/src/form-render/dependencies.js +51 -0
  79. package/dist/components/tt-form/src/form-render/expandable.js +46 -0
  80. package/dist/components/tt-form/src/form-render/form.vue2.js +197 -0
  81. package/dist/components/tt-form/src/form-render/form.vue3.js +5 -0
  82. package/dist/components/tt-form/src/form-render/helper.js +22 -0
  83. package/dist/components/tt-form/src/form-render/rootWrapperClass.js +10 -0
  84. package/dist/components/tt-form/src/formApi.js +790 -0
  85. package/dist/components/tt-form/src/group-form/GroupForm.vue2.js +223 -0
  86. package/dist/components/tt-form/src/group-form/GroupForm.vue3.js +5 -0
  87. package/dist/components/tt-form/src/group-form/GroupSection.vue2.js +278 -0
  88. package/dist/components/tt-form/src/group-form/GroupSection.vue3.js +5 -0
  89. package/dist/components/tt-form/src/group-form/LazyFormField.vue.js +153 -0
  90. package/dist/components/tt-form/src/group-form/LazyFormField.vue3.js +5 -0
  91. package/dist/components/tt-form/src/group-form/groupFormApi.js +700 -0
  92. package/dist/components/tt-form/src/group-form/lazyContext.js +38 -0
  93. package/dist/components/tt-form/src/group-form/useGroupForm.js +83 -0
  94. package/dist/components/tt-form/src/group-form/utils.js +106 -0
  95. package/dist/components/tt-form/src/hooks/useArrayRegistry.js +22 -0
  96. package/dist/components/tt-form/src/hooks/useFieldArray.js +137 -0
  97. package/dist/components/tt-form/src/hooks/useForwardPriorityValues.js +33 -0
  98. package/dist/components/tt-form/src/hooks/useSelectCollapse.js +81 -0
  99. package/dist/components/tt-form/src/index.vue2.js +149 -0
  100. package/dist/components/tt-form/src/index.vue3.js +5 -0
  101. package/dist/components/tt-form/src/shared/createContext.js +14 -0
  102. package/dist/components/tt-form/src/shared/global-state.js +22 -0
  103. package/dist/components/tt-form/src/shared/zod-defaults.js +47 -0
  104. package/dist/components/tt-form/src/types/forms.js +6 -0
  105. package/dist/components/tt-form/src/useForm.js +28 -0
  106. package/dist/components/tt-form/src/useFormContext.js +320 -0
  107. package/dist/components/tt-form/src/utils/array-path.js +18 -0
  108. package/dist/components/tt-form-item-error-tooltip/index.js +9 -0
  109. package/dist/components/tt-form-item-error-tooltip/index.vue.js +183 -0
  110. package/dist/components/tt-form-item-error-tooltip/index.vue3.js +5 -0
  111. package/dist/components/tt-icon/components/AddIcon.vue.js +28 -0
  112. package/dist/components/tt-icon/components/AddIcon.vue2.js +4 -0
  113. package/dist/components/tt-icon/components/SubIcon.vue.js +28 -0
  114. package/dist/components/tt-icon/components/SubIcon.vue2.js +4 -0
  115. package/dist/components/tt-icon/index.js +11 -0
  116. package/dist/components/tt-icon/index.vue.js +8 -0
  117. package/dist/components/tt-icon/index.vue2.js +115 -0
  118. package/dist/components/tt-image/index.js +9 -0
  119. package/dist/components/tt-image/src/components/ImageViewer.js +41 -0
  120. package/dist/components/tt-image/tt-image.js +55 -0
  121. package/dist/components/tt-loading/index.js +8 -0
  122. package/dist/components/tt-loading/src/directive.js +51 -0
  123. package/dist/components/tt-loading/src/loading.vue.js +7 -0
  124. package/dist/components/tt-loading/src/loading.vue2.js +75 -0
  125. package/dist/components/tt-loading/src/service.js +79 -0
  126. package/dist/components/tt-log/index.js +7 -0
  127. package/dist/components/tt-log/index.vue.js +30 -0
  128. package/dist/components/tt-log/index.vue2.js +4 -0
  129. package/dist/components/tt-modal/index.js +14 -0
  130. package/dist/components/tt-modal/src/RenderModal.vue.js +310 -0
  131. package/dist/components/tt-modal/src/RenderModal.vue3.js +5 -0
  132. package/dist/components/tt-modal/src/components/ModalFooter.vue.js +7 -0
  133. package/dist/components/tt-modal/src/components/ModalFooter.vue2.js +74 -0
  134. package/dist/components/tt-modal/src/components/ModalHeader.vue.js +7 -0
  135. package/dist/components/tt-modal/src/components/ModalHeader.vue2.js +22 -0
  136. package/dist/components/tt-modal/src/components/ModalWrapper.vue.js +48 -0
  137. package/dist/components/tt-modal/src/components/ModalWrapper.vue2.js +4 -0
  138. package/dist/components/tt-modal/src/hooks/useModalRender.js +131 -0
  139. package/dist/components/tt-modal/src/index.js +17 -0
  140. package/dist/components/tt-modal/src/props.js +75 -0
  141. package/dist/components/tt-modal/src/utils/modal-api.js +200 -0
  142. package/dist/components/tt-modal/src/utils/modal-stack.js +28 -0
  143. package/dist/components/tt-modal-form/hooks/useModalFormSlot.js +22 -0
  144. package/dist/components/tt-modal-form/index.vue.js +178 -0
  145. package/dist/components/tt-modal-form/index.vue2.js +4 -0
  146. package/dist/components/tt-modal-form/useModalForm.js +30 -0
  147. package/dist/components/tt-nav-anchor/index.js +8 -0
  148. package/dist/components/tt-nav-anchor/src/TtNavAnchor.vue.js +234 -0
  149. package/dist/components/tt-nav-anchor/src/TtNavAnchor.vue3.js +5 -0
  150. package/dist/components/tt-nav-anchor/src/constants.js +4 -0
  151. package/dist/components/tt-panel-select/index.js +7 -0
  152. package/dist/components/tt-panel-select/src/common.js +4 -0
  153. package/dist/components/tt-panel-select/src/components/PanelLeft.vue.js +56 -0
  154. package/dist/components/tt-panel-select/src/components/PanelLeft.vue2.js +4 -0
  155. package/dist/components/tt-panel-select/src/components/PanelMiddle.vue.js +277 -0
  156. package/dist/components/tt-panel-select/src/components/PanelMiddle.vue2.js +4 -0
  157. package/dist/components/tt-panel-select/src/components/PanelRight.vue.js +108 -0
  158. package/dist/components/tt-panel-select/src/components/PanelRight.vue2.js +4 -0
  159. package/dist/components/tt-panel-select/src/hooks/usePanelData.js +184 -0
  160. package/dist/components/tt-panel-select/src/hooks/usePanelSelection.js +91 -0
  161. package/dist/components/tt-panel-select/src/index.vue.js +386 -0
  162. package/dist/components/tt-panel-select/src/index.vue2.js +4 -0
  163. package/dist/components/tt-select/index.js +8 -0
  164. package/dist/components/tt-select/src/Select.vue.js +315 -0
  165. package/dist/components/tt-select/src/Select.vue3.js +5 -0
  166. package/dist/components/tt-select/src/components/SelectTable.vue.js +86 -0
  167. package/dist/components/tt-select/src/components/SelectTable.vue3.js +5 -0
  168. package/dist/components/tt-select/src/components/Table.vue.js +307 -0
  169. package/dist/components/tt-select/src/components/Table.vue3.js +5 -0
  170. package/dist/components/tt-select/src/const.js +19 -0
  171. package/dist/components/tt-select/src/hooks/useDataSource.js +196 -0
  172. package/dist/components/tt-select/src/hooks/useGrid.js +97 -0
  173. package/dist/components/tt-select/src/hooks/useKeyboard.js +63 -0
  174. package/dist/components/tt-select/src/hooks/usePagination.js +45 -0
  175. package/dist/components/tt-select/src/hooks/useSelect.js +100 -0
  176. package/dist/components/tt-select/src/hooks/useSelectTableEvent.d.ts +1 -1
  177. package/dist/components/tt-select/src/hooks/useSelectTableEvent.js +345 -0
  178. package/dist/components/tt-select/src/props.js +201 -0
  179. package/dist/components/tt-select/src/utils/index.js +16 -0
  180. package/dist/components/tt-table/index.js +33 -0
  181. package/dist/components/tt-table/src/Table.vue.js +623 -0
  182. package/dist/components/tt-table/src/Table.vue3.js +5 -0
  183. package/dist/components/tt-table/src/TableForm.vue.js +317 -0
  184. package/dist/components/tt-table/src/TableForm.vue2.js +4 -0
  185. package/dist/components/tt-table/src/componentMap.js +4 -0
  186. package/dist/components/tt-table/src/components/RowContext.js +24 -0
  187. package/dist/components/tt-table/src/components/TableAction.vue.js +222 -0
  188. package/dist/components/tt-table/src/components/TableAction.vue2.js +4 -0
  189. package/dist/components/tt-table/src/components/TableButtons.js +117 -0
  190. package/dist/components/tt-table/src/components/TableColumnModal.vue2.js +233 -0
  191. package/dist/components/tt-table/src/components/TableColumnModal.vue3.js +5 -0
  192. package/dist/components/tt-table/src/components/TableToobalTools.vue.js +87 -0
  193. package/dist/components/tt-table/src/components/TableToobalTools.vue2.js +4 -0
  194. package/dist/components/tt-table/src/emits.js +15 -0
  195. package/dist/components/tt-table/src/hooks/useCellArea.js +15 -0
  196. package/dist/components/tt-table/src/hooks/useColumns.js +275 -0
  197. package/dist/components/tt-table/src/hooks/useCustomColumns.js +53 -0
  198. package/dist/components/tt-table/src/hooks/useDataSource.js +224 -0
  199. package/dist/components/tt-table/src/hooks/useLeftRightSlot.js +64 -0
  200. package/dist/components/tt-table/src/hooks/usePagination.js +44 -0
  201. package/dist/components/tt-table/src/hooks/useRowSelection.js +84 -0
  202. package/dist/components/tt-table/src/hooks/useTableContext.js +20 -0
  203. package/dist/components/tt-table/src/hooks/useTableEvent.js +197 -0
  204. package/dist/components/tt-table/src/hooks/useTableForm.js +60 -0
  205. package/dist/components/tt-table/src/hooks/useTableRender.js +33 -0
  206. package/dist/components/tt-table/src/hooks/useTableSlot.js +17 -0
  207. package/dist/components/tt-table/src/props.js +482 -0
  208. package/dist/components/tt-table/src/toolProps.js +30 -0
  209. package/dist/components/tt-table/src/utils/context.js +17 -0
  210. package/dist/components/tt-table/src/utils/table-api.js +386 -0
  211. package/dist/components/tt-table/src/utils/table-form-api.js +122 -0
  212. package/dist/components/tt-text/index.js +7 -0
  213. package/dist/components/tt-text/index.vue.js +7 -0
  214. package/dist/components/tt-text/index.vue2.js +73 -0
  215. package/dist/components/tt-upload/index.js +9 -0
  216. package/dist/components/tt-upload/src/TtUpload.vue.js +305 -0
  217. package/dist/components/tt-upload/src/TtUpload.vue2.js +4 -0
  218. package/dist/components/tt-upload/src/typing.js +107 -0
  219. package/dist/directives/auto-tip/index.js +62 -0
  220. package/dist/directives/dialog-resize/index.js +49 -0
  221. package/dist/directives/dialog-resize/use-css-variable.js +44 -0
  222. package/dist/directives/dialog-resize/use-draggable.js +35 -0
  223. package/dist/directives/dialog-resize/use-fullscreen.js +38 -0
  224. package/dist/directives/dialog-resize/use-parse-translate.js +9 -0
  225. package/dist/directives/dialog-resize/use-resizer.js +37 -0
  226. package/dist/directives/disabled-tip/index.js +78 -0
  227. package/dist/directives/index.js +8 -0
  228. package/dist/hooks/useDataPermissionOptions.js +142 -0
  229. package/dist/hooks/useFormSchemasLink.js +261 -0
  230. package/dist/hooks/useFormat.js +44 -0
  231. package/dist/hooks/useLoading.js +22 -0
  232. package/dist/hooks/useScreenshotOss.js +69 -0
  233. package/dist/hooks/useSetup.js +59 -0
  234. package/dist/index.js +142 -60274
  235. package/dist/plugins/default/renderCellContent.js +58 -0
  236. package/dist/plugins/vxeTable/switchStatus.js +91 -0
  237. package/dist/plugins.js +4 -146
  238. package/dist/style.css +1 -1
  239. package/dist/utils/xhr.js +8 -0
  240. package/package.json +3 -1
  241. package/dist/index-NG5FNCLD.js +0 -3430
  242. package/dist/index.modern-4Cf3dcJP.js +0 -3069
@@ -0,0 +1,234 @@
1
+ import { defineComponent as K, ref as f, watch as p, useTemplateRef as R, computed as N, onActivated as Q, onDeactivated as ee, watchPostEffect as te, createElementBlock as d, openBlock as s, Fragment as z, createElementVNode as r, createBlock as oe, normalizeClass as l, unref as t, Teleport as ne, createCommentVNode as V, normalizeStyle as ie, createVNode as y, withCtx as H, createTextVNode as ae, toDisplayString as O, renderList as le, renderSlot as re, isVNode as se, h as ue } from "vue";
2
+ import de from "@dazhicheng-ui/assets/svg/drag.svg?raw";
3
+ import ce from "@dazhicheng-ui/components/tt-icon";
4
+ import { TtText as fe } from "@dazhicheng-ui/components/tt-text";
5
+ import { useDesign as pe } from "@dazhicheng/hooks";
6
+ import { isString as me, isFunction as P, isNullOrUnDef as ve, isArray as _e, isObject as he } from "@dazhicheng/utils";
7
+ import { useElementSize as ge, useDraggable as ye } from "@vueuse/core";
8
+ import { useZIndex as we, ElScrollbar as $e } from "element-plus";
9
+ import { TT_NAV_ANCHOR_ROOT_WIDTH_PX as m } from "./constants.js";
10
+ const Te = ["onClick"], be = ["title"], Ee = /* @__PURE__ */ K({
11
+ name: "TtNavAnchor",
12
+ __name: "TtNavAnchor",
13
+ props: {
14
+ items: {},
15
+ modelValue: { default: "" },
16
+ title: { default: "导航" },
17
+ badgeCounts: { default: () => ({}) },
18
+ position: { default: "fixed" },
19
+ top: { default: void 0 },
20
+ right: { default: void 0 },
21
+ left: { default: void 0 },
22
+ bottom: { default: void 0 },
23
+ teleportTo: { default: void 0 }
24
+ },
25
+ emits: ["change", "update:modelValue"],
26
+ setup(B, { emit: W }) {
27
+ var I;
28
+ const { prefixCls: o } = pe("nav-anchor"), i = B, M = W;
29
+ function X(e) {
30
+ return ve(e) || se(e) || _e(e) ? e : he(e) || P(e) ? ue(e) : e;
31
+ }
32
+ function Z(e) {
33
+ const { title: a } = e.row;
34
+ return X(P(a) ? a(e.row) : a);
35
+ }
36
+ const v = f(i.modelValue || ((I = i.items[0]) == null ? void 0 : I.key) || "");
37
+ p(
38
+ () => i.modelValue,
39
+ (e) => {
40
+ e && (v.value = e);
41
+ }
42
+ );
43
+ function F(e) {
44
+ v.value = e, M("update:modelValue", e), M("change", e);
45
+ }
46
+ const c = R("navRef"), S = R("headerRef"), w = R("sourceRef"), _ = f(!0), $ = f(i.teleportTo || null), { height: A } = ge(c);
47
+ function h(e, a) {
48
+ return e == null ? a : typeof e == "number" ? e : parseInt(e, 10) || a;
49
+ }
50
+ const T = f(!1);
51
+ function Y(e, a, n) {
52
+ if (typeof window > "u") return { x: e, y: a };
53
+ const u = Math.max(0, window.innerWidth - m), D = n > 0 ? Math.max(0, window.innerHeight - n) : window.innerHeight;
54
+ return { x: Math.max(0, Math.min(e, u)), y: Math.max(0, Math.min(a, D)) };
55
+ }
56
+ function b(e) {
57
+ if (typeof window > "u") return { x: 0, y: 0 };
58
+ const a = i.left !== void 0 ? h(i.left, 0) : window.innerWidth - m - h(i.right, 24);
59
+ let n;
60
+ return i.top !== void 0 ? n = h(i.top, 24) : i.bottom !== void 0 ? n = e > 0 ? window.innerHeight - e - h(i.bottom, 24) : 0 : n = 24, Y(a, n, e);
61
+ }
62
+ const { nextZIndex: E } = we(), x = f(E()), {
63
+ style: j,
64
+ isDragging: L,
65
+ position: k
66
+ } = ye(c, {
67
+ handle: S,
68
+ initialValue: b(0),
69
+ preventDefault: !0,
70
+ onStart() {
71
+ T.value = !0, C();
72
+ },
73
+ onMove(e) {
74
+ if (typeof window > "u" || !c.value) return;
75
+ const a = c.value.getBoundingClientRect(), n = document.documentElement.clientWidth - a.width, u = document.documentElement.clientHeight - a.height;
76
+ k.value = {
77
+ x: Math.max(0, Math.min(e.x, n)),
78
+ y: Math.max(0, Math.min(e.y, u))
79
+ };
80
+ }
81
+ });
82
+ p(A, (e) => {
83
+ T.value || e <= 0 || (k.value = b(e));
84
+ }), p([() => i.left, () => i.right, () => i.top, () => i.bottom], () => {
85
+ T.value = !1, k.value = b(A.value);
86
+ });
87
+ const U = N(() => {
88
+ if (i.position === "static")
89
+ return { width: `${m}px` };
90
+ const e = j.value, a = { zIndex: x.value, width: `${m}px` };
91
+ return typeof e == "string" ? `${e};z-index:${x.value};width:${m}px` : [e, a];
92
+ }), q = N(() => i.position === "static" || !!$.value), G = N(() => _.value && q.value);
93
+ function J() {
94
+ if (i.teleportTo) return i.teleportTo;
95
+ if (typeof window > "u" || !window.__MICRO_APP_ENVIRONMENT__) return "body";
96
+ const e = w.value;
97
+ return e ? e.closest("micro-app, [data-v-app], #app") ?? "body" : "body";
98
+ }
99
+ function g() {
100
+ $.value = J();
101
+ }
102
+ function C() {
103
+ x.value = E();
104
+ }
105
+ return Q(() => {
106
+ _.value = !0, g();
107
+ }), ee(() => {
108
+ _.value = !1;
109
+ }), p(w, () => {
110
+ g();
111
+ }), p(
112
+ () => i.teleportTo,
113
+ () => {
114
+ g();
115
+ }
116
+ ), te(() => {
117
+ _.value && g();
118
+ }), (e, a) => (s(), d(z, null, [
119
+ r("span", {
120
+ ref_key: "sourceRef",
121
+ ref: w,
122
+ class: l(`${t(o)}__source`),
123
+ "aria-hidden": "true"
124
+ }, null, 2),
125
+ (s(), oe(ne, {
126
+ to: $.value || "body",
127
+ disabled: e.position === "static"
128
+ }, [
129
+ G.value ? (s(), d("div", {
130
+ key: 0,
131
+ ref_key: "navRef",
132
+ ref: c,
133
+ class: l([t(o), { [`${t(o)}--dragging`]: t(L) }]),
134
+ style: ie(U.value),
135
+ onClick: C
136
+ }, [
137
+ r("div", {
138
+ ref_key: "headerRef",
139
+ ref: S,
140
+ class: l(`${t(o)}__header`),
141
+ onClick: C
142
+ }, [
143
+ y(t(ce), {
144
+ class: l(["opacity-0", `${t(o)}__drag-icon`]),
145
+ icon: t(de),
146
+ size: 16,
147
+ "is-custom-svg": ""
148
+ }, null, 8, ["icon", "class"]),
149
+ y(t(fe), {
150
+ class: l(`${t(o)}__title`),
151
+ "tool-tip": !1
152
+ }, {
153
+ default: H(() => [
154
+ ae(O(e.title), 1)
155
+ ]),
156
+ _: 1
157
+ }, 8, ["class"])
158
+ ], 2),
159
+ r("div", {
160
+ class: l(`${t(o)}__body`)
161
+ }, [
162
+ y(t($e), {
163
+ tag: "ul",
164
+ "view-class": `${t(o)}__list`,
165
+ "max-height": 400
166
+ }, {
167
+ default: H(() => [
168
+ (s(!0), d(z, null, le(e.items, (n, u) => (s(), d("li", {
169
+ key: n.key,
170
+ class: l(`${t(o)}__node`)
171
+ }, [
172
+ r("div", {
173
+ class: l(`${t(o)}__content`)
174
+ }, [
175
+ r("div", {
176
+ class: l([
177
+ `${t(o)}__item`,
178
+ { [`${t(o)}__item--active`]: v.value === n.key },
179
+ { [`${t(o)}__item--error`]: e.badgeCounts[n.key] }
180
+ ]),
181
+ onClick: (D) => F(n.key)
182
+ }, [
183
+ e.badgeCounts[n.key] ? (s(), d("span", {
184
+ key: 0,
185
+ class: l(`${t(o)}__badge`)
186
+ }, O(e.badgeCounts[n.key]), 3)) : V("", !0),
187
+ r("span", {
188
+ class: l(`${t(o)}__item-main`)
189
+ }, [
190
+ r("span", {
191
+ class: l(`${t(o)}__item-text`),
192
+ title: t(me)(n.title) ? n.title : void 0
193
+ }, [
194
+ y(Z, { row: n }, null, 8, ["row"])
195
+ ], 10, be),
196
+ e.$slots.description ? (s(), d("span", {
197
+ key: 0,
198
+ class: l(`${t(o)}__item-description`)
199
+ }, [
200
+ re(e.$slots, "description", { row: n })
201
+ ], 2)) : V("", !0)
202
+ ], 2)
203
+ ], 10, Te)
204
+ ], 2),
205
+ r("div", {
206
+ class: l(`${t(o)}__rail`)
207
+ }, [
208
+ r("span", {
209
+ class: l([`${t(o)}__line-slot`, { [`${t(o)}__line-slot--visible`]: u > 0 }])
210
+ }, null, 2),
211
+ r("span", {
212
+ class: l([
213
+ `${t(o)}__dot`,
214
+ { [`${t(o)}__dot--active`]: v.value === n.key },
215
+ { [`${t(o)}__dot--error`]: e.badgeCounts[n.key] }
216
+ ])
217
+ }, null, 2),
218
+ r("span", {
219
+ class: l([`${t(o)}__line-slot`, { [`${t(o)}__line-slot--visible`]: u < e.items.length - 1 }])
220
+ }, null, 2)
221
+ ], 2)
222
+ ], 2))), 128))
223
+ ]),
224
+ _: 3
225
+ }, 8, ["view-class"])
226
+ ], 2)
227
+ ], 6)) : V("", !0)
228
+ ], 8, ["to", "disabled"]))
229
+ ], 64));
230
+ }
231
+ });
232
+ export {
233
+ Ee as default
234
+ };
@@ -0,0 +1,5 @@
1
+ import o from "./TtNavAnchor.vue.js";
2
+ /* empty css */
3
+ export {
4
+ o as default
5
+ };
@@ -0,0 +1,4 @@
1
+ const _ = 164;
2
+ export {
3
+ _ as TT_NAV_ANCHOR_ROOT_WIDTH_PX
4
+ };
@@ -0,0 +1,7 @@
1
+ import { withInstall as t } from "@dazhicheng/utils";
2
+ import o from "./src/index.vue.js";
3
+ const l = t(o);
4
+ export {
5
+ l as TtPanelSelect,
6
+ l as default
7
+ };
@@ -0,0 +1,4 @@
1
+ const l = "all";
2
+ export {
3
+ l as ALL
4
+ };
@@ -0,0 +1,56 @@
1
+ import { defineComponent as i, createElementBlock as f, openBlock as u, normalizeClass as t, createVNode as a, unref as r, withCtx as o } from "vue";
2
+ import { Search as c } from "@element-plus/icons-vue";
3
+ import { ElInput as m, ElIcon as h, ElTreeV2 as k } from "element-plus";
4
+ const x = /* @__PURE__ */ i({
5
+ name: "PanelLeft",
6
+ __name: "PanelLeft",
7
+ props: {
8
+ prefixCls: {},
9
+ keyword: {},
10
+ treeData: {},
11
+ expandedKeys: {},
12
+ leftPlaceholder: {}
13
+ },
14
+ emits: ["update:keyword", "select"],
15
+ setup(y, { emit: s }) {
16
+ const d = s;
17
+ function n(e, l) {
18
+ l.isLeaf && d("select", e);
19
+ }
20
+ return (e, l) => (u(), f("div", {
21
+ class: t(`${e.prefixCls}__left`)
22
+ }, [
23
+ a(r(m), {
24
+ "model-value": e.keyword,
25
+ class: t(`${e.prefixCls}__search`),
26
+ placeholder: e.leftPlaceholder,
27
+ clearable: "",
28
+ "onUpdate:modelValue": l[0] || (l[0] = (p) => d("update:keyword", p))
29
+ }, {
30
+ prefix: o(() => [
31
+ a(r(h), null, {
32
+ default: o(() => [
33
+ a(r(c))
34
+ ]),
35
+ _: 1
36
+ })
37
+ ]),
38
+ _: 1
39
+ }, 8, ["model-value", "class", "placeholder"]),
40
+ a(r(k), {
41
+ class: t(`${e.prefixCls}__tree`),
42
+ data: e.treeData,
43
+ props: { label: "label", children: "children", disabled: "disabled", value: "value" },
44
+ height: 320,
45
+ "node-key": "value",
46
+ "default-expanded-keys": e.expandedKeys,
47
+ "highlight-current": "",
48
+ "empty-text": "暂无数据",
49
+ onNodeClick: n
50
+ }, null, 8, ["class", "data", "default-expanded-keys"])
51
+ ], 2));
52
+ }
53
+ });
54
+ export {
55
+ x as default
56
+ };
@@ -0,0 +1,4 @@
1
+ import f from "./PanelLeft.vue.js";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1,277 @@
1
+ import { defineComponent as ie, useTemplateRef as ue, ref as f, computed as v, watch as x, nextTick as L, createElementBlock as d, openBlock as s, normalizeClass as n, createElementVNode as w, createCommentVNode as Y, createVNode as p, createBlock as I, unref as i, withCtx as u, createTextVNode as $, normalizeStyle as M, Fragment as A, renderList as H, toDisplayString as V } from "vue";
2
+ import { TtButton as de } from "@dazhicheng-ui/components/tt-button";
3
+ import { TtText as _ } from "@dazhicheng-ui/components/tt-text";
4
+ import { Search as pe } from "@element-plus/icons-vue";
5
+ import { ElInput as ce, ElIcon as fe, ElCheckbox as P, ElScrollbar as ve } from "element-plus";
6
+ const he = ["data-virtual-index", "data-flash-seed"], O = 8, Ce = /* @__PURE__ */ ie({
7
+ name: "PanelMiddle",
8
+ __name: "PanelMiddle",
9
+ props: {
10
+ disabled: { type: Boolean, default: !1 },
11
+ prefixCls: {},
12
+ multiple: { type: Boolean },
13
+ keyword: {},
14
+ rows: {},
15
+ optionPerRow: {},
16
+ rowHeight: {},
17
+ selectedValues: {},
18
+ isAllChecked: { type: Boolean },
19
+ isIndeterminate: { type: Boolean },
20
+ allChecked: { type: Boolean },
21
+ groupCheckedMap: {},
22
+ groupIndeterminateMap: {},
23
+ scrollToGroupValue: { default: void 0 },
24
+ pasteSearch: { type: Boolean, default: !1 },
25
+ separator: { default: "," },
26
+ showAll: { type: Boolean },
27
+ middlePlaceholder: {}
28
+ },
29
+ emits: ["update:keyword", "checkAll", "allCheck", "groupCheck", "optionCheck", "optionsCheck"],
30
+ setup(W, { expose: j, emit: J }) {
31
+ const l = W, c = J, y = ue("scrollbarRef"), F = f(), Q = f(), S = f(0), G = f(0), m = f(""), k = f(), q = f(0), T = f(!1);
32
+ let B;
33
+ const X = v(() => l.rows.length * l.rowHeight), Z = v(() => Math.max(1, Math.ceil(G.value / l.rowHeight))), g = v(() => Math.max(0, Math.floor(S.value / l.rowHeight) - O)), ee = v(() => Math.min(l.rows.length, g.value + Z.value + O * 2)), le = v(() => g.value * l.rowHeight), ae = v(() => l.rows.slice(g.value, ee.value)), oe = v(() => {
34
+ var e;
35
+ return ((e = l.rows[0]) == null ? void 0 : e.type) === "group";
36
+ }), te = v(
37
+ () => l.rows.filter((e) => e.type === "options").flatMap((e) => e.options).filter((e) => !e.disabled)
38
+ );
39
+ x(
40
+ () => l.keyword,
41
+ (e) => {
42
+ m.value = e;
43
+ },
44
+ { immediate: !0 }
45
+ );
46
+ function D() {
47
+ var a;
48
+ const e = (a = y.value) == null ? void 0 : a.wrapRef;
49
+ e && (Q.value = e, G.value = e.clientHeight, S.value = e.scrollTop);
50
+ }
51
+ function E() {
52
+ var a;
53
+ const e = (a = y.value) == null ? void 0 : a.wrapRef;
54
+ e && (S.value = e.scrollTop);
55
+ }
56
+ function re(e) {
57
+ k.value = void 0, q.value += 1, requestAnimationFrame(() => {
58
+ k.value = e, B && clearTimeout(B), B = setTimeout(() => {
59
+ k.value = void 0;
60
+ }, 1400);
61
+ });
62
+ }
63
+ async function N(e) {
64
+ var h;
65
+ await L(), D();
66
+ const a = l.rows.findIndex((t) => t.type === "group" && t.group.value === e);
67
+ if (a < 0) return;
68
+ const o = a * l.rowHeight;
69
+ (h = y.value) == null || h.setScrollTop(o), requestAnimationFrame(() => {
70
+ E(), re(e);
71
+ });
72
+ }
73
+ function se(e) {
74
+ var U;
75
+ if (l.disabled)
76
+ return;
77
+ e.preventDefault();
78
+ const a = ((U = e.clipboardData) == null ? void 0 : U.getData("text")) || "";
79
+ m.value = a.trim(), l.pasteSearch ? c("update:keyword", m.value) : (T.value = !0, requestAnimationFrame(() => {
80
+ T.value = !1;
81
+ }));
82
+ const h = (l.separator || ",").replace(/[.*+?^${}()|[\]\\]/g, "\\$&"), t = new RegExp(`${h}|\\r?\\n|\\t`, "g"), C = a.split(t).map((r) => r.trim()).filter(Boolean), b = () => {
83
+ requestAnimationFrame(() => {
84
+ var z;
85
+ const r = (z = F.value) == null ? void 0 : z.input;
86
+ r == null || r.focus(), r == null || r.select();
87
+ });
88
+ };
89
+ if (!C.length) {
90
+ b();
91
+ return;
92
+ }
93
+ const K = new Set(C), R = te.value.filter((r) => K.has(r.label) || K.has(String(r.value))).map((r) => r.value);
94
+ if (!R.length) {
95
+ b();
96
+ return;
97
+ }
98
+ if (l.multiple) {
99
+ c("optionsCheck", R, !0), b();
100
+ return;
101
+ }
102
+ c("optionCheck", R.at(-1), !0), b();
103
+ }
104
+ function ne(e) {
105
+ m.value = e, !T.value && c("update:keyword", e);
106
+ }
107
+ return x(
108
+ () => l.scrollToGroupValue,
109
+ async (e) => {
110
+ e !== void 0 && await N(e);
111
+ },
112
+ { flush: "post" }
113
+ ), x(
114
+ () => l.rows.length,
115
+ async () => {
116
+ await L(), D();
117
+ },
118
+ { immediate: !0 }
119
+ ), j({
120
+ scrollToGroup: N
121
+ }), (e, a) => (s(), d("div", {
122
+ class: n(`${e.prefixCls}__list`)
123
+ }, [
124
+ w("div", {
125
+ class: n(`${e.prefixCls}__toolbar`)
126
+ }, [
127
+ p(i(ce), {
128
+ ref_key: "searchInputRef",
129
+ ref: F,
130
+ "model-value": m.value,
131
+ class: n(`${e.prefixCls}__search`),
132
+ placeholder: l.middlePlaceholder,
133
+ clearable: "",
134
+ "onUpdate:modelValue": ne,
135
+ onPaste: se
136
+ }, {
137
+ prefix: u(() => [
138
+ p(i(fe), null, {
139
+ default: u(() => [
140
+ p(i(pe))
141
+ ]),
142
+ _: 1
143
+ })
144
+ ]),
145
+ _: 1
146
+ }, 8, ["model-value", "class", "placeholder"]),
147
+ e.multiple ? (s(), I(i(de), {
148
+ key: 0,
149
+ disabled: e.disabled,
150
+ plain: "",
151
+ onClick: a[0] || (a[0] = () => c("checkAll", !0))
152
+ }, {
153
+ default: u(() => [...a[2] || (a[2] = [
154
+ w("span", null, "全选", -1)
155
+ ])]),
156
+ _: 1
157
+ }, 8, ["disabled"])) : Y("", !0)
158
+ ], 2),
159
+ l.showAll ? (s(), d("div", {
160
+ key: 0,
161
+ class: n([`${e.prefixCls}__panel-head`, oe.value ? "is-standalone" : ""])
162
+ }, [
163
+ p(i(P), {
164
+ disabled: e.disabled,
165
+ "model-value": l.allChecked,
166
+ onChange: a[1] || (a[1] = (o) => c("allCheck", !!o))
167
+ }, {
168
+ default: u(() => [
169
+ p(i(_), null, {
170
+ default: u(() => [...a[3] || (a[3] = [
171
+ $("全部", -1)
172
+ ])]),
173
+ _: 1
174
+ })
175
+ ]),
176
+ _: 1
177
+ }, 8, ["disabled", "model-value"])
178
+ ], 2)) : Y("", !0),
179
+ w("div", {
180
+ class: n(`${e.prefixCls}__checkbox-group`)
181
+ }, [
182
+ p(i(ve), {
183
+ ref_key: "scrollbarRef",
184
+ ref: y,
185
+ class: n(`${e.prefixCls}__middle-scrollbar`),
186
+ onScroll: E
187
+ }, {
188
+ default: u(() => [
189
+ w("div", {
190
+ class: n(`${e.prefixCls}__middle-virtual-host`),
191
+ style: M({ height: `${X.value}px` })
192
+ }, [
193
+ w("div", {
194
+ style: M({ transform: `translateY(${le.value}px)` })
195
+ }, [
196
+ (s(!0), d(A, null, H(ae.value, (o, h) => (s(), d("div", {
197
+ key: o.key,
198
+ style: M({ height: `${e.rowHeight}px` }),
199
+ class: n([
200
+ `${e.prefixCls}__middle-row`,
201
+ o.type === "group" ? `${e.prefixCls}__middle-group` : `${e.prefixCls}__middle-options`,
202
+ o.type === "options" && o.isLast ? "is-last" : "",
203
+ o.type === "options" && g.value + h === 0 && !l.showAll ? "is-first" : "",
204
+ k.value === o.group.value ? `${e.prefixCls}__group-flash` : ""
205
+ ]),
206
+ "data-virtual-index": g.value + h,
207
+ "data-flash-seed": q.value
208
+ }, [
209
+ o.type === "group" ? (s(), d("div", {
210
+ key: 0,
211
+ class: n(`${e.prefixCls}__panel-head`)
212
+ }, [
213
+ l.multiple ? (s(), I(i(P), {
214
+ key: 0,
215
+ "model-value": e.groupCheckedMap[String(o.group.value)],
216
+ indeterminate: e.groupIndeterminateMap[String(o.group.value)],
217
+ disabled: e.disabled,
218
+ onChange: (t) => c("groupCheck", o.group.value, !!t)
219
+ }, {
220
+ default: u(() => [
221
+ p(i(_), null, {
222
+ default: u(() => [
223
+ $(V(o.group.label), 1)
224
+ ]),
225
+ _: 2
226
+ }, 1024)
227
+ ]),
228
+ _: 2
229
+ }, 1032, ["model-value", "indeterminate", "disabled", "onChange"])) : (s(), I(i(_), { key: 1 }, {
230
+ default: u(() => [
231
+ $(V(o.group.label), 1)
232
+ ]),
233
+ _: 2
234
+ }, 1024))
235
+ ], 2)) : (s(), d("div", {
236
+ key: 1,
237
+ class: n(`${e.prefixCls}__option-row`)
238
+ }, [
239
+ (s(!0), d(A, null, H(o.options, (t) => (s(), d("div", {
240
+ key: t.value,
241
+ class: n(`${e.prefixCls}__option-cell`)
242
+ }, [
243
+ p(i(P), {
244
+ "model-value": e.selectedValues.includes(t.value),
245
+ disabled: e.disabled ?? t.disabled,
246
+ class: n(`${e.prefixCls}__option`),
247
+ onChange: (C) => c("optionCheck", t.value, !!C)
248
+ }, {
249
+ default: u(() => [
250
+ p(i(_), { "tool-tip-line": 2 }, {
251
+ default: u(() => [
252
+ $(V(t.label), 1)
253
+ ]),
254
+ _: 2
255
+ }, 1024)
256
+ ]),
257
+ _: 2
258
+ }, 1032, ["model-value", "disabled", "class", "onChange"])
259
+ ], 2))), 128)),
260
+ (s(!0), d(A, null, H(e.optionPerRow - o.options.length, (t) => (s(), d("div", {
261
+ key: `empty-${o.key}-${t}`,
262
+ class: n(`${e.prefixCls}__option-cell`)
263
+ }, null, 2))), 128))
264
+ ], 2))
265
+ ], 14, he))), 128))
266
+ ], 4)
267
+ ], 6)
268
+ ]),
269
+ _: 1
270
+ }, 8, ["class"])
271
+ ], 2)
272
+ ], 2));
273
+ }
274
+ });
275
+ export {
276
+ Ce as default
277
+ };
@@ -0,0 +1,4 @@
1
+ import f from "./PanelMiddle.vue.js";
2
+ export {
3
+ f as default
4
+ };