@gct-paas/core-web 0.1.4-dev.10 → 0.1.4-dev.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 (549) hide show
  1. package/dist/index-B8zoAUhR.cjs +20 -0
  2. package/dist/index-BH5PTZ_c.js +20 -0
  3. package/dist/index-Cna4DZog.js +109381 -0
  4. package/dist/index.esm.min.mjs +89 -39
  5. package/dist/index.min.cjs +1 -1
  6. package/dist/index.min.css +1 -1
  7. package/dist/index.system.min.js +1 -1
  8. package/dist/monaco-editor-4E2xdOou.cjs +1 -0
  9. package/dist/monaco-editor-C-wvzgow.js +1 -0
  10. package/dist/monaco-editor-Cel355Cg.js +350 -0
  11. package/es/ai-components/code-chat/code-chat.d.ts +53 -0
  12. package/es/ai-components/index.d.ts +1 -0
  13. package/es/ai-components/wujie-ai-container/wujie-ai-container.d.ts +21 -0
  14. package/es/components/base-button/base-button.vue.d.ts +5 -5
  15. package/es/components/basic-button/basic-button.vue.d.ts +2 -2
  16. package/es/components/code-editor/code-editor.d.ts +1 -1
  17. package/es/components/double-input/double-input.vue.mjs +1 -1
  18. package/es/components/icon-next/data/icons.data.d.ts +5 -0
  19. package/es/components/icon-next/hooks/useIconAsset.d.ts +16 -0
  20. package/es/components/icon-next/hooks/useIconAsset.mjs +48 -0
  21. package/es/components/icon-next/hooks/useIconPark.d.ts +16 -0
  22. package/es/components/icon-next/hooks/useIconPark.mjs +52 -0
  23. package/es/components/icon-next/hooks/useIconPlatform.d.ts +8 -0
  24. package/es/components/icon-next/hooks/useIconPlatform.mjs +48 -0
  25. package/es/components/icon-next/index.d.ts +3 -0
  26. package/es/components/icon-next/src/IconNext.css +18 -0
  27. package/es/components/icon-next/src/IconNext.vue.d.ts +40 -0
  28. package/es/components/icon-next/src/IconNext.vue2.mjs +7 -0
  29. package/es/components/icon-next/src/IconNext.vue3.mjs +108 -0
  30. package/es/components/icon-next/src/IconNextPicker.css +195 -0
  31. package/es/components/icon-next/src/IconNextPicker.vue.d.ts +75 -0
  32. package/es/components/icon-next/src/IconNextPicker.vue2.mjs +452 -0
  33. package/es/components/icon-next/src/IconNextPicker.vue3.mjs +6 -0
  34. package/es/components/icon-next/types/index.d.ts +17 -0
  35. package/es/components/icon-next/types/index.mjs +10 -0
  36. package/es/components/index.d.ts +0 -3
  37. package/es/components/index.mjs +10 -2
  38. package/es/components/svg-icon/svg-icon.vue.d.ts +1 -1
  39. package/es/create-app-vue.mjs +5 -0
  40. package/es/hooks/index.d.ts +1 -0
  41. package/es/hooks/useDesign.d.ts +4 -0
  42. package/es/hooks/useDesign.mjs +11 -0
  43. package/es/index.d.ts +3 -0
  44. package/es/index.mjs +102 -5
  45. package/es/modules/Cropper/hooks/useFile.d.ts +4 -0
  46. package/es/modules/Cropper/index.d.ts +5 -0
  47. package/es/modules/Cropper/src/CopperFreeModal.vue.d.ts +100 -0
  48. package/es/modules/Cropper/src/CopperModal.vue.d.ts +40 -0
  49. package/es/modules/Cropper/src/Cropper.vue.d.ts +96 -0
  50. package/es/modules/Cropper/src/CropperAvatar.vue.d.ts +62 -0
  51. package/es/modules/Cropper/src/CropperFree.vue.d.ts +118 -0
  52. package/es/modules/Cropper/src/typing.d.ts +11 -0
  53. package/es/modules/code-editor/index.d.ts +11 -11
  54. package/es/modules/code-editor/monaco-editor.vue.d.ts +4 -4
  55. package/es/modules/color-picker/src/ColorPicker.vue.d.ts +1 -1
  56. package/es/modules/formula-editor/formula-editor.mjs +11 -4
  57. package/es/modules/gct-dnd/components/gct-dnd-container/gct-dnd-container.d.ts +1 -1
  58. package/es/modules/gct-form/constants/editor-register/editor-register.d.ts +14 -0
  59. package/es/modules/gct-form/constants/editor-register/editor-register.mjs +6 -0
  60. package/es/modules/gct-form/constants/editor-type/editor-type.d.ts +130 -0
  61. package/es/modules/gct-form/constants/editor-type/editor-type.mjs +35 -0
  62. package/es/modules/gct-form/constants/index.d.ts +3 -0
  63. package/es/modules/gct-form/constants/index.mjs +3 -0
  64. package/es/modules/gct-form/controller/edit-form/edit-form.controller.d.ts +42 -0
  65. package/es/modules/gct-form/controller/edit-form/edit-form.controller.mjs +72 -0
  66. package/es/modules/gct-form/controller/editor-item/editor-item.controller.d.ts +15 -0
  67. package/es/modules/gct-form/controller/editor-item/editor-item.controller.mjs +23 -0
  68. package/es/modules/gct-form/controller/form/form.controller.d.ts +68 -0
  69. package/es/modules/gct-form/controller/form-collapse/form-collapse.controller.d.ts +18 -0
  70. package/es/modules/gct-form/controller/form-collapse/form-collapse.controller.mjs +11 -0
  71. package/es/modules/gct-form/controller/form-collapse-pane/form-collapse-pane.controller.d.ts +18 -0
  72. package/es/modules/gct-form/controller/form-collapse-pane/form-collapse-pane.controller.mjs +11 -0
  73. package/es/modules/gct-form/controller/form-edit-item/form-edit-item.controller.d.ts +27 -0
  74. package/es/modules/gct-form/controller/form-edit-item/form-edit-item.controller.mjs +94 -0
  75. package/es/modules/gct-form/controller/form-group/form-group.controller.d.ts +18 -0
  76. package/es/modules/gct-form/controller/form-group/form-group.controller.mjs +11 -0
  77. package/es/modules/gct-form/controller/form-item/form-item.controller.d.ts +21 -0
  78. package/es/modules/gct-form/controller/form-item/form-item.controller.mjs +37 -0
  79. package/es/modules/gct-form/controller/form-item-basic/form-item-basic.controller.d.ts +57 -0
  80. package/es/modules/gct-form/controller/form-item-basic/form-item-basic.controller.mjs +45 -0
  81. package/es/modules/gct-form/controller/form-item-hidden/form-item-hidden.controller.d.ts +17 -0
  82. package/es/modules/gct-form/controller/form-item-hidden/form-item-hidden.controller.mjs +7 -0
  83. package/es/modules/gct-form/controller/form-line/form-line.controller.d.ts +18 -0
  84. package/es/modules/gct-form/controller/form-line/form-line.controller.mjs +11 -0
  85. package/es/modules/gct-form/controller/form-tab/form-tab.controller.d.ts +18 -0
  86. package/es/modules/gct-form/controller/form-tab/form-tab.controller.mjs +11 -0
  87. package/es/modules/gct-form/controller/form-tab-pane/form-tab-pane.controller.d.ts +18 -0
  88. package/es/modules/gct-form/controller/form-tab-pane/form-tab-pane.controller.mjs +11 -0
  89. package/es/modules/gct-form/controller/gct-form/gct-form.controller.d.ts +101 -0
  90. package/es/modules/gct-form/controller/gct-form/gct-form.controller.mjs +224 -0
  91. package/es/modules/gct-form/controller/index.d.ts +13 -0
  92. package/es/modules/gct-form/editor/gct-form-action/gct-form-action.d.ts +39 -0
  93. package/es/modules/gct-form/editor/gct-form-action/gct-form-action.mjs +50 -0
  94. package/es/modules/gct-form/editor/gct-form-action/index.d.ts +8 -0
  95. package/es/modules/gct-form/editor/gct-form-action/index.mjs +14 -0
  96. package/es/modules/gct-form/editor/gct-form-check-switch/gct-form-check-switch.css +86 -0
  97. package/es/{editor → modules/gct-form/editor}/gct-form-check-switch/gct-form-check-switch.d.ts +7 -2
  98. package/es/modules/gct-form/editor/gct-form-check-switch/gct-form-check-switch.mjs +59 -0
  99. package/es/{editor → modules/gct-form/editor}/gct-form-check-switch/gct-form-check-switch.provider.d.ts +1 -1
  100. package/es/modules/gct-form/editor/gct-form-check-switch/gct-form-check-switch.provider.mjs +5 -0
  101. package/es/modules/gct-form/editor/gct-form-check-switch/index.mjs +12 -0
  102. package/es/modules/gct-form/editor/gct-form-checkbox/gct-form-checkbox.css +108 -0
  103. package/es/{editor → modules/gct-form/editor}/gct-form-checkbox/gct-form-checkbox.d.ts +19 -5
  104. package/es/modules/gct-form/editor/gct-form-checkbox/gct-form-checkbox.mjs +127 -0
  105. package/es/{editor/gct-form-icon-select → modules/gct-form/editor/gct-form-checkbox}/index.d.ts +1 -1
  106. package/es/modules/gct-form/editor/gct-form-checkbox/index.mjs +14 -0
  107. package/es/{components/layout/flex-container/flex-container.css → modules/gct-form/editor/gct-form-color/gct-form-color.css} +2 -2
  108. package/es/modules/gct-form/editor/gct-form-color/gct-form-color.d.ts +36 -0
  109. package/es/modules/gct-form/editor/gct-form-color/gct-form-color.mjs +44 -0
  110. package/es/{editor → modules/gct-form/editor}/gct-form-color/gct-form-color.provider.d.ts +1 -1
  111. package/es/modules/gct-form/editor/gct-form-color/gct-form-color.provider.mjs +5 -0
  112. package/es/modules/gct-form/editor/gct-form-color/index.mjs +12 -0
  113. package/es/modules/gct-form/editor/gct-form-date/gct-form-date.d.ts +286 -0
  114. package/es/modules/gct-form/editor/gct-form-date/gct-form-date.mjs +81 -0
  115. package/es/modules/gct-form/editor/gct-form-date/gct-form-date.provider.d.ts +11 -0
  116. package/es/modules/gct-form/editor/gct-form-date/gct-form-date.provider.mjs +5 -0
  117. package/es/modules/gct-form/editor/gct-form-date/index.mjs +12 -0
  118. package/es/modules/gct-form/editor/gct-form-date-format-select/gct-form-date-format-select.css +77 -0
  119. package/es/modules/gct-form/editor/gct-form-date-format-select/gct-form-date-format-select.d.ts +111 -0
  120. package/es/modules/gct-form/editor/gct-form-date-format-select/gct-form-date-format-select.mjs +113 -0
  121. package/es/{editor/gct-form-info → modules/gct-form/editor/gct-form-date-format-select}/index.d.ts +1 -1
  122. package/es/modules/gct-form/editor/gct-form-date-format-select/index.mjs +14 -0
  123. package/es/modules/gct-form/editor/gct-form-empty/gct-form-empty.d.ts +2 -0
  124. package/es/modules/gct-form/editor/gct-form-empty/gct-form-empty.mjs +16 -0
  125. package/es/modules/gct-form/editor/gct-form-empty/gct-form-empty.provider.d.ts +4 -0
  126. package/es/modules/gct-form/editor/gct-form-empty/index.d.ts +8 -0
  127. package/es/modules/gct-form/editor/gct-form-empty/index.mjs +14 -0
  128. package/es/modules/gct-form/editor/gct-form-formula/gct-form-formula.css +81 -0
  129. package/es/modules/gct-form/editor/gct-form-formula/gct-form-formula.d.ts +39 -0
  130. package/es/modules/gct-form/editor/gct-form-formula/gct-form-formula.mjs +69 -0
  131. package/es/{editor/gct-form-radio → modules/gct-form/editor/gct-form-formula}/index.d.ts +1 -4
  132. package/es/modules/gct-form/editor/gct-form-formula/index.mjs +14 -0
  133. package/es/modules/gct-form/editor/gct-form-group-select/gct-form-group-select.css +120 -0
  134. package/es/{editor/gct-form-modal-select/gct-form-modal-select.d.ts → modules/gct-form/editor/gct-form-group-select/gct-form-group-select.d.ts} +19 -12
  135. package/es/modules/gct-form/editor/gct-form-group-select/gct-form-group-select.mjs +231 -0
  136. package/es/modules/gct-form/editor/gct-form-group-select/index.d.ts +8 -0
  137. package/es/modules/gct-form/editor/gct-form-group-select/index.mjs +14 -0
  138. package/es/modules/gct-form/editor/gct-form-i18n/gct-form-i18n.d.ts +121 -0
  139. package/es/modules/gct-form/editor/gct-form-i18n/gct-form-i18n.mjs +114 -0
  140. package/es/{editor → modules/gct-form/editor}/gct-form-i18n/gct-form-i18n.provider.d.ts +1 -1
  141. package/es/modules/gct-form/editor/gct-form-i18n/gct-form-i18n.provider.mjs +5 -0
  142. package/es/modules/gct-form/editor/gct-form-i18n/index.mjs +12 -0
  143. package/es/modules/gct-form/editor/gct-form-icon-select/gct-form-icon-select.css +76 -0
  144. package/es/{editor → modules/gct-form/editor}/gct-form-icon-select/gct-form-icon-select.d.ts +3 -3
  145. package/es/modules/gct-form/editor/gct-form-icon-select/gct-form-icon-select.mjs +73 -0
  146. package/es/{editor/gct-form-checkbox → modules/gct-form/editor/gct-form-icon-select}/index.d.ts +1 -4
  147. package/es/modules/gct-form/editor/gct-form-icon-select/index.mjs +14 -0
  148. package/es/modules/gct-form/editor/gct-form-info/gct-form-info.css +85 -0
  149. package/es/{editor → modules/gct-form/editor}/gct-form-info/gct-form-info.d.ts +16 -1
  150. package/es/modules/gct-form/editor/gct-form-info/gct-form-info.mjs +52 -0
  151. package/es/modules/gct-form/editor/gct-form-info/index.d.ts +8 -0
  152. package/es/modules/gct-form/editor/gct-form-info/index.mjs +14 -0
  153. package/es/{editor → modules/gct-form/editor}/gct-form-length-unit/gct-form-length-unit.d.ts +1 -4
  154. package/es/modules/gct-form/editor/gct-form-length-unit/gct-form-length-unit.mjs +43 -0
  155. package/es/{editor → modules/gct-form/editor}/gct-form-length-unit/gct-form-length-unit.provider.d.ts +1 -1
  156. package/es/modules/gct-form/editor/gct-form-length-unit/gct-form-length-unit.provider.mjs +5 -0
  157. package/es/modules/gct-form/editor/gct-form-length-unit/index.mjs +12 -0
  158. package/es/modules/gct-form/editor/gct-form-model-select/gct-form-model-select.css +76 -0
  159. package/es/modules/gct-form/editor/gct-form-model-select/gct-form-model-select.d.ts +19 -0
  160. package/es/modules/gct-form/editor/gct-form-model-select/gct-form-model-select.mjs +175 -0
  161. package/es/modules/gct-form/editor/gct-form-model-select/index.d.ts +8 -0
  162. package/es/modules/gct-form/editor/gct-form-model-select/index.mjs +14 -0
  163. package/es/modules/gct-form/editor/gct-form-multiple-choice/gct-form-multiple-choice.d.ts +68 -0
  164. package/es/modules/gct-form/editor/gct-form-multiple-choice/gct-form-multiple-choice.mjs +68 -0
  165. package/es/modules/gct-form/editor/gct-form-multiple-choice/index.d.ts +8 -0
  166. package/es/modules/gct-form/editor/gct-form-multiple-choice/index.mjs +14 -0
  167. package/es/{editor → modules/gct-form/editor}/gct-form-number/gct-form-number.d.ts +1 -1
  168. package/es/modules/gct-form/editor/gct-form-number/gct-form-number.mjs +44 -0
  169. package/es/{editor → modules/gct-form/editor}/gct-form-number/gct-form-number.provider.d.ts +1 -1
  170. package/es/modules/gct-form/editor/gct-form-number/gct-form-number.provider.mjs +5 -0
  171. package/es/modules/gct-form/editor/gct-form-number/index.mjs +12 -0
  172. package/es/{editor → modules/gct-form/editor}/gct-form-picker/gct-form-picker.d.ts +3 -3
  173. package/es/modules/gct-form/editor/gct-form-picker/gct-form-picker.mjs +113 -0
  174. package/es/{editor → modules/gct-form/editor}/gct-form-picker/gct-form-picker.provider.d.ts +1 -1
  175. package/es/modules/gct-form/editor/gct-form-picker/gct-form-picker.provider.mjs +5 -0
  176. package/es/modules/gct-form/editor/gct-form-picker/index.mjs +12 -0
  177. package/es/modules/gct-form/editor/gct-form-pixel-config/gct-form-pixel-config.css +103 -0
  178. package/es/modules/gct-form/editor/gct-form-pixel-config/gct-form-pixel-config.d.ts +29 -0
  179. package/es/modules/gct-form/editor/gct-form-pixel-config/gct-form-pixel-config.mjs +69 -0
  180. package/es/modules/gct-form/editor/gct-form-pixel-config/index.d.ts +8 -0
  181. package/es/modules/gct-form/editor/gct-form-pixel-config/index.mjs +14 -0
  182. package/es/modules/gct-form/editor/gct-form-radio/gct-form-radio.css +205 -0
  183. package/es/{editor → modules/gct-form/editor}/gct-form-radio/gct-form-radio.d.ts +7 -1
  184. package/es/modules/gct-form/editor/gct-form-radio/gct-form-radio.mjs +95 -0
  185. package/es/modules/gct-form/editor/gct-form-radio/index.d.ts +8 -0
  186. package/es/modules/gct-form/editor/gct-form-radio/index.mjs +14 -0
  187. package/es/modules/gct-form/editor/gct-form-select/gct-form-select.css +83 -0
  188. package/es/{editor → modules/gct-form/editor}/gct-form-select/gct-form-select.d.ts +17 -3
  189. package/es/modules/gct-form/editor/gct-form-select/gct-form-select.mjs +128 -0
  190. package/es/{editor → modules/gct-form/editor}/gct-form-select/gct-form-select.provider.d.ts +1 -1
  191. package/es/modules/gct-form/editor/gct-form-select/gct-form-select.provider.mjs +5 -0
  192. package/es/modules/gct-form/editor/gct-form-select/index.mjs +12 -0
  193. package/es/modules/gct-form/editor/gct-form-span/gct-form-span.css +73 -0
  194. package/es/{editor → modules/gct-form/editor}/gct-form-span/gct-form-span.d.ts +10 -1
  195. package/es/modules/gct-form/editor/gct-form-span/gct-form-span.mjs +100 -0
  196. package/es/{editor → modules/gct-form/editor}/gct-form-span/gct-form-span.provider.d.ts +1 -1
  197. package/es/modules/gct-form/editor/gct-form-span/gct-form-span.provider.mjs +5 -0
  198. package/es/modules/gct-form/editor/gct-form-span/index.mjs +12 -0
  199. package/es/{editor → modules/gct-form/editor}/gct-form-switch/gct-form-switch.d.ts +7 -1
  200. package/es/modules/gct-form/editor/gct-form-switch/gct-form-switch.mjs +39 -0
  201. package/es/{editor → modules/gct-form/editor}/gct-form-switch/gct-form-switch.provider.d.ts +1 -1
  202. package/es/modules/gct-form/editor/gct-form-switch/gct-form-switch.provider.mjs +5 -0
  203. package/es/modules/gct-form/editor/gct-form-switch/index.d.ts +4 -0
  204. package/es/modules/gct-form/editor/gct-form-switch/index.mjs +12 -0
  205. package/es/modules/gct-form/editor/gct-form-table/gct-form-table.d.ts +53 -0
  206. package/es/modules/gct-form/editor/gct-form-table/gct-form-table.mjs +32 -0
  207. package/es/modules/gct-form/editor/gct-form-table/index.d.ts +8 -0
  208. package/es/modules/gct-form/editor/gct-form-table/index.mjs +14 -0
  209. package/es/modules/gct-form/editor/gct-form-text/gct-form-text.css +70 -0
  210. package/es/{editor → modules/gct-form/editor}/gct-form-text/gct-form-text.d.ts +8 -2
  211. package/es/modules/gct-form/editor/gct-form-text/gct-form-text.mjs +58 -0
  212. package/es/{editor → modules/gct-form/editor}/gct-form-text/gct-form-text.provider.d.ts +1 -1
  213. package/es/modules/gct-form/editor/gct-form-text/gct-form-text.provider.mjs +5 -0
  214. package/es/modules/gct-form/editor/gct-form-text/index.d.ts +4 -0
  215. package/es/modules/gct-form/editor/gct-form-text/index.mjs +12 -0
  216. package/es/{editor → modules/gct-form/editor}/gct-form-textarea/gct-form-textarea.d.ts +2 -1
  217. package/es/modules/gct-form/editor/gct-form-textarea/gct-form-textarea.mjs +46 -0
  218. package/es/{editor → modules/gct-form/editor}/gct-form-textarea/gct-form-textarea.provider.d.ts +1 -1
  219. package/es/modules/gct-form/editor/gct-form-textarea/gct-form-textarea.provider.mjs +5 -0
  220. package/es/modules/gct-form/editor/gct-form-textarea/index.d.ts +4 -0
  221. package/es/modules/gct-form/editor/gct-form-textarea/index.mjs +12 -0
  222. package/es/modules/gct-form/editor/gct-select-form-table/gct-select-form-table.css +94 -0
  223. package/es/modules/gct-form/editor/gct-select-form-table/gct-select-form-table.d.ts +53 -0
  224. package/es/modules/gct-form/editor/gct-select-form-table/gct-select-form-table.mjs +79 -0
  225. package/es/modules/gct-form/editor/gct-select-form-table/index.d.ts +8 -0
  226. package/es/modules/gct-form/editor/gct-select-form-table/index.mjs +14 -0
  227. package/es/modules/gct-form/editor/index.mjs +34 -0
  228. package/es/modules/gct-form/hooks/index.d.ts +2 -0
  229. package/es/modules/gct-form/hooks/use-form/use-form.d.ts +10 -0
  230. package/es/modules/gct-form/hooks/use-form/use-form.mjs +8 -0
  231. package/es/modules/gct-form/hooks/use-gct-form-value/use-gct-form-value.d.ts +22 -0
  232. package/es/modules/gct-form/hooks/use-gct-form-value/use-gct-form-value.mjs +89 -0
  233. package/es/modules/gct-form/index.d.ts +12 -0
  234. package/es/modules/gct-form/index.mjs +16 -0
  235. package/es/modules/gct-form/interface/i-controller/edit-form/edit-form.controller.d.ts +20 -0
  236. package/es/modules/gct-form/interface/i-controller/editor-item/editor-item.controller.d.ts +27 -0
  237. package/es/modules/gct-form/interface/i-controller/form/form.controller.d.ts +121 -0
  238. package/es/modules/gct-form/interface/i-controller/form-collapse/form-collapse.controller.d.ts +23 -0
  239. package/es/modules/gct-form/interface/i-controller/form-collapse-pane/form-collapse-pane.controller.d.ts +23 -0
  240. package/es/modules/gct-form/interface/i-controller/form-edit-item/form-edit-item.controller.d.ts +59 -0
  241. package/es/modules/gct-form/interface/i-controller/form-group/form-group.controller.d.ts +24 -0
  242. package/es/modules/gct-form/interface/i-controller/form-hidden-item/form-hidden-item.controller.d.ts +24 -0
  243. package/es/modules/gct-form/interface/i-controller/form-item/form-item.controller.d.ts +40 -0
  244. package/es/modules/gct-form/interface/i-controller/form-item-basic/form-item-basic.controller.d.ts +51 -0
  245. package/es/modules/gct-form/interface/i-controller/form-line/form-line.controller.d.ts +20 -0
  246. package/es/modules/gct-form/interface/i-controller/form-tab/form-tab.controller.d.ts +23 -0
  247. package/es/modules/gct-form/interface/i-controller/form-tab-pane/form-tab-pane.controller.d.ts +23 -0
  248. package/es/modules/gct-form/interface/i-controller/index.d.ts +13 -0
  249. package/es/modules/gct-form/interface/i-editor/i-action-editor.d.ts +23 -0
  250. package/es/modules/gct-form/interface/i-editor/i-check-switch.d.ts +29 -0
  251. package/es/modules/gct-form/interface/i-editor/i-checkbox-editor.d.ts +11 -0
  252. package/es/modules/gct-form/interface/i-editor/i-color-editor.d.ts +13 -0
  253. package/es/modules/gct-form/interface/i-editor/i-date-format-select-editor.d.ts +36 -0
  254. package/es/modules/gct-form/interface/i-editor/i-editor-basic.d.ts +134 -0
  255. package/es/modules/gct-form/interface/i-editor/i-formula-editor.d.ts +22 -0
  256. package/es/modules/gct-form/interface/i-editor/i-i18n-editor.d.ts +38 -0
  257. package/es/modules/gct-form/interface/i-editor/i-icon-select-editor.d.ts +21 -0
  258. package/es/modules/gct-form/interface/i-editor/i-info-editor.d.ts +21 -0
  259. package/es/modules/gct-form/interface/i-editor/i-length-unit-editor.d.ts +13 -0
  260. package/es/modules/gct-form/interface/i-editor/i-model-field-select-editor.d.ts +18 -0
  261. package/es/modules/gct-form/interface/i-editor/i-mpicker-editor.d.ts +36 -0
  262. package/es/modules/gct-form/interface/i-editor/i-number-editor.d.ts +21 -0
  263. package/es/modules/gct-form/interface/i-editor/i-picker-editor.d.ts +37 -0
  264. package/es/modules/gct-form/interface/i-editor/i-radio-editor.d.ts +32 -0
  265. package/es/modules/gct-form/interface/i-editor/i-select-editor.d.ts +45 -0
  266. package/es/modules/gct-form/interface/i-editor/i-select-table-editor.d.ts +44 -0
  267. package/es/modules/gct-form/interface/i-editor/i-span-editor.d.ts +30 -0
  268. package/es/modules/gct-form/interface/i-editor/i-switch-editor.d.ts +14 -0
  269. package/es/modules/gct-form/interface/i-editor/i-table-editor.d.ts +19 -0
  270. package/es/modules/gct-form/interface/i-editor/i-text-editor.d.ts +46 -0
  271. package/es/modules/gct-form/interface/i-editor/i-textarea-editor.d.ts +25 -0
  272. package/es/modules/gct-form/interface/i-editor/index.d.ts +23 -0
  273. package/es/modules/gct-form/interface/i-events/form/i-form.event.d.ts +14 -0
  274. package/es/modules/gct-form/interface/i-events/index.d.ts +1 -0
  275. package/es/modules/gct-form/interface/i-form/i-edit-form.d.ts +48 -0
  276. package/es/modules/gct-form/interface/i-form/i-form-collapse-pane.d.ts +30 -0
  277. package/es/modules/gct-form/interface/i-form/i-form-collapse.d.ts +39 -0
  278. package/es/modules/gct-form/interface/i-form/i-form-container.d.ts +53 -0
  279. package/es/modules/gct-form/interface/i-form/i-form-edit-item.d.ts +154 -0
  280. package/es/modules/gct-form/interface/i-form/i-form-group-container.d.ts +24 -0
  281. package/es/modules/gct-form/interface/i-form/i-form-group.d.ts +35 -0
  282. package/es/modules/gct-form/interface/i-form/i-form-hidden-item.d.ts +11 -0
  283. package/es/modules/gct-form/interface/i-form/i-form-item-basic.d.ts +131 -0
  284. package/es/modules/gct-form/interface/i-form/i-form-item.d.ts +11 -0
  285. package/es/modules/gct-form/interface/i-form/i-form-line.d.ts +24 -0
  286. package/es/modules/gct-form/interface/i-form/i-form-tab-pane.d.ts +23 -0
  287. package/es/modules/gct-form/interface/i-form/i-form-tab.d.ts +25 -0
  288. package/es/modules/gct-form/interface/i-form/i-form.d.ts +93 -0
  289. package/es/modules/gct-form/interface/i-form/index.d.ts +14 -0
  290. package/es/modules/gct-form/interface/i-layout/i-flex-layout/i-flex-container.d.ts +75 -0
  291. package/es/modules/gct-form/interface/i-layout/i-flex-layout/i-flex-item.d.ts +51 -0
  292. package/es/modules/gct-form/interface/i-layout/i-grid-layout/i-grid-container.d.ts +29 -0
  293. package/es/modules/gct-form/interface/i-layout/i-grid-layout/i-grid-item-span.d.ts +54 -0
  294. package/es/modules/gct-form/interface/i-layout/i-grid-layout/i-grid-item.d.ts +37 -0
  295. package/es/modules/gct-form/interface/i-layout/i-layout-basis/i-layout-container-basis.d.ts +11 -0
  296. package/es/modules/gct-form/interface/i-layout/index.d.ts +6 -0
  297. package/es/modules/gct-form/interface/i-provider/i-editor-provider/i-editor-provider.d.ts +24 -0
  298. package/es/modules/gct-form/interface/i-provider/i-form-item-provider/i-form-item-provider.d.ts +44 -0
  299. package/es/modules/gct-form/interface/i-provider/index.d.ts +2 -0
  300. package/es/modules/gct-form/interface/i-state/form/form.state.d.ts +59 -0
  301. package/es/modules/gct-form/interface/i-state/form-collapse/form-collapse.state.d.ts +11 -0
  302. package/es/modules/gct-form/interface/i-state/form-collapse-pane/form-collapse-pane.state.d.ts +11 -0
  303. package/es/modules/gct-form/interface/i-state/form-edit-item/form-edit-item.state.d.ts +38 -0
  304. package/es/modules/gct-form/interface/i-state/form-group/form-group.state.d.ts +21 -0
  305. package/es/modules/gct-form/interface/i-state/form-hidden-item/form-hidden-item.state.d.ts +5 -0
  306. package/es/modules/gct-form/interface/i-state/form-item/form-item.state.d.ts +20 -0
  307. package/es/modules/gct-form/interface/i-state/form-item-basic/form-item-basic.state.d.ts +63 -0
  308. package/es/modules/gct-form/interface/i-state/form-line/form-line.state.d.ts +10 -0
  309. package/es/modules/gct-form/interface/i-state/form-tab/form-tab.state.d.ts +19 -0
  310. package/es/modules/gct-form/interface/i-state/form-tab-pane/form-tab-pane.state.d.ts +11 -0
  311. package/es/modules/gct-form/interface/i-state/index.d.ts +11 -0
  312. package/es/modules/gct-form/interface/index.d.ts +7 -0
  313. package/es/modules/gct-form/props/gct-form-item/gct-form-item.props.d.ts +63 -0
  314. package/es/modules/gct-form/props/gct-form-item/gct-form-item.props.mjs +66 -0
  315. package/es/modules/gct-form/props/index.d.ts +1 -0
  316. package/es/modules/gct-form/register/editor-register/editor-register.d.ts +49 -0
  317. package/es/modules/gct-form/register/editor-register/editor-register.mjs +57 -0
  318. package/es/modules/gct-form/register/form-item-register/form-item-register.d.ts +36 -0
  319. package/es/modules/gct-form/register/form-item-register/form-item-register.mjs +42 -0
  320. package/es/modules/gct-form/register/index.d.ts +2 -0
  321. package/es/modules/gct-form/state/form/form.state.d.ts +25 -0
  322. package/es/modules/gct-form/state/form/form.state.mjs +17 -0
  323. package/es/modules/gct-form/state/form-collapse/form-collapse.state.d.ts +14 -0
  324. package/es/modules/gct-form/state/form-collapse/form-collapse.state.mjs +6 -0
  325. package/es/modules/gct-form/state/form-collapse-pane/form-collapse-pane.state.d.ts +14 -0
  326. package/es/modules/gct-form/state/form-collapse-pane/form-collapse-pane.state.mjs +6 -0
  327. package/es/modules/gct-form/state/form-edit-item/form-edit-item.state.d.ts +18 -0
  328. package/es/modules/gct-form/state/form-edit-item/form-edit-item.state.mjs +10 -0
  329. package/es/modules/gct-form/state/form-group/form-group.state.d.ts +21 -0
  330. package/es/modules/gct-form/state/form-group/form-group.state.mjs +14 -0
  331. package/es/modules/gct-form/state/form-item/form-item.state.d.ts +14 -0
  332. package/es/modules/gct-form/state/form-item/form-item.state.mjs +6 -0
  333. package/es/modules/gct-form/state/form-item-basic/form-item-basic.state.d.ts +17 -0
  334. package/es/modules/gct-form/state/form-item-basic/form-item-basic.state.mjs +9 -0
  335. package/es/modules/gct-form/state/form-line/form-line.state.d.ts +11 -0
  336. package/es/modules/gct-form/state/form-line/form-line.state.mjs +6 -0
  337. package/es/modules/gct-form/state/form-tab/form-tab.state.d.ts +15 -0
  338. package/es/modules/gct-form/state/form-tab/form-tab.state.mjs +7 -0
  339. package/es/modules/gct-form/state/form-tab-pane/form-tab-pane.state.d.ts +14 -0
  340. package/es/modules/gct-form/state/form-tab-pane/form-tab-pane.state.mjs +6 -0
  341. package/es/modules/gct-form/state/index.d.ts +10 -0
  342. package/es/modules/gct-form/utils/index.d.ts +1 -0
  343. package/es/modules/gct-form/utils/width-install/width-install.d.ts +17 -0
  344. package/es/modules/gct-form/utils/width-install/width-install.mjs +19 -0
  345. package/es/{widgets → modules/gct-form/widgets}/gct-edit-form/gct-edit-form.d.ts +23 -4
  346. package/es/modules/gct-form/widgets/gct-edit-form/gct-edit-form.mjs +151 -0
  347. package/es/modules/gct-form/widgets/gct-edit-form/index.mjs +10 -0
  348. package/es/modules/gct-form/widgets/gct-form/gct-form-collapse/gct-form-collapse.css +97 -0
  349. package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-collapse/gct-form-collapse.d.ts +13 -3
  350. package/es/modules/gct-form/widgets/gct-form/gct-form-collapse/gct-form-collapse.mjs +79 -0
  351. package/es/modules/gct-form/widgets/gct-form/gct-form-collapse/gct-form-collapse.model.d.ts +19 -0
  352. package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-collapse/gct-form-collapse.provider.d.ts +1 -1
  353. package/es/modules/gct-form/widgets/gct-form/gct-form-collapse/gct-form-collapse.provider.mjs +14 -0
  354. package/es/modules/gct-form/widgets/gct-form/gct-form-collapse/index.d.ts +7 -0
  355. package/es/modules/gct-form/widgets/gct-form/gct-form-collapse/index.mjs +15 -0
  356. package/es/modules/gct-form/widgets/gct-form/gct-form-collapse-pane/gct-form-collapse-pane.css +79 -0
  357. package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-collapse-pane/gct-form-collapse-pane.d.ts +13 -3
  358. package/es/modules/gct-form/widgets/gct-form/gct-form-collapse-pane/gct-form-collapse-pane.mjs +77 -0
  359. package/es/modules/gct-form/widgets/gct-form/gct-form-collapse-pane/gct-form-collapse-pane.model.d.ts +18 -0
  360. package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-collapse-pane/gct-form-collapse-pane.provider.d.ts +1 -1
  361. package/es/modules/gct-form/widgets/gct-form/gct-form-collapse-pane/gct-form-collapse-pane.provider.mjs +16 -0
  362. package/es/modules/gct-form/widgets/gct-form/gct-form-collapse-pane/index.d.ts +7 -0
  363. package/es/modules/gct-form/widgets/gct-form/gct-form-collapse-pane/index.mjs +15 -0
  364. package/es/modules/gct-form/widgets/gct-form/gct-form-group/gct-form-group.css +88 -0
  365. package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-group/gct-form-group.d.ts +13 -3
  366. package/es/modules/gct-form/widgets/gct-form/gct-form-group/gct-form-group.mjs +94 -0
  367. package/es/modules/gct-form/widgets/gct-form/gct-form-group/gct-form-group.model.d.ts +19 -0
  368. package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-group/gct-form-group.provider.d.ts +1 -1
  369. package/es/modules/gct-form/widgets/gct-form/gct-form-group/gct-form-group.provider.mjs +14 -0
  370. package/es/modules/gct-form/widgets/gct-form/gct-form-group/index.d.ts +7 -0
  371. package/es/modules/gct-form/widgets/gct-form/gct-form-group/index.mjs +15 -0
  372. package/es/modules/gct-form/widgets/gct-form/gct-form-hidden-item/gct-form-hidden-item.model.d.ts +16 -0
  373. package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-hidden-item/gct-form-hidden-item.provider.d.ts +2 -2
  374. package/es/modules/gct-form/widgets/gct-form/gct-form-hidden-item/gct-form-hidden-item.provider.mjs +16 -0
  375. package/es/modules/gct-form/widgets/gct-form/gct-form-hidden-item/index.d.ts +6 -0
  376. package/es/modules/gct-form/widgets/gct-form/gct-form-item/gct-form-item.css +171 -0
  377. package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-item/gct-form-item.d.ts +23 -4
  378. package/es/modules/gct-form/widgets/gct-form/gct-form-item/gct-form-item.mjs +163 -0
  379. package/es/modules/gct-form/widgets/gct-form/gct-form-item/gct-form-item.model.d.ts +17 -0
  380. package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-item/gct-form-item.provider.d.ts +1 -1
  381. package/es/modules/gct-form/widgets/gct-form/gct-form-item/gct-form-item.provider.mjs +14 -0
  382. package/es/modules/gct-form/widgets/gct-form/gct-form-item/index.d.ts +7 -0
  383. package/es/modules/gct-form/widgets/gct-form/gct-form-line/gct-form-line.css +72 -0
  384. package/es/modules/gct-form/widgets/gct-form/gct-form-line/gct-form-line.d.ts +37 -0
  385. package/es/modules/gct-form/widgets/gct-form/gct-form-line/gct-form-line.mjs +48 -0
  386. package/es/modules/gct-form/widgets/gct-form/gct-form-line/gct-form-line.model.d.ts +15 -0
  387. package/es/modules/gct-form/widgets/gct-form/gct-form-line/gct-form-line.provider.d.ts +5 -0
  388. package/es/modules/gct-form/widgets/gct-form/gct-form-line/gct-form-line.provider.mjs +14 -0
  389. package/es/modules/gct-form/widgets/gct-form/gct-form-line/index.d.ts +7 -0
  390. package/es/modules/gct-form/widgets/gct-form/gct-form-line/index.mjs +12 -0
  391. package/es/modules/gct-form/widgets/gct-form/gct-form-tab/gct-form-tab.css +108 -0
  392. package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-tab/gct-form-tab.d.ts +12 -2
  393. package/es/modules/gct-form/widgets/gct-form/gct-form-tab/gct-form-tab.mjs +72 -0
  394. package/es/modules/gct-form/widgets/gct-form/gct-form-tab/gct-form-tab.model.d.ts +10 -0
  395. package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-tab/gct-form-tab.provider.d.ts +1 -1
  396. package/es/modules/gct-form/widgets/gct-form/gct-form-tab/gct-form-tab.provider.mjs +14 -0
  397. package/es/modules/gct-form/widgets/gct-form/gct-form-tab/index.d.ts +7 -0
  398. package/es/modules/gct-form/widgets/gct-form/gct-form-tab/index.mjs +12 -0
  399. package/es/modules/gct-form/widgets/gct-form/gct-form-tab-pane/gct-form-tab-pane.css +74 -0
  400. package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-tab-pane/gct-form-tab-pane.d.ts +13 -3
  401. package/es/modules/gct-form/widgets/gct-form/gct-form-tab-pane/gct-form-tab-pane.mjs +71 -0
  402. package/es/modules/gct-form/widgets/gct-form/gct-form-tab-pane/gct-form-tab-pane.model.d.ts +17 -0
  403. package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-tab-pane/gct-form-tab-pane.provider.d.ts +1 -1
  404. package/es/modules/gct-form/widgets/gct-form/gct-form-tab-pane/gct-form-tab-pane.provider.mjs +14 -0
  405. package/es/modules/gct-form/widgets/gct-form/gct-form-tab-pane/index.d.ts +6 -0
  406. package/es/modules/gct-form/widgets/gct-form/gct-form-tab-pane/index.mjs +15 -0
  407. package/es/modules/gct-form/widgets/gct-form/gct-form-title-group/gct-form-title-group.css +82 -0
  408. package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-title-group/gct-form-title-group.d.ts +2 -2
  409. package/es/modules/gct-form/widgets/gct-form/gct-form-title-group/gct-form-title-group.mjs +73 -0
  410. package/es/modules/gct-form/widgets/gct-form/gct-form-title-group/gct-form-title-group.model.d.ts +19 -0
  411. package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-title-group/gct-form-title-group.provider.d.ts +1 -1
  412. package/es/modules/gct-form/widgets/gct-form/gct-form-title-group/gct-form-title-group.provider.mjs +14 -0
  413. package/es/modules/gct-form/widgets/gct-form/gct-form-title-group/index.d.ts +7 -0
  414. package/es/modules/gct-form/widgets/gct-form/gct-form-title-group/index.mjs +16 -0
  415. package/es/modules/gct-form/widgets/gct-form/gct-form.css +73 -0
  416. package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form.d.ts +13 -3
  417. package/es/modules/gct-form/widgets/gct-form/gct-form.mjs +147 -0
  418. package/es/modules/gct-form/widgets/gct-form/index.d.ts +14 -0
  419. package/es/modules/gct-form/widgets/gct-form/index.mjs +33 -0
  420. package/es/modules/gct-table/controller/gct-table/gct-table.controller.d.ts +54 -0
  421. package/es/modules/gct-table/controller/gct-table/gct-table.controller.mjs +143 -0
  422. package/es/modules/gct-table/controller/index.d.ts +5 -0
  423. package/es/modules/gct-table/controller/table-item/table-action-item.controller.d.ts +15 -0
  424. package/es/modules/gct-table/controller/table-item/table-action-item.controller.mjs +6 -0
  425. package/es/modules/gct-table/controller/table-item/table-edit-item.controller.d.ts +19 -0
  426. package/es/modules/gct-table/controller/table-item/table-edit-item.controller.mjs +16 -0
  427. package/es/modules/gct-table/controller/table-item/table-item.controller.d.ts +21 -0
  428. package/es/modules/gct-table/controller/table-item/table-item.controller.mjs +26 -0
  429. package/es/modules/gct-table/controller/table-row/table-row.controller.d.ts +28 -0
  430. package/es/modules/gct-table/controller/table-row/table-row.controller.mjs +70 -0
  431. package/es/{editor/gct-form-i18n/gct-form-i18n.d.ts → modules/gct-table/editor/gct-table-date/gct-table-date.d.ts} +19 -8
  432. package/es/modules/gct-table/editor/gct-table-date/gct-table-date.mjs +93 -0
  433. package/es/modules/gct-table/editor/gct-table-date/gct-table-date.provider.d.ts +11 -0
  434. package/es/modules/gct-table/editor/gct-table-date/gct-table-date.provider.mjs +5 -0
  435. package/es/modules/gct-table/editor/gct-table-date/index.d.ts +4 -0
  436. package/es/modules/gct-table/editor/gct-table-date/index.mjs +52 -0
  437. package/es/modules/gct-table/editor/gct-table-span/gct-table-span.css +86 -0
  438. package/es/modules/gct-table/editor/gct-table-span/gct-table-span.d.ts +34 -0
  439. package/es/modules/gct-table/editor/gct-table-span/gct-table-span.mjs +40 -0
  440. package/es/modules/gct-table/editor/gct-table-span/gct-table-span.provider.d.ts +13 -0
  441. package/es/modules/gct-table/editor/gct-table-span/gct-table-span.provider.mjs +5 -0
  442. package/es/modules/gct-table/editor/gct-table-span/index.d.ts +4 -0
  443. package/es/modules/gct-table/editor/gct-table-span/index.mjs +52 -0
  444. package/es/modules/gct-table/editor/gct-table-text/gct-table-text.css +80 -0
  445. package/es/modules/gct-table/editor/gct-table-text/gct-table-text.d.ts +50 -0
  446. package/es/modules/gct-table/editor/gct-table-text/gct-table-text.mjs +106 -0
  447. package/es/modules/gct-table/editor/gct-table-text/gct-table-text.provider.d.ts +13 -0
  448. package/es/modules/gct-table/editor/gct-table-text/gct-table-text.provider.mjs +5 -0
  449. package/es/modules/gct-table/editor/gct-table-text/index.d.ts +4 -0
  450. package/es/modules/gct-table/editor/gct-table-text/index.mjs +52 -0
  451. package/es/modules/gct-table/editor/index.mjs +11 -0
  452. package/es/modules/gct-table/hooks/index.d.ts +1 -0
  453. package/es/modules/gct-table/hooks/use-ant-table/use-ant-table.d.ts +10 -0
  454. package/es/modules/gct-table/hooks/use-ant-table/use-ant-table.mjs +85 -0
  455. package/es/modules/gct-table/index.d.ts +10 -0
  456. package/es/modules/gct-table/index.mjs +15 -0
  457. package/es/modules/gct-table/interface/i-controller/index.d.ts +5 -0
  458. package/es/modules/gct-table/interface/i-controller/table/i-table.controller.d.ts +133 -0
  459. package/es/modules/gct-table/interface/i-controller/table-item/i-table-action-item.controller.d.ts +21 -0
  460. package/es/modules/gct-table/interface/i-controller/table-item/i-table-edit-item.controller.d.ts +44 -0
  461. package/es/modules/gct-table/interface/i-controller/table-item/i-table-item.controller.d.ts +61 -0
  462. package/es/modules/gct-table/interface/i-controller/table-row/i-table-row.controller.d.ts +110 -0
  463. package/es/modules/gct-table/interface/i-events/index.d.ts +1 -0
  464. package/es/modules/gct-table/interface/i-events/table/i-table.event.d.ts +21 -0
  465. package/es/modules/gct-table/interface/i-provider/i-table-editor-provider/i-table-editor-provider.d.ts +24 -0
  466. package/es/modules/gct-table/interface/i-provider/index.d.ts +1 -0
  467. package/es/modules/gct-table/interface/i-state/index.d.ts +4 -0
  468. package/es/modules/gct-table/interface/i-state/table/i-table.state.d.ts +50 -0
  469. package/es/modules/gct-table/interface/i-state/table-item/table-edit-item.state.d.ts +47 -0
  470. package/es/modules/gct-table/interface/i-state/table-item/table-item.state.d.ts +28 -0
  471. package/es/modules/gct-table/interface/i-state/table-row/table-row.state.d.ts +35 -0
  472. package/es/modules/gct-table/interface/i-table/i-pagination.d.ts +29 -0
  473. package/es/modules/gct-table/interface/i-table/i-table-action-item.d.ts +135 -0
  474. package/es/modules/gct-table/interface/i-table/i-table-edit-item.d.ts +74 -0
  475. package/es/modules/gct-table/interface/i-table/i-table-item.d.ts +98 -0
  476. package/es/modules/gct-table/interface/i-table/i-table.d.ts +76 -0
  477. package/es/modules/gct-table/interface/i-table/index.d.ts +4 -0
  478. package/es/modules/gct-table/interface/index.d.ts +5 -0
  479. package/es/modules/gct-table/register/index.d.ts +1 -0
  480. package/es/modules/gct-table/register/table-editor-register/table-editor-register.d.ts +53 -0
  481. package/es/modules/gct-table/register/table-editor-register/table-editor-register.mjs +61 -0
  482. package/es/modules/gct-table/state/index.d.ts +4 -0
  483. package/es/modules/gct-table/state/table/table.state.d.ts +45 -0
  484. package/es/modules/gct-table/state/table/table.state.mjs +37 -0
  485. package/es/modules/gct-table/state/table-item/table-edit-item.state.d.ts +18 -0
  486. package/es/modules/gct-table/state/table-item/table-edit-item.state.mjs +10 -0
  487. package/es/modules/gct-table/state/table-item/table-item.state.d.ts +28 -0
  488. package/es/modules/gct-table/state/table-item/table-item.state.mjs +20 -0
  489. package/es/modules/gct-table/state/table-row/table-row.state.d.ts +15 -0
  490. package/es/modules/gct-table/state/table-row/table-row.state.mjs +7 -0
  491. package/es/modules/gct-table/utils/count-latch/count-latch.d.ts +70 -0
  492. package/es/modules/gct-table/utils/count-latch/count-latch.mjs +95 -0
  493. package/es/modules/gct-table/utils/count-latch/result-awaiter.d.ts +17 -0
  494. package/es/modules/gct-table/utils/index.d.ts +3 -0
  495. package/es/modules/gct-table/utils/width-install/width-install.d.ts +16 -0
  496. package/es/modules/gct-table/utils/width-install/width-install.mjs +19 -0
  497. package/es/modules/gct-table/widgets/gct-table/gct-table.css +124 -0
  498. package/es/modules/gct-table/widgets/gct-table/gct-table.d.ts +51 -0
  499. package/es/modules/gct-table/widgets/gct-table/gct-table.mjs +414 -0
  500. package/es/modules/gct-table/widgets/gct-table/index.mjs +10 -0
  501. package/es/modules/gct-table/widgets/index.mjs +9 -0
  502. package/es/modules/global-modal/index.d.ts +1 -0
  503. package/es/modules/global-modal/index.mjs +1 -0
  504. package/es/modules/global-modal/src/BasicModal.vue.d.ts +18 -18
  505. package/es/modules/global-modal/src/components/GlboalModal.d.ts +10 -10
  506. package/es/modules/global-modal/src/components/ModalFooter.vue.d.ts +12 -12
  507. package/es/modules/global-modal/src/components/ModalWrapper.vue.d.ts +1 -1
  508. package/es/modules/target-loading/src/target-loading.vue.d.ts +1 -1
  509. package/es/types/index.d.ts +11 -1
  510. package/package.json +13 -6
  511. package/dist/index-Bpd2MFJC.js +0 -33732
  512. package/dist/index-CwxW5OnC.js +0 -98
  513. package/dist/index-vFQ1naj3.cjs +0 -98
  514. package/dist/monaco-editor-5rbNTIph.cjs +0 -19
  515. package/dist/monaco-editor-DHkSqfaq.js +0 -19
  516. package/dist/monaco-editor-DYUIGpkZ.js +0 -20245
  517. package/es/components/layout/flex-container/flex-container.d.ts +0 -15
  518. package/es/components/layout/flex-container/flex-container.mjs +0 -94
  519. package/es/components/layout/flex-item/flex-item.d.ts +0 -14
  520. package/es/components/layout/flex-item/flex-item.mjs +0 -55
  521. package/es/components/layout/grid-container/grid-container.d.ts +0 -13
  522. package/es/components/layout/grid-container/grid-container.mjs +0 -51
  523. package/es/editor/gct-form-color/gct-form-color.d.ts +0 -5
  524. package/es/editor/gct-form-color/index.d.ts +0 -7
  525. package/es/editor/gct-form-field-select/gct-form-field-select.d.ts +0 -47
  526. package/es/editor/gct-form-field-select/gct-form-field-select.provider.d.ts +0 -13
  527. package/es/editor/gct-form-field-select/gct-model-select.vue.d.ts +0 -9
  528. package/es/editor/gct-form-modal-select/gct-form-modal-select.provider.d.ts +0 -13
  529. package/es/editor/gct-form-number/index.d.ts +0 -7
  530. package/es/editor/gct-form-switch/index.d.ts +0 -7
  531. package/es/editor/gct-form-text/index.d.ts +0 -7
  532. package/es/widgets/gct-form/gct-form-tab/index.d.ts +0 -5
  533. package/es/widgets/gct-form/gct-form-tab-pane/index.d.ts +0 -5
  534. package/es/widgets/gct-form/gct-form-title-group/index.d.ts +0 -5
  535. package/es/widgets/gct-form/index.d.ts +0 -5
  536. /package/es/{editor → modules/gct-form/editor}/gct-form-check-switch/index.d.ts +0 -0
  537. /package/es/{editor/gct-form-field-select → modules/gct-form/editor/gct-form-color}/index.d.ts +0 -0
  538. /package/es/{editor/gct-form-i18n → modules/gct-form/editor/gct-form-date}/index.d.ts +0 -0
  539. /package/es/{editor/gct-form-length-unit → modules/gct-form/editor/gct-form-i18n}/index.d.ts +0 -0
  540. /package/es/{editor/gct-form-modal-select → modules/gct-form/editor/gct-form-length-unit}/index.d.ts +0 -0
  541. /package/es/{editor/gct-form-picker → modules/gct-form/editor/gct-form-number}/index.d.ts +0 -0
  542. /package/es/{editor/gct-form-select → modules/gct-form/editor/gct-form-picker}/index.d.ts +0 -0
  543. /package/es/{editor/gct-form-span → modules/gct-form/editor/gct-form-select}/index.d.ts +0 -0
  544. /package/es/{editor/gct-form-textarea → modules/gct-form/editor/gct-form-span}/index.d.ts +0 -0
  545. /package/es/{editor → modules/gct-form/editor}/index.d.ts +0 -0
  546. /package/es/{widgets → modules/gct-form/widgets}/gct-edit-form/index.d.ts +0 -0
  547. /package/es/{widgets/gct-form/gct-form-collapse-pane → modules/gct-table/editor}/index.d.ts +0 -0
  548. /package/es/{widgets/gct-form/gct-form-collapse → modules/gct-table/widgets/gct-table}/index.d.ts +0 -0
  549. /package/es/{widgets/gct-form/gct-form-group → modules/gct-table/widgets}/index.d.ts +0 -0
