ngx-axis-appforge 0.0.0

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 (447) hide show
  1. package/.editorconfig +17 -0
  2. package/README.md +111 -0
  3. package/angular.json +40 -0
  4. package/axis-components/badge/badge.css +3 -0
  5. package/axis-components/badge/badge.html +20 -0
  6. package/axis-components/badge/badge.options.ts +23 -0
  7. package/axis-components/badge/badge.ts +17 -0
  8. package/axis-components/badge/design/config.ts +52 -0
  9. package/axis-components/badge/design/ng-package.json +5 -0
  10. package/axis-components/badge/design/setting/setting.css +0 -0
  11. package/axis-components/badge/design/setting/setting.html +181 -0
  12. package/axis-components/badge/design/setting/setting.ts +126 -0
  13. package/axis-components/badge/ng-package.json +5 -0
  14. package/axis-components/button/button.css +3 -0
  15. package/axis-components/button/button.html +13 -0
  16. package/axis-components/button/button.options.ts +17 -0
  17. package/axis-components/button/button.ts +56 -0
  18. package/axis-components/button/design/config.ts +30 -0
  19. package/axis-components/button/design/ng-package.json +5 -0
  20. package/axis-components/button/design/setting/setting.css +0 -0
  21. package/axis-components/button/design/setting/setting.html +151 -0
  22. package/axis-components/button/design/setting/setting.ts +76 -0
  23. package/axis-components/button/ng-package.json +5 -0
  24. package/axis-components/cmp-map.ts +52 -0
  25. package/axis-components/cmplib.ts +9 -0
  26. package/axis-components/desc/desc.css +8 -0
  27. package/axis-components/desc/desc.html +19 -0
  28. package/axis-components/desc/desc.options.ts +24 -0
  29. package/axis-components/desc/desc.ts +29 -0
  30. package/axis-components/desc/design/config.ts +113 -0
  31. package/axis-components/desc/design/desc-item-setting/desc-item-setting.css +0 -0
  32. package/axis-components/desc/design/desc-item-setting/desc-item-setting.html +47 -0
  33. package/axis-components/desc/design/desc-item-setting/desc-item-setting.ts +40 -0
  34. package/axis-components/desc/design/desc-items-menu/desc-items-menu.css +0 -0
  35. package/axis-components/desc/design/desc-items-menu/desc-items-menu.html +9 -0
  36. package/axis-components/desc/design/desc-items-menu/desc-items-menu.ts +23 -0
  37. package/axis-components/desc/design/desc-setting/desc-setting.css +0 -0
  38. package/axis-components/desc/design/desc-setting/desc-setting.html +76 -0
  39. package/axis-components/desc/design/desc-setting/desc-setting.ts +51 -0
  40. package/axis-components/desc/design/ng-package.json +5 -0
  41. package/axis-components/desc/ng-package.json +5 -0
  42. package/axis-components/design/cmplib/cmplib.css +5 -0
  43. package/axis-components/design/cmplib/cmplib.html +52 -0
  44. package/axis-components/design/cmplib/cmplib.ts +96 -0
  45. package/axis-components/design/design/config.ts +29 -0
  46. package/axis-components/design/design/ng-package.json +5 -0
  47. package/axis-components/design/design/setting/setting.css +0 -0
  48. package/axis-components/design/design/setting/setting.html +33 -0
  49. package/axis-components/design/design/setting/setting.ts +33 -0
  50. package/axis-components/design/design.css +15 -0
  51. package/axis-components/design/design.html +51 -0
  52. package/axis-components/design/design.options.ts +9 -0
  53. package/axis-components/design/design.ts +509 -0
  54. package/axis-components/design/ng-package.json +5 -0
  55. package/axis-components/design/preview/drag.service.ts +148 -0
  56. package/axis-components/design/preview/drop-handler.ts +56 -0
  57. package/axis-components/design/preview/preview.css +3 -0
  58. package/axis-components/design/preview/preview.html +1 -0
  59. package/axis-components/design/preview/preview.ts +250 -0
  60. package/axis-components/design/preview/select.service.ts +140 -0
  61. package/axis-components/design/shortcut-key.ts +160 -0
  62. package/axis-components/design/toolbar/toolbar.css +24 -0
  63. package/axis-components/design/toolbar/toolbar.html +96 -0
  64. package/axis-components/design/toolbar/toolbar.ts +65 -0
  65. package/axis-components/design/tree/drag-drop.ts +125 -0
  66. package/axis-components/design/tree/tree.css +30 -0
  67. package/axis-components/design/tree/tree.html +49 -0
  68. package/axis-components/design/tree/tree.ts +292 -0
  69. package/axis-components/dynamic-container/design/config.ts +30 -0
  70. package/axis-components/dynamic-container/design/ng-package.json +5 -0
  71. package/axis-components/dynamic-container/design/setting/setting.css +0 -0
  72. package/axis-components/dynamic-container/design/setting/setting.html +20 -0
  73. package/axis-components/dynamic-container/design/setting/setting.ts +30 -0
  74. package/axis-components/dynamic-container/dynamic-container.css +3 -0
  75. package/axis-components/dynamic-container/dynamic-container.html +2 -0
  76. package/axis-components/dynamic-container/dynamic-container.options.ts +6 -0
  77. package/axis-components/dynamic-container/dynamic-container.ts +17 -0
  78. package/axis-components/dynamic-container/ng-package.json +5 -0
  79. package/axis-components/editor/editor.css +47 -0
  80. package/axis-components/editor/editor.html +10 -0
  81. package/axis-components/editor/editor.options.ts +10 -0
  82. package/axis-components/editor/editor.ts +86 -0
  83. package/axis-components/editor/ng-package.json +5 -0
  84. package/axis-components/examples/examples/badge.ts +17 -0
  85. package/axis-components/examples/examples/button.ts +38 -0
  86. package/axis-components/examples/examples/desc.ts +31 -0
  87. package/axis-components/examples/examples/design.ts +15 -0
  88. package/axis-components/examples/examples/dynamic-container.ts +21 -0
  89. package/axis-components/examples/examples/flex.ts +18 -0
  90. package/axis-components/examples/examples/form-item.ts +39 -0
  91. package/axis-components/examples/examples/form.ts +315 -0
  92. package/axis-components/examples/examples/icon.ts +16 -0
  93. package/axis-components/examples/examples/image.ts +15 -0
  94. package/axis-components/examples/examples/input-component.ts +15 -0
  95. package/axis-components/examples/examples/input-icon.ts +15 -0
  96. package/axis-components/examples/examples/input-json.ts +15 -0
  97. package/axis-components/examples/examples/input-number.ts +15 -0
  98. package/axis-components/examples/examples/input.ts +15 -0
  99. package/axis-components/examples/examples/modal.ts +15 -0
  100. package/axis-components/examples/examples/scope.ts +17 -0
  101. package/axis-components/examples/examples/single-selector.ts +25 -0
  102. package/axis-components/examples/examples/splitter.ts +36 -0
  103. package/axis-components/examples/examples/table.ts +126 -0
  104. package/axis-components/examples/examples/text.ts +15 -0
  105. package/axis-components/examples/examples/textarea.ts +15 -0
  106. package/axis-components/examples/examples/tree-selector.ts +35 -0
  107. package/axis-components/examples/examples/upload.ts +15 -0
  108. package/axis-components/examples/examples.ts +73 -0
  109. package/axis-components/flex/design/config.ts +49 -0
  110. package/axis-components/flex/design/ng-package.json +5 -0
  111. package/axis-components/flex/design/setting/setting.css +0 -0
  112. package/axis-components/flex/design/setting/setting.html +72 -0
  113. package/axis-components/flex/design/setting/setting.ts +43 -0
  114. package/axis-components/flex/flex.css +5 -0
  115. package/axis-components/flex/flex.html +6 -0
  116. package/axis-components/flex/flex.options.ts +12 -0
  117. package/axis-components/flex/flex.ts +15 -0
  118. package/axis-components/flex/ng-package.json +5 -0
  119. package/axis-components/form/design/config.ts +71 -0
  120. package/axis-components/form/design/ng-package.json +5 -0
  121. package/axis-components/form/design/setting/setting.css +0 -0
  122. package/axis-components/form/design/setting/setting.html +21 -0
  123. package/axis-components/form/design/setting/setting.ts +31 -0
  124. package/axis-components/form/form.css +3 -0
  125. package/axis-components/form/form.html +3 -0
  126. package/axis-components/form/form.options.ts +9 -0
  127. package/axis-components/form/form.ts +121 -0
  128. package/axis-components/form/ng-package.json +5 -0
  129. package/axis-components/form-item/design/config.ts +43 -0
  130. package/axis-components/form-item/design/ng-package.json +5 -0
  131. package/axis-components/form-item/design/setting/input-validator/input-validator.css +8 -0
  132. package/axis-components/form-item/design/setting/input-validator/input-validator.html +140 -0
  133. package/axis-components/form-item/design/setting/input-validator/input-validator.ts +158 -0
  134. package/axis-components/form-item/design/setting/setting.css +0 -0
  135. package/axis-components/form-item/design/setting/setting.html +39 -0
  136. package/axis-components/form-item/design/setting/setting.ts +40 -0
  137. package/axis-components/form-item/form-item.css +4 -0
  138. package/axis-components/form-item/form-item.html +16 -0
  139. package/axis-components/form-item/form-item.options.ts +12 -0
  140. package/axis-components/form-item/form-item.ts +128 -0
  141. package/axis-components/form-item/ng-package.json +5 -0
  142. package/axis-components/icon/design/config.ts +29 -0
  143. package/axis-components/icon/design/ng-package.json +5 -0
  144. package/axis-components/icon/design/setting/setting.css +0 -0
  145. package/axis-components/icon/design/setting/setting.html +67 -0
  146. package/axis-components/icon/design/setting/setting.ts +48 -0
  147. package/axis-components/icon/icon.css +0 -0
  148. package/axis-components/icon/icon.html +7 -0
  149. package/axis-components/icon/icon.options.ts +10 -0
  150. package/axis-components/icon/icon.ts +17 -0
  151. package/axis-components/icon/ng-package.json +5 -0
  152. package/axis-components/image/design/config.ts +30 -0
  153. package/axis-components/image/design/ng-package.json +5 -0
  154. package/axis-components/image/design/setting/setting.css +0 -0
  155. package/axis-components/image/design/setting/setting.html +42 -0
  156. package/axis-components/image/design/setting/setting.ts +37 -0
  157. package/axis-components/image/image.css +58 -0
  158. package/axis-components/image/image.html +14 -0
  159. package/axis-components/image/image.options.ts +8 -0
  160. package/axis-components/image/image.ts +29 -0
  161. package/axis-components/image/ng-package.json +5 -0
  162. package/axis-components/input/design/config.ts +80 -0
  163. package/axis-components/input/design/ng-package.json +5 -0
  164. package/axis-components/input/design/setting/setting.css +0 -0
  165. package/axis-components/input/design/setting/setting.html +79 -0
  166. package/axis-components/input/design/setting/setting.ts +51 -0
  167. package/axis-components/input/input.css +4 -0
  168. package/axis-components/input/input.html +32 -0
  169. package/axis-components/input/input.options.ts +14 -0
  170. package/axis-components/input/input.ts +53 -0
  171. package/axis-components/input/ng-package.json +5 -0
  172. package/axis-components/input-component/design/config.ts +30 -0
  173. package/axis-components/input-component/design/ng-package.json +5 -0
  174. package/axis-components/input-component/design/setting/setting.css +0 -0
  175. package/axis-components/input-component/design/setting/setting.html +33 -0
  176. package/axis-components/input-component/design/setting/setting.ts +33 -0
  177. package/axis-components/input-component/input-component.css +4 -0
  178. package/axis-components/input-component/input-component.html +25 -0
  179. package/axis-components/input-component/input-component.options.ts +7 -0
  180. package/axis-components/input-component/input-component.ts +50 -0
  181. package/axis-components/input-component/ng-package.json +5 -0
  182. package/axis-components/input-icon/design/config.ts +30 -0
  183. package/axis-components/input-icon/design/ng-package.json +5 -0
  184. package/axis-components/input-icon/design/setting/setting.css +0 -0
  185. package/axis-components/input-icon/design/setting/setting.html +29 -0
  186. package/axis-components/input-icon/design/setting/setting.ts +33 -0
  187. package/axis-components/input-icon/input-icon.css +4 -0
  188. package/axis-components/input-icon/input-icon.html +70 -0
  189. package/axis-components/input-icon/input-icon.options.ts +7 -0
  190. package/axis-components/input-icon/input-icon.ts +51 -0
  191. package/axis-components/input-icon/ng-package.json +5 -0
  192. package/axis-components/input-json/design/config.ts +29 -0
  193. package/axis-components/input-json/design/ng-package.json +5 -0
  194. package/axis-components/input-json/design/setting/setting.css +0 -0
  195. package/axis-components/input-json/design/setting/setting.html +7 -0
  196. package/axis-components/input-json/design/setting/setting.ts +26 -0
  197. package/axis-components/input-json/input-json.css +4 -0
  198. package/axis-components/input-json/input-json.html +19 -0
  199. package/axis-components/input-json/input-json.ts +67 -0
  200. package/axis-components/input-json/ng-package.json +5 -0
  201. package/axis-components/input-number/design/config.ts +30 -0
  202. package/axis-components/input-number/design/ng-package.json +5 -0
  203. package/axis-components/input-number/design/setting/setting.css +0 -0
  204. package/axis-components/input-number/design/setting/setting.html +118 -0
  205. package/axis-components/input-number/design/setting/setting.ts +66 -0
  206. package/axis-components/input-number/input-number.css +22 -0
  207. package/axis-components/input-number/input-number.html +11 -0
  208. package/axis-components/input-number/input-number.options.ts +17 -0
  209. package/axis-components/input-number/input-number.ts +30 -0
  210. package/axis-components/input-number/ng-package.json +5 -0
  211. package/axis-components/modal/design/config.ts +50 -0
  212. package/axis-components/modal/design/ng-package.json +5 -0
  213. package/axis-components/modal/design/set-modal-visible-handler/set-modal-visible-handler.css +0 -0
  214. package/axis-components/modal/design/set-modal-visible-handler/set-modal-visible-handler.html +15 -0
  215. package/axis-components/modal/design/set-modal-visible-handler/set-modal-visible-handler.ts +34 -0
  216. package/axis-components/modal/design/setting/setting.css +0 -0
  217. package/axis-components/modal/design/setting/setting.html +139 -0
  218. package/axis-components/modal/design/setting/setting.ts +92 -0
  219. package/axis-components/modal/modal.css +0 -0
  220. package/axis-components/modal/modal.html +7 -0
  221. package/axis-components/modal/modal.options.ts +20 -0
  222. package/axis-components/modal/modal.ts +57 -0
  223. package/axis-components/modal/ng-package.json +5 -0
  224. package/axis-components/ng-package.json +5 -0
  225. package/axis-components/scope/design/config.ts +59 -0
  226. package/axis-components/scope/design/ng-package.json +5 -0
  227. package/axis-components/scope/design/setting/datasource-editor/datasource-editor.css +28 -0
  228. package/axis-components/scope/design/setting/datasource-editor/datasource-editor.html +188 -0
  229. package/axis-components/scope/design/setting/datasource-editor/datasource-editor.ts +245 -0
  230. package/axis-components/scope/design/setting/setting.css +0 -0
  231. package/axis-components/scope/design/setting/setting.html +19 -0
  232. package/axis-components/scope/design/setting/setting.ts +30 -0
  233. package/axis-components/scope/ng-package.json +5 -0
  234. package/axis-components/scope/scope.css +6 -0
  235. package/axis-components/scope/scope.html +4 -0
  236. package/axis-components/scope/scope.options.ts +8 -0
  237. package/axis-components/scope/scope.ts +48 -0
  238. package/axis-components/single-selector/design/config.ts +30 -0
  239. package/axis-components/single-selector/design/ng-package.json +5 -0
  240. package/axis-components/single-selector/design/setting/setting.css +0 -0
  241. package/axis-components/single-selector/design/setting/setting.html +164 -0
  242. package/axis-components/single-selector/design/setting/setting.ts +80 -0
  243. package/axis-components/single-selector/ng-package.json +5 -0
  244. package/axis-components/single-selector/single-selector.css +8 -0
  245. package/axis-components/single-selector/single-selector.html +51 -0
  246. package/axis-components/single-selector/single-selector.options.ts +22 -0
  247. package/axis-components/single-selector/single-selector.ts +80 -0
  248. package/axis-components/splitter/design/config.ts +84 -0
  249. package/axis-components/splitter/design/ng-package.json +5 -0
  250. package/axis-components/splitter/design/splitter-menu/splitter-menu.css +0 -0
  251. package/axis-components/splitter/design/splitter-menu/splitter-menu.html +10 -0
  252. package/axis-components/splitter/design/splitter-menu/splitter-menu.ts +22 -0
  253. package/axis-components/splitter/design/splitter-panel-setting/splitter-panel-setting.css +0 -0
  254. package/axis-components/splitter/design/splitter-panel-setting/splitter-panel-setting.html +66 -0
  255. package/axis-components/splitter/design/splitter-panel-setting/splitter-panel-setting.ts +47 -0
  256. package/axis-components/splitter/design/splitter-setting/splitter-setting.css +0 -0
  257. package/axis-components/splitter/design/splitter-setting/splitter-setting.html +28 -0
  258. package/axis-components/splitter/design/splitter-setting/splitter-setting.ts +30 -0
  259. package/axis-components/splitter/ng-package.json +5 -0
  260. package/axis-components/splitter/splitter.css +7 -0
  261. package/axis-components/splitter/splitter.html +12 -0
  262. package/axis-components/splitter/splitter.options.ts +18 -0
  263. package/axis-components/splitter/splitter.ts +29 -0
  264. package/axis-components/table/design/config.ts +147 -0
  265. package/axis-components/table/design/ng-package.json +5 -0
  266. package/axis-components/table/design/table-field-setting/table-field-setting.css +0 -0
  267. package/axis-components/table/design/table-field-setting/table-field-setting.html +259 -0
  268. package/axis-components/table/design/table-field-setting/table-field-setting.ts +105 -0
  269. package/axis-components/table/design/table-fields-menu/table-fields-menu.css +0 -0
  270. package/axis-components/table/design/table-fields-menu/table-fields-menu.html +9 -0
  271. package/axis-components/table/design/table-fields-menu/table-fields-menu.ts +24 -0
  272. package/axis-components/table/design/table-setting/table-setting.css +0 -0
  273. package/axis-components/table/design/table-setting/table-setting.html +417 -0
  274. package/axis-components/table/design/table-setting/table-setting.ts +173 -0
  275. package/axis-components/table/expand.ts +12 -0
  276. package/axis-components/table/ng-package.json +5 -0
  277. package/axis-components/table/select.ts +66 -0
  278. package/axis-components/table/table-setter/table-setter.css +55 -0
  279. package/axis-components/table/table-setter/table-setter.html +38 -0
  280. package/axis-components/table/table-setter/table-setter.ts +121 -0
  281. package/axis-components/table/table.css +5 -0
  282. package/axis-components/table/table.html +191 -0
  283. package/axis-components/table/table.options.ts +72 -0
  284. package/axis-components/table/table.ts +204 -0
  285. package/axis-components/text/design/config.ts +30 -0
  286. package/axis-components/text/design/ng-package.json +5 -0
  287. package/axis-components/text/design/setting/setting.css +0 -0
  288. package/axis-components/text/design/setting/setting.html +84 -0
  289. package/axis-components/text/design/setting/setting.ts +54 -0
  290. package/axis-components/text/ng-package.json +5 -0
  291. package/axis-components/text/text.css +3 -0
  292. package/axis-components/text/text.html +17 -0
  293. package/axis-components/text/text.options.ts +10 -0
  294. package/axis-components/text/text.ts +54 -0
  295. package/axis-components/textarea/design/config.ts +30 -0
  296. package/axis-components/textarea/design/ng-package.json +5 -0
  297. package/axis-components/textarea/design/setting/setting.css +0 -0
  298. package/axis-components/textarea/design/setting/setting.html +76 -0
  299. package/axis-components/textarea/design/setting/setting.ts +55 -0
  300. package/axis-components/textarea/ng-package.json +5 -0
  301. package/axis-components/textarea/textarea.css +4 -0
  302. package/axis-components/textarea/textarea.html +11 -0
  303. package/axis-components/textarea/textarea.options.ts +13 -0
  304. package/axis-components/textarea/textarea.ts +49 -0
  305. package/axis-components/tree-selector/design/config.ts +55 -0
  306. package/axis-components/tree-selector/design/ng-package.json +5 -0
  307. package/axis-components/tree-selector/design/tree-selector-menu/tree-selector-menu.css +0 -0
  308. package/axis-components/tree-selector/design/tree-selector-menu/tree-selector-menu.html +9 -0
  309. package/axis-components/tree-selector/design/tree-selector-menu/tree-selector-menu.ts +26 -0
  310. package/axis-components/tree-selector/design/tree-selector-menu-setting/tree-selector-menu-setting.css +0 -0
  311. package/axis-components/tree-selector/design/tree-selector-menu-setting/tree-selector-menu-setting.html +80 -0
  312. package/axis-components/tree-selector/design/tree-selector-menu-setting/tree-selector-menu-setting.ts +58 -0
  313. package/axis-components/tree-selector/design/tree-selector-setting/tree-selector-setting.css +0 -0
  314. package/axis-components/tree-selector/design/tree-selector-setting/tree-selector-setting.html +235 -0
  315. package/axis-components/tree-selector/design/tree-selector-setting/tree-selector-setting.ts +87 -0
  316. package/axis-components/tree-selector/ng-package.json +5 -0
  317. package/axis-components/tree-selector/tree-selector.css +43 -0
  318. package/axis-components/tree-selector/tree-selector.html +65 -0
  319. package/axis-components/tree-selector/tree-selector.options.ts +50 -0
  320. package/axis-components/tree-selector/tree-selector.ts +252 -0
  321. package/axis-components/upload/design/config.ts +37 -0
  322. package/axis-components/upload/design/ng-package.json +5 -0
  323. package/axis-components/upload/design/setting/setting.css +0 -0
  324. package/axis-components/upload/design/setting/setting.html +288 -0
  325. package/axis-components/upload/design/setting/setting.ts +96 -0
  326. package/axis-components/upload/ng-package.json +5 -0
  327. package/axis-components/upload/upload.css +3 -0
  328. package/axis-components/upload/upload.html +36 -0
  329. package/axis-components/upload/upload.options.ts +29 -0
  330. package/axis-components/upload/upload.ts +130 -0
  331. package/axis-components-covers/badge.svg +1 -0
  332. package/axis-components-covers/button.svg +14 -0
  333. package/axis-components-covers/desc.svg +39 -0
  334. package/axis-components-covers/design.jpg +0 -0
  335. package/axis-components-covers/dynamic-container.svg +9 -0
  336. package/axis-components-covers/flex.svg +33 -0
  337. package/axis-components-covers/form-item.svg +22 -0
  338. package/axis-components-covers/form.svg +38 -0
  339. package/axis-components-covers/icon.svg +22 -0
  340. package/axis-components-covers/image.svg +13 -0
  341. package/axis-components-covers/input-component.svg +27 -0
  342. package/axis-components-covers/input-icon.svg +29 -0
  343. package/axis-components-covers/input-json.svg +29 -0
  344. package/axis-components-covers/input-number.svg +35 -0
  345. package/axis-components-covers/input.svg +21 -0
  346. package/axis-components-covers/modal.svg +23 -0
  347. package/axis-components-covers/scope.svg +9 -0
  348. package/axis-components-covers/single-selector.svg +20 -0
  349. package/axis-components-covers/splitter.svg +8 -0
  350. package/axis-components-covers/table.svg +27 -0
  351. package/axis-components-covers/text.svg +22 -0
  352. package/axis-components-covers/textarea.svg +9 -0
  353. package/axis-components-covers/tree-selector.svg +77 -0
  354. package/axis-components-covers/upload.svg +26 -0
  355. package/core/base/base-menu.ts +22 -0
  356. package/core/base/base.ts +143 -0
  357. package/core/base/design-builder.ts +8 -0
  358. package/core/base/funfield-base.ts +106 -0
  359. package/core/base/funfield-value-base.ts +53 -0
  360. package/core/base/value-access.ts +70 -0
  361. package/core/directives/dynamic.ts +216 -0
  362. package/core/directives/scope.ts +432 -0
  363. package/core/models/api.options.ts +5 -0
  364. package/core/models/base.options.ts +11 -0
  365. package/core/models/cmplib.ts +7 -0
  366. package/core/models/data-source.options.ts +11 -0
  367. package/core/models/data.options.ts +6 -0
  368. package/core/models/design-build.ts +26 -0
  369. package/core/models/design-config.ts +14 -0
  370. package/core/models/design-tree-node.ts +16 -0
  371. package/core/models/event-desc.ts +28 -0
  372. package/core/models/event-handler.ts +6 -0
  373. package/core/models/event.options.ts +14 -0
  374. package/core/models/examples.ts +21 -0
  375. package/core/models/form-registe.options.ts +12 -0
  376. package/core/models/fun-field.options.ts +6 -0
  377. package/core/models/initobs.ts +8 -0
  378. package/core/models/options-node.ts +149 -0
  379. package/core/models/static-data-source.options.ts +4 -0
  380. package/core/models/trigge-events.options.ts +3 -0
  381. package/core/models/value-access.options.ts +10 -0
  382. package/core/ng-package.json +5 -0
  383. package/core/pipes/how-long.pipe.ts +69 -0
  384. package/core/public-api.ts +39 -0
  385. package/core/share/api-handler/api-handler.css +0 -0
  386. package/core/share/api-handler/api-handler.html +38 -0
  387. package/core/share/api-handler/api-handler.ts +51 -0
  388. package/core/share/array-filter-handler/array-filter-handler.css +0 -0
  389. package/core/share/array-filter-handler/array-filter-handler.html +26 -0
  390. package/core/share/array-filter-handler/array-filter-handler.ts +65 -0
  391. package/core/share/array-filter-handler/input-filter-options/filter-options.css +19 -0
  392. package/core/share/array-filter-handler/input-filter-options/filter-options.html +57 -0
  393. package/core/share/array-filter-handler/input-filter-options/filter-options.ts +100 -0
  394. package/core/share/base-design-setting/base-design-setting.css +0 -0
  395. package/core/share/base-design-setting/base-design-setting.html +50 -0
  396. package/core/share/base-design-setting/base-design-setting.ts +55 -0
  397. package/core/share/base-event-handler-descs.ts +100 -0
  398. package/core/share/common-menu/common-menu.css +0 -0
  399. package/core/share/common-menu/common-menu.html +21 -0
  400. package/core/share/common-menu/common-menu.ts +73 -0
  401. package/core/share/data-handler/data-handler.css +0 -0
  402. package/core/share/data-handler/data-handler.html +13 -0
  403. package/core/share/data-handler/data-handler.ts +39 -0
  404. package/core/share/events-handler.service.ts +185 -0
  405. package/core/share/fun-field/fun-field.css +55 -0
  406. package/core/share/fun-field/fun-field.html +175 -0
  407. package/core/share/fun-field/fun-field.ts +363 -0
  408. package/core/share/input-trigger/input-trigger.css +16 -0
  409. package/core/share/input-trigger/input-trigger.html +114 -0
  410. package/core/share/input-trigger/input-trigger.ts +394 -0
  411. package/core/share/msg-tip-handler/msg-tip-handler.css +0 -0
  412. package/core/share/msg-tip-handler/msg-tip-handler.html +40 -0
  413. package/core/share/msg-tip-handler/msg-tip-handler.ts +46 -0
  414. package/core/share/refresh-data-source-handler/refresh-data-source-handler.css +0 -0
  415. package/core/share/refresh-data-source-handler/refresh-data-source-handler.html +29 -0
  416. package/core/share/refresh-data-source-handler/refresh-data-source-handler.ts +55 -0
  417. package/core/share/route-handler/route-handler.css +0 -0
  418. package/core/share/route-handler/route-handler.html +49 -0
  419. package/core/share/route-handler/route-handler.ts +51 -0
  420. package/core/share/set-data-source-handler/set-data-source-handler.css +0 -0
  421. package/core/share/set-data-source-handler/set-data-source-handler.html +23 -0
  422. package/core/share/set-data-source-handler/set-data-source-handler.ts +44 -0
  423. package/core/share/simple-menu/simple-menu.css +0 -0
  424. package/core/share/simple-menu/simple-menu.html +5 -0
  425. package/core/share/simple-menu/simple-menu.ts +17 -0
  426. package/core/share/tokens.ts +29 -0
  427. package/core/share/value-design-setting/value-design-setting.css +0 -0
  428. package/core/share/value-design-setting/value-design-setting.html +48 -0
  429. package/core/share/value-design-setting/value-design-setting.ts +54 -0
  430. package/core/utils/code-name.utils.ts +19 -0
  431. package/core/utils/components-loader.ts +29 -0
  432. package/core/utils/declaration.utils.ts +38 -0
  433. package/core/utils/dynamic.util.ts +57 -0
  434. package/core/utils/form-validators.ts +160 -0
  435. package/core/utils/form.util.ts +25 -0
  436. package/core/utils/http.utils.ts +8 -0
  437. package/core/utils/object.utils.ts +182 -0
  438. package/core/utils/scripts-loader.ts +25 -0
  439. package/ng-package.json +13 -0
  440. package/package.json +37 -0
  441. package/providers/ng-package.json +5 -0
  442. package/providers/providers.ts +44 -0
  443. package/providers/public-api.ts +1 -0
  444. package/public-api.ts +1 -0
  445. package/tsconfig.json +38 -0
  446. package/tsconfig.lib.json +19 -0
  447. package/tsconfig.lib.prod.json +11 -0
