@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,19 @@
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 { WidgetProps } from '@eclipse-sirius/sirius-components-formdescriptioneditors';
15
+ import { GQLContainmentReferenceWidget } from './ContainmentReferenceFragment.types';
16
+ type PropertySectionComponentProps = WidgetProps<GQLContainmentReferenceWidget>;
17
+ export declare const ContainmentReferencePreview: ({ widget }: PropertySectionComponentProps) => import("react/jsx-runtime").JSX.Element;
18
+ export {};
19
+ //# sourceMappingURL=ContainmentReferencePreview.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ContainmentReferencePreview.d.ts","sourceRoot":"","sources":["../../../src/widgets/containmentReference/ContainmentReferencePreview.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;6EAY6E;AAG7E,OAAO,EAAE,WAAW,EAAE,MAAM,0DAA0D,CAAC;AAQvF,OAAO,EAAE,6BAA6B,EAAE,MAAM,sCAAsC,CAAC;AAyBrF,KAAK,6BAA6B,GAAG,WAAW,CAAC,6BAA6B,CAAC,CAAC;AAEhF,eAAO,MAAM,2BAA2B,wFAuDvC,CAAC"}
@@ -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 { PropertySectionComponentProps } from '@eclipse-sirius/sirius-components-forms';
15
+ import { GQLContainmentReferenceWidget } from './ContainmentReferenceFragment.types';
16
+ export declare const clickContainmentReferenceItemMutation: import("@apollo/client").DocumentNode;
17
+ export declare const removeContainmentReferenceItemMutation: import("@apollo/client").DocumentNode;
18
+ export declare const moveContainmentReferenceItemMutation: import("@apollo/client").DocumentNode;
19
+ declare const ContainmentReferenceSection: ({ editingContextId, formId, widget, readOnly, }: PropertySectionComponentProps<GQLContainmentReferenceWidget>) => import("react/jsx-runtime").JSX.Element;
20
+ export default ContainmentReferenceSection;
21
+ //# sourceMappingURL=ContainmentReferenceSection.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ContainmentReferenceSection.d.ts","sourceRoot":"","sources":["../../../src/widgets/containmentReference/ContainmentReferenceSection.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;6EAY6E;AAI7E,OAAO,EACL,6BAA6B,EAI9B,MAAM,yCAAyC,CAAC;AAajD,OAAO,EAML,6BAA6B,EAU9B,MAAM,sCAAsC,CAAC;AA4B9C,eAAO,MAAM,qCAAqC,uCAkBjD,CAAC;AAEF,eAAO,MAAM,sCAAsC,uCAkBlD,CAAC;AAEF,eAAO,MAAM,oCAAoC,uCAkBhD,CAAC;AAyDF,QAAA,MAAM,2BAA2B,oDAK9B,8BAA8B,6BAA6B,CAAC,4CAmT9D,CAAC;AAEF,eAAe,2BAA2B,CAAC"}
@@ -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
+ declare const ReorderIcon: ({ ...props }: {
15
+ [x: string]: any;
16
+ }) => import("react/jsx-runtime").JSX.Element;
17
+ export default ReorderIcon;
18
+ //# sourceMappingURL=ReorderIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ReorderIcon.d.ts","sourceRoot":"","sources":["../../../src/widgets/containmentReference/ReorderIcon.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;6EAY6E;AAE7E,QAAA,MAAM,WAAW;;6CAchB,CAAC;AAEF,eAAe,WAAW,CAAC"}
@@ -0,0 +1,17 @@
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 { CreateNewChildDialogProps } from './CreateNewChildDialog.types';
15
+ declare const CreateNewChildDialog: ({ childTypes, onClose }: CreateNewChildDialogProps) => import("react/jsx-runtime").JSX.Element;
16
+ export default CreateNewChildDialog;
17
+ //# sourceMappingURL=CreateNewChildDialog.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateNewChildDialog.d.ts","sourceRoot":"","sources":["../../../../src/widgets/containmentReference/dialogs/CreateNewChildDialog.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;6EAY6E;AAY7E,OAAO,EAAE,yBAAyB,EAAE,MAAM,8BAA8B,CAAC;AAyBzE,QAAA,MAAM,oBAAoB,4BAA6B,yBAAyB,4CAoD/E,CAAC;AAEF,eAAe,oBAAoB,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
+ export interface CreateNewChildDialogProps {
15
+ childTypes: ChildCreationDescription[];
16
+ onClose: (selectedChildCreationId: string | null) => void;
17
+ }
18
+ export interface ChildCreationDescription {
19
+ id: string;
20
+ label: string;
21
+ iconURL: string;
22
+ }
23
+ //# sourceMappingURL=CreateNewChildDialog.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateNewChildDialog.types.d.ts","sourceRoot":"","sources":["../../../../src/widgets/containmentReference/dialogs/CreateNewChildDialog.types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;6EAY6E;AAE7E,MAAM,WAAW,yBAAyB;IACxC,UAAU,EAAE,wBAAwB,EAAE,CAAC;IACvC,OAAO,EAAE,CAAC,uBAAuB,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI,CAAC;CAC3D;AAED,MAAM,WAAW,wBAAwB;IACvC,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;CACjB"}
@@ -0,0 +1,17 @@
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 210
14
+ *****************************************************************************/
15
+ import { SvgIconProps } from '@mui/material/SvgIcon';
16
+ export declare const AddImageIcon: (props: SvgIconProps) => import("react/jsx-runtime").JSX.Element;
17
+ //# sourceMappingURL=AddImageIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AddImageIcon.d.ts","sourceRoot":"","sources":["../../../src/widgets/customImage/AddImageIcon.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;+EAa+E;AAE/E,OAAgB,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAE9D,eAAO,MAAM,YAAY,UAAW,YAAY,4CAiB/C,CAAC"}
@@ -0,0 +1,83 @@
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 210
14
+ *****************************************************************************/
15
+ import { GQLMessage } from '@eclipse-sirius/sirius-components-core';
16
+ import { GQLWidget } from '@eclipse-sirius/sirius-components-forms';
17
+ import { GQLReferenceWidgetStyle } from '@eclipse-sirius/sirius-components-widget-reference';
18
+ import { GQLImageMetadata, ProjectImagesSettingsModal } from '@eclipse-sirius/sirius-web-application';
19
+ export type CustomImageWidgetModal = 'Select' | ProjectImagesSettingsModal;
20
+ export interface CustomImageWidgetState {
21
+ modal: CustomImageWidgetModal | null;
22
+ url: string;
23
+ validImage: boolean;
24
+ }
25
+ export interface GQLCustomImageWidget extends GQLWidget {
26
+ label: string;
27
+ currentUuid: string;
28
+ style: GQLReferenceWidgetStyle | null;
29
+ }
30
+ export interface CustomImageWidgetStyleProps {
31
+ color: string | null;
32
+ fontSize: number | null;
33
+ italic: boolean | null;
34
+ bold: boolean | null;
35
+ underline: boolean | null;
36
+ strikeThrough: boolean | null;
37
+ }
38
+ export interface GQLNewUuidInput {
39
+ id: string;
40
+ editingContextId: string;
41
+ representationId: string;
42
+ customImageId: string;
43
+ newUuid: string;
44
+ }
45
+ export interface GQLRemoveUuidInput {
46
+ id: string;
47
+ editingContextId: string;
48
+ representationId: string;
49
+ customImageId: string;
50
+ removeUuid: string;
51
+ }
52
+ export interface GQLNewUuidData {
53
+ newUuid: GQLNewUuidPayload;
54
+ }
55
+ export interface GQLRemoveUuidData {
56
+ removeUuid: GQLRemoveUuidPayload;
57
+ }
58
+ export interface GQLNewUuidVariables {
59
+ input: GQLNewUuidInput;
60
+ }
61
+ export interface GQLRemoveUuidVariables {
62
+ input: GQLRemoveUuidInput;
63
+ }
64
+ export interface GQLNewUuidPayload {
65
+ __typename: string;
66
+ }
67
+ export interface GQLRemoveUuidPayload {
68
+ __typename: string;
69
+ }
70
+ export interface GQLSuccessPayload extends GQLNewUuidPayload, GQLRemoveUuidPayload {
71
+ messages: GQLMessage[];
72
+ }
73
+ export interface GQLErrorPayload extends GQLNewUuidPayload, GQLRemoveUuidPayload {
74
+ messages: GQLMessage[];
75
+ }
76
+ export interface SelectImageModalProps {
77
+ currentUuid: string;
78
+ images: GQLImageMetadata[];
79
+ onImageSelected: (newUuid: string) => void;
80
+ onClose: () => void;
81
+ }
82
+ export type CustomImageParams = 'projectId';
83
+ //# sourceMappingURL=CustomImageFragment.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CustomImageFragment.types.d.ts","sourceRoot":"","sources":["../../../src/widgets/customImage/CustomImageFragment.types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;+EAa+E;AAC/E,OAAO,EAAE,UAAU,EAAE,MAAM,wCAAwC,CAAC;AACpE,OAAO,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAC;AACpE,OAAO,EAAE,uBAAuB,EAAE,MAAM,oDAAoD,CAAC;AAC7F,OAAO,EAAE,gBAAgB,EAAE,0BAA0B,EAAE,MAAM,wCAAwC,CAAC;AAEtG,MAAM,MAAM,sBAAsB,GAAG,QAAQ,GAAG,0BAA0B,CAAC;AAE3E,MAAM,WAAW,sBAAsB;IACrC,KAAK,EAAE,sBAAsB,GAAG,IAAI,CAAC;IACrC,GAAG,EAAE,MAAM,CAAC;IACZ,UAAU,EAAE,OAAO,CAAC;CACrB;AAED,MAAM,WAAW,oBAAqB,SAAQ,SAAS;IACrD,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,uBAAuB,GAAG,IAAI,CAAC;CACvC;AAED,MAAM,WAAW,2BAA2B;IAC1C,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,MAAM,EAAE,OAAO,GAAG,IAAI,CAAC;IACvB,IAAI,EAAE,OAAO,GAAG,IAAI,CAAC;IACrB,SAAS,EAAE,OAAO,GAAG,IAAI,CAAC;IAC1B,aAAa,EAAE,OAAO,GAAG,IAAI,CAAC;CAC/B;AAED,MAAM,WAAW,eAAe;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,gBAAgB,EAAE,MAAM,CAAC;IACzB,gBAAgB,EAAE,MAAM,CAAC;IACzB,aAAa,EAAE,MAAM,CAAC;IACtB,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,kBAAkB;IACjC,EAAE,EAAE,MAAM,CAAC;IACX,gBAAgB,EAAE,MAAM,CAAC;IACzB,gBAAgB,EAAE,MAAM,CAAC;IACzB,aAAa,EAAE,MAAM,CAAC;IACtB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,cAAc;IAC7B,OAAO,EAAE,iBAAiB,CAAC;CAC5B;AAED,MAAM,WAAW,iBAAiB;IAChC,UAAU,EAAE,oBAAoB,CAAC;CAClC;AAED,MAAM,WAAW,mBAAmB;IAClC,KAAK,EAAE,eAAe,CAAC;CACxB;AAED,MAAM,WAAW,sBAAsB;IACrC,KAAK,EAAE,kBAAkB,CAAC;CAC3B;AAED,MAAM,WAAW,iBAAiB;IAChC,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,oBAAoB;IACnC,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,iBAAkB,SAAQ,iBAAiB,EAAE,oBAAoB;IAChF,QAAQ,EAAE,UAAU,EAAE,CAAC;CACxB;AAED,MAAM,WAAW,eAAgB,SAAQ,iBAAiB,EAAE,oBAAoB;IAC9E,QAAQ,EAAE,UAAU,EAAE,CAAC;CACxB;AAED,MAAM,WAAW,qBAAqB;IACpC,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,gBAAgB,EAAE,CAAC;IAC3B,eAAe,EAAE,CAAC,OAAO,EAAE,MAAM,KAAK,IAAI,CAAC;IAC3C,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAED,MAAM,MAAM,iBAAiB,GAAG,WAAW,CAAC"}
@@ -0,0 +1,17 @@
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 210
14
+ *****************************************************************************/
15
+ import { SvgIconProps } from '@mui/material/SvgIcon';
16
+ export declare const CustomImageIcon: (props: SvgIconProps) => import("react/jsx-runtime").JSX.Element;
17
+ //# sourceMappingURL=CustomImageIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CustomImageIcon.d.ts","sourceRoot":"","sources":["../../../src/widgets/customImage/CustomImageIcon.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;+EAa+E;AAC/E,OAAgB,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAE9D,eAAO,MAAM,eAAe,UAAW,YAAY,4CAiBlD,CAAC"}
@@ -0,0 +1,20 @@
1
+ /*****************************************************************************
2
+ * Copyright (c) 2019, 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 210
14
+ *****************************************************************************/
15
+ import { WidgetProps } from '@eclipse-sirius/sirius-components-formdescriptioneditors';
16
+ import { GQLCustomImageWidget } from './CustomImageFragment.types';
17
+ type PropertySectionComponentProps = WidgetProps<GQLCustomImageWidget>;
18
+ export declare const CustomImagePreview: ({ widget }: PropertySectionComponentProps) => import("react/jsx-runtime").JSX.Element;
19
+ export {};
20
+ //# sourceMappingURL=CustomImagePreview.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CustomImagePreview.d.ts","sourceRoot":"","sources":["../../../src/widgets/customImage/CustomImagePreview.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;+EAa+E;AAC/E,OAAO,EAAE,WAAW,EAAE,MAAM,0DAA0D,CAAC;AAUvF,OAAO,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AAyBnE,KAAK,6BAA6B,GAAG,WAAW,CAAC,oBAAoB,CAAC,CAAC;AAEvE,eAAO,MAAM,kBAAkB,wFAmC9B,CAAC"}
@@ -0,0 +1,21 @@
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 210
14
+ *****************************************************************************/
15
+ import { PropertySectionComponentProps } from '@eclipse-sirius/sirius-components-forms';
16
+ import { GQLCustomImageWidget, SelectImageModalProps } from './CustomImageFragment.types';
17
+ export declare const newUuidMutation: import("@apollo/client").DocumentNode;
18
+ export declare const removeUuidMutation: import("@apollo/client").DocumentNode;
19
+ export declare const CustomImageSection: ({ widget, editingContextId, formId, }: PropertySectionComponentProps<GQLCustomImageWidget>) => import("react/jsx-runtime").JSX.Element;
20
+ export declare const SelectImageModal: (props: SelectImageModalProps) => import("react/jsx-runtime").JSX.Element;
21
+ //# sourceMappingURL=CustomImageSection.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CustomImageSection.d.ts","sourceRoot":"","sources":["../../../src/widgets/customImage/CustomImageSection.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;+EAa+E;AAI/E,OAAO,EACL,6BAA6B,EAG9B,MAAM,yCAAyC,CAAC;AAkBjD,OAAO,EAIL,oBAAoB,EAWpB,qBAAqB,EACtB,MAAM,6BAA6B,CAAC;AAErC,eAAO,MAAM,eAAe,uCAkB3B,CAAC;AAEF,eAAO,MAAM,kBAAkB,uCAkB9B,CAAC;AAqBF,eAAO,MAAM,kBAAkB,0CAI5B,8BAA8B,oBAAoB,CAAC,4CA+JrD,CAAC;AAeF,eAAO,MAAM,gBAAgB,UAAW,qBAAqB,4CAqD5D,CAAC"}
@@ -0,0 +1,17 @@
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 { ReorderItemsDialogProps } from './ReorderItemsDialog.types';
15
+ declare const ReorderItemsDialog: ({ items, onClose, moveElement }: ReorderItemsDialogProps) => import("react/jsx-runtime").JSX.Element;
16
+ export default ReorderItemsDialog;
17
+ //# sourceMappingURL=ReorderItemsDialog.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ReorderItemsDialog.d.ts","sourceRoot":"","sources":["../../../src/widgets/dialogs/ReorderItemsDialog.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;6EAY6E;AAY7E,OAAO,EAAE,uBAAuB,EAA2B,MAAM,4BAA4B,CAAC;AA8B9F,QAAA,MAAM,kBAAkB,oCAAqC,uBAAuB,4CAwFnF,CAAC;AAEF,eAAe,kBAAkB,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
+ export interface ReorderItemsDialogProps {
15
+ items: ReorderingItem[];
16
+ onClose: () => void;
17
+ moveElement: (itemId: string, fromIndex: number, toIndex: number) => void;
18
+ }
19
+ export interface ReorderItemsDialogState {
20
+ draggingItemId: string | undefined;
21
+ draggingStartIndex: number;
22
+ draggingIndex: number;
23
+ }
24
+ export interface ReorderingItem {
25
+ label: string;
26
+ id: string;
27
+ iconURL: string[];
28
+ }
29
+ //# sourceMappingURL=ReorderItemsDialog.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ReorderItemsDialog.types.d.ts","sourceRoot":"","sources":["../../../src/widgets/dialogs/ReorderItemsDialog.types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;6EAY6E;AAE7E,MAAM,WAAW,uBAAuB;IACtC,KAAK,EAAE,cAAc,EAAE,CAAC;IACxB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,WAAW,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,KAAK,IAAI,CAAC;CAC3E;AACD,MAAM,WAAW,uBAAuB;IACtC,cAAc,EAAE,MAAM,GAAG,SAAS,CAAC;IACnC,kBAAkB,EAAE,MAAM,CAAC;IAC3B,aAAa,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,WAAW,cAAc;IAC7B,KAAK,EAAE,MAAM,CAAC;IACd,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,EAAE,MAAM,EAAE,CAAC;CACnB"}
@@ -0,0 +1,97 @@
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 { GQLWidget } from '@eclipse-sirius/sirius-components-forms';
15
+ import { GQLMessage } from '@eclipse-sirius/sirius-components-core';
16
+ export interface GQLLanguageExpression extends GQLWidget {
17
+ languages: Array<GQLLanguageElement> | null;
18
+ predefinedLanguages: Array<string>;
19
+ }
20
+ export interface GQLLanguageElement {
21
+ id: string;
22
+ label: string;
23
+ body: string;
24
+ }
25
+ export interface GQLAddLanguageData {
26
+ addLanguage: GQLAddLanguagePayload;
27
+ }
28
+ export interface GQLAddLanguageVariables {
29
+ input: GQLAddLanguageInput;
30
+ }
31
+ export interface GQLAddLanguageInput {
32
+ id: string;
33
+ editingContextId: string;
34
+ representationId: string;
35
+ languageExpressionId: string;
36
+ language: string;
37
+ }
38
+ export interface GQLAddLanguagePayload {
39
+ __typename: string;
40
+ }
41
+ export interface GQLSuccessPayload extends GQLAddLanguagePayload {
42
+ messages: GQLMessage[];
43
+ }
44
+ export interface GQLErrorPayload extends GQLAddLanguagePayload {
45
+ messages: GQLMessage[];
46
+ }
47
+ export interface GQLDeleteLanguageVariables {
48
+ input: GQLDeleteLanguageInput;
49
+ }
50
+ export interface GQLDeleteLanguageInput {
51
+ id: string;
52
+ editingContextId: string;
53
+ representationId: string;
54
+ languageExpressionId: string;
55
+ language: string;
56
+ }
57
+ export interface GQLDeleteLanguageData {
58
+ deleteLanguage: GQLDeleteLanguagePayload;
59
+ }
60
+ export interface GQLDeleteLanguagePayload {
61
+ __typename: string;
62
+ }
63
+ export interface GQLEditLanguageBodyVariables {
64
+ input: GQLEditLanguageBodyInput;
65
+ }
66
+ export interface GQLEditLanguageBodyInput {
67
+ id: string;
68
+ editingContextId: string;
69
+ representationId: string;
70
+ languageExpressionId: string;
71
+ language: string;
72
+ newBody: string;
73
+ }
74
+ export interface GQLEditLanguageBodyData {
75
+ editLanguageBody: GQLEditLanguageBodyPayload;
76
+ }
77
+ export interface GQLEditLanguageBodyPayload {
78
+ __typename: string;
79
+ }
80
+ export interface GQLMoveLanguageVariables {
81
+ input: GQLMoveLanguageInput;
82
+ }
83
+ export interface GQLMoveLanguageInput {
84
+ id: string;
85
+ editingContextId: string;
86
+ representationId: string;
87
+ languageExpressionId: string;
88
+ language: string;
89
+ direction: 'BACKWARD' | 'FORWARD';
90
+ }
91
+ export interface GQLMoveLanguageData {
92
+ moveLanguage: GQLMoveLanguagePayload;
93
+ }
94
+ export interface GQLMoveLanguagePayload {
95
+ __typename: string;
96
+ }
97
+ //# sourceMappingURL=LanguageExpressionFragment.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LanguageExpressionFragment.types.d.ts","sourceRoot":"","sources":["../../../src/widgets/languageExpression/LanguageExpressionFragment.types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;6EAY6E;AAE7E,OAAO,EAAE,SAAS,EAAE,MAAM,yCAAyC,CAAC;AACpE,OAAO,EAAE,UAAU,EAAE,MAAM,wCAAwC,CAAC;AAEpE,MAAM,WAAW,qBAAsB,SAAQ,SAAS;IACtD,SAAS,EAAE,KAAK,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC;IAC5C,mBAAmB,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;CACpC;AAED,MAAM,WAAW,kBAAkB;IACjC,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,kBAAkB;IACjC,WAAW,EAAE,qBAAqB,CAAC;CACpC;AAED,MAAM,WAAW,uBAAuB;IACtC,KAAK,EAAE,mBAAmB,CAAC;CAC5B;AAED,MAAM,WAAW,mBAAmB;IAClC,EAAE,EAAE,MAAM,CAAC;IACX,gBAAgB,EAAE,MAAM,CAAC;IACzB,gBAAgB,EAAE,MAAM,CAAC;IACzB,oBAAoB,EAAE,MAAM,CAAC;IAC7B,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,qBAAqB;IACpC,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,iBAAkB,SAAQ,qBAAqB;IAC9D,QAAQ,EAAE,UAAU,EAAE,CAAC;CACxB;AAED,MAAM,WAAW,eAAgB,SAAQ,qBAAqB;IAC5D,QAAQ,EAAE,UAAU,EAAE,CAAC;CACxB;AAED,MAAM,WAAW,0BAA0B;IACzC,KAAK,EAAE,sBAAsB,CAAC;CAC/B;AAED,MAAM,WAAW,sBAAsB;IACrC,EAAE,EAAE,MAAM,CAAC;IACX,gBAAgB,EAAE,MAAM,CAAC;IACzB,gBAAgB,EAAE,MAAM,CAAC;IACzB,oBAAoB,EAAE,MAAM,CAAC;IAC7B,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,qBAAqB;IACpC,cAAc,EAAE,wBAAwB,CAAC;CAC1C;AAED,MAAM,WAAW,wBAAwB;IACvC,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,4BAA4B;IAC3C,KAAK,EAAE,wBAAwB,CAAC;CACjC;AAED,MAAM,WAAW,wBAAwB;IACvC,EAAE,EAAE,MAAM,CAAC;IACX,gBAAgB,EAAE,MAAM,CAAC;IACzB,gBAAgB,EAAE,MAAM,CAAC;IACzB,oBAAoB,EAAE,MAAM,CAAC;IAC7B,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,uBAAuB;IACtC,gBAAgB,EAAE,0BAA0B,CAAC;CAC9C;AAED,MAAM,WAAW,0BAA0B;IACzC,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,wBAAwB;IACvC,KAAK,EAAE,oBAAoB,CAAC;CAC7B;AAED,MAAM,WAAW,oBAAoB;IACnC,EAAE,EAAE,MAAM,CAAC;IACX,gBAAgB,EAAE,MAAM,CAAC;IACzB,gBAAgB,EAAE,MAAM,CAAC;IACzB,oBAAoB,EAAE,MAAM,CAAC;IAC7B,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,UAAU,GAAG,SAAS,CAAC;CACnC;AAED,MAAM,WAAW,mBAAmB;IAClC,YAAY,EAAE,sBAAsB,CAAC;CACtC;AAED,MAAM,WAAW,sBAAsB;IACrC,UAAU,EAAE,MAAM,CAAC;CACpB"}
@@ -0,0 +1,16 @@
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 { SvgIconProps } from '@mui/material/SvgIcon';
15
+ export declare const LanguageExpressionIcon: (props: SvgIconProps) => import("react/jsx-runtime").JSX.Element;
16
+ //# sourceMappingURL=LanguageExpressionIcon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LanguageExpressionIcon.d.ts","sourceRoot":"","sources":["../../../src/widgets/languageExpression/LanguageExpressionIcon.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;6EAY6E;AAE7E,OAAgB,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAE9D,eAAO,MAAM,sBAAsB,UAAW,YAAY,4CAmBzD,CAAC"}
@@ -0,0 +1,6 @@
1
+ import { GQLLanguageExpression } from './LanguageExpressionFragment.types';
2
+ import { WidgetProps } from '@eclipse-sirius/sirius-components-formdescriptioneditors';
3
+ type PropertySectionComponentProps = WidgetProps<GQLLanguageExpression>;
4
+ export declare const LanguageExpressionPreview: ({ widget }: PropertySectionComponentProps) => import("react/jsx-runtime").JSX.Element;
5
+ export {};
6
+ //# sourceMappingURL=LanguageExpressionPreview.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LanguageExpressionPreview.d.ts","sourceRoot":"","sources":["../../../src/widgets/languageExpression/LanguageExpressionPreview.tsx"],"names":[],"mappings":"AA4BA,OAAO,EAAE,qBAAqB,EAAE,MAAM,oCAAoC,CAAC;AAC3E,OAAO,EAAE,WAAW,EAAE,MAAM,0DAA0D,CAAC;AAmEvF,KAAK,6BAA6B,GAAG,WAAW,CAAC,qBAAqB,CAAC,CAAC;AAExE,eAAO,MAAM,yBAAyB,wFAgErC,CAAC"}
@@ -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 { PropertySectionComponentProps } from '@eclipse-sirius/sirius-components-forms';
15
+ import { GQLLanguageExpression } from './LanguageExpressionFragment.types';
16
+ export declare const addLanguageMutation: import("@apollo/client").DocumentNode;
17
+ export declare const deleteLanguageMutation: import("@apollo/client").DocumentNode;
18
+ export declare const editLanguageBodyMutation: import("@apollo/client").DocumentNode;
19
+ export declare const moveLanguageMutation: import("@apollo/client").DocumentNode;
20
+ export declare const LanguageExpressionSection: ({ editingContextId, formId, widget, readOnly, }: PropertySectionComponentProps<GQLLanguageExpression>) => import("react/jsx-runtime").JSX.Element;
21
+ //# sourceMappingURL=LanguageExpressionSection.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LanguageExpressionSection.d.ts","sourceRoot":"","sources":["../../../src/widgets/languageExpression/LanguageExpressionSection.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;6EAY6E;AAE7E,OAAO,EAAE,6BAA6B,EAAwB,MAAM,yCAAyC,CAAC;AA6B9G,OAAO,EAYL,qBAAqB,EAKtB,MAAM,oCAAoC,CAAC;AA2D5C,eAAO,MAAM,mBAAmB,uCAkB/B,CAAC;AAEF,eAAO,MAAM,sBAAsB,uCAkBlC,CAAC;AAEF,eAAO,MAAM,wBAAwB,uCAkBpC,CAAC;AAEF,eAAO,MAAM,oBAAoB,uCAkBhC,CAAC;AACF,eAAO,MAAM,yBAAyB,oDAKnC,8BAA8B,qBAAqB,CAAC,4CAwVtD,CAAC"}
@@ -0,0 +1,19 @@
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 { WidgetProps } from '@eclipse-sirius/sirius-components-formdescriptioneditors';
15
+ import { GQLList } from '@eclipse-sirius/sirius-components-forms';
16
+ type PrimitiveListWidgetProps = WidgetProps<GQLList>;
17
+ export declare const PrimitiveListWidgetPreview: ({ widget }: PrimitiveListWidgetProps) => import("react/jsx-runtime").JSX.Element;
18
+ export {};
19
+ //# sourceMappingURL=PrimitiveListWidgetPreview.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PrimitiveListWidgetPreview.d.ts","sourceRoot":"","sources":["../../../src/widgets/primitiveList/PrimitiveListWidgetPreview.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;+EAY+E;AAG/E,OAAO,EAAE,WAAW,EAAE,MAAM,0DAA0D,CAAC;AACvF,OAAO,EAA8B,OAAO,EAAkB,MAAM,yCAAyC,CAAC;AAwC9G,KAAK,wBAAwB,GAAG,WAAW,CAAC,OAAO,CAAC,CAAC;AAErD,eAAO,MAAM,0BAA0B,mFAmGtC,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { PrimitiveListPropertySectionProps } from './PrimitiveListWidgetPropertySection.types';
2
+ export declare const deletePrimitiveListItemMutation: import("@apollo/client").DocumentNode;
3
+ export declare const addPrimitiveListItemMutation: import("@apollo/client").DocumentNode;
4
+ export declare const reorderPrimitiveListItemsMutation: import("@apollo/client").DocumentNode;
5
+ export declare const actionPrimitiveListItemMutation: import("@apollo/client").DocumentNode;
6
+ export declare const PrimitiveListSection: ({ editingContextId, formId, widget, readOnly, }: PrimitiveListPropertySectionProps) => import("react/jsx-runtime").JSX.Element;
7
+ //# sourceMappingURL=PrimitiveListWidgetPropertySection.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PrimitiveListWidgetPropertySection.d.ts","sourceRoot":"","sources":["../../../src/widgets/primitiveList/PrimitiveListWidgetPropertySection.tsx"],"names":[],"mappings":"AA+BA,OAAO,EAoBL,iCAAiC,EAElC,MAAM,4CAA4C,CAAC;AAMpD,eAAO,MAAM,+BAA+B,uCAkB3C,CAAC;AAEF,eAAO,MAAM,4BAA4B,uCAkBxC,CAAC;AAEF,eAAO,MAAM,iCAAiC,uCAkB7C,CAAC;AAEF,eAAO,MAAM,+BAA+B,uCAkB3C,CAAC;AA2EF,eAAO,MAAM,oBAAoB,oDAK9B,iCAAiC,4CA8YnC,CAAC"}