@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.
- package/.prettierrc +22 -0
- package/.project +11 -0
- package/.turbo/cache/2e7de991e3eb5b77-meta.json +1 -0
- package/.turbo/cache/2e7de991e3eb5b77.tar.zst +0 -0
- package/.turbo/cache/6d4efa6c3019818e-meta.json +1 -0
- package/.turbo/cache/6d4efa6c3019818e.tar.zst +0 -0
- package/.turbo/cache/904b84e8ab6fefb1-meta.json +1 -0
- package/.turbo/cache/904b84e8ab6fefb1.tar.zst +0 -0
- package/.turbo/cache/b657accc57a869a6-meta.json +1 -0
- package/.turbo/cache/b657accc57a869a6.tar.zst +0 -0
- package/.turbo/cookies/1.cookie +0 -0
- package/.turbo/cookies/2.cookie +0 -0
- package/.turbo/cookies/3.cookie +0 -0
- package/.turbo/cookies/4.cookie +0 -0
- package/.turbo/cookies/5.cookie +0 -0
- package/.turbo/cookies/6.cookie +0 -0
- package/.turbo/cookies/7.cookie +0 -0
- package/.turbo/cookies/8.cookie +0 -0
- package/.turbo/daemon/8a1f25190e5082e3-turbo.log.2026-04-01 +0 -0
- package/package.json +32 -0
- package/papyrus-web/.env.development +2 -0
- package/papyrus-web/.prettierrc +22 -0
- package/papyrus-web/.turbo/turbo-build.log +30 -0
- package/papyrus-web/.turbo/turbo-format-lint.log +6 -0
- package/papyrus-web/README.adoc +84 -0
- package/papyrus-web/dist/assets/Lato-Black-B_kLSaRn.ttf +0 -0
- package/papyrus-web/dist/assets/Lato-BlackItalic-B2JUbIh8.ttf +0 -0
- package/papyrus-web/dist/assets/Lato-Bold-DBmunEOG.ttf +0 -0
- package/papyrus-web/dist/assets/Lato-BoldItalic-DfTVlc2v.ttf +0 -0
- package/papyrus-web/dist/assets/Lato-Italic-CxPt6gM6.ttf +0 -0
- package/papyrus-web/dist/assets/Lato-Light-Cg7pVZQZ.ttf +0 -0
- package/papyrus-web/dist/assets/Lato-LightItalic-BkbZ6uep.ttf +0 -0
- package/papyrus-web/dist/assets/Lato-Regular-57KsL5Ww.ttf +0 -0
- package/papyrus-web/dist/assets/Lato-Thin-CvSM47fD.ttf +0 -0
- package/papyrus-web/dist/assets/Lato-ThinItalic-9M4CJfMt.ttf +0 -0
- package/papyrus-web/dist/assets/browser-ponyfill-CVpHIrSq.js +2 -0
- package/papyrus-web/dist/assets/index-CjSWMYED.js +6122 -0
- package/papyrus-web/dist/assets/index-DJjGIuFa.css +1 -0
- package/papyrus-web/dist/assets/papyrus-icon-DqmMeq_6.png +0 -0
- package/papyrus-web/dist/favicon.ico +0 -0
- package/papyrus-web/dist/index.html +42 -0
- package/papyrus-web/dist/manifest.json +15 -0
- package/papyrus-web/dist/papyrus.ico +0 -0
- package/papyrus-web/index.html +41 -0
- package/papyrus-web/package.json +104 -0
- package/papyrus-web/public/favicon.ico +0 -0
- package/papyrus-web/public/manifest.json +15 -0
- package/papyrus-web/public/papyrus.ico +0 -0
- package/papyrus-web/src/ReactFlow.css +17 -0
- package/papyrus-web/src/core/PapyrusIcon.tsx +17 -0
- package/papyrus-web/src/core/PapyrusNavigationBarIcon.tsx +46 -0
- package/papyrus-web/src/core/URL.ts +34 -0
- package/papyrus-web/src/extensions/ExtensionRegistryMergeStrategy.ts +50 -0
- package/papyrus-web/src/fonts/Lato/Lato-Black.ttf +0 -0
- package/papyrus-web/src/fonts/Lato/Lato-BlackItalic.ttf +0 -0
- package/papyrus-web/src/fonts/Lato/Lato-Bold.ttf +0 -0
- package/papyrus-web/src/fonts/Lato/Lato-BoldItalic.ttf +0 -0
- package/papyrus-web/src/fonts/Lato/Lato-Italic.ttf +0 -0
- package/papyrus-web/src/fonts/Lato/Lato-Light.ttf +0 -0
- package/papyrus-web/src/fonts/Lato/Lato-LightItalic.ttf +0 -0
- package/papyrus-web/src/fonts/Lato/Lato-Regular.ttf +0 -0
- package/papyrus-web/src/fonts/Lato/Lato-Thin.ttf +0 -0
- package/papyrus-web/src/fonts/Lato/Lato-ThinItalic.ttf +0 -0
- package/papyrus-web/src/fonts/Lato/OFL.txt +93 -0
- package/papyrus-web/src/fonts.css +81 -0
- package/papyrus-web/src/footer/Footer.tsx +50 -0
- package/papyrus-web/src/icons/papyrus-icon.png +0 -0
- package/papyrus-web/src/index.tsx +325 -0
- package/papyrus-web/src/portals.css +16 -0
- package/papyrus-web/src/react-app-env.d.ts +1 -0
- package/papyrus-web/src/reset.css +218 -0
- package/papyrus-web/src/variables.css +111 -0
- package/papyrus-web/src/vite-env.d.ts +1 -0
- package/papyrus-web/tsconfig.json +34 -0
- package/papyrus-web/vite.config.js +24 -0
- package/papyrus-web-components/.prettierrc +22 -0
- package/papyrus-web-components/.turbo/turbo-build.log +77 -0
- package/papyrus-web-components/.turbo/turbo-format-lint.log +6 -0
- package/papyrus-web-components/README.adoc +13 -0
- package/papyrus-web-components/dist/diagram-tools/EditProjectView.types.d.ts +48 -0
- package/papyrus-web-components/dist/diagram-tools/EditProjectView.types.d.ts.map +1 -0
- package/papyrus-web-components/dist/diagram-tools/FilterableSortableList.d.ts +3 -0
- package/papyrus-web-components/dist/diagram-tools/FilterableSortableList.d.ts.map +1 -0
- package/papyrus-web-components/dist/diagram-tools/FilterableSortableList.types.d.ts +33 -0
- package/papyrus-web-components/dist/diagram-tools/FilterableSortableList.types.d.ts.map +1 -0
- package/papyrus-web-components/dist/diagram-tools/ModelBrowserFilterBar.d.ts +15 -0
- package/papyrus-web-components/dist/diagram-tools/ModelBrowserFilterBar.d.ts.map +1 -0
- package/papyrus-web-components/dist/diagram-tools/ModelBrowserFilterBar.types.d.ts +20 -0
- package/papyrus-web-components/dist/diagram-tools/ModelBrowserFilterBar.types.d.ts.map +1 -0
- package/papyrus-web-components/dist/diagram-tools/PapyrusPopupToolContribution.d.ts +3 -0
- package/papyrus-web-components/dist/diagram-tools/PapyrusPopupToolContribution.d.ts.map +1 -0
- package/papyrus-web-components/dist/diagram-tools/PapyrusPopupToolContribution.types.d.ts +53 -0
- package/papyrus-web-components/dist/diagram-tools/PapyrusPopupToolContribution.types.d.ts.map +1 -0
- package/papyrus-web-components/dist/diagram-tools/TransferModal.d.ts +3 -0
- package/papyrus-web-components/dist/diagram-tools/TransferModal.d.ts.map +1 -0
- package/papyrus-web-components/dist/diagram-tools/TransferModal.types.d.ts +32 -0
- package/papyrus-web-components/dist/diagram-tools/TransferModal.types.d.ts.map +1 -0
- package/papyrus-web-components/dist/index.d.ts +61 -0
- package/papyrus-web-components/dist/index.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/NodesDocumentTransform.d.ts +15 -0
- package/papyrus-web-components/dist/nodes/NodesDocumentTransform.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/cuboid/CuboidNode.d.ts +18 -0
- package/papyrus-web-components/dist/nodes/cuboid/CuboidNode.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/cuboid/CuboidNode.types.d.ts +29 -0
- package/papyrus-web-components/dist/nodes/cuboid/CuboidNode.types.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/cuboid/CuboidNodeConverter.d.ts +21 -0
- package/papyrus-web-components/dist/nodes/cuboid/CuboidNodeConverter.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/cuboid/CuboidNodeLayoutHandler.d.ts +23 -0
- package/papyrus-web-components/dist/nodes/cuboid/CuboidNodeLayoutHandler.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/cuboid/CuboidNodeListConverter.d.ts +21 -0
- package/papyrus-web-components/dist/nodes/cuboid/CuboidNodeListConverter.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/cuboid/CuboidNodeListLayoutHandler.d.ts +23 -0
- package/papyrus-web-components/dist/nodes/cuboid/CuboidNodeListLayoutHandler.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/customImage/CustomImageNode.d.ts +3 -0
- package/papyrus-web-components/dist/nodes/customImage/CustomImageNode.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/customImage/CustomImageNode.types.d.ts +34 -0
- package/papyrus-web-components/dist/nodes/customImage/CustomImageNode.types.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/customImage/CustomImageNodeConverter.d.ts +22 -0
- package/papyrus-web-components/dist/nodes/customImage/CustomImageNodeConverter.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/customImage/CustomImageNodeLayoutHandler.d.ts +23 -0
- package/papyrus-web-components/dist/nodes/customImage/CustomImageNodeLayoutHandler.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/ellipse/EllipseNode.d.ts +15 -0
- package/papyrus-web-components/dist/nodes/ellipse/EllipseNode.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/ellipse/EllipseNode.types.d.ts +33 -0
- package/papyrus-web-components/dist/nodes/ellipse/EllipseNode.types.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/ellipse/EllipseNodeConverter.d.ts +23 -0
- package/papyrus-web-components/dist/nodes/ellipse/EllipseNodeConverter.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/ellipse/EllipseNodeLayoutHandler.d.ts +25 -0
- package/papyrus-web-components/dist/nodes/ellipse/EllipseNodeLayoutHandler.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/innerFlag/InnerFlagNode.d.ts +18 -0
- package/papyrus-web-components/dist/nodes/innerFlag/InnerFlagNode.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/innerFlag/InnerFlagNode.types.d.ts +23 -0
- package/papyrus-web-components/dist/nodes/innerFlag/InnerFlagNode.types.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/innerFlag/InnerFlagNodeConverter.d.ts +21 -0
- package/papyrus-web-components/dist/nodes/innerFlag/InnerFlagNodeConverter.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/innerFlag/InnerFlagNodeLayoutHandler.d.ts +21 -0
- package/papyrus-web-components/dist/nodes/innerFlag/InnerFlagNodeLayoutHandler.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/note/NoteLabel.d.ts +18 -0
- package/papyrus-web-components/dist/nodes/note/NoteLabel.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/note/NoteNode.d.ts +19 -0
- package/papyrus-web-components/dist/nodes/note/NoteNode.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/note/NoteNode.types.d.ts +41 -0
- package/papyrus-web-components/dist/nodes/note/NoteNode.types.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/note/NoteNodeConverter.d.ts +21 -0
- package/papyrus-web-components/dist/nodes/note/NoteNodeConverter.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/note/NoteNodeLayoutHandler.d.ts +21 -0
- package/papyrus-web-components/dist/nodes/note/NoteNodeLayoutHandler.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/outerFlag/OuterFlagNode.d.ts +18 -0
- package/papyrus-web-components/dist/nodes/outerFlag/OuterFlagNode.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/outerFlag/OuterFlagNode.types.d.ts +23 -0
- package/papyrus-web-components/dist/nodes/outerFlag/OuterFlagNode.types.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/outerFlag/OuterFlagNodeConverter.d.ts +21 -0
- package/papyrus-web-components/dist/nodes/outerFlag/OuterFlagNodeConverter.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/outerFlag/OuterFlagNodeLayoutHandler.d.ts +21 -0
- package/papyrus-web-components/dist/nodes/outerFlag/OuterFlagNodeLayoutHandler.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/package/PackageNode.d.ts +18 -0
- package/papyrus-web-components/dist/nodes/package/PackageNode.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/package/PackageNode.types.d.ts +29 -0
- package/papyrus-web-components/dist/nodes/package/PackageNode.types.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/package/PackageNodeConverter.d.ts +21 -0
- package/papyrus-web-components/dist/nodes/package/PackageNodeConverter.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/package/PackageNodeLayoutHandler.d.ts +23 -0
- package/papyrus-web-components/dist/nodes/package/PackageNodeLayoutHandler.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/package/PackageNodeListConverter.d.ts +21 -0
- package/papyrus-web-components/dist/nodes/package/PackageNodeListConverter.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/package/PackageNodeListLayoutHandler.d.ts +24 -0
- package/papyrus-web-components/dist/nodes/package/PackageNodeListLayoutHandler.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNode.d.ts +18 -0
- package/papyrus-web-components/dist/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNode.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNode.types.d.ts +23 -0
- package/papyrus-web-components/dist/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNode.types.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNodeConverter.d.ts +21 -0
- package/papyrus-web-components/dist/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNodeConverter.d.ts.map +1 -0
- package/papyrus-web-components/dist/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNodeLayoutHandler.d.ts +20 -0
- package/papyrus-web-components/dist/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNodeLayoutHandler.d.ts.map +1 -0
- package/papyrus-web-components/dist/papyrus-web-components.es.js +11710 -0
- package/papyrus-web-components/dist/papyrus-web-components.umd.js +11664 -0
- package/papyrus-web-components/dist/profile/apply-profile/ApplyProfileModal.d.ts +3 -0
- package/papyrus-web-components/dist/profile/apply-profile/ApplyProfileModal.d.ts.map +1 -0
- package/papyrus-web-components/dist/profile/apply-profile/ApplyProfileModal.types.d.ts +55 -0
- package/papyrus-web-components/dist/profile/apply-profile/ApplyProfileModal.types.d.ts.map +1 -0
- package/papyrus-web-components/dist/profile/apply-profile/ApplyProfileModalMachine.d.ts +65 -0
- package/papyrus-web-components/dist/profile/apply-profile/ApplyProfileModalMachine.d.ts.map +1 -0
- package/papyrus-web-components/dist/profile/apply-profile/UMLModelTreeItemContextMenuContribution.d.ts +16 -0
- package/papyrus-web-components/dist/profile/apply-profile/UMLModelTreeItemContextMenuContribution.d.ts.map +1 -0
- package/papyrus-web-components/dist/profile/apply-stereotype/ApplyStereotypeModal.d.ts +15 -0
- package/papyrus-web-components/dist/profile/apply-stereotype/ApplyStereotypeModal.d.ts.map +1 -0
- package/papyrus-web-components/dist/profile/apply-stereotype/ApplyStereotypeModal.types.d.ts +48 -0
- package/papyrus-web-components/dist/profile/apply-stereotype/ApplyStereotypeModal.types.d.ts.map +1 -0
- package/papyrus-web-components/dist/profile/apply-stereotype/ApplyStereotypeModalMachine.d.ts +65 -0
- package/papyrus-web-components/dist/profile/apply-stereotype/ApplyStereotypeModalMachine.d.ts.map +1 -0
- package/papyrus-web-components/dist/profile/apply-stereotype/UMLElementTreeItemContextMenuContribution.d.ts +16 -0
- package/papyrus-web-components/dist/profile/apply-stereotype/UMLElementTreeItemContextMenuContribution.d.ts.map +1 -0
- package/papyrus-web-components/dist/profile/publish-profile/PublishProfileDialog.d.ts +16 -0
- package/papyrus-web-components/dist/profile/publish-profile/PublishProfileDialog.d.ts.map +1 -0
- package/papyrus-web-components/dist/profile/publish-profile/PublishProfileDialog.types.d.ts +72 -0
- package/papyrus-web-components/dist/profile/publish-profile/PublishProfileDialog.types.d.ts.map +1 -0
- package/papyrus-web-components/dist/profile/publish-profile/PublishProfileTreeItemContextMenuContribution.d.ts +16 -0
- package/papyrus-web-components/dist/profile/publish-profile/PublishProfileTreeItemContextMenuContribution.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/CustomWidgetsDocumentTransform.d.ts +15 -0
- package/papyrus-web-components/dist/widgets/CustomWidgetsDocumentTransform.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/containmentReference/ContainmentReferenceFragment.types.d.ts +145 -0
- package/papyrus-web-components/dist/widgets/containmentReference/ContainmentReferenceFragment.types.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/containmentReference/ContainmentReferenceIcon.d.ts +16 -0
- package/papyrus-web-components/dist/widgets/containmentReference/ContainmentReferenceIcon.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/containmentReference/ContainmentReferencePreview.d.ts +19 -0
- package/papyrus-web-components/dist/widgets/containmentReference/ContainmentReferencePreview.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/containmentReference/ContainmentReferenceSection.d.ts +21 -0
- package/papyrus-web-components/dist/widgets/containmentReference/ContainmentReferenceSection.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/containmentReference/ReorderIcon.d.ts +18 -0
- package/papyrus-web-components/dist/widgets/containmentReference/ReorderIcon.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/containmentReference/dialogs/CreateNewChildDialog.d.ts +17 -0
- package/papyrus-web-components/dist/widgets/containmentReference/dialogs/CreateNewChildDialog.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/containmentReference/dialogs/CreateNewChildDialog.types.d.ts +23 -0
- package/papyrus-web-components/dist/widgets/containmentReference/dialogs/CreateNewChildDialog.types.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/customImage/AddImageIcon.d.ts +17 -0
- package/papyrus-web-components/dist/widgets/customImage/AddImageIcon.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/customImage/CustomImageFragment.types.d.ts +83 -0
- package/papyrus-web-components/dist/widgets/customImage/CustomImageFragment.types.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/customImage/CustomImageIcon.d.ts +17 -0
- package/papyrus-web-components/dist/widgets/customImage/CustomImageIcon.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/customImage/CustomImagePreview.d.ts +20 -0
- package/papyrus-web-components/dist/widgets/customImage/CustomImagePreview.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/customImage/CustomImageSection.d.ts +21 -0
- package/papyrus-web-components/dist/widgets/customImage/CustomImageSection.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/dialogs/ReorderItemsDialog.d.ts +17 -0
- package/papyrus-web-components/dist/widgets/dialogs/ReorderItemsDialog.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/dialogs/ReorderItemsDialog.types.d.ts +29 -0
- package/papyrus-web-components/dist/widgets/dialogs/ReorderItemsDialog.types.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/languageExpression/LanguageExpressionFragment.types.d.ts +97 -0
- package/papyrus-web-components/dist/widgets/languageExpression/LanguageExpressionFragment.types.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/languageExpression/LanguageExpressionIcon.d.ts +16 -0
- package/papyrus-web-components/dist/widgets/languageExpression/LanguageExpressionIcon.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/languageExpression/LanguageExpressionPreview.d.ts +6 -0
- package/papyrus-web-components/dist/widgets/languageExpression/LanguageExpressionPreview.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/languageExpression/LanguageExpressionSection.d.ts +21 -0
- package/papyrus-web-components/dist/widgets/languageExpression/LanguageExpressionSection.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/primitiveList/PrimitiveListWidgetPreview.d.ts +19 -0
- package/papyrus-web-components/dist/widgets/primitiveList/PrimitiveListWidgetPreview.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/primitiveList/PrimitiveListWidgetPropertySection.d.ts +7 -0
- package/papyrus-web-components/dist/widgets/primitiveList/PrimitiveListWidgetPropertySection.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/primitiveList/PrimitiveListWidgetPropertySection.types.d.ts +135 -0
- package/papyrus-web-components/dist/widgets/primitiveList/PrimitiveListWidgetPropertySection.types.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/primitiveRadio/PrimitiveRadioFragment.type.d.ts +42 -0
- package/papyrus-web-components/dist/widgets/primitiveRadio/PrimitiveRadioFragment.type.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/primitiveRadio/PrimitiveRadioIcon.d.ts +16 -0
- package/papyrus-web-components/dist/widgets/primitiveRadio/PrimitiveRadioIcon.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/primitiveRadio/PrimitiveRadioPreview.d.ts +19 -0
- package/papyrus-web-components/dist/widgets/primitiveRadio/PrimitiveRadioPreview.d.ts.map +1 -0
- package/papyrus-web-components/dist/widgets/primitiveRadio/PrimitiveRadioSection.d.ts +18 -0
- package/papyrus-web-components/dist/widgets/primitiveRadio/PrimitiveRadioSection.d.ts.map +1 -0
- package/papyrus-web-components/package.json +105 -0
- package/papyrus-web-components/src/diagram-tools/EditProjectView.types.ts +56 -0
- package/papyrus-web-components/src/diagram-tools/FilterableSortableList.tsx +172 -0
- package/papyrus-web-components/src/diagram-tools/FilterableSortableList.types.ts +34 -0
- package/papyrus-web-components/src/diagram-tools/ModelBrowserFilterBar.tsx +73 -0
- package/papyrus-web-components/src/diagram-tools/ModelBrowserFilterBar.types.ts +19 -0
- package/papyrus-web-components/src/diagram-tools/PapyrusPopupToolContribution.tsx +206 -0
- package/papyrus-web-components/src/diagram-tools/PapyrusPopupToolContribution.types.ts +61 -0
- package/papyrus-web-components/src/diagram-tools/TransferModal.tsx +235 -0
- package/papyrus-web-components/src/diagram-tools/TransferModal.types.ts +35 -0
- package/papyrus-web-components/src/index.ts +61 -0
- package/papyrus-web-components/src/nodes/NodesDocumentTransform.ts +242 -0
- package/papyrus-web-components/src/nodes/cuboid/CuboidNode.tsx +183 -0
- package/papyrus-web-components/src/nodes/cuboid/CuboidNode.types.ts +30 -0
- package/papyrus-web-components/src/nodes/cuboid/CuboidNodeConverter.ts +201 -0
- package/papyrus-web-components/src/nodes/cuboid/CuboidNodeLayoutHandler.ts +283 -0
- package/papyrus-web-components/src/nodes/cuboid/CuboidNodeListConverter.ts +238 -0
- package/papyrus-web-components/src/nodes/cuboid/CuboidNodeListLayoutHandler.ts +260 -0
- package/papyrus-web-components/src/nodes/customImage/CustomImageNode.tsx +153 -0
- package/papyrus-web-components/src/nodes/customImage/CustomImageNode.types.ts +37 -0
- package/papyrus-web-components/src/nodes/customImage/CustomImageNodeConverter.ts +212 -0
- package/papyrus-web-components/src/nodes/customImage/CustomImageNodeLayoutHandler.ts +53 -0
- package/papyrus-web-components/src/nodes/ellipse/EllipseNode.tsx +119 -0
- package/papyrus-web-components/src/nodes/ellipse/EllipseNode.types.ts +35 -0
- package/papyrus-web-components/src/nodes/ellipse/EllipseNodeConverter.ts +208 -0
- package/papyrus-web-components/src/nodes/ellipse/EllipseNodeLayoutHandler.ts +284 -0
- package/papyrus-web-components/src/nodes/innerFlag/InnerFlagNode.tsx +156 -0
- package/papyrus-web-components/src/nodes/innerFlag/InnerFlagNode.types.ts +23 -0
- package/papyrus-web-components/src/nodes/innerFlag/InnerFlagNodeConverter.ts +200 -0
- package/papyrus-web-components/src/nodes/innerFlag/InnerFlagNodeLayoutHandler.ts +118 -0
- package/papyrus-web-components/src/nodes/note/NoteLabel.tsx +146 -0
- package/papyrus-web-components/src/nodes/note/NoteNode.tsx +168 -0
- package/papyrus-web-components/src/nodes/note/NoteNode.types.ts +43 -0
- package/papyrus-web-components/src/nodes/note/NoteNodeConverter.ts +200 -0
- package/papyrus-web-components/src/nodes/note/NoteNodeLayoutHandler.ts +85 -0
- package/papyrus-web-components/src/nodes/outerFlag/OuterFlagNode.tsx +153 -0
- package/papyrus-web-components/src/nodes/outerFlag/OuterFlagNode.types.ts +23 -0
- package/papyrus-web-components/src/nodes/outerFlag/OuterFlagNodeConverter.ts +200 -0
- package/papyrus-web-components/src/nodes/outerFlag/OuterFlagNodeLayoutHandler.ts +116 -0
- package/papyrus-web-components/src/nodes/package/PackageNode.tsx +200 -0
- package/papyrus-web-components/src/nodes/package/PackageNode.types.ts +30 -0
- package/papyrus-web-components/src/nodes/package/PackageNodeConverter.ts +243 -0
- package/papyrus-web-components/src/nodes/package/PackageNodeLayoutHandler.ts +229 -0
- package/papyrus-web-components/src/nodes/package/PackageNodeListConverter.ts +254 -0
- package/papyrus-web-components/src/nodes/package/PackageNodeListLayoutHandler.ts +253 -0
- package/papyrus-web-components/src/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNode.tsx +155 -0
- package/papyrus-web-components/src/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNode.types.ts +23 -0
- package/papyrus-web-components/src/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNodeConverter.ts +205 -0
- package/papyrus-web-components/src/nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNodeLayoutHandler.ts +55 -0
- package/papyrus-web-components/src/profile/apply-profile/ApplyProfileModal.tsx +238 -0
- package/papyrus-web-components/src/profile/apply-profile/ApplyProfileModal.types.tsx +65 -0
- package/papyrus-web-components/src/profile/apply-profile/ApplyProfileModalMachine.tsx +175 -0
- package/papyrus-web-components/src/profile/apply-profile/UMLModelTreeItemContextMenuContribution.tsx +74 -0
- package/papyrus-web-components/src/profile/apply-stereotype/ApplyStereotypeModal.tsx +248 -0
- package/papyrus-web-components/src/profile/apply-stereotype/ApplyStereotypeModal.types.ts +57 -0
- package/papyrus-web-components/src/profile/apply-stereotype/ApplyStereotypeModalMachine.ts +185 -0
- package/papyrus-web-components/src/profile/apply-stereotype/UMLElementTreeItemContextMenuContribution.tsx +70 -0
- package/papyrus-web-components/src/profile/publish-profile/PublishProfileDialog.tsx +380 -0
- package/papyrus-web-components/src/profile/publish-profile/PublishProfileDialog.types.ts +84 -0
- package/papyrus-web-components/src/profile/publish-profile/PublishProfileTreeItemContextMenuContribution.tsx +59 -0
- package/papyrus-web-components/src/widgets/CustomWidgetsDocumentTransform.ts +215 -0
- package/papyrus-web-components/src/widgets/containmentReference/ContainmentReferenceFragment.types.ts +178 -0
- package/papyrus-web-components/src/widgets/containmentReference/ContainmentReferenceIcon.tsx +38 -0
- package/papyrus-web-components/src/widgets/containmentReference/ContainmentReferencePreview.tsx +106 -0
- package/papyrus-web-components/src/widgets/containmentReference/ContainmentReferenceSection.tsx +508 -0
- package/papyrus-web-components/src/widgets/containmentReference/ReorderIcon.tsx +31 -0
- package/papyrus-web-components/src/widgets/containmentReference/dialogs/CreateNewChildDialog.tsx +104 -0
- package/papyrus-web-components/src/widgets/containmentReference/dialogs/CreateNewChildDialog.types.ts +24 -0
- package/papyrus-web-components/src/widgets/customImage/AddImageIcon.tsx +35 -0
- package/papyrus-web-components/src/widgets/customImage/CustomImageFragment.types.ts +98 -0
- package/papyrus-web-components/src/widgets/customImage/CustomImageIcon.tsx +34 -0
- package/papyrus-web-components/src/widgets/customImage/CustomImagePreview.tsx +87 -0
- package/papyrus-web-components/src/widgets/customImage/CustomImageSection.tsx +348 -0
- package/papyrus-web-components/src/widgets/dialogs/ReorderItemsDialog.tsx +145 -0
- package/papyrus-web-components/src/widgets/dialogs/ReorderItemsDialog.types.ts +30 -0
- package/papyrus-web-components/src/widgets/languageExpression/LanguageExpressionFragment.types.ts +117 -0
- package/papyrus-web-components/src/widgets/languageExpression/LanguageExpressionIcon.tsx +36 -0
- package/papyrus-web-components/src/widgets/languageExpression/LanguageExpressionPreview.tsx +163 -0
- package/papyrus-web-components/src/widgets/languageExpression/LanguageExpressionSection.tsx +548 -0
- package/papyrus-web-components/src/widgets/primitiveList/PrimitiveListWidgetPreview.tsx +158 -0
- package/papyrus-web-components/src/widgets/primitiveList/PrimitiveListWidgetPropertySection.tsx +616 -0
- package/papyrus-web-components/src/widgets/primitiveList/PrimitiveListWidgetPropertySection.types.ts +162 -0
- package/papyrus-web-components/src/widgets/primitiveRadio/PrimitiveRadioFragment.type.ts +49 -0
- package/papyrus-web-components/src/widgets/primitiveRadio/PrimitiveRadioIcon.tsx +36 -0
- package/papyrus-web-components/src/widgets/primitiveRadio/PrimitiveRadioPreview.tsx +88 -0
- package/papyrus-web-components/src/widgets/primitiveRadio/PrimitiveRadioSection.tsx +128 -0
- package/papyrus-web-components/tsconfig.json +14 -0
- package/papyrus-web-components/vite.config.js +26 -0
- 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"}
|