@ctzy-web-client/plugin-component-vue 1.0.9 → 1.0.11

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 (273) hide show
  1. package/es/_virtual/_plugin-vue_export-helper.mjs +9 -0
  2. package/es/advance-select/advance-operation.mjs +43 -0
  3. package/es/advance-select/advance-option.mjs +125 -0
  4. package/es/advance-select/advance-select.mjs +359 -0
  5. package/es/advance-select/events-helpers.mjs +29 -0
  6. package/es/advance-select/index.mjs +13 -0
  7. package/es/advance-select/use-advance-option.mjs +43 -0
  8. package/es/advance-select/use-advance-select.mjs +117 -0
  9. package/es/application-slot/application-slot.mjs +51 -0
  10. package/es/application-slot/breadcrumb-item.mjs +23 -0
  11. package/es/application-slot/header-tools-item.mjs +23 -0
  12. package/es/application-slot/index.mjs +16 -0
  13. package/es/breadcrumb-select/breadcrumb-select.mjs +155 -0
  14. package/es/breadcrumb-select/index.mjs +6 -0
  15. package/es/components.mjs +22 -0
  16. package/es/contextmenu/contextmenu-item.mjs +21 -0
  17. package/es/contextmenu/contextmenu.mjs +64 -0
  18. package/es/contextmenu/index.mjs +10 -0
  19. package/es/contextmenu/use-contextmenu.mjs +85 -0
  20. package/es/data-form/data-form-item.mjs +53 -0
  21. package/es/data-form/data-form.mjs +175 -0
  22. package/es/data-form/dynamic-component.mjs +23 -0
  23. package/es/data-form/form-components/Blots/AtBlot.mjs +25 -0
  24. package/es/data-form/form-components/bwa-date-picker.mjs +45 -0
  25. package/es/data-form/form-components/bwa-date-time-picker.mjs +50 -0
  26. package/es/data-form/form-components/bwa-input-float.mjs +43 -0
  27. package/es/data-form/form-components/bwa-input-integer.mjs +56 -0
  28. package/es/data-form/form-components/bwa-input.mjs +38 -0
  29. package/es/data-form/form-components/bwa-multi-select.mjs +35 -0
  30. package/es/data-form/form-components/bwa-rich-text-tinymce.mjs +234 -0
  31. package/es/data-form/form-components/bwa-rich-text.mjs +325 -0
  32. package/es/data-form/form-components/bwa-select.mjs +76 -0
  33. package/es/data-form/form-components/bwa-textarea.mjs +33 -0
  34. package/es/data-form/form-components/bwa-upload.mjs +159 -0
  35. package/es/data-form/form-components/bwa-user-multi-select.mjs +30 -0
  36. package/es/data-form/form-components/bwa-user-select.mjs +69 -0
  37. package/es/data-form/index.mjs +34 -0
  38. package/es/data-table/data-column-view.mjs +131 -0
  39. package/es/data-table/data-table-card.mjs +118 -0
  40. package/es/data-table/data-table-column.mjs +56 -0
  41. package/es/data-table/data-table.mjs +369 -0
  42. package/es/data-table/dynamic-component.mjs +48 -0
  43. package/es/data-table/index.mjs +13 -0
  44. package/es/data-table/use-datatable-drag.mjs +110 -0
  45. package/es/datatable-settings/datatable-settings.mjs +309 -0
  46. package/es/datatable-settings/index.mjs +6 -0
  47. package/es/date-range/date-picker.mjs +128 -0
  48. package/es/date-range/date-range.mjs +177 -0
  49. package/es/date-range/index.mjs +6 -0
  50. package/es/drag-list/constants.mjs +3 -0
  51. package/es/drag-list/drag-item.mjs +49 -0
  52. package/es/drag-list/drag-list.mjs +56 -0
  53. package/es/drag-list/index.mjs +6 -0
  54. package/es/drag-list/use-drag-list.mjs +154 -0
  55. package/es/dragable/constants.mjs +4 -0
  56. package/es/dragable/dragable-item.mjs +25 -0
  57. package/es/dragable/dragable-operation.mjs +32 -0
  58. package/es/dragable/dragable.mjs +31 -0
  59. package/es/dragable/index.mjs +15 -0
  60. package/es/dragable/use-dragable.mjs +134 -0
  61. package/es/filter-panel/conditions/condition.mjs +30 -0
  62. package/es/filter-panel/conditions/date-range-condition.mjs +46 -0
  63. package/es/filter-panel/conditions/department-condition/department-condition.mjs +81 -0
  64. package/es/filter-panel/conditions/department-condition/department-node.mjs +74 -0
  65. package/es/filter-panel/conditions/index.mjs +21 -0
  66. package/es/filter-panel/conditions/input-condition.mjs +83 -0
  67. package/es/filter-panel/conditions/multi-user-condition.mjs +64 -0
  68. package/es/filter-panel/conditions/multiple-menu-condition.mjs +41 -0
  69. package/es/filter-panel/conditions/single-menu-condition.mjs +68 -0
  70. package/es/filter-panel/conditions/single-user-condition.mjs +64 -0
  71. package/es/filter-panel/filter-panel-item.mjs +47 -0
  72. package/es/filter-panel/filter-panel.mjs +180 -0
  73. package/es/filter-panel/index.mjs +15 -0
  74. package/es/filter-panel/use-filter-panel-item.mjs +52 -0
  75. package/es/filter-panel/use-filter-panel.mjs +135 -0
  76. package/es/hooks/use-data/index.mjs +152 -0
  77. package/es/index.mjs +27 -0
  78. package/es/layout/index.mjs +6 -0
  79. package/es/layout/layout.mjs +86 -0
  80. package/es/make-installer.mjs +34 -0
  81. package/es/math/Rectangle.mjs +25 -0
  82. package/es/menu/index.mjs +6 -0
  83. package/es/menu/menu-item.mjs +75 -0
  84. package/es/menu/menu.mjs +60 -0
  85. package/es/node_modules/.pnpm/@vueuse_core@9.6.0_vue@3.2.41/node_modules/@vueuse/core/index.mjs +6372 -0
  86. package/es/node_modules/.pnpm/@vueuse_shared@9.6.0_vue@3.2.41/node_modules/@vueuse/shared/index.mjs +1517 -0
  87. package/es/panel/index.mjs +6 -0
  88. package/es/panel/panel.mjs +55 -0
  89. package/es/panel-tabs/index.mjs +6 -0
  90. package/es/panel-tabs/panel-tabs.mjs +66 -0
  91. package/es/pct-filter-panel/index.mjs +10 -0
  92. package/es/pct-filter-panel/pct-compents/index.mjs +10 -0
  93. package/es/pct-filter-panel/pct-compents/pct-Input-condition.mjs +71 -0
  94. package/es/pct-filter-panel/pct-compents/pct-date-range-condition.mjs +74 -0
  95. package/es/pct-filter-panel/pct-compents/pct-multiple-menu-condition.mjs +186 -0
  96. package/es/pct-filter-panel/pct-compents/pct-multiple-menu-condition2.mjs +147 -0
  97. package/es/pct-filter-panel/pct-filter-panel-item.mjs +48 -0
  98. package/es/pct-filter-panel/pct-filter-panel.mjs +251 -0
  99. package/es/pct-filter-panel/use-filter-panel-item.mjs +56 -0
  100. package/es/pct-filter-panel/use-filter-panel.mjs +127 -0
  101. package/es/plugins.mjs +5 -0
  102. package/es/progress/index.mjs +10 -0
  103. package/es/progress/progress-item.mjs +68 -0
  104. package/es/progress/progress.mjs +74 -0
  105. package/es/progress/use-progress.mjs +46 -0
  106. package/es/utils/db.mjs +9 -0
  107. package/es/utils.mjs +99 -0
  108. package/es/where-filter-panel/index.mjs +1 -0
  109. package/es/where-filter-panel/use-where-filter-panel.mjs +18 -0
  110. package/es/where-filter-panel/where-filter-panel.mjs +17 -0
  111. package/lib/_virtual/_plugin-vue_export-helper.js +13 -0
  112. package/lib/advance-select/advance-operation.js +47 -0
  113. package/lib/advance-select/advance-option.js +129 -0
  114. package/lib/advance-select/advance-select.js +363 -0
  115. package/lib/advance-select/events-helpers.js +33 -0
  116. package/lib/advance-select/index.js +20 -0
  117. package/lib/advance-select/use-advance-option.js +47 -0
  118. package/lib/advance-select/use-advance-select.js +122 -0
  119. package/lib/application-slot/application-slot.js +55 -0
  120. package/lib/application-slot/breadcrumb-item.js +27 -0
  121. package/lib/application-slot/header-tools-item.js +27 -0
  122. package/lib/application-slot/index.js +23 -0
  123. package/lib/breadcrumb-select/breadcrumb-select.js +159 -0
  124. package/lib/breadcrumb-select/index.js +11 -0
  125. package/lib/components.js +26 -0
  126. package/lib/contextmenu/contextmenu-item.js +25 -0
  127. package/lib/contextmenu/contextmenu.js +68 -0
  128. package/lib/contextmenu/index.js +16 -0
  129. package/lib/contextmenu/use-contextmenu.js +89 -0
  130. package/lib/data-form/data-form-item.js +57 -0
  131. package/lib/data-form/data-form.js +179 -0
  132. package/lib/data-form/dynamic-component.js +27 -0
  133. package/lib/data-form/form-components/Blots/AtBlot.js +31 -0
  134. package/lib/data-form/form-components/bwa-date-picker.js +49 -0
  135. package/lib/data-form/form-components/bwa-date-time-picker.js +54 -0
  136. package/lib/data-form/form-components/bwa-input-float.js +47 -0
  137. package/lib/data-form/form-components/bwa-input-integer.js +60 -0
  138. package/lib/data-form/form-components/bwa-input.js +42 -0
  139. package/lib/data-form/form-components/bwa-multi-select.js +39 -0
  140. package/lib/data-form/form-components/bwa-rich-text-tinymce.js +242 -0
  141. package/lib/data-form/form-components/bwa-rich-text.js +333 -0
  142. package/lib/data-form/form-components/bwa-select.js +80 -0
  143. package/lib/data-form/form-components/bwa-textarea.js +37 -0
  144. package/lib/data-form/form-components/bwa-upload.js +163 -0
  145. package/lib/data-form/form-components/bwa-user-multi-select.js +34 -0
  146. package/lib/data-form/form-components/bwa-user-select.js +73 -0
  147. package/lib/data-form/index.js +40 -0
  148. package/lib/data-table/data-column-view.js +135 -0
  149. package/lib/data-table/data-table-card.js +122 -0
  150. package/lib/data-table/data-table-column.js +60 -0
  151. package/lib/data-table/data-table.js +373 -0
  152. package/lib/data-table/dynamic-component.js +56 -0
  153. package/lib/data-table/index.js +20 -0
  154. package/lib/data-table/use-datatable-drag.js +114 -0
  155. package/lib/datatable-settings/datatable-settings.js +313 -0
  156. package/lib/datatable-settings/index.js +11 -0
  157. package/lib/date-range/date-picker.js +136 -0
  158. package/lib/date-range/date-range.js +185 -0
  159. package/lib/date-range/index.js +11 -0
  160. package/lib/drag-list/constants.js +7 -0
  161. package/lib/drag-list/drag-item.js +53 -0
  162. package/lib/drag-list/drag-list.js +60 -0
  163. package/lib/drag-list/index.js +11 -0
  164. package/lib/drag-list/use-drag-list.js +158 -0
  165. package/lib/dragable/constants.js +9 -0
  166. package/lib/dragable/dragable-item.js +29 -0
  167. package/lib/dragable/dragable-operation.js +36 -0
  168. package/lib/dragable/dragable.js +35 -0
  169. package/lib/dragable/index.js +22 -0
  170. package/lib/dragable/use-dragable.js +138 -0
  171. package/lib/filter-panel/conditions/condition.js +34 -0
  172. package/lib/filter-panel/conditions/date-range-condition.js +50 -0
  173. package/lib/filter-panel/conditions/department-condition/department-condition.js +85 -0
  174. package/lib/filter-panel/conditions/department-condition/department-node.js +78 -0
  175. package/lib/filter-panel/conditions/index.js +26 -0
  176. package/lib/filter-panel/conditions/input-condition.js +87 -0
  177. package/lib/filter-panel/conditions/multi-user-condition.js +68 -0
  178. package/lib/filter-panel/conditions/multiple-menu-condition.js +45 -0
  179. package/lib/filter-panel/conditions/single-menu-condition.js +72 -0
  180. package/lib/filter-panel/conditions/single-user-condition.js +68 -0
  181. package/lib/filter-panel/filter-panel-item.js +51 -0
  182. package/lib/filter-panel/filter-panel.js +184 -0
  183. package/lib/filter-panel/index.js +20 -0
  184. package/lib/filter-panel/use-filter-panel-item.js +56 -0
  185. package/lib/filter-panel/use-filter-panel.js +139 -0
  186. package/lib/hooks/use-data/index.js +157 -0
  187. package/lib/index.js +60 -0
  188. package/lib/layout/index.js +11 -0
  189. package/lib/layout/layout.js +90 -0
  190. package/lib/make-installer.js +62 -0
  191. package/lib/math/Rectangle.js +29 -0
  192. package/lib/menu/index.js +11 -0
  193. package/lib/menu/menu-item.js +79 -0
  194. package/lib/menu/menu.js +64 -0
  195. package/lib/node_modules/.pnpm/@vueuse_core@9.6.0_vue@3.2.41/node_modules/@vueuse/core/index.js +6635 -0
  196. package/lib/node_modules/.pnpm/@vueuse_shared@9.6.0_vue@3.2.41/node_modules/@vueuse/shared/index.js +1628 -0
  197. package/lib/panel/index.js +11 -0
  198. package/lib/panel/panel.js +59 -0
  199. package/lib/panel-tabs/index.js +11 -0
  200. package/lib/panel-tabs/panel-tabs.js +70 -0
  201. package/lib/pct-filter-panel/index.js +14 -0
  202. package/lib/pct-filter-panel/pct-compents/index.js +16 -0
  203. package/lib/pct-filter-panel/pct-compents/pct-Input-condition.js +75 -0
  204. package/lib/pct-filter-panel/pct-compents/pct-date-range-condition.js +78 -0
  205. package/lib/pct-filter-panel/pct-compents/pct-multiple-menu-condition.js +190 -0
  206. package/lib/pct-filter-panel/pct-compents/pct-multiple-menu-condition2.js +151 -0
  207. package/lib/pct-filter-panel/pct-filter-panel-item.js +52 -0
  208. package/lib/pct-filter-panel/pct-filter-panel.js +255 -0
  209. package/lib/pct-filter-panel/use-filter-panel-item.js +60 -0
  210. package/lib/pct-filter-panel/use-filter-panel.js +131 -0
  211. package/lib/plugins.js +9 -0
  212. package/lib/progress/index.js +16 -0
  213. package/lib/progress/progress-item.js +72 -0
  214. package/lib/progress/progress.js +78 -0
  215. package/lib/progress/use-progress.js +51 -0
  216. package/lib/utils/db.js +17 -0
  217. package/lib/utils.js +110 -0
  218. package/lib/where-filter-panel/index.js +2 -0
  219. package/lib/where-filter-panel/use-where-filter-panel.js +22 -0
  220. package/lib/where-filter-panel/where-filter-panel.js +21 -0
  221. package/package.json +2 -2
  222. package/src/date-range/date-range.vue +2 -2
  223. package/style/advance-select.css +1 -0
  224. package/style/breadcrumb-select.css +1 -0
  225. package/style/common.css +1 -0
  226. package/style/contextmenu.css +1 -0
  227. package/style/data-form.css +1 -0
  228. package/style/data-table.css +1 -0
  229. package/style/datatable-settings.css +1 -0
  230. package/style/date-range.css +1 -0
  231. package/style/department-condition.css +1 -0
  232. package/style/drag-list.css +1 -0
  233. package/style/dragable.css +1 -0
  234. package/style/filter-panel.css +1 -0
  235. package/style/index.css +1 -0
  236. package/style/input-condition.css +1 -0
  237. package/style/layout.css +1 -0
  238. package/style/menu.css +1 -0
  239. package/style/panel-tabs.css +1 -0
  240. package/style/panel.css +1 -0
  241. package/style/pct-filter-panel.css +1 -0
  242. package/style/progress.css +1 -0
  243. package/style/rich-text.css +1 -0
  244. package/style/{theme → src/theme}/theme.scss +6 -6
  245. package/style/var.css +1 -0
  246. /package/style/{advance-select.scss → src/advance-select.scss} +0 -0
  247. /package/style/{breadcrumb-select.scss → src/breadcrumb-select.scss} +0 -0
  248. /package/style/{common → src/common}/var.scss +0 -0
  249. /package/style/{common.scss → src/common.scss} +0 -0
  250. /package/style/{contextmenu.scss → src/contextmenu.scss} +0 -0
  251. /package/style/{data-form.scss → src/data-form.scss} +0 -0
  252. /package/style/{data-table.scss → src/data-table.scss} +0 -0
  253. /package/style/{datatable-settings.scss → src/datatable-settings.scss} +0 -0
  254. /package/style/{date-range.scss → src/date-range.scss} +0 -0
  255. /package/style/{department-condition.scss → src/department-condition.scss} +0 -0
  256. /package/style/{drag-list.scss → src/drag-list.scss} +0 -0
  257. /package/style/{dragable.scss → src/dragable.scss} +0 -0
  258. /package/style/{filter-panel.scss → src/filter-panel.scss} +0 -0
  259. /package/style/{index.scss → src/index.scss} +0 -0
  260. /package/style/{input-condition.scss → src/input-condition.scss} +0 -0
  261. /package/style/{layout.scss → src/layout.scss} +0 -0
  262. /package/style/{menu.scss → src/menu.scss} +0 -0
  263. /package/style/{mixins → src/mixins}/_var.scss +0 -0
  264. /package/style/{mixins → src/mixins}/config.scss +0 -0
  265. /package/style/{mixins → src/mixins}/function.scss +0 -0
  266. /package/style/{mixins → src/mixins}/mixins.scss +0 -0
  267. /package/style/{panel-tabs.scss → src/panel-tabs.scss} +0 -0
  268. /package/style/{panel.scss → src/panel.scss} +0 -0
  269. /package/style/{pct-filter-panel.scss → src/pct-filter-panel.scss} +0 -0
  270. /package/style/{progress.scss → src/progress.scss} +0 -0
  271. /package/style/{rich-text.scss → src/rich-text.scss} +0 -0
  272. /package/style/{theme → src/theme}/var.scss +0 -0
  273. /package/style/{var.scss → src/var.scss} +0 -0