@@ -0,0 +1,9 @@
1
+ <svg width="120" height="76" xmlns="http://www.w3.org/2000/svg" version="1.1">
2
+ <title>Input</title>
3
+
4
+ <g>
5
+ <title>Layer 1</title>
6
+ <path stroke="#9e9e9e" id="svg_1" d="m20.32787,28.62177c0,-6.21704 6.5386,-11.44144 14.31953,-11.44144l50.70521,0c7.78093,0 14.31953,5.2244 14.31953,11.44144l0,18.75646c0,6.21704 -6.5386,11.44144 -14.31953,11.44144l-50.70521,0c-7.78093,0 -14.31953,-5.2244 -14.31953,-11.44144l0,-18.75646z" opacity="undefined" stroke-dasharray="5,2,2,2" stroke-width="0.5" fill-opacity="0" fill="#0fffff"/>
7
+ <text transform="matrix(1 0 0 1 0 0)" xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="14" id="svg_3" y="43.08197" x="31.99923" stroke-dasharray="5,2,2,2" stroke-width="0" stroke="#000000" fill="#000000">动态容器</text>
8
+ </g>
9
+ </svg>
@@ -0,0 +1,33 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="172px" height="96px" viewBox="0 0 172 96" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>编组 6</title>
4
+ <g id="组件骨架图更新" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="编组-6" transform="translate(0.250000, 0.000000)" fill-rule="nonzero">
6
+ <polygon id="路径" fill="#000000" points="4.5 48.25 4.5 48.75 0 48.75 0 48.25"></polygon>
7
+ <polygon id="路径" fill="#000000" points="12.5 48.25 12.5 48.75 8 48.75 8 48.25"></polygon>
8
+ <polygon id="路径" fill="#000000" points="20.5 48.25 20.5 48.75 16 48.75 16 48.25"></polygon>
9
+ <polygon id="路径" fill="#000000" points="28.5 48.25 28.5 48.75 24 48.75 24 48.25"></polygon>
10
+ <polygon id="路径" fill="#000000" points="36.5 48.25 36.5 48.75 32 48.75 32 48.25"></polygon>
11
+ <polygon id="路径" fill="#000000" points="44.5 48.25 44.5 48.75 40 48.75 40 48.25"></polygon>
12
+ <polygon id="路径" fill="#000000" points="52.5 48.25 52.5 48.75 48 48.75 48 48.25"></polygon>
13
+ <polygon id="路径" fill="#000000" points="60.5 48.25 60.5 48.75 56 48.75 56 48.25"></polygon>
14
+ <polygon id="路径" fill="#000000" points="68.5 48.25 68.5 48.75 64 48.75 64 48.25"></polygon>
15
+ <polygon id="路径" fill="#000000" points="76.5 48.25 76.5 48.75 72 48.75 72 48.25"></polygon>
16
+ <polygon id="路径" fill="#000000" points="84.5 48.25 84.5 48.75 80 48.75 80 48.25"></polygon>
17
+ <polygon id="路径" fill="#000000" points="92.5 48.25 92.5 48.75 88 48.75 88 48.25"></polygon>
18
+ <polygon id="路径" fill="#000000" points="100.5 48.25 100.5 48.75 96 48.75 96 48.25"></polygon>
19
+ <polygon id="路径" fill="#000000" points="108.5 48.25 108.5 48.75 104 48.75 104 48.25"></polygon>
20
+ <polygon id="路径" fill="#000000" points="116.5 48.25 116.5 48.75 112 48.75 112 48.25"></polygon>
21
+ <polygon id="路径" fill="#000000" points="124.5 48.25 124.5 48.75 120 48.75 120 48.25"></polygon>
22
+ <polygon id="路径" fill="#000000" points="132.5 48.25 132.5 48.75 128 48.75 128 48.25"></polygon>
23
+ <polygon id="路径" fill="#000000" points="140.5 48.25 140.5 48.75 136 48.75 136 48.25"></polygon>
24
+ <polygon id="路径" fill="#000000" points="148.5 48.25 148.5 48.75 144 48.75 144 48.25"></polygon>
25
+ <polygon id="路径" fill="#000000" points="156.5 48.25 156.5 48.75 152 48.75 152 48.25"></polygon>
26
+ <polygon id="路径" fill="#000000" points="164.5 48.25 164.5 48.75 160 48.75 160 48.25"></polygon>
27
+ <path d="M169.82,47.0266667 L172.02,49.96 C172.152548,50.1367311 172.116731,50.3874517 171.94,50.52 C171.870762,50.5719288 171.786548,50.6 171.7,50.6 L167.3,50.6 C167.079086,50.6 166.9,50.4209139 166.9,50.2 C166.9,50.1134519 166.928071,50.0292385 166.98,49.96 L169.18,47.0266667 C169.312548,46.8499355 169.563269,46.8141183 169.74,46.9466667 C169.770322,46.9694084 169.797258,46.9963444 169.82,47.0266667 Z" id="三角形备份-2" fill="#000000" opacity="0.45" transform="translate(169.500000, 48.600000) rotate(-270.000000) translate(-169.500000, -48.600000) "></path>
28
+ <rect id="矩形复制-9备份" fill-opacity="0.08" fill="#1677FF" x="18.75" y="0" width="136" height="96" rx="6"></rect>
29
+ <rect id="矩形备份-3" fill-opacity="0.16" fill="#1677FF" x="30.75" y="12" width="38" height="72" rx="6"></rect>
30
+ <rect id="矩形备份-4" fill-opacity="0.16" fill="#1677FF" x="80.75" y="12" width="62" height="72" rx="6"></rect>
31
+ </g>
32
+ </g>
33
+ </svg>
@@ -0,0 +1,22 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="156px" height="40px" viewBox="0 0 156 25" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>Form</title>
4
+ <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Form">
6
+ <g id="数据录入/Form表单/Light/标题-必填" transform="translate(0.000000, 3.000000)">
7
+ <text id=":" font-family="PingFangSC-Regular, PingFang SC" font-size="7.875" font-weight="normal" line-spacing="12.375" fill="#000000" fill-opacity="0.85">
8
+ <tspan x="31" y="8">:</tspan>
9
+ </text>
10
+ <rect id="矩形复制-61" fill="#EBEBEB" x="0" y="2" width="29" height="10"></rect>
11
+ </g>
12
+ <g id="3.数据录入/4.Input输入框/亮色/中-未输入" transform="translate(43.000000, 0.000000)">
13
+ <path d="M111.368297,0.28125 L1.13170338,0.28125 C0.895294259,0.28125 0.682690035,0.375181855 0.529169057,0.527926514 C0.375502081,0.680816432 0.28125,0.892363409 0.28125,1.12598062 L0.28125,16.8740194 C0.28125,17.108189 0.375752811,17.3189924 0.528875385,17.4713406 C0.683024138,17.6247099 0.896294012,17.71875 1.13170338,17.71875 L111.368297,17.71875 C111.604706,17.71875 111.81731,17.6248181 111.970831,17.4720735 C112.124498,17.3191836 112.21875,17.1076366 112.21875,16.8740194 L112.21875,1.12598062 C112.21875,0.891810962 112.124247,0.681007624 111.971125,0.528659355 C111.816976,0.375290097 111.603706,0.28125 111.368297,0.28125 Z" id="Rectangle-26-Copy-23" stroke-opacity="0.15" stroke="#000000" stroke-width="0.5625" fill="#FFFFFF" fill-rule="evenodd"></path>
14
+ <text id="Text" font-family="PingFangSC-Regular, PingFang SC" font-size="7.875" font-weight="normal" line-spacing="12.375" fill="#000000" fill-opacity="0.25">
15
+ <tspan x="6.75" y="10.8125">请输入用户名</tspan>
16
+ </text>
17
+ </g>
18
+
19
+ <rect id="矩形复制-60备份" fill="#F5F5F5" x="49" y="4" width="51" height="10"></rect>
20
+ </g>
21
+ </g>
22
+ </svg>
@@ -0,0 +1,38 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="156px" height="80px" viewBox="0 0 156 80" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>Form</title>
4
+ <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Form">
6
+ <g id="数据录入/Form表单/Light/标题-必填" transform="translate(0.000000, 3.000000)">
7
+ <text id=":" font-family="PingFangSC-Regular, PingFang SC" font-size="7.875" font-weight="normal" line-spacing="12.375" fill="#000000" fill-opacity="0.85">
8
+ <tspan x="31" y="8">:</tspan>
9
+ </text>
10
+ <rect id="矩形复制-61" fill="#EBEBEB" x="0" y="2" width="29" height="10"></rect>
11
+ </g>
12
+ <g id="数据录入/Form表单/Light/标题-必填备份" transform="translate(31.000000, 33.000000)" fill="#000000" fill-opacity="0.85" font-family="PingFangSC-Regular, PingFang SC" font-size="7.875" font-weight="normal" line-spacing="12.375">
13
+ <text id=":">
14
+ <tspan x="0" y="8">:</tspan>
15
+ </text>
16
+ </g>
17
+ <g id="3.数据录入/4.Input输入框/亮色/中-未输入" transform="translate(43.000000, 0.000000)">
18
+ <path d="M111.368297,0.28125 L1.13170338,0.28125 C0.895294259,0.28125 0.682690035,0.375181855 0.529169057,0.527926514 C0.375502081,0.680816432 0.28125,0.892363409 0.28125,1.12598062 L0.28125,16.8740194 C0.28125,17.108189 0.375752811,17.3189924 0.528875385,17.4713406 C0.683024138,17.6247099 0.896294012,17.71875 1.13170338,17.71875 L111.368297,17.71875 C111.604706,17.71875 111.81731,17.6248181 111.970831,17.4720735 C112.124498,17.3191836 112.21875,17.1076366 112.21875,16.8740194 L112.21875,1.12598062 C112.21875,0.891810962 112.124247,0.681007624 111.971125,0.528659355 C111.816976,0.375290097 111.603706,0.28125 111.368297,0.28125 Z" id="Rectangle-26-Copy-23" stroke-opacity="0.15" stroke="#000000" stroke-width="0.5625" fill="#FFFFFF" fill-rule="evenodd"></path>
19
+ <text id="Text" font-family="PingFangSC-Regular, PingFang SC" font-size="7.875" font-weight="normal" line-spacing="12.375" fill="#000000" fill-opacity="0.25">
20
+ <tspan x="6.75" y="10.8125">请输入用户名</tspan>
21
+ </text>
22
+ </g>
23
+ <g id="DataEntry/Input/Light/Search" transform="translate(43.000000, 31.000000)">
24
+ <path d="M111.368297,0.28125 L1.13170338,0.28125 C0.895294259,0.28125 0.682690035,0.375181855 0.529169057,0.527926514 C0.375502081,0.680816432 0.28125,0.892363409 0.28125,1.12598062 L0.28125,16.8740194 C0.28125,17.108189 0.375752811,17.3189924 0.528875385,17.4713406 C0.683024138,17.6247099 0.896294012,17.71875 1.13170338,17.71875 L111.368297,17.71875 C111.604706,17.71875 111.81731,17.6248181 111.970831,17.4720735 C112.124498,17.3191836 112.21875,17.1076366 112.21875,16.8740194 L112.21875,1.12598062 C112.21875,0.891810962 112.124247,0.681007624 111.971125,0.528659355 C111.816976,0.375290097 111.603706,0.28125 111.368297,0.28125 Z" id="bg" stroke="#D9D9D9" stroke-width="0.5625" fill="#FFFFFF"></path>
25
+ <text id="Text" font-family="PingFangSC-Regular, PingFang SC" font-size="7.875" font-weight="normal" line-spacing="12.375" fill="#000000" fill-opacity="0.25">
26
+ <tspan x="6.75" y="10.8125">请输入密码</tspan>
27
+ </text>
28
+ </g>
29
+ <g id="1.通用/1.Buttons按钮/主按钮/亮色/默认" transform="translate(43.000000, 62.000000)">
30
+ <rect id="矩形" fill="#1890FF" fill-rule="evenodd" x="0" y="0" width="38.625" height="18" rx="1.125"></rect>
31
+ <text id="主按钮" font-family="PingFangSC-Regular, PingFang SC" font-size="7.875" font-weight="normal" line-spacing="12.375"></text>
32
+ </g>
33
+ <rect id="矩形复制-60" fill="#F5F5F5" x="49" y="35" width="51" height="10"></rect>
34
+ <rect id="矩形复制-60备份" fill="#F5F5F5" x="49" y="4" width="51" height="10"></rect>
35
+ <rect id="矩形复制-61备份" fill="#EBEBEB" x="0" y="35" width="29" height="10"></rect>
36
+ </g>
37
+ </g>
38
+ </svg>
@@ -0,0 +1,22 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="112px" height="32px" viewBox="0 0 112 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>编组 26</title>
4
+ <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Ant-Design-组件缩略图" transform="translate(-128.000000, -138.000000)" fill-rule="nonzero">
6
+ <g id="编组-26" transform="translate(128.000000, 138.000000)">
7
+ <g id="smile-fill">
8
+ <rect id="矩形" fill="#000000" opacity="0" x="0" y="0" width="32" height="32"></rect>
9
+ <path d="M16,2 C8.26875,2 2,8.26875 2,16 C2,23.73125 8.26875,30 16,30 C23.73125,30 30,23.73125 30,16 C30,8.26875 23.73125,2 16,2 Z M9,13.15625 C9,12.328125 9.671875,11.65625 10.5,11.65625 C11.328125,11.65625 12,12.328125 12,13.15625 C12,13.984375 11.328125,14.65625 10.5,14.65625 C9.671875,14.65625 9,13.984375 9,13.15625 Z M16,21.65625 C13.328125,21.65625 11.1375,19.553125 11,16.91875 C10.99375,16.775 11.10625,16.65625 11.25,16.65625 L12.753125,16.65625 C12.884375,16.65625 12.996875,16.75625 13.00625,16.8875 C13.125,18.434375 14.421875,19.65625 16,19.65625 C17.578125,19.65625 18.878125,18.434375 18.99375,16.8875 C19.003125,16.75625 19.115625,16.65625 19.246875,16.65625 L20.75,16.65625 C20.89375,16.65625 21.00625,16.775 21,16.91875 C20.8625,19.553125 18.671875,21.65625 16,21.65625 Z M21.5,14.65625 C20.671875,14.65625 20,13.984375 20,13.15625 C20,12.328125 20.671875,11.65625 21.5,11.65625 C22.328125,11.65625 23,12.328125 23,13.15625 C23,13.984375 22.328125,14.65625 21.5,14.65625 Z" id="形状" fill="#1890FF"></path>
10
+ </g>
11
+ <g id="heart-fill" transform="translate(40.000000, 0.000000)">
12
+ <rect id="矩形" fill="#000000" opacity="0" x="0" y="0" width="32" height="32"></rect>
13
+ <path d="M28.84375,8.8625 C28.425,7.890625 27.825,7.021875 27.065625,6.275 C26.30625,5.53125 25.425,4.95 24.440625,4.540625 C23.425,4.11875 22.35,3.90625 21.240625,3.90625 C19.7,3.90625 18.196875,4.328125 16.890625,5.125 C16.578125,5.315625 16.28125,5.525 16,5.753125 C15.71875,5.525 15.421875,5.315625 15.109375,5.125 C13.803125,4.328125 12.3,3.90625 10.759375,3.90625 C9.65,3.90625 8.575,4.11875 7.559375,4.540625 C6.578125,4.946875 5.69375,5.53125 4.934375,6.275 C4.171875,7.021875 3.575,7.890625 3.15625,8.8625 C2.721875,9.871875 2.5,10.94375 2.5,12.046875 C2.5,13.0875 2.7125,14.171875 3.134375,15.275 C3.4875,16.196875 3.99375,17.153125 4.640625,18.11875 C5.665625,19.646875 7.075,21.240625 8.825,22.85625 C11.725,25.534375 14.596875,27.384375 14.71875,27.459375 L15.459375,27.934375 C15.7875,28.14375 16.209375,28.14375 16.5375,27.934375 L17.278125,27.459375 C17.4,27.38125 20.26875,25.534375 23.171875,22.85625 C24.921875,21.240625 26.33125,19.646875 27.35625,18.11875 C28.003125,17.153125 28.5125,16.196875 28.8625,15.275 C29.284375,14.171875 29.4969076,13.0875 29.4969076,12.046875 C29.5,10.94375 29.278125,9.871875 28.84375,8.8625 Z" id="路径" fill="#BAE7FF"></path>
14
+ </g>
15
+ <g id="star-fill" transform="translate(80.000000, 0.000000)">
16
+ <rect id="矩形" fill="#000000" opacity="0" x="0" y="0" width="32" height="32"></rect>
17
+ <path d="M28.378125,11.034375 L20.44375,9.88125 L16.896875,2.690625 C16.8,2.49375 16.640625,2.334375 16.44375,2.2375 C15.95,1.99375 15.35,2.196875 15.103125,2.690625 L11.55625,9.88125 L3.621875,11.034375 C3.403125,11.065625 3.203125,11.16875 3.05,11.325 C2.665625,11.721875 2.671875,12.353125 3.06875,12.740625 L8.809375,18.3375 L7.453125,26.240625 C7.415625,26.45625 7.45,26.68125 7.553125,26.875 C7.809375,27.3625 8.415625,27.553125 8.903125,27.29375 L16,23.5625 L23.096875,27.29375 C23.290625,27.396875 23.515625,27.43125 23.73125,27.39375 C24.275,27.3 24.640625,26.784375 24.546875,26.240625 L23.190625,18.3375 L28.93125,12.740625 C29.0875,12.5875 29.190625,12.3875 29.221875,12.16875 C29.30625,11.621875 28.925,11.115625 28.378125,11.034375 Z" id="路径" fill="#EBEBEB"></path>
18
+ </g>
19
+ </g>
20
+ </g>
21
+ </g>
22
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="98px" height="70px" viewBox="0 0 98 70" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>编组 2</title>
4
+ <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="编组-2" transform="translate(1.000000, 1.000000)" fill-rule="nonzero">
6
+ <g id="编组">
7
+ <rect id="d" fill-opacity="0.6" fill="#67BBFE" x="0" y="0" width="98" height="70"></rect>
8
+ <polygon id="路径" fill="#308FFF" points="0 70 46.937105 31.2502077 61.2295209 48.3562963 98 11 98 69.9639872"></polygon>
9
+ <circle id="椭圆形" fill="#308FFF" cx="21.15" cy="21.15" r="7.65"></circle>
10
+ </g>
11
+ </g>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,27 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="120px" height="76px" viewBox="0 0 120 36" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>Input</title>
4
+ <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Ant-Design-组件缩略图" transform="translate(-843.000000, -1266.000000)">
6
+ <g id="Input" transform="translate(843.000000, 1266.000000)">
7
+ <g id="3.DataEntry/Input/Default/Basic-#">
8
+ <g id="9.Box/1.Cards/4.Border" fill-rule="nonzero">
9
+ <g id="Z/Shape/RectangleRC/2px/RC-A">
10
+ <rect id="BG/fill" fill="#FFFFFF" x="1" y="1" width="118" height="30" rx="1"></rect>
11
+ <rect id="outline" stroke="#000000" stroke-width="1" opacity="0.15" x="0.5" y="0.5" width="119" height="31" rx="2"></rect>
12
+ <path d="M482 152h60q8 0 8 8v704q0 8-8 8h-60q-8 0-8-8V160q0-8 8-8z"></path>
13
+ <path d="M192 474h672q8 0 8 8v60q0 8-8 8H160q-8 0-8-8v-60q0-8 8-8z"></path>
14
+ </g>
15
+ </g>
16
+ <svg viewBox="-200 0 1160 896" focusable="false" fill="currentColor" width="20px" height="30px" data-icon="build" aria-hidden="true"><path d="M916 210H376c-17.7 0-32 14.3-32 32v236H108c-17.7 0-32 14.3-32 32v272c0 17.7 14.3 32 32 32h540c17.7 0 32-14.3 32-32V546h236c17.7 0 32-14.3 32-32V242c0-17.7-14.3-32-32-32zm-504 68h200v200H412V278zm-68 468H144V546h200v200zm268 0H412V546h200v200zm268-268H680V278h200v200z"></path></svg>
17
+ <text id="✏️Text" opacity="0.25" font-family="PingFangSC-Regular, PingFang SC" font-size="14" font-weight="normal" line-spacing="22" fill="#000000">
18
+ <tspan x="30" y="20">配置组件</tspan>
19
+ </text>
20
+ <g transform="translate(100,9)">
21
+ <svg viewBox="64 64 896 896" focusable="false" fill="currentColor" width="13px" height="13px" data-icon="edit" aria-hidden="true"><path d="M257.7 752c2 0 4-.2 6-.5L431.9 722c2-.4 3.9-1.3 5.3-2.8l423.9-423.9a9.96 9.96 0 000-14.1L694.9 114.9c-1.9-1.9-4.4-2.9-7.1-2.9s-5.2 1-7.1 2.9L256.8 538.8c-1.5 1.5-2.4 3.3-2.8 5.3l-29.5 168.2a33.5 33.5 0 009.4 29.8c6.6 6.4 14.9 9.9 23.8 9.9zm67.4-174.4L687.8 215l73.3 73.3-362.7 362.6-88.9 15.7 15.6-89zM880 836H144c-17.7 0-32 14.3-32 32v36c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-36c0-17.7-14.3-32-32-32z"></path></svg>
22
+ </g>
23
+ </g>
24
+ </g>
25
+ </g>
26
+ </g>
27
+ </svg>
@@ -0,0 +1,29 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="120px" height="76px" viewBox="0 0 120 36" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>Input</title>
4
+ <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Ant-Design-组件缩略图" transform="translate(-843.000000, -1266.000000)">
6
+ <g id="Input" transform="translate(843.000000, 1266.000000)">
7
+ <g id="3.DataEntry/Input/Default/Basic-#">
8
+ <g id="9.Box/1.Cards/4.Border" fill-rule="nonzero">
9
+ <g id="Z/Shape/RectangleRC/2px/RC-A">
10
+ <rect id="BG/fill" fill="#FFFFFF" x="1" y="1" width="118" height="30" rx="1"></rect>
11
+ <rect id="outline" stroke="#000000" stroke-width="1" opacity="0.15" x="0.5" y="0.5" width="119" height="31" rx="2"></rect>
12
+ <path d="M482 152h60q8 0 8 8v704q0 8-8 8h-60q-8 0-8-8V160q0-8 8-8z"></path>
13
+ <path d="M192 474h672q8 0 8 8v60q0 8-8 8H160q-8 0-8-8v-60q0-8 8-8z"></path>
14
+ </g>
15
+ </g>
16
+ <g id="smile-fill" transform="scale(0.6) translate(10,10)">
17
+ <path x="100" d="M16,2 C8.26875,2 2,8.26875 2,16 C2,23.73125 8.26875,30 16,30 C23.73125,30 30,23.73125 30,16 C30,8.26875 23.73125,2 16,2 Z M9,13.15625 C9,12.328125 9.671875,11.65625 10.5,11.65625 C11.328125,11.65625 12,12.328125 12,13.15625 C12,13.984375 11.328125,14.65625 10.5,14.65625 C9.671875,14.65625 9,13.984375 9,13.15625 Z M16,21.65625 C13.328125,21.65625 11.1375,19.553125 11,16.91875 C10.99375,16.775 11.10625,16.65625 11.25,16.65625 L12.753125,16.65625 C12.884375,16.65625 12.996875,16.75625 13.00625,16.8875 C13.125,18.434375 14.421875,19.65625 16,19.65625 C17.578125,19.65625 18.878125,18.434375 18.99375,16.8875 C19.003125,16.75625 19.115625,16.65625 19.246875,16.65625 L20.75,16.65625 C20.89375,16.65625 21.00625,16.775 21,16.91875 C20.8625,19.553125 18.671875,21.65625 16,21.65625 Z M21.5,14.65625 C20.671875,14.65625 20,13.984375 20,13.15625 C20,12.328125 20.671875,11.65625 21.5,11.65625 C22.328125,11.65625 23,12.328125 23,13.15625 C23,13.984375 22.328125,14.65625 21.5,14.65625 Z" id="形状" fill="#1890FF"></path>
18
+ </g>
19
+ <text id="✏️Text" opacity="0.25" font-family="PingFangSC-Regular, PingFang SC" font-size="14" font-weight="normal" line-spacing="22" fill="#000000">
20
+ <tspan x="30" y="20">设置图标</tspan>
21
+ </text>
22
+ <g id="7.Icon/arrow/2.right" transform="translate(100.000000, 8.000000)" fill="#000000" opacity="0.65">
23
+ <path d="M10.4685547,6.65546875 L4.30527344,1.84160156 C4.2328125,1.78554688 4.12890625,1.83613281 4.12890625,1.92773438 L4.12890625,2.98457031 C4.12890625,3.0515625 4.16035156,3.11582031 4.21230469,3.15683594 L9.13417969,7 L4.21230469,10.8431641 C4.15898438,10.8841797 4.12890625,10.9484375 4.12890625,11.0154297 L4.12890625,12.0722656 C4.12890625,12.1638672 4.23417969,12.2144531 4.30527344,12.1583984 L10.4685547,7.34453125 C10.6927734,7.16953125 10.6927734,6.83046875 10.4685547,6.65546875 Z" id="fill"></path>
24
+ </g>
25
+ </g>
26
+ </g>
27
+ </g>
28
+ </g>
29
+ </svg>
@@ -0,0 +1,29 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="120px" height="76px" viewBox="0 0 120 36" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>Input</title>
4
+ <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Ant-Design-组件缩略图" transform="translate(-843.000000, -1266.000000)">
6
+ <g id="Input" transform="translate(843.000000, 1266.000000)">
7
+ <g id="3.DataEntry/Input/Default/Basic-#">
8
+ <g id="9.Box/1.Cards/4.Border" fill-rule="nonzero">
9
+ <g id="Z/Shape/RectangleRC/2px/RC-A">
10
+ <rect id="BG/fill" fill="#FFFFFF" x="1" y="1" width="118" height="30" rx="1"></rect>
11
+ <rect id="outline" stroke="#000000" stroke-width="1" opacity="0.15" x="0.5" y="0.5" width="119" height="31" rx="2"></rect>
12
+ <path d="M482 152h60q8 0 8 8v704q0 8-8 8h-60q-8 0-8-8V160q0-8 8-8z"></path>
13
+ <path d="M192 474h672q8 0 8 8v60q0 8-8 8H160q-8 0-8-8v-60q0-8 8-8z"></path>
14
+ </g>
15
+ </g>
16
+ <g transform="translate(10,9)">
17
+ <svg viewBox="64 64 896 896" focusable="false" fill="currentColor" width="13px" height="13px" data-icon="edit" aria-hidden="true"><path d="M257.7 752c2 0 4-.2 6-.5L431.9 722c2-.4 3.9-1.3 5.3-2.8l423.9-423.9a9.96 9.96 0 000-14.1L694.9 114.9c-1.9-1.9-4.4-2.9-7.1-2.9s-5.2 1-7.1 2.9L256.8 538.8c-1.5 1.5-2.4 3.3-2.8 5.3l-29.5 168.2a33.5 33.5 0 009.4 29.8c6.6 6.4 14.9 9.9 23.8 9.9zm67.4-174.4L687.8 215l73.3 73.3-362.7 362.6-88.9 15.7 15.6-89zM880 836H144c-17.7 0-32 14.3-32 32v36c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-36c0-17.7-14.3-32-32-32z"></path></svg>
18
+ </g>
19
+ <text id="✏️Text" opacity="0.25" font-family="PingFangSC-Regular, PingFang SC" font-size="14" font-weight="normal" line-spacing="22" fill="#000000">
20
+ <tspan x="30" y="20">编辑JSON</tspan>
21
+ </text>
22
+ <g id="7.Icon/arrow/2.right" transform="translate(100.000000, 8.000000)" fill="rgba(150, 150, 150, 0.5)" opacity="0.65">
23
+ <path d="M10.4685547,6.65546875 L4.30527344,1.84160156 C4.2328125,1.78554688 4.12890625,1.83613281 4.12890625,1.92773438 L4.12890625,2.98457031 C4.12890625,3.0515625 4.16035156,3.11582031 4.21230469,3.15683594 L9.13417969,7 L4.21230469,10.8431641 C4.15898438,10.8841797 4.12890625,10.9484375 4.12890625,11.0154297 L4.12890625,12.0722656 C4.12890625,12.1638672 4.23417969,12.2144531 4.30527344,12.1583984 L10.4685547,7.34453125 C10.6927734,7.16953125 10.6927734,6.83046875 10.4685547,6.65546875 Z" id="fill"></path>
24
+ </g>
25
+ </g>
26
+ </g>
27
+ </g>
28
+ </g>
29
+ </svg>
@@ -0,0 +1,35 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="120px" height="72px" viewBox="0 0 120 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>InputNumber</title>
4
+ <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Ant-Design-组件缩略图" transform="translate(-1081.000000, -369.000000)">
6
+ <g id="InputNumber" transform="translate(1081.000000, 369.000000)">
7
+ <g id="3.DataEntry/Input/Default/Basic-#">
8
+ <g id="9.Box/1.Cards/4.Border" fill-rule="nonzero">
9
+ <g id="Z/Shape/RectangleRC/2px/RC-A">
10
+ <rect id="BG/fill" fill="#FFFFFF" x="1" y="1" width="118" height="30" rx="1"></rect>
11
+ <rect id="outline" stroke="#000000" stroke-width="1" opacity="0.15" x="0.5" y="0.5" width="119" height="31" rx="2"></rect>
12
+ </g>
13
+ </g>
14
+ <text id="✏️Text" opacity="0.25" font-family="PingFangSC-Regular, PingFang SC" font-size="14" font-weight="normal" line-spacing="22" fill="#000000">
15
+ <tspan x="12" y="20">Number</tspan>
16
+ </text>
17
+ </g>
18
+ <g id="Group" transform="translate(103.000000, 0.000000)" fill="#000000" fill-rule="nonzero">
19
+ <g id="Z/Divider" opacity="0.09">
20
+ <rect id="divider/fill" x="0" y="0" width="1" height="32"></rect>
21
+ </g>
22
+ <g id="Z/Divider" transform="translate(1.000000, 15.000000)" opacity="0.09">
23
+ <rect id="divider/fill" x="0" y="0" width="16" height="1"></rect>
24
+ </g>
25
+ <g id="7.Icon/arrow/3.up" transform="translate(3.000000, 2.000000)" opacity="0.65">
26
+ <path d="M10.4355469,8.85117187 L6.30351562,3.1546875 C6.15351562,2.9484375 5.84648437,2.9484375 5.69765625,3.1546875 L1.56445312,8.85117187 C1.51992187,8.91328125 1.56328125,9 1.640625,9 L2.51953125,9 C2.57929687,9 2.63554687,8.97070312 2.67070312,8.92265625 L6,4.33359375 L9.32929687,8.92265625 C9.36445312,8.97070312 9.42070312,9 9.48046875,9 L10.359375,9 C10.4355469,9 10.4800781,8.91328125 10.4355469,8.85117187 L10.4355469,8.85117187 Z" id="fill"></path>
27
+ </g>
28
+ <g id="7.Icon/arrow/4.down" transform="translate(3.000000, 18.000000)" opacity="0.65">
29
+ <path d="M10.359375,3 L9.48046875,3 C9.42070312,3 9.36445312,3.02929688 9.32929687,3.07734375 L6,7.66640625 L2.67070313,3.07734375 C2.63554688,3.02929688 2.57929687,3 2.51953125,3 L1.640625,3 C1.56445313,3 1.51992188,3.08671875 1.56445313,3.14882813 L5.69648437,8.8453125 C5.84648437,9.0515625 6.15351562,9.0515625 6.30234375,8.8453125 L10.434375,3.14882812 C10.4800781,3.08671875 10.4355469,3 10.359375,3 Z" id="fill"></path>
30
+ </g>
31
+ </g>
32
+ </g>
33
+ </g>
34
+ </g>
35
+ </svg>
@@ -0,0 +1,21 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="120px" height="76px" viewBox="0 0 120 36" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>Input</title>
4
+ <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Ant-Design-组件缩略图" transform="translate(-843.000000, -1266.000000)">
6
+ <g id="Input" transform="translate(843.000000, 1266.000000)">
7
+ <g id="3.DataEntry/Input/Default/Basic-#">
8
+ <g id="9.Box/1.Cards/4.Border" fill-rule="nonzero">
9
+ <g id="Z/Shape/RectangleRC/2px/RC-A">
10
+ <rect id="BG/fill" fill="#FFFFFF" x="1" y="1" width="118" height="30" rx="1"></rect>
11
+ <rect id="outline" stroke="#000000" stroke-width="1" opacity="0.15" x="0.5" y="0.5" width="119" height="31" rx="2"></rect>
12
+ </g>
13
+ </g>
14
+ <text id="✏️Text" opacity="0.25" font-family="PingFangSC-Regular, PingFang SC" font-size="14" font-weight="normal" line-spacing="22" fill="#000000">
15
+ <tspan x="12" y="20">请输入</tspan>
16
+ </text>
17
+ </g>
18
+ </g>
19
+ </g>
20
+ </g>
21
+ </svg>
@@ -0,0 +1,23 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="155px" height="104px" viewBox="0 0 155 104" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>编组 3</title>
4
+ <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Ant-Design-组件缩略图" transform="translate(-585.000000, -562.000000)">
6
+ <g id="编组-3" transform="translate(585.000000, 562.000000)">
7
+ <rect id="矩形复制-70" fill="#EBEBEB" x="8" y="8" width="31" height="6"></rect>
8
+ <rect id="矩形复制-73" fill="#F5F5F5" x="8" y="35" width="75" height="6"></rect>
9
+ <rect id="矩形复制-74" fill="#F5F5F5" x="8" y="49" width="129" height="6"></rect>
10
+ <rect id="矩形复制-75" fill="#F5F5F5" x="8" y="63" width="129" height="6"></rect>
11
+ <rect id="矩形复制-67" fill="#1890FF" x="123" y="89" width="24" height="10" rx="1.2"></rect>
12
+ <rect id="矩形复制-67" stroke="#D9D9D9" stroke-width="0.5" x="95.25" y="89.25" width="23.5" height="9.5" rx="1.2"></rect>
13
+ <rect id="矩形复制-71" fill="#E8E8E8" x="0" y="22" width="155" height="1"></rect>
14
+ <rect id="矩形复制-72" fill="#E8E8E8" x="0" y="83" width="155" height="1"></rect>
15
+ <g id="close复制" opacity="0.45" transform="translate(139.000000, 7.000000)" fill="#000000" fill-rule="nonzero">
16
+ <rect id="矩形" opacity="0" x="0" y="0" width="8" height="8"></rect>
17
+ <path d="M4.4046875,4 L6.45546875,1.55546875 C6.48984375,1.51484375 6.4609375,1.453125 6.4078125,1.453125 L5.784375,1.453125 C5.74765625,1.453125 5.7125,1.46953125 5.68828125,1.49765625 L3.996875,3.5140625 L2.30546875,1.49765625 C2.28203125,1.46953125 2.246875,1.453125 2.209375,1.453125 L1.5859375,1.453125 C1.5328125,1.453125 1.50390625,1.51484375 1.53828125,1.55546875 L3.5890625,4 L1.53828125,6.44453125 C1.50390625,6.48515625 1.5328125,6.546875 1.5859375,6.546875 L2.209375,6.546875 C2.24609375,6.546875 2.28125,6.53046875 2.30546875,6.50234375 L3.996875,4.4859375 L5.68828125,6.50234375 C5.71171875,6.53046875 5.746875,6.546875 5.784375,6.546875 L6.4078125,6.546875 C6.4609375,6.546875 6.48984375,6.48515625 6.45546875,6.44453125 L4.4046875,4 Z" id="路径"></path>
18
+ </g>
19
+ <rect id="矩形复制-69" stroke="#D9D9D9" x="0.5" y="0.5" width="154" height="103" rx="2"></rect>
20
+ </g>
21
+ </g>
22
+ </g>
23
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg width="120" height="76" xmlns="http://www.w3.org/2000/svg" version="1.1">
2
+ <title>Input</title>
3
+
4
+ <g>
5
+ <title>Layer 1</title>
6
+ <path stroke="#9e9e9e" id="svg_1" d="m20.32787,28.62177c0,-6.21704 6.5386,-11.44144 14.31953,-11.44144l50.70521,0c7.78093,0 14.31953,5.2244 14.31953,11.44144l0,18.75646c0,6.21704 -6.5386,11.44144 -14.31953,11.44144l-50.70521,0c-7.78093,0 -14.31953,-5.2244 -14.31953,-11.44144l0,-18.75646z" opacity="undefined" stroke-dasharray="5,2,2,2" stroke-width="0.5" fill-opacity="0" fill="#0fffff"/>
7
+ <text transform="matrix(1 0 0 1 0 0)" style="cursor: move;" xml:space="preserve" text-anchor="start" font-family="Noto Sans JP" font-size="14" id="svg_3" y="43.08197" x="38.99974" stroke-dasharray="5,2,2,2" stroke-width="0" stroke="#000000" fill="#000000">组件域</text>
8
+ </g>
9
+ </svg>
@@ -0,0 +1,20 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="120px" height="42px" viewBox="0 0 140 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>Select</title>
4
+ <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Ant-Design-组件缩略图" transform="translate(-2283.000000, -98.000000)">
6
+ <g id="Select" transform="translate(2283.000000, 98.000000)">
7
+ <g id="3.DataEntry/Selecte/Default/Unselected">
8
+ <rect id="BG/fill" fill="#FFFFFF" fill-rule="nonzero" x="1" y="1" width="118" height="30" rx="2"></rect>
9
+ <rect id="outline" stroke="#000000" opacity="0.15" fill-rule="nonzero" x="0.5" y="0.5" width="119" height="31" rx="2"></rect>
10
+ <text id="✏️Text" opacity="0.25" font-family="PingFangSC-Regular, PingFang SC" font-size="14" font-weight="normal" line-spacing="22" fill="#000000">
11
+ <tspan x="12" y="20">|||||||||||||||||||||||||</tspan>
12
+ </text>
13
+ <g id="7.Icon/arrow/4.down" transform="translate(98.000000, 9.000000)" fill="#000000" fill-rule="nonzero" opacity="0.65">
14
+ <path d="M12.0859375,3.5 L11.0605469,3.5 C10.9908203,3.5 10.9251953,3.53417969 10.8841797,3.59023438 L7,8.94414063 L3.11582031,3.59023438 C3.07480469,3.53417969 3.00917969,3.5 2.93945312,3.5 L1.9140625,3.5 C1.82519531,3.5 1.77324219,3.60117188 1.82519531,3.67363281 L6.64589844,10.3195313 C6.82089844,10.5601563 7.17910156,10.5601563 7.35273437,10.3195313 L12.1734375,3.67363281 C12.2267578,3.60117187 12.1748047,3.5 12.0859375,3.5 Z" id="fill"></path>
15
+ </g>
16
+ </g>
17
+ </g>
18
+ </g>
19
+ </g>
20
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="160" height="112" viewBox="0 0 160 112" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="160" height="112" rx="4" fill="#1668DC" fill-opacity="0.1"/>
3
+ <path d="M10 12C10 10.8954 10.8954 10 12 10H56V102H12C10.8954 102 10 101.105 10 100V12Z" fill="white"/>
4
+ <rect x="57" y="10" width="46" height="92" fill="white"/>
5
+ <path d="M104 10H148C149.105 10 150 10.8954 150 12V100C150 101.105 149.105 102 148 102H104V10Z" fill="white"/>
6
+ <path d="M55.625 49H57.375V63H55.625V49ZM52.125 53.375L49.5 56L52.125 58.625V56.875H54.75V55.125H52.125V53.375ZM63.5 56L60.875 53.375V55.125H58.25V56.875H60.875V58.625L63.5 56Z" fill="#1668DC"/>
7
+ <path d="M102.625 49H104.375V63H102.625V49ZM99.125 53.375L96.5 56L99.125 58.625V56.875H101.75V55.125H99.125V53.375ZM110.5 56L107.875 53.375V55.125H105.25V56.875H107.875V58.625L110.5 56Z" fill="#1668DC"/>
8
+ </svg>
@@ -0,0 +1,27 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="155px" height="104px" viewBox="0 0 155 104" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>Table</title>
4
+ <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Ant-Design-组件缩略图" transform="translate(-2266.000000, -1022.000000)">
6
+ <g id="Table" transform="translate(2266.000000, 1022.000000)">
7
+ <rect id="矩形复制-55" fill="#EBEBEB" x="0" y="0" width="155" height="20"></rect>
8
+ <rect id="矩形复制-81" fill="#EBEBEB" x="11" y="32" width="23" height="6"></rect>
9
+ <rect id="矩形复制-155" fill="#EBEBEB" x="11" y="59" width="23" height="6"></rect>
10
+ <rect id="矩形复制-159" fill="#EBEBEB" x="11" y="86" width="23" height="6"></rect>
11
+ <rect id="矩形复制-153" fill="#F5F5F5" x="66" y="32" width="24" height="6"></rect>
12
+ <rect id="矩形复制-156" fill="#F5F5F5" x="66" y="59" width="24" height="6"></rect>
13
+ <rect id="矩形复制-160" fill="#F5F5F5" x="66" y="86" width="24" height="6"></rect>
14
+ <rect id="矩形复制-154" fill="#1890FF" x="121" y="32" width="24" height="6"></rect>
15
+ <rect id="矩形复制-157" fill="#1890FF" x="121" y="59" width="24" height="6"></rect>
16
+ <rect id="矩形复制-161" fill="#1890FF" x="121" y="86" width="24" height="6"></rect>
17
+ <rect id="矩形复制-149" fill="#F5F5F5" style="mix-blend-mode: multiply;" x="10" y="7" width="24" height="6"></rect>
18
+ <rect id="矩形复制-150" fill="#F5F5F5" style="mix-blend-mode: multiply;" x="66" y="7" width="24" height="6"></rect>
19
+ <rect id="矩形复制-151" fill="#F5F5F5" style="mix-blend-mode: multiply;" x="121" y="7" width="24" height="6"></rect>
20
+ <rect id="矩形" fill="#E0E0E0" x="0" y="20" width="155" height="1"></rect>
21
+ <rect id="矩形复制-129" fill="#E0E0E0" x="0" y="48" width="155" height="1"></rect>
22
+ <rect id="矩形复制-158" fill="#E0E0E0" x="0" y="75" width="155" height="1"></rect>
23
+ <rect id="矩形复制-152" fill="#E0E0E0" x="0" y="103" width="155" height="1"></rect>
24
+ </g>
25
+ </g>
26
+ </g>
27
+ </svg>
@@ -0,0 +1,22 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="150px" height="105px" viewBox="0 0 150 105" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>Typography</title>
4
+ <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="Ant-Design-组件缩略图" transform="translate(-348.000000, -102.000000)">
6
+ <g id="Typography" transform="translate(348.000000, 102.000000)">
7
+ <rect id="矩形复制-90" fill="#F5F5F5" x="6" y="7" width="137" height="90"></rect>
8
+ <rect id="矩形" fill="#E0E0E0" x="0" y="19" width="150" height="1"></rect>
9
+ <rect id="矩形复制-89" fill="#E0E0E0" transform="translate(19.000000, 52.500000) rotate(-270.000000) translate(-19.000000, -52.500000) " x="-33" y="52" width="104" height="1"></rect>
10
+ <rect id="矩形复制-91" fill="#E0E0E0" transform="translate(131.000000, 52.500000) rotate(-270.000000) translate(-131.000000, -52.500000) " x="79" y="52" width="104" height="1"></rect>
11
+ <rect id="矩形复制-88" fill="#E0E0E0" x="0" y="84" width="150" height="1"></rect>
12
+ <text id="Aa" font-family="PingFangSC-Medium, PingFang SC" font-size="48" font-weight="400" fill="#1890FF">
13
+ <tspan x="24" y="70">Aa</tspan>
14
+ </text>
15
+ <rect id="矩形" fill="#F5F5F5" style="mix-blend-mode: multiply;" x="53" y="32" width="70" height="6"></rect>
16
+ <rect id="矩形复制-92" fill="#F5F5F5" style="mix-blend-mode: multiply;" x="87" y="43" width="36" height="6"></rect>
17
+ <rect id="矩形复制-93" fill="#F5F5F5" style="mix-blend-mode: multiply;" x="87" y="53" width="36" height="6"></rect>
18
+ <rect id="矩形复制-94" fill="#F5F5F5" style="mix-blend-mode: multiply;" x="87" y="64" width="36" height="6"></rect>
19
+ </g>
20
+ </g>
21
+ </g>
22
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg width="293" height="229" viewBox="0 0 293 130" xmlns="http://www.w3.org/2000/svg">
2
+ <!-- Created with Method Draw - http://github.com/duopixel/Method-Draw/ -->
3
+ <g>
4
+ <title>Layer 1</title>
5
+ <rect stroke="#b2b2b2" rx="2" id="svg_1" height="128.333329" width="292" y="0.5" x="0.5" fill="transparent"/>
6
+ <line stroke-linecap="null" stroke-linejoin="null" id="svg_9" y2="112.994439" x2="289.816171" y1="126.406235" x1="276.404375" fill-opacity="null" stroke-width="null" stroke="#000000" fill="none"/>
7
+ <line stroke-linecap="null" stroke-linejoin="null" id="svg_10" y2="126.518157" x2="283.726562" y1="119.08882" x1="291.155899" fill-opacity="null" stroke-width="null" stroke="#000000" fill="none"/>
8
+ </g>
9
+ </svg>
@@ -0,0 +1,77 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="182px" height="136px" viewBox="0 0 182 136" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>TreeSelect</title>
4
+ <defs>
5
+ <path d="M0,1.13306225 C0,0.507289251 0.504204687,0 1.14131435,0 L138.103969,0 C138.734299,0 139.245283,0.503355692 139.245283,1.13306225 L139.245283,16.9801453 C139.245283,17.6059183 138.741078,18.1132075 138.103969,18.1132075 L1.14131435,18.1132075 C0.51098384,18.1132075 0,17.6098519 0,16.9801453 L0,1.13306225 Z" id="path-1"></path>
6
+ <rect id="path-2" x="0" y="20.3773585" width="140" height="87" rx="1.13207547"></rect>
7
+ <filter x="-24.3%" y="-33.3%" width="148.6%" height="178.2%" filterUnits="objectBoundingBox" id="filter-3">
8
+ <feMorphology radius="2.5" operator="dilate" in="SourceAlpha" result="shadowSpreadOuter1"></feMorphology>
9
+ <feOffset dx="0" dy="5" in="shadowSpreadOuter1" result="shadowOffsetOuter1"></feOffset>
10
+ <feGaussianBlur stdDeviation="8" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
11
+ <feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
12
+ <feOffset dx="0" dy="3" in="SourceAlpha" result="shadowOffsetOuter2"></feOffset>
13
+ <feGaussianBlur stdDeviation="4.5" in="shadowOffsetOuter2" result="shadowBlurOuter2"></feGaussianBlur>
14
+ <feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0" type="matrix" in="shadowBlurOuter2" result="shadowMatrixOuter2"></feColorMatrix>
15
+ <feMorphology radius="1" operator="erode" in="SourceAlpha" result="shadowSpreadOuter3"></feMorphology>
16
+ <feOffset dx="0" dy="2" in="shadowSpreadOuter3" result="shadowOffsetOuter3"></feOffset>
17
+ <feGaussianBlur stdDeviation="1.5" in="shadowOffsetOuter3" result="shadowBlurOuter3"></feGaussianBlur>
18
+ <feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0" type="matrix" in="shadowBlurOuter3" result="shadowMatrixOuter3"></feColorMatrix>
19
+ <feMerge>
20
+ <feMergeNode in="shadowMatrixOuter1"></feMergeNode>
21
+ <feMergeNode in="shadowMatrixOuter2"></feMergeNode>
22
+ <feMergeNode in="shadowMatrixOuter3"></feMergeNode>
23
+ </feMerge>
24
+ </filter>
25
+ </defs>
26
+ <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
27
+ <g id="TreeSelect" transform="translate(21.000000, 2.000000)">
28
+ <g id="编组-60">
29
+ <g id="Rectangle-26-Copy-35">
30
+ <use fill="#FFFFFF" fill-rule="evenodd" xlink:href="#path-1"></use>
31
+ <path stroke="#BAE7FF" stroke-width="1.13207547" d="M138.103969,-0.566037736 L1.14131435,-0.566037736 C0.666419656,-0.566037736 0.24163062,-0.376287775 -0.0654012936,-0.0714758084 C-0.37547319,0.236354161 -0.566037736,0.662248706 -0.566037736,1.13306225 L-0.566037736,16.9801453 C-0.566037736,17.452082 -0.374648667,17.876621 -0.0654811121,18.1835532 C0.243107769,18.4899109 0.669639991,18.6792453 1.14131435,18.6792453 L138.103969,18.6792453 C138.578863,18.6792453 139.003652,18.4894953 139.310684,18.1846834 C139.620756,17.8768534 139.811321,17.4509588 139.811321,16.9801453 L139.811321,1.13306225 C139.811321,0.661125515 139.619932,0.236586536 139.310764,-0.0703456306 C139.002175,-0.376703308 138.575643,-0.566037736 138.103969,-0.566037736 Z"></path>
32
+ <path stroke="#40A9FF" stroke-width="0.566037736" d="M138.103969,0.283018868 L1.14131435,0.283018868 C0.902207314,0.283018868 0.687620599,0.377361238 0.532790122,0.531072237 C0.377825997,0.684915917 0.283018868,0.897884152 0.283018868,1.13306225 L0.283018868,16.9801453 C0.283018868,17.215717 0.378343384,17.4277543 0.532710303,17.5810051 C0.688336047,17.7355056 0.903663068,17.8301887 1.14131435,17.8301887 L138.103969,17.8301887 C138.343076,17.8301887 138.557662,17.7358463 138.712493,17.5821353 C138.867457,17.4282916 138.962264,17.2153234 138.962264,16.9801453 L138.962264,1.13306225 C138.962264,0.89749055 138.86694,0.685453208 138.712573,0.532202415 C138.556947,0.377701898 138.34162,0.283018868 138.103969,0.283018868 Z" stroke-linejoin="square"></path>
33
+ </g>
34
+ <text id="Please-Select" font-family="PingFangSC-Regular, PingFang SC" font-size="7.9245283" font-weight="normal" line-spacing="12.4528302" fill="#000000" fill-opacity="0.25">
35
+ <tspan x="6.79245283" y="10.8301887">Please Select</tspan>
36
+ </text>
37
+ <g id="1.通用/2.Icon图标/Line/Down" transform="translate(127.924528, 9.056604) scale(1, -1) translate(-127.924528, -9.056604) translate(123.396226, 4.528302)" fill="#000000">
38
+ <g id="up" stroke-width="1" opacity="0">
39
+ <rect id="矩形" fill-rule="nonzero" x="0" y="0" width="9.05660377" height="9.05660377"></rect>
40
+ </g>
41
+ <path d="M7.78313088,2.26415094 L7.11980541,2.26415094 C7.07469928,2.26415094 7.03224645,2.28626179 7.00571343,2.32252358 L4.49303655,5.78596698 L1.98035966,2.32252358 C1.95382664,2.28626179 1.91137381,2.26415094 1.86626768,2.26415094 L1.20294221,2.26415094 C1.145454,2.26415094 1.11184551,2.32959906 1.145454,2.37647406 L4.26396815,6.67570755 C4.3771757,6.83136792 4.60889739,6.83136792 4.72122051,6.67570755 L7.83973466,2.37647406 C7.87422758,2.32959906 7.84061909,2.26415094 7.78313088,2.26415094 Z" id="路径" fill-opacity="0.25"></path>
42
+ </g>
43
+ </g>
44
+ <g id="Rectangle-3-Copy-23">
45
+ <use fill="black" fill-opacity="1" filter="url(#filter-3)" xlink:href="#path-2"></use>
46
+ <use fill="#FFFFFF" fill-rule="evenodd" xlink:href="#path-2"></use>
47
+ </g>
48
+ <g id="Tree备份" transform="translate(6.000000, 25.000000)">
49
+ <g id="编组-15">
50
+ <g id="编组-12" transform="translate(0.000000, 4.556962)">
51
+ <rect id="矩形" x="0" y="0" width="9.11392405" height="6.07594937"></rect>
52
+ <path d="M7.36230459,4.76344335 L4.61669573,1.58717534 C4.53810644,1.49625801 4.38678025,1.49625801 4.3073549,1.58717534 L1.56174605,4.76344335 C1.45974718,4.88188612 1.55171337,5.05537975 1.71641646,5.05537975 L7.20763417,5.05537975 C7.37233726,5.05537975 7.46430345,4.88188612 7.36230459,4.76344335 Z" id="Path" fill-opacity="0.65" fill="#000000" transform="translate(4.462025, 3.287184) scale(1, -1) translate(-4.462025, -3.287184) "></path>
53
+ </g>
54
+ <text id="|||||||||||||||" font-family="PingFangSC-Regular, PingFang SC" font-size="10.6329114" font-weight="normal" fill="#000000" fill-opacity="0.65">
55
+ <tspan x="16" y="11">|||||||||||||||</tspan>
56
+ </text>
57
+ </g>
58
+ <g id="编组-15备份" transform="translate(16.000000, 62.000000)" fill="#000000" fill-opacity="0.65" font-family="PingFangSC-Regular, PingFang SC" font-size="10.6329114" font-weight="normal">
59
+ <text id="|||||||||||||||">
60
+ <tspan x="0" y="11">|||||||||||||||</tspan>
61
+ </text>
62
+ </g>
63
+ <text id="||||||||||||||||||" font-family="PingFangSC-Regular, PingFang SC" font-size="10.6329114" font-weight="normal" fill="#000000" fill-opacity="0.65">
64
+ <tspan x="31" y="26">||||||||||||||||||</tspan>
65
+ </text>
66
+ <text id="||||||||||||||||||备份" font-family="PingFangSC-Regular, PingFang SC" font-size="10.6329114" font-weight="normal" fill="#000000" fill-opacity="0.65">
67
+ <tspan x="31" y="41">||||||||||||||||||</tspan>
68
+ </text>
69
+ <g id="编组-13备份-2" transform="translate(30.569620, 45.569620)" fill="#000000" fill-opacity="0.65" font-family="PingFangSC-Regular, PingFang SC" font-size="10.6329114" font-weight="normal">
70
+ <text id="|||||||||||||||||">
71
+ <tspan x="0" y="11">|||||||||||||||||</tspan>
72
+ </text>
73
+ </g>
74
+ </g>
75
+ </g>
76
+ </g>
77
+ </svg>
@@ -0,0 +1,26 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="160px" height="100px" viewBox="0 0 100 34" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
+ <g id="Ant-Design-组件缩略图" transform="translate(-2013.000000, -355.000000)">
5
+ <g id="Upload" transform="translate(2013.000000, 355.000000)">
6
+ <g id="1.Button/1.Default/2.Icon.2.Secondary-#">
7
+ <g id="9.Box/1.Cards/4.Border" fill-rule="nonzero">
8
+ <g id="Z/Shape/RectangleRC/2px/RC-A">
9
+ <rect id="BG/fill" fill="#FFFFFF" x="1" y="1" width="97" height="30" rx="1"></rect>
10
+ <rect id="outline" stroke="#000000" stroke-width="1" opacity="0.15" x="0.5" y="0.5" width="98" height="31" rx="2"></rect>
11
+ </g>
12
+ </g>
13
+ <text id="✏️Text" opacity="0.65" font-family="PingFangSC-Regular, PingFang SC" font-size="14" font-weight="normal" line-spacing="22" fill="#000000">
14
+ <tspan x="40" y="20">Upload</tspan>
15
+ </text>
16
+ <g id="7.Icon/interface/19.upload" transform="translate(16.000000, 8.000000)" fill="#000000" fill-rule="evenodd" stroke-width="1">
17
+ <g id="upload">
18
+ <rect id="Rectangle" opacity="0" x="0" y="0" width="16" height="16"></rect>
19
+ <path d="M6.25,4.9640625 L7.4046875,4.9640625 L7.4046875,10.25 C7.4046875,10.31875 7.4609375,10.375 7.5296875,10.375 L8.4671875,10.375 C8.5359375,10.375 8.5921875,10.31875 8.5921875,10.25 L8.5921875,4.9640625 L9.75,4.9640625 C9.8546875,4.9640625 9.9125,4.84375 9.8484375,4.7625 L8.0984375,2.546875 C8.0484375,2.4828125 7.9515625,2.4828125 7.9015625,2.546875 L6.1515625,4.7609375 C6.0875,4.84375 6.1453125,4.9640625 6.25,4.9640625 L6.25,4.9640625 Z M13.71875,9.78125 L12.78125,9.78125 C12.7125,9.78125 12.65625,9.8375 12.65625,9.90625 L12.65625,12.3125 L3.34375,12.3125 L3.34375,9.90625 C3.34375,9.8375 3.2875,9.78125 3.21875,9.78125 L2.28125,9.78125 C2.2125,9.78125 2.15625,9.8375 2.15625,9.90625 L2.15625,13 C2.15625,13.2765625 2.3796875,13.5 2.65625,13.5 L13.34375,13.5 C13.6203125,13.5 13.84375,13.2765625 13.84375,13 L13.84375,9.90625 C13.84375,9.8375 13.7875,9.78125 13.71875,9.78125 Z" id="Shape" fill-rule="nonzero" opacity="0.65"></path>
20
+ </g>
21
+ </g>
22
+ </g>
23
+ </g>
24
+ </g>
25
+ </g>
26
+ </svg>