@luck-design-biz/luckda 0.0.22-3 → 0.0.22-5

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 (312) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +40 -40
  3. package/es/components/Builder/index.js +1 -1
  4. package/es/components/LdGrid/index.js +4 -4
  5. package/es/components/LdGridForm/index.less +7 -7
  6. package/es/components/LdRuntimeCom/index.js +42 -0
  7. package/es/components/LdTree/index.less +36 -36
  8. package/es/helper/action.js +6 -6
  9. package/es/helper/form.js +14 -14
  10. package/es/helper/index.less +7 -7
  11. package/es/index.js +1 -0
  12. package/es/lowcode/constants/api-url.js +3 -0
  13. package/es/lowcode/constants/event-topics.js +31 -0
  14. package/es/lowcode/constants/index.js +12 -0
  15. package/es/lowcode/engine/factory/DataFactory.js +1 -0
  16. package/es/lowcode/engine/factory/panel-item-factory/DynamicStrategy.js +60 -0
  17. package/es/lowcode/engine/factory/panel-item-factory/SegmentedStrategy.js +32 -0
  18. package/es/lowcode/engine/factory/panel-item-factory/SelectStrategy.js +32 -0
  19. package/es/lowcode/engine/factory/panel-item-factory/Strategy.js +21 -0
  20. package/es/lowcode/engine/factory/panel-item-factory/StringStrategy.js +32 -0
  21. package/es/lowcode/engine/factory/panel-item-factory/SwitchStrategy.js +32 -0
  22. package/es/lowcode/engine/factory/panel-item-factory/index.js +40 -0
  23. package/es/lowcode/engine/meta/box.props.default.json +10 -0
  24. package/es/lowcode/engine/meta/box.props.json +40 -0
  25. package/es/lowcode/engine/meta/button.props.default.json +16 -0
  26. package/es/lowcode/engine/meta/button.props.json +117 -0
  27. package/es/lowcode/engine/meta/cardlist.props.default.json +18 -0
  28. package/es/lowcode/engine/meta/cardlist.props.json +144 -0
  29. package/es/lowcode/engine/meta/components-list.json +128 -0
  30. package/es/lowcode/engine/meta/dialog.props.default.json +19 -0
  31. package/es/lowcode/engine/meta/dialog.props.json +121 -0
  32. package/es/lowcode/engine/meta/drawer.props.default.json +18 -0
  33. package/es/lowcode/engine/meta/drawer.props.json +144 -0
  34. package/es/lowcode/engine/meta/form.props.default.json +13 -0
  35. package/es/lowcode/engine/meta/form.props.json +117 -0
  36. package/es/lowcode/engine/meta/iframe.props.default.json +11 -0
  37. package/es/lowcode/engine/meta/iframe.props.json +32 -0
  38. package/es/lowcode/engine/meta/image.props.default.json +16 -0
  39. package/es/lowcode/engine/meta/image.props.json +114 -0
  40. package/es/lowcode/engine/meta/imex.props.default.json +12 -0
  41. package/es/lowcode/engine/meta/imex.props.json +82 -0
  42. package/es/lowcode/engine/meta/js-editor/auto-complete.json +29 -0
  43. package/es/lowcode/engine/meta/jsx.props.default.json +10 -0
  44. package/es/lowcode/engine/meta/jsx.props.json +25 -0
  45. package/es/lowcode/engine/meta/layout.props.default.json +13 -0
  46. package/es/lowcode/engine/meta/layout.props.json +108 -0
  47. package/es/lowcode/engine/meta/link.props.default.json +14 -0
  48. package/es/lowcode/engine/meta/link.props.json +112 -0
  49. package/es/lowcode/engine/meta/section.props.default.json +17 -0
  50. package/es/lowcode/engine/meta/section.props.json +108 -0
  51. package/es/lowcode/engine/meta/split.props.default.json +13 -0
  52. package/es/lowcode/engine/meta/split.props.json +72 -0
  53. package/es/lowcode/engine/meta/table.props.default.json +18 -0
  54. package/es/lowcode/engine/meta/table.props.json +162 -0
  55. package/es/lowcode/engine/meta/tabs.props.default.json +18 -0
  56. package/es/lowcode/engine/meta/tabs.props.json +141 -0
  57. package/es/lowcode/engine/meta/text.props.default.json +12 -0
  58. package/es/lowcode/engine/meta/text.props.json +66 -0
  59. package/es/lowcode/engine/meta/tree.props.default.json +17 -0
  60. package/es/lowcode/engine/meta/tree.props.json +157 -0
  61. package/es/lowcode/engine/provider/ContextProvider.js +165 -0
  62. package/es/lowcode/engine/provider/EventBusProvider.js +120 -0
  63. package/es/lowcode/engine/tools/dataProcess.js +263 -0
  64. package/es/lowcode/engine/tools/helper.js +4 -0
  65. package/es/lowcode/engine/tools/lcid.js +16 -0
  66. package/es/lowcode/index.js +3 -0
  67. package/es/lowcode/painter/Components.js +104 -0
  68. package/es/lowcode/painter/Design.js +210 -0
  69. package/es/lowcode/painter/I18n.js +202 -0
  70. package/es/lowcode/painter/Outline.js +208 -0
  71. package/es/lowcode/painter/Panel.js +195 -0
  72. package/es/lowcode/painter/Ribbon.js +142 -0
  73. package/es/lowcode/painter/components/PanelItem.js +35 -0
  74. package/es/lowcode/painter/components/PopConfirm.js +20 -0
  75. package/es/lowcode/painter/components/PopForm.js +71 -0
  76. package/es/lowcode/painter/components/RuleInput.js +105 -0
  77. package/es/lowcode/painter/components/SortBox.js +92 -0
  78. package/es/lowcode/painter/components/TabEditor.js +88 -0
  79. package/es/lowcode/painter/components/code-editor/BaseEditor.js +49 -0
  80. package/es/lowcode/painter/components/code-editor/JSEditor.js +77 -0
  81. package/es/lowcode/painter/components/code-editor/index.js +2 -0
  82. package/es/lowcode/painter/index.js +45 -0
  83. package/es/lowcode/painter/panel-section/Icon.js +48 -0
  84. package/es/lowcode/painter/panel-section/IconSelector.js +139 -0
  85. package/es/lowcode/painter/panel-section/LayoutRatio.js +140 -0
  86. package/es/lowcode/painter/panel-section/TabItems.js +238 -0
  87. package/es/lowcode/painter/services/I18n.js +85 -0
  88. package/es/lowcode/painter/style/components.less +90 -0
  89. package/es/lowcode/painter/style/design.less +82 -0
  90. package/es/lowcode/painter/style/icon-selector.less +22 -0
  91. package/es/lowcode/painter/style/icon.less +11 -0
  92. package/es/lowcode/painter/style/index.less +6 -0
  93. package/es/lowcode/painter/style/layout-ratio.less +51 -0
  94. package/es/lowcode/painter/style/outline.less +28 -0
  95. package/es/lowcode/painter/style/panel-item.less +22 -0
  96. package/es/lowcode/painter/style/panel.less +119 -0
  97. package/es/lowcode/painter/style/pop-confirm.less +10 -0
  98. package/es/lowcode/painter/style/pop-form.less +20 -0
  99. package/es/lowcode/painter/style/radio.less +24 -0
  100. package/es/lowcode/painter/style/ribbon.less +5 -0
  101. package/es/lowcode/painter/style/rule-input.less +13 -0
  102. package/es/lowcode/painter/style/tabeditor.less +90 -0
  103. package/es/lowcode/painter/style/tabitems.less +90 -0
  104. package/es/lowcode/view/Canvas.js +135 -0
  105. package/es/lowcode/view/Loading.js +23 -0
  106. package/es/lowcode/view/Page.js +251 -0
  107. package/es/lowcode/view/index.js +18 -0
  108. package/es/lowcode/view/lc-components/Box/index.js +24 -0
  109. package/es/lowcode/view/lc-components/Box/meta.json +40 -0
  110. package/es/lowcode/view/lc-components/Button/index.js +37 -0
  111. package/es/lowcode/view/lc-components/Button/meta.json +117 -0
  112. package/es/lowcode/view/lc-components/CardList/index.js +20 -0
  113. package/es/lowcode/view/lc-components/CardList/meta.json +144 -0
  114. package/es/lowcode/view/lc-components/Dialog/index.js +61 -0
  115. package/es/lowcode/view/lc-components/Dialog/index.less +3 -0
  116. package/es/lowcode/view/lc-components/Dialog/meta.json +121 -0
  117. package/es/lowcode/view/lc-components/Drawer/index.js +62 -0
  118. package/es/lowcode/view/lc-components/Drawer/meta.json +144 -0
  119. package/es/lowcode/view/lc-components/Drawer/style.less +7 -0
  120. package/es/lowcode/view/lc-components/Form/index.js +20 -0
  121. package/es/lowcode/view/lc-components/Form/meta.json +117 -0
  122. package/es/lowcode/view/lc-components/Iframe/index.js +20 -0
  123. package/es/lowcode/view/lc-components/Iframe/meta.json +32 -0
  124. package/es/lowcode/view/lc-components/ImEx/index.js +20 -0
  125. package/es/lowcode/view/lc-components/ImEx/meta.json +82 -0
  126. package/es/lowcode/view/lc-components/Image/index.js +20 -0
  127. package/es/lowcode/view/lc-components/Image/meta.json +114 -0
  128. package/es/lowcode/view/lc-components/JSX/index.js +20 -0
  129. package/es/lowcode/view/lc-components/JSX/meta.json +25 -0
  130. package/es/lowcode/view/lc-components/Layout/index.js +98 -0
  131. package/es/lowcode/view/lc-components/Layout/index.less +9 -0
  132. package/es/lowcode/view/lc-components/Layout/meta.json +108 -0
  133. package/es/lowcode/view/lc-components/Link/index.js +20 -0
  134. package/es/lowcode/view/lc-components/Link/meta.json +112 -0
  135. package/es/lowcode/view/lc-components/Section/index.js +34 -0
  136. package/es/lowcode/view/lc-components/Section/meta.json +108 -0
  137. package/es/lowcode/view/lc-components/Split/index.js +21 -0
  138. package/es/lowcode/view/lc-components/Split/meta.json +72 -0
  139. package/es/lowcode/view/lc-components/Table/index.js +23 -0
  140. package/es/lowcode/view/lc-components/Table/meta.json +162 -0
  141. package/es/lowcode/view/lc-components/Tabs/index.js +21 -0
  142. package/es/lowcode/view/lc-components/Tabs/meta.json +141 -0
  143. package/es/lowcode/view/lc-components/Text/index.js +23 -0
  144. package/es/lowcode/view/lc-components/Text/meta.json +66 -0
  145. package/es/lowcode/view/lc-components/Tree/index.js +20 -0
  146. package/es/lowcode/view/lc-components/Tree/meta.json +157 -0
  147. package/es/lowcode/view/lc-components/Wrapper.js +52 -0
  148. package/es/lowcode/view/style/canvas.less +5 -0
  149. package/es/lowcode/view/style/loading.less +84 -0
  150. package/es/lowcode/view/style/page.less +5 -0
  151. package/es/upload/Form/gridForm.js +24 -6
  152. package/es/upload/Form/index.less +7 -7
  153. package/es/upload/FormItem/index.js +30 -18
  154. package/es/utils/form.js +22 -22
  155. package/es/utils/grid.js +2 -2
  156. package/lib/components/Builder/index.js +1 -1
  157. package/lib/components/LdGrid/index.js +4 -4
  158. package/lib/components/LdGridForm/index.less +7 -7
  159. package/lib/components/LdRuntimeCom/index.js +49 -0
  160. package/lib/components/LdTree/index.less +36 -36
  161. package/lib/helper/action.js +6 -6
  162. package/lib/helper/form.js +14 -14
  163. package/lib/helper/index.less +7 -7
  164. package/lib/index.js +9 -1
  165. package/lib/lowcode/constants/api-url.js +9 -0
  166. package/lib/lowcode/constants/event-topics.js +37 -0
  167. package/lib/lowcode/constants/index.js +18 -0
  168. package/lib/lowcode/engine/factory/DataFactory.js +3 -0
  169. package/lib/lowcode/engine/factory/panel-item-factory/DynamicStrategy.js +73 -0
  170. package/lib/lowcode/engine/factory/panel-item-factory/SegmentedStrategy.js +38 -0
  171. package/lib/lowcode/engine/factory/panel-item-factory/SelectStrategy.js +38 -0
  172. package/lib/lowcode/engine/factory/panel-item-factory/Strategy.js +27 -0
  173. package/lib/lowcode/engine/factory/panel-item-factory/StringStrategy.js +38 -0
  174. package/lib/lowcode/engine/factory/panel-item-factory/SwitchStrategy.js +38 -0
  175. package/lib/lowcode/engine/factory/panel-item-factory/index.js +46 -0
  176. package/lib/lowcode/engine/meta/box.props.default.json +10 -0
  177. package/lib/lowcode/engine/meta/box.props.json +40 -0
  178. package/lib/lowcode/engine/meta/button.props.default.json +16 -0
  179. package/lib/lowcode/engine/meta/button.props.json +117 -0
  180. package/lib/lowcode/engine/meta/cardlist.props.default.json +18 -0
  181. package/lib/lowcode/engine/meta/cardlist.props.json +144 -0
  182. package/lib/lowcode/engine/meta/components-list.json +128 -0
  183. package/lib/lowcode/engine/meta/dialog.props.default.json +19 -0
  184. package/lib/lowcode/engine/meta/dialog.props.json +121 -0
  185. package/lib/lowcode/engine/meta/drawer.props.default.json +18 -0
  186. package/lib/lowcode/engine/meta/drawer.props.json +144 -0
  187. package/lib/lowcode/engine/meta/form.props.default.json +13 -0
  188. package/lib/lowcode/engine/meta/form.props.json +117 -0
  189. package/lib/lowcode/engine/meta/iframe.props.default.json +11 -0
  190. package/lib/lowcode/engine/meta/iframe.props.json +32 -0
  191. package/lib/lowcode/engine/meta/image.props.default.json +16 -0
  192. package/lib/lowcode/engine/meta/image.props.json +114 -0
  193. package/lib/lowcode/engine/meta/imex.props.default.json +12 -0
  194. package/lib/lowcode/engine/meta/imex.props.json +82 -0
  195. package/lib/lowcode/engine/meta/js-editor/auto-complete.json +29 -0
  196. package/lib/lowcode/engine/meta/jsx.props.default.json +10 -0
  197. package/lib/lowcode/engine/meta/jsx.props.json +25 -0
  198. package/lib/lowcode/engine/meta/layout.props.default.json +13 -0
  199. package/lib/lowcode/engine/meta/layout.props.json +108 -0
  200. package/lib/lowcode/engine/meta/link.props.default.json +14 -0
  201. package/lib/lowcode/engine/meta/link.props.json +112 -0
  202. package/lib/lowcode/engine/meta/section.props.default.json +17 -0
  203. package/lib/lowcode/engine/meta/section.props.json +108 -0
  204. package/lib/lowcode/engine/meta/split.props.default.json +13 -0
  205. package/lib/lowcode/engine/meta/split.props.json +72 -0
  206. package/lib/lowcode/engine/meta/table.props.default.json +18 -0
  207. package/lib/lowcode/engine/meta/table.props.json +162 -0
  208. package/lib/lowcode/engine/meta/tabs.props.default.json +18 -0
  209. package/lib/lowcode/engine/meta/tabs.props.json +141 -0
  210. package/lib/lowcode/engine/meta/text.props.default.json +12 -0
  211. package/lib/lowcode/engine/meta/text.props.json +66 -0
  212. package/lib/lowcode/engine/meta/tree.props.default.json +17 -0
  213. package/lib/lowcode/engine/meta/tree.props.json +157 -0
  214. package/lib/lowcode/engine/provider/ContextProvider.js +173 -0
  215. package/lib/lowcode/engine/provider/EventBusProvider.js +128 -0
  216. package/lib/lowcode/engine/tools/dataProcess.js +277 -0
  217. package/lib/lowcode/engine/tools/helper.js +11 -0
  218. package/lib/lowcode/engine/tools/lcid.js +22 -0
  219. package/lib/lowcode/index.js +20 -0
  220. package/lib/lowcode/painter/Components.js +112 -0
  221. package/lib/lowcode/painter/Design.js +218 -0
  222. package/lib/lowcode/painter/I18n.js +209 -0
  223. package/lib/lowcode/painter/Outline.js +216 -0
  224. package/lib/lowcode/painter/Panel.js +203 -0
  225. package/lib/lowcode/painter/Ribbon.js +150 -0
  226. package/lib/lowcode/painter/components/PanelItem.js +41 -0
  227. package/lib/lowcode/painter/components/PopConfirm.js +26 -0
  228. package/lib/lowcode/painter/components/PopForm.js +77 -0
  229. package/lib/lowcode/painter/components/RuleInput.js +112 -0
  230. package/lib/lowcode/painter/components/SortBox.js +99 -0
  231. package/lib/lowcode/painter/components/TabEditor.js +94 -0
  232. package/lib/lowcode/painter/components/code-editor/BaseEditor.js +57 -0
  233. package/lib/lowcode/painter/components/code-editor/JSEditor.js +88 -0
  234. package/lib/lowcode/painter/components/code-editor/index.js +20 -0
  235. package/lib/lowcode/painter/index.js +54 -0
  236. package/lib/lowcode/painter/panel-section/Icon.js +54 -0
  237. package/lib/lowcode/painter/panel-section/IconSelector.js +146 -0
  238. package/lib/lowcode/painter/panel-section/LayoutRatio.js +148 -0
  239. package/lib/lowcode/painter/panel-section/TabItems.js +246 -0
  240. package/lib/lowcode/painter/services/I18n.js +95 -0
  241. package/lib/lowcode/painter/style/components.less +90 -0
  242. package/lib/lowcode/painter/style/design.less +82 -0
  243. package/lib/lowcode/painter/style/icon-selector.less +22 -0
  244. package/lib/lowcode/painter/style/icon.less +11 -0
  245. package/lib/lowcode/painter/style/index.less +6 -0
  246. package/lib/lowcode/painter/style/layout-ratio.less +51 -0
  247. package/lib/lowcode/painter/style/outline.less +28 -0
  248. package/lib/lowcode/painter/style/panel-item.less +22 -0
  249. package/lib/lowcode/painter/style/panel.less +119 -0
  250. package/lib/lowcode/painter/style/pop-confirm.less +10 -0
  251. package/lib/lowcode/painter/style/pop-form.less +20 -0
  252. package/lib/lowcode/painter/style/radio.less +24 -0
  253. package/lib/lowcode/painter/style/ribbon.less +5 -0
  254. package/lib/lowcode/painter/style/rule-input.less +13 -0
  255. package/lib/lowcode/painter/style/tabeditor.less +90 -0
  256. package/lib/lowcode/painter/style/tabitems.less +90 -0
  257. package/lib/lowcode/view/Canvas.js +150 -0
  258. package/lib/lowcode/view/Loading.js +30 -0
  259. package/lib/lowcode/view/Page.js +259 -0
  260. package/lib/lowcode/view/index.js +25 -0
  261. package/lib/lowcode/view/lc-components/Box/index.js +32 -0
  262. package/lib/lowcode/view/lc-components/Box/meta.json +40 -0
  263. package/lib/lowcode/view/lc-components/Button/index.js +45 -0
  264. package/lib/lowcode/view/lc-components/Button/meta.json +117 -0
  265. package/lib/lowcode/view/lc-components/CardList/index.js +28 -0
  266. package/lib/lowcode/view/lc-components/CardList/meta.json +144 -0
  267. package/lib/lowcode/view/lc-components/Dialog/index.js +69 -0
  268. package/lib/lowcode/view/lc-components/Dialog/index.less +3 -0
  269. package/lib/lowcode/view/lc-components/Dialog/meta.json +121 -0
  270. package/lib/lowcode/view/lc-components/Drawer/index.js +70 -0
  271. package/lib/lowcode/view/lc-components/Drawer/meta.json +144 -0
  272. package/lib/lowcode/view/lc-components/Drawer/style.less +7 -0
  273. package/lib/lowcode/view/lc-components/Form/index.js +28 -0
  274. package/lib/lowcode/view/lc-components/Form/meta.json +117 -0
  275. package/lib/lowcode/view/lc-components/Iframe/index.js +28 -0
  276. package/lib/lowcode/view/lc-components/Iframe/meta.json +32 -0
  277. package/lib/lowcode/view/lc-components/ImEx/index.js +28 -0
  278. package/lib/lowcode/view/lc-components/ImEx/meta.json +82 -0
  279. package/lib/lowcode/view/lc-components/Image/index.js +28 -0
  280. package/lib/lowcode/view/lc-components/Image/meta.json +114 -0
  281. package/lib/lowcode/view/lc-components/JSX/index.js +28 -0
  282. package/lib/lowcode/view/lc-components/JSX/meta.json +25 -0
  283. package/lib/lowcode/view/lc-components/Layout/index.js +106 -0
  284. package/lib/lowcode/view/lc-components/Layout/index.less +9 -0
  285. package/lib/lowcode/view/lc-components/Layout/meta.json +108 -0
  286. package/lib/lowcode/view/lc-components/Link/index.js +28 -0
  287. package/lib/lowcode/view/lc-components/Link/meta.json +112 -0
  288. package/lib/lowcode/view/lc-components/Section/index.js +42 -0
  289. package/lib/lowcode/view/lc-components/Section/meta.json +108 -0
  290. package/lib/lowcode/view/lc-components/Split/index.js +29 -0
  291. package/lib/lowcode/view/lc-components/Split/meta.json +72 -0
  292. package/lib/lowcode/view/lc-components/Table/index.js +31 -0
  293. package/lib/lowcode/view/lc-components/Table/meta.json +162 -0
  294. package/lib/lowcode/view/lc-components/Tabs/index.js +29 -0
  295. package/lib/lowcode/view/lc-components/Tabs/meta.json +141 -0
  296. package/lib/lowcode/view/lc-components/Text/index.js +31 -0
  297. package/lib/lowcode/view/lc-components/Text/meta.json +66 -0
  298. package/lib/lowcode/view/lc-components/Tree/index.js +28 -0
  299. package/lib/lowcode/view/lc-components/Tree/meta.json +157 -0
  300. package/lib/lowcode/view/lc-components/Wrapper.js +59 -0
  301. package/lib/lowcode/view/style/canvas.less +5 -0
  302. package/lib/lowcode/view/style/loading.less +84 -0
  303. package/lib/lowcode/view/style/page.less +5 -0
  304. package/lib/upload/Form/gridForm.js +22 -4
  305. package/lib/upload/Form/index.less +7 -7
  306. package/lib/upload/FormItem/index.js +29 -17
  307. package/lib/utils/form.js +22 -22
  308. package/lib/utils/grid.js +2 -2
  309. package/lowcode.js +1 -0
  310. package/package.json +163 -151
  311. package/upload.js +1 -1
  312. package/utils.js +1 -1
