@mdesignable/react 1.0.0-beta.64

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 (625) hide show
  1. package/LICENSE.md +20 -0
  2. package/README.md +1 -0
  3. package/dist/designable.react.umd.production.css +1 -0
  4. package/dist/designable.react.umd.production.js +6 -0
  5. package/dist/designable.react.umd.production.min.css +1 -0
  6. package/dist/designable.react.umd.production.min.js +3580 -0
  7. package/esm/containers/Designer.d.ts +3 -0
  8. package/esm/containers/Designer.js +49 -0
  9. package/esm/containers/Layout.d.ts +3 -0
  10. package/esm/containers/Layout.js +33 -0
  11. package/esm/containers/Simulator.d.ts +3 -0
  12. package/esm/containers/Simulator.js +29 -0
  13. package/esm/containers/Viewport.d.ts +6 -0
  14. package/esm/containers/Viewport.js +84 -0
  15. package/esm/containers/Workbench.d.ts +2 -0
  16. package/esm/containers/Workbench.js +9 -0
  17. package/esm/containers/Workspace.d.ts +7 -0
  18. package/esm/containers/Workspace.js +38 -0
  19. package/esm/containers/index.d.ts +7 -0
  20. package/esm/containers/index.js +7 -0
  21. package/esm/containers/styles.less +19 -0
  22. package/esm/context.d.ts +7 -0
  23. package/esm/context.js +6 -0
  24. package/esm/hooks/index.d.ts +25 -0
  25. package/esm/hooks/index.js +25 -0
  26. package/esm/hooks/useComponents.d.ts +1 -0
  27. package/esm/hooks/useComponents.js +3 -0
  28. package/esm/hooks/useCursor.d.ts +1 -0
  29. package/esm/hooks/useCursor.js +5 -0
  30. package/esm/hooks/useDesigner.d.ts +5 -0
  31. package/esm/hooks/useDesigner.js +13 -0
  32. package/esm/hooks/useHistory.d.ts +1 -0
  33. package/esm/hooks/useHistory.js +5 -0
  34. package/esm/hooks/useHover.d.ts +1 -0
  35. package/esm/hooks/useHover.js +5 -0
  36. package/esm/hooks/useLayout.d.ts +2 -0
  37. package/esm/hooks/useLayout.js +7 -0
  38. package/esm/hooks/useMoveHelper.d.ts +1 -0
  39. package/esm/hooks/useMoveHelper.js +5 -0
  40. package/esm/hooks/useNodeIdProps.d.ts +4 -0
  41. package/esm/hooks/useNodeIdProps.js +10 -0
  42. package/esm/hooks/useOperation.d.ts +1 -0
  43. package/esm/hooks/useOperation.js +5 -0
  44. package/esm/hooks/useOutline.d.ts +1 -0
  45. package/esm/hooks/useOutline.js +5 -0
  46. package/esm/hooks/usePosition.d.ts +1 -0
  47. package/esm/hooks/usePosition.js +5 -0
  48. package/esm/hooks/usePrefix.d.ts +1 -0
  49. package/esm/hooks/usePrefix.js +6 -0
  50. package/esm/hooks/useRegistry.d.ts +2 -0
  51. package/esm/hooks/useRegistry.js +5 -0
  52. package/esm/hooks/useScreen.d.ts +1 -0
  53. package/esm/hooks/useScreen.js +4 -0
  54. package/esm/hooks/useSelected.d.ts +1 -0
  55. package/esm/hooks/useSelected.js +5 -0
  56. package/esm/hooks/useSelectedNode.d.ts +6 -0
  57. package/esm/hooks/useSelectedNode.js +13 -0
  58. package/esm/hooks/useSelection.d.ts +1 -0
  59. package/esm/hooks/useSelection.js +5 -0
  60. package/esm/hooks/useTheme.d.ts +1 -0
  61. package/esm/hooks/useTheme.js +5 -0
  62. package/esm/hooks/useTransformHelper.d.ts +1 -0
  63. package/esm/hooks/useTransformHelper.js +5 -0
  64. package/esm/hooks/useTree.d.ts +1 -0
  65. package/esm/hooks/useTree.js +5 -0
  66. package/esm/hooks/useTreeNode.d.ts +1 -0
  67. package/esm/hooks/useTreeNode.js +5 -0
  68. package/esm/hooks/useValidNodeOffsetRect.d.ts +2 -0
  69. package/esm/hooks/useValidNodeOffsetRect.js +54 -0
  70. package/esm/hooks/useViewport.d.ts +1 -0
  71. package/esm/hooks/useViewport.js +5 -0
  72. package/esm/hooks/useWorkbench.d.ts +1 -0
  73. package/esm/hooks/useWorkbench.js +5 -0
  74. package/esm/hooks/useWorkspace.d.ts +2 -0
  75. package/esm/hooks/useWorkspace.js +15 -0
  76. package/esm/icons/actions.d.ts +7 -0
  77. package/esm/icons/actions.js +28 -0
  78. package/esm/icons/add.d.ts +2 -0
  79. package/esm/icons/add.js +4 -0
  80. package/esm/icons/animations.d.ts +24 -0
  81. package/esm/icons/animations.js +24 -0
  82. package/esm/icons/boolean.d.ts +2 -0
  83. package/esm/icons/boolean.js +3 -0
  84. package/esm/icons/clone.d.ts +3 -0
  85. package/esm/icons/clone.js +3 -0
  86. package/esm/icons/close.d.ts +2 -0
  87. package/esm/icons/close.js +3 -0
  88. package/esm/icons/code.d.ts +2 -0
  89. package/esm/icons/code.js +2 -0
  90. package/esm/icons/command.d.ts +2 -0
  91. package/esm/icons/command.js +4 -0
  92. package/esm/icons/component.d.ts +2 -0
  93. package/esm/icons/component.js +2 -0
  94. package/esm/icons/container.d.ts +2 -0
  95. package/esm/icons/container.js +4 -0
  96. package/esm/icons/corner.d.ts +5 -0
  97. package/esm/icons/corner.js +5 -0
  98. package/esm/icons/delete.d.ts +2 -0
  99. package/esm/icons/delete.js +5 -0
  100. package/esm/icons/design.d.ts +2 -0
  101. package/esm/icons/design.js +3 -0
  102. package/esm/icons/display.d.ts +5 -0
  103. package/esm/icons/display.js +5 -0
  104. package/esm/icons/dragmove.d.ts +2 -0
  105. package/esm/icons/dragmove.js +3 -0
  106. package/esm/icons/expand.d.ts +2 -0
  107. package/esm/icons/expand.js +2 -0
  108. package/esm/icons/expression.d.ts +2 -0
  109. package/esm/icons/expression.js +2 -0
  110. package/esm/icons/eyes.d.ts +3 -0
  111. package/esm/icons/eyes.js +7 -0
  112. package/esm/icons/flex.d.ts +22 -0
  113. package/esm/icons/flex.js +22 -0
  114. package/esm/icons/flip.d.ts +2 -0
  115. package/esm/icons/flip.js +2 -0
  116. package/esm/icons/focus.d.ts +2 -0
  117. package/esm/icons/focus.js +2 -0
  118. package/esm/icons/font.d.ts +16 -0
  119. package/esm/icons/font.js +16 -0
  120. package/esm/icons/formula.d.ts +2 -0
  121. package/esm/icons/formula.js +2 -0
  122. package/esm/icons/freemove.d.ts +2 -0
  123. package/esm/icons/freemove.js +3 -0
  124. package/esm/icons/help.d.ts +2 -0
  125. package/esm/icons/help.js +4 -0
  126. package/esm/icons/hidden.d.ts +2 -0
  127. package/esm/icons/hidden.js +2 -0
  128. package/esm/icons/history.d.ts +2 -0
  129. package/esm/icons/history.js +3 -0
  130. package/esm/icons/image.d.ts +3 -0
  131. package/esm/icons/image.js +3 -0
  132. package/esm/icons/index.d.ts +53 -0
  133. package/esm/icons/index.js +53 -0
  134. package/esm/icons/json.d.ts +2 -0
  135. package/esm/icons/json.js +2 -0
  136. package/esm/icons/logo.d.ts +4 -0
  137. package/esm/icons/logo.js +4 -0
  138. package/esm/icons/menu.d.ts +2 -0
  139. package/esm/icons/menu.js +3 -0
  140. package/esm/icons/mobile.d.ts +2 -0
  141. package/esm/icons/mobile.js +4 -0
  142. package/esm/icons/move.d.ts +2 -0
  143. package/esm/icons/move.js +2 -0
  144. package/esm/icons/number.d.ts +2 -0
  145. package/esm/icons/number.js +3 -0
  146. package/esm/icons/outline.d.ts +2 -0
  147. package/esm/icons/outline.js +2 -0
  148. package/esm/icons/page.d.ts +2 -0
  149. package/esm/icons/page.js +5 -0
  150. package/esm/icons/pc.d.ts +2 -0
  151. package/esm/icons/pc.js +3 -0
  152. package/esm/icons/play.d.ts +2 -0
  153. package/esm/icons/play.js +2 -0
  154. package/esm/icons/position.d.ts +6 -0
  155. package/esm/icons/position.js +6 -0
  156. package/esm/icons/pushpin.d.ts +3 -0
  157. package/esm/icons/pushpin.js +5 -0
  158. package/esm/icons/recover.d.ts +2 -0
  159. package/esm/icons/recover.js +2 -0
  160. package/esm/icons/redo.d.ts +2 -0
  161. package/esm/icons/redo.js +2 -0
  162. package/esm/icons/remove.d.ts +2 -0
  163. package/esm/icons/remove.js +2 -0
  164. package/esm/icons/responsive.d.ts +2 -0
  165. package/esm/icons/responsive.js +5 -0
  166. package/esm/icons/return.d.ts +2 -0
  167. package/esm/icons/return.js +2 -0
  168. package/esm/icons/selection.d.ts +2 -0
  169. package/esm/icons/selection.js +2 -0
  170. package/esm/icons/setting.d.ts +2 -0
  171. package/esm/icons/setting.js +2 -0
  172. package/esm/icons/shadow.d.ts +5 -0
  173. package/esm/icons/shadow.js +5 -0
  174. package/esm/icons/shift.d.ts +2 -0
  175. package/esm/icons/shift.js +2 -0
  176. package/esm/icons/sources.d.ts +75 -0
  177. package/esm/icons/sources.js +544 -0
  178. package/esm/icons/text.d.ts +3 -0
  179. package/esm/icons/text.js +5 -0
  180. package/esm/icons/undo.d.ts +2 -0
  181. package/esm/icons/undo.js +3 -0
  182. package/esm/icons/upload.d.ts +2 -0
  183. package/esm/icons/upload.js +4 -0
  184. package/esm/index.d.ts +9 -0
  185. package/esm/index.js +9 -0
  186. package/esm/locales/global.d.ts +17 -0
  187. package/esm/locales/global.js +16 -0
  188. package/esm/locales/icons.d.ts +133 -0
  189. package/esm/locales/icons.js +132 -0
  190. package/esm/locales/index.d.ts +1 -0
  191. package/esm/locales/index.js +6 -0
  192. package/esm/locales/operations.d.ts +51 -0
  193. package/esm/locales/operations.js +50 -0
  194. package/esm/locales/panels.d.ts +27 -0
  195. package/esm/locales/panels.js +26 -0
  196. package/esm/panels/CompositePanel.d.ts +22 -0
  197. package/esm/panels/CompositePanel.js +140 -0
  198. package/esm/panels/SettingsPanel.d.ts +6 -0
  199. package/esm/panels/SettingsPanel.js +69 -0
  200. package/esm/panels/SourceBarPanel.d.ts +4 -0
  201. package/esm/panels/SourceBarPanel.js +31 -0
  202. package/esm/panels/StudioPanel.d.ts +12 -0
  203. package/esm/panels/StudioPanel.js +44 -0
  204. package/esm/panels/ToolbarPanel.d.ts +3 -0
  205. package/esm/panels/ToolbarPanel.js +16 -0
  206. package/esm/panels/ViewPanel.d.ts +9 -0
  207. package/esm/panels/ViewPanel.js +57 -0
  208. package/esm/panels/ViewportPanel.d.ts +3 -0
  209. package/esm/panels/ViewportPanel.js +18 -0
  210. package/esm/panels/WorkspacePanel.d.ts +8 -0
  211. package/esm/panels/WorkspacePanel.js +21 -0
  212. package/esm/panels/index.d.ts +9 -0
  213. package/esm/panels/index.js +9 -0
  214. package/esm/panels/sourceBarPanel.less +4 -0
  215. package/esm/panels/styles.less +331 -0
  216. package/esm/simulators/MobileSimulator/body.d.ts +4 -0
  217. package/esm/simulators/MobileSimulator/body.js +57 -0
  218. package/esm/simulators/MobileSimulator/index.d.ts +7 -0
  219. package/esm/simulators/MobileSimulator/index.js +22 -0
  220. package/esm/simulators/MobileSimulator/styles.less +29 -0
  221. package/esm/simulators/PCSimulator/index.d.ts +7 -0
  222. package/esm/simulators/PCSimulator/index.js +19 -0
  223. package/esm/simulators/PCSimulator/styles.less +11 -0
  224. package/esm/simulators/ResponsiveSimulator/handle.d.ts +10 -0
  225. package/esm/simulators/ResponsiveSimulator/handle.js +28 -0
  226. package/esm/simulators/ResponsiveSimulator/index.d.ts +7 -0
  227. package/esm/simulators/ResponsiveSimulator/index.js +157 -0
  228. package/esm/simulators/ResponsiveSimulator/styles.less +56 -0
  229. package/esm/simulators/index.d.ts +3 -0
  230. package/esm/simulators/index.js +3 -0
  231. package/esm/theme.less +224 -0
  232. package/esm/types.d.ts +32 -0
  233. package/esm/types.js +1 -0
  234. package/esm/variables.less +1 -0
  235. package/esm/widgets/AuxToolWidget/Copy.d.ts +7 -0
  236. package/esm/widgets/AuxToolWidget/Copy.js +16 -0
  237. package/esm/widgets/AuxToolWidget/Cover.d.ts +2 -0
  238. package/esm/widgets/AuxToolWidget/Cover.js +52 -0
  239. package/esm/widgets/AuxToolWidget/DashedBox.d.ts +2 -0
  240. package/esm/widgets/AuxToolWidget/DashedBox.js +43 -0
  241. package/esm/widgets/AuxToolWidget/Delete.d.ts +7 -0
  242. package/esm/widgets/AuxToolWidget/Delete.js +16 -0
  243. package/esm/widgets/AuxToolWidget/DragHandler.d.ts +7 -0
  244. package/esm/widgets/AuxToolWidget/DragHandler.js +30 -0
  245. package/esm/widgets/AuxToolWidget/FreeSelection.d.ts +2 -0
  246. package/esm/widgets/AuxToolWidget/FreeSelection.js +43 -0
  247. package/esm/widgets/AuxToolWidget/Helpers.d.ts +15 -0
  248. package/esm/widgets/AuxToolWidget/Helpers.js +100 -0
  249. package/esm/widgets/AuxToolWidget/Insertion.d.ts +2 -0
  250. package/esm/widgets/AuxToolWidget/Insertion.js +70 -0
  251. package/esm/widgets/AuxToolWidget/ResizeHandler.d.ts +6 -0
  252. package/esm/widgets/AuxToolWidget/ResizeHandler.js +39 -0
  253. package/esm/widgets/AuxToolWidget/Selection.d.ts +8 -0
  254. package/esm/widgets/AuxToolWidget/Selection.js +69 -0
  255. package/esm/widgets/AuxToolWidget/Selector.d.ts +7 -0
  256. package/esm/widgets/AuxToolWidget/Selector.js +101 -0
  257. package/esm/widgets/AuxToolWidget/SnapLine.d.ts +2 -0
  258. package/esm/widgets/AuxToolWidget/SnapLine.js +30 -0
  259. package/esm/widgets/AuxToolWidget/SpaceBlock.d.ts +2 -0
  260. package/esm/widgets/AuxToolWidget/SpaceBlock.js +68 -0
  261. package/esm/widgets/AuxToolWidget/TranslateHandler.d.ts +6 -0
  262. package/esm/widgets/AuxToolWidget/TranslateHandler.js +32 -0
  263. package/esm/widgets/AuxToolWidget/index.d.ts +6 -0
  264. package/esm/widgets/AuxToolWidget/index.js +34 -0
  265. package/esm/widgets/AuxToolWidget/styles.less +383 -0
  266. package/esm/widgets/ComponentTreeWidget/index.d.ts +15 -0
  267. package/esm/widgets/ComponentTreeWidget/index.js +106 -0
  268. package/esm/widgets/ComponentTreeWidget/styles.less +6 -0
  269. package/esm/widgets/DesignerToolsWidget/index.d.ts +10 -0
  270. package/esm/widgets/DesignerToolsWidget/index.js +109 -0
  271. package/esm/widgets/DesignerToolsWidget/styles.less +29 -0
  272. package/esm/widgets/DroppableWidget/index.d.ts +15 -0
  273. package/esm/widgets/DroppableWidget/index.js +43 -0
  274. package/esm/widgets/DroppableWidget/styles.less +11 -0
  275. package/esm/widgets/EmptyWidget/index.d.ts +6 -0
  276. package/esm/widgets/EmptyWidget/index.js +46 -0
  277. package/esm/widgets/EmptyWidget/styles.less +27 -0
  278. package/esm/widgets/GhostWidget/index.d.ts +3 -0
  279. package/esm/widgets/GhostWidget/index.js +35 -0
  280. package/esm/widgets/GhostWidget/styles.less +20 -0
  281. package/esm/widgets/HistoryWidget/index.d.ts +3 -0
  282. package/esm/widgets/HistoryWidget/index.js +28 -0
  283. package/esm/widgets/HistoryWidget/styles.less +23 -0
  284. package/esm/widgets/IconWidget/index.d.ts +22 -0
  285. package/esm/widgets/IconWidget/index.js +108 -0
  286. package/esm/widgets/IconWidget/styles.less +17 -0
  287. package/esm/widgets/NodeActionsWidget/index.d.ts +17 -0
  288. package/esm/widgets/NodeActionsWidget/index.js +48 -0
  289. package/esm/widgets/NodeActionsWidget/styles.less +53 -0
  290. package/esm/widgets/NodePathWidget/index.d.ts +7 -0
  291. package/esm/widgets/NodePathWidget/index.js +34 -0
  292. package/esm/widgets/NodePathWidget/styles.less +16 -0
  293. package/esm/widgets/NodeTitleWidget/index.d.ts +6 -0
  294. package/esm/widgets/NodeTitleWidget/index.js +13 -0
  295. package/esm/widgets/OutlineWidget/Insertion.d.ts +5 -0
  296. package/esm/widgets/OutlineWidget/Insertion.js +52 -0
  297. package/esm/widgets/OutlineWidget/OutlineNode.d.ts +10 -0
  298. package/esm/widgets/OutlineWidget/OutlineNode.js +140 -0
  299. package/esm/widgets/OutlineWidget/context.d.ts +8 -0
  300. package/esm/widgets/OutlineWidget/context.js +2 -0
  301. package/esm/widgets/OutlineWidget/index.d.ts +10 -0
  302. package/esm/widgets/OutlineWidget/index.js +65 -0
  303. package/esm/widgets/OutlineWidget/styles.less +195 -0
  304. package/esm/widgets/ResourceWidget/index.d.ts +12 -0
  305. package/esm/widgets/ResourceWidget/index.js +69 -0
  306. package/esm/widgets/ResourceWidget/styles.less +87 -0
  307. package/esm/widgets/SimpleResourceWidget/index.d.ts +10 -0
  308. package/esm/widgets/SimpleResourceWidget/index.js +42 -0
  309. package/esm/widgets/SimpleResourceWidget/styles.less +57 -0
  310. package/esm/widgets/TextWidget/index.d.ts +9 -0
  311. package/esm/widgets/TextWidget/index.js +32 -0
  312. package/esm/widgets/ViewToolsWidget/index.d.ts +8 -0
  313. package/esm/widgets/ViewToolsWidget/index.js +31 -0
  314. package/esm/widgets/index.d.ts +16 -0
  315. package/esm/widgets/index.js +16 -0
  316. package/lib/containers/Designer.d.ts +3 -0
  317. package/lib/containers/Designer.js +76 -0
  318. package/lib/containers/Layout.d.ts +3 -0
  319. package/lib/containers/Layout.js +63 -0
  320. package/lib/containers/Simulator.d.ts +3 -0
  321. package/lib/containers/Simulator.js +35 -0
  322. package/lib/containers/Viewport.d.ts +6 -0
  323. package/lib/containers/Viewport.js +114 -0
  324. package/lib/containers/Workbench.d.ts +2 -0
  325. package/lib/containers/Workbench.js +15 -0
  326. package/lib/containers/Workspace.d.ts +7 -0
  327. package/lib/containers/Workspace.js +65 -0
  328. package/lib/containers/index.d.ts +7 -0
  329. package/lib/containers/index.js +23 -0
  330. package/lib/containers/styles.less +19 -0
  331. package/lib/context.d.ts +7 -0
  332. package/lib/context.js +9 -0
  333. package/lib/hooks/index.d.ts +25 -0
  334. package/lib/hooks/index.js +41 -0
  335. package/lib/hooks/useComponents.d.ts +1 -0
  336. package/lib/hooks/useComponents.js +7 -0
  337. package/lib/hooks/useCursor.d.ts +1 -0
  338. package/lib/hooks/useCursor.js +9 -0
  339. package/lib/hooks/useDesigner.d.ts +5 -0
  340. package/lib/hooks/useDesigner.js +17 -0
  341. package/lib/hooks/useHistory.d.ts +1 -0
  342. package/lib/hooks/useHistory.js +9 -0
  343. package/lib/hooks/useHover.d.ts +1 -0
  344. package/lib/hooks/useHover.js +9 -0
  345. package/lib/hooks/useLayout.d.ts +2 -0
  346. package/lib/hooks/useLayout.js +11 -0
  347. package/lib/hooks/useMoveHelper.d.ts +1 -0
  348. package/lib/hooks/useMoveHelper.js +9 -0
  349. package/lib/hooks/useNodeIdProps.d.ts +4 -0
  350. package/lib/hooks/useNodeIdProps.js +14 -0
  351. package/lib/hooks/useOperation.d.ts +1 -0
  352. package/lib/hooks/useOperation.js +9 -0
  353. package/lib/hooks/useOutline.d.ts +1 -0
  354. package/lib/hooks/useOutline.js +9 -0
  355. package/lib/hooks/usePosition.d.ts +1 -0
  356. package/lib/hooks/usePosition.js +9 -0
  357. package/lib/hooks/usePrefix.d.ts +1 -0
  358. package/lib/hooks/usePrefix.js +10 -0
  359. package/lib/hooks/useRegistry.d.ts +2 -0
  360. package/lib/hooks/useRegistry.js +9 -0
  361. package/lib/hooks/useScreen.d.ts +1 -0
  362. package/lib/hooks/useScreen.js +8 -0
  363. package/lib/hooks/useSelected.d.ts +1 -0
  364. package/lib/hooks/useSelected.js +9 -0
  365. package/lib/hooks/useSelectedNode.d.ts +6 -0
  366. package/lib/hooks/useSelectedNode.js +17 -0
  367. package/lib/hooks/useSelection.d.ts +1 -0
  368. package/lib/hooks/useSelection.js +9 -0
  369. package/lib/hooks/useTheme.d.ts +1 -0
  370. package/lib/hooks/useTheme.js +9 -0
  371. package/lib/hooks/useTransformHelper.d.ts +1 -0
  372. package/lib/hooks/useTransformHelper.js +9 -0
  373. package/lib/hooks/useTree.d.ts +1 -0
  374. package/lib/hooks/useTree.js +9 -0
  375. package/lib/hooks/useTreeNode.d.ts +1 -0
  376. package/lib/hooks/useTreeNode.js +9 -0
  377. package/lib/hooks/useValidNodeOffsetRect.d.ts +2 -0
  378. package/lib/hooks/useValidNodeOffsetRect.js +58 -0
  379. package/lib/hooks/useViewport.d.ts +1 -0
  380. package/lib/hooks/useViewport.js +9 -0
  381. package/lib/hooks/useWorkbench.d.ts +1 -0
  382. package/lib/hooks/useWorkbench.js +9 -0
  383. package/lib/hooks/useWorkspace.d.ts +2 -0
  384. package/lib/hooks/useWorkspace.js +19 -0
  385. package/lib/icons/actions.d.ts +7 -0
  386. package/lib/icons/actions.js +34 -0
  387. package/lib/icons/add.d.ts +2 -0
  388. package/lib/icons/add.js +10 -0
  389. package/lib/icons/animations.d.ts +24 -0
  390. package/lib/icons/animations.js +27 -0
  391. package/lib/icons/boolean.d.ts +2 -0
  392. package/lib/icons/boolean.js +9 -0
  393. package/lib/icons/clone.d.ts +3 -0
  394. package/lib/icons/clone.js +9 -0
  395. package/lib/icons/close.d.ts +2 -0
  396. package/lib/icons/close.js +9 -0
  397. package/lib/icons/code.d.ts +2 -0
  398. package/lib/icons/code.js +8 -0
  399. package/lib/icons/command.d.ts +2 -0
  400. package/lib/icons/command.js +10 -0
  401. package/lib/icons/component.d.ts +2 -0
  402. package/lib/icons/component.js +8 -0
  403. package/lib/icons/container.d.ts +2 -0
  404. package/lib/icons/container.js +10 -0
  405. package/lib/icons/corner.d.ts +5 -0
  406. package/lib/icons/corner.js +11 -0
  407. package/lib/icons/delete.d.ts +2 -0
  408. package/lib/icons/delete.js +11 -0
  409. package/lib/icons/design.d.ts +2 -0
  410. package/lib/icons/design.js +9 -0
  411. package/lib/icons/display.d.ts +5 -0
  412. package/lib/icons/display.js +11 -0
  413. package/lib/icons/dragmove.d.ts +2 -0
  414. package/lib/icons/dragmove.js +9 -0
  415. package/lib/icons/expand.d.ts +2 -0
  416. package/lib/icons/expand.js +8 -0
  417. package/lib/icons/expression.d.ts +2 -0
  418. package/lib/icons/expression.js +8 -0
  419. package/lib/icons/eyes.d.ts +3 -0
  420. package/lib/icons/eyes.js +13 -0
  421. package/lib/icons/flex.d.ts +22 -0
  422. package/lib/icons/flex.js +28 -0
  423. package/lib/icons/flip.d.ts +2 -0
  424. package/lib/icons/flip.js +8 -0
  425. package/lib/icons/focus.d.ts +2 -0
  426. package/lib/icons/focus.js +8 -0
  427. package/lib/icons/font.d.ts +16 -0
  428. package/lib/icons/font.js +22 -0
  429. package/lib/icons/formula.d.ts +2 -0
  430. package/lib/icons/formula.js +8 -0
  431. package/lib/icons/freemove.d.ts +2 -0
  432. package/lib/icons/freemove.js +9 -0
  433. package/lib/icons/help.d.ts +2 -0
  434. package/lib/icons/help.js +10 -0
  435. package/lib/icons/hidden.d.ts +2 -0
  436. package/lib/icons/hidden.js +8 -0
  437. package/lib/icons/history.d.ts +2 -0
  438. package/lib/icons/history.js +9 -0
  439. package/lib/icons/image.d.ts +3 -0
  440. package/lib/icons/image.js +9 -0
  441. package/lib/icons/index.d.ts +53 -0
  442. package/lib/icons/index.js +69 -0
  443. package/lib/icons/json.d.ts +2 -0
  444. package/lib/icons/json.js +8 -0
  445. package/lib/icons/logo.d.ts +4 -0
  446. package/lib/icons/logo.js +7 -0
  447. package/lib/icons/menu.d.ts +2 -0
  448. package/lib/icons/menu.js +9 -0
  449. package/lib/icons/mobile.d.ts +2 -0
  450. package/lib/icons/mobile.js +10 -0
  451. package/lib/icons/move.d.ts +2 -0
  452. package/lib/icons/move.js +8 -0
  453. package/lib/icons/number.d.ts +2 -0
  454. package/lib/icons/number.js +9 -0
  455. package/lib/icons/outline.d.ts +2 -0
  456. package/lib/icons/outline.js +8 -0
  457. package/lib/icons/page.d.ts +2 -0
  458. package/lib/icons/page.js +11 -0
  459. package/lib/icons/pc.d.ts +2 -0
  460. package/lib/icons/pc.js +9 -0
  461. package/lib/icons/play.d.ts +2 -0
  462. package/lib/icons/play.js +8 -0
  463. package/lib/icons/position.d.ts +6 -0
  464. package/lib/icons/position.js +12 -0
  465. package/lib/icons/pushpin.d.ts +3 -0
  466. package/lib/icons/pushpin.js +11 -0
  467. package/lib/icons/recover.d.ts +2 -0
  468. package/lib/icons/recover.js +8 -0
  469. package/lib/icons/redo.d.ts +2 -0
  470. package/lib/icons/redo.js +8 -0
  471. package/lib/icons/remove.d.ts +2 -0
  472. package/lib/icons/remove.js +8 -0
  473. package/lib/icons/responsive.d.ts +2 -0
  474. package/lib/icons/responsive.js +11 -0
  475. package/lib/icons/return.d.ts +2 -0
  476. package/lib/icons/return.js +8 -0
  477. package/lib/icons/selection.d.ts +2 -0
  478. package/lib/icons/selection.js +8 -0
  479. package/lib/icons/setting.d.ts +2 -0
  480. package/lib/icons/setting.js +8 -0
  481. package/lib/icons/shadow.d.ts +5 -0
  482. package/lib/icons/shadow.js +11 -0
  483. package/lib/icons/shift.d.ts +2 -0
  484. package/lib/icons/shift.js +8 -0
  485. package/lib/icons/sources.d.ts +75 -0
  486. package/lib/icons/sources.js +551 -0
  487. package/lib/icons/text.d.ts +3 -0
  488. package/lib/icons/text.js +11 -0
  489. package/lib/icons/undo.d.ts +2 -0
  490. package/lib/icons/undo.js +9 -0
  491. package/lib/icons/upload.d.ts +2 -0
  492. package/lib/icons/upload.js +10 -0
  493. package/lib/index.d.ts +9 -0
  494. package/lib/index.js +25 -0
  495. package/lib/locales/global.d.ts +17 -0
  496. package/lib/locales/global.js +18 -0
  497. package/lib/locales/icons.d.ts +133 -0
  498. package/lib/locales/icons.js +134 -0
  499. package/lib/locales/index.d.ts +1 -0
  500. package/lib/locales/index.js +11 -0
  501. package/lib/locales/operations.d.ts +51 -0
  502. package/lib/locales/operations.js +52 -0
  503. package/lib/locales/panels.d.ts +27 -0
  504. package/lib/locales/panels.js +28 -0
  505. package/lib/panels/CompositePanel.d.ts +22 -0
  506. package/lib/panels/CompositePanel.js +170 -0
  507. package/lib/panels/SettingsPanel.d.ts +6 -0
  508. package/lib/panels/SettingsPanel.js +98 -0
  509. package/lib/panels/SourceBarPanel.d.ts +4 -0
  510. package/lib/panels/SourceBarPanel.js +38 -0
  511. package/lib/panels/StudioPanel.d.ts +12 -0
  512. package/lib/panels/StudioPanel.js +51 -0
  513. package/lib/panels/ToolbarPanel.d.ts +3 -0
  514. package/lib/panels/ToolbarPanel.js +23 -0
  515. package/lib/panels/ViewPanel.d.ts +9 -0
  516. package/lib/panels/ViewPanel.js +83 -0
  517. package/lib/panels/ViewportPanel.d.ts +3 -0
  518. package/lib/panels/ViewportPanel.js +25 -0
  519. package/lib/panels/WorkspacePanel.d.ts +8 -0
  520. package/lib/panels/WorkspacePanel.js +28 -0
  521. package/lib/panels/index.d.ts +9 -0
  522. package/lib/panels/index.js +25 -0
  523. package/lib/panels/sourceBarPanel.less +4 -0
  524. package/lib/panels/styles.less +331 -0
  525. package/lib/simulators/MobileSimulator/body.d.ts +4 -0
  526. package/lib/simulators/MobileSimulator/body.js +63 -0
  527. package/lib/simulators/MobileSimulator/index.d.ts +7 -0
  528. package/lib/simulators/MobileSimulator/index.js +29 -0
  529. package/lib/simulators/MobileSimulator/styles.less +29 -0
  530. package/lib/simulators/PCSimulator/index.d.ts +7 -0
  531. package/lib/simulators/PCSimulator/index.js +26 -0
  532. package/lib/simulators/PCSimulator/styles.less +11 -0
  533. package/lib/simulators/ResponsiveSimulator/handle.d.ts +10 -0
  534. package/lib/simulators/ResponsiveSimulator/handle.js +35 -0
  535. package/lib/simulators/ResponsiveSimulator/index.d.ts +7 -0
  536. package/lib/simulators/ResponsiveSimulator/index.js +186 -0
  537. package/lib/simulators/ResponsiveSimulator/styles.less +56 -0
  538. package/lib/simulators/index.d.ts +3 -0
  539. package/lib/simulators/index.js +19 -0
  540. package/lib/theme.less +224 -0
  541. package/lib/types.d.ts +32 -0
  542. package/lib/types.js +2 -0
  543. package/lib/variables.less +1 -0
  544. package/lib/widgets/AuxToolWidget/Copy.d.ts +7 -0
  545. package/lib/widgets/AuxToolWidget/Copy.js +23 -0
  546. package/lib/widgets/AuxToolWidget/Cover.d.ts +2 -0
  547. package/lib/widgets/AuxToolWidget/Cover.js +81 -0
  548. package/lib/widgets/AuxToolWidget/DashedBox.d.ts +2 -0
  549. package/lib/widgets/AuxToolWidget/DashedBox.js +49 -0
  550. package/lib/widgets/AuxToolWidget/Delete.d.ts +7 -0
  551. package/lib/widgets/AuxToolWidget/Delete.js +23 -0
  552. package/lib/widgets/AuxToolWidget/DragHandler.d.ts +7 -0
  553. package/lib/widgets/AuxToolWidget/DragHandler.js +36 -0
  554. package/lib/widgets/AuxToolWidget/FreeSelection.d.ts +2 -0
  555. package/lib/widgets/AuxToolWidget/FreeSelection.js +49 -0
  556. package/lib/widgets/AuxToolWidget/Helpers.d.ts +15 -0
  557. package/lib/widgets/AuxToolWidget/Helpers.js +130 -0
  558. package/lib/widgets/AuxToolWidget/Insertion.d.ts +2 -0
  559. package/lib/widgets/AuxToolWidget/Insertion.js +76 -0
  560. package/lib/widgets/AuxToolWidget/ResizeHandler.d.ts +6 -0
  561. package/lib/widgets/AuxToolWidget/ResizeHandler.js +46 -0
  562. package/lib/widgets/AuxToolWidget/Selection.d.ts +8 -0
  563. package/lib/widgets/AuxToolWidget/Selection.js +96 -0
  564. package/lib/widgets/AuxToolWidget/Selector.d.ts +7 -0
  565. package/lib/widgets/AuxToolWidget/Selector.js +127 -0
  566. package/lib/widgets/AuxToolWidget/SnapLine.d.ts +2 -0
  567. package/lib/widgets/AuxToolWidget/SnapLine.js +36 -0
  568. package/lib/widgets/AuxToolWidget/SpaceBlock.d.ts +2 -0
  569. package/lib/widgets/AuxToolWidget/SpaceBlock.js +94 -0
  570. package/lib/widgets/AuxToolWidget/TranslateHandler.d.ts +6 -0
  571. package/lib/widgets/AuxToolWidget/TranslateHandler.js +39 -0
  572. package/lib/widgets/AuxToolWidget/index.d.ts +6 -0
  573. package/lib/widgets/AuxToolWidget/index.js +61 -0
  574. package/lib/widgets/AuxToolWidget/styles.less +383 -0
  575. package/lib/widgets/ComponentTreeWidget/index.d.ts +15 -0
  576. package/lib/widgets/ComponentTreeWidget/index.js +135 -0
  577. package/lib/widgets/ComponentTreeWidget/styles.less +6 -0
  578. package/lib/widgets/DesignerToolsWidget/index.d.ts +10 -0
  579. package/lib/widgets/DesignerToolsWidget/index.js +138 -0
  580. package/lib/widgets/DesignerToolsWidget/styles.less +29 -0
  581. package/lib/widgets/DroppableWidget/index.d.ts +15 -0
  582. package/lib/widgets/DroppableWidget/index.js +49 -0
  583. package/lib/widgets/DroppableWidget/styles.less +11 -0
  584. package/lib/widgets/EmptyWidget/index.d.ts +6 -0
  585. package/lib/widgets/EmptyWidget/index.js +52 -0
  586. package/lib/widgets/EmptyWidget/styles.less +27 -0
  587. package/lib/widgets/GhostWidget/index.d.ts +3 -0
  588. package/lib/widgets/GhostWidget/index.js +61 -0
  589. package/lib/widgets/GhostWidget/styles.less +20 -0
  590. package/lib/widgets/HistoryWidget/index.d.ts +3 -0
  591. package/lib/widgets/HistoryWidget/index.js +34 -0
  592. package/lib/widgets/HistoryWidget/styles.less +23 -0
  593. package/lib/widgets/IconWidget/index.d.ts +22 -0
  594. package/lib/widgets/IconWidget/index.js +137 -0
  595. package/lib/widgets/IconWidget/styles.less +17 -0
  596. package/lib/widgets/NodeActionsWidget/index.d.ts +17 -0
  597. package/lib/widgets/NodeActionsWidget/index.js +54 -0
  598. package/lib/widgets/NodeActionsWidget/styles.less +53 -0
  599. package/lib/widgets/NodePathWidget/index.d.ts +7 -0
  600. package/lib/widgets/NodePathWidget/index.js +40 -0
  601. package/lib/widgets/NodePathWidget/styles.less +16 -0
  602. package/lib/widgets/NodeTitleWidget/index.d.ts +6 -0
  603. package/lib/widgets/NodeTitleWidget/index.js +39 -0
  604. package/lib/widgets/OutlineWidget/Insertion.d.ts +5 -0
  605. package/lib/widgets/OutlineWidget/Insertion.js +58 -0
  606. package/lib/widgets/OutlineWidget/OutlineNode.d.ts +10 -0
  607. package/lib/widgets/OutlineWidget/OutlineNode.js +169 -0
  608. package/lib/widgets/OutlineWidget/context.d.ts +8 -0
  609. package/lib/widgets/OutlineWidget/context.js +5 -0
  610. package/lib/widgets/OutlineWidget/index.d.ts +10 -0
  611. package/lib/widgets/OutlineWidget/index.js +94 -0
  612. package/lib/widgets/OutlineWidget/styles.less +195 -0
  613. package/lib/widgets/ResourceWidget/index.d.ts +12 -0
  614. package/lib/widgets/ResourceWidget/index.js +98 -0
  615. package/lib/widgets/ResourceWidget/styles.less +87 -0
  616. package/lib/widgets/SimpleResourceWidget/index.d.ts +10 -0
  617. package/lib/widgets/SimpleResourceWidget/index.js +48 -0
  618. package/lib/widgets/SimpleResourceWidget/styles.less +57 -0
  619. package/lib/widgets/TextWidget/index.d.ts +9 -0
  620. package/lib/widgets/TextWidget/index.js +58 -0
  621. package/lib/widgets/ViewToolsWidget/index.d.ts +8 -0
  622. package/lib/widgets/ViewToolsWidget/index.js +37 -0
  623. package/lib/widgets/index.d.ts +16 -0
  624. package/lib/widgets/index.js +32 -0
  625. package/package.json +50 -0
