@geelato/gl-ui-web-arco 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (201) hide show
  1. package/README.md +55 -0
  2. package/dist/GlPdf-CP236wBj.js +891 -0
  3. package/dist/GlPdf-CP236wBj.js.gz +0 -0
  4. package/dist/gl-ui-web-arco.css +1 -0
  5. package/dist/gl-ui-web-arco.css.gz +0 -0
  6. package/dist/gl-ui-web-arco.js +21 -0
  7. package/dist/gl-ui-web-arco.js.gz +0 -0
  8. package/dist/main-D7ErSddl.js +164000 -0
  9. package/dist/main-D7ErSddl.js.gz +0 -0
  10. package/dist/pdfjs-Cvb5nkrC.js +26706 -0
  11. package/dist/pdfjs-Cvb5nkrC.js.gz +0 -0
  12. package/dist/types/api/SelectOptions.d.ts +41 -0
  13. package/dist/types/components/MetaHelper.d.ts +6 -0
  14. package/dist/types/components/gl-alert/GlAlert.vue.d.ts +27 -0
  15. package/dist/types/components/gl-button/GlButton.vue.d.ts +117 -0
  16. package/dist/types/components/gl-card/index.vue.d.ts +134 -0
  17. package/dist/types/components/gl-checkbox/GlCheckbox.vue.d.ts +19 -0
  18. package/dist/types/components/gl-color/GlColor.vue.d.ts +143 -0
  19. package/dist/types/components/gl-color-clipboard/GlColorClipboard.vue.d.ts +19 -0
  20. package/dist/types/components/gl-color-input/GlColorInput.vue.d.ts +37 -0
  21. package/dist/types/components/gl-comment/GlComment.vue.d.ts +80 -0
  22. package/dist/types/components/gl-comment/comment.vue.d.ts +72 -0
  23. package/dist/types/components/gl-comment/type.d.ts +30 -0
  24. package/dist/types/components/gl-countdown/GlCountdown.vue.d.ts +43 -0
  25. package/dist/types/components/gl-crontab/GlCrontab.vue.d.ts +39 -0
  26. package/dist/types/components/gl-crontab/tabs/day.vue.d.ts +30 -0
  27. package/dist/types/components/gl-crontab/tabs/hour.vue.d.ts +21 -0
  28. package/dist/types/components/gl-crontab/tabs/minute.vue.d.ts +21 -0
  29. package/dist/types/components/gl-crontab/tabs/mixin.d.ts +100 -0
  30. package/dist/types/components/gl-crontab/tabs/month.vue.d.ts +21 -0
  31. package/dist/types/components/gl-crontab/tabs/second.vue.d.ts +21 -0
  32. package/dist/types/components/gl-crontab/tabs/week.vue.d.ts +30 -0
  33. package/dist/types/components/gl-crontab/tabs/year.vue.d.ts +21 -0
  34. package/dist/types/components/gl-descriptions/GlDescriptions.vue.d.ts +36 -0
  35. package/dist/types/components/gl-dict/GlDict.vue.d.ts +444 -0
  36. package/dist/types/components/gl-dict/locale/en-US.d.ts +10 -0
  37. package/dist/types/components/gl-dict/locale/zh-CN.d.ts +10 -0
  38. package/dist/types/components/gl-divider/GlDevider.vue.d.ts +7 -0
  39. package/dist/types/components/gl-drag-verify/GlDragVerify.vue.d.ts +161 -0
  40. package/dist/types/components/gl-dropdown/GlDropdown.vue.d.ts +93 -0
  41. package/dist/types/components/gl-dynamic-select/GlDynamicSelect.vue.d.ts +582 -0
  42. package/dist/types/components/gl-email/GlEmailPreview.vue.d.ts +20 -0
  43. package/dist/types/components/gl-email/GlEmailSelect.vue.d.ts +1364 -0
  44. package/dist/types/components/gl-email/composables/index.d.ts +8 -0
  45. package/dist/types/components/gl-email/composables/useEmailData.d.ts +19 -0
  46. package/dist/types/components/gl-email/composables/useEmailForm.d.ts +57 -0
  47. package/dist/types/components/gl-email/composables/useEmailOperations.d.ts +15 -0
  48. package/dist/types/components/gl-email/composables/useEmailPreview.d.ts +10 -0
  49. package/dist/types/components/gl-email/composables/useEmailSchedule.d.ts +19 -0
  50. package/dist/types/components/gl-email/composables/useEmailValidation.d.ts +8 -0
  51. package/dist/types/components/gl-email/composables/useUserInfo.d.ts +18 -0
  52. package/dist/types/components/gl-email/locale/en-US.d.ts +51 -0
  53. package/dist/types/components/gl-email/locale/zh-CN.d.ts +51 -0
  54. package/dist/types/components/gl-email/types/index.d.ts +51 -0
  55. package/dist/types/components/gl-empty/GlEmpty.vue.d.ts +13 -0
  56. package/dist/types/components/gl-encode/GlEncode.vue.d.ts +152 -0
  57. package/dist/types/components/gl-entity-cascader/GlEntityCascader.vue.d.ts +26 -0
  58. package/dist/types/components/gl-entity-form/GlEntityForm.vue.d.ts +918 -0
  59. package/dist/types/components/gl-entity-form/composables/index.d.ts +16 -0
  60. package/dist/types/components/gl-entity-form/composables/useEmpty.d.ts +9 -0
  61. package/dist/types/components/gl-entity-form/composables/useFormCore.d.ts +560 -0
  62. package/dist/types/components/gl-entity-form/composables/useFormParams.d.ts +30 -0
  63. package/dist/types/components/gl-entity-form/composables/useFormValidation.d.ts +77 -0
  64. package/dist/types/components/gl-entity-table-plus/FilterManager.vue.d.ts +34 -0
  65. package/dist/types/components/gl-entity-table-plus/GlEntityTable.vue.d.ts +2910 -0
  66. package/dist/types/components/gl-entity-table-plus/GlEntityTableEdit.vue.d.ts +1322 -0
  67. package/dist/types/components/gl-entity-table-plus/GlEntityTableToolbar.vue.d.ts +471 -0
  68. package/dist/types/components/gl-entity-table-plus/constants.d.ts +292 -0
  69. package/dist/types/components/gl-entity-table-plus/index.vue.d.ts +3720 -0
  70. package/dist/types/components/gl-entity-table-plus/locale/en-US.d.ts +94 -0
  71. package/dist/types/components/gl-entity-table-plus/locale/zh-CN.d.ts +94 -0
  72. package/dist/types/components/gl-entity-table-plus/querySignature.d.ts +7 -0
  73. package/dist/types/components/gl-entity-table-plus/table.d.ts +137 -0
  74. package/dist/types/components/gl-entity-table-plus/useCellEditing.d.ts +55 -0
  75. package/dist/types/components/gl-entity-table-plus/useColumns.d.ts +20 -0
  76. package/dist/types/components/gl-entity-table-plus/useConvert.d.ts +5 -0
  77. package/dist/types/components/gl-entity-table-plus/useExport.d.ts +43 -0
  78. package/dist/types/components/gl-entity-table-plus/useFilters.d.ts +37 -0
  79. package/dist/types/components/gl-entity-table-plus/useLayout.d.ts +34 -0
  80. package/dist/types/components/gl-entity-table-plus/useMatch.d.ts +22 -0
  81. package/dist/types/components/gl-entity-table-plus/usePushedRecords.d.ts +39 -0
  82. package/dist/types/components/gl-entity-table-plus/useRow.d.ts +8 -0
  83. package/dist/types/components/gl-entity-table-plus/useRowHighlight.d.ts +33 -0
  84. package/dist/types/components/gl-entity-table-plus/useSelectedRecords.d.ts +25 -0
  85. package/dist/types/components/gl-entity-table-plus/useStore.d.ts +119 -0
  86. package/dist/types/components/gl-entity-table-plus/useSummary.d.ts +47 -0
  87. package/dist/types/components/gl-entity-table-plus/useTableDataAnalysis.d.ts +63 -0
  88. package/dist/types/components/gl-entity-table-plus/useTableHeight.d.ts +63 -0
  89. package/dist/types/components/gl-entity-table-plus/views/GlEntityCardView.vue.d.ts +76 -0
  90. package/dist/types/components/gl-entity-table-plus/views/GlEntityGalleryView.vue.d.ts +62 -0
  91. package/dist/types/components/gl-entity-table-plus/views/GlEntityPivotView.vue.d.ts +90 -0
  92. package/dist/types/components/gl-entity-table-plus/views/GlEntityTableStatView.vue.d.ts +127 -0
  93. package/dist/types/components/gl-entity-table-plus/views/GlEntityTableView.vue.d.ts +1150 -0
  94. package/dist/types/components/gl-entity-tree/GlBaseTree.vue.d.ts +944 -0
  95. package/dist/types/components/gl-entity-tree/GlEntityTree.vue.d.ts +1407 -0
  96. package/dist/types/components/gl-entity-tree/types.d.ts +11 -0
  97. package/dist/types/components/gl-flex-layout/GlFlexLayout.vue.d.ts +246 -0
  98. package/dist/types/components/gl-hidden-area/GlHiddenArea.vue.d.ts +109 -0
  99. package/dist/types/components/gl-iconfont-select/GlIconfontSelect.vue.d.ts +58 -0
  100. package/dist/types/components/gl-image/GlImage.vue.d.ts +554 -0
  101. package/dist/types/components/gl-import/GlImport.vue.d.ts +33 -0
  102. package/dist/types/components/gl-inst-runtime/GlInstRuntime.vue.d.ts +119 -0
  103. package/dist/types/components/gl-inst-runtime/GlInstsRuntime.vue.d.ts +100 -0
  104. package/dist/types/components/gl-layout-page/GlLayoutPage.vue.d.ts +224 -0
  105. package/dist/types/components/gl-layout-site/GlLayout.d.ts +24 -0
  106. package/dist/types/components/gl-layout-site/GlLayoutModeCollapse.vue.d.ts +19 -0
  107. package/dist/types/components/gl-layout-site/GlLayoutModeSidebar.vue.d.ts +41 -0
  108. package/dist/types/components/gl-layout-site/GlLayoutModeTopNav.vue.d.ts +19 -0
  109. package/dist/types/components/gl-layout-site/GlLayoutSite.vue.d.ts +26 -0
  110. package/dist/types/components/gl-layout-site/LayoutStore.d.ts +86 -0
  111. package/dist/types/components/gl-layout-site/ThemeSetting.vue.d.ts +19 -0
  112. package/dist/types/components/gl-list/GlList.vue.d.ts +104 -0
  113. package/dist/types/components/gl-metric-comparison-table/GlMetricComparisonTable.vue.d.ts +302 -0
  114. package/dist/types/components/gl-multi-components/GlMultiComponents.vue.d.ts +183 -0
  115. package/dist/types/components/gl-multi-components/locale/en-US.d.ts +5 -0
  116. package/dist/types/components/gl-multi-components/locale/zh-CN.d.ts +5 -0
  117. package/dist/types/components/gl-op-record/GlOpRecord.vue.d.ts +19 -0
  118. package/dist/types/components/gl-org-select/choose.vue.d.ts +124 -0
  119. package/dist/types/components/gl-org-select/index.vue.d.ts +178 -0
  120. package/dist/types/components/gl-org-select/tree.vue.d.ts +125 -0
  121. package/dist/types/components/gl-org-user-select/choose.vue.d.ts +428 -0
  122. package/dist/types/components/gl-org-user-select/index.vue.d.ts +178 -0
  123. package/dist/types/components/gl-org-user-select/list.vue.d.ts +133 -0
  124. package/dist/types/components/gl-page/GlPage.vue.d.ts +372 -0
  125. package/dist/types/components/gl-page-help/GlPageHelp.vue.d.ts +13 -0
  126. package/dist/types/components/gl-page-template/GlPageTemplateFlow.vue.d.ts +197 -0
  127. package/dist/types/components/gl-page-template/GlPageTemplateFlowApprove.vue.d.ts +19 -0
  128. package/dist/types/components/gl-page-template/ItemsManager.d.ts +23 -0
  129. package/dist/types/components/gl-page-template/locale/en-US.d.ts +25 -0
  130. package/dist/types/components/gl-page-template/locale/zh-CN.d.ts +25 -0
  131. package/dist/types/components/gl-page-template/state-wf/StateWFApprove.vue.d.ts +293 -0
  132. package/dist/types/components/gl-page-template/state-wf/StateWFTransfer.vue.d.ts +30 -0
  133. package/dist/types/components/gl-page-template/state-wf/stateWfApi.d.ts +114 -0
  134. package/dist/types/components/gl-pagination/GlPagination.vue.d.ts +19 -0
  135. package/dist/types/components/gl-pdf/GlPdf.vue.d.ts +90 -0
  136. package/dist/types/components/gl-popover/GlPopover.vue.d.ts +138 -0
  137. package/dist/types/components/gl-query/index.vue.d.ts +243 -0
  138. package/dist/types/components/gl-query/query.d.ts +47 -0
  139. package/dist/types/components/gl-rate/GlRate.vue.d.ts +19 -0
  140. package/dist/types/components/gl-ref-page/GlRefPage.vue.d.ts +171 -0
  141. package/dist/types/components/gl-regular-expression/GlRegularExpression.vue.d.ts +134 -0
  142. package/dist/types/components/gl-regular-expression/common.vue.d.ts +248 -0
  143. package/dist/types/components/gl-regular-expression/select.vue.d.ts +352 -0
  144. package/dist/types/components/gl-regular-expression/type.d.ts +17 -0
  145. package/dist/types/components/gl-row-col-layout/GlRowColLayout.vue.d.ts +189 -0
  146. package/dist/types/components/gl-select/GlSelect.vue.d.ts +83 -0
  147. package/dist/types/components/gl-slot/GlSlot.vue.d.ts +105 -0
  148. package/dist/types/components/gl-space/GlSpace.vue.d.ts +121 -0
  149. package/dist/types/components/gl-static-dict/GlStaticDict.vue.d.ts +32 -0
  150. package/dist/types/components/gl-static-dict/list.vue.d.ts +86 -0
  151. package/dist/types/components/gl-static-dict/type.d.ts +4 -0
  152. package/dist/types/components/gl-statistic/GlStatistic.vue.d.ts +65 -0
  153. package/dist/types/components/gl-table-select/GlTableSelect.vue.d.ts +474 -0
  154. package/dist/types/components/gl-table-select/GlTableSelectList.vue.d.ts +87 -0
  155. package/dist/types/components/gl-table-select/index.d.ts +4 -0
  156. package/dist/types/components/gl-tabs/GlDynamicTabs.vue.d.ts +226 -0
  157. package/dist/types/components/gl-tabs/GlTabs.vue.d.ts +152 -0
  158. package/dist/types/components/gl-tag/GlTag.vue.d.ts +122 -0
  159. package/dist/types/components/gl-text/GlText.vue.d.ts +152 -0
  160. package/dist/types/components/gl-textarea/GlTextarea.vue.d.ts +37 -0
  161. package/dist/types/components/gl-timeline/GlTimeline.vue.d.ts +110 -0
  162. package/dist/types/components/gl-timeline/type.d.ts +16 -0
  163. package/dist/types/components/gl-toolbar/index.vue.d.ts +65 -0
  164. package/dist/types/components/gl-toolbar/locale/en-US.d.ts +4 -0
  165. package/dist/types/components/gl-toolbar/locale/zh-CN.d.ts +4 -0
  166. package/dist/types/components/gl-toolbar/toolbar.d.ts +10 -0
  167. package/dist/types/components/gl-tooltip/GlTooltip.vue.d.ts +100 -0
  168. package/dist/types/components/gl-tree-select/GlTreeSelect.vue.d.ts +163 -0
  169. package/dist/types/components/gl-trigger-select/GlTriggerSelect.vue.d.ts +129 -0
  170. package/dist/types/components/gl-upload/GlUpload.vue.d.ts +559 -0
  171. package/dist/types/components/gl-upload/clipboard.vue.d.ts +370 -0
  172. package/dist/types/components/gl-upload/composables/useExternalDropArea.d.ts +11 -0
  173. package/dist/types/components/gl-upload/composables/useFileManager.d.ts +19 -0
  174. package/dist/types/components/gl-upload/locale/en-US.d.ts +10 -0
  175. package/dist/types/components/gl-upload/locale/zh-CN.d.ts +10 -0
  176. package/dist/types/components/gl-user-select/GlUserSelect.vue.d.ts +239 -0
  177. package/dist/types/components/gl-user-select/GlUserSelectInline.vue.d.ts +189 -0
  178. package/dist/types/components/gl-user-select/GlUserSelectPanel.vue.d.ts +97 -0
  179. package/dist/types/components/gl-user-select/GlUserSelectWorkflow.vue.d.ts +186 -0
  180. package/dist/types/components/gl-user-select/locale/en-US.d.ts +32 -0
  181. package/dist/types/components/gl-user-select/locale/zh-CN.d.ts +32 -0
  182. package/dist/types/components/gl-user-select/types.d.ts +62 -0
  183. package/dist/types/components/gl-workflow/GlWorkflowApprove.vue.d.ts +395 -0
  184. package/dist/types/components/gl-workflow/GlWorkflowModal.vue.d.ts +2086 -0
  185. package/dist/types/components/gl-workflow/GlWorkflowStart.vue.d.ts +19 -0
  186. package/dist/types/components/gl-workflow/GlWorkflowStartForm.vue.d.ts +294 -0
  187. package/dist/types/components/gl-workflow/GlWorkflowTasks.vue.d.ts +17 -0
  188. package/dist/types/components/gl-workflow/composables/useWorkflow.d.ts +99 -0
  189. package/dist/types/components/gl-workflow/index.d.ts +1075 -0
  190. package/dist/types/components/gl-workflow/types.d.ts +232 -0
  191. package/dist/types/composables/index.d.ts +3 -0
  192. package/dist/types/composables/useDropdownTriggerProps.d.ts +12 -0
  193. package/dist/types/composables/useStatus.d.ts +17 -0
  194. package/dist/types/composables/useTree.d.ts +31 -0
  195. package/dist/types/hooks/useEntityQuery.d.ts +8 -0
  196. package/dist/types/locale/en-US.d.ts +203 -0
  197. package/dist/types/locale/zh-CN.d.ts +203 -0
  198. package/dist/types/main.d.ts +16 -0
  199. package/dist/types/types/global.d.ts +64 -0
  200. package/package.json +78 -0
  201. package/src/main.ts +231 -0
