@eclipse-papyrus/papyrus-web-parent 2026.2.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 (340) hide show
  1. package/.prettierrc +22 -0
  2. package/.project +11 -0
  3. package/.turbo/cache/2e7de991e3eb5b77-meta.json +1 -0
  4. package/.turbo/cache/2e7de991e3eb5b77.tar.zst +0 -0
  5. package/.turbo/cache/6d4efa6c3019818e-meta.json +1 -0
  6. package/.turbo/cache/6d4efa6c3019818e.tar.zst +0 -0
  7. package/.turbo/cache/904b84e8ab6fefb1-meta.json +1 -0
  8. package/.turbo/cache/904b84e8ab6fefb1.tar.zst +0 -0
  9. package/.turbo/cache/b657accc57a869a6-meta.json +1 -0
  10. package/.turbo/cache/b657accc57a869a6.tar.zst +0 -0
  11. package/.turbo/cookies/1.cookie +0 -0
  12. package/.turbo/cookies/2.cookie +0 -0
  13. package/.turbo/cookies/3.cookie +0 -0
  14. package/.turbo/cookies/4.cookie +0 -0
  15. package/.turbo/cookies/5.cookie +0 -0
  16. package/.turbo/cookies/6.cookie +0 -0
  17. package/.turbo/cookies/7.cookie +0 -0
  18. package/.turbo/cookies/8.cookie +0 -0
  19. package/.turbo/daemon/8a1f25190e5082e3-turbo.log.2026-04-01 +0 -0
  20. package/package.json +32 -0
  21. package/papyrus-web/.env.development +2 -0
  22. package/papyrus-web/.prettierrc +22 -0
  23. package/papyrus-web/.turbo/turbo-build.log +30 -0
  24. package/papyrus-web/.turbo/turbo-format-lint.log +6 -0
  25. package/papyrus-web/README.adoc +84 -0
  26. package/papyrus-web/dist/assets/Lato-Black-B_kLSaRn.ttf +0 -0
  27. package/papyrus-web/dist/assets/Lato-BlackItalic-B2JUbIh8.ttf +0 -0
  28. package/papyrus-web/dist/assets/Lato-Bold-DBmunEOG.ttf +0 -0
  29. package/papyrus-web/dist/assets/Lato-BoldItalic-DfTVlc2v.ttf +0 -0
  30. package/papyrus-web/dist/assets/Lato-Italic-CxPt6gM6.ttf +0 -0
  31. package/papyrus-web/dist/assets/Lato-Light-Cg7pVZQZ.ttf +0 -0
  32. package/papyrus-web/dist/assets/Lato-LightItalic-BkbZ6uep.ttf +0 -0
  33. package/papyrus-web/dist/assets/Lato-Regular-57KsL5Ww.ttf +0 -0
  34. package/papyrus-web/dist/assets/Lato-Thin-CvSM47fD.ttf +0 -0
  35. package/papyrus-web/dist/assets/Lato-ThinItalic-9M4CJfMt.ttf +0 -0
  36. package/papyrus-web/dist/assets/browser-ponyfill-CVpHIrSq.js +2 -0
  37. package/papyrus-web/dist/assets/index-CjSWMYED.js +6122 -0
  38. package/papyrus-web/dist/assets/index-DJjGIuFa.css +1 -0
  39. package/papyrus-web/dist/assets/papyrus-icon-DqmMeq_6.png +0 -0
  40. package/papyrus-web/dist/favicon.ico +0 -0
  41. package/papyrus-web/dist/index.html +42 -0
  42. package/papyrus-web/dist/manifest.json +15 -0
  43. package/papyrus-web/dist/papyrus.ico +0 -0
  44. package/papyrus-web/index.html +41 -0
  45. package/papyrus-web/package.json +104 -0
  46. package/papyrus-web/public/favicon.ico +0 -0
  47. package/papyrus-web/public/manifest.json +15 -0
  48. package/papyrus-web/public/papyrus.ico +0 -0
  49. package/papyrus-web/src/ReactFlow.css +17 -0
  50. package/papyrus-web/src/core/PapyrusIcon.tsx +17 -0
  51. package/papyrus-web/src/core/PapyrusNavigationBarIcon.tsx +46 -0
  52. package/papyrus-web/src/core/URL.ts +34 -0
  53. package/papyrus-web/src/extensions/ExtensionRegistryMergeStrategy.ts +50 -0
  54. package/papyrus-web/src/fonts/Lato/Lato-Black.ttf +0 -0
  55. package/papyrus-web/src/fonts/Lato/Lato-BlackItalic.ttf +0 -0
  56. package/papyrus-web/src/fonts/Lato/Lato-Bold.ttf +0 -0
  57. package/papyrus-web/src/fonts/Lato/Lato-BoldItalic.ttf +0 -0
  58. package/papyrus-web/src/fonts/Lato/Lato-Italic.ttf +0 -0
  59. package/papyrus-web/src/fonts/Lato/Lato-Light.ttf +0 -0
  60. package/papyrus-web/src/fonts/Lato/Lato-LightItalic.ttf +0 -0
  61. package/papyrus-web/src/fonts/Lato/Lato-Regular.ttf +0 -0
  62. package/papyrus-web/src/fonts/Lato/Lato-Thin.ttf +0 -0
  63. package/papyrus-web/src/fonts/Lato/Lato-ThinItalic.ttf +0 -0
  64. package/papyrus-web/src/fonts/Lato/OFL.txt +93 -0
  65. package/papyrus-web/src/fonts.css +81 -0
  66. package/papyrus-web/src/footer/Footer.tsx +50 -0
  67. package/papyrus-web/src/icons/papyrus-icon.png +0 -0
  68. package/papyrus-web/src/index.tsx +325 -0
  69. package/papyrus-web/src/portals.css +16 -0
  70. package/papyrus-web/src/react-app-env.d.ts +1 -0
  71. package/papyrus-web/src/reset.css +218 -0
  72. package/papyrus-web/src/variables.css +111 -0
  73. package/papyrus-web/src/vite-env.d.ts +1 -0
  74. package/papyrus-web/tsconfig.json +34 -0
  75. package/papyrus-web/vite.config.js +24 -0
  76. package/papyrus-web-components/.prettierrc +22 -0
  77. package/papyrus-web-components/.turbo/turbo-build.log +77 -0
  78. package/papyrus-web-components/.turbo/turbo-format-lint.log +6 -0
  79. package/papyrus-web-components/README.adoc +13 -0
  80. package/papyrus-web-components/dist/diagram-tools/EditProjectView.types.d.ts +48 -0
  81. package/papyrus-web-components/dist/diagram-tools/EditProjectView.types.d.ts.map +1 -0
  82. package/papyrus-web-components/dist/diagram-tools/FilterableSortableList.d.ts +3 -0
  83. package/papyrus-web-components/dist/diagram-tools/FilterableSortableList.d.ts.map +1 -0
  84. package/papyrus-web-components/dist/diagram-tools/FilterableSortableList.types.d.ts +33 -0
  85. package/papyrus-web-components/dist/diagram-tools/FilterableSortableList.types.d.ts.map +1 -0
  86. package/papyrus-web-components/dist/diagram-tools/ModelBrowserFilterBar.d.ts +15 -0
  87. package/papyrus-web-components/dist/diagram-tools/ModelBrowserFilterBar.d.ts.map +1 -0
  88. package/papyrus-web-components/dist/diagram-tools/ModelBrowserFilterBar.types.d.ts +20 -0
  89. package/papyrus-web-components/dist/diagram-tools/ModelBrowserFilterBar.types.d.ts.map +1 -0
  90. package/papyrus-web-components/dist/diagram-tools/PapyrusPopupToolContribution.d.ts +3 -0
  91. package/papyrus-web-components/dist/diagram-tools/PapyrusPopupToolContribution.d.ts.map +1 -0
  92. package/papyrus-web-components/dist/diagram-tools/PapyrusPopupToolContribution.types.d.ts +53 -0
  93. package/papyrus-web-components/dist/diagram-tools/PapyrusPopupToolContribution.types.d.ts.map +1 -0
  94. package/papyrus-web-components/dist/diagram-tools/TransferModal.d.ts +3 -0
  95. package/papyrus-web-components/dist/diagram-tools/TransferModal.d.ts.map +1 -0
  96. package/papyrus-web-components/dist/diagram-tools/TransferModal.types.d.ts +32 -0
  97. package/papyrus-web-components/dist/diagram-tools/TransferModal.types.d.ts.map +1 -0
  98. package/papyrus-web-components/dist/index.d.ts +61 -0
  99. package/papyrus-web-components/dist/index.d.ts.map +1 -0
  100. package/papyrus-web-components/dist/nodes/NodesDocumentTransform.d.ts +15 -0
  101. package/papyrus-web-components/dist/nodes/NodesDocumentTransform.d.ts.map +1 -0
  102. package/papyrus-web-components/dist/nodes/cuboid/CuboidNode.d.ts +18 -0
  103. package/papyrus-web-components/dist/nodes/cuboid/CuboidNode.d.ts.map +1 -0
  104. package/papyrus-web-components/dist/nodes/cuboid/CuboidNode.types.d.ts +29 -0
  105. package/papyrus-web-components/dist/nodes/cuboid/CuboidNode.types.d.ts.map +1 -0
  106. package/papyrus-web-components/dist/nodes/cuboid/CuboidNodeConverter.d.ts +21 -0
  107. package/papyrus-web-components/dist/nodes/cuboid/CuboidNodeConverter.d.ts.map +1 -0
  108. package/papyrus-web-components/dist/nodes/cuboid/CuboidNodeLayoutHandler.d.ts +23 -0
  109. package/papyrus-web-components/dist/nodes/cuboid/CuboidNodeLayoutHandler.d.ts.map +1 -0
  110. package/papyrus-web-components/dist/nodes/cuboid/CuboidNodeListConverter.d.ts +21 -0
  111. package/papyrus-web-components/dist/nodes/cuboid/CuboidNodeListConverter.d.ts.map +1 -0
  112. package/papyrus-web-components/dist/nodes/cuboid/CuboidNodeListLayoutHandler.d.ts +23 -0
  113. package/papyrus-web-components/dist/nodes/cuboid/CuboidNodeListLayoutHandler.d.ts.map +1 -0
  114. package/papyrus-web-components/dist/nodes/customImage/CustomImageNode.d.ts +3 -0
  115. package/papyrus-web-components/dist/nodes/customImage/CustomImageNode.d.ts.map +1 -0
  116. package/papyrus-web-components/dist/nodes/customImage/CustomImageNode.types.d.ts +34 -0
  117. package/papyrus-web-components/dist/nodes/customImage/CustomImageNode.types.d.ts.map +1 -0
  118. package/papyrus-web-components/dist/nodes/customImage/CustomImageNodeConverter.d.ts +22 -0
  119. package/papyrus-web-components/dist/nodes/customImage/CustomImageNodeConverter.d.ts.map +1 -0
  120. package/papyrus-web-components/dist/nodes/customImage/CustomImageNodeLayoutHandler.d.ts +23 -0
  121. package/papyrus-web-components/dist/nodes/customImage/CustomImageNodeLayoutHandler.d.ts.map +1 -0
  122. package/papyrus-web-components/dist/nodes/ellipse/EllipseNode.d.ts +15 -0
  123. package/papyrus-web-components/dist/nodes/ellipse/EllipseNode.d.ts.map +1 -0
  124. package/papyrus-web-components/dist/nodes/ellipse/EllipseNode.types.d.ts +33 -0
  125. package/papyrus-web-components/dist/nodes/ellipse/EllipseNode.types.d.ts.map +1 -0
  126. package/papyrus-web-components/dist/nodes/ellipse/EllipseNodeConverter.d.ts +23 -0
  127. package/papyrus-web-components/dist/nodes/ellipse/EllipseNodeConverter.d.ts.map +1 -0
  128. package/papyrus-web-components/dist/nodes/ellipse/EllipseNodeLayoutHandler.d.ts +25 -0
  129. package/papyrus-web-components/dist/nodes/ellipse/EllipseNodeLayoutHandler.d.ts.map +1 -0
  130. package/papyrus-web-components/dist/nodes/innerFlag/InnerFlagNode.d.ts +18 -0
  131. package/papyrus-web-components/dist/nodes/innerFlag/InnerFlagNode.d.ts.map +1 -0
  132. package/papyrus-web-components/dist/nodes/innerFlag/InnerFlagNode.types.d.ts +23 -0
  133. package/papyrus-web-components/dist/nodes/innerFlag/InnerFlagNode.types.d.ts.map +1 -0
  134. package/papyrus-web-components/dist/nodes/innerFlag/InnerFlagNodeConverter.d.ts +21 -0
  135. package/papyrus-web-components/dist/nodes/innerFlag/InnerFlagNodeConverter.d.ts.map +1 -0
  136. package/papyrus-web-components/dist/nodes/innerFlag/InnerFlagNodeLayoutHandler.d.ts +21 -0
  137. package/papyrus-web-components/dist/nodes/innerFlag/InnerFlagNodeLayoutHandler.d.ts.map +1 -0
  138. package/papyrus-web-components/dist/nodes/note/NoteLabel.d.ts +18 -0
  139. package/papyrus-web-components/dist/nodes/note/NoteLabel.d.ts.map +1 -0
  140. package/papyrus-web-components/dist/nodes/note/NoteNode.d.ts +19 -0
  141. package/papyrus-web-components/dist/nodes/note/NoteNode.d.ts.map +1 -0
  142. package/papyrus-web-components/dist/nodes/note/NoteNode.types.d.ts +41 -0
  143. package/papyrus-web-components/dist/nodes/note/NoteNode.types.d.ts.map +1 -0
  144. package/papyrus-web-components/dist/nodes/note/NoteNodeConverter.d.ts +21 -0
  145. package/papyrus-web-components/dist/nodes/note/NoteNodeConverter.d.ts.map +1 -0
  146. package/papyrus-web-components/dist/nodes/note/NoteNodeLayoutHandler.d.ts +21 -0
  147. package/papyrus-web-components/dist/nodes/note/NoteNodeLayoutHandler.d.ts.map +1 -0
  148. package/papyrus-web-components/dist/nodes/outerFlag/OuterFlagNode.d.ts +18 -0
  149. package/papyrus-web-components/dist/nodes/outerFlag/OuterFlagNode.d.ts.map +1 -0
  150. package/papyrus-web-components/dist/nodes/outerFlag/OuterFlagNode.types.d.ts +23 -0
  151. package/papyrus-web-components/dist/nodes/outerFlag/OuterFlagNode.types.d.ts.map +1 -0
  152. package/papyrus-web-components/dist/nodes/outerFlag/OuterFlagNodeConverter.d.ts +21 -0
  153. package/papyrus-web-components/dist/nodes/outerFlag/OuterFlagNodeConverter.d.ts.map +1 -0
  154. package/papyrus-web-components/dist/nodes/outerFlag/OuterFlagNodeLayoutHandler.d.ts +21 -0
  155. package/papyrus-web-components/dist/nodes/outerFlag/OuterFlagNodeLayoutHandler.d.ts.map +1 -0
  156. package/papyrus-web-components/dist/nodes/package/PackageNode.d.ts +18 -0
  157. package/papyrus-web-components/dist/nodes/package/PackageNode.d.ts.map +1 -0
  158. package/papyrus-web-components/dist/nodes/package/PackageNode.types.d.ts +29 -0
  159. package/papyrus-web-components/dist/nodes/package/PackageNode.types.d.ts.map +1 -0
  160. package/papyrus-web-components/dist/nodes/package/PackageNodeConverter.d.ts +21 -0
  161. package/papyrus-web-components/dist/nodes/package/PackageNodeConverter.d.ts.map +1 -0
  162. package/papyrus-web-components/dist/nodes/package/PackageNodeLayoutHandler.d.ts +23 -0
  163. package/papyrus-web-components/dist/nodes/package/PackageNodeLayoutHandler.d.ts.map +1 -0
  164. package/papyrus-web-components/dist/nodes/package/PackageNodeListConverter.d.ts +21 -0
  165. package/papyrus-web-components/dist/nodes/package/PackageNodeListConverter.d.ts.map +1 -0
  166. package/papyrus-web-components/dist/nodes/package/PackageNodeListLayoutHandler.d.ts +24 -0
  167. package/papyrus-web-components/dist/nodes/package/PackageNodeListLayoutHandler.d.ts.map +1 -0
  168. package/papyrus-web-components/dist/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNode.d.ts +18 -0
  169. package/papyrus-web-components/dist/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNode.d.ts.map +1 -0
  170. package/papyrus-web-components/dist/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNode.types.d.ts +23 -0
  171. package/papyrus-web-components/dist/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNode.types.d.ts.map +1 -0
  172. package/papyrus-web-components/dist/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNodeConverter.d.ts +21 -0
  173. package/papyrus-web-components/dist/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNodeConverter.d.ts.map +1 -0
  174. package/papyrus-web-components/dist/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNodeLayoutHandler.d.ts +20 -0
  175. package/papyrus-web-components/dist/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNodeLayoutHandler.d.ts.map +1 -0
  176. package/papyrus-web-components/dist/papyrus-web-components.es.js +11710 -0
  177. package/papyrus-web-components/dist/papyrus-web-components.umd.js +11664 -0
  178. package/papyrus-web-components/dist/profile/apply-profile/ApplyProfileModal.d.ts +3 -0
  179. package/papyrus-web-components/dist/profile/apply-profile/ApplyProfileModal.d.ts.map +1 -0
  180. package/papyrus-web-components/dist/profile/apply-profile/ApplyProfileModal.types.d.ts +55 -0
  181. package/papyrus-web-components/dist/profile/apply-profile/ApplyProfileModal.types.d.ts.map +1 -0
  182. package/papyrus-web-components/dist/profile/apply-profile/ApplyProfileModalMachine.d.ts +65 -0
  183. package/papyrus-web-components/dist/profile/apply-profile/ApplyProfileModalMachine.d.ts.map +1 -0
  184. package/papyrus-web-components/dist/profile/apply-profile/UMLModelTreeItemContextMenuContribution.d.ts +16 -0
  185. package/papyrus-web-components/dist/profile/apply-profile/UMLModelTreeItemContextMenuContribution.d.ts.map +1 -0
  186. package/papyrus-web-components/dist/profile/apply-stereotype/ApplyStereotypeModal.d.ts +15 -0
  187. package/papyrus-web-components/dist/profile/apply-stereotype/ApplyStereotypeModal.d.ts.map +1 -0
  188. package/papyrus-web-components/dist/profile/apply-stereotype/ApplyStereotypeModal.types.d.ts +48 -0
  189. package/papyrus-web-components/dist/profile/apply-stereotype/ApplyStereotypeModal.types.d.ts.map +1 -0
  190. package/papyrus-web-components/dist/profile/apply-stereotype/ApplyStereotypeModalMachine.d.ts +65 -0
  191. package/papyrus-web-components/dist/profile/apply-stereotype/ApplyStereotypeModalMachine.d.ts.map +1 -0
  192. package/papyrus-web-components/dist/profile/apply-stereotype/UMLElementTreeItemContextMenuContribution.d.ts +16 -0
  193. package/papyrus-web-components/dist/profile/apply-stereotype/UMLElementTreeItemContextMenuContribution.d.ts.map +1 -0
  194. package/papyrus-web-components/dist/profile/publish-profile/PublishProfileDialog.d.ts +16 -0
  195. package/papyrus-web-components/dist/profile/publish-profile/PublishProfileDialog.d.ts.map +1 -0
  196. package/papyrus-web-components/dist/profile/publish-profile/PublishProfileDialog.types.d.ts +72 -0
  197. package/papyrus-web-components/dist/profile/publish-profile/PublishProfileDialog.types.d.ts.map +1 -0
  198. package/papyrus-web-components/dist/profile/publish-profile/PublishProfileTreeItemContextMenuContribution.d.ts +16 -0
  199. package/papyrus-web-components/dist/profile/publish-profile/PublishProfileTreeItemContextMenuContribution.d.ts.map +1 -0
  200. package/papyrus-web-components/dist/widgets/CustomWidgetsDocumentTransform.d.ts +15 -0
  201. package/papyrus-web-components/dist/widgets/CustomWidgetsDocumentTransform.d.ts.map +1 -0
  202. package/papyrus-web-components/dist/widgets/containmentReference/ContainmentReferenceFragment.types.d.ts +145 -0
  203. package/papyrus-web-components/dist/widgets/containmentReference/ContainmentReferenceFragment.types.d.ts.map +1 -0
  204. package/papyrus-web-components/dist/widgets/containmentReference/ContainmentReferenceIcon.d.ts +16 -0
  205. package/papyrus-web-components/dist/widgets/containmentReference/ContainmentReferenceIcon.d.ts.map +1 -0
  206. package/papyrus-web-components/dist/widgets/containmentReference/ContainmentReferencePreview.d.ts +19 -0
  207. package/papyrus-web-components/dist/widgets/containmentReference/ContainmentReferencePreview.d.ts.map +1 -0
  208. package/papyrus-web-components/dist/widgets/containmentReference/ContainmentReferenceSection.d.ts +21 -0
  209. package/papyrus-web-components/dist/widgets/containmentReference/ContainmentReferenceSection.d.ts.map +1 -0
  210. package/papyrus-web-components/dist/widgets/containmentReference/ReorderIcon.d.ts +18 -0
  211. package/papyrus-web-components/dist/widgets/containmentReference/ReorderIcon.d.ts.map +1 -0
  212. package/papyrus-web-components/dist/widgets/containmentReference/dialogs/CreateNewChildDialog.d.ts +17 -0
  213. package/papyrus-web-components/dist/widgets/containmentReference/dialogs/CreateNewChildDialog.d.ts.map +1 -0
  214. package/papyrus-web-components/dist/widgets/containmentReference/dialogs/CreateNewChildDialog.types.d.ts +23 -0
  215. package/papyrus-web-components/dist/widgets/containmentReference/dialogs/CreateNewChildDialog.types.d.ts.map +1 -0
  216. package/papyrus-web-components/dist/widgets/customImage/AddImageIcon.d.ts +17 -0
  217. package/papyrus-web-components/dist/widgets/customImage/AddImageIcon.d.ts.map +1 -0
  218. package/papyrus-web-components/dist/widgets/customImage/CustomImageFragment.types.d.ts +83 -0
  219. package/papyrus-web-components/dist/widgets/customImage/CustomImageFragment.types.d.ts.map +1 -0
  220. package/papyrus-web-components/dist/widgets/customImage/CustomImageIcon.d.ts +17 -0
  221. package/papyrus-web-components/dist/widgets/customImage/CustomImageIcon.d.ts.map +1 -0
  222. package/papyrus-web-components/dist/widgets/customImage/CustomImagePreview.d.ts +20 -0
  223. package/papyrus-web-components/dist/widgets/customImage/CustomImagePreview.d.ts.map +1 -0
  224. package/papyrus-web-components/dist/widgets/customImage/CustomImageSection.d.ts +21 -0
  225. package/papyrus-web-components/dist/widgets/customImage/CustomImageSection.d.ts.map +1 -0
  226. package/papyrus-web-components/dist/widgets/dialogs/ReorderItemsDialog.d.ts +17 -0
  227. package/papyrus-web-components/dist/widgets/dialogs/ReorderItemsDialog.d.ts.map +1 -0
  228. package/papyrus-web-components/dist/widgets/dialogs/ReorderItemsDialog.types.d.ts +29 -0
  229. package/papyrus-web-components/dist/widgets/dialogs/ReorderItemsDialog.types.d.ts.map +1 -0
  230. package/papyrus-web-components/dist/widgets/languageExpression/LanguageExpressionFragment.types.d.ts +97 -0
  231. package/papyrus-web-components/dist/widgets/languageExpression/LanguageExpressionFragment.types.d.ts.map +1 -0
  232. package/papyrus-web-components/dist/widgets/languageExpression/LanguageExpressionIcon.d.ts +16 -0
  233. package/papyrus-web-components/dist/widgets/languageExpression/LanguageExpressionIcon.d.ts.map +1 -0
  234. package/papyrus-web-components/dist/widgets/languageExpression/LanguageExpressionPreview.d.ts +6 -0
  235. package/papyrus-web-components/dist/widgets/languageExpression/LanguageExpressionPreview.d.ts.map +1 -0
  236. package/papyrus-web-components/dist/widgets/languageExpression/LanguageExpressionSection.d.ts +21 -0
  237. package/papyrus-web-components/dist/widgets/languageExpression/LanguageExpressionSection.d.ts.map +1 -0
  238. package/papyrus-web-components/dist/widgets/primitiveList/PrimitiveListWidgetPreview.d.ts +19 -0
  239. package/papyrus-web-components/dist/widgets/primitiveList/PrimitiveListWidgetPreview.d.ts.map +1 -0
  240. package/papyrus-web-components/dist/widgets/primitiveList/PrimitiveListWidgetPropertySection.d.ts +7 -0
  241. package/papyrus-web-components/dist/widgets/primitiveList/PrimitiveListWidgetPropertySection.d.ts.map +1 -0
  242. package/papyrus-web-components/dist/widgets/primitiveList/PrimitiveListWidgetPropertySection.types.d.ts +135 -0
  243. package/papyrus-web-components/dist/widgets/primitiveList/PrimitiveListWidgetPropertySection.types.d.ts.map +1 -0
  244. package/papyrus-web-components/dist/widgets/primitiveRadio/PrimitiveRadioFragment.type.d.ts +42 -0
  245. package/papyrus-web-components/dist/widgets/primitiveRadio/PrimitiveRadioFragment.type.d.ts.map +1 -0
  246. package/papyrus-web-components/dist/widgets/primitiveRadio/PrimitiveRadioIcon.d.ts +16 -0
  247. package/papyrus-web-components/dist/widgets/primitiveRadio/PrimitiveRadioIcon.d.ts.map +1 -0
  248. package/papyrus-web-components/dist/widgets/primitiveRadio/PrimitiveRadioPreview.d.ts +19 -0
  249. package/papyrus-web-components/dist/widgets/primitiveRadio/PrimitiveRadioPreview.d.ts.map +1 -0
  250. package/papyrus-web-components/dist/widgets/primitiveRadio/PrimitiveRadioSection.d.ts +18 -0
  251. package/papyrus-web-components/dist/widgets/primitiveRadio/PrimitiveRadioSection.d.ts.map +1 -0
  252. package/papyrus-web-components/package.json +105 -0
  253. package/papyrus-web-components/src/diagram-tools/EditProjectView.types.ts +56 -0
  254. package/papyrus-web-components/src/diagram-tools/FilterableSortableList.tsx +172 -0
  255. package/papyrus-web-components/src/diagram-tools/FilterableSortableList.types.ts +34 -0
  256. package/papyrus-web-components/src/diagram-tools/ModelBrowserFilterBar.tsx +73 -0
  257. package/papyrus-web-components/src/diagram-tools/ModelBrowserFilterBar.types.ts +19 -0
  258. package/papyrus-web-components/src/diagram-tools/PapyrusPopupToolContribution.tsx +206 -0
  259. package/papyrus-web-components/src/diagram-tools/PapyrusPopupToolContribution.types.ts +61 -0
  260. package/papyrus-web-components/src/diagram-tools/TransferModal.tsx +235 -0
  261. package/papyrus-web-components/src/diagram-tools/TransferModal.types.ts +35 -0
  262. package/papyrus-web-components/src/index.ts +61 -0
  263. package/papyrus-web-components/src/nodes/NodesDocumentTransform.ts +242 -0
  264. package/papyrus-web-components/src/nodes/cuboid/CuboidNode.tsx +183 -0
  265. package/papyrus-web-components/src/nodes/cuboid/CuboidNode.types.ts +30 -0
  266. package/papyrus-web-components/src/nodes/cuboid/CuboidNodeConverter.ts +201 -0
  267. package/papyrus-web-components/src/nodes/cuboid/CuboidNodeLayoutHandler.ts +283 -0
  268. package/papyrus-web-components/src/nodes/cuboid/CuboidNodeListConverter.ts +238 -0
  269. package/papyrus-web-components/src/nodes/cuboid/CuboidNodeListLayoutHandler.ts +260 -0
  270. package/papyrus-web-components/src/nodes/customImage/CustomImageNode.tsx +153 -0
  271. package/papyrus-web-components/src/nodes/customImage/CustomImageNode.types.ts +37 -0
  272. package/papyrus-web-components/src/nodes/customImage/CustomImageNodeConverter.ts +212 -0
  273. package/papyrus-web-components/src/nodes/customImage/CustomImageNodeLayoutHandler.ts +53 -0
  274. package/papyrus-web-components/src/nodes/ellipse/EllipseNode.tsx +119 -0
  275. package/papyrus-web-components/src/nodes/ellipse/EllipseNode.types.ts +35 -0
  276. package/papyrus-web-components/src/nodes/ellipse/EllipseNodeConverter.ts +208 -0
  277. package/papyrus-web-components/src/nodes/ellipse/EllipseNodeLayoutHandler.ts +284 -0
  278. package/papyrus-web-components/src/nodes/innerFlag/InnerFlagNode.tsx +156 -0
  279. package/papyrus-web-components/src/nodes/innerFlag/InnerFlagNode.types.ts +23 -0
  280. package/papyrus-web-components/src/nodes/innerFlag/InnerFlagNodeConverter.ts +200 -0
  281. package/papyrus-web-components/src/nodes/innerFlag/InnerFlagNodeLayoutHandler.ts +118 -0
  282. package/papyrus-web-components/src/nodes/note/NoteLabel.tsx +146 -0
  283. package/papyrus-web-components/src/nodes/note/NoteNode.tsx +168 -0
  284. package/papyrus-web-components/src/nodes/note/NoteNode.types.ts +43 -0
  285. package/papyrus-web-components/src/nodes/note/NoteNodeConverter.ts +200 -0
  286. package/papyrus-web-components/src/nodes/note/NoteNodeLayoutHandler.ts +85 -0
  287. package/papyrus-web-components/src/nodes/outerFlag/OuterFlagNode.tsx +153 -0
  288. package/papyrus-web-components/src/nodes/outerFlag/OuterFlagNode.types.ts +23 -0
  289. package/papyrus-web-components/src/nodes/outerFlag/OuterFlagNodeConverter.ts +200 -0
  290. package/papyrus-web-components/src/nodes/outerFlag/OuterFlagNodeLayoutHandler.ts +116 -0
  291. package/papyrus-web-components/src/nodes/package/PackageNode.tsx +200 -0
  292. package/papyrus-web-components/src/nodes/package/PackageNode.types.ts +30 -0
  293. package/papyrus-web-components/src/nodes/package/PackageNodeConverter.ts +243 -0
  294. package/papyrus-web-components/src/nodes/package/PackageNodeLayoutHandler.ts +229 -0
  295. package/papyrus-web-components/src/nodes/package/PackageNodeListConverter.ts +254 -0
  296. package/papyrus-web-components/src/nodes/package/PackageNodeListLayoutHandler.ts +253 -0
  297. package/papyrus-web-components/src/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNode.tsx +155 -0
  298. package/papyrus-web-components/src/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNode.types.ts +23 -0
  299. package/papyrus-web-components/src/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNodeConverter.ts +205 -0
  300. package/papyrus-web-components/src/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNodeLayoutHandler.ts +55 -0
  301. package/papyrus-web-components/src/profile/apply-profile/ApplyProfileModal.tsx +238 -0
  302. package/papyrus-web-components/src/profile/apply-profile/ApplyProfileModal.types.tsx +65 -0
  303. package/papyrus-web-components/src/profile/apply-profile/ApplyProfileModalMachine.tsx +175 -0
  304. package/papyrus-web-components/src/profile/apply-profile/UMLModelTreeItemContextMenuContribution.tsx +74 -0
  305. package/papyrus-web-components/src/profile/apply-stereotype/ApplyStereotypeModal.tsx +248 -0
  306. package/papyrus-web-components/src/profile/apply-stereotype/ApplyStereotypeModal.types.ts +57 -0
  307. package/papyrus-web-components/src/profile/apply-stereotype/ApplyStereotypeModalMachine.ts +185 -0
  308. package/papyrus-web-components/src/profile/apply-stereotype/UMLElementTreeItemContextMenuContribution.tsx +70 -0
  309. package/papyrus-web-components/src/profile/publish-profile/PublishProfileDialog.tsx +380 -0
  310. package/papyrus-web-components/src/profile/publish-profile/PublishProfileDialog.types.ts +84 -0
  311. package/papyrus-web-components/src/profile/publish-profile/PublishProfileTreeItemContextMenuContribution.tsx +59 -0
  312. package/papyrus-web-components/src/widgets/CustomWidgetsDocumentTransform.ts +215 -0
  313. package/papyrus-web-components/src/widgets/containmentReference/ContainmentReferenceFragment.types.ts +178 -0
  314. package/papyrus-web-components/src/widgets/containmentReference/ContainmentReferenceIcon.tsx +38 -0
  315. package/papyrus-web-components/src/widgets/containmentReference/ContainmentReferencePreview.tsx +106 -0
  316. package/papyrus-web-components/src/widgets/containmentReference/ContainmentReferenceSection.tsx +508 -0
  317. package/papyrus-web-components/src/widgets/containmentReference/ReorderIcon.tsx +31 -0
  318. package/papyrus-web-components/src/widgets/containmentReference/dialogs/CreateNewChildDialog.tsx +104 -0
  319. package/papyrus-web-components/src/widgets/containmentReference/dialogs/CreateNewChildDialog.types.ts +24 -0
  320. package/papyrus-web-components/src/widgets/customImage/AddImageIcon.tsx +35 -0
  321. package/papyrus-web-components/src/widgets/customImage/CustomImageFragment.types.ts +98 -0
  322. package/papyrus-web-components/src/widgets/customImage/CustomImageIcon.tsx +34 -0
  323. package/papyrus-web-components/src/widgets/customImage/CustomImagePreview.tsx +87 -0
  324. package/papyrus-web-components/src/widgets/customImage/CustomImageSection.tsx +348 -0
  325. package/papyrus-web-components/src/widgets/dialogs/ReorderItemsDialog.tsx +145 -0
  326. package/papyrus-web-components/src/widgets/dialogs/ReorderItemsDialog.types.ts +30 -0
  327. package/papyrus-web-components/src/widgets/languageExpression/LanguageExpressionFragment.types.ts +117 -0
  328. package/papyrus-web-components/src/widgets/languageExpression/LanguageExpressionIcon.tsx +36 -0
  329. package/papyrus-web-components/src/widgets/languageExpression/LanguageExpressionPreview.tsx +163 -0
  330. package/papyrus-web-components/src/widgets/languageExpression/LanguageExpressionSection.tsx +548 -0
  331. package/papyrus-web-components/src/widgets/primitiveList/PrimitiveListWidgetPreview.tsx +158 -0
  332. package/papyrus-web-components/src/widgets/primitiveList/PrimitiveListWidgetPropertySection.tsx +616 -0
  333. package/papyrus-web-components/src/widgets/primitiveList/PrimitiveListWidgetPropertySection.types.ts +162 -0
  334. package/papyrus-web-components/src/widgets/primitiveRadio/PrimitiveRadioFragment.type.ts +49 -0
  335. package/papyrus-web-components/src/widgets/primitiveRadio/PrimitiveRadioIcon.tsx +36 -0
  336. package/papyrus-web-components/src/widgets/primitiveRadio/PrimitiveRadioPreview.tsx +88 -0
  337. package/papyrus-web-components/src/widgets/primitiveRadio/PrimitiveRadioSection.tsx +128 -0
  338. package/papyrus-web-components/tsconfig.json +14 -0
  339. package/papyrus-web-components/vite.config.js +26 -0
  340. package/turbo.json +31 -0