@@ -0,0 +1,140 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ var __read = (this && this.__read) || function (o, n) {
13
+ var m = typeof Symbol === "function" && o[Symbol.iterator];
14
+ if (!m) return o;
15
+ var i = m.call(o), r, ar = [], e;
16
+ try {
17
+ while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
18
+ }
19
+ catch (error) { e = { error: error }; }
20
+ finally {
21
+ try {
22
+ if (r && !r.done && (m = i["return"])) m.call(i);
23
+ }
24
+ finally { if (e) throw e.error; }
25
+ }
26
+ return ar;
27
+ };
28
+ import React, { useEffect, useRef, useState } from 'react';
29
+ import { isValid } from '@mdesignable/shared';
30
+ import cls from 'classnames';
31
+ import { IconWidget, TextWidget } from '../widgets';
32
+ import { usePrefix } from '../hooks';
33
+ var parseItems = function (children) {
34
+ var items = [];
35
+ React.Children.forEach(children, function (child, index) {
36
+ var _a;
37
+ if ((child === null || child === void 0 ? void 0 : child['type']) === CompositePanel.Item) {
38
+ items.push(__assign({ key: (_a = child['key']) !== null && _a !== void 0 ? _a : index }, child['props']));
39
+ }
40
+ });
41
+ return items;
42
+ };
43
+ var findItem = function (items, key) {
44
+ for (var index = 0; index < items.length; index++) {
45
+ var item = items[index];
46
+ if (key === index)
47
+ return item;
48
+ if (key === item.key)
49
+ return item;
50
+ }
51
+ };
52
+ var getDefaultKey = function (children) {
53
+ var items = parseItems(children);
54
+ return items === null || items === void 0 ? void 0 : items[0].key;
55
+ };
56
+ export var CompositePanel = function (props) {
57
+ var _a;
58
+ var _b, _c, _d;
59
+ var prefix = usePrefix('composite-panel');
60
+ var _e = __read(useState((_b = props.defaultActiveKey) !== null && _b !== void 0 ? _b : getDefaultKey(props.children)), 2), activeKey = _e[0], setActiveKey = _e[1];
61
+ var activeKeyRef = useRef(null);
62
+ var _f = __read(useState((_c = props.defaultPinning) !== null && _c !== void 0 ? _c : false), 2), pinning = _f[0], setPinning = _f[1];
63
+ var _g = __read(useState((_d = props.defaultOpen) !== null && _d !== void 0 ? _d : true), 2), visible = _g[0], setVisible = _g[1];
64
+ var items = parseItems(props.children);
65
+ var currentItem = findItem(items, activeKey);
66
+ var content = currentItem === null || currentItem === void 0 ? void 0 : currentItem.children;
67
+ activeKeyRef.current = activeKey;
68
+ useEffect(function () {
69
+ if (isValid(props.activeKey)) {
70
+ if (props.activeKey !== activeKeyRef.current) {
71
+ setActiveKey(props.activeKey);
72
+ }
73
+ }
74
+ }, [props.activeKey]);
75
+ var renderContent = function () {
76
+ if (!content || !visible)
77
+ return;
78
+ return (React.createElement("div", { className: cls(prefix + '-tabs-content', {
79
+ pinning: pinning,
80
+ }) },
81
+ React.createElement("div", { className: prefix + '-tabs-header' },
82
+ React.createElement("div", { className: prefix + '-tabs-header-title' },
83
+ React.createElement(TextWidget, null, currentItem.title)),
84
+ React.createElement("div", { className: prefix + '-tabs-header-actions' },
85
+ React.createElement("div", { className: prefix + '-tabs-header-extra' }, currentItem.extra),
86
+ !pinning && (React.createElement(IconWidget, { infer: "PushPinOutlined", className: prefix + '-tabs-header-pin', onClick: function () {
87
+ setPinning(!pinning);
88
+ } })),
89
+ pinning && (React.createElement(IconWidget, { infer: "PushPinFilled", className: prefix + '-tabs-header-pin-filled', onClick: function () {
90
+ setPinning(!pinning);
91
+ } })),
92
+ React.createElement(IconWidget, { infer: "Close", className: prefix + '-tabs-header-close', onClick: function () {
93
+ setVisible(false);
94
+ } }))),
95
+ React.createElement("div", { className: prefix + '-tabs-body' }, content)));
96
+ };
97
+ return (React.createElement("div", { className: cls(prefix, (_a = {},
98
+ _a["direction-".concat(props.direction)] = !!props.direction,
99
+ _a)) },
100
+ React.createElement("div", { className: prefix + '-tabs' }, items.map(function (item, index) {
101
+ var _a;
102
+ var takeTab = function () {
103
+ if (item.href) {
104
+ return React.createElement("a", { href: item.href }, item.icon);
105
+ }
106
+ return (React.createElement(IconWidget, { tooltip: props.showNavTitle
107
+ ? null
108
+ : {
109
+ title: React.createElement(TextWidget, null, item.title),
110
+ placement: props.direction === 'right' ? 'left' : 'right',
111
+ }, infer: item.icon }));
112
+ };
113
+ var shape = (_a = item.shape) !== null && _a !== void 0 ? _a : 'tab';
114
+ var Comp = shape === 'link' ? 'a' : 'div';
115
+ return (React.createElement(Comp, { className: cls(prefix + '-tabs-pane', {
116
+ active: activeKey === item.key,
117
+ }), key: index, href: item.href, onClick: function (e) {
118
+ var _a, _b;
119
+ if (shape === 'tab') {
120
+ if (activeKey === item.key) {
121
+ setVisible(!visible);
122
+ }
123
+ else {
124
+ setVisible(true);
125
+ }
126
+ if (!(props === null || props === void 0 ? void 0 : props.activeKey) || !(props === null || props === void 0 ? void 0 : props.onChange))
127
+ setActiveKey(item.key);
128
+ }
129
+ (_a = item.onClick) === null || _a === void 0 ? void 0 : _a.call(item, e);
130
+ (_b = props.onChange) === null || _b === void 0 ? void 0 : _b.call(props, item.key);
131
+ } },
132
+ takeTab(),
133
+ props.showNavTitle && item.title ? (React.createElement("div", { className: prefix + '-tabs-pane-title' },
134
+ React.createElement(TextWidget, null, item.title))) : null));
135
+ })),
136
+ renderContent()));
137
+ };
138
+ CompositePanel.Item = function () {
139
+ return React.createElement(React.Fragment, null);
140
+ };
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface ISettingPanelProps {
3
+ title?: React.ReactNode;
4
+ extra?: React.ReactNode;
5
+ }
6
+ export declare const SettingsPanel: React.FC<ISettingPanelProps>;
@@ -0,0 +1,69 @@
1
+ var __read = (this && this.__read) || function (o, n) {
2
+ var m = typeof Symbol === "function" && o[Symbol.iterator];
3
+ if (!m) return o;
4
+ var i = m.call(o), r, ar = [], e;
5
+ try {
6
+ while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
7
+ }
8
+ catch (error) { e = { error: error }; }
9
+ finally {
10
+ try {
11
+ if (r && !r.done && (m = i["return"])) m.call(i);
12
+ }
13
+ finally { if (e) throw e.error; }
14
+ }
15
+ return ar;
16
+ };
17
+ import React, { useEffect, useState } from 'react';
18
+ import { requestIdle } from '@mdesignable/shared';
19
+ import { observer } from '@formily/reactive-react';
20
+ import { TextWidget, IconWidget } from '../widgets';
21
+ import { usePrefix, useWorkbench } from '../hooks';
22
+ import cls from 'classnames';
23
+ export var SettingsPanel = observer(function (props) {
24
+ var prefix = usePrefix('settings-panel');
25
+ var workbench = useWorkbench();
26
+ var _a = __read(useState(true), 2), innerVisible = _a[0], setInnerVisible = _a[1];
27
+ var _b = __read(useState(false), 2), pinning = _b[0], setPinning = _b[1];
28
+ var _c = __read(useState(true), 2), visible = _c[0], setVisible = _c[1];
29
+ useEffect(function () {
30
+ if (visible || workbench.type === 'DESIGNABLE') {
31
+ if (!innerVisible) {
32
+ requestIdle(function () {
33
+ requestAnimationFrame(function () {
34
+ setInnerVisible(true);
35
+ });
36
+ });
37
+ }
38
+ }
39
+ }, [visible, workbench.type]);
40
+ if (workbench.type !== 'DESIGNABLE') {
41
+ if (innerVisible)
42
+ setInnerVisible(false);
43
+ return null;
44
+ }
45
+ if (!visible) {
46
+ if (innerVisible)
47
+ setInnerVisible(false);
48
+ return (React.createElement("div", { className: prefix + '-opener', onClick: function () {
49
+ setVisible(true);
50
+ } },
51
+ React.createElement(IconWidget, { infer: "Setting", size: 20 })));
52
+ }
53
+ return (React.createElement("div", { className: cls(prefix, { pinning: pinning }) },
54
+ React.createElement("div", { className: prefix + '-header' },
55
+ React.createElement("div", { className: prefix + '-header-title' },
56
+ React.createElement(TextWidget, null, props.title)),
57
+ React.createElement("div", { className: prefix + '-header-actions' },
58
+ React.createElement("div", { className: prefix + '-header-extra' }, props.extra),
59
+ !pinning && (React.createElement(IconWidget, { infer: "PushPinOutlined", className: prefix + '-header-pin', onClick: function () {
60
+ setPinning(!pinning);
61
+ } })),
62
+ pinning && (React.createElement(IconWidget, { infer: "PushPinFilled", className: prefix + '-pin-filled', onClick: function () {
63
+ setPinning(!pinning);
64
+ } })),
65
+ React.createElement(IconWidget, { infer: "Close", className: prefix + '-header-close', onClick: function () {
66
+ setVisible(false);
67
+ } }))),
68
+ React.createElement("div", { className: prefix + '-body' }, innerVisible && props.children)));
69
+ });
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import './sourceBarPanel.less';
3
+ export type ISourceBarPanelProps = React.HTMLAttributes<HTMLDivElement>;
4
+ export declare const SourceBarPanel: React.FC<ISourceBarPanelProps>;
@@ -0,0 +1,31 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ var __rest = (this && this.__rest) || function (s, e) {
13
+ var t = {};
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
15
+ t[p] = s[p];
16
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
17
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
18
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
19
+ t[p[i]] = s[p[i]];
20
+ }
21
+ return t;
22
+ };
23
+ import React from 'react';
24
+ import { usePrefix } from '../hooks';
25
+ import cls from 'classnames';
26
+ import './sourceBarPanel.less';
27
+ export var SourceBarPanel = function (props) {
28
+ var prefix = usePrefix('sourceBar');
29
+ var className = props.className, rest = __rest(props, ["className"]);
30
+ return (React.createElement("div", __assign({ className: cls(prefix + '-panel', className) }, rest), props.children));
31
+ };
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ import { Layout } from '../containers';
3
+ export interface IStudioPanelProps {
4
+ style?: React.CSSProperties;
5
+ className?: string;
6
+ logo?: React.ReactNode;
7
+ actions?: React.ReactNode;
8
+ prefixCls?: string;
9
+ theme?: string;
10
+ position?: React.ComponentProps<typeof Layout>['position'];
11
+ }
12
+ export declare const StudioPanel: React.FC<IStudioPanelProps>;
@@ -0,0 +1,44 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ var __rest = (this && this.__rest) || function (s, e) {
13
+ var t = {};
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
15
+ t[p] = s[p];
16
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
17
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
18
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
19
+ t[p[i]] = s[p[i]];
20
+ }
21
+ return t;
22
+ };
23
+ import React from 'react';
24
+ import { usePrefix, usePosition } from '../hooks';
25
+ import { Layout } from '../containers';
26
+ import cls from 'classnames';
27
+ var StudioPanelInternal = function (_a) {
28
+ var logo = _a.logo, actions = _a.actions, props = __rest(_a, ["logo", "actions"]);
29
+ var prefix = usePrefix('main-panel');
30
+ var position = usePosition();
31
+ var classNameBase = cls('root', position, props.className);
32
+ if (logo || actions) {
33
+ return (React.createElement("div", __assign({}, props, { className: cls("".concat(prefix, "-container"), classNameBase) }),
34
+ React.createElement("div", { className: prefix + '-header' },
35
+ React.createElement("div", { className: prefix + '-header-logo' }, logo),
36
+ React.createElement("div", { className: prefix + '-header-actions' }, actions)),
37
+ React.createElement("div", { className: prefix }, props.children)));
38
+ }
39
+ return (React.createElement("div", __assign({}, props, { className: cls(prefix, classNameBase) }), props.children));
40
+ };
41
+ export var StudioPanel = function (props) {
42
+ return (React.createElement(Layout, { theme: props.theme, prefixCls: props.prefixCls, position: props.position },
43
+ React.createElement(StudioPanelInternal, __assign({}, props))));
44
+ };
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IWorkspaceItemProps } from './WorkspacePanel';
3
+ export declare const ToolbarPanel: React.FC<IWorkspaceItemProps>;
@@ -0,0 +1,16 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { WorkspacePanel } from './WorkspacePanel';
14
+ export var ToolbarPanel = function (props) {
15
+ return (React.createElement(WorkspacePanel.Item, __assign({}, props, { style: __assign({ display: 'flex', justifyContent: 'space-between', marginBottom: 4, padding: '0 4px' }, props.style) }), props.children));
16
+ };
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import { TreeNode, ITreeNode, WorkbenchTypes } from '@mdesignable/core';
3
+ export interface IViewPanelProps {
4
+ type: WorkbenchTypes;
5
+ children: (tree: TreeNode, onChange: (tree: ITreeNode) => void) => React.ReactElement;
6
+ scrollable?: boolean;
7
+ dragTipsDirection?: 'left' | 'right';
8
+ }
9
+ export declare const ViewPanel: React.FC<IViewPanelProps>;
@@ -0,0 +1,57 @@
1
+ var __read = (this && this.__read) || function (o, n) {
2
+ var m = typeof Symbol === "function" && o[Symbol.iterator];
3
+ if (!m) return o;
4
+ var i = m.call(o), r, ar = [], e;
5
+ try {
6
+ while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
7
+ }
8
+ catch (error) { e = { error: error }; }
9
+ finally {
10
+ try {
11
+ if (r && !r.done && (m = i["return"])) m.call(i);
12
+ }
13
+ finally { if (e) throw e.error; }
14
+ }
15
+ return ar;
16
+ };
17
+ import React, { useEffect, useState } from 'react';
18
+ import { observer } from '@formily/reactive-react';
19
+ import { useTree, useWorkbench } from '../hooks';
20
+ import { Viewport } from '../containers';
21
+ import { requestIdle } from '@mdesignable/shared';
22
+ export var ViewPanel = observer(function (props) {
23
+ var _a = __read(useState(true), 2), visible = _a[0], setVisible = _a[1];
24
+ var workbench = useWorkbench();
25
+ var tree = useTree();
26
+ useEffect(function () {
27
+ if (workbench.type === props.type) {
28
+ requestIdle(function () {
29
+ requestAnimationFrame(function () {
30
+ setVisible(true);
31
+ });
32
+ });
33
+ }
34
+ else {
35
+ setVisible(false);
36
+ }
37
+ }, [workbench.type]);
38
+ if (workbench.type !== props.type)
39
+ return null;
40
+ var render = function () {
41
+ return props.children(tree, function (payload) {
42
+ tree.from(payload);
43
+ tree.takeSnapshot();
44
+ });
45
+ };
46
+ if (workbench.type === 'DESIGNABLE')
47
+ return (React.createElement(Viewport, { dragTipsDirection: props.dragTipsDirection }, render()));
48
+ return (React.createElement("div", { style: {
49
+ overflow: props.scrollable ? 'overlay' : 'hidden',
50
+ height: '100%',
51
+ cursor: 'auto',
52
+ userSelect: 'text',
53
+ } }, visible && render()));
54
+ });
55
+ ViewPanel.defaultProps = {
56
+ scrollable: true,
57
+ };
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { IWorkspaceItemProps } from './WorkspacePanel';
3
+ export declare const ViewportPanel: React.FC<IWorkspaceItemProps>;
@@ -0,0 +1,18 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { WorkspacePanel } from './WorkspacePanel';
14
+ import { Simulator } from '../containers';
15
+ export var ViewportPanel = function (props) {
16
+ return (React.createElement(WorkspacePanel.Item, __assign({}, props, { flexable: true }),
17
+ React.createElement(Simulator, null, props.children)));
18
+ };
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ export interface IWorkspaceItemProps {
3
+ style?: React.CSSProperties;
4
+ flexable?: boolean;
5
+ }
6
+ export declare const WorkspacePanel: React.FC & {
7
+ Item?: React.FC<IWorkspaceItemProps>;
8
+ };
@@ -0,0 +1,21 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import React from 'react';
13
+ import { usePrefix } from '../hooks';
14
+ export var WorkspacePanel = function (props) {
15
+ var prefix = usePrefix('workspace-panel');
16
+ return React.createElement("div", { className: prefix }, props.children);
17
+ };
18
+ WorkspacePanel.Item = function (props) {
19
+ var prefix = usePrefix('workspace-panel-item');
20
+ return (React.createElement("div", { className: prefix, style: __assign(__assign({}, props.style), { flexGrow: props.flexable ? 1 : 0, flexShrink: props.flexable ? 1 : 0 }) }, props.children));
21
+ };
@@ -0,0 +1,9 @@
1
+ import './styles.less';
2
+ export * from './StudioPanel';
3
+ export * from './CompositePanel';
4
+ export * from './SettingsPanel';
5
+ export * from './WorkspacePanel';
6
+ export * from './ToolbarPanel';
7
+ export * from './ViewportPanel';
8
+ export * from './ViewPanel';
9
+ export * from './SourceBarPanel';
@@ -0,0 +1,9 @@
1
+ import './styles.less';
2
+ export * from './StudioPanel';
3
+ export * from './CompositePanel';
4
+ export * from './SettingsPanel';
5
+ export * from './WorkspacePanel';
6
+ export * from './ToolbarPanel';
7
+ export * from './ViewportPanel';
8
+ export * from './ViewPanel';
9
+ export * from './SourceBarPanel';
@@ -0,0 +1,4 @@
1
+ @import '../variables.less';
2
+
3
+ .@{prefix-cls}-sourceBar-panel {
4
+ }