@@ -0,0 +1,70 @@
1
+ import { reactive } from 'vue';
2
+ import { TableRowState } from '../../state/table-row/table-row.state.mjs';
3
+ import { TableActionItemController } from '../table-item/table-action-item.controller.mjs';
4
+ import { TableEditItemController } from '../table-item/table-edit-item.controller.mjs';
5
+ import { TableItemController } from '../table-item/table-item.controller.mjs';
6
+ import { CountLatch } from '../../utils/count-latch/count-latch.mjs';
7
+ import '@gct-paas/core';
8
+
9
+ class TableRowController {
10
+ constructor(table, model, data) {
11
+ this.table = table;
12
+ this.model = model;
13
+ this.data = data;
14
+ }
15
+ item = {};
16
+ fields = [];
17
+ state = this.createState();
18
+ activeCount = new CountLatch();
19
+ get key() {
20
+ return this.data[this.model.key];
21
+ }
22
+ async init() {
23
+ const all = this.model.columns.map((col) => {
24
+ let c = null;
25
+ switch (col.type) {
26
+ case "edit":
27
+ c = new TableEditItemController(this, col);
28
+ break;
29
+ case "actions":
30
+ c = new TableActionItemController(this, col);
31
+ break;
32
+ default:
33
+ c = new TableItemController(this, col);
34
+ }
35
+ this.fields.push(col.name);
36
+ c.state = reactive(c.state);
37
+ this.item[col.name] = c;
38
+ return c;
39
+ });
40
+ await Promise.all(all);
41
+ }
42
+ change(name, newVal, oldVal) {
43
+ this.table.change(this, name, newVal, oldVal);
44
+ }
45
+ async destroy() {
46
+ const keys = Object.keys(this.item);
47
+ const all = keys.map((key) => this.item[key].destroy());
48
+ this.item = {};
49
+ await Promise.all(all);
50
+ }
51
+ active() {
52
+ if (this.activeCount.isLock) {
53
+ this.activeCount.lock();
54
+ return;
55
+ }
56
+ this.activeCount.lock();
57
+ this.state.active = true;
58
+ this.activeCount.await().then(() => {
59
+ this.state.active = false;
60
+ });
61
+ }
62
+ unActive() {
63
+ this.activeCount.unlock();
64
+ }
65
+ createState() {
66
+ return new TableRowState();
67
+ }
68
+ }
69
+
70
+ export { TableRowController };
@@ -1,38 +1,49 @@
1
1
  import { PropType } from 'vue';
