@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,61 @@
|
|
|
1
|
+
/*******************************************************************************
|
|
2
|
+
* Copyright (c) 2025 CEA LIST, Obeo.
|
|
3
|
+
* This program and the accompanying materials
|
|
4
|
+
* are made available under the terms of the Eclipse Public License v2.0
|
|
5
|
+
* which accompanies this distribution, and is available at
|
|
6
|
+
* https://www.eclipse.org/legal/epl-2.0/
|
|
7
|
+
*
|
|
8
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
9
|
+
*
|
|
10
|
+
* Contributors:
|
|
11
|
+
* Obeo - initial API and implementation
|
|
12
|
+
*******************************************************************************/
|
|
13
|
+
export { ContainmentReferenceIcon } from './widgets/containmentReference/ContainmentReferenceIcon';
|
|
14
|
+
export { ContainmentReferencePreview } from './widgets/containmentReference/ContainmentReferencePreview';
|
|
15
|
+
export { CuboidNode } from './nodes/cuboid/CuboidNode';
|
|
16
|
+
export { CuboidNodeConverter } from './nodes/cuboid/CuboidNodeConverter';
|
|
17
|
+
export { CuboidNodeLayoutHandler } from './nodes/cuboid/CuboidNodeLayoutHandler';
|
|
18
|
+
export { CuboidNodeListConverter } from './nodes/cuboid/CuboidNodeListConverter';
|
|
19
|
+
export { CuboidNodeListLayoutHandler } from './nodes/cuboid/CuboidNodeListLayoutHandler';
|
|
20
|
+
export { CustomImageIcon } from './widgets/customImage/CustomImageIcon';
|
|
21
|
+
export { CustomImageNode } from './nodes/customImage/CustomImageNode';
|
|
22
|
+
export { CustomImageNodeConverter } from './nodes/customImage/CustomImageNodeConverter';
|
|
23
|
+
export { CustomImageNodeLayoutHandler } from './nodes/customImage/CustomImageNodeLayoutHandler';
|
|
24
|
+
export { CustomImagePreview } from './widgets/customImage/CustomImagePreview';
|
|
25
|
+
export { CustomImageSection } from './widgets/customImage/CustomImageSection';
|
|
26
|
+
export { customWidgetsDocumentTransform } from './widgets/CustomWidgetsDocumentTransform';
|
|
27
|
+
export { default as ContainmentReferenceSection } from './widgets/containmentReference/ContainmentReferenceSection';
|
|
28
|
+
export { EllipseNode } from './nodes/ellipse/EllipseNode';
|
|
29
|
+
export { EllipseNodeConverter } from './nodes/ellipse/EllipseNodeConverter';
|
|
30
|
+
export { EllipseNodeLayoutHandler } from './nodes/ellipse/EllipseNodeLayoutHandler';
|
|
31
|
+
export { InnerFlagNode } from './nodes/innerFlag/InnerFlagNode';
|
|
32
|
+
export { InnerFlagNodeConverter } from './nodes/innerFlag/InnerFlagNodeConverter';
|
|
33
|
+
export { InnerFlagNodeLayoutHandler } from './nodes/innerFlag/InnerFlagNodeLayoutHandler';
|
|
34
|
+
export { LanguageExpressionIcon } from './widgets/languageExpression/LanguageExpressionIcon';
|
|
35
|
+
export { LanguageExpressionPreview } from './widgets/languageExpression/LanguageExpressionPreview';
|
|
36
|
+
export { LanguageExpressionSection } from './widgets/languageExpression/LanguageExpressionSection';
|
|
37
|
+
export { nodesStyleDocumentTransform } from './nodes/NodesDocumentTransform';
|
|
38
|
+
export { NoteNode } from './nodes/note/NoteNode';
|
|
39
|
+
export { NoteNodeConverter } from './nodes/note/NoteNodeConverter';
|
|
40
|
+
export { NoteNodeLayoutHandler } from './nodes/note/NoteNodeLayoutHandler';
|
|
41
|
+
export { OuterFlagNode } from './nodes/outerFlag/OuterFlagNode';
|
|
42
|
+
export { OuterFlagNodeConverter } from './nodes/outerFlag/OuterFlagNodeConverter';
|
|
43
|
+
export { OuterFlagNodeLayoutHandler } from './nodes/outerFlag/OuterFlagNodeLayoutHandler';
|
|
44
|
+
export { PackageNode } from './nodes/package/PackageNode';
|
|
45
|
+
export { PackageNodeConverter } from './nodes/package/PackageNodeConverter';
|
|
46
|
+
export { PackageNodeLayoutHandler } from './nodes/package/PackageNodeLayoutHandler';
|
|
47
|
+
export { PackageNodeListConverter } from './nodes/package/PackageNodeListConverter';
|
|
48
|
+
export { PackageNodeListLayoutHandler } from './nodes/package/PackageNodeListLayoutHandler';
|
|
49
|
+
export { PapyrusPopupToolContribution } from './diagram-tools/PapyrusPopupToolContribution';
|
|
50
|
+
export { PrimitiveListSection } from './widgets/primitiveList/PrimitiveListWidgetPropertySection';
|
|
51
|
+
export { PrimitiveListWidgetPreview } from './widgets/primitiveList/PrimitiveListWidgetPreview';
|
|
52
|
+
export { PrimitiveRadioIcon } from './widgets/primitiveRadio/PrimitiveRadioIcon';
|
|
53
|
+
export { PrimitiveRadioPreview } from './widgets/primitiveRadio/PrimitiveRadioPreview';
|
|
54
|
+
export { PrimitiveRadioSection } from './widgets/primitiveRadio/PrimitiveRadioSection';
|
|
55
|
+
export { PublishProfileTreeItemContextMenuContribution } from './profile/publish-profile/PublishProfileTreeItemContextMenuContribution';
|
|
56
|
+
export { RectangleWithExternalLabelNode } from './nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNode';
|
|
57
|
+
export { RectangleWithExternalLabelNodeConverter } from './nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNodeConverter';
|
|
58
|
+
export { RectangleWithExternalLabelNodeLayoutHandler } from './nodes/rectangleWithExternalLabel/RectangleWithExternalLabelNodeLayoutHandler';
|
|
59
|
+
export { UMLElementTreeItemContextMenuContribution } from './profile/apply-stereotype/UMLElementTreeItemContextMenuContribution';
|
|
60
|
+
export { UMLModelTreeItemContextMenuContribution } from './profile/apply-profile/UMLModelTreeItemContextMenuContribution';
|
|
61
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;iFAWiF;AAEjF,OAAO,EAAE,wBAAwB,EAAE,MAAM,yDAAyD,CAAC;AACnG,OAAO,EAAE,2BAA2B,EAAE,MAAM,4DAA4D,CAAC;AACzG,OAAO,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAC;AACvD,OAAO,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAC;AACzE,OAAO,EAAE,uBAAuB,EAAE,MAAM,wCAAwC,CAAC;AACjF,OAAO,EAAE,uBAAuB,EAAE,MAAM,wCAAwC,CAAC;AACjF,OAAO,EAAE,2BAA2B,EAAE,MAAM,4CAA4C,CAAC;AACzF,OAAO,EAAE,eAAe,EAAE,MAAM,uCAAuC,CAAC;AACxE,OAAO,EAAE,eAAe,EAAE,MAAM,qCAAqC,CAAC;AACtE,OAAO,EAAE,wBAAwB,EAAE,MAAM,8CAA8C,CAAC;AACxF,OAAO,EAAE,4BAA4B,EAAE,MAAM,kDAAkD,CAAC;AAChG,OAAO,EAAE,kBAAkB,EAAE,MAAM,0CAA0C,CAAC;AAC9E,OAAO,EAAE,kBAAkB,EAAE,MAAM,0CAA0C,CAAC;AAC9E,OAAO,EAAE,8BAA8B,EAAE,MAAM,0CAA0C,CAAC;AAC1F,OAAO,EAAE,OAAO,IAAI,2BAA2B,EAAE,MAAM,4DAA4D,CAAC;AACpH,OAAO,EAAE,WAAW,EAAE,MAAM,6BAA6B,CAAC;AAC1D,OAAO,EAAE,oBAAoB,EAAE,MAAM,sCAAsC,CAAC;AAC5E,OAAO,EAAE,wBAAwB,EAAE,MAAM,0CAA0C,CAAC;AACpF,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAC;AAChE,OAAO,EAAE,sBAAsB,EAAE,MAAM,0CAA0C,CAAC;AAClF,OAAO,EAAE,0BAA0B,EAAE,MAAM,8CAA8C,CAAC;AAC1F,OAAO,EAAE,sBAAsB,EAAE,MAAM,qDAAqD,CAAC;AAC7F,OAAO,EAAE,yBAAyB,EAAE,MAAM,wDAAwD,CAAC;AACnG,OAAO,EAAE,yBAAyB,EAAE,MAAM,wDAAwD,CAAC;AACnG,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACjD,OAAO,EAAE,iBAAiB,EAAE,MAAM,gCAAgC,CAAC;AACnE,OAAO,EAAE,qBAAqB,EAAE,MAAM,oCAAoC,CAAC;AAC3E,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAC;AAChE,OAAO,EAAE,sBAAsB,EAAE,MAAM,0CAA0C,CAAC;AAClF,OAAO,EAAE,0BAA0B,EAAE,MAAM,8CAA8C,CAAC;AAC1F,OAAO,EAAE,WAAW,EAAE,MAAM,6BAA6B,CAAC;AAC1D,OAAO,EAAE,oBAAoB,EAAE,MAAM,sCAAsC,CAAC;AAC5E,OAAO,EAAE,wBAAwB,EAAE,MAAM,0CAA0C,CAAC;AACpF,OAAO,EAAE,wBAAwB,EAAE,MAAM,0CAA0C,CAAC;AACpF,OAAO,EAAE,4BAA4B,EAAE,MAAM,8CAA8C,CAAC;AAC5F,OAAO,EAAE,4BAA4B,EAAE,MAAM,8CAA8C,CAAC;AAC5F,OAAO,EAAE,oBAAoB,EAAE,MAAM,4DAA4D,CAAC;AAClG,OAAO,EAAE,0BAA0B,EAAE,MAAM,oDAAoD,CAAC;AAChG,OAAO,EAAE,kBAAkB,EAAE,MAAM,6CAA6C,CAAC;AACjF,OAAO,EAAE,qBAAqB,EAAE,MAAM,gDAAgD,CAAC;AACvF,OAAO,EAAE,qBAAqB,EAAE,MAAM,gDAAgD,CAAC;AACvF,OAAO,EAAE,6CAA6C,EAAE,MAAM,yEAAyE,CAAC;AACxI,OAAO,EAAE,8BAA8B,EAAE,MAAM,mEAAmE,CAAC;AACnH,OAAO,EAAE,uCAAuC,EAAE,MAAM,4EAA4E,CAAC;AACrI,OAAO,EAAE,2CAA2C,EAAE,MAAM,gFAAgF,CAAC;AAC7I,OAAO,EAAE,yCAAyC,EAAE,MAAM,sEAAsE,CAAC;AACjI,OAAO,EAAE,uCAAuC,EAAE,MAAM,iEAAiE,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/*******************************************************************************
|
|
2
|
+
* Copyright (c) 2024, 2025 Obeo.
|
|
3
|
+
* This program and the accompanying materials
|
|
4
|
+
* are made available under the terms of the Eclipse Public License v2.0
|
|
5
|
+
* which accompanies this distribution, and is available at
|
|
6
|
+
* https://www.eclipse.org/legal/epl-2.0/
|
|
7
|
+
*
|
|
8
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
9
|
+
*
|
|
10
|
+
* Contributors:
|
|
11
|
+
* Obeo - initial API and implementation
|
|
12
|
+
*******************************************************************************/
|
|
13
|
+
import { DocumentTransform } from '@apollo/client';
|
|
14
|
+
export declare const nodesStyleDocumentTransform: DocumentTransform;
|
|
15
|
+
//# sourceMappingURL=NodesDocumentTransform.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NodesDocumentTransform.d.ts","sourceRoot":"","sources":["../../src/nodes/NodesDocumentTransform.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;iFAWiF;AAEjF,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAsFnD,eAAO,MAAM,2BAA2B,mBA8ItC,CAAC"}
|
|
@@ -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 { CuboidNodeData } from './CuboidNode.types';
|
|
17
|
+
export declare const CuboidNode: React.MemoExoticComponent<({ data, id, selected, dragging }: NodeProps<Node<CuboidNodeData>>) => import("react/jsx-runtime").JSX.Element>;
|
|
18
|
+
//# sourceMappingURL=CuboidNode.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CuboidNode.d.ts","sourceRoot":"","sources":["../../../src/nodes/cuboid/CuboidNode.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;+EAY+E;AAmB/E,OAAO,KAA2B,MAAM,OAAO,CAAC;AAChD,OAAO,EAAE,IAAI,EAAE,SAAS,EAA6B,MAAM,eAAe,CAAC;AAC3E,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAuDpD,eAAO,MAAM,UAAU,+DAA2C,UAAU,KAAK,cAAc,CAAC,CAAC,6CA8F/F,CAAC"}
|
|
@@ -0,0 +1,29 @@
|
|
|
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 CuboidNodeData extends NodeData {
|
|
16
|
+
}
|
|
17
|
+
export interface CuboidNodeListData extends NodeData {
|
|
18
|
+
areChildNodesDraggable: boolean;
|
|
19
|
+
topGap: number;
|
|
20
|
+
bottomGap: number;
|
|
21
|
+
growableNodeIds: string[];
|
|
22
|
+
}
|
|
23
|
+
export interface GQLCuboidNodeStyle extends GQLNodeStyle {
|
|
24
|
+
background: string;
|
|
25
|
+
borderColor: string;
|
|
26
|
+
borderStyle: string;
|
|
27
|
+
borderSize: number;
|
|
28
|
+
}
|
|
29
|
+
//# sourceMappingURL=CuboidNode.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CuboidNode.types.d.ts","sourceRoot":"","sources":["../../../src/nodes/cuboid/CuboidNode.types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;+EAY+E;AAC/E,OAAO,EAAE,YAAY,EAAE,QAAQ,EAAE,MAAM,4CAA4C,CAAC;AAEpF,MAAM,WAAW,cAAe,SAAQ,QAAQ;CAAG;AAEnD,MAAM,WAAW,kBAAmB,SAAQ,QAAQ;IAClD,sBAAsB,EAAE,OAAO,CAAC;IAChC,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,EAAE,MAAM,EAAE,CAAC;CAC3B;AAED,MAAM,WAAW,kBAAmB,SAAQ,YAAY;IACtD,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 { GQLCuboidNodeStyle } from './CuboidNode.types';
|
|
17
|
+
export declare class CuboidNodeConverter implements INodeConverter {
|
|
18
|
+
canHandle(gqlNode: GQLNode<GQLNodeStyle>): boolean;
|
|
19
|
+
handle(convertEngine: IConvertEngine, gqlDiagram: GQLDiagram, gqlNode: GQLNode<GQLCuboidNodeStyle>, gqlEdges: GQLEdge[], parentNode: GQLNode<GQLNodeStyle> | null, isBorderNode: boolean, nodes: Node[], diagramDescription: GQLDiagramDescription, nodeDescriptions: GQLNodeDescription[]): void;
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=CuboidNodeConverter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CuboidNodeConverter.d.ts","sourceRoot":"","sources":["../../../src/nodes/cuboid/CuboidNodeConverter.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,EAAkB,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AAsHxE,qBAAa,mBAAoB,YAAW,cAAc;IACxD,SAAS,CAAC,OAAO,EAAE,OAAO,CAAC,YAAY,CAAC;IAIxC,MAAM,CACJ,aAAa,EAAE,cAAc,EAC7B,UAAU,EAAE,UAAU,EACtB,OAAO,EAAE,OAAO,CAAC,kBAAkB,CAAC,EACpC,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;CAkCzC"}
|
|
@@ -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 { Diagram, DiagramNodeType, ILayoutEngine, INodeLayoutHandler, NodeData, ForcedDimensions } from '@eclipse-sirius/sirius-components-diagrams';
|
|
15
|
+
import { Node } from '@xyflow/react';
|
|
16
|
+
import { CuboidNodeData } from './CuboidNode.types';
|
|
17
|
+
export declare class CuboidNodeLayoutHandler implements INodeLayoutHandler<CuboidNodeData> {
|
|
18
|
+
canHandle(node: Node<NodeData, DiagramNodeType>): boolean;
|
|
19
|
+
handle(layoutEngine: ILayoutEngine, previousDiagram: Diagram | null, node: Node<CuboidNodeData, 'cuboidNode'>, visibleNodes: Node<NodeData, DiagramNodeType>[], directChildren: Node<NodeData, DiagramNodeType>[], newlyAddedNode: Node<NodeData, DiagramNodeType>[], forceWidth?: ForcedDimensions): void;
|
|
20
|
+
private handleParentNode;
|
|
21
|
+
private handleLeafNode;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=CuboidNodeLayoutHandler.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CuboidNodeLayoutHandler.d.ts","sourceRoot":"","sources":["../../../src/nodes/cuboid/CuboidNodeLayoutHandler.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;+EAY+E;AAC/E,OAAO,EACL,OAAO,EACP,eAAe,EACf,aAAa,EACb,kBAAkB,EAClB,QAAQ,EAYR,gBAAgB,EAGjB,MAAM,4CAA4C,CAAC;AACpD,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AACrC,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAQpD,qBAAa,uBAAwB,YAAW,kBAAkB,CAAC,cAAc,CAAC;IACzE,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,cAAc,EAAE,YAAY,CAAC,EACxC,YAAY,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC,EAAE,EAC/C,cAAc,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC,EAAE,EACjD,cAAc,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC,EAAE,EACjD,UAAU,CAAC,EAAE,gBAAgB;IAqB/B,OAAO,CAAC,gBAAgB;IAyKxB,OAAO,CAAC,cAAc;CAqCvB"}
|
|
@@ -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 { GQLCuboidNodeStyle } from './CuboidNode.types';
|
|
17
|
+
export declare class CuboidNodeListConverter implements INodeConverter {
|
|
18
|
+
canHandle(gqlNode: GQLNode<GQLNodeStyle>): boolean;
|
|
19
|
+
handle(convertEngine: IConvertEngine, gqlDiagram: GQLDiagram, gqlNode: GQLNode<GQLCuboidNodeStyle>, gqlEdges: GQLEdge[], parentNode: GQLNode<GQLNodeStyle> | null, isBorderNode: boolean, nodes: Node[], diagramDescription: GQLDiagramDescription, nodeDescriptions: GQLNodeDescription[]): void;
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=CuboidNodeListConverter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CuboidNodeListConverter.d.ts","sourceRoot":"","sources":["../../../src/nodes/cuboid/CuboidNodeListConverter.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,EAGf,MAAM,4CAA4C,CAAC;AACpD,OAAO,EAAE,IAAI,EAAc,MAAM,eAAe,CAAC;AACjD,OAAO,EAAsB,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AA0J5E,qBAAa,uBAAwB,YAAW,cAAc;IAC5D,SAAS,CAAC,OAAO,EAAE,OAAO,CAAC,YAAY,CAAC;IAIxC,MAAM,CACJ,aAAa,EAAE,cAAc,EAC7B,UAAU,EAAE,UAAU,EACtB,OAAO,EAAE,OAAO,CAAC,kBAAkB,CAAC,EACpC,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;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, ForcedDimensions, ILayoutEngine, INodeLayoutHandler, NodeData } from '@eclipse-sirius/sirius-components-diagrams';
|
|
15
|
+
import { Node } from '@xyflow/react';
|
|
16
|
+
import { CuboidNodeListData } from './CuboidNode.types';
|
|
17
|
+
export declare class CuboidNodeListLayoutHandler implements INodeLayoutHandler<CuboidNodeListData> {
|
|
18
|
+
canHandle(node: Node<NodeData, DiagramNodeType>): boolean;
|
|
19
|
+
handle(layoutEngine: ILayoutEngine, previousDiagram: Diagram | null, node: Node<CuboidNodeListData, 'cuboidNodeList'>, visibleNodes: Node<NodeData, DiagramNodeType>[], directChildren: Node<NodeData, DiagramNodeType>[], newlyAddedNodes: Node<NodeData, DiagramNodeType>[], forceDimensions?: ForcedDimensions): void;
|
|
20
|
+
private handleParentNode;
|
|
21
|
+
private handleLeafNode;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=CuboidNodeListLayoutHandler.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CuboidNodeListLayoutHandler.d.ts","sourceRoot":"","sources":["../../../src/nodes/cuboid/CuboidNodeListLayoutHandler.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;+EAY+E;AAC/E,OAAO,EAIL,OAAO,EACP,eAAe,EAEf,gBAAgB,EAShB,aAAa,EACb,kBAAkB,EAClB,QAAQ,EAGT,MAAM,4CAA4C,CAAC;AACpD,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AACrC,OAAO,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AASxD,qBAAa,2BAA4B,YAAW,kBAAkB,CAAC,kBAAkB,CAAC;IACjF,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,kBAAkB,EAAE,gBAAgB,CAAC,EAChD,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;IAqBpC,OAAO,CAAC,gBAAgB;IAgJxB,OAAO,CAAC,cAAc;CAqCvB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CustomImageNode.d.ts","sourceRoot":"","sources":["../../../src/nodes/customImage/CustomImageNode.tsx"],"names":[],"mappings":"AA2BA,OAAO,EAAuB,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AA8CjF,eAAO,MAAM,eAAe,EAAE,iBAAiB,CAAC,iBAAiB,CA+EhE,CAAC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
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 218
|
|
14
|
+
*****************************************************************************/
|
|
15
|
+
import { GQLNodeStyle, NodeData } from '@eclipse-sirius/sirius-components-diagrams';
|
|
16
|
+
import { Node, NodeProps } from '@xyflow/react';
|
|
17
|
+
import { FC } from 'react';
|
|
18
|
+
export interface CustomImageNodeData extends NodeData {
|
|
19
|
+
shape: string;
|
|
20
|
+
}
|
|
21
|
+
export interface GQLCustomImageNodeStyle extends GQLNodeStyle {
|
|
22
|
+
shape: string;
|
|
23
|
+
background: string;
|
|
24
|
+
borderColor: string;
|
|
25
|
+
borderStyle: string;
|
|
26
|
+
borderSize: number;
|
|
27
|
+
}
|
|
28
|
+
export interface NodeDataMap {
|
|
29
|
+
customImageNode: CustomImageNodeData;
|
|
30
|
+
}
|
|
31
|
+
export type NodeComponentsMap = {
|
|
32
|
+
[K in keyof NodeDataMap]: FC<NodeProps<Node<NodeDataMap[K], K>>>;
|
|
33
|
+
};
|
|
34
|
+
//# sourceMappingURL=CustomImageNode.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CustomImageNode.types.d.ts","sourceRoot":"","sources":["../../../src/nodes/customImage/CustomImageNode.types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;+EAa+E;AAC/E,OAAO,EAAE,YAAY,EAAE,QAAQ,EAAE,MAAM,4CAA4C,CAAC;AACpF,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAChD,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAE3B,MAAM,WAAW,mBAAoB,SAAQ,QAAQ;IACnD,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,uBAAwB,SAAQ,YAAY;IAC3D,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,WAAW;IAC1B,eAAe,EAAE,mBAAmB,CAAC;CACtC;AAED,MAAM,MAAM,iBAAiB,GAAG;KAC7B,CAAC,IAAI,MAAM,WAAW,GAAG,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;CACjE,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/*****************************************************************************
|
|
2
|
+
* Copyright (c) 2024, 2026 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 218
|
|
14
|
+
*****************************************************************************/
|
|
15
|
+
import { GQLDiagram, GQLDiagramDescription, GQLEdge, GQLNode, GQLNodeDescription, GQLNodeStyle, IConvertEngine, INodeConverter } from '@eclipse-sirius/sirius-components-diagrams';
|
|
16
|
+
import { Node } from '@xyflow/react';
|
|
17
|
+
import { GQLCustomImageNodeStyle } from './CustomImageNode.types';
|
|
18
|
+
export declare class CustomImageNodeConverter implements INodeConverter {
|
|
19
|
+
canHandle(gqlNode: GQLNode<GQLNodeStyle>): boolean;
|
|
20
|
+
handle(convertEngine: IConvertEngine, gqlDiagram: GQLDiagram, gqlNode: GQLNode<GQLCustomImageNodeStyle>, gqlEdges: GQLEdge[], parentNode: GQLNode<GQLNodeStyle> | null, isBorderNode: boolean, nodes: Node[], diagramDescription: GQLDiagramDescription, nodeDescriptions: GQLNodeDescription[]): void;
|
|
21
|
+
}
|
|
22
|
+
//# sourceMappingURL=CustomImageNodeConverter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CustomImageNodeConverter.d.ts","sourceRoot":"","sources":["../../../src/nodes/customImage/CustomImageNodeConverter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;+EAa+E;AAE/E,OAAO,EAGL,UAAU,EACV,qBAAqB,EACrB,OAAO,EAEP,OAAO,EACP,kBAAkB,EAElB,YAAY,EAEZ,cAAc,EACd,cAAc,EAQf,MAAM,4CAA4C,CAAC;AACpD,OAAO,EAAE,IAAI,EAAc,MAAM,eAAe,CAAC;AACjD,OAAO,EAAuB,uBAAuB,EAAE,MAAM,yBAAyB,CAAC;AA8HvF,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,uBAAuB,CAAC,EACzC,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,23 @@
|
|
|
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 218
|
|
14
|
+
* Aurelien Didier (Artal Technologies) - Issue 218
|
|
15
|
+
*****************************************************************************/
|
|
16
|
+
import { Diagram, DiagramNodeType, ForcedDimensions, ILayoutEngine, INodeLayoutHandler, NodeData } from '@eclipse-sirius/sirius-components-diagrams';
|
|
17
|
+
import { Node } from '@xyflow/react';
|
|
18
|
+
import { CustomImageNodeData } from './CustomImageNode.types';
|
|
19
|
+
export declare class CustomImageNodeLayoutHandler implements INodeLayoutHandler<NodeData> {
|
|
20
|
+
canHandle(node: Node<NodeData, DiagramNodeType>): boolean;
|
|
21
|
+
handle(_layoutEngine: ILayoutEngine, previousDiagram: Diagram | null, node: Node<CustomImageNodeData, 'customImageNode'>, _visibleNodes: Node<NodeData, DiagramNodeType>[], _directChildren: Node<NodeData, DiagramNodeType>[], _newlyAddedNodes: Node<NodeData, DiagramNodeType>[], forceDimensions?: ForcedDimensions): void;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=CustomImageNodeLayoutHandler.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CustomImageNodeLayoutHandler.d.ts","sourceRoot":"","sources":["../../../src/nodes/customImage/CustomImageNodeLayoutHandler.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;+EAc+E;AAC/E,OAAO,EACL,OAAO,EACP,eAAe,EACf,gBAAgB,EAChB,aAAa,EACb,kBAAkB,EAClB,QAAQ,EAET,MAAM,4CAA4C,CAAC;AACpD,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AACrC,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAE9D,qBAAa,4BAA6B,YAAW,kBAAkB,CAAC,QAAQ,CAAC;IAC/E,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,mBAAmB,EAAE,iBAAiB,CAAC,EAClD,aAAa,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC,EAAE,EAChD,eAAe,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC,EAAE,EAClD,gBAAgB,EAAE,IAAI,CAAC,QAAQ,EAAE,eAAe,CAAC,EAAE,EACnD,eAAe,CAAC,EAAE,gBAAgB;CAarC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/*******************************************************************************
|
|
2
|
+
* Copyright (c) 2023, 2025 CEA LIST, Obeo.
|
|
3
|
+
* This program and the accompanying materials
|
|
4
|
+
* are made available under the terms of the Eclipse Public License v2.0
|
|
5
|
+
* which accompanies this distribution, and is available at
|
|
6
|
+
* https://www.eclipse.org/legal/epl-2.0/
|
|
7
|
+
*
|
|
8
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
9
|
+
*
|
|
10
|
+
* Contributors:
|
|
11
|
+
* Obeo - initial API and implementation
|
|
12
|
+
*******************************************************************************/
|
|
13
|
+
import { NodeComponentsMap } from './EllipseNode.types';
|
|
14
|
+
export declare const EllipseNode: NodeComponentsMap['ellipseNode'];
|
|
15
|
+
//# sourceMappingURL=EllipseNode.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EllipseNode.d.ts","sourceRoot":"","sources":["../../../src/nodes/ellipse/EllipseNode.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;iFAWiF;AAsBjF,OAAO,EAAmB,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAwCzE,eAAO,MAAM,WAAW,EAAE,iBAAiB,CAAC,aAAa,CA6CxD,CAAC"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/*******************************************************************************
|
|
2
|
+
* Copyright (c) 2023, 2025 Obeo.
|
|
3
|
+
* This program and the accompanying materials
|
|
4
|
+
* are made available under the terms of the Eclipse Public License v2.0
|
|
5
|
+
* which accompanies this distribution, and is available at
|
|
6
|
+
* https://www.eclipse.org/legal/epl-2.0/
|
|
7
|
+
*
|
|
8
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
9
|
+
*
|
|
10
|
+
* Contributors:
|
|
11
|
+
* Obeo - initial API and implementation
|
|
12
|
+
*******************************************************************************/
|
|
13
|
+
/**
|
|
14
|
+
* Code duplicated from <a href="https://github.com/eclipse-sirius/sirius-web">Sirius Web</a> (packages\sirius-web\frontend\sirius-web\src\nodes\EllipseNode.types.tsx).
|
|
15
|
+
*/
|
|
16
|
+
import { GQLNodeStyle, NodeData } from '@eclipse-sirius/sirius-components-diagrams';
|
|
17
|
+
import { Node, NodeProps } from '@xyflow/react';
|
|
18
|
+
import { FC } from 'react';
|
|
19
|
+
export interface EllipseNodeData extends NodeData {
|
|
20
|
+
}
|
|
21
|
+
export interface GQLEllipseNodeStyle extends GQLNodeStyle {
|
|
22
|
+
background: string;
|
|
23
|
+
borderColor: string;
|
|
24
|
+
borderStyle: string;
|
|
25
|
+
borderSize: number;
|
|
26
|
+
}
|
|
27
|
+
export interface NodeDataMap {
|
|
28
|
+
ellipseNode: EllipseNodeData;
|
|
29
|
+
}
|
|
30
|
+
export type NodeComponentsMap = {
|
|
31
|
+
[K in keyof NodeDataMap]: FC<NodeProps<Node<NodeDataMap[K], K>>>;
|
|
32
|
+
};
|
|
33
|
+
//# sourceMappingURL=EllipseNode.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EllipseNode.types.d.ts","sourceRoot":"","sources":["../../../src/nodes/ellipse/EllipseNode.types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;iFAWiF;AAEjF;;GAEG;AACH,OAAO,EAAE,YAAY,EAAE,QAAQ,EAAE,MAAM,4CAA4C,CAAC;AACpF,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAChD,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAE3B,MAAM,WAAW,eAAgB,SAAQ,QAAQ;CAAG;AAEpD,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;AAED,MAAM,WAAW,WAAW;IAC1B,WAAW,EAAE,eAAe,CAAC;CAC9B;AACD,MAAM,MAAM,iBAAiB,GAAG;KAC7B,CAAC,IAAI,MAAM,WAAW,GAAG,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;CACjE,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/*******************************************************************************
|
|
2
|
+
* Copyright (c) 2023, 2026 Obeo.
|
|
3
|
+
* This program and the accompanying materials
|
|
4
|
+
* are made available under the terms of the Eclipse Public License v2.0
|
|
5
|
+
* which accompanies this distribution, and is available at
|
|
6
|
+
* https://www.eclipse.org/legal/epl-2.0/
|
|
7
|
+
*
|
|
8
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
9
|
+
*
|
|
10
|
+
* Contributors:
|
|
11
|
+
* Obeo - initial API and implementation
|
|
12
|
+
*******************************************************************************/
|
|
13
|
+
/**
|
|
14
|
+
* Code duplicated from <a href="https://github.com/eclipse-sirius/sirius-web">Sirius Web</a> (packages\sirius-web\frontend\sirius-web\src\nodes\EllipseNodeConverter.tsx).
|
|
15
|
+
*/
|
|
16
|
+
import { GQLDiagram, GQLDiagramDescription, GQLEdge, GQLNode, GQLNodeDescription, GQLNodeStyle, IConvertEngine, INodeConverter } from '@eclipse-sirius/sirius-components-diagrams';
|
|
17
|
+
import { Node } from '@xyflow/react';
|
|
18
|
+
import { GQLEllipseNodeStyle } from './EllipseNode.types';
|
|
19
|
+
export declare class EllipseNodeConverter implements INodeConverter {
|
|
20
|
+
canHandle(gqlNode: GQLNode<GQLNodeStyle>): boolean;
|
|
21
|
+
handle(convertEngine: IConvertEngine, gqlDiagram: GQLDiagram, gqlNode: GQLNode<GQLEllipseNodeStyle>, gqlEdges: GQLEdge[], parentNode: GQLNode<GQLNodeStyle> | null, isBorderNode: boolean, nodes: Node[], diagramDescription: GQLDiagramDescription, nodeDescriptions: GQLNodeDescription[]): void;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=EllipseNodeConverter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EllipseNodeConverter.d.ts","sourceRoot":"","sources":["../../../src/nodes/ellipse/EllipseNodeConverter.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;iFAWiF;AAEjF;;GAEG;AACH,OAAO,EAGL,UAAU,EACV,qBAAqB,EACrB,OAAO,EAEP,OAAO,EACP,kBAAkB,EAElB,YAAY,EAEZ,cAAc,EACd,cAAc,EAQf,MAAM,4CAA4C,CAAC;AACpD,OAAO,EAAE,IAAI,EAAc,MAAM,eAAe,CAAC;AACjD,OAAO,EAAmB,mBAAmB,EAAE,MAAM,qBAAqB,CAAC;AAyH3E,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,EAAE,EACb,kBAAkB,EAAE,qBAAqB,EACzC,gBAAgB,EAAE,kBAAkB,EAAE;CAiCzC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/*******************************************************************************
|
|
2
|
+
* Copyright (c) 2023, 2025 Obeo.
|
|
3
|
+
* This program and the accompanying materials
|
|
4
|
+
* are made available under the terms of the Eclipse Public License v2.0
|
|
5
|
+
* which accompanies this distribution, and is available at
|
|
6
|
+
* https://www.eclipse.org/legal/epl-2.0/
|
|
7
|
+
*
|
|
8
|
+
* SPDX-License-Identifier: EPL-2.0
|
|
9
|
+
*
|
|
10
|
+
* Contributors:
|
|
11
|
+
* Obeo - initial API and implementation
|
|
12
|
+
*******************************************************************************/
|
|
13
|
+
/**
|
|
14
|
+
* Code duplicated from <a href="https://github.com/eclipse-sirius/sirius-web">Sirius Web</a> (packages\sirius-web\frontend\sirius-web\src\nodes\EllipseNodeLayoutHandler.tsx).
|
|
15
|
+
*/
|
|
16
|
+
import { Diagram, DiagramNodeType, ForcedDimensions, ILayoutEngine, INodeLayoutHandler, NodeData } from '@eclipse-sirius/sirius-components-diagrams';
|
|
17
|
+
import { Dimensions, Node, Position, XYPosition } from '@xyflow/react';
|
|
18
|
+
import { NodeHandle } from '@xyflow/system';
|
|
19
|
+
export declare class EllipseNodeLayoutHandler implements INodeLayoutHandler<NodeData> {
|
|
20
|
+
canHandle(node: Node<NodeData, DiagramNodeType>): boolean;
|
|
21
|
+
handle(layoutEngine: ILayoutEngine, previousDiagram: Diagram | null, node: Node<NodeData>, visibleNodes: Node<NodeData, DiagramNodeType>[], directChildren: Node<NodeData, DiagramNodeType>[], newlyAddedNodes: Node<NodeData, DiagramNodeType>[], forceDimensions?: ForcedDimensions): void;
|
|
22
|
+
calculateCustomNodeEdgeHandlePosition(node: Node<NodeData>, handlePosition: Position, handle: NodeHandle): XYPosition;
|
|
23
|
+
calculateCustomNodeBorderNodePosition(parentNode: Node<NodeData>, borderNode: XYPosition & Dimensions, isDragging: boolean): XYPosition;
|
|
24
|
+
}
|
|
25
|
+
//# sourceMappingURL=EllipseNodeLayoutHandler.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EllipseNodeLayoutHandler.d.ts","sourceRoot":"","sources":["../../../src/nodes/ellipse/EllipseNodeLayoutHandler.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;iFAWiF;AAEjF;;GAEG;AACH,OAAO,EACL,OAAO,EACP,eAAe,EACf,gBAAgB,EAChB,aAAa,EACb,kBAAkB,EAClB,QAAQ,EAiBT,MAAM,4CAA4C,CAAC;AACpD,OAAO,EAAE,UAAU,EAAE,IAAI,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AACvE,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAkB5C,qBAAa,wBAAyB,YAAW,kBAAkB,CAAC,QAAQ,CAAC;IAC3E,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,eAAe,CAAC,EAAE,gBAAgB;IAyGpC,qCAAqC,CACnC,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,EACpB,cAAc,EAAE,QAAQ,EACxB,MAAM,EAAE,UAAU,GACjB,UAAU;IAmCb,qCAAqC,CACnC,UAAU,EAAE,IAAI,CAAC,QAAQ,CAAC,EAC1B,UAAU,EAAE,UAAU,GAAG,UAAU,EACnC,UAAU,EAAE,OAAO,GAClB,UAAU;CAgEd"}
|
|
@@ -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 { InnerFlagNodeData } from './InnerFlagNode.types';
|
|
17
|
+
export declare const InnerFlagNode: React.MemoExoticComponent<({ data, id, selected, dragging }: NodeProps<Node<InnerFlagNodeData>>) => import("react/jsx-runtime").JSX.Element>;
|
|
18
|
+
//# sourceMappingURL=InnerFlagNode.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InnerFlagNode.d.ts","sourceRoot":"","sources":["../../../src/nodes/innerFlag/InnerFlagNode.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;+EAY+E;AAmB/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,6CAsErG,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 InnerFlagNodeData extends NodeData {
|
|
16
|
+
}
|
|
17
|
+
export interface GQLInnerFlagNodeStyle extends GQLNodeStyle {
|
|
18
|
+
background: string;
|
|
19
|
+
borderColor: string;
|
|
20
|
+
borderStyle: string;
|
|
21
|
+
borderSize: number;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=InnerFlagNode.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InnerFlagNode.types.d.ts","sourceRoot":"","sources":["../../../src/nodes/innerFlag/InnerFlagNode.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 { GQLInnerFlagNodeStyle } from './InnerFlagNode.types';
|
|
17
|
+
export declare class InnerFlagNodeConverter implements INodeConverter {
|
|
18
|
+
canHandle(gqlNode: GQLNode<GQLNodeStyle>): boolean;
|
|
19
|
+
handle(convertEngine: IConvertEngine, gqlDiagram: GQLDiagram, gqlNode: GQLNode<GQLInnerFlagNodeStyle>, gqlEdges: GQLEdge[], parentNode: GQLNode<GQLNodeStyle> | null, isBorderNode: boolean, nodes: Node[], diagramDescription: GQLDiagramDescription, nodeDescriptions: GQLNodeDescription[]): void;
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=InnerFlagNodeConverter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InnerFlagNodeConverter.d.ts","sourceRoot":"","sources":["../../../src/nodes/innerFlag/InnerFlagNodeConverter.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 { InnerFlagNodeData } from './InnerFlagNode.types';
|
|
17
|
+
export declare class InnerFlagNodeLayoutHandler implements INodeLayoutHandler<NodeData> {
|
|
18
|
+
canHandle(node: Node<NodeData, DiagramNodeType>): boolean;
|
|
19
|
+
handle(layoutEngine: ILayoutEngine, previousDiagram: Diagram | null, node: Node<InnerFlagNodeData, 'innerFlagNode'>, visibleNodes: Node<NodeData, DiagramNodeType>[], directChildren: Node<NodeData, DiagramNodeType>[], newlyAddedNodes: Node<NodeData, DiagramNodeType>[], forceWidth?: ForcedDimensions): void;
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=InnerFlagNodeLayoutHandler.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InnerFlagNodeLayoutHandler.d.ts","sourceRoot":"","sources":["../../../src/nodes/innerFlag/InnerFlagNodeLayoutHandler.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;+EAY+E;AAC/E,OAAO,EACL,OAAO,EACP,eAAe,EACf,aAAa,EACb,kBAAkB,EAClB,QAAQ,EASR,gBAAgB,EAGjB,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;CAuEhC"}
|