@@ -0,0 +1,82 @@
1
+ {
2
+ "component": "ImEx",
3
+ "name": "导入导出",
4
+ "desc": "支持导入导出数据的按钮组件。",
5
+ "icon": "icon-imex",
6
+ "group": "basic",
7
+ "groupName": "基础",
8
+ "order": 1,
9
+ "props": [
10
+ {
11
+ "key": "id",
12
+ "desc": "唯一标识",
13
+ "type": "string",
14
+ "disabled": true
15
+ },
16
+ {
17
+ "key": "type",
18
+ "name": "类型",
19
+ "desc": "选择导入功能或者导出功能",
20
+ "type": "radio",
21
+ "options": [
22
+ {
23
+ "label": "导入",
24
+ "value": "import"
25
+ },
26
+ {
27
+ "label": "导出",
28
+ "value": "export"
29
+ }
30
+ ],
31
+ "default": "export"
32
+ },
33
+ {
34
+ "key": "title",
35
+ "name": "标题",
36
+ "desc": "按钮上显示的文字",
37
+ "type": "string",
38
+ "default": "导入|导出"
39
+ },
40
+ {
41
+ "key": "templateId",
42
+ "name": "模板id",
43
+ "desc": "在导入导出模块配置的模板id",
44
+ "type": "string"
45
+ },
46
+ {
47
+ "key": "apiUrl",
48
+ "name": "接口地址",
49
+ "desc": "定制的导入导出接口",
50
+ "type": "string"
51
+ }
52
+ ],
53
+ "style": {},
54
+ "advance": {
55
+ "events": [
56
+ {
57
+ "key": "onMount",
58
+ "name": "组件首次渲染时",
59
+ "desc": "在组件首次渲染时,执行方法",
60
+ "func": "(params)=>{\n\t\n}"
61
+ },
62
+ {
63
+ "key": "onUnmount",
64
+ "name": "组件卸载时",
65
+ "desc": "在组件卸载时,执行方法。",
66
+ "func": "(params)=>{\n\t\n}"
67
+ },
68
+ {
69
+ "key": "beforeExe",
70
+ "name": "操作执行前",
71
+ "desc": "在导入或导出执行前,执行方法,promise反回false截断执行",
72
+ "func": "(params)=>{\n\t\n}"
73
+ },
74
+ {
75
+ "key": "afterExe",
76
+ "name": "操作执行后",
77
+ "desc": "在导入或导出执行后,执行方法",
78
+ "func": "(params)=>{\n\t\n}"
79
+ }
80
+ ]
81
+ }
82
+ }
@@ -0,0 +1,20 @@
1
+ import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
2
+ var _excluded = ["id"];
3
+ import React, { useRef } from 'react';
4
+ import { useMemoizedFn } from 'ahooks';
5
+ import Wrapper from "../Wrapper";
6
+ var LCImage = function LCImage(_ref) {
7
+ var id = _ref.id,
8
+ props = _objectWithoutProperties(_ref, _excluded);
9
+ var ref = useRef();
10
+ var getTargetDom = useMemoizedFn(function () {
11
+ return ref.current;
12
+ });
13
+ return /*#__PURE__*/React.createElement(Wrapper, {
14
+ id: id,
15
+ getTargetDom: getTargetDom
16
+ }, /*#__PURE__*/React.createElement("div", {
17
+ ref: ref
18
+ }, "LCImage"));
19
+ };
20
+ export default LCImage;
@@ -0,0 +1,114 @@
1
+ {
2
+ "component": "Image",
3
+ "name": "图片",
4
+ "icon": "icon-image",
5
+ "group": "basic",
6
+ "groupName": "基础",
7
+ "desc": "用于显示图像或照片。以便用户可以轻松地创建具有自定义图片样式和布局的界面。",
8
+ "order": 1,
9
+ "props": [
10
+ {
11
+ "key": "id",
12
+ "desc": "唯一标识",
13
+ "type": "string",
14
+ "disabled": true
15
+ },
16
+ {
17
+ "key": "src",
18
+ "name": "图片地址",
19
+ "desc": "图片地址",
20
+ "type": "_ImageUploder"
21
+ },
22
+ {
23
+ "key": "width",
24
+ "name": "宽度",
25
+ "desc": "图片宽度",
26
+ "type": "number",
27
+ "default": 350
28
+ },
29
+ {
30
+ "key": "height",
31
+ "name": "高度",
32
+ "desc": "图片高度",
33
+ "type": "number",
34
+ "default": 200
35
+ },
36
+ {
37
+ "key": "autoWidth",
38
+ "name": "宽度自适应",
39
+ "desc": "是否图片宽度自适应",
40
+ "type": "boolean",
41
+ "default": false
42
+ },
43
+ {
44
+ "key": "fit",
45
+ "name": "摆放方式",
46
+ "desc": "图片摆放方式",
47
+ "type": "select",
48
+ "options": [
49
+ {
50
+ "label": "铺满",
51
+ "value": "fill"
52
+ },
53
+ {
54
+ "label": "适合",
55
+ "value": "fit"
56
+ },
57
+ {
58
+ "label": "拉伸",
59
+ "value": "Stretch"
60
+ }
61
+ ],
62
+ "default": "fill"
63
+ },
64
+ {
65
+ "key": "roundRadios",
66
+ "name": "圆角",
67
+ "desc": "图片四周圆角大小,可设置“0 1px 2px 3px",
68
+ "type": "string",
69
+ "default": "0"
70
+ },
71
+ {
72
+ "key": "title",
73
+ "name": "标题",
74
+ "desc": "图片html原生title",
75
+ "type": "string"
76
+ },
77
+ {
78
+ "key": "alt",
79
+ "name": "替代文本",
80
+ "desc": "图片加载失败的占位文字",
81
+ "type": "string"
82
+ },
83
+ {
84
+ "key": "preview",
85
+ "name": "开启图片预览",
86
+ "desc": "是否开启点击打开图片预览",
87
+ "type": "boolean",
88
+ "default": false
89
+ }
90
+ ],
91
+ "style": {},
92
+ "advance": {
93
+ "events": [
94
+ {
95
+ "key": "onMount",
96
+ "name": "组件首次渲染时",
97
+ "desc": "在组件首次渲染时,执行方法",
98
+ "func": "(params)=>{\n\t\n}"
99
+ },
100
+ {
101
+ "key": "onUnmount",
102
+ "name": "组件卸载时",
103
+ "desc": "在组件卸载时,执行方法。",
104
+ "func": "(params)=>{\n\t\n}"
105
+ },
106
+ {
107
+ "key": "onClick",
108
+ "name": "点击事件",
109
+ "desc": "点击文本时,执行方法",
110
+ "func": "(e)=>{\n\t\n}"
111
+ }
112
+ ]
113
+ }
114
+ }
@@ -0,0 +1,20 @@
1
+ import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
2
+ var _excluded = ["id"];
3
+ import React, { useRef } from 'react';
4
+ import { useMemoizedFn } from 'ahooks';
5
+ import Wrapper from "../Wrapper";
6
+ var LCJSX = function LCJSX(_ref) {
7
+ var id = _ref.id,
8
+ props = _objectWithoutProperties(_ref, _excluded);
9
+ var ref = useRef();
10
+ var getTargetDom = useMemoizedFn(function () {
11
+ return ref.current;
12
+ });
13
+ return /*#__PURE__*/React.createElement(Wrapper, {
14
+ id: id,
15
+ getTargetDom: getTargetDom
16
+ }, /*#__PURE__*/React.createElement("div", {
17
+ ref: ref
18
+ }, "JSX"));
19
+ };
20
+ export default LCJSX;
@@ -0,0 +1,25 @@
1
+ {
2
+ "component": "JSX",
3
+ "name": "jsx代码段",
4
+ "desc": "通过编写JSX代码实现React组件的动态渲染。",
5
+ "icon": "icon-jsx",
6
+ "group": "basic",
7
+ "groupName": "基础",
8
+ "order": 1,
9
+ "props": [
10
+ {
11
+ "key": "id",
12
+ "desc": "唯一标识",
13
+ "type": "string",
14
+ "disabled": true
15
+ },
16
+ {
17
+ "key": "render",
18
+ "name": "编辑jsx代码",
19
+ "desc": "可执行的jsx代码",
20
+ "type": "_CodeEditor"
21
+ }
22
+ ],
23
+ "style": {},
24
+ "advance": {}
25
+ }
@@ -0,0 +1,98 @@
1
+ import _extends from "@babel/runtime/helpers/esm/extends";
2
+ import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
3
+ import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
4
+ var _excluded = ["id", "children", "columnRatio", "columnSpacing", "lineSpacing", "style"],
5
+ _excluded2 = ["style"];
6
+ import React, { useRef, useImperativeHandle, useEffect, cloneElement } from 'react';
7
+ import PropTypes from 'prop-types';
8
+ import { useCreation, useMemoizedFn } from 'ahooks';
9
+ import { useLDContext } from "../../../engine/provider/ContextProvider";
10
+ import Wrapper from "../Wrapper";
11
+ import styles from "./index.less";
12
+ import { add } from "../../../engine/tools/dataProcess";
13
+ import generateShortUuid from "../../../engine/tools/lcid";
14
+ import defaultMeta from "../../../engine/meta/layout.props.default.json";
15
+ var LCLayout = function LCLayout(_ref) {
16
+ var id = _ref.id,
17
+ children = _ref.children,
18
+ columnRatio = _ref.columnRatio,
19
+ columnSpacing = _ref.columnSpacing,
20
+ lineSpacing = _ref.lineSpacing,
21
+ style = _ref.style,
22
+ props = _objectWithoutProperties(_ref, _excluded);
23
+ var context = useLDContext();
24
+ var ratios = useCreation(function () {
25
+ var arr = columnRatio.split(':');
26
+ return arr.map(function (item) {
27
+ return parseInt(item, 10);
28
+ });
29
+ }, [columnRatio]);
30
+ var ref = useRef();
31
+ var apiRef = useRef();
32
+ var getTargetDom = useMemoizedFn(function () {
33
+ return ref.current;
34
+ });
35
+ useImperativeHandle(apiRef, function () {
36
+ return {};
37
+ });
38
+ useEffect(function () {
39
+ if (children !== null && children !== void 0 && children.length) return;
40
+ context.$subscriber(context.topics.COMPONENT_APPEND).once(function (_ref2) {
41
+ var compId = _ref2.id,
42
+ pageData = _ref2.pageData;
43
+ if (compId !== id) return;
44
+ var _require = require("../../../engine/meta/box.props.default.json"),
45
+ style = _require.style,
46
+ json = _objectWithoutProperties(_require, _excluded2);
47
+ ratios.forEach(function (itemRatio) {
48
+ var _id = "box_".concat(generateShortUuid());
49
+ add(pageData, compId, _id, _objectSpread(_objectSpread({}, json), {}, {
50
+ className: styles['lc-component-layout-item'],
51
+ style: _objectSpread(_objectSpread({}, style), {}, {
52
+ gridColumn: 'span ' + itemRatio
53
+ })
54
+ }));
55
+ });
56
+ context._setPageData(pageData);
57
+ }).watch();
58
+ }, []);
59
+ return /*#__PURE__*/React.createElement(Wrapper, {
60
+ id: id,
61
+ getTargetDom: getTargetDom,
62
+ api: apiRef
63
+ }, /*#__PURE__*/React.createElement("div", _extends({
64
+ ref: ref,
65
+ className: styles['lc-component-layout'],
66
+ style: _objectSpread(_objectSpread({}, style), {}, {
67
+ gap: "".concat(columnSpacing, "px ").concat(lineSpacing, "px")
68
+ })
69
+ }, props), children));
70
+ };
71
+ LCLayout.propTypes = {
72
+ /**
73
+ * @name 唯一标识
74
+ * @type string
75
+ * @disabled true
76
+ */
77
+ id: PropTypes.string.isRequired,
78
+ /**
79
+ * @name 列比例
80
+ * @type string
81
+ * @default 12:3:9
82
+ */
83
+ columnRatio: PropTypes.string,
84
+ /**
85
+ * @name 列间距
86
+ * @type number
87
+ * @default 16
88
+ */
89
+ columnSpacing: PropTypes.number,
90
+ /**
91
+ * @name 行间距
92
+ * @type number
93
+ * @default 8
94
+ */
95
+ lineSpacing: PropTypes.number
96
+ };
97
+ LCLayout.defaultProps = _objectSpread({}, defaultMeta);
98
+ export default LCLayout;
@@ -0,0 +1,9 @@
1
+ .lc-component-layout {
2
+ width: 100%;
3
+ display: grid;
4
+ grid-template-columns: repeat(12, minmax(0, 1fr));
5
+
6
+ &-item {
7
+ background-color: aquamarine;
8
+ }
9
+ }
@@ -0,0 +1,108 @@
1
+ {
2
+ "component": "Layout",
3
+ "name": "布局容器",
4
+ "icon": "icon-layout",
5
+ "group": "container",
6
+ "groupName": "布局",
7
+ "desc": "布局容器是一种提供列比例、列间距、行间距和样式等配置选项的元素,用于创建灵活的页面布局。它使用户能够轻松组织和排列组件,并实现各种复杂的布局需求。",
8
+ "order": 1,
9
+ "props": [
10
+ {
11
+ "key": "id",
12
+ "name": "唯一标识",
13
+ "desc": "组件的唯一标识符,不能够与其它组件重名,不能够为空,且只能够使用以字母开头的,下划线以及数字的组合",
14
+ "type": "string",
15
+ "disabled": true
16
+ },
17
+ {
18
+ "key": "columnRatio",
19
+ "name": "#列比例",
20
+ "desc": "表示列布局所占比例的比率",
21
+ "type": "_LayoutRatio",
22
+ "default": "12:3:9"
23
+ },
24
+ {
25
+ "key": "columnSpacing",
26
+ "name": "列间距",
27
+ "desc": "表示列之间的间距或距离",
28
+ "type": "select",
29
+ "options": [
30
+ {
31
+ "label": 24,
32
+ "value": 24
33
+ },
34
+ {
35
+ "label": 20,
36
+ "value": 20
37
+ },
38
+ {
39
+ "label": 16,
40
+ "value": 16
41
+ },
42
+ {
43
+ "label": 12,
44
+ "value": 12
45
+ },
46
+ {
47
+ "label": 8,
48
+ "value": 8
49
+ },
50
+ {
51
+ "label": 0,
52
+ "value": 0
53
+ }
54
+ ],
55
+ "default": 16
56
+ },
57
+ {
58
+ "key": "lineSpacing",
59
+ "name": "行间距",
60
+ "desc": "表示行之间的间距或距离",
61
+ "type": "select",
62
+ "options": [
63
+ {
64
+ "label": 24,
65
+ "value": 24
66
+ },
67
+ {
68
+ "label": 20,
69
+ "value": 20
70
+ },
71
+ {
72
+ "label": 16,
73
+ "value": 16
74
+ },
75
+ {
76
+ "label": 12,
77
+ "value": 12
78
+ },
79
+ {
80
+ "label": 8,
81
+ "value": 8
82
+ },
83
+ {
84
+ "label": 0,
85
+ "value": 0
86
+ }
87
+ ],
88
+ "default": 16
89
+ }
90
+ ],
91
+ "style": {},
92
+ "advance": {
93
+ "events": [
94
+ {
95
+ "key": "onMount",
96
+ "name": "组件首次渲染时",
97
+ "desc": "在组件首次渲染时,执行方法",
98
+ "func": "(params)=>{\n\t\n}"
99
+ },
100
+ {
101
+ "key": "onUnmount",
102
+ "name": "组件卸载时",
103
+ "desc": "在组件卸载时,执行方法。",
104
+ "func": "(params)=>{\n\t\n}"
105
+ }
106
+ ]
107
+ }
108
+ }
@@ -0,0 +1,20 @@
1
+ import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
2
+ var _excluded = ["id"];
3
+ import React, { useRef } from 'react';
4
+ import { useMemoizedFn } from 'ahooks';
5
+ import Wrapper from "../Wrapper";
6
+ var LCLink = function LCLink(_ref) {
7
+ var id = _ref.id,
8
+ props = _objectWithoutProperties(_ref, _excluded);
9
+ var ref = useRef();
10
+ var getTargetDom = useMemoizedFn(function () {
11
+ return ref.current;
12
+ });
13
+ return /*#__PURE__*/React.createElement(Wrapper, {
14
+ id: id,
15
+ getTargetDom: getTargetDom
16
+ }, /*#__PURE__*/React.createElement("div", {
17
+ ref: ref
18
+ }, "LCLink"));
19
+ };
20
+ export default LCLink;
@@ -0,0 +1,112 @@
1
+ {
2
+ "component": "Link",
3
+ "name": "超链",
4
+ "icon": "icon-link",
5
+ "group": "basic",
6
+ "groupName": "基础",
7
+ "desc": "用于创建可点击的链接,以便用户可以跳转到其他页面或访问相关内容。超链组件提供了简单而直观的方式来创建和管理链接。",
8
+ "order": 1,
9
+ "props": [
10
+ {
11
+ "key": "id",
12
+ "desc": "唯一标识",
13
+ "type": "string",
14
+ "disabled": true
15
+ },
16
+ {
17
+ "key": "content",
18
+ "name": "内容",
19
+ "desc": "超链接的展示内容",
20
+ "type": "string"
21
+ },
22
+ {
23
+ "key": "textOverflow",
24
+ "name": "单行截断",
25
+ "desc": "文字超过一行,使甲...显示;开后此项后,同时会显示html标签的title",
26
+ "type": "boolean",
27
+ "default": false
28
+ },
29
+ {
30
+ "key": "type",
31
+ "name": "链接类型",
32
+ "desc": "链接打开的内容类型选择",
33
+ "type": "radio",
34
+ "options": [
35
+ {
36
+ "label": "内部页面",
37
+ "value": "page"
38
+ },
39
+ {
40
+ "label": "外部链接",
41
+ "value": "url"
42
+ }
43
+ ],
44
+ "default": "page"
45
+ },
46
+ {
47
+ "key": "url",
48
+ "name": "链接地址",
49
+ "desc": "选择链接类型为url时配置",
50
+ "type": "string"
51
+ },
52
+ {
53
+ "key": "isLayer",
54
+ "name": "弹窗打开",
55
+ "desc": "是否以弹窗形式打开",
56
+ "type": "boolean",
57
+ "default": false
58
+ },
59
+ {
60
+ "key": "params",
61
+ "name": "携带参数",
62
+ "desc": "超链的携带参数",
63
+ "type": "string"
64
+ },
65
+ {
66
+ "key": "serials",
67
+ "name": "资源串",
68
+ "desc": "挂接模块资源串",
69
+ "type": "string"
70
+ },
71
+ {
72
+ "key": "effect",
73
+ "name": "资源串效果",
74
+ "desc": "当资源串条件生效时按钮的效果",
75
+ "type": "radio",
76
+ "options": [
77
+ {
78
+ "label": "禁用",
79
+ "value": "disable"
80
+ },
81
+ {
82
+ "label": "隐藏",
83
+ "value": "hidden"
84
+ }
85
+ ],
86
+ "default": "hidden"
87
+ }
88
+ ],
89
+ "style": {},
90
+ "advance": {
91
+ "events": [
92
+ {
93
+ "key": "onMount",
94
+ "name": "组件首次渲染时",
95
+ "desc": "在组件首次渲染时,执行方法",
96
+ "func": "(params)=>{\n\t\n}"
97
+ },
98
+ {
99
+ "key": "onUnmount",
100
+ "name": "组件卸载时",
101
+ "desc": "在组件卸载时,执行方法。",
102
+ "func": "(params)=>{\n\t\n}"
103
+ },
104
+ {
105
+ "key": "beforeClick",
106
+ "name": "点击事件",
107
+ "desc": "点击文本时,执行方法",
108
+ "func": "(e,parmas)=>{\n\t\n}"
109
+ }
110
+ ]
111
+ }
112
+ }
@@ -0,0 +1,34 @@
1
+ import _extends from "@babel/runtime/helpers/esm/extends";
2
+ import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
3
+ var _excluded = ["id", "children"];
4
+ import React, { useRef, useImperativeHandle } from 'react';
5
+ import { useMemoizedFn } from 'ahooks';
6
+ import Wrapper from "../Wrapper";
7
+ import { Box } from 'luck-design';
8
+ var LCSection = function LCSection(_ref) {
9
+ var id = _ref.id,
10
+ children = _ref.children,
11
+ props = _objectWithoutProperties(_ref, _excluded);
12
+ var ref = useRef();
13
+ var apiRef = useRef();
14
+ var getTargetDom = useMemoizedFn(function () {
15
+ return ref.current;
16
+ });
17
+ useImperativeHandle(apiRef, function () {
18
+ return {};
19
+ });
20
+ return /*#__PURE__*/React.createElement(Wrapper, {
21
+ id: id,
22
+ getTargetDom: getTargetDom,
23
+ api: apiRef
24
+ }, /*#__PURE__*/React.createElement(Box, _extends({
25
+ ref: ref,
26
+ width: 240,
27
+ height: "auto",
28
+ direction: "column",
29
+ style: {
30
+ backgroundColor: 'yellow'
31
+ }
32
+ }, props), "LCSection", children));
33
+ };
34
+ export default LCSection;