2
- import { IFormItemController, INumberEditor } from '@gct-paas/core';
3
- export declare const GctFormI18n: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ import { ITextEditor } from '../../../gct-form';
3
+ import { ITableEditItemController } from '../../interface';
4
+ /**
5
+ * 文本编辑器
6
+ */
7
+ export declare const GctTableDate: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
4
8
  c: {
5
- type: PropType<IFormItemController>;
9
+ type: PropType<ITableEditItemController>;
6
10
  required: true;
7
11
  };
8
12
  model: {
9
- type: PropType<INumberEditor>;
13
+ type: PropType<ITextEditor>;
10
14
  required: true;
11
15
  };
12
16
  value: {
13
17
  type: StringConstructor;
14
18
  default: string;
15
19
  };
20
+ isEdit: {
21
+ type: BooleanConstructor;
22
+ default: boolean;
23
+ };
16
24
  }>, {
17
25
  ns: import('@gct-paas/core').Namespace;
18
26
  val: import('vue').WritableComputedRef<any, any>;
19
- i18nConfigValue: import('vue').WritableComputedRef<any, any>;
20
27
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:value"[], "update:value", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
21
28
  c: {
22
- type: PropType<IFormItemController>;
29
+ type: PropType<ITableEditItemController>;
23
30
  required: true;
24
31
  };
25
32
  model: {
26
- type: PropType<INumberEditor>;
33
+ type: PropType<ITextEditor>;
27
34
  required: true;
28
35
  };
29
36
  value: {
30
37
  type: StringConstructor;
31
38
  default: string;
32
39
  };
40
+ isEdit: {
41
+ type: BooleanConstructor;
42
+ default: boolean;
43
+ };
33
44
  }>> & Readonly<{
34
45
  "onUpdate:value"?: ((...args: any[]) => any) | undefined;
35
46
  }>, {
36
47
  value: string;
48
+ isEdit: boolean;
37
49
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
38
- export default GctFormI18n;
@@ -0,0 +1,93 @@
1
+ import { defineComponent, createVNode, resolveComponent, mergeProps } from 'vue';
2
+ import 'qx-util';
3
+ import 'lodash-es';
4
+ import { useGctFormValue } from '../../../gct-form/hooks/use-gct-form-value/use-gct-form-value.mjs';
5
+ import '../../../gct-form/editor/gct-form-action/index.mjs';
6
+ import '../../../gct-form/editor/gct-form-date-format-select/index.mjs';
7
+ import '../../../gct-form/editor/gct-form-length-unit/index.mjs';
8
+ import '../../../gct-form/editor/gct-form-color/index.mjs';
9
+ import '../../../gct-form/editor/gct-form-date/index.mjs';
10
+ import '../../../gct-form/editor/gct-form-formula/index.mjs';
11
+ import '../../../gct-form/editor/gct-form-check-switch/index.mjs';
12
+ import '../../../gct-form/editor/gct-form-group-select/index.mjs';
13
+ import '../../../gct-form/editor/gct-form-i18n/index.mjs';
14
+ import '../../../gct-form/editor/gct-form-icon-select/index.mjs';
15
+ import '../../../gct-form/editor/gct-form-number/index.mjs';
16
+ import '../../../gct-form/editor/gct-form-picker/index.mjs';
17
+ import '../../../gct-form/editor/gct-form-pixel-config/index.mjs';
18
+ import '../../../gct-form/editor/gct-form-select/index.mjs';
19
+ import '../../../gct-form/editor/gct-form-span/index.mjs';
20
+ import '../../../gct-form/editor/gct-form-switch/index.mjs';
21
+ import '../../../gct-form/editor/gct-form-text/index.mjs';
22
+ import '../../../gct-form/editor/gct-form-empty/index.mjs';
23
+ import '../../../gct-form/editor/gct-form-textarea/index.mjs';
24
+ import '../../../gct-form/editor/gct-form-radio/index.mjs';
25
+ import '../../../gct-form/editor/gct-form-info/index.mjs';
26
+ import '../../../gct-form/editor/gct-form-checkbox/index.mjs';
27
+ import '../../../gct-form/editor/gct-form-model-select/index.mjs';
28
+ import '../../../gct-form/editor/gct-form-multiple-choice/index.mjs';
29
+ import '../../../gct-form/editor/gct-form-table/index.mjs';
30
+ import '../../../gct-form/editor/gct-select-form-table/index.mjs';
31
+ import { useNamespace } from '@gct-paas/core';
32
+ import '../gct-table-text/gct-table-text.css';import '../../../gct-form/widgets/gct-form/gct-form-title-group/gct-form-title-group.css';import '../../../gct-form/widgets/gct-form/gct-form-tab-pane/gct-form-tab-pane.css';import '../../../gct-form/widgets/gct-form/gct-form-tab/gct-form-tab.css';import '../../../gct-form/widgets/gct-form/gct-form-line/gct-form-line.css';import '../../../gct-form/widgets/gct-form/gct-form-group/gct-form-group.css';import '../../../gct-form/widgets/gct-form/gct-form-collapse/gct-form-collapse.css';import '../../../gct-form/widgets/gct-form/gct-form-collapse-pane/gct-form-collapse-pane.css';import '../../../gct-form/widgets/gct-form/gct-form.css';import '../../../gct-form/widgets/gct-form/gct-form-item/gct-form-item.css';/* empty css */
33
+ /* empty css */
34
+ /* empty css */
35
+ import 'ant-design-vue';
36
+ /* empty css */
37
+ /* empty css */
38
+ /* empty css */
39
+ /* empty css */
40
+ /* empty css */
41
+ /* empty css */
42
+ /* empty css */
43
+
44
+ /**
45
+ * 文本编辑器
46
+ */
47
+ const GctTableDate = /* @__PURE__ */ defineComponent({
48
+ name: 'GctTableDate',
49
+ props: {
50
+ c: {
51
+ type: Object,
52
+ required: true
53
+ },
54
+ model: {
55
+ type: Object,
56
+ required: true
57
+ },
58
+ value: {
59
+ type: String,
60
+ default: ''
61
+ },
62
+ isEdit: {
63
+ type: Boolean,
64
+ default: false
65
+ }
66
+ },
67
+ emits: ['update:value'],
68
+ setup() {
69
+ const ns = useNamespace('table-date');
70
+ const val = useGctFormValue();
71
+ return {
72
+ ns,
73
+ val
74
+ };
75
+ },
76
+ render() {
77
+ if (this.isEdit === false) {
78
+ return createVNode("div", {
79
+ "class": [this.ns.b(), this.ns.e('info')]
80
+ }, [this.c.value]);
81
+ }
82
+ return createVNode(resolveComponent("a-date-picker"), mergeProps({
83
+ "picker": "date",
84
+ "value": this.val,
85
+ "onUpdate:value": $event => this.val = $event
86
+ }, this.model.props || {}, {
87
+ "class": [this.ns.b(), this.ns.is('error', this.c.state.error)],
88
+ "placeholder": this.model.placeholder
89
+ }), null);
90
+ }
91
+ });
92
+
93
+ export { GctTableDate };
@@ -0,0 +1,11 @@
1
+ import { ITableEditorProvider } from '../../interface';
2
+ /**
3
+ * 文本编辑器
4
+ *
5
+ * @export
6
+ * @class GctTableDateProvider
7
+ * @implements {ITableEditorProvider}
8
+ */
9
+ export declare class GctTableDateProvider implements ITableEditorProvider {
10
+ component: string;
11
+ }
@@ -0,0 +1,5 @@
1
+ class GctTableDateProvider {
2
+ component = "gct-table-date";
3
+ }
4
+
5
+ export { GctTableDateProvider };
@@ -0,0 +1,4 @@
1
+ declare const _default: {
2
+ install(app: import('vue').App): void;
3
+ };
4
+ export default _default;
@@ -0,0 +1,52 @@
1
+ import { EditorType } from '../../../gct-form/constants/editor-type/editor-type.mjs';
2
+ import 'vue';
3
+ import 'qx-util';
4
+ import 'lodash-es';
5
+ import '../../../gct-form/editor/gct-form-action/index.mjs';
6
+ import '../../../gct-form/editor/gct-form-date-format-select/index.mjs';
7
+ import '../../../gct-form/editor/gct-form-length-unit/index.mjs';
8
+ import '../../../gct-form/editor/gct-form-color/index.mjs';
9
+ import '../../../gct-form/editor/gct-form-date/index.mjs';
10
+ import '../../../gct-form/editor/gct-form-formula/index.mjs';
11
+ import '../../../gct-form/editor/gct-form-check-switch/index.mjs';
12
+ import '../../../gct-form/editor/gct-form-group-select/index.mjs';
13
+ import '../../../gct-form/editor/gct-form-i18n/index.mjs';
14
+ import '../../../gct-form/editor/gct-form-icon-select/index.mjs';
15
+ import '../../../gct-form/editor/gct-form-number/index.mjs';
16
+ import '../../../gct-form/editor/gct-form-picker/index.mjs';
17
+ import '../../../gct-form/editor/gct-form-pixel-config/index.mjs';
18
+ import '../../../gct-form/editor/gct-form-select/index.mjs';
19
+ import '../../../gct-form/editor/gct-form-span/index.mjs';
20
+ import '../../../gct-form/editor/gct-form-switch/index.mjs';
21
+ import '../../../gct-form/editor/gct-form-text/index.mjs';
22
+ import '../../../gct-form/editor/gct-form-empty/index.mjs';
23
+ import '../../../gct-form/editor/gct-form-textarea/index.mjs';
24
+ import '../../../gct-form/editor/gct-form-radio/index.mjs';
25
+ import '../../../gct-form/editor/gct-form-info/index.mjs';
26
+ import '../../../gct-form/editor/gct-form-checkbox/index.mjs';
27
+ import '../../../gct-form/editor/gct-form-model-select/index.mjs';
28
+ import '../../../gct-form/editor/gct-form-multiple-choice/index.mjs';
29
+ import '../../../gct-form/editor/gct-form-table/index.mjs';
30
+ import '../../../gct-form/editor/gct-select-form-table/index.mjs';
31
+ import '@gct-paas/core';
32
+ import '../../../gct-form/widgets/gct-form/gct-form-title-group/gct-form-title-group.css';import '../../../gct-form/widgets/gct-form/gct-form-tab-pane/gct-form-tab-pane.css';import '../../../gct-form/widgets/gct-form/gct-form-tab/gct-form-tab.css';import '../../../gct-form/widgets/gct-form/gct-form-line/gct-form-line.css';import '../../../gct-form/widgets/gct-form/gct-form-group/gct-form-group.css';import '../../../gct-form/widgets/gct-form/gct-form-collapse/gct-form-collapse.css';import '../../../gct-form/widgets/gct-form/gct-form-collapse-pane/gct-form-collapse-pane.css';import '../../../gct-form/widgets/gct-form/gct-form.css';import '../../../gct-form/widgets/gct-form/gct-form-item/gct-form-item.css';/* empty css */
33
+ /* empty css */
34
+ /* empty css */
35
+ import 'ant-design-vue';
36
+ /* empty css */
37
+ /* empty css */
38
+ /* empty css */
39
+ /* empty css */
40
+ /* empty css */
41
+ /* empty css */
42
+ import { GctTableDateProvider } from './gct-table-date.provider.mjs';
43
+ import { GctTableDate as GctTableDate$1 } from './gct-table-date.mjs';
44
+ import { widthTableEditorInstall } from '../../utils/width-install/width-install.mjs';
45
+
46
+ const GctTableDate = widthTableEditorInstall(
47
+ EditorType.DATE,
48
+ () => new GctTableDateProvider(),
49
+ GctTableDate$1
50
+ );
51
+
52
+ export { GctTableDate as default };
@@ -0,0 +1,86 @@
1
+ @charset "UTF-8";
2
+ /* stylelint-disable scss/no-global-function-names */
3
+ /* bem('block', 'element', 'modifier') => 'ibiz-block__element--modifier' */
4
+ /**
5
+ * 定义 Block 块
6
+ * @param {String} $block - Block 块名称
7
+ * @example
8
+ * @include b('button') {
9
+ * padding: 10px;
10
+ * }
11
+ */
12
+ /**
13
+ * 定义 Element 元素
14
+ * @param {String|List} $element - Element 元素名称,支持单个或多个
15
+ * @example
16
+ * @include b('button') {
17
+ * @include e('text') {
18
+ * color: #000;
19
+ * }
20
+ * }
21
+ * // 或传入多个元素
22
+ * @include b('button') {
23
+ * @include e(('text', 'icon')) {
24
+ * margin: 5px;
25
+ * }
26
+ * }
27
+ */
28
+ /**
29
+ * 定义 Modifier 修饰符
30
+ * @param {String|List} $modifier - Modifier 修饰符名称,支持单个或多个
31
+ * @example
32
+ * @include b('button') {
33
+ * @include m('primary') {
34
+ * background: blue;
35
+ * }
36
+ * }
37
+ * // 或传入多个修饰符
38
+ * @include b('button') {
39
+ * @include m(('primary', 'large')) {
40
+ * background: blue;
41
+ * font-size: 16px;
42
+ * }
43
+ * }
44
+ */
45
+ /**
46
+ * 定义状态选择器
47
+ * @param {String} $state - 状态名称
48
+ * @example
49
+ * @include b('button') {
50
+ * @include when('disabled') {
51
+ * opacity: 0.5;
52
+ * }
53
+ * }
54
+ */
55
+ /**
56
+ * 深色主题样式
57
+ * @param {String} $block - Block 块名称
58
+ * @example
59
+ * @include dark('button') {
60
+ * background: #333;
61
+ * color: #fff;
62
+ * }
63
+ */
64
+ /* stylelint-disable scss/no-global-function-names */
65
+ .gct-table-span {
66
+ line-height: 22px;
67
+ display: flex;
68
+ justify-content: flex-start;
69
+ align-items: center;
70
+ }
71
+ .gct-table-span__icon {
72
+ color: var(--ant-primary-color);
73
+ margin-right: 4px;
74
+ font-size: 16px;
75
+ line-height: 1;
76
+ width: 16px;
77
+ display: inline-block;
78
+ }
79
+
80
+ .gct-table-span__text {
81
+ flex: 1;
82
+ overflow: hidden;
83
+ text-overflow: ellipsis;
84
+ white-space: nowrap;
85
+ color: #212528;
86
+ }
@@ -0,0 +1,34 @@
1
+ import { PropType } from 'vue';
2
+ import { ITableEditItemController } from '../../interface';
3
+ import { ISpanEditor } from '../../../gct-form';
4
+ export declare const GctTableSpan: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
5
+ c: {
6
+ type: PropType<ITableEditItemController>;
7
+ required: true;
8
+ };
9
+ model: {
10
+ type: PropType<ISpanEditor>;
11
+ required: true;
12
+ };
13
+ value: {
14
+ type: StringConstructor;
15
+ default: string;
16
+ };
17
+ }>, {
18
+ ns: import('@gct-paas/core').Namespace;
19
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
20
+ c: {
21
+ type: PropType<ITableEditItemController>;
22
+ required: true;
23
+ };
24
+ model: {
25
+ type: PropType<ISpanEditor>;
26
+ required: true;
27
+ };
28
+ value: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ };
32
+ }>> & Readonly<{}>, {
33
+ value: string;
34
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
@@ -0,0 +1,40 @@
1
+ import { defineComponent, createVNode } from 'vue';
2
+ import { useNamespace } from '@gct-paas/core';
3
+ import './gct-table-span.css';/* empty css */
4
+
5
+ const GctTableSpan = /* @__PURE__ */ defineComponent({
6
+ name: 'GctTableSpan',
7
+ props: {
8
+ c: {
9
+ type: Object,
10
+ required: true
11
+ },
12
+ model: {
13
+ type: Object,
14
+ required: true
15
+ },
16
+ value: {
17
+ type: String,
18
+ default: ''
19
+ }
20
+ },
21
+ setup() {
22
+ const ns = useNamespace('table-span');
23
+ return {
24
+ ns
25
+ };
26
+ },
27
+ render() {
28
+ return createVNode("div", {
29
+ "class": this.ns.b()
30
+ }, [this.model.icon ? createVNode("span", {
31
+ "class": this.ns.e('icon')
32
+ }, [createVNode("i", {
33
+ "class": `iconfont ${typeof this.model.icon === 'string' ? this.model.icon : this.model.icon(this.c.row.data)}`
34
+ }, null)]) : null, createVNode("span", {
35
+ "class": this.ns.e('text')
36
+ }, [this.value])]);
37
+ }
38
+ });
39
+
40
+ export { GctTableSpan };
@@ -0,0 +1,13 @@
1
+ import { ITableEditorProvider } from '../../interface';
2
+ /**
3
+ * 纯文本展示
4
+ *
5
+ * @author zhanghanrui
6
+ * @date 2024-04-22 10:04:55
7
+ * @export
8
+ * @class GctTableSpanProvider
9
+ * @implements {ITableEditorProvider}
10
+ */
11
+ export declare class GctTableSpanProvider implements ITableEditorProvider {
12
+ component: string;
13
+ }
@@ -0,0 +1,5 @@
1
+ class GctTableSpanProvider {
2
+ component = "gct-table-span";
3
+ }
4
+
5
+ export { GctTableSpanProvider };
@@ -0,0 +1,4 @@
1
+ declare const _default: {
2
+ install(app: import('vue').App): void;
3
+ };
4
+ export default _default;
@@ -0,0 +1,52 @@
1
+ import { GctTableSpanProvider } from './gct-table-span.provider.mjs';
2
+ import { GctTableSpan as GctTableSpan$1 } from './gct-table-span.mjs';
3
+ import { widthTableEditorInstall } from '../../utils/width-install/width-install.mjs';
4
+ import { EditorType } from '../../../gct-form/constants/editor-type/editor-type.mjs';
5
+ import 'vue';
6
+ import 'qx-util';
7
+ import 'lodash-es';
8
+ import '../../../gct-form/editor/gct-form-action/index.mjs';
9
+ import '../../../gct-form/editor/gct-form-date-format-select/index.mjs';
10
+ import '../../../gct-form/editor/gct-form-length-unit/index.mjs';
11
+ import '../../../gct-form/editor/gct-form-color/index.mjs';
12
+ import '../../../gct-form/editor/gct-form-date/index.mjs';
13
+ import '../../../gct-form/editor/gct-form-formula/index.mjs';
14
+ import '../../../gct-form/editor/gct-form-check-switch/index.mjs';
15
+ import '../../../gct-form/editor/gct-form-group-select/index.mjs';
16
+ import '../../../gct-form/editor/gct-form-i18n/index.mjs';
17
+ import '../../../gct-form/editor/gct-form-icon-select/index.mjs';
18
+ import '../../../gct-form/editor/gct-form-number/index.mjs';
19
+ import '../../../gct-form/editor/gct-form-picker/index.mjs';
20
+ import '../../../gct-form/editor/gct-form-pixel-config/index.mjs';
21
+ import '../../../gct-form/editor/gct-form-select/index.mjs';
22
+ import '../../../gct-form/editor/gct-form-span/index.mjs';
23
+ import '../../../gct-form/editor/gct-form-switch/index.mjs';
24
+ import '../../../gct-form/editor/gct-form-text/index.mjs';
25
+ import '../../../gct-form/editor/gct-form-empty/index.mjs';
26
+ import '../../../gct-form/editor/gct-form-textarea/index.mjs';
27
+ import '../../../gct-form/editor/gct-form-radio/index.mjs';
28
+ import '../../../gct-form/editor/gct-form-info/index.mjs';
29
+ import '../../../gct-form/editor/gct-form-checkbox/index.mjs';
30
+ import '../../../gct-form/editor/gct-form-model-select/index.mjs';
31
+ import '../../../gct-form/editor/gct-form-multiple-choice/index.mjs';
32
+ import '../../../gct-form/editor/gct-form-table/index.mjs';
33
+ import '../../../gct-form/editor/gct-select-form-table/index.mjs';
34
+ import '@gct-paas/core';
35
+ import '../../../gct-form/widgets/gct-form/gct-form-title-group/gct-form-title-group.css';import '../../../gct-form/widgets/gct-form/gct-form-tab-pane/gct-form-tab-pane.css';import '../../../gct-form/widgets/gct-form/gct-form-tab/gct-form-tab.css';import '../../../gct-form/widgets/gct-form/gct-form-line/gct-form-line.css';import '../../../gct-form/widgets/gct-form/gct-form-group/gct-form-group.css';import '../../../gct-form/widgets/gct-form/gct-form-collapse/gct-form-collapse.css';import '../../../gct-form/widgets/gct-form/gct-form-collapse-pane/gct-form-collapse-pane.css';import '../../../gct-form/widgets/gct-form/gct-form.css';import '../../../gct-form/widgets/gct-form/gct-form-item/gct-form-item.css';/* empty css */
36
+ /* empty css */
37
+ /* empty css */
38
+ import 'ant-design-vue';
39
+ /* empty css */
40
+ /* empty css */
41
+ /* empty css */
42
+ /* empty css */
43
+ /* empty css */
44
+ /* empty css */
45
+
46
+ const GctTableSpan = widthTableEditorInstall(
47
+ EditorType.SPAN,
48
+ () => new GctTableSpanProvider(),
49
+ GctTableSpan$1
50
+ );
51
+
52
+ export { GctTableSpan as default };
@@ -0,0 +1,80 @@
1
+ @charset "UTF-8";
2
+ /* stylelint-disable scss/no-global-function-names */
3
+ /* bem('block', 'element', 'modifier') => 'ibiz-block__element--modifier' */
4
+ /**
5
+ * 定义 Block 块
6
+ * @param {String} $block - Block 块名称
7
+ * @example
8
+ * @include b('button') {
9
+ * padding: 10px;
10
+ * }
11
+ */
12
+ /**
13
+ * 定义 Element 元素
14
+ * @param {String|List} $element - Element 元素名称,支持单个或多个
15
+ * @example
16
+ * @include b('button') {
17
+ * @include e('text') {
18
+ * color: #000;
19
+ * }
20
+ * }
21
+ * // 或传入多个元素
22
+ * @include b('button') {
23
+ * @include e(('text', 'icon')) {
24
+ * margin: 5px;
25
+ * }
26
+ * }
27
+ */
28
+ /**
29
+ * 定义 Modifier 修饰符
30
+ * @param {String|List} $modifier - Modifier 修饰符名称,支持单个或多个
31
+ * @example
32
+ * @include b('button') {
33
+ * @include m('primary') {
34
+ * background: blue;
35
+ * }
36
+ * }
37
+ * // 或传入多个修饰符
38
+ * @include b('button') {
39
+ * @include m(('primary', 'large')) {
40
+ * background: blue;
41
+ * font-size: 16px;
42
+ * }
43
+ * }
44
+ */
45
+ /**
46
+ * 定义状态选择器
47
+ * @param {String} $state - 状态名称
48
+ * @example
49
+ * @include b('button') {
50
+ * @include when('disabled') {
51
+ * opacity: 0.5;
52
+ * }
53
+ * }
54
+ */
55
+ /**
56
+ * 深色主题样式
57
+ * @param {String} $block - Block 块名称
58
+ * @example
59
+ * @include dark('button') {
60
+ * background: #333;
61
+ * color: #fff;
62
+ * }
63
+ */
64
+ /* stylelint-disable scss/no-global-function-names */
65
+ .gct-table-text {
66
+ height: 26px;
67
+ padding: 0 8px;
68
+ }
69
+ .gct-table-text__info {
70
+ display: flex;
71
+ align-items: center;
72
+ border: 1px solid transparent;
73
+ }
74
+
75
+ .gct-table-text .ant-input-affix-wrapper-focused, .gct-table-text .ant-input-affix-wrapper:focus {
76
+ border-color: #3168EC;
77
+ }
78
+ .gct-table-text .ant-input-prefix, .gct-table-text .ant-input-suffix {
79
+ color: #C3C3C3;
80
+ }