@@ -0,0 +1,203 @@
1
+ declare const _default: {
2
+ 订单费用补录申请流程: string;
3
+ 暂存: string;
4
+ 同意: string;
5
+ 退回: string;
6
+ 转交: string;
7
+ 传阅: string;
8
+ 加签: string;
9
+ 催办: string;
10
+ '\u662F\u5426\u64A4\u56DE?': string;
11
+ 撤回: string;
12
+ 切换页面布局: string;
13
+ 流程表单: string;
14
+ 表单附件: string;
15
+ 审批记录: string;
16
+ 关联流程: string;
17
+ 流程处理: string;
18
+ 取消: string;
19
+ 发送: string;
20
+ 流程图: string;
21
+ 删除: string;
22
+ 移交给同岗位的人员处理: string;
23
+ '\u5220\u9664\u5F53\u524D\u6D41\u7A0B\u5B9E\u4F8B\uFF0C\u53EA\u6709\u5904\u7406\u4EBA\u662F\u53D1\u8D77\u4EBA\u65F6\u624D\u53EF\u4EE5\u5220\u9664': string;
24
+ '\u672A\u590D\u5236\uFF0C\u5185\u5BB9\u4E3A\u7A7A': string;
25
+ 复制成功: string;
26
+ 双击复制: string;
27
+ 无: string;
28
+ 请选择: string;
29
+ '\u3010\u6682\u65E0\u6570\u636E\u3011': string;
30
+ '\u3010\u672A\u914D\u7F6E\u5B57\u5178\u3011': string;
31
+ 工具栏: string;
32
+ 添加: string;
33
+ 编辑: string;
34
+ 预览: string;
35
+ 复制源码: string;
36
+ 发信设置: string;
37
+ '\u660E\u5929\u4E0A\u5348 9:00 \u53D1\u9001': string;
38
+ '\u81EA\u5B9A\u4E49\u65F6\u95F4\u53D1\u9001...': string;
39
+ 邮件状态: string;
40
+ '\u53D1\u9001\u540E\uFF0C\u90AE\u4EF6\u5C06\u4E8E {0} \u53D1\u51FA': string;
41
+ 发送人: string;
42
+ 收件人: string;
43
+ 抄送: string;
44
+ 密送: string;
45
+ 主题: string;
46
+ 附件: string;
47
+ 请选择发送人: string;
48
+ 请选择收件人: string;
49
+ 请选择抄送人: string;
50
+ 请选择密送人: string;
51
+ 请输入邮件标题: string;
52
+ 当前用户: string;
53
+ 未设置: string;
54
+ 设置发送时间: string;
55
+ 邮件预览: string;
56
+ 关闭: string;
57
+ 待发送: string;
58
+ 发送成功: string;
59
+ 发送失败: string;
60
+ 部分成功: string;
61
+ 草稿: string;
62
+ 未知状态: string;
63
+ 新建: string;
64
+ '\u5B9A\u65F6\u53D1\u9001\uFF1A{0}': string;
65
+ '(\u65E0\u4E3B\u9898)': string;
66
+ '\uFF08\u65E0\uFF09': string;
67
+ '(\u65E0\u5185\u5BB9)': string;
68
+ '\u53D1\u4EF6\u4EBA\uFF1A': string;
69
+ '\u6536\u4EF6\u4EBA\uFF1A': string;
70
+ '\u6284\u9001\uFF1A': string;
71
+ '\u5BC6\u9001\uFF1A': string;
72
+ 无效时间: string;
73
+ '\u4ECA\u5929 {0}': string;
74
+ '\u660E\u5929 {0}': string;
75
+ '\u5468{0} {1}': string;
76
+ '{0}\u5E74{1}\u6708{2}\u65E5 {3}': string;
77
+ 时间格式错误: string;
78
+ 选择人员: string;
79
+ 选择节点审批人: string;
80
+ 输入关键字筛选用户: string;
81
+ 输入关键字搜索用户: string;
82
+ '\u52A0\u8F7D\u4E2D...': string;
83
+ 共: string;
84
+ 条记录: string;
85
+ 搜索: string;
86
+ 请输入关键字搜索: string;
87
+ 显示全部用户: string;
88
+ 未找到匹配的用户: string;
89
+ '\u641C\u59D3\u540D\u3001\u82F1\u6587\u3001\u90E8\u95E8': string;
90
+ 刷新数据: string;
91
+ 刷新: string;
92
+ 加载中: string;
93
+ 离职: string;
94
+ 在职: string;
95
+ 所有: string;
96
+ 输入名称过滤: string;
97
+ 折叠: string;
98
+ 展开: string;
99
+ 已选择: string;
100
+ 加载用户数据失败: string;
101
+ 刷新数据失败: string;
102
+ 加载节点审批人失败: string;
103
+ '\u4F7F\u7528\u5916\u90E8\u6570\u636E\uFF0C\u65E0\u9700\u5237\u65B0': string;
104
+ 'upload.remove.success': string;
105
+ 'upload.delete.success': string;
106
+ 'upload.error': string;
107
+ 'upload.success': string;
108
+ 'upload.drag.here': string;
109
+ 'upload.click': string;
110
+ 'upload.drop.overlay': string;
111
+ 'menu.list.searchTable': string;
112
+ 'searchTable.form.number': string;
113
+ 'searchTable.form.number.placeholder': string;
114
+ 'searchTable.form.name': string;
115
+ 'searchTable.form.name.placeholder': string;
116
+ 'searchTable.form.contentType': string;
117
+ 'searchTable.form.contentType.img': string;
118
+ 'searchTable.form.contentType.horizontalVideo': string;
119
+ 'searchTable.form.contentType.verticalVideo': string;
120
+ 'searchTable.form.filterType': string;
121
+ 'searchTable.form.filterType.artificial': string;
122
+ 'searchTable.form.filterType.rules': string;
123
+ 'searchTable.form.createdTime': string;
124
+ 'searchTable.form.status': string;
125
+ 'searchTable.form.status.online': string;
126
+ 'searchTable.form.status.offline': string;
127
+ 'searchTable.form.search': string;
128
+ 'searchTable.form.reset': string;
129
+ 'searchTable.form.selectDefault': string;
130
+ 'searchTable.operation.create': string;
131
+ 'searchTable.operation.import': string;
132
+ 'searchTable.operation.download': string;
133
+ 'searchTable.columns.index': string;
134
+ 'searchTable.columns.number': string;
135
+ 'searchTable.columns.name': string;
136
+ 'searchTable.columns.contentType': string;
137
+ 'searchTable.columns.filterType': string;
138
+ 'searchTable.columns.count': string;
139
+ 'searchTable.columns.createdTime': string;
140
+ 'searchTable.columns.status': string;
141
+ 'searchTable.columns.operations': string;
142
+ 'searchTable.columns.operations.view': string;
143
+ 'searchTable.size.mini': string;
144
+ 'searchTable.size.small': string;
145
+ 'searchTable.size.medium': string;
146
+ 'searchTable.size.large': string;
147
+ 'searchTable.actions.refresh': string;
148
+ 'searchTable.actions.density': string;
149
+ 'searchTable.actions.columnSetting': string;
150
+ 'searchTable.query.expand': string;
151
+ 'searchTable.query.collapse': string;
152
+ 'searchTable.operation.addRow': string;
153
+ 'searchTable.status.selected': string;
154
+ 'searchTable.status.pushed': string;
155
+ 'searchTable.filter.saveTitle': string;
156
+ 'searchTable.filter.name.label': string;
157
+ 'searchTable.filter.name.placeholder': string;
158
+ 'searchTable.filter.displayMode': string;
159
+ 'searchTable.filter.quickAdd.tooltip': string;
160
+ 'searchTable.filter.myFilters.tooltip': string;
161
+ 'searchTable.export': string;
162
+ 'searchTable.columns.seqLabel': string;
163
+ 'searchTable.actions.density.tooltip': string;
164
+ 'searchTable.filter.manager.title': string;
165
+ 'searchTable.filter.displayMode.toolbar': string;
166
+ 'searchTable.filter.displayMode.dropdown': string;
167
+ 'searchTable.filter.displayMode.tabs': string;
168
+ 'searchTable.filter.noConditions': string;
169
+ 'searchTable.filter.name.required': string;
170
+ 'searchTable.filter.name.exists': string;
171
+ 'searchTable.filter.list.title': string;
172
+ 'searchTable.filter.remove.confirm': string;
173
+ 'searchTable.filter.empty': string;
174
+ 'searchTable.filter.conditions.title': string;
175
+ 'searchTable.filter.conditions.hideEmpty': string;
176
+ 'searchTable.filter.conditions.empty': string;
177
+ 'searchTable.filter.conditions.emptyPlaceholder': string;
178
+ 'searchTable.filter.alert.unsaved': string;
179
+ 'searchTable.filter.name.empty': string;
180
+ 'searchTable.filter.value.empty': string;
181
+ 'searchTable.filter.value.true': string;
182
+ 'searchTable.filter.value.false': string;
183
+ 'searchTable.filter.addError.noPageCustom': string;
184
+ 'searchTable.filter.saveError.noConfigStore': string;
185
+ 'searchTable.filter.defaultName': string;
186
+ 'searchTable.columns.stat.enabled': string;
187
+ 'searchTable.columns.stat.disabled': string;
188
+ 'searchTable.view.switchTooltip': string;
189
+ 'searchTable.view.layoutTooltip.vertical': string;
190
+ 'searchTable.view.layoutTooltip.horizontal': string;
191
+ 'searchTable.view.table': string;
192
+ 'searchTable.view.stat': string;
193
+ 'searchTable.view.pivot': string;
194
+ 'searchTable.view.switched': string;
195
+ 'searchTable.status.deleted.tooltip': string;
196
+ 'searchTable.status.deleted': string;
197
+ 'common.cancel': string;
198
+ 'common.ok': string;
199
+ 'common.save': string;
200
+ 'searchTable.localFilter.placeholder': string;
201
+ 'searchTable.localFilter.result': string;
202
+ };
203
+ export default _default;
@@ -0,0 +1,16 @@
1
+ import { App } from '../vue/dist/vue.esm-bundler.js';
2
+ import { mixFormParams } from './components/gl-entity-form/composables/useFormParams';
3
+ import { getLabel } from './components/MetaHelper';
4
+ import { ExcelCellMeta, ExcelCellValueComputeMode, ExcelCellValueComputeModeOptions, ExcelCellValueType, ExcelCellValueTypeOptions } from './components/gl-entity-table-plus/constants';
5
+ import { GeelatoPluginOptions } from '@geelato/gl-runtime-core';
6
+ import { default as GlEmail } from './components/gl-email/GlEmail.vue';
7
+ import { default as GlEmailSelect } from './components/gl-email/GlEmailSelect.vue';
8
+ import { default as GlEditor } from './components/gl-editor/GlEditor.vue';
9
+ import * as selectOptions from './api/SelectOptions';
10
+ export { NOT_BIND_FLAG, NOT_BIND_FLAG_EN, hasNotBindFlag } from './types/global';
11
+ export type { EmailData } from './components/gl-email/types';
12
+ declare const vuePlugin: {
13
+ install: (Vue: App, options?: GeelatoPluginOptions) => void;
14
+ };
15
+ export { mixFormParams, getLabel, ExcelCellMeta, ExcelCellValueType, ExcelCellValueComputeMode, ExcelCellValueTypeOptions, ExcelCellValueComputeModeOptions, selectOptions, GlEmail, GlEmailSelect, GlEditor, };
16
+ export default vuePlugin;
@@ -0,0 +1,64 @@
1
+ export interface AnyObject {
2
+ [key: string]: unknown;
3
+ }
4
+ export interface Options {
5
+ value: unknown;
6
+ label: string;
7
+ }
8
+ export interface NodeOptions extends Options {
9
+ children?: NodeOptions[];
10
+ }
11
+ export interface GetParams {
12
+ body: null;
13
+ type: string;
14
+ url: string;
15
+ }
16
+ export interface PostData {
17
+ body: string;
18
+ type: string;
19
+ url: string;
20
+ }
21
+ export interface Pagination {
22
+ current: number;
23
+ pageSize: number;
24
+ total?: number;
25
+ showPageSize: boolean;
26
+ pageSizeOptions: Array<number>;
27
+ }
28
+ export type Status = 'normal' | 'warning' | 'success' | 'danger';
29
+ /**
30
+ * 操作
31
+ */
32
+ export interface Action {
33
+ title: string;
34
+ fn: string;
35
+ status?: Status;
36
+ }
37
+ export type TimeRanger = [string, string];
38
+ export interface GeneralChart {
39
+ xAxis: string[];
40
+ data: Array<{
41
+ name: string;
42
+ value: number[];
43
+ }>;
44
+ }
45
+ /**
46
+ * 判断字段是否不绑定
47
+ * @param fieldName 字段名称,utils.gid(NOT_BIND_FLAG),规则为:以"不绑定"或"Not bound"开头,后面跟着随机字符串
48
+ * @returns 是否不绑定
49
+ */
50
+ export declare const hasNotBindFlag: (fieldName: string) => boolean;
51
+ export declare const NOT_BIND_FLAG = "\u4E0D\u7ED1\u5B9A";
52
+ export declare const NOT_BIND_FLAG_EN = "Not bound";
53
+ export declare const doNotShowAsFormItemComponentName: string[];
54
+ export declare class TabItem {
55
+ title: string;
56
+ value: string;
57
+ iconType?: string;
58
+ disabled?: boolean;
59
+ visible?: boolean;
60
+ lazyLoad?: boolean;
61
+ hasBeenLoad?: boolean;
62
+ hideRightTopSlot?: boolean;
63
+ more?: Record<string, any>;
64
+ }
package/package.json ADDED
@@ -0,0 +1,78 @@
1
+ {
2
+ "name": "@geelato/gl-ui-web-arco",
3
+ "version": "0.0.1",
4
+ "type": "module",
5
+ "main": "src/main.ts",
6
+ "publishConfig": {
7
+ "registry": "https://registry.npmjs.org/",
8
+ "access": "public"
9
+ },
10
+ "types": "./dist/types/main.d.ts",
11
+ "files": [
12
+ "dist",
13
+ "!tests",
14
+ "!**/*.test.*",
15
+ "!**/*.spec.*"
16
+ ],
17
+ "dependencies": {
18
+ "@arco-design/web-vue": "npm:@geelato/web-vue@2.59.2",
19
+ "@ctrl/tinycolor": "^3.6.0",
20
+ "@geelato/lite-editor": "1.2.6",
21
+ "@vueuse/core": "^9.3.0",
22
+ "b-validate": "^1.4.6",
23
+ "big.js": "^6.2.1",
24
+ "cron-parser": "4.9.0",
25
+ "dayjs": "^1.11.5",
26
+ "lodash": "^4.17.21",
27
+ "pdfjs-dist": "^5.4.394",
28
+ "pinia": "3.0.1",
29
+ "sortablejs": "^1.15.6",
30
+ "vue": "3.5.13",
31
+ "vue-i18n": "11.0.0",
32
+ "vue-router": "4.5.0",
33
+ "@geelato/gl-runtime-core": "0.0.1",
34
+ "@geelato/gl-ui-schema-arco": "0.0.1",
35
+ "@geelato/gl-ui-schema": "1.0.0"
36
+ },
37
+ "devDependencies": {
38
+ "@playwright/test": "1.51.0",
39
+ "@tsconfig/node22": "22.0.0",
40
+ "@types/big.js": "6.2.2",
41
+ "@types/jsdom": "21.1.7",
42
+ "@types/lodash": "4.17.16",
43
+ "@types/node": "22.13.9",
44
+ "@vitejs/plugin-vue": "5.2.1",
45
+ "@vitejs/plugin-vue-jsx": "4.1.1",
46
+ "@vitest/eslint-plugin": "1.1.36",
47
+ "@vue/eslint-config-prettier": "10.2.0",
48
+ "@vue/eslint-config-typescript": "14.5.0",
49
+ "@vue/test-utils": "2.4.6",
50
+ "@vue/tsconfig": "0.7.0",
51
+ "eslint": "9.21.0",
52
+ "eslint-plugin-playwright": "2.2.0",
53
+ "eslint-plugin-vue": "10.0.0",
54
+ "jiti": "2.4.2",
55
+ "jsdom": "26.0.0",
56
+ "npm-run-all2": "7.0.2",
57
+ "prettier": "3.5.3",
58
+ "typescript": "5.8.2",
59
+ "vite": "6.3.5",
60
+ "vite-plugin-compression2": "^1.3.3",
61
+ "vite-plugin-dts": "4.5.3",
62
+ "vite-plugin-vue-devtools": "7.7.2",
63
+ "vitest": "3.2.4",
64
+ "vue-tsc": "2.2.8",
65
+ "@geelato/gl-types": "1.0.0"
66
+ },
67
+ "scripts": {
68
+ "dev": "vite",
69
+ "build": "run-p type-check \"build-only {@}\" --",
70
+ "preview": "vite preview",
71
+ "test:unit": "vitest",
72
+ "test:e2e": "playwright test tests/e2e",
73
+ "build-only": "vite build",
74
+ "type-check": "vue-tsc --build",
75
+ "lint": "eslint . --fix",
76
+ "format": "prettier --write src/"
77
+ }
78
+ }
package/src/main.ts ADDED
@@ -0,0 +1,231 @@
1
+ import type { App } from 'vue'
2
+ import { defineAsyncComponent } from 'vue'
3
+ import GlTextarea from './components/gl-textarea/GlTextarea.vue'
4
+ import GlPage from './components/gl-page/GlPage.vue'
5
+ import GlPageTemplateFlow from './components/gl-page-template/GlPageTemplateFlow.vue'
6
+ import GlEntityTablePlus from './components/gl-entity-table-plus/index.vue'
7
+ // import GlTableLocal from './components/gl-table-local/GlTableLocal.vue'
8
+ import GlEntityTree from './components/gl-entity-tree/GlEntityTree.vue'
9
+ import GlEntityForm from './components/gl-entity-form/GlEntityForm.vue'
10
+ import GlRowColLayout from './components/gl-row-col-layout/GlRowColLayout.vue'
11
+ import GlFlexLayout from './components/gl-flex-layout/GlFlexLayout.vue'
12
+ import GlCard from './components/gl-card/index.vue'
13
+ import GlHiddenArea from './components/gl-hidden-area/GlHiddenArea.vue'
14
+ import GlTabs from './components/gl-tabs/GlTabs.vue'
15
+ import GlDynamicTabs from './components/gl-tabs/GlDynamicTabs.vue'
16
+ import GlDynamicSelect from './components/gl-dynamic-select/GlDynamicSelect.vue'
17
+ import GlUserSelect from './components/gl-user-select/GlUserSelect.vue'
18
+ import GlDict from './components/gl-dict/GlDict.vue'
19
+ import GlRate from './components/gl-rate/GlRate.vue'
20
+ import GlCrontab from './components/gl-crontab/GlCrontab.vue'
21
+ import GlComment from './components/gl-comment/GlComment.vue'
22
+ import GlEncode from './components/gl-encode/GlEncode.vue'
23
+ import GlInstRuntime from './components/gl-inst-runtime/GlInstRuntime.vue'
24
+ import GlInstsRuntime from './components/gl-inst-runtime/GlInstsRuntime.vue'
25
+ import GlRefPage from './components/gl-ref-page/GlRefPage.vue'
26
+ import GlIconfontSelect from './components/gl-iconfont-select/GlIconfontSelect.vue'
27
+ import GlText from './components/gl-text/GlText.vue'
28
+ import GlAlert from './components/gl-alert/GlAlert.vue'
29
+ import GlMultiComponents from './components/gl-multi-components/GlMultiComponents.vue'
30
+ import GlUpload from './components/gl-upload/GlUpload.vue'
31
+ import GlImage from './components/gl-image/GlImage.vue'
32
+ import GlButton from './components/gl-button/GlButton.vue'
33
+ import GlDropdown from './components/gl-dropdown/GlDropdown.vue'
34
+ import GlEntityCascader from './components/gl-entity-cascader/GlEntityCascader.vue'
35
+ import GlTableSelect from './components/gl-table-select/GlTableSelect.vue'
36
+ import GlTimeline from './components/gl-timeline/GlTimeline.vue'
37
+ import GlOpRecord from './components/gl-op-record/GlOpRecord.vue'
38
+ import { mixFormParams } from './components/gl-entity-form/composables/useFormParams'
39
+ import { getLabel } from './components/MetaHelper'
40
+ import GlEmpty from './components/gl-empty/GlEmpty.vue'
41
+ import GlSelect from './components/gl-select/GlSelect.vue'
42
+ import GlImport from './components/gl-import/GlImport.vue'
43
+ import GlLayoutPage from './components/gl-layout-page/GlLayoutPage.vue'
44
+ import GlLayoutSite from './components/gl-layout-site/GlLayoutSite.vue'
45
+ import GlDragVerify from './components/gl-drag-verify/GlDragVerify.vue'
46
+ // import GlBlocks from './components/gl-blocks/GlBlocks.vue'
47
+ import GlList from './components/gl-list/GlList.vue'
48
+ import GlPageHelp from './components/gl-page-help/GlPageHelp.vue'
49
+ import GlPagination from './components/gl-pagination/GlPagination.vue'
50
+ import GlSpace from './components/gl-space/GlSpace.vue'
51
+ import GlSlot from './components/gl-slot/GlSlot.vue'
52
+ import GlOrgSelect from './components/gl-org-select/index.vue'
53
+ import GlOrgSelectTree from './components/gl-org-select/tree.vue'
54
+ import GlOrgUserSelect from './components/gl-org-user-select/index.vue'
55
+ import GlPageTemplateStateWF from './components/gl-page-template/state-wf/GlPageTemplateStateWF.vue'
56
+ import GlDescriptions from './components/gl-descriptions/GlDescriptions.vue'
57
+ import GlTooltip from './components/gl-tooltip/GlTooltip.vue'
58
+ import GlPopover from './components/gl-popover/GlPopover.vue'
59
+ import GlStatistic from './components/gl-statistic/GlStatistic.vue'
60
+ import GlCountdown from './components/gl-countdown/GlCountdown.vue'
61
+ import GlTag from './components/gl-tag/GlTag.vue'
62
+ import GlCheckbox from './components/gl-checkbox/GlCheckbox.vue'
63
+ import GlRegularExpression from './components/gl-regular-expression/GlRegularExpression.vue'
64
+ import GlTriggerSelect from './components/gl-trigger-select/GlTriggerSelect.vue'
65
+ import GlStaticDict from './components/gl-static-dict/GlStaticDict.vue'
66
+ import GlWorkflowTasks from './components/gl-workflow/GlWorkflowTasks.vue'
67
+ import GlWorkflowStart from './components/gl-workflow/GlWorkflowStart.vue'
68
+ import GlTreeSelect from './components/gl-tree-select/GlTreeSelect.vue'
69
+ import type { ExcelCellMeta } from './components/gl-entity-table-plus/constants'
70
+ import {
71
+ ExcelCellValueComputeMode,
72
+ ExcelCellValueComputeModeOptions,
73
+ ExcelCellValueType,
74
+ ExcelCellValueTypeOptions,
75
+ } from './components/gl-entity-table-plus/constants'
76
+ import en from './locale/en-US'
77
+ import cn from './locale/zh-CN'
78
+ import { Drawer, Input, InputPassword, InputSearch, Modal, RangePicker } from '@arco-design/web-vue'
79
+ import {
80
+ addInnerComponentPosition,
81
+ type GeelatoPluginOptions,
82
+ PluginUtil,
83
+ mergeLocaleMessages,
84
+ } from '@geelato/gl-runtime-core'
85
+ import './assets/style.css'
86
+ import * as selectOptions from './api/SelectOptions'
87
+ import { innerComponents } from '@geelato/gl-ui-schema-arco'
88
+ import GlDivider from './components/gl-divider/GlDevider.vue'
89
+ import GlMetricComparisonTable from './components/gl-metric-comparison-table/GlMetricComparisonTable.vue'
90
+ import GlEmail from './components/gl-email/GlEmail.vue'
91
+ import GlEmailSelect from './components/gl-email/GlEmailSelect.vue'
92
+ import GlColor from './components/gl-color/GlColor.vue'
93
+ import GlColorClipboard from './components/gl-color-clipboard/GlColorClipboard.vue'
94
+ import GlColorInput from './components/gl-color-input/GlColorInput.vue'
95
+ import GlEditor from './components/gl-editor/GlEditor.vue'
96
+
97
+ export { NOT_BIND_FLAG, NOT_BIND_FLAG_EN, hasNotBindFlag } from './types/global'
98
+ export type { EmailData } from './components/gl-email/types'
99
+
100
+ const vuePlugin = {
101
+ install: function (Vue: App, options?: GeelatoPluginOptions) {
102
+ // @ts-ignore
103
+ if (PluginUtil.markInstalledPlugin(Vue, 'gl-ui-web-arco')) {
104
+ return
105
+ }
106
+
107
+ // 添加组件库中的内置组件定义信息
108
+ innerComponents.forEach((item: any) => {
109
+ addInnerComponentPosition(item.componentName, item.innerComponents)
110
+ })
111
+
112
+ // 合并组件库的多语言消息到全局 i18n
113
+ try {
114
+ mergeLocaleMessages('en-US', en as any)
115
+ mergeLocaleMessages('zh-CN', cn as any)
116
+ } catch (e) {}
117
+
118
+ Vue.component('GlInput', Input)
119
+ Vue.component('GlInputPassword', InputPassword)
120
+ Vue.component('GlInputSearch', InputSearch)
121
+ Vue.component(GlTextarea.name!, GlTextarea)
122
+ Vue.component(GlSelect.name!, GlSelect)
123
+ Vue.component(GlEmpty.name!, GlEmpty)
124
+ Vue.component(GlOpRecord.name!, GlOpRecord)
125
+ Vue.component(GlTimeline.name!, GlTimeline)
126
+ Vue.component(GlButton.name!, GlButton)
127
+ Vue.component(GlDropdown.name!, GlDropdown)
128
+ Vue.component(GlAlert.name!, GlAlert)
129
+ Vue.component(GlTooltip.name!, GlTooltip)
130
+ Vue.component(GlPopover.name!, GlPopover)
131
+ Vue.component(GlCountdown.name!, GlCountdown)
132
+ Vue.component(GlStatistic.name!, GlStatistic)
133
+ Vue.component(GlTag.name!, GlTag)
134
+ Vue.component(GlText.name!, GlText)
135
+ Vue.component(GlIconfontSelect.name!, GlIconfontSelect)
136
+ Vue.component(GlDict.name!, GlDict)
137
+ Vue.component(GlCheckbox.name!, GlCheckbox)
138
+ Vue.component(GlComment.name!, GlComment)
139
+ Vue.component(GlRate.name!, GlRate)
140
+ Vue.component(GlPage.name!, GlPage)
141
+ Vue.component(GlPageTemplateFlow.name!, GlPageTemplateFlow)
142
+ Vue.component(GlLayoutSite.name!, GlLayoutSite)
143
+ Vue.component(GlLayoutPage.name!, GlLayoutPage)
144
+ Vue.component('GlEntityTablePlus', GlEntityTablePlus)
145
+ Vue.component(GlDragVerify.name!, GlDragVerify)
146
+ // Vue.component(GlBlocks.name!, GlBlocks)
147
+ Vue.component(GlList.name!, GlList)
148
+ Vue.component(GlRegularExpression.name!, GlRegularExpression)
149
+ Vue.component(GlTriggerSelect.name!, GlTriggerSelect)
150
+ Vue.component(GlStaticDict.name!, GlStaticDict)
151
+ // 表格注册多一个,作为子表单,在配置时减少一些不必要的配置项
152
+ Vue.component('GlEntityTableSub', GlEntityTablePlus)
153
+ Vue.component(GlRefPage.name!, GlRefPage)
154
+ Vue.component(GlEntityTree.name!, GlEntityTree)
155
+ Vue.component(GlEntityForm.name!, GlEntityForm)
156
+ Vue.component(GlEntityCascader.name!, GlEntityCascader)
157
+ Vue.component(GlTableSelect.name!, GlTableSelect)
158
+ Vue.component(GlCard.name!, GlCard)
159
+ Vue.component(GlHiddenArea.name!, GlHiddenArea)
160
+ Vue.component(GlRowColLayout.name!, GlRowColLayout)
161
+ Vue.component(GlFlexLayout.name!, GlFlexLayout)
162
+ Vue.component(GlTabs.name!, GlTabs)
163
+ Vue.component(GlDynamicTabs.name!, GlDynamicTabs)
164
+ Vue.component(GlUserSelect.name!, GlUserSelect)
165
+ // 异步注册 color 相关组件,避免不必要的依赖被打包
166
+ Vue.component('GlColor', GlColor)
167
+ Vue.component('GlColorClipboard', GlColorClipboard)
168
+ Vue.component('GlColorInput', GlColorInput)
169
+ // 异步注册 email 相关组件,避免不必要的依赖被打包
170
+ Vue.component('GlEmail', GlEmail)
171
+ Vue.component('GlEmailSelect', GlEmailSelect)
172
+ Vue.component(GlCrontab.name!, GlCrontab)
173
+ Vue.component(GlEncode.name!, GlEncode)
174
+ Vue.component(GlInstRuntime.name!, GlInstRuntime)
175
+ Vue.component(GlInstsRuntime.name!, GlInstsRuntime)
176
+ Vue.component(GlMultiComponents.name!, GlMultiComponents)
177
+ Vue.component(GlUpload.name!, GlUpload)
178
+ Vue.component(GlImage.name!, GlImage)
179
+ Vue.component(GlImport.name!, GlImport)
180
+ Vue.component(GlPageHelp.name!, GlPageHelp)
181
+ Vue.component(GlPagination.name!, GlPagination)
182
+ Vue.component(GlSpace.name!, GlSpace)
183
+ Vue.component(GlSlot.name!, GlSlot)
184
+ Vue.component(GlOrgSelect.name!, GlOrgSelect)
185
+ Vue.component(GlOrgSelectTree.name!, GlOrgSelectTree)
186
+ Vue.component(GlOrgUserSelect.name!, GlOrgUserSelect)
187
+ Vue.component(GlPageTemplateStateWF.name!, GlPageTemplateStateWF)
188
+ Vue.component(GlDescriptions.name!, GlDescriptions)
189
+ Vue.component(GlDynamicSelect.name!, GlDynamicSelect)
190
+ Vue.component('GlRangePicker', RangePicker)
191
+ Vue.component('GlModal', Modal)
192
+ Vue.component('GlDrawer', Drawer)
193
+ Vue.component('GlWorkflowTasks', GlWorkflowTasks)
194
+ Vue.component('GlWorkflowStart', GlWorkflowStart)
195
+ // 本地表格组件注册
196
+ // Vue.component('GlTableLocal', GlTableLocal)
197
+ Vue.component(GlTreeSelect.name!, GlTreeSelect)
198
+ Vue.component('GlDivider', GlDivider)
199
+ Vue.component(GlMetricComparisonTable.name!, GlMetricComparisonTable)
200
+ // 异步注册 PDF 组件,避免 PDF.js 被打包进主包
201
+ Vue.component('GlPdf', defineAsyncComponent(() => import('./components/gl-pdf/GlPdf.vue')))
202
+ // 异步注册 Editor 组件,避免 @geelato/lite-editor 被打包进主包
203
+ Vue.component('GlEditor', defineAsyncComponent(() => import('./components/gl-editor/GlEditor.vue')))
204
+ // const i18n = createI18n({
205
+ // locale: localStorage.getItem("arco-locale") || "zh-CN",
206
+ // fallbackLocale: "en-US",
207
+ // allowComposition: true,
208
+ // messages: {
209
+ // "en-US": en,
210
+ // "zh-CN": cn,
211
+ // },
212
+ // });
213
+ // Vue.use(i18n);
214
+ },
215
+ }
216
+
217
+ export {
218
+ mixFormParams,
219
+ getLabel,
220
+ ExcelCellMeta,
221
+ ExcelCellValueType,
222
+ ExcelCellValueComputeMode,
223
+ ExcelCellValueTypeOptions,
224
+ ExcelCellValueComputeModeOptions,
225
+ selectOptions,
226
+ GlEmail,
227
+ GlEmailSelect,
228
+ GlEditor,
229
+ }
230
+ // 默认导出组件
231
+ export default vuePlugin