@@ -0,0 +1,18 @@
1
+ /*****************************************************************************
2
+ * Copyright (c) 2024, 2025 CEA LIST, Obeo, Artal Technologies.
3
+ *
4
+ * All rights reserved. This program and the accompanying materials
5
+ * are made available under the terms of the Eclipse Public License 2.0
6
+ * which accompanies this distribution, and is available at
7
+ * https://www.eclipse.org/legal/epl-2.0/
8
+ *
9
+ * SPDX-License-Identifier: EPL-2.0
10
+ *
11
+ * Contributors:
12
+ * Obeo - initial API and implementation
13
+ * Titouan BOUETE-GIRAUD (Artal Technologies) - Issue 224
14
+ *******************************************************************************/
15
+ /// <reference types="react" />
16
+ import { NoteLabelProps } from './NoteNode.types';
17
+ export declare const NoteLabel: import("react").MemoExoticComponent<({ diagramElementId, label, faded }: NoteLabelProps) => import("react/jsx-runtime").JSX.Element>;
18
+ //# sourceMappingURL=NoteLabel.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NoteLabel.d.ts","sourceRoot":"","sources":["../../../src/nodes/note/NoteLabel.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;iFAaiF;;AASjF,OAAO,EAAS,cAAc,EAAE,MAAM,kBAAkB,CAAC;AA0EzD,eAAO,MAAM,SAAS,2EAA6C,cAAc,6CAiD/E,CAAC"}
@@ -0,0 +1,19 @@
1
+ /*****************************************************************************
2
+ * Copyright (c) 2023, 2025 CEA LIST, Obeo, Artal Technologies.
3
+ *
4
+ * All rights reserved. This program and the accompanying materials
5
+ * are made available under the terms of the Eclipse Public License 2.0
6
+ * which accompanies this distribution, and is available at
7
+ * https://www.eclipse.org/legal/epl-2.0/
8
+ *
9
+ * SPDX-License-Identifier: EPL-2.0
10
+ *
11
+ * Contributors:
12
+ * Obeo - Initial API and implementation
13
+ * Titouan BOUETE-GIRAUD (Artal Technologies) - Issue 224
14
+ *****************************************************************************/
15
+ import { Node, NodeProps } from '@xyflow/react';
16
+ import React from 'react';
17
+ import { NoteNodeData } from './NoteNode.types';
18
+ export declare const NoteNode: React.MemoExoticComponent<({ data, id, selected, dragging }: NodeProps<Node<NoteNodeData>>) => import("react/jsx-runtime").JSX.Element>;
19
+ //# sourceMappingURL=NoteNode.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NoteNode.d.ts","sourceRoot":"","sources":["../../../src/nodes/note/NoteNode.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;+EAa+E;AAiB/E,OAAO,EAAE,IAAI,EAAE,SAAS,EAA6B,MAAM,eAAe,CAAC;AAC3E,OAAO,KAA2B,MAAM,OAAO,CAAC;AAEhD,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAoDhD,eAAO,MAAM,QAAQ,+DAA2C,UAAU,KAAK,YAAY,CAAC,CAAC,6CAkF3F,CAAC"}
@@ -0,0 +1,41 @@
1
+ /// <reference types="react" />
2
+ /*****************************************************************************
3
+ * Copyright (c) 2023, 2025 CEA LIST, Obeo, Artal Technologies.
4
+ *
5
+ * All rights reserved. This program and the accompanying materials
6
+ * are made available under the terms of the Eclipse Public License 2.0
7
+ * which accompanies this distribution, and is available at
8
+ * https://www.eclipse.org/legal/epl-2.0/
9
+ *
10
+ * SPDX-License-Identifier: EPL-2.0
11
+ *
12
+ * Contributors:
13
+ * Obeo - Initial API and implementation
14
+ * Titouan BOUETE-GIRAUD (Artal Technologies) - Issue 224
15
+ *****************************************************************************/
16
+ import { GQLNodeStyle, NodeData } from '@eclipse-sirius/sirius-components-diagrams';
17
+ export type HeaderPosition = 'TOP' | 'BOTTOM';
18
+ export interface NoteNodeData extends NodeData {
19
+ }
20
+ export interface GQLNoteNodeStyle extends GQLNodeStyle {
21
+ background: string;
22
+ borderColor: string;
23
+ borderStyle: string;
24
+ borderSize: number;
25
+ }
26
+ export interface Label {
27
+ id: string;
28
+ text: string;
29
+ iconURL: string[];
30
+ style: React.CSSProperties;
31
+ contentStyle: React.CSSProperties;
32
+ displayHeaderSeparator: boolean;
33
+ headerSeparatorStyle: React.CSSProperties;
34
+ headerPosition: HeaderPosition | undefined;
35
+ }
36
+ export interface NoteLabelProps {
37
+ diagramElementId: string;
38
+ label: Label;
39
+ faded: boolean;
40
+ }
41
+ //# sourceMappingURL=NoteNode.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NoteNode.types.d.ts","sourceRoot":"","sources":["../../../src/nodes/note/NoteNode.types.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;+EAa+E;AAC/E,OAAO,EAAE,YAAY,EAAE,QAAQ,EAAE,MAAM,4CAA4C,CAAC;AAEpF,MAAM,MAAM,cAAc,GAAG,KAAK,GAAG,QAAQ,CAAC;AAE9C,MAAM,WAAW,YAAa,SAAQ,QAAQ;CAAG;AAEjD,MAAM,WAAW,gBAAiB,SAAQ,YAAY;IACpD,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,KAAK;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,KAAK,EAAE,KAAK,CAAC,aAAa,CAAC;IAC3B,YAAY,EAAE,KAAK,CAAC,aAAa,CAAC;IAClC,sBAAsB,EAAE,OAAO,CAAC;IAChC,oBAAoB,EAAE,KAAK,CAAC,aAAa,CAAC;IAC1C,cAAc,EAAE,cAAc,GAAG,SAAS,CAAC;CAC5C;AAED,MAAM,WAAW,cAAc;IAC7B,gBAAgB,EAAE,MAAM,CAAC;IACzB,KAAK,EAAE,KAAK,CAAC;IACb,KAAK,EAAE,OAAO,CAAC;CAChB"}
@@ -0,0 +1,21 @@
1
+ /*****************************************************************************
2
+ * Copyright (c) 2023, 2026 CEA LIST, Obeo.
3
+ *
4
+ * All rights reserved. This program and the accompanying materials
5
+ * are made available under the terms of the Eclipse Public License 2.0
6
+ * which accompanies this distribution, and is available at
7
+ * https://www.eclipse.org/legal/epl-2.0/
8
+ *
9
+ * SPDX-License-Identifier: EPL-2.0
10
+ *
11
+ * Contributors:
12
+ * Obeo - Initial API and implementation
13
+ *****************************************************************************/
14
+ import { GQLDiagram, GQLDiagramDescription, GQLEdge, GQLNode, GQLNodeDescription, GQLNodeStyle, IConvertEngine, INodeConverter } from '@eclipse-sirius/sirius-components-diagrams';
15
+ import { Node } from '@xyflow/react';
16
+ import { GQLNoteNodeStyle } from './NoteNode.types';
17
+ export declare class NoteNodeConverter implements INodeConverter {
18
+ canHandle(gqlNode: GQLNode<GQLNodeStyle>): boolean;
19
+ handle(convertEngine: IConvertEngine, gqlDiagram: GQLDiagram, gqlNode: GQLNode<GQLNoteNodeStyle>, gqlEdges: GQLEdge[], parentNode: GQLNode<GQLNodeStyle> | null, isBorderNode: boolean, nodes: Node[], diagramDescription: GQLDiagramDescription, nodeDescriptions: GQLNodeDescription[]): void;
20
+ }
21
+ //# sourceMappingURL=NoteNodeConverter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NoteNodeConverter.d.ts","sourceRoot":"","sources":["../../../src/nodes/note/NoteNodeConverter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;+EAY+E;AAC/E,OAAO,EAGL,UAAU,EACV,qBAAqB,EACrB,OAAO,EACP,OAAO,EACP,kBAAkB,EAElB,YAAY,EAEZ,cAAc,EACd,cAAc,EAOf,MAAM,4CAA4C,CAAC;AACpD,OAAO,EAAE,IAAI,EAAc,MAAM,eAAe,CAAC;AACjD,OAAO,EAAE,gBAAgB,EAAgB,MAAM,kBAAkB,CAAC;AAsHlE,qBAAa,iBAAkB,YAAW,cAAc;IACtD,SAAS,CAAC,OAAO,EAAE,OAAO,CAAC,YAAY,CAAC;IAIxC,MAAM,CACJ,aAAa,EAAE,cAAc,EAC7B,UAAU,EAAE,UAAU,EACtB,OAAO,EAAE,OAAO,CAAC,gBAAgB,CAAC,EAClC,QAAQ,EAAE,OAAO,EAAE,EACnB,UAAU,EAAE,OAAO,CAAC,YAAY,CAAC,GAAG,IAAI,EACxC,YAAY,EAAE,OAAO,EACrB,KAAK,EAAE,IAAI,EAAE,EACb,kBAAkB,EAAE,qBAAqB,EACzC,gBAAgB,EAAE,kBAAkB,EAAE;CAiCzC"}
@@ -0,0 +1,21 @@
1
+ /*****************************************************************************
2
+ * Copyright (c) 2023, 2025 CEA LIST, Obeo.
3
+ *
4
+ * All rights reserved. This program and the accompanying materials
5
+ * are made available under the terms of the Eclipse Public License 2.0
6
+ * which accompanies this distribution, and is available at
7
+ * https://www.eclipse.org/legal/epl-2.0/
8
+ *
9
+ * SPDX-License-Identifier: EPL-2.0
10
+ *
11
+ * Contributors:
12
+ * Obeo - Initial API and implementation
13
+ *****************************************************************************/
14
+ import { Diagram, DiagramNodeType, ILayoutEngine, INodeLayoutHandler, NodeData, ForcedDimensions } from '@eclipse-sirius/sirius-components-diagrams';
15
+ import { Node } from '@xyflow/react';
16
+ import { NoteNodeData } from './NoteNode.types';
17
+ export declare class NoteNodeLayoutHandler implements INodeLayoutHandler<NodeData> {
18
+ canHandle(node: Node<NodeData, DiagramNodeType>): boolean;
19
+ handle(_layoutEngine: ILayoutEngine, previousDiagram: Diagram | null, node: Node<NoteNodeData, 'noteNode'>, visibleNodes: Node<NodeData, DiagramNodeType>[], _directChildren: Node<NodeData, DiagramNodeType>[], _newlyAddedNodes: Node<NodeData, DiagramNodeType>[], forceWidth?: ForcedDimensions): void;
20
+ }
21
+ //# sourceMappingURL=NoteNodeLayoutHandler.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NoteNodeLayoutHandler.d.ts","sourceRoot":"","sources":["../../../src/nodes/note/NoteNodeLayoutHandler.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;+EAY+E;AAC/E,OAAO,EACL,OAAO,EACP,eAAe,EACf,aAAa,EACb,kBAAkB,EAClB,QAAQ,EAMR,gBAAgB,EAGjB,MAAM,4CAA4C,CAAC;AACpD,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AACrC,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAEhD,qBAAa,qBAAsB,YAAW,kBAAkB,CAAC,QAAQ,CAAC;IACxE,SAAS,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC;IAI/C,MAAM,CACJ,aAAa,EAAE,aAAa,EAC5B,eAAe,EAAE,OAAO,GAAG,IAAI,EAC/B,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE,UAAU,CAAC,EACpC,YAAY,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC,EAAE,EAC/C,eAAe,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC,EAAE,EAClD,gBAAgB,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC,EAAE,EACnD,UAAU,CAAC,EAAE,gBAAgB;CAyChC"}
@@ -0,0 +1,18 @@
1
+ /*****************************************************************************
2
+ * Copyright (c) 2024, 2025 CEA LIST, Obeo.
3
+ *
4
+ * All rights reserved. This program and the accompanying materials
5
+ * are made available under the terms of the Eclipse Public License 2.0
6
+ * which accompanies this distribution, and is available at
7
+ * https://www.eclipse.org/legal/epl-2.0/
8
+ *
9
+ * SPDX-License-Identifier: EPL-2.0
10
+ *
11
+ * Contributors:
12
+ * Obeo - Initial API and implementation
13
+ *****************************************************************************/
14
+ import React from 'react';
15
+ import { Node, NodeProps } from '@xyflow/react';
16
+ import { OuterFlagNodeData } from './OuterFlagNode.types';
17
+ export declare const OuterFlagNode: React.MemoExoticComponent<({ data, id, selected, dragging }: NodeProps<Node<OuterFlagNodeData>>) => import("react/jsx-runtime").JSX.Element>;
18
+ //# sourceMappingURL=OuterFlagNode.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"OuterFlagNode.d.ts","sourceRoot":"","sources":["../../../src/nodes/outerFlag/OuterFlagNode.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;+EAY+E;AAkB/E,OAAO,KAA2B,MAAM,OAAO,CAAC;AAChD,OAAO,EAAE,IAAI,EAAE,SAAS,EAA6B,MAAM,eAAe,CAAC;AAC3E,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAoD1D,eAAO,MAAM,aAAa,+DAA2C,UAAU,KAAK,iBAAiB,CAAC,CAAC,6CAoErG,CAAC"}
@@ -0,0 +1,23 @@
1
+ /*****************************************************************************
2
+ * Copyright (c) 2024, 2025 CEA LIST, Obeo.
3
+ *
4
+ * All rights reserved. This program and the accompanying materials
5
+ * are made available under the terms of the Eclipse Public License 2.0
6
+ * which accompanies this distribution, and is available at
7
+ * https://www.eclipse.org/legal/epl-2.0/
8
+ *
9
+ * SPDX-License-Identifier: EPL-2.0
10
+ *
11
+ * Contributors:
12
+ * Obeo - Initial API and implementation
13
+ *****************************************************************************/
14
+ import { GQLNodeStyle, NodeData } from '@eclipse-sirius/sirius-components-diagrams';
15
+ export interface OuterFlagNodeData extends NodeData {
16
+ }
17
+ export interface GQLOuterFlagNodeStyle extends GQLNodeStyle {
18
+ background: string;
19
+ borderColor: string;
20
+ borderStyle: string;
21
+ borderSize: number;
22
+ }
23
+ //# sourceMappingURL=OuterFlagNode.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"OuterFlagNode.types.d.ts","sourceRoot":"","sources":["../../../src/nodes/outerFlag/OuterFlagNode.types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;+EAY+E;AAC/E,OAAO,EAAE,YAAY,EAAE,QAAQ,EAAE,MAAM,4CAA4C,CAAC;AAEpF,MAAM,WAAW,iBAAkB,SAAQ,QAAQ;CAAG;AAEtD,MAAM,WAAW,qBAAsB,SAAQ,YAAY;IACzD,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;CACpB"}
@@ -0,0 +1,21 @@
1
+ /*****************************************************************************
2
+ * Copyright (c) 2024, 2026 CEA LIST, Obeo.
3
+ *
4
+ * All rights reserved. This program and the accompanying materials
5
+ * are made available under the terms of the Eclipse Public License 2.0
6
+ * which accompanies this distribution, and is available at
7
+ * https://www.eclipse.org/legal/epl-2.0/
8
+ *
9
+ * SPDX-License-Identifier: EPL-2.0
10
+ *
11
+ * Contributors:
12
+ * Obeo - Initial API and implementation
13
+ *****************************************************************************/
14
+ import { GQLDiagram, GQLDiagramDescription, GQLEdge, GQLNode, GQLNodeDescription, GQLNodeStyle, IConvertEngine, INodeConverter } from '@eclipse-sirius/sirius-components-diagrams';
15
+ import { Node } from '@xyflow/react';
16
+ import { GQLOuterFlagNodeStyle } from './OuterFlagNode.types';
17
+ export declare class OuterFlagNodeConverter implements INodeConverter {
18
+ canHandle(gqlNode: GQLNode<GQLNodeStyle>): boolean;
19
+ handle(convertEngine: IConvertEngine, gqlDiagram: GQLDiagram, gqlNode: GQLNode<GQLOuterFlagNodeStyle>, gqlEdges: GQLEdge[], parentNode: GQLNode<GQLNodeStyle> | null, isBorderNode: boolean, nodes: Node[], diagramDescription: GQLDiagramDescription, nodeDescriptions: GQLNodeDescription[]): void;
20
+ }
21
+ //# sourceMappingURL=OuterFlagNodeConverter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"OuterFlagNodeConverter.d.ts","sourceRoot":"","sources":["../../../src/nodes/outerFlag/OuterFlagNodeConverter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;+EAY+E;AAC/E,OAAO,EAGL,UAAU,EACV,qBAAqB,EACrB,OAAO,EACP,OAAO,EACP,kBAAkB,EAElB,YAAY,EAEZ,cAAc,EACd,cAAc,EAOf,MAAM,4CAA4C,CAAC;AACpD,OAAO,EAAE,IAAI,EAAc,MAAM,eAAe,CAAC;AACjD,OAAO,EAAE,qBAAqB,EAAqB,MAAM,uBAAuB,CAAC;AAsHjF,qBAAa,sBAAuB,YAAW,cAAc;IAC3D,SAAS,CAAC,OAAO,EAAE,OAAO,CAAC,YAAY,CAAC;IAIxC,MAAM,CACJ,aAAa,EAAE,cAAc,EAC7B,UAAU,EAAE,UAAU,EACtB,OAAO,EAAE,OAAO,CAAC,qBAAqB,CAAC,EACvC,QAAQ,EAAE,OAAO,EAAE,EACnB,UAAU,EAAE,OAAO,CAAC,YAAY,CAAC,GAAG,IAAI,EACxC,YAAY,EAAE,OAAO,EACrB,KAAK,EAAE,IAAI,EAAE,EACb,kBAAkB,EAAE,qBAAqB,EACzC,gBAAgB,EAAE,kBAAkB,EAAE;CAiCzC"}
@@ -0,0 +1,21 @@
1
+ /*****************************************************************************
2
+ * Copyright (c) 2024, 2025 CEA LIST, Obeo.
3
+ *
4
+ * All rights reserved. This program and the accompanying materials
5
+ * are made available under the terms of the Eclipse Public License 2.0
6
+ * which accompanies this distribution, and is available at
7
+ * https://www.eclipse.org/legal/epl-2.0/
8
+ *
9
+ * SPDX-License-Identifier: EPL-2.0
10
+ *
11
+ * Contributors:
12
+ * Obeo - Initial API and implementation
13
+ *****************************************************************************/
14
+ import { Diagram, DiagramNodeType, ILayoutEngine, INodeLayoutHandler, NodeData, ForcedDimensions } from '@eclipse-sirius/sirius-components-diagrams';
15
+ import { Node } from '@xyflow/react';
16
+ import { OuterFlagNodeData } from './OuterFlagNode.types';
17
+ export declare class OuterFlagNodeLayoutHandler implements INodeLayoutHandler<NodeData> {
18
+ canHandle(node: Node<NodeData, DiagramNodeType>): boolean;
19
+ handle(layoutEngine: ILayoutEngine, previousDiagram: Diagram | null, node: Node<OuterFlagNodeData, 'outerFlagNode'>, visibleNodes: Node<NodeData, DiagramNodeType>[], directChildren: Node<NodeData, DiagramNodeType>[], newlyAddedNodes: Node<NodeData, DiagramNodeType>[], forceWidth?: ForcedDimensions): void;
20
+ }
21
+ //# sourceMappingURL=OuterFlagNodeLayoutHandler.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"OuterFlagNodeLayoutHandler.d.ts","sourceRoot":"","sources":["../../../src/nodes/outerFlag/OuterFlagNodeLayoutHandler.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;+EAY+E;AAC/E,OAAO,EACL,OAAO,EACP,eAAe,EACf,aAAa,EACb,kBAAkB,EAClB,QAAQ,EASR,gBAAgB,EAEjB,MAAM,4CAA4C,CAAC;AACpD,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AACrC,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE1D,qBAAa,0BAA2B,YAAW,kBAAkB,CAAC,QAAQ,CAAC;IAC7E,SAAS,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC;IAI/C,MAAM,CACJ,YAAY,EAAE,aAAa,EAC3B,eAAe,EAAE,OAAO,GAAG,IAAI,EAC/B,IAAI,EAAE,IAAI,CAAC,iBAAiB,EAAE,eAAe,CAAC,EAC9C,YAAY,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC,EAAE,EAC/C,cAAc,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC,EAAE,EACjD,eAAe,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC,EAAE,EAClD,UAAU,CAAC,EAAE,gBAAgB;CAsEhC"}
@@ -0,0 +1,18 @@
1
+ /*****************************************************************************
2
+ * Copyright (c) 2023, 2025 CEA LIST, Obeo.
3
+ *
4
+ * All rights reserved. This program and the accompanying materials
5
+ * are made available under the terms of the Eclipse Public License 2.0
6
+ * which accompanies this distribution, and is available at
7
+ * https://www.eclipse.org/legal/epl-2.0/
8
+ *
9
+ * SPDX-License-Identifier: EPL-2.0
10
+ *
11
+ * Contributors:
12
+ * Obeo - Initial API and implementation
13
+ *****************************************************************************/
14
+ import React from 'react';
15
+ import { Node, NodeProps } from '@xyflow/react';
16
+ import { PackageNodeData } from './PackageNode.types';
17
+ export declare const PackageNode: React.MemoExoticComponent<({ data, id, selected, dragging }: NodeProps<Node<PackageNodeData>>) => import("react/jsx-runtime").JSX.Element>;
18
+ //# sourceMappingURL=PackageNode.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PackageNode.d.ts","sourceRoot":"","sources":["../../../src/nodes/package/PackageNode.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;+EAY+E;AAgB/E,OAAO,KAA2B,MAAM,OAAO,CAAC;AAChD,OAAO,EAAE,IAAI,EAAE,SAAS,EAAe,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAiGtD,eAAO,MAAM,WAAW,+DAA2C,UAAU,KAAK,eAAe,CAAC,CAAC,6CAwEjG,CAAC"}
@@ -0,0 +1,29 @@
1
+ /*****************************************************************************
2
+ * Copyright (c) 2023, 2025 CEA LIST, Obeo.
3
+ *
4
+ * All rights reserved. This program and the accompanying materials
5
+ * are made available under the terms of the Eclipse Public License 2.0
6
+ * which accompanies this distribution, and is available at
7
+ * https://www.eclipse.org/legal/epl-2.0/
8
+ *
9
+ * SPDX-License-Identifier: EPL-2.0
10
+ *
11
+ * Contributors:
12
+ * Obeo - Initial API and implementation
13
+ *****************************************************************************/
14
+ import { GQLNodeStyle, NodeData } from '@eclipse-sirius/sirius-components-diagrams';
15
+ export interface PackageNodeData extends NodeData {
16
+ }
17
+ export interface PackageNodeListData extends NodeData {
18
+ areChildNodesDraggable: boolean;
19
+ topGap: number;
20
+ bottomGap: number;
21
+ growableNodeIds: string[];
22
+ }
23
+ export interface GQLPackageNodeStyle extends GQLNodeStyle {
24
+ background: string;
25
+ borderColor: string;
26
+ borderStyle: string;
27
+ borderSize: number;
28
+ }
29
+ //# sourceMappingURL=PackageNode.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PackageNode.types.d.ts","sourceRoot":"","sources":["../../../src/nodes/package/PackageNode.types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;+EAY+E;AAC/E,OAAO,EAAE,YAAY,EAAE,QAAQ,EAAE,MAAM,4CAA4C,CAAC;AAEpF,MAAM,WAAW,eAAgB,SAAQ,QAAQ;CAAG;AAEpD,MAAM,WAAW,mBAAoB,SAAQ,QAAQ;IACnD,sBAAsB,EAAE,OAAO,CAAC;IAChC,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,EAAE,MAAM,EAAE,CAAC;CAC3B;AAED,MAAM,WAAW,mBAAoB,SAAQ,YAAY;IACvD,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;CACpB"}
@@ -0,0 +1,21 @@
1
+ /*****************************************************************************
2
+ * Copyright (c) 2023, 2026 CEA LIST, Obeo.
3
+ *
4
+ * All rights reserved. This program and the accompanying materials
5
+ * are made available under the terms of the Eclipse Public License 2.0
6
+ * which accompanies this distribution, and is available at
7
+ * https://www.eclipse.org/legal/epl-2.0/
8
+ *
9
+ * SPDX-License-Identifier: EPL-2.0
10
+ *
11
+ * Contributors:
12
+ * Obeo - Initial API and implementation
13
+ *****************************************************************************/
14
+ import { GQLDiagram, GQLDiagramDescription, GQLEdge, GQLNode, GQLNodeDescription, GQLNodeStyle, IConvertEngine, INodeConverter, NodeData } from '@eclipse-sirius/sirius-components-diagrams';
15
+ import { Node } from '@xyflow/react';
16
+ import { GQLPackageNodeStyle } from './PackageNode.types';
17
+ export declare class PackageNodeConverter implements INodeConverter {
18
+ canHandle(gqlNode: GQLNode<GQLNodeStyle>): boolean;
19
+ handle(convertEngine: IConvertEngine, gqlDiagram: GQLDiagram, gqlNode: GQLNode<GQLPackageNodeStyle>, gqlEdges: GQLEdge[], parentNode: GQLNode<GQLNodeStyle> | null, isBorderNode: boolean, nodes: Node<NodeData>[], diagramDescription: GQLDiagramDescription, nodeDescriptions: GQLNodeDescription[]): void;
20
+ }
21
+ //# sourceMappingURL=PackageNodeConverter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PackageNodeConverter.d.ts","sourceRoot":"","sources":["../../../src/nodes/package/PackageNodeConverter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;+EAY+E;AAC/E,OAAO,EAGL,UAAU,EACV,qBAAqB,EACrB,OAAO,EAEP,OAAO,EACP,kBAAkB,EAElB,YAAY,EAEZ,cAAc,EACd,cAAc,EACd,QAAQ,EAQT,MAAM,4CAA4C,CAAC;AACpD,OAAO,EAAE,IAAI,EAAc,MAAM,eAAe,CAAC;AACjD,OAAO,EAAE,mBAAmB,EAAmB,MAAM,qBAAqB,CAAC;AA6J3E,qBAAa,oBAAqB,YAAW,cAAc;IACzD,SAAS,CAAC,OAAO,EAAE,OAAO,CAAC,YAAY,CAAC;IAIxC,MAAM,CACJ,aAAa,EAAE,cAAc,EAC7B,UAAU,EAAE,UAAU,EACtB,OAAO,EAAE,OAAO,CAAC,mBAAmB,CAAC,EACrC,QAAQ,EAAE,OAAO,EAAE,EACnB,UAAU,EAAE,OAAO,CAAC,YAAY,CAAC,GAAG,IAAI,EACxC,YAAY,EAAE,OAAO,EACrB,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,EAAE,EACvB,kBAAkB,EAAE,qBAAqB,EACzC,gBAAgB,EAAE,kBAAkB,EAAE;CAkCzC"}
@@ -0,0 +1,23 @@
1
+ /*****************************************************************************
2
+ * Copyright (c) 2023, 2025 CEA LIST, Obeo.
3
+ *
4
+ * All rights reserved. This program and the accompanying materials
5
+ * are made available under the terms of the Eclipse Public License 2.0
6
+ * which accompanies this distribution, and is available at
7
+ * https://www.eclipse.org/legal/epl-2.0/
8
+ *
9
+ * SPDX-License-Identifier: EPL-2.0
10
+ *
11
+ * Contributors:
12
+ * Obeo - Initial API and implementation
13
+ *****************************************************************************/
14
+ import { Diagram, DiagramNodeType, ILayoutEngine, INodeLayoutHandler, NodeData, ForcedDimensions } from '@eclipse-sirius/sirius-components-diagrams';
15
+ import { Node } from '@xyflow/react';
16
+ import { PackageNodeData } from './PackageNode.types';
17
+ export declare class PackageNodeLayoutHandler implements INodeLayoutHandler<PackageNodeData> {
18
+ canHandle(node: Node<NodeData, DiagramNodeType>): boolean;
19
+ handle(layoutEngine: ILayoutEngine, previousDiagram: Diagram | null, node: Node<PackageNodeData, 'packageNode'>, visibleNodes: Node<NodeData, DiagramNodeType>[], directChildren: Node<NodeData, DiagramNodeType>[], newlyAddedNodes: Node<NodeData, DiagramNodeType>[], forceWidth?: ForcedDimensions): void;
20
+ private handleParentNode;
21
+ private handleLeafNode;
22
+ }
23
+ //# sourceMappingURL=PackageNodeLayoutHandler.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PackageNodeLayoutHandler.d.ts","sourceRoot":"","sources":["../../../src/nodes/package/PackageNodeLayoutHandler.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;+EAY+E;AAC/E,OAAO,EAEL,OAAO,EACP,eAAe,EAQf,aAAa,EACb,kBAAkB,EAClB,QAAQ,EAIR,gBAAgB,EAEjB,MAAM,4CAA4C,CAAC;AACpD,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AACrC,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAItD,qBAAa,wBAAyB,YAAW,kBAAkB,CAAC,eAAe,CAAC;IAC3E,SAAS,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC;IAI/C,MAAM,CACX,YAAY,EAAE,aAAa,EAC3B,eAAe,EAAE,OAAO,GAAG,IAAI,EAC/B,IAAI,EAAE,IAAI,CAAC,eAAe,EAAE,aAAa,CAAC,EAC1C,YAAY,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC,EAAE,EAC/C,cAAc,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC,EAAE,EACjD,eAAe,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC,EAAE,EAClD,UAAU,CAAC,EAAE,gBAAgB;IAqB/B,OAAO,CAAC,gBAAgB;IA0HxB,OAAO,CAAC,cAAc;CAmCvB"}
@@ -0,0 +1,21 @@
1
+ /*****************************************************************************
2
+ * Copyright (c) 2023, 2026 CEA LIST, Obeo.
3
+ *
4
+ * All rights reserved. This program and the accompanying materials
5
+ * are made available under the terms of the Eclipse Public License 2.0
6
+ * which accompanies this distribution, and is available at
7
+ * https://www.eclipse.org/legal/epl-2.0/
8
+ *
9
+ * SPDX-License-Identifier: EPL-2.0
10
+ *
11
+ * Contributors:
12
+ * Obeo - Initial API and implementation
13
+ *****************************************************************************/
14
+ import { GQLDiagram, GQLDiagramDescription, GQLEdge, GQLNode, GQLNodeDescription, GQLNodeStyle, IConvertEngine, INodeConverter, NodeData } from '@eclipse-sirius/sirius-components-diagrams';
15
+ import { Node } from '@xyflow/react';
16
+ import { GQLPackageNodeStyle } from './PackageNode.types';
17
+ export declare class PackageNodeListConverter implements INodeConverter {
18
+ canHandle(gqlNode: GQLNode<GQLNodeStyle>): boolean;
19
+ handle(convertEngine: IConvertEngine, gqlDiagram: GQLDiagram, gqlNode: GQLNode<GQLPackageNodeStyle>, gqlEdges: GQLEdge[], parentNode: GQLNode<GQLNodeStyle> | null, isBorderNode: boolean, nodes: Node<NodeData>[], diagramDescription: GQLDiagramDescription, nodeDescriptions: GQLNodeDescription[]): void;
20
+ }
21
+ //# sourceMappingURL=PackageNodeListConverter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PackageNodeListConverter.d.ts","sourceRoot":"","sources":["../../../src/nodes/package/PackageNodeListConverter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;+EAY+E;AAC/E,OAAO,EAOL,UAAU,EACV,qBAAqB,EACrB,OAAO,EAEP,OAAO,EACP,kBAAkB,EAElB,YAAY,EAEZ,cAAc,EACd,cAAc,EAEd,QAAQ,EAGT,MAAM,4CAA4C,CAAC;AACpD,OAAO,EAAE,IAAI,EAAc,MAAM,eAAe,CAAC;AACjD,OAAO,EAAE,mBAAmB,EAAuB,MAAM,qBAAqB,CAAC;AAwK/E,qBAAa,wBAAyB,YAAW,cAAc;IAC7D,SAAS,CAAC,OAAO,EAAE,OAAO,CAAC,YAAY,CAAC;IAIxC,MAAM,CACJ,aAAa,EAAE,cAAc,EAC7B,UAAU,EAAE,UAAU,EACtB,OAAO,EAAE,OAAO,CAAC,mBAAmB,CAAC,EACrC,QAAQ,EAAE,OAAO,EAAE,EACnB,UAAU,EAAE,OAAO,CAAC,YAAY,CAAC,GAAG,IAAI,EACxC,YAAY,EAAE,OAAO,EACrB,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,EAAE,EACvB,kBAAkB,EAAE,qBAAqB,EACzC,gBAAgB,EAAE,kBAAkB,EAAE;CAkCzC"}
@@ -0,0 +1,24 @@
1
+ /*****************************************************************************
2
+ * Copyright (c) 2023, 2025 CEA LIST, Obeo.
3
+ *
4
+ * All rights reserved. This program and the accompanying materials
5
+ * are made available under the terms of the Eclipse Public License 2.0
6
+ * which accompanies this distribution, and is available at
7
+ * https://www.eclipse.org/legal/epl-2.0/
8
+ *
9
+ * SPDX-License-Identifier: EPL-2.0
10
+ *
11
+ * Contributors:
12
+ * Obeo - Initial API and implementation
13
+ * Aurelien DIDIER (Artal Technologies) - Issue 229
14
+ *****************************************************************************/
15
+ import { Diagram, DiagramNodeType, ForcedDimensions, ILayoutEngine, INodeLayoutHandler, NodeData } from '@eclipse-sirius/sirius-components-diagrams';
16
+ import { Node } from '@xyflow/react';
17
+ import { PackageNodeListData } from './PackageNode.types';
18
+ export declare class PackageNodeListLayoutHandler implements INodeLayoutHandler<PackageNodeListData> {
19
+ canHandle(node: Node<NodeData, DiagramNodeType>): boolean;
20
+ handle(layoutEngine: ILayoutEngine, previousDiagram: Diagram | null, node: Node<PackageNodeListData, 'packageNodeList'>, visibleNodes: Node<NodeData, DiagramNodeType>[], directChildren: Node<NodeData, DiagramNodeType>[], newlyAddedNodes: Node<NodeData, DiagramNodeType>[], forceDimensions?: ForcedDimensions): void;
21
+ handleLeafNode(previousDiagram: Diagram | null, node: Node<PackageNodeListData, 'packageNodeList'>, visibleNodes: Node<NodeData, DiagramNodeType>[], borderWidth: number, forceDimensions?: ForcedDimensions): void;
22
+ private handleParentNode;
23
+ }
24
+ //# sourceMappingURL=PackageNodeListLayoutHandler.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PackageNodeListLayoutHandler.d.ts","sourceRoot":"","sources":["../../../src/nodes/package/PackageNodeListLayoutHandler.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;+EAa+E;AAG/E,OAAO,EAIL,OAAO,EACP,eAAe,EAEf,gBAAgB,EAQhB,aAAa,EACb,kBAAkB,EAClB,QAAQ,EAGT,MAAM,4CAA4C,CAAC;AACpD,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AACrC,OAAO,EAAE,mBAAmB,EAAE,MAAM,qBAAqB,CAAC;AAE1D,qBAAa,4BAA6B,YAAW,kBAAkB,CAAC,mBAAmB,CAAC;IACnF,SAAS,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC;IAI/C,MAAM,CACX,YAAY,EAAE,aAAa,EAC3B,eAAe,EAAE,OAAO,GAAG,IAAI,EAC/B,IAAI,EAAE,IAAI,CAAC,mBAAmB,EAAE,iBAAiB,CAAC,EAClD,YAAY,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC,EAAE,EAC/C,cAAc,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC,EAAE,EACjD,eAAe,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC,EAAE,EAClD,eAAe,CAAC,EAAE,gBAAgB;IAyBpC,cAAc,CACZ,eAAe,EAAE,OAAO,GAAG,IAAI,EAC/B,IAAI,EAAE,IAAI,CAAC,mBAAmB,EAAE,iBAAiB,CAAC,EAClD,YAAY,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC,EAAE,EAC/C,WAAW,EAAE,MAAM,EACnB,eAAe,CAAC,EAAE,gBAAgB;IAkCpC,OAAO,CAAC,gBAAgB;CAwIzB"}
@@ -0,0 +1,18 @@
1
+ /*****************************************************************************
2
+ * Copyright (c) 2023, 2025 CEA LIST, Obeo.
3
+ *
4
+ * All rights reserved. This program and the accompanying materials
5
+ * are made available under the terms of the Eclipse Public License 2.0
6
+ * which accompanies this distribution, and is available at
7
+ * https://www.eclipse.org/legal/epl-2.0/
8
+ *
9
+ * SPDX-License-Identifier: EPL-2.0
10
+ *
11
+ * Contributors:
12
+ * Obeo - Initial API and implementation
13
+ *****************************************************************************/
14
+ import React from 'react';
15
+ import { Node, NodeProps } from '@xyflow/react';
16
+ import { RectangleWithExternalLabelNodeData } from './RectangleWithExternalLabelNode.types';
17
+ export declare const RectangleWithExternalLabelNode: React.MemoExoticComponent<({ data, id, selected, dragging }: NodeProps<Node<RectangleWithExternalLabelNodeData>>) => import("react/jsx-runtime").JSX.Element>;
18
+ //# sourceMappingURL=RectangleWithExternalLabelNode.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RectangleWithExternalLabelNode.d.ts","sourceRoot":"","sources":["../../../src/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNode.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;+EAY+E;AAgB/E,OAAO,KAA2B,MAAM,OAAO,CAAC;AAChD,OAAO,EAAE,IAAI,EAAE,SAAS,EAAe,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,kCAAkC,EAAE,MAAM,wCAAwC,CAAC;AAgE5F,eAAO,MAAM,8BAA8B,+DACN,UAAU,KAAK,kCAAkC,CAAC,CAAC,6CA2DvF,CAAC"}
@@ -0,0 +1,23 @@
1
+ /*****************************************************************************
2
+ * Copyright (c) 2023, 2025 CEA LIST, Obeo.
3
+ *
4
+ * All rights reserved. This program and the accompanying materials
5
+ * are made available under the terms of the Eclipse Public License 2.0
6
+ * which accompanies this distribution, and is available at
7
+ * https://www.eclipse.org/legal/epl-2.0/
8
+ *
9
+ * SPDX-License-Identifier: EPL-2.0
10
+ *
11
+ * Contributors:
12
+ * Obeo - Initial API and implementation
13
+ *****************************************************************************/
14
+ import { GQLNodeStyle, NodeData } from '@eclipse-sirius/sirius-components-diagrams';
15
+ export interface RectangleWithExternalLabelNodeData extends NodeData {
16
+ }
17
+ export interface GQLRectangleWithExternalLabelNodeStyle extends GQLNodeStyle {
18
+ background: string;
19
+ borderColor: string;
20
+ borderStyle: string;
21
+ borderSize: number;
22
+ }
23
+ //# sourceMappingURL=RectangleWithExternalLabelNode.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RectangleWithExternalLabelNode.types.d.ts","sourceRoot":"","sources":["../../../src/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNode.types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;+EAY+E;AAC/E,OAAO,EAAE,YAAY,EAAE,QAAQ,EAAE,MAAM,4CAA4C,CAAC;AAEpF,MAAM,WAAW,kCAAmC,SAAQ,QAAQ;CAAG;AAEvE,MAAM,WAAW,sCAAuC,SAAQ,YAAY;IAC1E,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;CACpB"}
@@ -0,0 +1,21 @@
1
+ /*****************************************************************************
2
+ * Copyright (c) 2023, 2026 CEA LIST, Obeo.
3
+ *
4
+ * All rights reserved. This program and the accompanying materials
5
+ * are made available under the terms of the Eclipse Public License 2.0
6
+ * which accompanies this distribution, and is available at
7
+ * https://www.eclipse.org/legal/epl-2.0/
8
+ *
9
+ * SPDX-License-Identifier: EPL-2.0
10
+ *
11
+ * Contributors:
12
+ * Obeo - Initial API and implementation
13
+ *****************************************************************************/
14
+ import { GQLDiagram, GQLDiagramDescription, GQLEdge, GQLNode, GQLNodeDescription, GQLNodeStyle, IConvertEngine, INodeConverter } from '@eclipse-sirius/sirius-components-diagrams';
15
+ import { Node } from '@xyflow/react';
16
+ import { GQLRectangleWithExternalLabelNodeStyle } from './RectangleWithExternalLabelNode.types';
17
+ export declare class RectangleWithExternalLabelNodeConverter implements INodeConverter {
18
+ canHandle(gqlNode: GQLNode<GQLNodeStyle>): boolean;
19
+ handle(convertEngine: IConvertEngine, gqlDiagram: GQLDiagram, gqlNode: GQLNode<GQLRectangleWithExternalLabelNodeStyle>, gqlEdges: GQLEdge[], parentNode: GQLNode<GQLNodeStyle> | null, isBorderNode: boolean, nodes: Node[], diagramDescription: GQLDiagramDescription, nodeDescriptions: GQLNodeDescription[]): void;
20
+ }
21
+ //# sourceMappingURL=RectangleWithExternalLabelNodeConverter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RectangleWithExternalLabelNodeConverter.d.ts","sourceRoot":"","sources":["../../../src/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNodeConverter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;+EAY+E;AAC/E,OAAO,EAGL,UAAU,EACV,qBAAqB,EACrB,OAAO,EACP,OAAO,EACP,kBAAkB,EAElB,YAAY,EAEZ,cAAc,EACd,cAAc,EAOf,MAAM,4CAA4C,CAAC;AACpD,OAAO,EAAE,IAAI,EAAc,MAAM,eAAe,CAAC;AACjD,OAAO,EACL,sCAAsC,EAEvC,MAAM,wCAAwC,CAAC;AAsHhD,qBAAa,uCAAwC,YAAW,cAAc;IAC5E,SAAS,CAAC,OAAO,EAAE,OAAO,CAAC,YAAY,CAAC;IAIxC,MAAM,CACJ,aAAa,EAAE,cAAc,EAC7B,UAAU,EAAE,UAAU,EACtB,OAAO,EAAE,OAAO,CAAC,sCAAsC,CAAC,EACxD,QAAQ,EAAE,OAAO,EAAE,EACnB,UAAU,EAAE,OAAO,CAAC,YAAY,CAAC,GAAG,IAAI,EACxC,YAAY,EAAE,OAAO,EACrB,KAAK,EAAE,IAAI,EAAE,EACb,kBAAkB,EAAE,qBAAqB,EACzC,gBAAgB,EAAE,kBAAkB,EAAE;CAmCzC"}
@@ -0,0 +1,20 @@
1
+ /*****************************************************************************
2
+ * Copyright (c) 2023, 2025 CEA LIST, Obeo.
3
+ *
4
+ * All rights reserved. This program and the accompanying materials
5
+ * are made available under the terms of the Eclipse Public License 2.0
6
+ * which accompanies this distribution, and is available at
7
+ * https://www.eclipse.org/legal/epl-2.0/
8
+ *
9
+ * SPDX-License-Identifier: EPL-2.0
10
+ *
11
+ * Contributors:
12
+ * Obeo - Initial API and implementation
13
+ *****************************************************************************/
14
+ import { Diagram, DiagramNodeType, ILayoutEngine, INodeLayoutHandler, NodeData, ForcedDimensions } from '@eclipse-sirius/sirius-components-diagrams';
15
+ import { Node } from '@xyflow/react';
16
+ export declare class RectangleWithExternalLabelNodeLayoutHandler implements INodeLayoutHandler<NodeData> {
17
+ canHandle(node: Node<NodeData, DiagramNodeType>): boolean;
18
+ handle(layoutEngine: ILayoutEngine, previousDiagram: Diagram | null, node: Node<NodeData>, visibleNodes: Node<NodeData, DiagramNodeType>[], directChildren: Node<NodeData, DiagramNodeType>[], newlyAddedNodes: Node<NodeData, DiagramNodeType>[], _forceWidth?: ForcedDimensions): void;
19
+ }
20
+ //# sourceMappingURL=RectangleWithExternalLabelNodeLayoutHandler.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RectangleWithExternalLabelNodeLayoutHandler.d.ts","sourceRoot":"","sources":["../../../src/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNodeLayoutHandler.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;+EAY+E;AAC/E,OAAO,EACL,OAAO,EACP,eAAe,EAEf,aAAa,EACb,kBAAkB,EAClB,QAAQ,EAER,gBAAgB,EAGjB,MAAM,4CAA4C,CAAC;AACpD,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AAErC,qBAAa,2CAA4C,YAAW,kBAAkB,CAAC,QAAQ,CAAC;IAC9F,SAAS,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC;IAI/C,MAAM,CACJ,YAAY,EAAE,aAAa,EAC3B,eAAe,EAAE,OAAO,GAAG,IAAI,EAC/B,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,EACpB,YAAY,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC,EAAE,EAC/C,cAAc,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC,EAAE,EACjD,eAAe,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC,EAAE,EAClD,WAAW,CAAC,EAAE,gBAAgB;CAejC"}