@@ -0,0 +1,313 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var vue = require('vue');
6
+ var ElementPlus = require('element-plus');
7
+ var webBaseClientVue = require('@ctzy-web-client/web-base-client-vue');
8
+ var index = require('../drag-list/index.js');
9
+ var rxjs = require('rxjs');
10
+ var db = require('../utils/db.js');
11
+ var _pluginVue_exportHelper = require('../_virtual/_plugin-vue_export-helper.js');
12
+
13
+ const __default__ = vue.defineComponent({ name: "BwaDataTableSetting" });
14
+ const _sfc_main = /* @__PURE__ */ Object.assign(__default__, {
15
+ props: {
16
+ dataTable: {
17
+ type: Object,
18
+ required: true
19
+ }
20
+ },
21
+ setup(__props) {
22
+ const props = __props;
23
+ const attrs = vue.useAttrs();
24
+ const ns = webBaseClientVue.useNamespace("datatable-settings");
25
+ const value = vue.ref(false);
26
+ const appName = webBaseClientVue.useValue("AppName");
27
+ const userService = webBaseClientVue.useService("UserService");
28
+ const userID = vue.computed(() => {
29
+ var _a, _b;
30
+ return ((_b = (_a = vue.unref(userService)) == null ? void 0 : _a.userInfo) == null ? void 0 : _b.id) || "";
31
+ });
32
+ const isShowResetColumn = vue.computed(
33
+ () => !props.dataTable.isDefaultColumnSort()
34
+ );
35
+ const key = vue.computed(
36
+ () => `${vue.unref(appName)}_${props.dataTable.name}_settings`
37
+ );
38
+ const search = vue.ref("");
39
+ const columns = vue.computed(
40
+ () => props.dataTable.getColumns().filter((column) => column.settings.visible).filter((column) => column.settings.visible)
41
+ );
42
+ const initColumns = async () => {
43
+ var _a, _b, _c;
44
+ let persistentColumnInfos = [];
45
+ const result = await db.dataModelDB.tableHeaderSettings.where("[app+tableName+userID]").equals([vue.unref(appName), props.dataTable.name, vue.unref(userID)]).toArray();
46
+ if (result.length) {
47
+ persistentColumnInfos = (_b = (_a = result[0]) == null ? void 0 : _a.columnInfo) != null ? _b : [];
48
+ }
49
+ if (persistentColumnInfos.some((item) => typeof item === "string")) {
50
+ persistentColumnInfos = persistentColumnInfos.map((columnInfo) => {
51
+ return typeof columnInfo === "object" ? columnInfo : { name: columnInfo, visible: true };
52
+ });
53
+ }
54
+ const _dataTable = props.dataTable;
55
+ let dataTableColumns = _dataTable.getColumns().slice().filter((item) => item.settings.visible);
56
+ persistentColumnInfos = persistentColumnInfos.filter(
57
+ (item) => dataTableColumns.findIndex((column) => column.name === item.name) !== -1
58
+ );
59
+ if (!persistentColumnInfos) {
60
+ return dataTableColumns;
61
+ }
62
+ let sortedColumns = persistentColumnInfos.map(
63
+ (columnInfo) => dataTableColumns.find((column) => column.name === columnInfo.name)
64
+ ).filter(Boolean);
65
+ dataTableColumns = sortedColumns.concat(
66
+ dataTableColumns.filter(
67
+ (column) => !sortedColumns.find((col) => column.name === col.name)
68
+ )
69
+ );
70
+ for (const column of dataTableColumns) {
71
+ const persistentItem = persistentColumnInfos.find(
72
+ (item) => item.name === column.name
73
+ );
74
+ column.visible = (_c = persistentItem == null ? void 0 : persistentItem.visible) != null ? _c : column.visible;
75
+ }
76
+ props.dataTable.setDisplayColumns(
77
+ dataTableColumns.filter((column) => column.visible)
78
+ );
79
+ return dataTableColumns;
80
+ };
81
+ const resetColumns = () => {
82
+ const _dataTable = props.dataTable;
83
+ _dataTable.resetColumnSort();
84
+ };
85
+ const allSearchedColumns = vue.computed(() => {
86
+ const _search = vue.unref(search);
87
+ return vue.unref(columns).filter((column) => column.title.indexOf(_search) > -1);
88
+ });
89
+ const hiddenSearchedColumns = vue.computed(
90
+ () => vue.unref(allSearchedColumns).filter((item) => !item.visible)
91
+ );
92
+ const displaySearchedColumns = vue.computed(() => {
93
+ const _search = vue.unref(search);
94
+ return props.dataTable.getDisplayColumns().filter((column) => column.settings.visible).filter((column) => column.title.indexOf(_search) > -1);
95
+ });
96
+ const handleSortChange = (sort) => {
97
+ const _columns = vue.unref(columns);
98
+ const displayColumns = sort.map(
99
+ (attrName) => {
100
+ var _a;
101
+ return (_a = _columns.find((column) => column.attrName === attrName)) != null ? _a : null;
102
+ }
103
+ ).filter(Boolean);
104
+ props.dataTable.setDisplayColumns(displayColumns);
105
+ };
106
+ const scope = vue.getCurrentScope();
107
+ const handleInitCompleted = async () => {
108
+ const dataTableColumns = await initColumns();
109
+ const subscription = props.dataTable.getDisplayColumnsSubject().pipe(
110
+ rxjs.map((displayColumns) => {
111
+ const hiddenColumns = dataTableColumns.filter(
112
+ (column) => !displayColumns.find(
113
+ (displayColumn) => displayColumn.attrName === column.attrName
114
+ )
115
+ );
116
+ return [...displayColumns, ...hiddenColumns].map((column) => ({
117
+ name: column.name,
118
+ visible: column.visible
119
+ }));
120
+ })
121
+ ).subscribe({
122
+ next: (columnInfo) => {
123
+ db.dataModelDB.tableHeaderSettings.put({
124
+ app: vue.unref(appName),
125
+ tableName: props.dataTable.name,
126
+ userID: vue.unref(userID),
127
+ columnInfo
128
+ });
129
+ }
130
+ });
131
+ scope.run(() => {
132
+ vue.onScopeDispose(() => {
133
+ subscription.unsubscribe();
134
+ });
135
+ });
136
+ };
137
+ if (!props.dataTable.inited) {
138
+ webBaseClientVue.useEventDispatcher(props.dataTable, "init-completed", handleInitCompleted);
139
+ } else {
140
+ handleInitCompleted();
141
+ }
142
+ return (_ctx, _cache) => {
143
+ const _component_RefreshRight = vue.resolveComponent("RefreshRight");
144
+ const _component_Close = vue.resolveComponent("Close");
145
+ return vue.openBlock(), vue.createBlock(vue.unref(ElementPlus.ElTooltip), vue.mergeProps({
146
+ visible: value.value,
147
+ "onUpdate:visible": _cache[2] || (_cache[2] = ($event) => value.value = $event)
148
+ }, vue.unref(attrs), {
149
+ effect: "light",
150
+ "show-arrow": false,
151
+ trigger: "click",
152
+ "popper-class": vue.unref(ns).b(),
153
+ "gpu-acceleration": false,
154
+ placement: "bottom",
155
+ "append-to": ".bwa-application"
156
+ }), {
157
+ content: vue.withCtx(() => [
158
+ vue.createElementVNode("div", {
159
+ class: vue.normalizeClass(vue.unref(ns).e("content"))
160
+ }, [
161
+ vue.createElementVNode("div", {
162
+ class: vue.normalizeClass(vue.unref(ns).e("header"))
163
+ }, [
164
+ vue.createTextVNode(" \u8868\u5934\u8BBE\u7F6E "),
165
+ vue.createElementVNode("span", {
166
+ class: vue.normalizeClass(vue.unref(ns).e("tools"))
167
+ }, [
168
+ vue.unref(isShowResetColumn) ? (vue.openBlock(), vue.createElementBlock("span", {
169
+ key: 0,
170
+ class: vue.normalizeClass([vue.unref(ns).e("tools-item"), vue.unref(ns).e("refresh")]),
171
+ onClick: resetColumns
172
+ }, [
173
+ vue.createVNode(vue.unref(ElementPlus.ElTooltip), {
174
+ content: "\u6062\u590D\u9ED8\u8BA4",
175
+ "append-to": ".bwa-application"
176
+ }, {
177
+ default: vue.withCtx(() => [
178
+ vue.createVNode(vue.unref(ElementPlus.ElIcon), null, {
179
+ default: vue.withCtx(() => [
180
+ vue.createVNode(_component_RefreshRight)
181
+ ]),
182
+ _: 1
183
+ })
184
+ ]),
185
+ _: 1
186
+ })
187
+ ], 2)) : vue.createCommentVNode("v-if", true),
188
+ vue.createElementVNode("span", {
189
+ class: vue.normalizeClass([vue.unref(ns).e("tools-item"), vue.unref(ns).e("close")]),
190
+ onClick: _cache[0] || (_cache[0] = ($event) => value.value = false)
191
+ }, [
192
+ vue.createVNode(vue.unref(ElementPlus.ElTooltip), {
193
+ content: "\u5173\u95ED",
194
+ "append-to": ".bwa-application"
195
+ }, {
196
+ default: vue.withCtx(() => [
197
+ vue.createVNode(vue.unref(ElementPlus.ElIcon), null, {
198
+ default: vue.withCtx(() => [
199
+ vue.createVNode(_component_Close)
200
+ ]),
201
+ _: 1
202
+ })
203
+ ]),
204
+ _: 1
205
+ })
206
+ ], 2)
207
+ ], 2)
208
+ ], 2),
209
+ vue.createCommentVNode(` <div :class="ns.e('search')">\r
210
+ <ElInput\r
211
+ v-model="search"\r
212
+ :clearable="true"\r
213
+ prefix-icon="Search"\r
214
+ placeholder="\u8BF7\u8F93\u5165\u5173\u952E\u8BCD\u641C\u7D22"\r
215
+ />\r
216
+ </div> `),
217
+ vue.createVNode(vue.unref(ElementPlus.ElScrollbar), { "max-height": "500px" }, {
218
+ default: vue.withCtx(() => [
219
+ vue.createElementVNode("div", {
220
+ class: vue.normalizeClass(vue.unref(ns).e("main"))
221
+ }, [
222
+ vue.unref(displaySearchedColumns).length ? (vue.openBlock(), vue.createElementBlock("div", {
223
+ key: 0,
224
+ class: vue.normalizeClass(vue.unref(ns).b("section"))
225
+ }, [
226
+ vue.createElementVNode("div", {
227
+ class: vue.normalizeClass(vue.unref(ns).be("section", "header"))
228
+ }, "\u663E\u793A\u5B57\u6BB5", 2),
229
+ vue.createVNode(vue.unref(index.BwaDraglist), {
230
+ data: vue.unref(displaySearchedColumns),
231
+ labelAttr: "title",
232
+ idAttr: "attrName",
233
+ onSortChange: handleSortChange
234
+ }, {
235
+ default: vue.withCtx(({ item }) => [
236
+ vue.createElementVNode("div", {
237
+ class: vue.normalizeClass(vue.unref(ns).be("section", "content"))
238
+ }, [
239
+ vue.createElementVNode("div", {
240
+ class: vue.normalizeClass(vue.unref(ns).e("field-item"))
241
+ }, [
242
+ vue.createElementVNode("span", null, vue.toDisplayString(item.title), 1),
243
+ vue.createVNode(vue.unref(ElementPlus.ElSwitch), {
244
+ modelValue: item.visible,
245
+ "onUpdate:modelValue": ($event) => item.visible = $event,
246
+ size: "small",
247
+ disabled: item.settings.disabled,
248
+ onMousedown: _cache[1] || (_cache[1] = vue.withModifiers(() => {
249
+ }, ["stop"]))
250
+ }, null, 8, ["modelValue", "onUpdate:modelValue", "disabled"])
251
+ ], 2)
252
+ ], 2)
253
+ ]),
254
+ _: 1
255
+ }, 8, ["data"]),
256
+ vue.createCommentVNode(` <div\r
257
+ v-show="!displaySearchedColumns.length"\r
258
+ :class="ns.be('section', 'empty')"\r
259
+ >\r
260
+ \u6682\u65E0\u5B57\u6BB5\r
261
+ </div> `)
262
+ ], 2)) : vue.createCommentVNode("v-if", true),
263
+ vue.unref(hiddenSearchedColumns).length ? (vue.openBlock(), vue.createElementBlock("div", {
264
+ key: 1,
265
+ class: vue.normalizeClass(vue.unref(ns).b("section"))
266
+ }, [
267
+ vue.createElementVNode("div", {
268
+ class: vue.normalizeClass(vue.unref(ns).be("section", "header"))
269
+ }, "\u672A\u663E\u793A\u5B57\u6BB5", 2),
270
+ vue.createElementVNode("div", {
271
+ class: vue.normalizeClass(vue.unref(ns).be("section", "content"))
272
+ }, [
273
+ (vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(vue.unref(hiddenSearchedColumns), (column) => {
274
+ return vue.openBlock(), vue.createElementBlock("div", {
275
+ key: column.attrName,
276
+ class: vue.normalizeClass(vue.unref(ns).e("field-item"))
277
+ }, [
278
+ vue.createElementVNode("span", null, vue.toDisplayString(column.title), 1),
279
+ vue.createVNode(vue.unref(ElementPlus.ElSwitch), {
280
+ modelValue: column.visible,
281
+ "onUpdate:modelValue": ($event) => column.visible = $event,
282
+ size: "small",
283
+ disabled: column.settings.disabled
284
+ }, null, 8, ["modelValue", "onUpdate:modelValue", "disabled"])
285
+ ], 2);
286
+ }), 128))
287
+ ], 2),
288
+ vue.createCommentVNode(` <div\r
289
+ v-show="!hiddenSearchedColumns.length"\r
290
+ :class="ns.be('section', 'empty')"\r
291
+ >\r
292
+ \u6682\u65E0\u5B57\u6BB5\r
293
+ </div> `)
294
+ ], 2)) : vue.createCommentVNode("v-if", true)
295
+ ], 2)
296
+ ]),
297
+ _: 1
298
+ })
299
+ ], 2)
300
+ ]),
301
+ default: vue.withCtx(() => [
302
+ vue.createElementVNode("span", null, [
303
+ vue.renderSlot(_ctx.$slots, "default")
304
+ ])
305
+ ]),
306
+ _: 3
307
+ }, 16, ["visible", "popper-class"]);
308
+ };
309
+ }
310
+ });
311
+ var DataTableSettings = /* @__PURE__ */ _pluginVue_exportHelper["default"](_sfc_main, [["__file", "datatable-settings.vue"]]);
312
+
313
+ exports["default"] = DataTableSettings;
@@ -0,0 +1,11 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var install = require('element-plus/es/utils/vue/install');
6
+ var datatableSettings = require('./datatable-settings.js');
7
+
8
+ const BwaDataTableSetting = install.withInstall(datatableSettings["default"]);
9
+
10
+ exports.BwaDataTableSetting = BwaDataTableSetting;
11
+ exports["default"] = BwaDataTableSetting;
@@ -0,0 +1,136 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var vue = require('vue');
6
+ var constants = require('element-plus/es/components/date-picker/src/constants');
7
+ var ElPanelDatePicker = require('element-plus/es/components/date-picker/src/date-picker-com/panel-date-pick');
8
+ var utils = require('element-plus/es/components/time-picker/src/utils');
9
+ var index = require('element-plus/es/hooks/index');
10
+ var webBaseClientVue = require('@ctzy-web-client/web-base-client-vue');
11
+ var _pluginVue_exportHelper = require('../_virtual/_plugin-vue_export-helper.js');
12
+
13
+ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
14
+
15
+ var ElPanelDatePicker__default = /*#__PURE__*/_interopDefaultLegacy(ElPanelDatePicker);
16
+
17
+ const __default__ = vue.defineComponent({ name: "BwaDatePicker" });
18
+ const _sfc_main = /* @__PURE__ */ Object.assign(__default__, {
19
+ props: {
20
+ modelValue: {
21
+ type: [String, Date, Array]
22
+ },
23
+ visible: {
24
+ type: Boolean
25
+ },
26
+ format: {
27
+ type: String,
28
+ default: "YYYY-MM-DD"
29
+ },
30
+ shortcuts: {
31
+ type: Array,
32
+ default: () => []
33
+ }
34
+ },
35
+ emits: ["update:modelValue", "update:visible"],
36
+ setup(__props, { emit }) {
37
+ const props = __props;
38
+ const ns = webBaseClientVue.useNamespace("datepicker");
39
+ const { lang } = index.useLocale();
40
+ const visible = vue.ref(false);
41
+ vue.watch(visible, () => {
42
+ emit("update:visible", visible.value);
43
+ });
44
+ vue.provide("EP_PICKER_BASE", {
45
+ props
46
+ });
47
+ vue.provide(constants.ROOT_PICKER_INJECTION_KEY, {
48
+ slots: {},
49
+ pickerNs: null
50
+ });
51
+ const parsedValue = vue.computed(() => {
52
+ return utils.parseDate(props.modelValue, props.format, lang);
53
+ });
54
+ const emitInput = (input) => {
55
+ if (utils.valueEquals(props.modelValue, input)) {
56
+ return;
57
+ }
58
+ let formatted;
59
+ if (Array.isArray(input)) {
60
+ formatted = input.map((item) => utils.formatter(item, props.format, lang.value));
61
+ } else {
62
+ formatted = utils.formatter(input, props.format, lang.value);
63
+ }
64
+ emit("update:modelValue", formatted);
65
+ };
66
+ const onPick = (date) => {
67
+ let result;
68
+ if (Array.isArray(date)) {
69
+ result = date.map((_) => _.toDate());
70
+ } else {
71
+ result = date ? date.toDate() : date;
72
+ }
73
+ emitInput(result);
74
+ visible.value = false;
75
+ };
76
+ const onClear = () => {
77
+ emit("update:modelValue", "");
78
+ visible.value = false;
79
+ };
80
+ return (_ctx, _cache) => {
81
+ const _component_ElButton = vue.resolveComponent("ElButton");
82
+ const _component_ElTooltip = vue.resolveComponent("ElTooltip");
83
+ return vue.openBlock(), vue.createBlock(_component_ElTooltip, {
84
+ trigger: "click",
85
+ pure: "",
86
+ teleported: "",
87
+ effect: "light",
88
+ role: "dialog",
89
+ transition: `el-zoom-in-top`,
90
+ "fallback-placements": ["bottom", "top", "right", "left"],
91
+ "gpu-acceleration": false,
92
+ "show-arrow": false,
93
+ "stop-popper-mouse-event": false,
94
+ visible: visible.value,
95
+ "onUpdate:visible": _cache[0] || (_cache[0] = ($event) => visible.value = $event),
96
+ "hide-after": 0,
97
+ "popper-class": vue.unref(ns).b(),
98
+ persistent: "",
99
+ "append-to": ".bwa-application"
100
+ }, {
101
+ default: vue.withCtx(() => [
102
+ vue.renderSlot(_ctx.$slots, "default", { visible: visible.value })
103
+ ]),
104
+ content: vue.withCtx(() => [
105
+ vue.createVNode(vue.unref(ElPanelDatePicker__default["default"]), {
106
+ type: "date",
107
+ "parsed-value": vue.unref(parsedValue),
108
+ onPick,
109
+ teleported: false
110
+ }, {
111
+ sidebar: vue.withCtx(() => [
112
+ vue.createElementVNode("div", {
113
+ class: vue.normalizeClass(vue.unref(ns).e("sidebar"))
114
+ }, [
115
+ vue.createVNode(_component_ElButton, {
116
+ size: "small",
117
+ onClick: onClear
118
+ }, {
119
+ default: vue.withCtx(() => [
120
+ vue.createTextVNode("\u6E05\u7A7A")
121
+ ]),
122
+ _: 1
123
+ })
124
+ ], 2)
125
+ ]),
126
+ _: 1
127
+ }, 8, ["parsed-value"])
128
+ ]),
129
+ _: 3
130
+ }, 8, ["visible", "popper-class"]);
131
+ };
132
+ }
133
+ });
134
+ var datePicker = /* @__PURE__ */ _pluginVue_exportHelper["default"](_sfc_main, [["__file", "date-picker.vue"]]);
135
+
136
+ exports["default"] = datePicker;
@@ -0,0 +1,185 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var vue = require('vue');
6
+ var webBaseClientVue = require('@ctzy-web-client/web-base-client-vue');
7
+ var ElementPlus = require('element-plus');
8
+ var PanelDateRange = require('element-plus/es/components/date-picker/src/props/panel-date-range.vue');
9
+ var _pluginVue_exportHelper = require('../_virtual/_plugin-vue_export-helper.js');
10
+
11
+ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
12
+
13
+ var PanelDateRange__default = /*#__PURE__*/_interopDefaultLegacy(PanelDateRange);
14
+
15
+ const __default__ = vue.defineComponent({ name: "BwaDateRange" });
16
+ const _sfc_main = /* @__PURE__ */ Object.assign(__default__, {
17
+ props: {
18
+ ...ElementPlus.timePickerDefaultProps,
19
+ modelValue: {
20
+ type: null,
21
+ required: true
22
+ }
23
+ },
24
+ emits: ["update:modelValue"],
25
+ setup(__props, { emit }) {
26
+ const props = __props;
27
+ const ns = webBaseClientVue.useNamespace("daterange");
28
+ const pickerVisivle = vue.ref(false);
29
+ const filterPanelItem = vue.inject(webBaseClientVue.filterPanelItemKey);
30
+ const column = vue.computed(() => {
31
+ var _a;
32
+ return (_a = filterPanelItem == null ? void 0 : filterPanelItem.column) != null ? _a : null;
33
+ });
34
+ const slots = vue.useSlots();
35
+ const locale = webBaseClientVue.useGlobalConfig("locale", "ZH");
36
+ const lang = vue.computed(() => vue.unref(locale).name);
37
+ vue.provide(ElementPlus.ROOT_PICKER_INJECTION_KEY, {
38
+ slots,
39
+ pickerNs: ElementPlus.useNamespace("picker-panel")
40
+ });
41
+ vue.provide("EP_PICKER_BASE", {
42
+ props
43
+ });
44
+ vue.watch(
45
+ vue.computed(() => props.modelValue),
46
+ () => {
47
+ if (!props.modelValue || Array.isArray(props.modelValue) || typeof props.modelValue !== "object") {
48
+ emit("update:modelValue", { start: "", end: "" });
49
+ }
50
+ },
51
+ { immediate: true }
52
+ );
53
+ const formatShowTime = (date) => {
54
+ return date ? ElementPlus.dayjs(date).format("YYYY-MM-DD") : "";
55
+ };
56
+ const startTime = vue.computed(() => {
57
+ var _a;
58
+ if (!((_a = props.modelValue) == null ? void 0 : _a.start)) {
59
+ return "";
60
+ }
61
+ return ElementPlus.dayjs(props.modelValue.start).set("hour", 0).set("minute", 0).set("second", 0).format("YYYY-MM-DD HH:mm:ss");
62
+ });
63
+ const endTime = vue.computed(() => {
64
+ var _a;
65
+ if (!((_a = props.modelValue) == null ? void 0 : _a.end)) {
66
+ return "";
67
+ }
68
+ return ElementPlus.dayjs(props.modelValue.end).set("hour", 23).set("minute", 59).set("second", 59).format("YYYY-MM-DD HH:mm:ss");
69
+ });
70
+ const formatStartTime = vue.computed(() => formatShowTime(vue.unref(startTime)));
71
+ const formatEndTime = vue.computed(() => formatShowTime(vue.unref(endTime)));
72
+ const dateRangeValue = vue.computed(() => [vue.unref(startTime), vue.unref(endTime)]);
73
+ const valueIsEmpty = vue.computed(() => {
74
+ const value = vue.unref(dateRangeValue);
75
+ return !value || Array.isArray(value) && !value.filter(Boolean).length;
76
+ });
77
+ const parsedValue = vue.computed(() => {
78
+ const { valueFormat } = props;
79
+ const value = vue.unref(dateRangeValue);
80
+ if (!vue.unref(valueIsEmpty)) {
81
+ return value.map((d) => ElementPlus.parseDate(d, valueFormat, vue.unref(lang)));
82
+ }
83
+ return [];
84
+ });
85
+ const emitInput = (input) => {
86
+ if (!ElementPlus.valueEquals(vue.unref(dateRangeValue), input)) {
87
+ const formatted = input.map(
88
+ (item) => ElementPlus.formatter(item, props.valueFormat, vue.unref(lang))
89
+ );
90
+ emit("update:modelValue", {
91
+ start: formatted[0] ? ElementPlus.dayjs(formatted[0]).set("hour", 0).set("minute", 0).set("second", 0).format("YYYY-MM-DD HH:mm:ss") : "",
92
+ end: formatted[1] ? ElementPlus.dayjs(formatted[1]).set("hour", 23).set("minute", 59).set("second", 59).format("YYYY-MM-DD HH:mm:ss") : ""
93
+ });
94
+ }
95
+ };
96
+ const onPick = (date, visible = false) => {
97
+ pickerVisivle.value = visible;
98
+ emitInput(date.map((item) => item.toDate()));
99
+ };
100
+ return (_ctx, _cache) => {
101
+ const _component_CaretBottom = vue.resolveComponent("CaretBottom");
102
+ const _component_ElIcon = vue.resolveComponent("ElIcon");
103
+ const _component_ElTooltip = vue.resolveComponent("ElTooltip");
104
+ return vue.openBlock(), vue.createBlock(_component_ElTooltip, {
105
+ visible: pickerVisivle.value,
106
+ "onUpdate:visible": _cache[0] || (_cache[0] = ($event) => pickerVisivle.value = $event),
107
+ pure: "",
108
+ teleported: "",
109
+ effect: "light",
110
+ role: "dialog",
111
+ transition: `el-zoom-in-top`,
112
+ "fallback-placements": ["bottom", "top", "right", "left"],
113
+ "gpu-acceleration": false,
114
+ "show-arrow": false,
115
+ "stop-popper-mouse-event": false,
116
+ "hide-after": 0,
117
+ persistent: "",
118
+ trigger: "click",
119
+ "append-to": ".bwa-application"
120
+ }, {
121
+ default: vue.withCtx(() => [
122
+ vue.renderSlot(_ctx.$slots, "pct-default", {
123
+ formatStartTime: vue.unref(formatStartTime),
124
+ formatEndTime: vue.unref(formatEndTime)
125
+ }, () => [
126
+ vue.createElementVNode("div", {
127
+ class: vue.normalizeClass([vue.unref(ns).b(), vue.unref(ns).is("active", pickerVisivle.value)])
128
+ }, [
129
+ vue.renderSlot(_ctx.$slots, "label", {}, () => [
130
+ vue.unref(column) ? (vue.openBlock(), vue.createElementBlock("span", {
131
+ key: 0,
132
+ class: vue.normalizeClass(vue.unref(ns).e("label"))
133
+ }, vue.toDisplayString(vue.unref(column).title), 3)) : vue.createCommentVNode("v-if", true)
134
+ ]),
135
+ vue.createElementVNode("span", {
136
+ class: vue.normalizeClass([vue.unref(ns).e("time"), vue.unref(ns).is("empty", !vue.unref(formatStartTime))])
137
+ }, [
138
+ vue.createElementVNode("span", {
139
+ class: vue.normalizeClass(vue.unref(ns).e("content"))
140
+ }, vue.toDisplayString(vue.unref(formatStartTime) ? vue.unref(formatStartTime) : "\u5F00\u59CB\u65E5\u671F"), 3),
141
+ vue.createVNode(_component_ElIcon, {
142
+ class: vue.normalizeClass(vue.unref(ns).e("caret"))
143
+ }, {
144
+ default: vue.withCtx(() => [
145
+ vue.createVNode(_component_CaretBottom)
146
+ ]),
147
+ _: 1
148
+ }, 8, ["class"])
149
+ ], 2),
150
+ vue.createTextVNode(" \u81F3 "),
151
+ vue.createElementVNode("span", {
152
+ class: vue.normalizeClass([vue.unref(ns).e("time"), vue.unref(ns).is("empty", !vue.unref(formatEndTime))])
153
+ }, [
154
+ vue.createElementVNode("span", {
155
+ class: vue.normalizeClass(vue.unref(ns).e("content"))
156
+ }, vue.toDisplayString(vue.unref(formatEndTime) ? vue.unref(formatEndTime) : "\u7ED3\u675F\u65E5\u671F"), 3),
157
+ vue.createVNode(_component_ElIcon, {
158
+ class: vue.normalizeClass(vue.unref(ns).e("caret"))
159
+ }, {
160
+ default: vue.withCtx(() => [
161
+ vue.createVNode(_component_CaretBottom)
162
+ ]),
163
+ _: 1
164
+ }, 8, ["class"])
165
+ ], 2)
166
+ ], 2)
167
+ ])
168
+ ]),
169
+ content: vue.withCtx(() => [
170
+ vue.createVNode(PanelDateRange__default["default"], {
171
+ "parsed-value": vue.unref(parsedValue),
172
+ type: "daterange",
173
+ visible: pickerVisivle.value,
174
+ onPick,
175
+ teleported: false
176
+ }, null, 8, ["parsed-value", "visible"])
177
+ ]),
178
+ _: 3
179
+ }, 8, ["visible"]);
180
+ };
181
+ }
182
+ });
183
+ var DateRange = /* @__PURE__ */ _pluginVue_exportHelper["default"](_sfc_main, [["__file", "date-range.vue"]]);
184
+
185
+ exports["default"] = DateRange;
@@ -0,0 +1,11 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var install = require('element-plus/es/utils/vue/install');
6
+ var dateRange = require('./date-range.js');
7
+
8
+ const BwaDateRange = install.withInstall(dateRange["default"]);
9
+
10
+ exports.BwaDateRange = BwaDateRange;
11
+ exports["default"] = BwaDateRange;
@@ -0,0 +1,7 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ const dragListContextKey = "DRAG_LIST_CONTEXT_KEY";
6
+
7
+ exports.dragListContextKey = dragListContextKey;