orcheo-canvas 0.0.1
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/CHANGELOG.md +26 -0
- package/README.md +32 -0
- package/components.json +21 -0
- package/dist/assets/index-C8cjvUcR.js +772 -0
- package/dist/assets/index-D_Md8dhB.css +1 -0
- package/dist/favicon.drawio +83 -0
- package/dist/favicon.png +0 -0
- package/dist/favicon.svg +4 -0
- package/dist/index.html +19 -0
- package/eslint.config.js +28 -0
- package/index.html +18 -0
- package/package.json +165 -0
- package/postcss.config.js +6 -0
- package/public/favicon.drawio +83 -0
- package/public/favicon.png +0 -0
- package/public/favicon.svg +4 -0
- package/src/App.test.tsx +10 -0
- package/src/App.tsx +43 -0
- package/src/assets/react.svg +1 -0
- package/src/design-system/ui/accordion.tsx +57 -0
- package/src/design-system/ui/alert-dialog.tsx +141 -0
- package/src/design-system/ui/alert.tsx +59 -0
- package/src/design-system/ui/aspect-ratio.tsx +7 -0
- package/src/design-system/ui/avatar.tsx +50 -0
- package/src/design-system/ui/badge.tsx +37 -0
- package/src/design-system/ui/breadcrumb.tsx +115 -0
- package/src/design-system/ui/button.tsx +58 -0
- package/src/design-system/ui/calendar.tsx +76 -0
- package/src/design-system/ui/card.tsx +83 -0
- package/src/design-system/ui/carousel/carousel-context.ts +17 -0
- package/src/design-system/ui/carousel/carousel-navigation.tsx +65 -0
- package/src/design-system/ui/carousel/carousel-provider.tsx +18 -0
- package/src/design-system/ui/carousel/carousel-root.tsx +119 -0
- package/src/design-system/ui/carousel/carousel-slides.tsx +49 -0
- package/src/design-system/ui/carousel/types.ts +24 -0
- package/src/design-system/ui/carousel.tsx +6 -0
- package/src/design-system/ui/chart-context-shared.ts +27 -0
- package/src/design-system/ui/chart-context.tsx +81 -0
- package/src/design-system/ui/chart-legend.tsx +68 -0
- package/src/design-system/ui/chart-tooltip.tsx +164 -0
- package/src/design-system/ui/chart-utils.ts +39 -0
- package/src/design-system/ui/chart.tsx +3 -0
- package/src/design-system/ui/checkbox.tsx +30 -0
- package/src/design-system/ui/collapsible.tsx +11 -0
- package/src/design-system/ui/command.tsx +153 -0
- package/src/design-system/ui/context-menu.tsx +200 -0
- package/src/design-system/ui/dialog.tsx +122 -0
- package/src/design-system/ui/drawer.tsx +118 -0
- package/src/design-system/ui/dropdown-menu.tsx +201 -0
- package/src/design-system/ui/form.tsx +180 -0
- package/src/design-system/ui/hover-card.tsx +29 -0
- package/src/design-system/ui/input-otp.tsx +71 -0
- package/src/design-system/ui/input.tsx +22 -0
- package/src/design-system/ui/label.tsx +26 -0
- package/src/design-system/ui/menubar-content.tsx +85 -0
- package/src/design-system/ui/menubar-items.tsx +123 -0
- package/src/design-system/ui/menubar-root.tsx +60 -0
- package/src/design-system/ui/menubar.tsx +26 -0
- package/src/design-system/ui/navigation-menu.tsx +129 -0
- package/src/design-system/ui/pagination.tsx +117 -0
- package/src/design-system/ui/popover.tsx +33 -0
- package/src/design-system/ui/progress.tsx +28 -0
- package/src/design-system/ui/radio-group.tsx +44 -0
- package/src/design-system/ui/resizable.tsx +45 -0
- package/src/design-system/ui/scroll-area.tsx +48 -0
- package/src/design-system/ui/select.tsx +159 -0
- package/src/design-system/ui/separator.tsx +31 -0
- package/src/design-system/ui/sheet.tsx +140 -0
- package/src/design-system/ui/sidebar/constants.ts +6 -0
- package/src/design-system/ui/sidebar/sidebar-context.ts +15 -0
- package/src/design-system/ui/sidebar/sidebar-layout.tsx +216 -0
- package/src/design-system/ui/sidebar/sidebar-menu/index.ts +11 -0
- package/src/design-system/ui/sidebar/sidebar-menu/menu-action.tsx +35 -0
- package/src/design-system/ui/sidebar/sidebar-menu/menu-badge.tsx +28 -0
- package/src/design-system/ui/sidebar/sidebar-menu/menu-button-variants.ts +25 -0
- package/src/design-system/ui/sidebar/sidebar-menu/menu-button.tsx +73 -0
- package/src/design-system/ui/sidebar/sidebar-menu/menu-skeleton.tsx +45 -0
- package/src/design-system/ui/sidebar/sidebar-menu/menu-sub.tsx +61 -0
- package/src/design-system/ui/sidebar/sidebar-menu/menu.tsx +33 -0
- package/src/design-system/ui/sidebar/sidebar-provider.tsx +132 -0
- package/src/design-system/ui/sidebar/sidebar-structure.tsx +152 -0
- package/src/design-system/ui/sidebar/use-sidebar.ts +14 -0
- package/src/design-system/ui/sidebar.ts +35 -0
- package/src/design-system/ui/skeleton.tsx +15 -0
- package/src/design-system/ui/slider.tsx +28 -0
- package/src/design-system/ui/sonner.tsx +31 -0
- package/src/design-system/ui/switch.tsx +29 -0
- package/src/design-system/ui/table.tsx +120 -0
- package/src/design-system/ui/tabs.tsx +55 -0
- package/src/design-system/ui/textarea.tsx +22 -0
- package/src/design-system/ui/toast.tsx +129 -0
- package/src/design-system/ui/toaster.tsx +35 -0
- package/src/design-system/ui/toggle-group.tsx +61 -0
- package/src/design-system/ui/toggle.tsx +46 -0
- package/src/design-system/ui/tooltip.tsx +32 -0
- package/src/features/account/components/settings/appearance-settings-tab.tsx +70 -0
- package/src/features/account/components/settings/application-settings-tab.tsx +146 -0
- package/src/features/account/components/settings/notification-settings-tab.tsx +157 -0
- package/src/features/account/components/settings/team-billing-settings-tab.tsx +164 -0
- package/src/features/account/components/theme-settings.tsx +228 -0
- package/src/features/account/components/use-theme-preferences.ts +111 -0
- package/src/features/account/pages/profile/components/profile-api-keys-tab.tsx +59 -0
- package/src/features/account/pages/profile/components/profile-general-tab.tsx +125 -0
- package/src/features/account/pages/profile/components/profile-security-tab.tsx +114 -0
- package/src/features/account/pages/profile/types.ts +8 -0
- package/src/features/account/pages/profile.tsx +64 -0
- package/src/features/account/pages/settings.tsx +58 -0
- package/src/features/auth/components/auth-logos.tsx +61 -0
- package/src/features/auth/components/auth-page.tsx +213 -0
- package/src/features/auth/pages/login.tsx +5 -0
- package/src/features/auth/pages/signup.tsx +5 -0
- package/src/features/chatkit/components/canvas-chat-bubble.tsx +324 -0
- package/src/features/chatkit/components/chatkit-surface.tsx +18 -0
- package/src/features/chatkit/components/public-chat-error-boundary.tsx +74 -0
- package/src/features/chatkit/components/public-chat-widget.tsx +138 -0
- package/src/features/chatkit/lib/chatkit-client.test.ts +98 -0
- package/src/features/chatkit/lib/chatkit-client.ts +175 -0
- package/src/features/chatkit/lib/chatkit-theme.ts +20 -0
- package/src/features/chatkit/lib/telemetry.ts +29 -0
- package/src/features/chatkit/lib/workflow-session.ts +69 -0
- package/src/features/chatkit/pages/public-chat.tsx +391 -0
- package/src/features/shared/components/chat-input/attachment-preview.tsx +78 -0
- package/src/features/shared/components/chat-input/chat-input-types.ts +13 -0
- package/src/features/shared/components/chat-input/emoji-picker.tsx +106 -0
- package/src/features/shared/components/chat-input.tsx +234 -0
- package/src/features/shared/components/chat-interface-options.ts +305 -0
- package/src/features/shared/components/chat-interface.tsx +162 -0
- package/src/features/shared/components/chat-interface.types.ts +36 -0
- package/src/features/shared/components/chat-message-attachments.tsx +122 -0
- package/src/features/shared/components/chat-message-markdown.ts +33 -0
- package/src/features/shared/components/chat-message.tsx +128 -0
- package/src/features/shared/components/top-navigation/account-menu.tsx +101 -0
- package/src/features/shared/components/top-navigation/command-palette-button.tsx +78 -0
- package/src/features/shared/components/top-navigation/project-switcher.tsx +64 -0
- package/src/features/shared/components/top-navigation/top-navigation-types.ts +16 -0
- package/src/features/shared/components/top-navigation/use-window-width.ts +24 -0
- package/src/features/shared/components/top-navigation/workflow-breadcrumbs.tsx +107 -0
- package/src/features/shared/components/top-navigation.tsx +52 -0
- package/src/features/support/components/support-chat-callout.tsx +40 -0
- package/src/features/support/components/support-header.tsx +53 -0
- package/src/features/support/components/support-help-tabs.tsx +172 -0
- package/src/features/support/components/support-resources.tsx +157 -0
- package/src/features/support/pages/help-support.tsx +72 -0
- package/src/features/workflow/components/canvas/annotations-layer/annotation-composer.tsx +109 -0
- package/src/features/workflow/components/canvas/annotations-layer/annotation-item.tsx +141 -0
- package/src/features/workflow/components/canvas/annotations-layer/annotation-list.tsx +30 -0
- package/src/features/workflow/components/canvas/annotations-layer/types.ts +10 -0
- package/src/features/workflow/components/canvas/annotations-layer.tsx +99 -0
- package/src/features/workflow/components/canvas/breakpoints-layer.tsx +148 -0
- package/src/features/workflow/components/canvas/connection-validator.tsx +230 -0
- package/src/features/workflow/components/canvas/custom-edge.tsx +154 -0
- package/src/features/workflow/components/canvas/edge-hover-context.tsx +11 -0
- package/src/features/workflow/components/canvas/mini-map.tsx +111 -0
- package/src/features/workflow/components/canvas/split-pane.tsx +165 -0
- package/src/features/workflow/components/canvas/time-travel-debugger.tsx +164 -0
- package/src/features/workflow/components/canvas/time-travel-header.tsx +45 -0
- package/src/features/workflow/components/canvas/time-travel-playback-controls.tsx +174 -0
- package/src/features/workflow/components/canvas/time-travel-state-details.tsx +63 -0
- package/src/features/workflow/components/canvas/time-travel-timeline.tsx +80 -0
- package/src/features/workflow/components/canvas/time-travel-types.ts +18 -0
- package/src/features/workflow/components/canvas/workflow-context-menu.tsx +179 -0
- package/src/features/workflow/components/canvas/workflow-controls/action-control-group.tsx +219 -0
- package/src/features/workflow/components/canvas/workflow-controls/history-control-group.tsx +84 -0
- package/src/features/workflow/components/canvas/workflow-controls/types.ts +18 -0
- package/src/features/workflow/components/canvas/workflow-controls.tsx +50 -0
- package/src/features/workflow/components/canvas/workflow-flow.tsx +214 -0
- package/src/features/workflow/components/canvas/workflow-search.tsx +152 -0
- package/src/features/workflow/components/dialogs/add-credential-dialog.tsx +233 -0
- package/src/features/workflow/components/dialogs/add-notification-channel-dialog.tsx +230 -0
- package/src/features/workflow/components/dialogs/command-palette-items.tsx +77 -0
- package/src/features/workflow/components/dialogs/command-palette-types.ts +13 -0
- package/src/features/workflow/components/dialogs/command-palette-utils.ts +44 -0
- package/src/features/workflow/components/dialogs/command-palette.tsx +195 -0
- package/src/features/workflow/components/dialogs/credential-access-badge.tsx +44 -0
- package/src/features/workflow/components/dialogs/credential-status-badge.tsx +45 -0
- package/src/features/workflow/components/dialogs/credentials-table.tsx +234 -0
- package/src/features/workflow/components/dialogs/credentials-vault.tsx +63 -0
- package/src/features/workflow/components/dialogs/notification-channel-card.tsx +106 -0
- package/src/features/workflow/components/dialogs/notification-event-toggles.tsx +95 -0
- package/src/features/workflow/components/dialogs/notification-settings.tsx +108 -0
- package/src/features/workflow/components/dialogs/notification-settings.types.ts +34 -0
- package/src/features/workflow/components/dialogs/use-command-palette-navigation.ts +60 -0
- package/src/features/workflow/components/dialogs/user-role-management/invite-user-dialog.tsx +152 -0
- package/src/features/workflow/components/dialogs/user-role-management/role-badges.tsx +83 -0
- package/src/features/workflow/components/dialogs/user-role-management/user-role-table.tsx +188 -0
- package/src/features/workflow/components/dialogs/user-role-management/user-role-types.ts +20 -0
- package/src/features/workflow/components/dialogs/user-role-management.tsx +61 -0
- package/src/features/workflow/components/dialogs/version-control-dialog.tsx +232 -0
- package/src/features/workflow/components/layouts/sidebar-layout.tsx +208 -0
- package/src/features/workflow/components/layouts/use-sidebar-resize.ts +83 -0
- package/src/features/workflow/components/layouts/workflow-page-layout.tsx +69 -0
- package/src/features/workflow/components/nodes/chat-trigger-node.tsx +106 -0
- package/src/features/workflow/components/nodes/group-node.tsx +195 -0
- package/src/features/workflow/components/nodes/node-label.tsx +105 -0
- package/src/features/workflow/components/nodes/start-end-node.tsx +68 -0
- package/src/features/workflow/components/nodes/sticky-note-node.tsx +246 -0
- package/src/features/workflow/components/nodes/workflow-node-controls.tsx +91 -0
- package/src/features/workflow/components/nodes/workflow-node-handle-config.ts +22 -0
- package/src/features/workflow/components/nodes/workflow-node-handles.tsx +79 -0
- package/src/features/workflow/components/nodes/workflow-node-style.tsx +50 -0
- package/src/features/workflow/components/nodes/workflow-node.tsx +147 -0
- package/src/features/workflow/components/nodes/workflow-node.types.ts +32 -0
- package/src/features/workflow/components/panels/node-inspector/config-panel.tsx +130 -0
- package/src/features/workflow/components/panels/node-inspector/index.tsx +225 -0
- package/src/features/workflow/components/panels/node-inspector/input-panel.tsx +199 -0
- package/src/features/workflow/components/panels/node-inspector/live-data-unavailable.tsx +26 -0
- package/src/features/workflow/components/panels/node-inspector/node-inspector-layout.tsx +251 -0
- package/src/features/workflow/components/panels/node-inspector/output-panel.tsx +165 -0
- package/src/features/workflow/components/panels/node-inspector/schema-fields.ts +39 -0
- package/src/features/workflow/components/panels/node-inspector/types.ts +31 -0
- package/src/features/workflow/components/panels/node-inspector/use-node-tester.ts +209 -0
- package/src/features/workflow/components/panels/node-inspector/utils.ts +82 -0
- package/src/features/workflow/components/panels/rjsf-basic-widgets.tsx +21 -0
- package/src/features/workflow/components/panels/rjsf-condition-widgets.tsx +241 -0
- package/src/features/workflow/components/panels/rjsf-input-widgets.tsx +105 -0
- package/src/features/workflow/components/panels/rjsf-templates.tsx +146 -0
- package/src/features/workflow/components/panels/rjsf-text-widgets.tsx +139 -0
- package/src/features/workflow/components/panels/rjsf-theme.tsx +16 -0
- package/src/features/workflow/components/panels/schema-dnd.ts +79 -0
- package/src/features/workflow/components/panels/sidebar-node-item.tsx +42 -0
- package/src/features/workflow/components/panels/sidebar-nodes/actions.tsx +34 -0
- package/src/features/workflow/components/panels/sidebar-nodes/ai.tsx +40 -0
- package/src/features/workflow/components/panels/sidebar-nodes/data.tsx +53 -0
- package/src/features/workflow/components/panels/sidebar-nodes/index.ts +2 -0
- package/src/features/workflow/components/panels/sidebar-nodes/logic.tsx +127 -0
- package/src/features/workflow/components/panels/sidebar-nodes/node-categories.tsx +19 -0
- package/src/features/workflow/components/panels/sidebar-nodes/node-lists.ts +71 -0
- package/src/features/workflow/components/panels/sidebar-nodes/special.tsx +44 -0
- package/src/features/workflow/components/panels/sidebar-nodes/triggers.tsx +44 -0
- package/src/features/workflow/components/panels/sidebar-nodes/visualization.tsx +33 -0
- package/src/features/workflow/components/panels/sidebar-panel.tsx +243 -0
- package/src/features/workflow/components/panels/sidebar-panel.types.ts +73 -0
- package/src/features/workflow/components/panels/variable-inspector-table.tsx +99 -0
- package/src/features/workflow/components/panels/variable-inspector-tree.tsx +193 -0
- package/src/features/workflow/components/panels/variable-inspector-types.ts +3 -0
- package/src/features/workflow/components/panels/variable-inspector.tsx +189 -0
- package/src/features/workflow/components/panels/workflow-diff-dialog.tsx +207 -0
- package/src/features/workflow/components/panels/workflow-execution-details.tsx +118 -0
- package/src/features/workflow/components/panels/workflow-execution-history.hooks.ts +116 -0
- package/src/features/workflow/components/panels/workflow-execution-history.tsx +150 -0
- package/src/features/workflow/components/panels/workflow-execution-history.types.ts +53 -0
- package/src/features/workflow/components/panels/workflow-execution-history.utils.ts +195 -0
- package/src/features/workflow/components/panels/workflow-execution-sidebar.tsx +221 -0
- package/src/features/workflow/components/panels/workflow-governance-panel/subworkflow-list-card.tsx +147 -0
- package/src/features/workflow/components/panels/workflow-governance-panel/types.ts +26 -0
- package/src/features/workflow/components/panels/workflow-governance-panel/validation-section.tsx +126 -0
- package/src/features/workflow/components/panels/workflow-governance-panel.tsx +43 -0
- package/src/features/workflow/components/panels/workflow-history-filters.tsx +62 -0
- package/src/features/workflow/components/panels/workflow-history-footer.tsx +28 -0
- package/src/features/workflow/components/panels/workflow-history-header.tsx +47 -0
- package/src/features/workflow/components/panels/workflow-history-table.tsx +148 -0
- package/src/features/workflow/components/panels/workflow-history.tsx +150 -0
- package/src/features/workflow/components/panels/workflow-node-gallery-data/categories.ts +11 -0
- package/src/features/workflow/components/panels/workflow-node-gallery-data/items/actions.tsx +39 -0
- package/src/features/workflow/components/panels/workflow-node-gallery-data/items/ai.tsx +39 -0
- package/src/features/workflow/components/panels/workflow-node-gallery-data/items/data.tsx +55 -0
- package/src/features/workflow/components/panels/workflow-node-gallery-data/items/logic.tsx +39 -0
- package/src/features/workflow/components/panels/workflow-node-gallery-data/items/special.tsx +50 -0
- package/src/features/workflow/components/panels/workflow-node-gallery-data/items/triggers.tsx +71 -0
- package/src/features/workflow/components/panels/workflow-node-gallery-data/types.ts +9 -0
- package/src/features/workflow/components/panels/workflow-node-gallery-data.tsx +21 -0
- package/src/features/workflow/components/panels/workflow-node-gallery.tsx +86 -0
- package/src/features/workflow/components/panels/workflow-tabs.tsx +49 -0
- package/src/features/workflow/components/trace/agent-prism/Avatar.tsx +146 -0
- package/src/features/workflow/components/trace/agent-prism/Badge.tsx +95 -0
- package/src/features/workflow/components/trace/agent-prism/BrandLogo.tsx +102 -0
- package/src/features/workflow/components/trace/agent-prism/Button.tsx +124 -0
- package/src/features/workflow/components/trace/agent-prism/CollapseAndExpandControls.tsx +45 -0
- package/src/features/workflow/components/trace/agent-prism/CollapsibleSection.tsx +124 -0
- package/src/features/workflow/components/trace/agent-prism/CopyButton.tsx +63 -0
- package/src/features/workflow/components/trace/agent-prism/DetailsView/DetailsView.tsx +143 -0
- package/src/features/workflow/components/trace/agent-prism/DetailsView/DetailsViewAttributesTab.tsx +125 -0
- package/src/features/workflow/components/trace/agent-prism/DetailsView/DetailsViewContentViewer.tsx +51 -0
- package/src/features/workflow/components/trace/agent-prism/DetailsView/DetailsViewHeader.tsx +100 -0
- package/src/features/workflow/components/trace/agent-prism/DetailsView/DetailsViewHeaderActions.tsx +21 -0
- package/src/features/workflow/components/trace/agent-prism/DetailsView/DetailsViewInputOutputTab.tsx +126 -0
- package/src/features/workflow/components/trace/agent-prism/DetailsView/DetailsViewJsonOutput.tsx +30 -0
- package/src/features/workflow/components/trace/agent-prism/DetailsView/DetailsViewRawDataTab.tsx +31 -0
- package/src/features/workflow/components/trace/agent-prism/IconButton.tsx +75 -0
- package/src/features/workflow/components/trace/agent-prism/PriceBadge.tsx +14 -0
- package/src/features/workflow/components/trace/agent-prism/SearchInput.tsx +17 -0
- package/src/features/workflow/components/trace/agent-prism/SpanBadge.tsx +52 -0
- package/src/features/workflow/components/trace/agent-prism/SpanCard/SpanCard.tsx +480 -0
- package/src/features/workflow/components/trace/agent-prism/SpanCard/SpanCardBadges.tsx +23 -0
- package/src/features/workflow/components/trace/agent-prism/SpanCard/SpanCardConnector.tsx +36 -0
- package/src/features/workflow/components/trace/agent-prism/SpanCard/SpanCardTimeline.tsx +60 -0
- package/src/features/workflow/components/trace/agent-prism/SpanCard/SpanCardToggle.tsx +39 -0
- package/src/features/workflow/components/trace/agent-prism/SpanStatus.tsx +80 -0
- package/src/features/workflow/components/trace/agent-prism/TabSelector.tsx +35 -0
- package/src/features/workflow/components/trace/agent-prism/Tabs.tsx +140 -0
- package/src/features/workflow/components/trace/agent-prism/TextInput.tsx +143 -0
- package/src/features/workflow/components/trace/agent-prism/TimestampBadge.tsx +22 -0
- package/src/features/workflow/components/trace/agent-prism/TokensBadge.tsx +27 -0
- package/src/features/workflow/components/trace/agent-prism/TraceList/TraceList.tsx +87 -0
- package/src/features/workflow/components/trace/agent-prism/TraceList/TraceListItem.tsx +86 -0
- package/src/features/workflow/components/trace/agent-prism/TraceList/TraceListItemHeader.tsx +37 -0
- package/src/features/workflow/components/trace/agent-prism/TraceViewer/TraceViewer.test.tsx +183 -0
- package/src/features/workflow/components/trace/agent-prism/TraceViewer/TraceViewer.tsx +207 -0
- package/src/features/workflow/components/trace/agent-prism/TraceViewer/TraceViewerDesktopLayout.tsx +99 -0
- package/src/features/workflow/components/trace/agent-prism/TraceViewer/TraceViewerMobileLayout.tsx +103 -0
- package/src/features/workflow/components/trace/agent-prism/TraceViewer/TraceViewerPlaceholder.tsx +5 -0
- package/src/features/workflow/components/trace/agent-prism/TraceViewer/TraceViewerSearchAndControls.tsx +30 -0
- package/src/features/workflow/components/trace/agent-prism/TraceViewer/TraceViewerTreeViewContainer.tsx +76 -0
- package/src/features/workflow/components/trace/agent-prism/TraceViewer/useTraceSelection.ts +186 -0
- package/src/features/workflow/components/trace/agent-prism/TreeView.tsx +73 -0
- package/src/features/workflow/components/trace/agent-prism/index.ts +7 -0
- package/src/features/workflow/components/trace/agent-prism/shared.ts +170 -0
- package/src/features/workflow/components/trace/agent-prism/theme/index.js +97 -0
- package/src/features/workflow/components/trace/agent-prism/theme/index.ts +101 -0
- package/src/features/workflow/components/trace/agent-prism/theme/theme.css +247 -0
- package/src/features/workflow/data/node-types.ts +32 -0
- package/src/features/workflow/data/templates/feedly-digest.ts +120 -0
- package/src/features/workflow/data/templates/index.ts +30 -0
- package/src/features/workflow/data/templates/mongodb-session.ts +59 -0
- package/src/features/workflow/data/templates/python-task.ts +59 -0
- package/src/features/workflow/data/templates/quickstart-welcome.ts +65 -0
- package/src/features/workflow/data/templates/rss-monitor.ts +60 -0
- package/src/features/workflow/data/templates/slack-broadcast.ts +58 -0
- package/src/features/workflow/data/templates/telegram-broadcast.ts +76 -0
- package/src/features/workflow/data/templates/template-owner.ts +7 -0
- package/src/features/workflow/data/workflow-data.ts +13 -0
- package/src/features/workflow/data/workflow-types.ts +47 -0
- package/src/features/workflow/lib/graph-config/constants.ts +7 -0
- package/src/features/workflow/lib/graph-config/edge-processing.ts +147 -0
- package/src/features/workflow/lib/graph-config/name-mapping.ts +30 -0
- package/src/features/workflow/lib/graph-config/node-handlers/branching.ts +171 -0
- package/src/features/workflow/lib/graph-config/node-handlers/index.ts +16 -0
- package/src/features/workflow/lib/graph-config/node-handlers/integrations.ts +201 -0
- package/src/features/workflow/lib/graph-config/node-handlers/set-variable.ts +124 -0
- package/src/features/workflow/lib/graph-config/node-processing.ts +163 -0
- package/src/features/workflow/lib/graph-config/serialization.ts +31 -0
- package/src/features/workflow/lib/graph-config/terminal-connections.ts +37 -0
- package/src/features/workflow/lib/graph-config/types.ts +84 -0
- package/src/features/workflow/lib/graph-config/utils.ts +65 -0
- package/src/features/workflow/lib/graph-config/workload.ts +29 -0
- package/src/features/workflow/lib/graph-config.integration.logic.test.ts +168 -0
- package/src/features/workflow/lib/graph-config.integration.start-end.test.ts +68 -0
- package/src/features/workflow/lib/graph-config.integration.variables.test.ts +67 -0
- package/src/features/workflow/lib/graph-config.ts +80 -0
- package/src/features/workflow/lib/graph-utils.ts +193 -0
- package/src/features/workflow/lib/node-icons.tsx +183 -0
- package/src/features/workflow/lib/node-schemas/ai-nodes.ts +81 -0
- package/src/features/workflow/lib/node-schemas/base.ts +154 -0
- package/src/features/workflow/lib/node-schemas/condition-operators.ts +111 -0
- package/src/features/workflow/lib/node-schemas/index.ts +73 -0
- package/src/features/workflow/lib/node-schemas/integration-nodes.ts +153 -0
- package/src/features/workflow/lib/node-schemas/logic-nodes.ts +110 -0
- package/src/features/workflow/lib/node-schemas/state-nodes.ts +45 -0
- package/src/features/workflow/lib/node-schemas/trigger-nodes.ts +218 -0
- package/src/features/workflow/lib/node-schemas/ui.ts +88 -0
- package/src/features/workflow/lib/python-node.ts +23 -0
- package/src/features/workflow/lib/workflow-diff.ts +191 -0
- package/src/features/workflow/lib/workflow-execution-builders.ts +101 -0
- package/src/features/workflow/lib/workflow-execution-formatters.ts +145 -0
- package/src/features/workflow/lib/workflow-execution-storage.ts +60 -0
- package/src/features/workflow/lib/workflow-execution.types.ts +38 -0
- package/src/features/workflow/lib/workflow-storage-api.ts +122 -0
- package/src/features/workflow/lib/workflow-storage-helpers.ts +207 -0
- package/src/features/workflow/lib/workflow-storage-versioning.ts +71 -0
- package/src/features/workflow/lib/workflow-storage.constants.ts +21 -0
- package/src/features/workflow/lib/workflow-storage.list.integration.test.ts +70 -0
- package/src/features/workflow/lib/workflow-storage.sanitized-save.integration.test.ts +116 -0
- package/src/features/workflow/lib/workflow-storage.save.integration.test.ts +124 -0
- package/src/features/workflow/lib/workflow-storage.test-helpers.ts +29 -0
- package/src/features/workflow/lib/workflow-storage.ts +183 -0
- package/src/features/workflow/lib/workflow-storage.types.ts +76 -0
- package/src/features/workflow/pages/workflow-canvas/components/canvas-tab-content.tsx +157 -0
- package/src/features/workflow/pages/workflow-canvas/components/execution-tab-content.tsx +57 -0
- package/src/features/workflow/pages/workflow-canvas/components/readiness-tab-content.tsx +49 -0
- package/src/features/workflow/pages/workflow-canvas/components/settings-tab-content.tsx +160 -0
- package/src/features/workflow/pages/workflow-canvas/components/trace-tab-content.test.tsx +204 -0
- package/src/features/workflow/pages/workflow-canvas/components/trace-tab-content.tsx +202 -0
- package/src/features/workflow/pages/workflow-canvas/components/workflow-canvas-layout.tsx +179 -0
- package/src/features/workflow/pages/workflow-canvas/handlers/credentials.ts +158 -0
- package/src/features/workflow/pages/workflow-canvas/handlers/subworkflows.ts +227 -0
- package/src/features/workflow/pages/workflow-canvas/handlers/validation.ts +175 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/clipboard.ts +85 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/execution.ts +39 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/id.ts +15 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/node-identity.ts +157 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/runtime-cache.ts +70 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/sticky-notes.ts +52 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/subworkflow-library.ts +12 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/subworkflows/content-qa.ts +88 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/subworkflows/customer-onboarding.ts +67 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/subworkflows/incident-response.ts +88 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/subworkflows/types.ts +9 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/trace.ts +552 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/transformers.ts +140 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/types.ts +122 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/validation.ts +57 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/controller/build-layout-props.ts +229 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/controller/use-workflow-canvas-controller.ts +26 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/controller/use-workflow-canvas-core.ts +188 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/controller/use-workflow-canvas-execution.ts +269 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/controller/use-workflow-canvas-lifecycle.ts +44 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/controller/use-workflow-canvas-resources.ts +92 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/execution-canvas-updater.ts +79 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/execution-log-helpers.ts +75 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/execution-node-status.ts +46 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/execution-record-updater.ts +118 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/execution-record.ts +69 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/execution-runtime-updates.ts +84 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/node-factory.ts +166 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-canvas-ui-state.ts +19 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-decorated-nodes.ts +115 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-execution-history-handlers.ts +187 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-execution-trace.ts +302 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-execution-updates.ts +143 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-initial-fit-view.ts +27 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-node-creation.ts +133 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-node-inspector-handlers.ts +194 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-pause-workflow.ts +95 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-run-workflow.ts +139 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-runtime-cache-sync.ts +52 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-subworkflow-state.ts +47 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-canvas-history.ts +233 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-chat.ts +284 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-clipboard.ts +218 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-credentials.ts +139 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-duplicate-nodes.ts +140 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-execution-state.ts +20 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-file-transfer.ts +203 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-keybindings.ts +126 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-loader.ts +174 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-metadata-state.ts +28 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-node-deletion.ts +167 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-node-state.ts +89 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-saver.ts +204 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-search.ts +167 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-sticky-notes.ts +89 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-storage-listener.ts +51 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-validation-state.ts +22 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/workflow-clipboard-copy.ts +96 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/workflow-clipboard-paste.ts +109 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/workflow-runner-websocket.ts +146 -0
- package/src/features/workflow/pages/workflow-canvas.test.tsx +194 -0
- package/src/features/workflow/pages/workflow-canvas.tsx +23 -0
- package/src/features/workflow/pages/workflow-execution-details.tsx +194 -0
- package/src/features/workflow/pages/workflow-gallery/types.ts +21 -0
- package/src/features/workflow/pages/workflow-gallery/use-workflow-gallery-actions.ts +219 -0
- package/src/features/workflow/pages/workflow-gallery/use-workflow-gallery-state.ts +204 -0
- package/src/features/workflow/pages/workflow-gallery/use-workflow-gallery.ts +21 -0
- package/src/features/workflow/pages/workflow-gallery/workflow-card.tsx +222 -0
- package/src/features/workflow/pages/workflow-gallery/workflow-create-dialogs.tsx +114 -0
- package/src/features/workflow/pages/workflow-gallery/workflow-filter-popover.tsx +190 -0
- package/src/features/workflow/pages/workflow-gallery/workflow-gallery-header.tsx +134 -0
- package/src/features/workflow/pages/workflow-gallery/workflow-gallery-tabs.tsx +93 -0
- package/src/features/workflow/pages/workflow-gallery/workflow-thumbnail.tsx +82 -0
- package/src/features/workflow/pages/workflow-gallery.tsx +100 -0
- package/src/features/workflow/types/credential-vault.ts +36 -0
- package/src/hooks/use-color-scheme.ts +77 -0
- package/src/hooks/use-credential-vault.ts +245 -0
- package/src/hooks/use-mobile.tsx +21 -0
- package/src/hooks/use-toast.ts +182 -0
- package/src/index.css +95 -0
- package/src/lib/api.test.ts +135 -0
- package/src/lib/api.ts +45 -0
- package/src/lib/config.ts +84 -0
- package/src/lib/theme.ts +71 -0
- package/src/lib/utils.ts +6 -0
- package/src/main.tsx +24 -0
- package/src/setupTests.ts +5 -0
- package/src/test-utils/chatkit-stub.ts +15 -0
- package/src/testing/mocks/backend/credentials.ts +60 -0
- package/src/testing/mocks/backend/request-utils.ts +32 -0
- package/src/testing/mocks/backend/workflows.ts +235 -0
- package/src/testing/mocks/backend.ts +52 -0
- package/src/testing/mocks/chatkit.ts +14 -0
- package/src/vite-env.d.ts +10 -0
- package/tailwind.config.js +61 -0
- package/tsconfig.app.json +30 -0
- package/tsconfig.json +16 -0
- package/tsconfig.node.json +20 -0
- package/vite.config.ts +30 -0
package/package.json
ADDED
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "orcheo-canvas",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"description": "Canvas UI for Orcheo workflow orchestration platform",
|
|
7
|
+
"keywords": ["orcheo", "workflow", "canvas", "ui", "react"],
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/orcheo-ai/orcheo.git",
|
|
11
|
+
"directory": "apps/canvas"
|
|
12
|
+
},
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"scripts": {
|
|
15
|
+
"dev": "vite",
|
|
16
|
+
"build": "vite build",
|
|
17
|
+
"lint": "eslint .",
|
|
18
|
+
"test": "vitest",
|
|
19
|
+
"preview": "vite preview"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@evilmartians/agent-prism-data": "^0.0.8",
|
|
23
|
+
"@evilmartians/agent-prism-types": "^0.0.8",
|
|
24
|
+
"@monaco-editor/react": "^4.7.0",
|
|
25
|
+
"@openai/chatkit-react": "^1.1.1",
|
|
26
|
+
"@radix-ui/react-accordion": "^1.2.3",
|
|
27
|
+
"@radix-ui/react-alert-dialog": "^1.1.6",
|
|
28
|
+
"@radix-ui/react-aspect-ratio": "^1.1.2",
|
|
29
|
+
"@radix-ui/react-avatar": "^1.1.3",
|
|
30
|
+
"@radix-ui/react-checkbox": "^1.1.4",
|
|
31
|
+
"@radix-ui/react-collapsible": "^1.1.3",
|
|
32
|
+
"@radix-ui/react-context-menu": "^2.2.6",
|
|
33
|
+
"@radix-ui/react-dialog": "^1.1.6",
|
|
34
|
+
"@radix-ui/react-dropdown-menu": "^2.1.6",
|
|
35
|
+
"@radix-ui/react-hover-card": "^1.1.6",
|
|
36
|
+
"@radix-ui/react-icons": "^1.3.0",
|
|
37
|
+
"@radix-ui/react-label": "^2.1.2",
|
|
38
|
+
"@radix-ui/react-menubar": "^1.1.6",
|
|
39
|
+
"@radix-ui/react-navigation-menu": "^1.2.5",
|
|
40
|
+
"@radix-ui/react-popover": "^1.1.6",
|
|
41
|
+
"@radix-ui/react-progress": "^1.1.2",
|
|
42
|
+
"@radix-ui/react-radio-group": "^1.2.3",
|
|
43
|
+
"@radix-ui/react-scroll-area": "^1.2.3",
|
|
44
|
+
"@radix-ui/react-select": "^2.1.6",
|
|
45
|
+
"@radix-ui/react-separator": "^1.1.2",
|
|
46
|
+
"@radix-ui/react-slider": "^1.2.3",
|
|
47
|
+
"@radix-ui/react-slot": "^1.1.2",
|
|
48
|
+
"@radix-ui/react-switch": "^1.1.3",
|
|
49
|
+
"@radix-ui/react-tabs": "^1.1.3",
|
|
50
|
+
"@radix-ui/react-toast": "^1.2.6",
|
|
51
|
+
"@radix-ui/react-toggle": "^1.1.2",
|
|
52
|
+
"@radix-ui/react-toggle-group": "^1.1.2",
|
|
53
|
+
"@radix-ui/react-tooltip": "^1.1.8",
|
|
54
|
+
"@rjsf/core": "^5.24.13",
|
|
55
|
+
"@rjsf/utils": "^5.24.13",
|
|
56
|
+
"@rjsf/validator-ajv8": "^5.24.13",
|
|
57
|
+
"@xyflow/react": "^12.6.0",
|
|
58
|
+
"ag-grid-react": "^32.1.0",
|
|
59
|
+
"antd": "^5.20.5",
|
|
60
|
+
"aos": "^2.3.4",
|
|
61
|
+
"canvas-confetti": "^1.9.3",
|
|
62
|
+
"class-variance-authority": "^0.7.1",
|
|
63
|
+
"classnames": "^2.5.1",
|
|
64
|
+
"clsx": "^2.1.1",
|
|
65
|
+
"cmdk": "^1.0.0",
|
|
66
|
+
"d3": "^7.9.0",
|
|
67
|
+
"d3-sankey": "^0.12.3",
|
|
68
|
+
"date-fns": "^3.6.0",
|
|
69
|
+
"diff": "^6.0.0-beta",
|
|
70
|
+
"diff-match-patch": "^1.0.5",
|
|
71
|
+
"echarts-for-react": "^3.0.2",
|
|
72
|
+
"embla-carousel-react": "^8.5.2",
|
|
73
|
+
"emoji-picker-react": "^4.11.1",
|
|
74
|
+
"esbuild": "^0.25.4",
|
|
75
|
+
"esbuild-plugin-globals": "^0.2.0",
|
|
76
|
+
"ethers": "^6.13.2",
|
|
77
|
+
"exceljs": "^4.4.0",
|
|
78
|
+
"formik": "^2.4.6",
|
|
79
|
+
"framer-motion": "^11.3.24",
|
|
80
|
+
"highcharts": "^11.4.7",
|
|
81
|
+
"highcharts-react-official": "^3.2.1",
|
|
82
|
+
"input-otp": "^1.4.2",
|
|
83
|
+
"jspdf": "^3.0.1",
|
|
84
|
+
"jspdf-autotable": "^5.0.2",
|
|
85
|
+
"leaflet": "^1.9.4",
|
|
86
|
+
"lucide-react": "^0.477.0",
|
|
87
|
+
"mapbox-gl": "^1.13.3",
|
|
88
|
+
"moment": "^2.30.1",
|
|
89
|
+
"papaparse": "^5.4.1",
|
|
90
|
+
"patch-package": "^8.0.0",
|
|
91
|
+
"plotly": "^1.0.6",
|
|
92
|
+
"react": "^19.0.0",
|
|
93
|
+
"react-big-calendar": "latest",
|
|
94
|
+
"react-chartjs-2": "latest",
|
|
95
|
+
"react-circular-progressbar": "latest",
|
|
96
|
+
"react-colorful": "latest",
|
|
97
|
+
"react-confetti": "latest",
|
|
98
|
+
"react-day-picker": "latest",
|
|
99
|
+
"react-dnd": "latest",
|
|
100
|
+
"react-dnd-html5-backend": "latest",
|
|
101
|
+
"react-dom": "^19.0.0",
|
|
102
|
+
"react-dropzone": "latest",
|
|
103
|
+
"react-feather": "latest",
|
|
104
|
+
"react-hook-form": "latest",
|
|
105
|
+
"react-hot-toast": "latest",
|
|
106
|
+
"react-intersection-observer": "latest",
|
|
107
|
+
"react-json-pretty": "^2.2.0",
|
|
108
|
+
"react-konva": "latest",
|
|
109
|
+
"react-leaflet": "latest",
|
|
110
|
+
"react-markdown": "latest",
|
|
111
|
+
"react-masonry-css": "latest",
|
|
112
|
+
"react-pdf": "latest",
|
|
113
|
+
"react-plotly.js": "latest",
|
|
114
|
+
"react-resizable-panels": "latest",
|
|
115
|
+
"react-router-dom": "latest",
|
|
116
|
+
"react-split": "^2.0.14",
|
|
117
|
+
"react-syntax-highlighter": "^15.6.1",
|
|
118
|
+
"react-type-animation": "latest",
|
|
119
|
+
"recharts": "^2.15.1",
|
|
120
|
+
"sonner": "^2.0.1",
|
|
121
|
+
"styled-components": "^6.1.13",
|
|
122
|
+
"tailwind-merge": "^3.0.2",
|
|
123
|
+
"tailwindcss-animate": "^1.0.7",
|
|
124
|
+
"three": "^0.167.1",
|
|
125
|
+
"tsparticles": "^3.5.0",
|
|
126
|
+
"vaul": "^1.1.2",
|
|
127
|
+
"yup": "^1.4.0",
|
|
128
|
+
"zod": "^3.23.8"
|
|
129
|
+
},
|
|
130
|
+
"devDependencies": {
|
|
131
|
+
"@eslint/js": "^9.21.0",
|
|
132
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
133
|
+
"@testing-library/react": "^16.2.0",
|
|
134
|
+
"@testing-library/user-event": "^14.6.1",
|
|
135
|
+
"@types/node": "^22.13.9",
|
|
136
|
+
"@types/react": "^19.0.10",
|
|
137
|
+
"@types/react-dom": "^19.0.4",
|
|
138
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
139
|
+
"autoprefixer": "^10.4.20",
|
|
140
|
+
"eslint": "^9.21.0",
|
|
141
|
+
"eslint-plugin-react-hooks": "^5.1.0",
|
|
142
|
+
"eslint-plugin-react-refresh": "^0.4.19",
|
|
143
|
+
"globals": "^15.15.0",
|
|
144
|
+
"jsdom": "^24.1.3",
|
|
145
|
+
"postcss": "^8.5.3",
|
|
146
|
+
"tailwindcss": "^3.4.17",
|
|
147
|
+
"typescript": "~5.7.2",
|
|
148
|
+
"typescript-eslint": "^8.24.1",
|
|
149
|
+
"vite": "^6.2.0",
|
|
150
|
+
"vitest": "^3.2.4"
|
|
151
|
+
},
|
|
152
|
+
"overrides": {
|
|
153
|
+
"lodash": "^4.17.21",
|
|
154
|
+
"debug": "^4.3.4",
|
|
155
|
+
"clean-css": "^4.2.3",
|
|
156
|
+
"merge": "^2.1.1",
|
|
157
|
+
"braces": "^3.0.3",
|
|
158
|
+
"highlight.js": "^11.9.0",
|
|
159
|
+
"got": "^11.8.5",
|
|
160
|
+
"micromatch": "^4.0.8",
|
|
161
|
+
"prismjs": "^1.30.0",
|
|
162
|
+
"refractor": "^4.6.0",
|
|
163
|
+
"dompurify": "^3.2.4"
|
|
164
|
+
}
|
|
165
|
+
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
<mxfile host="app.diagrams.net" agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" version="26.2.14">
|
|
2
|
+
<diagram id="C5RBs43oDa-KdzZeNtuy" name="Page-1">
|
|
3
|
+
<mxGraphModel dx="3664" dy="733" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
|
|
4
|
+
<root>
|
|
5
|
+
<mxCell id="WIyWlLk6GJQsqaUBKTNV-0" />
|
|
6
|
+
<mxCell id="WIyWlLk6GJQsqaUBKTNV-1" parent="WIyWlLk6GJQsqaUBKTNV-0" />
|
|
7
|
+
<mxCell id="xZQY71x421pRE-uKHZpD-10" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;endArrow=blockThin;endFill=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="xZQY71x421pRE-uKHZpD-8" target="xZQY71x421pRE-uKHZpD-9" edge="1">
|
|
8
|
+
<mxGeometry relative="1" as="geometry" />
|
|
9
|
+
</mxCell>
|
|
10
|
+
<mxCell id="xZQY71x421pRE-uKHZpD-8" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
|
|
11
|
+
<mxGeometry x="-2230" y="260" width="120" height="60" as="geometry" />
|
|
12
|
+
</mxCell>
|
|
13
|
+
<mxCell id="xZQY71x421pRE-uKHZpD-19" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;endArrow=blockThin;endFill=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="xZQY71x421pRE-uKHZpD-9" target="xZQY71x421pRE-uKHZpD-17" edge="1">
|
|
14
|
+
<mxGeometry relative="1" as="geometry" />
|
|
15
|
+
</mxCell>
|
|
16
|
+
<mxCell id="xZQY71x421pRE-uKHZpD-20" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;endArrow=blockThin;endFill=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="xZQY71x421pRE-uKHZpD-9" target="xZQY71x421pRE-uKHZpD-18" edge="1">
|
|
17
|
+
<mxGeometry relative="1" as="geometry" />
|
|
18
|
+
</mxCell>
|
|
19
|
+
<mxCell id="xZQY71x421pRE-uKHZpD-9" value="" style="rhombus;whiteSpace=wrap;html=1;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
|
|
20
|
+
<mxGeometry x="-2210" y="450" width="80" height="80" as="geometry" />
|
|
21
|
+
</mxCell>
|
|
22
|
+
<mxCell id="xZQY71x421pRE-uKHZpD-11" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
|
|
23
|
+
<mxGeometry x="-1880" y="290" width="80" height="80" as="geometry" />
|
|
24
|
+
</mxCell>
|
|
25
|
+
<mxCell id="xZQY71x421pRE-uKHZpD-32" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;endArrow=blockThin;endFill=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" target="fJnVb3r60i2aODetUhyN-0" edge="1">
|
|
26
|
+
<mxGeometry relative="1" as="geometry">
|
|
27
|
+
<mxPoint x="-1840" y="520" as="sourcePoint" />
|
|
28
|
+
<mxPoint x="-1840" y="610" as="targetPoint" />
|
|
29
|
+
</mxGeometry>
|
|
30
|
+
</mxCell>
|
|
31
|
+
<mxCell id="xZQY71x421pRE-uKHZpD-33" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;endArrow=blockThin;endFill=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;exitPerimeter=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="fJnVb3r60i2aODetUhyN-1" target="xZQY71x421pRE-uKHZpD-11" edge="1">
|
|
32
|
+
<mxGeometry relative="1" as="geometry">
|
|
33
|
+
<mxPoint x="-1840" y="460" as="sourcePoint" />
|
|
34
|
+
</mxGeometry>
|
|
35
|
+
</mxCell>
|
|
36
|
+
<mxCell id="xZQY71x421pRE-uKHZpD-17" value="" style="whiteSpace=wrap;html=1;aspect=fixed;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
|
|
37
|
+
<mxGeometry x="-2330" y="450" width="80" height="80" as="geometry" />
|
|
38
|
+
</mxCell>
|
|
39
|
+
<mxCell id="xZQY71x421pRE-uKHZpD-29" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;endArrow=blockThin;endFill=1;entryPerimeter=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="xZQY71x421pRE-uKHZpD-18" target="fJnVb3r60i2aODetUhyN-1" edge="1">
|
|
40
|
+
<mxGeometry relative="1" as="geometry">
|
|
41
|
+
<mxPoint x="-1900" y="490" as="targetPoint" />
|
|
42
|
+
</mxGeometry>
|
|
43
|
+
</mxCell>
|
|
44
|
+
<mxCell id="xZQY71x421pRE-uKHZpD-18" value="" style="whiteSpace=wrap;html=1;aspect=fixed;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
|
|
45
|
+
<mxGeometry x="-2086" y="450" width="80" height="80" as="geometry" />
|
|
46
|
+
</mxCell>
|
|
47
|
+
<mxCell id="xZQY71x421pRE-uKHZpD-21" value="" style="shape=parallelogram;perimeter=parallelogramPerimeter;whiteSpace=wrap;html=1;fixedSize=1;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
|
|
48
|
+
<mxGeometry x="-2400" y="610" width="120" height="60" as="geometry" />
|
|
49
|
+
</mxCell>
|
|
50
|
+
<mxCell id="xZQY71x421pRE-uKHZpD-22" value="" style="shape=parallelogram;perimeter=parallelogramPerimeter;whiteSpace=wrap;html=1;fixedSize=1;flipH=1;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1">
|
|
51
|
+
<mxGeometry x="-2060" y="610" width="120" height="60" as="geometry" />
|
|
52
|
+
</mxCell>
|
|
53
|
+
<mxCell id="xZQY71x421pRE-uKHZpD-24" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.25;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;endArrow=blockThin;endFill=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="xZQY71x421pRE-uKHZpD-17" target="xZQY71x421pRE-uKHZpD-21" edge="1">
|
|
54
|
+
<mxGeometry relative="1" as="geometry">
|
|
55
|
+
<mxPoint x="-2220" y="330" as="sourcePoint" />
|
|
56
|
+
<mxPoint x="-2263" y="430" as="targetPoint" />
|
|
57
|
+
</mxGeometry>
|
|
58
|
+
</mxCell>
|
|
59
|
+
<mxCell id="xZQY71x421pRE-uKHZpD-25" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=1;exitDx=0;exitDy=0;entryX=0.25;entryY=0;entryDx=0;entryDy=0;dashed=1;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;endArrow=blockThin;endFill=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="xZQY71x421pRE-uKHZpD-8" target="xZQY71x421pRE-uKHZpD-18" edge="1">
|
|
60
|
+
<mxGeometry relative="1" as="geometry">
|
|
61
|
+
<mxPoint x="-2210" y="340" as="sourcePoint" />
|
|
62
|
+
<mxPoint x="-2253" y="440" as="targetPoint" />
|
|
63
|
+
</mxGeometry>
|
|
64
|
+
</mxCell>
|
|
65
|
+
<mxCell id="xZQY71x421pRE-uKHZpD-26" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.75;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;endArrow=blockThin;endFill=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="xZQY71x421pRE-uKHZpD-18" target="xZQY71x421pRE-uKHZpD-22" edge="1">
|
|
66
|
+
<mxGeometry relative="1" as="geometry">
|
|
67
|
+
<mxPoint x="-2200" y="350" as="sourcePoint" />
|
|
68
|
+
<mxPoint x="-2243" y="450" as="targetPoint" />
|
|
69
|
+
</mxGeometry>
|
|
70
|
+
</mxCell>
|
|
71
|
+
<mxCell id="xZQY71x421pRE-uKHZpD-27" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=1;exitDx=0;exitDy=0;entryX=0.75;entryY=0;entryDx=0;entryDy=0;dashed=1;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;endArrow=blockThin;endFill=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="xZQY71x421pRE-uKHZpD-8" target="xZQY71x421pRE-uKHZpD-17" edge="1">
|
|
72
|
+
<mxGeometry relative="1" as="geometry" />
|
|
73
|
+
</mxCell>
|
|
74
|
+
<mxCell id="fJnVb3r60i2aODetUhyN-0" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;" vertex="1" parent="WIyWlLk6GJQsqaUBKTNV-1">
|
|
75
|
+
<mxGeometry x="-1900" y="610" width="120" height="60" as="geometry" />
|
|
76
|
+
</mxCell>
|
|
77
|
+
<mxCell id="fJnVb3r60i2aODetUhyN-1" value="" style="strokeWidth=7;html=1;shape=mxgraph.flowchart.terminator;whiteSpace=wrap;fillColor=#fad7ac;strokeColor=#b46504;" vertex="1" parent="WIyWlLk6GJQsqaUBKTNV-1">
|
|
78
|
+
<mxGeometry x="-1890" y="460" width="100" height="60" as="geometry" />
|
|
79
|
+
</mxCell>
|
|
80
|
+
</root>
|
|
81
|
+
</mxGraphModel>
|
|
82
|
+
</diagram>
|
|
83
|
+
</mxfile>
|
|
Binary file
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!-- Do not edit this file with editors other than draw.io -->
|
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" style="background: transparent; background-color: transparent; color-scheme: light dark;" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="627px" height="417px" viewBox="-0.5 -0.5 627 417" content="<mxfile host="app.diagrams.net" agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" version="26.2.14" scale="1" border="0"> <diagram id="C5RBs43oDa-KdzZeNtuy" name="Page-1"> <mxGraphModel dx="3664" dy="733" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0"> <root> <mxCell id="WIyWlLk6GJQsqaUBKTNV-0" /> <mxCell id="WIyWlLk6GJQsqaUBKTNV-1" parent="WIyWlLk6GJQsqaUBKTNV-0" /> <mxCell id="xZQY71x421pRE-uKHZpD-10" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;endArrow=blockThin;endFill=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="xZQY71x421pRE-uKHZpD-8" target="xZQY71x421pRE-uKHZpD-9" edge="1"> <mxGeometry relative="1" as="geometry" /> </mxCell> <mxCell id="xZQY71x421pRE-uKHZpD-8" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1"> <mxGeometry x="-2230" y="260" width="120" height="60" as="geometry" /> </mxCell> <mxCell id="xZQY71x421pRE-uKHZpD-19" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;endArrow=blockThin;endFill=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="xZQY71x421pRE-uKHZpD-9" target="xZQY71x421pRE-uKHZpD-17" edge="1"> <mxGeometry relative="1" as="geometry" /> </mxCell> <mxCell id="xZQY71x421pRE-uKHZpD-20" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;endArrow=blockThin;endFill=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="xZQY71x421pRE-uKHZpD-9" target="xZQY71x421pRE-uKHZpD-18" edge="1"> <mxGeometry relative="1" as="geometry" /> </mxCell> <mxCell id="xZQY71x421pRE-uKHZpD-9" value="" style="rhombus;whiteSpace=wrap;html=1;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1"> <mxGeometry x="-2210" y="450" width="80" height="80" as="geometry" /> </mxCell> <mxCell id="xZQY71x421pRE-uKHZpD-11" value="" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1"> <mxGeometry x="-1880" y="290" width="80" height="80" as="geometry" /> </mxCell> <mxCell id="xZQY71x421pRE-uKHZpD-32" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;endArrow=blockThin;endFill=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" target="fJnVb3r60i2aODetUhyN-0" edge="1"> <mxGeometry relative="1" as="geometry"> <mxPoint x="-1840" y="520" as="sourcePoint" /> <mxPoint x="-1840" y="610" as="targetPoint" /> </mxGeometry> </mxCell> <mxCell id="xZQY71x421pRE-uKHZpD-33" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;endArrow=blockThin;endFill=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;exitPerimeter=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="fJnVb3r60i2aODetUhyN-1" target="xZQY71x421pRE-uKHZpD-11" edge="1"> <mxGeometry relative="1" as="geometry"> <mxPoint x="-1840" y="460" as="sourcePoint" /> </mxGeometry> </mxCell> <mxCell id="xZQY71x421pRE-uKHZpD-17" value="" style="whiteSpace=wrap;html=1;aspect=fixed;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1"> <mxGeometry x="-2330" y="450" width="80" height="80" as="geometry" /> </mxCell> <mxCell id="xZQY71x421pRE-uKHZpD-29" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;endArrow=blockThin;endFill=1;entryPerimeter=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="xZQY71x421pRE-uKHZpD-18" target="fJnVb3r60i2aODetUhyN-1" edge="1"> <mxGeometry relative="1" as="geometry"> <mxPoint x="-1900" y="490" as="targetPoint" /> </mxGeometry> </mxCell> <mxCell id="xZQY71x421pRE-uKHZpD-18" value="" style="whiteSpace=wrap;html=1;aspect=fixed;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1"> <mxGeometry x="-2086" y="450" width="80" height="80" as="geometry" /> </mxCell> <mxCell id="xZQY71x421pRE-uKHZpD-21" value="" style="shape=parallelogram;perimeter=parallelogramPerimeter;whiteSpace=wrap;html=1;fixedSize=1;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1"> <mxGeometry x="-2400" y="610" width="120" height="60" as="geometry" /> </mxCell> <mxCell id="xZQY71x421pRE-uKHZpD-22" value="" style="shape=parallelogram;perimeter=parallelogramPerimeter;whiteSpace=wrap;html=1;fixedSize=1;flipH=1;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1"> <mxGeometry x="-2060" y="610" width="120" height="60" as="geometry" /> </mxCell> <mxCell id="xZQY71x421pRE-uKHZpD-24" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.25;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;endArrow=blockThin;endFill=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="xZQY71x421pRE-uKHZpD-17" target="xZQY71x421pRE-uKHZpD-21" edge="1"> <mxGeometry relative="1" as="geometry"> <mxPoint x="-2220" y="330" as="sourcePoint" /> <mxPoint x="-2263" y="430" as="targetPoint" /> </mxGeometry> </mxCell> <mxCell id="xZQY71x421pRE-uKHZpD-25" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=1;exitDx=0;exitDy=0;entryX=0.25;entryY=0;entryDx=0;entryDy=0;dashed=1;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;endArrow=blockThin;endFill=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="xZQY71x421pRE-uKHZpD-8" target="xZQY71x421pRE-uKHZpD-18" edge="1"> <mxGeometry relative="1" as="geometry"> <mxPoint x="-2210" y="340" as="sourcePoint" /> <mxPoint x="-2253" y="440" as="targetPoint" /> </mxGeometry> </mxCell> <mxCell id="xZQY71x421pRE-uKHZpD-26" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.75;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;endArrow=blockThin;endFill=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="xZQY71x421pRE-uKHZpD-18" target="xZQY71x421pRE-uKHZpD-22" edge="1"> <mxGeometry relative="1" as="geometry"> <mxPoint x="-2200" y="350" as="sourcePoint" /> <mxPoint x="-2243" y="450" as="targetPoint" /> </mxGeometry> </mxCell> <mxCell id="xZQY71x421pRE-uKHZpD-27" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=1;exitDx=0;exitDy=0;entryX=0.75;entryY=0;entryDx=0;entryDy=0;dashed=1;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;endArrow=blockThin;endFill=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="xZQY71x421pRE-uKHZpD-8" target="xZQY71x421pRE-uKHZpD-17" edge="1"> <mxGeometry relative="1" as="geometry" /> </mxCell> <mxCell id="fJnVb3r60i2aODetUhyN-0" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#fad7ac;strokeColor=#b46504;strokeWidth=7;" vertex="1" parent="WIyWlLk6GJQsqaUBKTNV-1"> <mxGeometry x="-1900" y="610" width="120" height="60" as="geometry" /> </mxCell> <mxCell id="fJnVb3r60i2aODetUhyN-1" value="" style="strokeWidth=7;html=1;shape=mxgraph.flowchart.terminator;whiteSpace=wrap;fillColor=#fad7ac;strokeColor=#b46504;" vertex="1" parent="WIyWlLk6GJQsqaUBKTNV-1"> <mxGeometry x="-1890" y="460" width="100" height="60" as="geometry" /> </mxCell> </root> </mxGraphModel> </diagram> </mxfile> "><defs/><g><g data-cell-id="WIyWlLk6GJQsqaUBKTNV-0"><g data-cell-id="WIyWlLk6GJQsqaUBKTNV-1"><g data-cell-id="xZQY71x421pRE-uKHZpD-10"><g><path d="M 233 63 L 233 172.17" fill="none" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/><path d="M 233 185.17 L 228.67 172.17 L 237.33 172.17 Z" fill="#b46504" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(180, 101, 4), rgb(201, 133, 49)); stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/></g></g><g data-cell-id="xZQY71x421pRE-uKHZpD-8"><g><rect x="173" y="3" width="120" height="60" rx="9" ry="9" fill="#fad7ac" stroke="#b46504" stroke-width="7" pointer-events="all" style="fill: light-dark(rgb(250, 215, 172), rgb(75, 45, 8)); stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/></g></g><g data-cell-id="xZQY71x421pRE-uKHZpD-19"><g><path d="M 193 233 L 173.83 233" fill="none" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/><path d="M 160.83 233 L 173.83 228.67 L 173.83 237.33 Z" fill="#b46504" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(180, 101, 4), rgb(201, 133, 49)); stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/></g></g><g data-cell-id="xZQY71x421pRE-uKHZpD-20"><g><path d="M 273 233 L 296.17 233" fill="none" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/><path d="M 309.17 233 L 296.17 237.33 L 296.17 228.67 Z" fill="#b46504" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(180, 101, 4), rgb(201, 133, 49)); stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/></g></g><g data-cell-id="xZQY71x421pRE-uKHZpD-9"><g><path d="M 233 193 L 273 233 L 233 273 L 193 233 Z" fill="#fad7ac" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(250, 215, 172), rgb(75, 45, 8)); stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/></g></g><g data-cell-id="xZQY71x421pRE-uKHZpD-11"><g><ellipse cx="563" cy="73" rx="40" ry="40" fill="#fad7ac" stroke="#b46504" stroke-width="7" pointer-events="all" style="fill: light-dark(rgb(250, 215, 172), rgb(75, 45, 8)); stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/></g></g><g data-cell-id="xZQY71x421pRE-uKHZpD-32"><g><path d="M 563 263 L 563.5 308.5 L 563.23 332.18" fill="none" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/><path d="M 563.09 345.17 L 558.9 332.13 L 567.57 332.22 Z" fill="#b46504" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(180, 101, 4), rgb(201, 133, 49)); stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/></g></g><g data-cell-id="xZQY71x421pRE-uKHZpD-33"><g><path d="M 563 203 L 563 133.83" fill="none" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/><path d="M 563 120.83 L 567.33 133.83 L 558.67 133.83 Z" fill="#b46504" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(180, 101, 4), rgb(201, 133, 49)); stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/></g></g><g data-cell-id="xZQY71x421pRE-uKHZpD-17"><g><rect x="73" y="193" width="80" height="80" fill="#fad7ac" stroke="#b46504" stroke-width="7" pointer-events="all" style="fill: light-dark(rgb(250, 215, 172), rgb(75, 45, 8)); stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/></g></g><g data-cell-id="xZQY71x421pRE-uKHZpD-29"><g><path d="M 397 233 L 492.17 233" fill="none" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/><path d="M 505.17 233 L 492.17 237.33 L 492.17 228.67 Z" fill="#b46504" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(180, 101, 4), rgb(201, 133, 49)); stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/></g></g><g data-cell-id="xZQY71x421pRE-uKHZpD-18"><g><rect x="317" y="193" width="80" height="80" fill="#fad7ac" stroke="#b46504" stroke-width="7" pointer-events="all" style="fill: light-dark(rgb(250, 215, 172), rgb(75, 45, 8)); stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/></g></g><g data-cell-id="xZQY71x421pRE-uKHZpD-21"><g><path d="M 3 413 L 23 353 L 123 353 L 103 413 Z" fill="#fad7ac" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(250, 215, 172), rgb(75, 45, 8)); stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/></g></g><g data-cell-id="xZQY71x421pRE-uKHZpD-22"><g><path d="M 343 413 L 363 353 L 463 353 L 443 413 Z" fill="#fad7ac" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" transform="translate(403,0)scale(-1,1)translate(-403,0)" pointer-events="all" style="fill: light-dark(rgb(250, 215, 172), rgb(75, 45, 8)); stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/></g></g><g data-cell-id="xZQY71x421pRE-uKHZpD-24"><g><path d="M 93 273 L 70.31 333.5" fill="none" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/><path d="M 65.75 345.67 L 66.26 331.98 L 74.37 335.02 Z" fill="#b46504" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(180, 101, 4), rgb(201, 133, 49)); stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/></g></g><g data-cell-id="xZQY71x421pRE-uKHZpD-25"><g><path d="M 293 63 L 330.32 173.27" fill="none" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" stroke-dasharray="21 21" pointer-events="stroke" style="stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/><path d="M 334.49 185.59 L 326.22 174.66 L 334.43 171.88 Z" fill="#b46504" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(180, 101, 4), rgb(201, 133, 49)); stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/></g></g><g data-cell-id="xZQY71x421pRE-uKHZpD-26"><g><path d="M 377 273 L 396.56 333.19" fill="none" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/><path d="M 400.58 345.56 L 392.44 334.53 L 400.68 331.85 Z" fill="#b46504" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(180, 101, 4), rgb(201, 133, 49)); stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/></g></g><g data-cell-id="xZQY71x421pRE-uKHZpD-27"><g><path d="M 173 63 L 139.12 173.09" fill="none" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" stroke-dasharray="21 21" pointer-events="stroke" style="stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/><path d="M 135.3 185.52 L 134.98 171.82 L 143.27 174.37 Z" fill="#b46504" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(180, 101, 4), rgb(201, 133, 49)); stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/></g></g><g data-cell-id="fJnVb3r60i2aODetUhyN-0"><g><rect x="503" y="353" width="120" height="60" rx="9" ry="9" fill="#fad7ac" stroke="#b46504" stroke-width="7" pointer-events="all" style="fill: light-dark(rgb(250, 215, 172), rgb(75, 45, 8)); stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/></g></g><g data-cell-id="fJnVb3r60i2aODetUhyN-1"><g><path d="M 543.61 203 L 582.39 203 C 599.29 203 613 216.43 613 233 C 613 249.57 599.29 263 582.39 263 L 543.61 263 C 526.71 263 513 249.57 513 233 C 513 216.43 526.71 203 543.61 203 Z" fill="#fad7ac" stroke="#b46504" stroke-width="7" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(250, 215, 172), rgb(75, 45, 8)); stroke: light-dark(rgb(180, 101, 4), rgb(201, 133, 49));"/></g></g></g></g></g></svg>
|
package/src/App.test.tsx
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { describe, expect, it } from "vitest";
|
|
2
|
+
import { render, screen } from "@testing-library/react";
|
|
3
|
+
import App from "./App";
|
|
4
|
+
|
|
5
|
+
describe("App", () => {
|
|
6
|
+
it("renders the Orcheo Canvas navigation", () => {
|
|
7
|
+
render(<App />);
|
|
8
|
+
expect(screen.getByText(/Orcheo Canvas/i)).toBeInTheDocument();
|
|
9
|
+
});
|
|
10
|
+
});
|
package/src/App.tsx
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { BrowserRouter as Router, Routes, Route } from "react-router-dom";
|
|
2
|
+
import WorkflowGallery from "@features/workflow/pages/workflow-gallery";
|
|
3
|
+
import WorkflowCanvas from "@features/workflow/pages/workflow-canvas";
|
|
4
|
+
import WorkflowExecutionDetails from "@features/workflow/pages/workflow-execution-details";
|
|
5
|
+
import Login from "@features/auth/pages/login";
|
|
6
|
+
import Signup from "@features/auth/pages/signup";
|
|
7
|
+
import Profile from "@features/account/pages/profile";
|
|
8
|
+
import Settings from "@features/account/pages/settings";
|
|
9
|
+
import HelpSupport from "@features/support/pages/help-support";
|
|
10
|
+
import PublicChatPage from "@features/chatkit/pages/public-chat";
|
|
11
|
+
|
|
12
|
+
export default function OrcheoCanvasApp() {
|
|
13
|
+
return (
|
|
14
|
+
<Router>
|
|
15
|
+
<Routes>
|
|
16
|
+
<Route path="/" element={<WorkflowGallery />} />
|
|
17
|
+
|
|
18
|
+
<Route path="/workflow-canvas" element={<WorkflowCanvas />} />
|
|
19
|
+
<Route
|
|
20
|
+
path="/workflow-canvas/:workflowId"
|
|
21
|
+
element={<WorkflowCanvas />}
|
|
22
|
+
/>
|
|
23
|
+
|
|
24
|
+
<Route
|
|
25
|
+
path="/workflow-execution-details/:executionId"
|
|
26
|
+
element={<WorkflowExecutionDetails />}
|
|
27
|
+
/>
|
|
28
|
+
|
|
29
|
+
<Route path="/login" element={<Login />} />
|
|
30
|
+
|
|
31
|
+
<Route path="/signup" element={<Signup />} />
|
|
32
|
+
|
|
33
|
+
<Route path="/profile" element={<Profile />} />
|
|
34
|
+
|
|
35
|
+
<Route path="/settings" element={<Settings />} />
|
|
36
|
+
|
|
37
|
+
<Route path="/help-support" element={<HelpSupport />} />
|
|
38
|
+
|
|
39
|
+
<Route path="/chat/:workflowId" element={<PublicChatPage />} />
|
|
40
|
+
</Routes>
|
|
41
|
+
</Router>
|
|
42
|
+
);
|
|
43
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="35.93" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 228"><path fill="#00D8FF" d="M210.483 73.824a171.49 171.49 0 0 0-8.24-2.597c.465-1.9.893-3.777 1.273-5.621c6.238-30.281 2.16-54.676-11.769-62.708c-13.355-7.7-35.196.329-57.254 19.526a171.23 171.23 0 0 0-6.375 5.848a155.866 155.866 0 0 0-4.241-3.917C100.759 3.829 77.587-4.822 63.673 3.233C50.33 10.957 46.379 33.89 51.995 62.588a170.974 170.974 0 0 0 1.892 8.48c-3.28.932-6.445 1.924-9.474 2.98C17.309 83.498 0 98.307 0 113.668c0 15.865 18.582 31.778 46.812 41.427a145.52 145.52 0 0 0 6.921 2.165a167.467 167.467 0 0 0-2.01 9.138c-5.354 28.2-1.173 50.591 12.134 58.266c13.744 7.926 36.812-.22 59.273-19.855a145.567 145.567 0 0 0 5.342-4.923a168.064 168.064 0 0 0 6.92 6.314c21.758 18.722 43.246 26.282 56.54 18.586c13.731-7.949 18.194-32.003 12.4-61.268a145.016 145.016 0 0 0-1.535-6.842c1.62-.48 3.21-.974 4.76-1.488c29.348-9.723 48.443-25.443 48.443-41.52c0-15.417-17.868-30.326-45.517-39.844Zm-6.365 70.984c-1.4.463-2.836.91-4.3 1.345c-3.24-10.257-7.612-21.163-12.963-32.432c5.106-11 9.31-21.767 12.459-31.957c2.619.758 5.16 1.557 7.61 2.4c23.69 8.156 38.14 20.213 38.14 29.504c0 9.896-15.606 22.743-40.946 31.14Zm-10.514 20.834c2.562 12.94 2.927 24.64 1.23 33.787c-1.524 8.219-4.59 13.698-8.382 15.893c-8.067 4.67-25.32-1.4-43.927-17.412a156.726 156.726 0 0 1-6.437-5.87c7.214-7.889 14.423-17.06 21.459-27.246c12.376-1.098 24.068-2.894 34.671-5.345a134.17 134.17 0 0 1 1.386 6.193ZM87.276 214.515c-7.882 2.783-14.16 2.863-17.955.675c-8.075-4.657-11.432-22.636-6.853-46.752a156.923 156.923 0 0 1 1.869-8.499c10.486 2.32 22.093 3.988 34.498 4.994c7.084 9.967 14.501 19.128 21.976 27.15a134.668 134.668 0 0 1-4.877 4.492c-9.933 8.682-19.886 14.842-28.658 17.94ZM50.35 144.747c-12.483-4.267-22.792-9.812-29.858-15.863c-6.35-5.437-9.555-10.836-9.555-15.216c0-9.322 13.897-21.212 37.076-29.293c2.813-.98 5.757-1.905 8.812-2.773c3.204 10.42 7.406 21.315 12.477 32.332c-5.137 11.18-9.399 22.249-12.634 32.792a134.718 134.718 0 0 1-6.318-1.979Zm12.378-84.26c-4.811-24.587-1.616-43.134 6.425-47.789c8.564-4.958 27.502 2.111 47.463 19.835a144.318 144.318 0 0 1 3.841 3.545c-7.438 7.987-14.787 17.08-21.808 26.988c-12.04 1.116-23.565 2.908-34.161 5.309a160.342 160.342 0 0 1-1.76-7.887Zm110.427 27.268a347.8 347.8 0 0 0-7.785-12.803c8.168 1.033 15.994 2.404 23.343 4.08c-2.206 7.072-4.956 14.465-8.193 22.045a381.151 381.151 0 0 0-7.365-13.322Zm-45.032-43.861c5.044 5.465 10.096 11.566 15.065 18.186a322.04 322.04 0 0 0-30.257-.006c4.974-6.559 10.069-12.652 15.192-18.18ZM82.802 87.83a323.167 323.167 0 0 0-7.227 13.238c-3.184-7.553-5.909-14.98-8.134-22.152c7.304-1.634 15.093-2.97 23.209-3.984a321.524 321.524 0 0 0-7.848 12.897Zm8.081 65.352c-8.385-.936-16.291-2.203-23.593-3.793c2.26-7.3 5.045-14.885 8.298-22.6a321.187 321.187 0 0 0 7.257 13.246c2.594 4.48 5.28 8.868 8.038 13.147Zm37.542 31.03c-5.184-5.592-10.354-11.779-15.403-18.433c4.902.192 9.899.29 14.978.29c5.218 0 10.376-.117 15.453-.343c-4.985 6.774-10.018 12.97-15.028 18.486Zm52.198-57.817c3.422 7.8 6.306 15.345 8.596 22.52c-7.422 1.694-15.436 3.058-23.88 4.071a382.417 382.417 0 0 0 7.859-13.026a347.403 347.403 0 0 0 7.425-13.565Zm-16.898 8.101a358.557 358.557 0 0 1-12.281 19.815a329.4 329.4 0 0 1-23.444.823c-7.967 0-15.716-.248-23.178-.732a310.202 310.202 0 0 1-12.513-19.846h.001a307.41 307.41 0 0 1-10.923-20.627a310.278 310.278 0 0 1 10.89-20.637l-.001.001a307.318 307.318 0 0 1 12.413-19.761c7.613-.576 15.42-.876 23.31-.876H128c7.926 0 15.743.303 23.354.883a329.357 329.357 0 0 1 12.335 19.695a358.489 358.489 0 0 1 11.036 20.54a329.472 329.472 0 0 1-11 20.722Zm22.56-122.124c8.572 4.944 11.906 24.881 6.52 51.026c-.344 1.668-.73 3.367-1.15 5.09c-10.622-2.452-22.155-4.275-34.23-5.408c-7.034-10.017-14.323-19.124-21.64-27.008a160.789 160.789 0 0 1 5.888-5.4c18.9-16.447 36.564-22.941 44.612-18.3ZM128 90.808c12.625 0 22.86 10.235 22.86 22.86s-10.235 22.86-22.86 22.86s-22.86-10.235-22.86-22.86s10.235-22.86 22.86-22.86Z"></path></svg>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import * as React from "react";
|
|
4
|
+
import * as AccordionPrimitive from "@radix-ui/react-accordion";
|
|
5
|
+
import { ChevronDown } from "lucide-react";
|
|
6
|
+
|
|
7
|
+
import { cn } from "@/lib/utils";
|
|
8
|
+
|
|
9
|
+
const Accordion = AccordionPrimitive.Root;
|
|
10
|
+
|
|
11
|
+
const AccordionItem = React.forwardRef<
|
|
12
|
+
React.ElementRef<typeof AccordionPrimitive.Item>,
|
|
13
|
+
React.ComponentPropsWithoutRef<typeof AccordionPrimitive.Item>
|
|
14
|
+
>(({ className, ...props }, ref) => (
|
|
15
|
+
<AccordionPrimitive.Item
|
|
16
|
+
ref={ref}
|
|
17
|
+
className={cn("border-b", className)}
|
|
18
|
+
{...props}
|
|
19
|
+
/>
|
|
20
|
+
));
|
|
21
|
+
AccordionItem.displayName = "AccordionItem";
|
|
22
|
+
|
|
23
|
+
const AccordionTrigger = React.forwardRef<
|
|
24
|
+
React.ElementRef<typeof AccordionPrimitive.Trigger>,
|
|
25
|
+
React.ComponentPropsWithoutRef<typeof AccordionPrimitive.Trigger>
|
|
26
|
+
>(({ className, children, ...props }, ref) => (
|
|
27
|
+
<AccordionPrimitive.Header className="flex">
|
|
28
|
+
<AccordionPrimitive.Trigger
|
|
29
|
+
ref={ref}
|
|
30
|
+
className={cn(
|
|
31
|
+
"flex flex-1 items-center justify-between py-4 text-sm font-medium transition-all hover:underline text-left [&[data-state=open]>svg]:rotate-180",
|
|
32
|
+
className,
|
|
33
|
+
)}
|
|
34
|
+
{...props}
|
|
35
|
+
>
|
|
36
|
+
{children}
|
|
37
|
+
<ChevronDown className="h-4 w-4 shrink-0 text-muted-foreground transition-transform duration-200" />
|
|
38
|
+
</AccordionPrimitive.Trigger>
|
|
39
|
+
</AccordionPrimitive.Header>
|
|
40
|
+
));
|
|
41
|
+
AccordionTrigger.displayName = AccordionPrimitive.Trigger.displayName;
|
|
42
|
+
|
|
43
|
+
const AccordionContent = React.forwardRef<
|
|
44
|
+
React.ElementRef<typeof AccordionPrimitive.Content>,
|
|
45
|
+
React.ComponentPropsWithoutRef<typeof AccordionPrimitive.Content>
|
|
46
|
+
>(({ className, children, ...props }, ref) => (
|
|
47
|
+
<AccordionPrimitive.Content
|
|
48
|
+
ref={ref}
|
|
49
|
+
className="overflow-hidden text-sm data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down"
|
|
50
|
+
{...props}
|
|
51
|
+
>
|
|
52
|
+
<div className={cn("pb-4 pt-0", className)}>{children}</div>
|
|
53
|
+
</AccordionPrimitive.Content>
|
|
54
|
+
));
|
|
55
|
+
AccordionContent.displayName = AccordionPrimitive.Content.displayName;
|
|
56
|
+
|
|
57
|
+
export { Accordion, AccordionItem, AccordionTrigger, AccordionContent };
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import * as React from "react";
|
|
4
|
+
import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog";
|
|
5
|
+
|
|
6
|
+
import { cn } from "@/lib/utils";
|
|
7
|
+
import { buttonVariants } from "@/design-system/ui/button";
|
|
8
|
+
|
|
9
|
+
const AlertDialog = AlertDialogPrimitive.Root;
|
|
10
|
+
|
|
11
|
+
const AlertDialogTrigger = AlertDialogPrimitive.Trigger;
|
|
12
|
+
|
|
13
|
+
const AlertDialogPortal = AlertDialogPrimitive.Portal;
|
|
14
|
+
|
|
15
|
+
const AlertDialogOverlay = React.forwardRef<
|
|
16
|
+
React.ElementRef<typeof AlertDialogPrimitive.Overlay>,
|
|
17
|
+
React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Overlay>
|
|
18
|
+
>(({ className, ...props }, ref) => (
|
|
19
|
+
<AlertDialogPrimitive.Overlay
|
|
20
|
+
className={cn(
|
|
21
|
+
"fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
|
|
22
|
+
className,
|
|
23
|
+
)}
|
|
24
|
+
{...props}
|
|
25
|
+
ref={ref}
|
|
26
|
+
/>
|
|
27
|
+
));
|
|
28
|
+
AlertDialogOverlay.displayName = AlertDialogPrimitive.Overlay.displayName;
|
|
29
|
+
|
|
30
|
+
const AlertDialogContent = React.forwardRef<
|
|
31
|
+
React.ElementRef<typeof AlertDialogPrimitive.Content>,
|
|
32
|
+
React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Content>
|
|
33
|
+
>(({ className, ...props }, ref) => (
|
|
34
|
+
<AlertDialogPortal>
|
|
35
|
+
<AlertDialogOverlay />
|
|
36
|
+
<AlertDialogPrimitive.Content
|
|
37
|
+
ref={ref}
|
|
38
|
+
className={cn(
|
|
39
|
+
"fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",
|
|
40
|
+
className,
|
|
41
|
+
)}
|
|
42
|
+
{...props}
|
|
43
|
+
/>
|
|
44
|
+
</AlertDialogPortal>
|
|
45
|
+
));
|
|
46
|
+
AlertDialogContent.displayName = AlertDialogPrimitive.Content.displayName;
|
|
47
|
+
|
|
48
|
+
const AlertDialogHeader = ({
|
|
49
|
+
className,
|
|
50
|
+
...props
|
|
51
|
+
}: React.HTMLAttributes<HTMLDivElement>) => (
|
|
52
|
+
<div
|
|
53
|
+
className={cn(
|
|
54
|
+
"flex flex-col space-y-2 text-center sm:text-left",
|
|
55
|
+
className,
|
|
56
|
+
)}
|
|
57
|
+
{...props}
|
|
58
|
+
/>
|
|
59
|
+
);
|
|
60
|
+
AlertDialogHeader.displayName = "AlertDialogHeader";
|
|
61
|
+
|
|
62
|
+
const AlertDialogFooter = ({
|
|
63
|
+
className,
|
|
64
|
+
...props
|
|
65
|
+
}: React.HTMLAttributes<HTMLDivElement>) => (
|
|
66
|
+
<div
|
|
67
|
+
className={cn(
|
|
68
|
+
"flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
|
|
69
|
+
className,
|
|
70
|
+
)}
|
|
71
|
+
{...props}
|
|
72
|
+
/>
|
|
73
|
+
);
|
|
74
|
+
AlertDialogFooter.displayName = "AlertDialogFooter";
|
|
75
|
+
|
|
76
|
+
const AlertDialogTitle = React.forwardRef<
|
|
77
|
+
React.ElementRef<typeof AlertDialogPrimitive.Title>,
|
|
78
|
+
React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Title>
|
|
79
|
+
>(({ className, ...props }, ref) => (
|
|
80
|
+
<AlertDialogPrimitive.Title
|
|
81
|
+
ref={ref}
|
|
82
|
+
className={cn("text-lg font-semibold", className)}
|
|
83
|
+
{...props}
|
|
84
|
+
/>
|
|
85
|
+
));
|
|
86
|
+
AlertDialogTitle.displayName = AlertDialogPrimitive.Title.displayName;
|
|
87
|
+
|
|
88
|
+
const AlertDialogDescription = React.forwardRef<
|
|
89
|
+
React.ElementRef<typeof AlertDialogPrimitive.Description>,
|
|
90
|
+
React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Description>
|
|
91
|
+
>(({ className, ...props }, ref) => (
|
|
92
|
+
<AlertDialogPrimitive.Description
|
|
93
|
+
ref={ref}
|
|
94
|
+
className={cn("text-sm text-muted-foreground", className)}
|
|
95
|
+
{...props}
|
|
96
|
+
/>
|
|
97
|
+
));
|
|
98
|
+
AlertDialogDescription.displayName =
|
|
99
|
+
AlertDialogPrimitive.Description.displayName;
|
|
100
|
+
|
|
101
|
+
const AlertDialogAction = React.forwardRef<
|
|
102
|
+
React.ElementRef<typeof AlertDialogPrimitive.Action>,
|
|
103
|
+
React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Action>
|
|
104
|
+
>(({ className, ...props }, ref) => (
|
|
105
|
+
<AlertDialogPrimitive.Action
|
|
106
|
+
ref={ref}
|
|
107
|
+
className={cn(buttonVariants(), className)}
|
|
108
|
+
{...props}
|
|
109
|
+
/>
|
|
110
|
+
));
|
|
111
|
+
AlertDialogAction.displayName = AlertDialogPrimitive.Action.displayName;
|
|
112
|
+
|
|
113
|
+
const AlertDialogCancel = React.forwardRef<
|
|
114
|
+
React.ElementRef<typeof AlertDialogPrimitive.Cancel>,
|
|
115
|
+
React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Cancel>
|
|
116
|
+
>(({ className, ...props }, ref) => (
|
|
117
|
+
<AlertDialogPrimitive.Cancel
|
|
118
|
+
ref={ref}
|
|
119
|
+
className={cn(
|
|
120
|
+
buttonVariants({ variant: "outline" }),
|
|
121
|
+
"mt-2 sm:mt-0",
|
|
122
|
+
className,
|
|
123
|
+
)}
|
|
124
|
+
{...props}
|
|
125
|
+
/>
|
|
126
|
+
));
|
|
127
|
+
AlertDialogCancel.displayName = AlertDialogPrimitive.Cancel.displayName;
|
|
128
|
+
|
|
129
|
+
export {
|
|
130
|
+
AlertDialog,
|
|
131
|
+
AlertDialogPortal,
|
|
132
|
+
AlertDialogOverlay,
|
|
133
|
+
AlertDialogTrigger,
|
|
134
|
+
AlertDialogContent,
|
|
135
|
+
AlertDialogHeader,
|
|
136
|
+
AlertDialogFooter,
|
|
137
|
+
AlertDialogTitle,
|
|
138
|
+
AlertDialogDescription,
|
|
139
|
+
AlertDialogAction,
|
|
140
|
+
AlertDialogCancel,
|
|
141
|
+
};
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { cva, type VariantProps } from "class-variance-authority";
|
|
3
|
+
|
|
4
|
+
import { cn } from "@/lib/utils";
|
|
5
|
+
|
|
6
|
+
const alertVariants = cva(
|
|
7
|
+
"relative w-full rounded-lg border px-4 py-3 text-sm [&>svg+div]:translate-y-[-3px] [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg]:text-foreground [&>svg~*]:pl-7",
|
|
8
|
+
{
|
|
9
|
+
variants: {
|
|
10
|
+
variant: {
|
|
11
|
+
default: "bg-background text-foreground",
|
|
12
|
+
destructive:
|
|
13
|
+
"border-destructive/50 text-destructive dark:border-destructive [&>svg]:text-destructive",
|
|
14
|
+
},
|
|
15
|
+
},
|
|
16
|
+
defaultVariants: {
|
|
17
|
+
variant: "default",
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
);
|
|
21
|
+
|
|
22
|
+
const Alert = React.forwardRef<
|
|
23
|
+
HTMLDivElement,
|
|
24
|
+
React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof alertVariants>
|
|
25
|
+
>(({ className, variant, ...props }, ref) => (
|
|
26
|
+
<div
|
|
27
|
+
ref={ref}
|
|
28
|
+
role="alert"
|
|
29
|
+
className={cn(alertVariants({ variant }), className)}
|
|
30
|
+
{...props}
|
|
31
|
+
/>
|
|
32
|
+
));
|
|
33
|
+
Alert.displayName = "Alert";
|
|
34
|
+
|
|
35
|
+
const AlertTitle = React.forwardRef<
|
|
36
|
+
HTMLParagraphElement,
|
|
37
|
+
React.HTMLAttributes<HTMLHeadingElement>
|
|
38
|
+
>(({ className, ...props }, ref) => (
|
|
39
|
+
<h5
|
|
40
|
+
ref={ref}
|
|
41
|
+
className={cn("mb-1 font-medium leading-none tracking-tight", className)}
|
|
42
|
+
{...props}
|
|
43
|
+
/>
|
|
44
|
+
));
|
|
45
|
+
AlertTitle.displayName = "AlertTitle";
|
|
46
|
+
|
|
47
|
+
const AlertDescription = React.forwardRef<
|
|
48
|
+
HTMLParagraphElement,
|
|
49
|
+
React.HTMLAttributes<HTMLParagraphElement>
|
|
50
|
+
>(({ className, ...props }, ref) => (
|
|
51
|
+
<div
|
|
52
|
+
ref={ref}
|
|
53
|
+
className={cn("text-sm [&_p]:leading-relaxed", className)}
|
|
54
|
+
{...props}
|
|
55
|
+
/>
|
|
56
|
+
));
|
|
57
|
+
AlertDescription.displayName = "AlertDescription";
|
|
58
|
+
|
|
59
|
+
export { Alert, AlertTitle, AlertDescription };
|