@code0-tech/pictor 0.0.0-mvp.3 → 0.0.0-mvp.30
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/dist/_virtual/_commonjsHelpers.js +6 -0
- package/dist/_virtual/compiler-runtime.js +5 -0
- package/dist/_virtual/compiler-runtime2.js +4 -0
- package/dist/_virtual/index.js +4 -0
- package/dist/_virtual/index2.js +4 -0
- package/dist/_virtual/react-compiler-runtime.development.js +4 -0
- package/dist/_virtual/react-compiler-runtime.production.js +4 -0
- package/dist/_virtual/react-contenteditable.js +7 -0
- package/dist/_virtual/react-contenteditable2.js +4 -0
- package/dist/_virtual/react-dom-server-legacy.browser.development.js +4 -0
- package/dist/_virtual/react-dom-server-legacy.browser.production.js +4 -0
- package/dist/_virtual/react-dom-server.browser.development.js +4 -0
- package/dist/_virtual/react-dom-server.browser.production.js +4 -0
- package/dist/_virtual/react-is.development.js +4 -0
- package/dist/_virtual/react-is.production.min.js +4 -0
- package/dist/_virtual/server.browser.js +5 -0
- package/dist/_virtual/server.browser2.js +4 -0
- package/dist/assets/components/alert/Alert.style.css +1 -0
- package/dist/assets/components/aurora/Aurora.style.css +1 -0
- package/dist/assets/components/avatar/Avatar.style.css +1 -0
- package/dist/assets/components/badge/Badge.style.css +1 -0
- package/dist/assets/{Breadcrumb.css → components/breadcrumb/Breadcrumb.style.css} +1 -1
- package/dist/assets/components/button/Button.style.css +1 -0
- package/dist/assets/components/button-group/ButtonGroup.style.css +1 -0
- package/dist/assets/components/card/Card.style.css +1 -0
- package/dist/assets/components/command/Command.style.css +1 -0
- package/dist/assets/components/context-menu/ContextMenu.style.css +1 -0
- package/dist/assets/components/d-flow/DFlow.style.css +1 -0
- package/dist/assets/components/d-flow-folder/DFlowFolder.style.css +1 -0
- package/dist/assets/components/d-flow-function/DFlowFunctionDefaultCard.style.css +1 -0
- package/dist/assets/components/d-flow-input/DFlowInputDataType.style.css +1 -0
- package/dist/assets/components/d-flow-panel/DFlowMiniMap.style.css +1 -0
- package/dist/assets/components/d-flow-suggestion/DFlowSuggestionSearchInput.style.css +1 -0
- package/dist/assets/components/d-flow-validation/DFlowValidation.style.css +1 -0
- package/dist/assets/components/d-layout/DLayout.style.css +1 -0
- package/dist/assets/components/d-resizable/DResizable.style.css +1 -0
- package/dist/assets/components/dialog/Dialog.style.css +1 -0
- package/dist/assets/components/file-tabs/FileTabs.style.css +1 -0
- package/dist/assets/components/form/Input.style.css +1 -0
- package/dist/assets/components/menu/Menu.style.css +1 -0
- package/dist/assets/{ScrollArea.css → components/scroll-area/ScrollArea.style.css} +1 -1
- package/dist/assets/components/segmented-control/SegmentedControl.style.css +1 -0
- package/dist/assets/components/spacing/Spacing.style.css +1 -0
- package/dist/assets/components/tab/Tab.style.css +1 -0
- package/dist/assets/components/text/Text.style.css +1 -0
- package/dist/assets/components/toast/Toast.style.css +1 -0
- package/dist/assets/components/tooltip/Tooltip.style.css +1 -0
- package/dist/assets/{DFlow.css → node_modules/@xyflow/react/dist/style.css} +1 -1
- package/dist/components/alert/Alert.d.ts +7 -0
- package/dist/components/alert/Alert.js +38 -0
- package/dist/components/aurora/Aurora.d.ts +5 -0
- package/dist/components/aurora/Aurora.js +23 -0
- package/dist/components/avatar/Avatar.js +9 -9
- package/dist/components/badge/Badge.d.ts +2 -1
- package/dist/components/badge/Badge.js +58 -17
- package/dist/components/breadcrumb/Breadcrumb.js +16 -28
- package/dist/components/button/Button.d.ts +3 -2
- package/dist/components/button/Button.js +23 -20
- package/dist/components/button-group/ButtonGroup.js +12 -11
- package/dist/components/card/Card.d.ts +2 -1
- package/dist/components/card/Card.js +25 -22
- package/dist/components/card/CardSection.d.ts +1 -0
- package/dist/components/card/CardSection.js +18 -12
- package/dist/components/col/Col.js +9 -8
- package/dist/components/command/Command.js +19 -18
- package/dist/components/container/Container.js +12 -11
- package/dist/components/context-menu/ContextMenu.d.ts +31 -0
- package/dist/components/context-menu/ContextMenu.js +191 -0
- package/dist/components/d-application/DApplication.service.d.ts +5 -0
- package/dist/components/d-application/DApplication.service.js +9 -0
- package/dist/components/d-flow/DFlow.d.ts +7 -3
- package/dist/components/d-flow/DFlow.edges.hook.d.ts +3 -2
- package/dist/components/d-flow/DFlow.edges.hook.js +100 -136
- package/dist/components/d-flow/DFlow.js +313 -258
- package/dist/components/d-flow/DFlow.nodes.hook.d.ts +6 -2
- package/dist/components/d-flow/DFlow.nodes.hook.js +102 -121
- package/dist/components/d-flow/DFlow.service.d.ts +17 -7
- package/dist/components/d-flow/DFlow.service.js +132 -7
- package/dist/components/d-flow/DFlow.util.d.ts +4 -0
- package/dist/components/d-flow/DFlow.util.js +63 -0
- package/dist/components/d-flow/{edge/DFlowEdge.d.ts → DFlowEdge.d.ts} +5 -3
- package/dist/components/d-flow/DFlowEdge.js +69 -0
- package/dist/components/d-flow/index.d.ts +1 -10
- package/dist/components/d-flow/index.js +9 -44
- package/dist/components/d-flow-data-type/DFlowDataType.service.d.ts +14 -0
- package/dist/components/d-flow-data-type/DFlowDataType.service.js +96 -0
- package/dist/components/{d-flow/data-type → d-flow-data-type}/DFlowDataType.view.d.ts +13 -4
- package/dist/components/d-flow-data-type/DFlowDataType.view.js +76 -0
- package/dist/components/{d-flow/data-type → d-flow-data-type}/index.js +1 -1
- package/dist/components/{d-flow/data-type → d-flow-data-type}/rules/DFlowDataTypeContainsKeyRule.d.ts +2 -3
- package/dist/components/d-flow-data-type/rules/DFlowDataTypeContainsKeyRule.js +222 -0
- package/dist/components/{d-flow/data-type → d-flow-data-type}/rules/DFlowDataTypeContainsTypeRule.d.ts +2 -3
- package/dist/components/d-flow-data-type/rules/DFlowDataTypeContainsTypeRule.js +229 -0
- package/dist/components/{d-flow/data-type → d-flow-data-type}/rules/DFlowDataTypeParentRule.d.ts +2 -3
- package/dist/components/{d-flow/data-type → d-flow-data-type}/rules/DFlowDataTypeParentRule.js +3 -3
- package/dist/components/{d-flow/data-type → d-flow-data-type}/rules/DFlowDataTypeReturnTypeRule.d.ts +2 -3
- package/dist/components/d-flow-data-type/rules/DFlowDataTypeReturnTypeRule.js +246 -0
- package/dist/components/{d-flow/data-type → d-flow-data-type}/rules/DFlowDataTypeRule.d.ts +2 -3
- package/dist/components/d-flow-data-type/rules/DFlowDataTypeRules.js +10 -0
- package/dist/components/d-flow-file/DFlowTabDefault.d.ts +7 -0
- package/dist/components/d-flow-file/DFlowTabDefault.js +104 -0
- package/dist/components/{d-flow/tab → d-flow-file}/DFlowTabTrigger.d.ts +2 -2
- package/dist/components/d-flow-file/DFlowTabTrigger.js +64 -0
- package/dist/components/d-flow-file/DFlowTabs.d.ts +8 -0
- package/dist/components/d-flow-file/DFlowTabs.js +132 -0
- package/dist/components/d-flow-file/index.d.ts +1 -0
- package/dist/components/d-flow-file/index.js +4 -0
- package/dist/components/d-flow-folder/DFlowFolder.d.ts +33 -0
- package/dist/components/d-flow-folder/DFlowFolder.js +208 -0
- package/dist/components/d-flow-folder/DFlowFolderContextMenu.d.ts +18 -0
- package/dist/components/d-flow-folder/DFlowFolderContextMenu.js +45 -0
- package/dist/components/d-flow-folder/DFlowFolderCreateDialog.d.ts +9 -0
- package/dist/components/d-flow-folder/DFlowFolderCreateDialog.js +76 -0
- package/dist/components/d-flow-folder/DFlowFolderDeleteDialog.d.ts +10 -0
- package/dist/components/d-flow-folder/DFlowFolderDeleteDialog.js +55 -0
- package/dist/components/d-flow-folder/DFlowFolderItemPathInput.d.ts +5 -0
- package/dist/components/d-flow-folder/DFlowFolderItemPathInput.js +50 -0
- package/dist/components/d-flow-folder/DFlowFolderRenameDialog.d.ts +10 -0
- package/dist/components/d-flow-folder/DFlowFolderRenameDialog.js +55 -0
- package/dist/components/d-flow-folder/index.d.ts +4 -0
- package/dist/components/d-flow-folder/index.js +12 -0
- package/dist/components/{d-flow/function → d-flow-function}/DFlowFunction.input.hook.d.ts +1 -1
- package/dist/components/d-flow-function/DFlowFunction.input.hook.js +8 -0
- package/dist/components/{d-flow/function → d-flow-function}/DFlowFunction.return.hook.d.ts +2 -2
- package/dist/components/d-flow-function/DFlowFunction.return.hook.js +9 -0
- package/dist/components/d-flow-function/DFlowFunction.service.d.ts +11 -0
- package/dist/components/d-flow-function/DFlowFunction.service.js +12 -0
- package/dist/components/{d-flow/function → d-flow-function}/DFlowFunction.view.d.ts +24 -9
- package/dist/components/d-flow-function/DFlowFunction.view.js +139 -0
- package/dist/components/{d-flow/function → d-flow-function}/DFlowFunctionDefaultCard.d.ts +4 -4
- package/dist/components/d-flow-function/DFlowFunctionDefaultCard.js +117 -0
- package/dist/components/d-flow-function/DFlowFunctionGroupCard.d.ts +13 -0
- package/dist/components/d-flow-function/DFlowFunctionGroupCard.js +68 -0
- package/dist/components/{d-flow/function → d-flow-function}/DFlowFunctionSuggestionCard.d.ts +3 -4
- package/dist/components/d-flow-function/DFlowFunctionSuggestionCard.js +43 -0
- package/dist/components/{d-flow/function → d-flow-function}/DFlowFunctionTriggerCard.d.ts +3 -3
- package/dist/components/d-flow-function/DFlowFunctionTriggerCard.js +78 -0
- package/dist/components/{d-flow/input → d-flow-input}/DFlowInputDataType.d.ts +1 -1
- package/dist/components/d-flow-input/DFlowInputDataType.js +437 -0
- package/dist/components/d-flow-input/DFlowInputDefault.d.ts +10 -0
- package/dist/components/d-flow-input/DFlowInputDefault.js +128 -0
- package/dist/components/d-flow-input/DFlowInputLiteralBadge.d.ts +7 -0
- package/dist/components/d-flow-input/DFlowInputLiteralBadge.js +24 -0
- package/dist/components/d-flow-input/DFlowInputNodeBadge.d.ts +11 -0
- package/dist/components/d-flow-input/DFlowInputNodeBadge.js +44 -0
- package/dist/components/d-flow-input/DFlowInputReferenceBadge.d.ts +11 -0
- package/dist/components/d-flow-input/DFlowInputReferenceBadge.js +33 -0
- package/dist/components/d-flow-panel/DFlowExport.d.ts +6 -0
- package/dist/components/d-flow-panel/DFlowExport.js +32 -0
- package/dist/components/d-flow-panel/DFlowMiniMap.js +33 -0
- package/dist/components/d-flow-panel/DFlowPanelControl.d.ts +6 -0
- package/dist/components/d-flow-panel/DFlowPanelControl.js +72 -0
- package/dist/components/d-flow-panel/DFlowPanelLayout.d.ts +4 -0
- package/dist/components/d-flow-panel/DFlowPanelLayout.js +47 -0
- package/dist/components/d-flow-panel/DFlowPanelSize.d.ts +2 -0
- package/dist/components/d-flow-panel/DFlowPanelSize.js +94 -0
- package/dist/components/d-flow-panel/index.d.ts +5 -0
- package/dist/components/d-flow-panel/index.js +12 -0
- package/dist/components/d-flow-suggestion/DFlowDataTypeSuggestions.hook.d.ts +3 -0
- package/dist/components/d-flow-suggestion/DFlowDataTypeSuggestions.hook.js +34 -0
- package/dist/components/d-flow-suggestion/DFlowFunctionSuggestions.hook.d.ts +3 -0
- package/dist/components/d-flow-suggestion/DFlowFunctionSuggestions.hook.js +50 -0
- package/dist/components/d-flow-suggestion/DFlowReferenceSuggestions.hook.d.ts +3 -0
- package/dist/components/d-flow-suggestion/DFlowReferenceSuggestions.hook.js +133 -0
- package/dist/components/d-flow-suggestion/DFlowSuggestion.hook.d.ts +3 -0
- package/dist/components/d-flow-suggestion/DFlowSuggestion.hook.js +24 -0
- package/dist/components/d-flow-suggestion/DFlowSuggestion.view.d.ts +14 -0
- package/dist/components/d-flow-suggestion/DFlowSuggestion.view.js +4 -0
- package/dist/components/d-flow-suggestion/DFlowSuggestionMenu.js +72 -0
- package/dist/components/{d-flow/suggestion → d-flow-suggestion}/DFlowSuggestionMenu.util.d.ts +1 -1
- package/dist/components/{d-flow/suggestion → d-flow-suggestion}/DFlowSuggestionMenu.util.js +12 -11
- package/dist/components/{d-flow/suggestion → d-flow-suggestion}/DFlowSuggestionMenuFooter.js +5 -5
- package/dist/components/{d-flow/suggestion → d-flow-suggestion}/DFlowSuggestionMenuSearchBar.d.ts +1 -1
- package/dist/components/{d-flow/suggestion → d-flow-suggestion}/DFlowSuggestionMenuSearchBar.js +1 -1
- package/dist/components/{d-flow/suggestion → d-flow-suggestion}/DFlowSuggestionSearchInput.d.ts +1 -1
- package/dist/components/d-flow-suggestion/DFlowSuggestionSearchInput.js +35 -0
- package/dist/components/d-flow-suggestion/DFlowValueSuggestions.hook.d.ts +3 -0
- package/dist/components/d-flow-suggestion/DFlowValueSuggestions.hook.js +44 -0
- package/dist/components/d-flow-suggestion/index.d.ts +1 -0
- package/dist/components/d-flow-suggestion/index.js +4 -0
- package/dist/components/d-flow-type/DFlowType.service.d.ts +11 -0
- package/dist/components/d-flow-type/DFlowType.service.js +12 -0
- package/dist/components/{d-flow/type → d-flow-type}/DFlowType.view.d.ts +10 -4
- package/dist/components/d-flow-type/DFlowType.view.js +85 -0
- package/dist/components/d-flow-validation/DDataTypeValidation.hook.d.ts +2 -0
- package/dist/components/d-flow-validation/DDataTypeValidation.hook.js +18 -0
- package/dist/components/d-flow-validation/DFlowValidation.hook.d.ts +3 -0
- package/dist/components/d-flow-validation/DFlowValidation.hook.js +22 -0
- package/dist/components/d-flow-validation/DFlowValidation.js +66 -0
- package/dist/components/d-flow-validation/DNodeValidation.hook.d.ts +3 -0
- package/dist/components/d-flow-validation/DNodeValidation.hook.js +58 -0
- package/dist/components/d-flow-validation/DValueValidation.hook.d.ts +3 -0
- package/dist/components/d-flow-validation/DValueValidation.hook.js +8 -0
- package/dist/components/{d-flow/validation → d-flow-validation}/index.js +2 -2
- package/dist/components/d-fullscreen/DFullScreen.d.ts +1 -2
- package/dist/components/d-fullscreen/DFullScreen.js +24 -18
- package/dist/components/d-layout/DLayout.js +27 -26
- package/dist/components/d-license/DNamespaceLicense.service.d.ts +11 -0
- package/dist/components/d-license/DNamespaceLicense.service.js +12 -0
- package/dist/components/d-license/index.d.ts +2 -0
- package/dist/components/d-license/index.js +6 -0
- package/dist/components/d-member/DNamespaceMember.service.d.ts +13 -0
- package/dist/components/d-member/DNamespaceMember.service.js +17 -0
- package/dist/components/{d-namespace/member → d-member}/DNamespaceMember.view.d.ts +4 -1
- package/dist/components/{d-namespace/member → d-member}/DNamespaceMember.view.js +16 -11
- package/dist/components/d-member/DNamespaceMemberCard.d.ts +10 -0
- package/dist/components/d-member/DNamespaceMemberCard.js +16 -0
- package/dist/components/d-member/DNamespaceMemberContent.d.ts +10 -0
- package/dist/components/d-member/DNamespaceMemberContent.js +224 -0
- package/dist/components/d-member/DNamespaceMemberList.d.ts +12 -0
- package/dist/components/d-member/DNamespaceMemberList.js +23 -0
- package/dist/components/d-member/index.d.ts +4 -0
- package/dist/components/d-member/index.js +10 -0
- package/dist/components/d-namespace/DNamespace.service.d.ts +1 -1
- package/dist/components/d-namespace/DNamespace.service.js +7 -6
- package/dist/components/d-namespace/index.d.ts +0 -10
- package/dist/components/d-namespace/index.js +4 -33
- package/dist/components/d-organization/DOrganization.service.d.ts +3 -3
- package/dist/components/d-organization/DOrganization.service.js +8 -7
- package/dist/components/d-organization/DOrganization.view.d.ts +4 -1
- package/dist/components/d-organization/DOrganization.view.js +21 -18
- package/dist/components/d-organization/DOrganizationCard.d.ts +4 -3
- package/dist/components/d-organization/DOrganizationCard.js +13 -60
- package/dist/components/d-organization/DOrganizationList.d.ts +10 -0
- package/dist/components/d-organization/DOrganizationList.js +23 -0
- package/dist/components/d-organization/DOrganizationMenu.js +5 -5
- package/dist/components/d-organization/DOrganizatonContent.d.ts +10 -0
- package/dist/components/d-organization/DOrganizatonContent.js +101 -0
- package/dist/components/d-organization/index.d.ts +1 -0
- package/dist/components/d-organization/index.js +30 -10
- package/dist/components/d-project/DNamespaceProject.service.d.ts +12 -0
- package/dist/components/d-project/DNamespaceProject.service.js +12 -0
- package/dist/components/{d-namespace/project → d-project}/DNamespaceProject.view.d.ts +4 -1
- package/dist/components/{d-namespace/project → d-project}/DNamespaceProject.view.js +13 -10
- package/dist/components/d-project/DNamespaceProjectCard.d.ts +9 -0
- package/dist/components/d-project/DNamespaceProjectCard.js +17 -0
- package/dist/components/d-project/DNamespaceProjectContent.d.ts +10 -0
- package/dist/components/d-project/DNamespaceProjectContent.js +71 -0
- package/dist/components/d-project/DNamespaceProjectList.d.ts +11 -0
- package/dist/components/d-project/DNamespaceProjectList.js +25 -0
- package/dist/components/d-project/DNamespaceProjectMenu.d.ts +13 -0
- package/dist/components/d-project/DNamespaceProjectMenu.js +57 -0
- package/dist/components/d-project/index.d.ts +5 -0
- package/dist/components/d-project/index.js +26 -0
- package/dist/components/d-resizable/DResizable.d.ts +4 -4
- package/dist/components/d-resizable/DResizable.js +26 -23
- package/dist/components/d-role/DNamespaceRole.service.d.ts +13 -0
- package/dist/components/d-role/DNamespaceRole.service.js +12 -0
- package/dist/components/{d-namespace/role → d-role}/DNamespaceRole.view.d.ts +4 -1
- package/dist/components/{d-namespace/role → d-role}/DNamespaceRole.view.js +8 -4
- package/dist/components/d-role/DNamespaceRoleCard.d.ts +11 -0
- package/dist/components/d-role/DNamespaceRoleCard.js +17 -0
- package/dist/components/d-role/DNamespaceRoleContent.d.ts +10 -0
- package/dist/components/d-role/DNamespaceRoleContent.js +162 -0
- package/dist/components/d-role/DNamespaceRoleList.d.ts +12 -0
- package/dist/components/d-role/DNamespaceRoleList.js +24 -0
- package/dist/components/d-role/DNamespaceRolePermissions.d.ts +5 -0
- package/dist/components/d-role/DNamespaceRolePermissions.js +123 -0
- package/dist/components/d-role/index.d.ts +4 -0
- package/dist/components/d-role/index.js +10 -0
- package/dist/components/d-runtime/DRuntime.service.d.ts +5 -2
- package/dist/components/d-runtime/DRuntime.service.js +2 -4
- package/dist/components/d-runtime/DRuntime.view.d.ts +4 -1
- package/dist/components/d-runtime/DRuntime.view.js +6 -3
- package/dist/components/d-runtime/DRuntimeCard.d.ts +9 -0
- package/dist/components/d-runtime/DRuntimeCard.js +18 -0
- package/dist/components/d-runtime/DRuntimeContent.d.ts +9 -0
- package/dist/components/d-runtime/DRuntimeContent.js +45 -0
- package/dist/components/d-runtime/DRuntimeList.d.ts +12 -0
- package/dist/components/d-runtime/DRuntimeList.js +28 -0
- package/dist/components/d-runtime/index.d.ts +2 -0
- package/dist/components/d-runtime/index.js +6 -2
- package/dist/components/d-user/DUser.service.d.ts +3 -4
- package/dist/components/d-user/DUser.service.js +9 -9
- package/dist/components/d-user/DUser.session.hook.d.ts +3 -0
- package/dist/components/d-user/DUser.session.hook.js +16 -0
- package/dist/components/d-user/DUser.view.d.ts +4 -1
- package/dist/components/d-user/DUser.view.js +13 -10
- package/dist/components/d-user/DUserCard.d.ts +8 -0
- package/dist/components/d-user/DUserCard.js +15 -0
- package/dist/components/d-user/DUserContent.d.ts +8 -0
- package/dist/components/d-user/DUserContent.js +84 -0
- package/dist/components/d-user/DUserInput.d.ts +7 -0
- package/dist/components/d-user/DUserInput.js +100 -0
- package/dist/components/d-user/DUserList.d.ts +9 -0
- package/dist/components/d-user/DUserList.js +22 -0
- package/dist/components/d-user/DUserMenu.js +20 -19
- package/dist/components/d-user/index.d.ts +4 -0
- package/dist/components/d-user/index.js +17 -8
- package/dist/components/dialog/Dialog.d.ts +2 -1
- package/dist/components/dialog/Dialog.js +69 -60
- package/dist/components/file-tabs/FileTabs.js +41 -40
- package/dist/components/file-tabs/FileTabs.service.d.ts +5 -1
- package/dist/components/file-tabs/FileTabs.service.js +74 -26
- package/dist/components/file-tabs/FileTabs.view.d.ts +1 -0
- package/dist/components/flex/Flex.js +2 -2
- package/dist/components/form/CheckboxInput.js +62 -53
- package/dist/components/form/EmailInput.js +11 -10
- package/dist/components/form/Input.d.ts +18 -5
- package/dist/components/form/Input.js +333 -139
- package/dist/components/form/Input.syntax.hook.d.ts +10 -0
- package/dist/components/form/Input.syntax.hook.js +14 -0
- package/dist/components/form/Input.utils.d.ts +10 -0
- package/dist/components/form/Input.utils.js +38 -0
- package/dist/components/form/InputContentEditable.hook.d.ts +40 -0
- package/dist/components/form/InputContentEditable.hook.js +471 -0
- package/dist/components/form/InputDescription.js +1 -1
- package/dist/components/form/InputLabel.js +1 -1
- package/dist/components/form/InputMessage.js +1 -1
- package/dist/components/form/InputSuggestion.d.ts +16 -8
- package/dist/components/form/InputSuggestion.js +189 -73
- package/dist/components/form/NumberInput.js +9 -9
- package/dist/components/form/PasswordInput.js +11 -10
- package/dist/components/form/PinInput.js +2 -2
- package/dist/components/form/RadioGroup.js +2 -2
- package/dist/components/form/RadioInput.js +2 -2
- package/dist/components/form/SwitchInput.js +7 -7
- package/dist/components/form/TextInput.js +12 -11
- package/dist/components/form/index.js +26 -27
- package/dist/components/form/useForm.d.ts +3 -1
- package/dist/components/form/useForm.js +53 -33
- package/dist/components/menu/Menu.d.ts +7 -3
- package/dist/components/menu/Menu.js +24 -24
- package/dist/components/quote/Quote.js +32 -36
- package/dist/components/row/Row.js +10 -9
- package/dist/components/scroll-area/ScrollArea.js +18 -17
- package/dist/components/segmented-control/SegmentedControl.d.ts +1 -1
- package/dist/components/segmented-control/SegmentedControl.js +19 -16
- package/dist/components/spacing/Spacing.d.ts +6 -0
- package/dist/components/spacing/Spacing.js +23 -0
- package/dist/components/tab/Tab.d.ts +11 -0
- package/dist/components/tab/Tab.js +40 -0
- package/dist/components/text/Text.js +2 -2
- package/dist/components/toast/Toast.d.ts +13 -0
- package/dist/components/toast/Toast.js +62 -0
- package/dist/components/tooltip/Tooltip.js +36 -35
- package/dist/index.d.ts +17 -0
- package/dist/index.js +264 -216
- package/dist/node_modules/@floating-ui/core/dist/floating-ui.core.js +527 -0
- package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +402 -0
- package/dist/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +208 -0
- package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +136 -0
- package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +130 -0
- package/dist/node_modules/@radix-ui/primitive/dist/index.js +9 -0
- package/dist/node_modules/@radix-ui/react-arrow/dist/index.js +24 -0
- package/dist/node_modules/@radix-ui/react-collection/dist/index.js +48 -0
- package/dist/node_modules/@radix-ui/react-compose-refs/dist/index.js +29 -0
- package/dist/node_modules/@radix-ui/react-context/dist/index.js +53 -0
- package/dist/node_modules/@radix-ui/react-context-menu/dist/index.js +222 -0
- package/dist/node_modules/@radix-ui/react-direction/dist/index.js +10 -0
- package/dist/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +127 -0
- package/dist/node_modules/@radix-ui/react-focus-guards/dist/index.js +17 -0
- package/dist/node_modules/@radix-ui/react-focus-scope/dist/index.js +136 -0
- package/dist/node_modules/@radix-ui/react-id/dist/index.js +13 -0
- package/dist/node_modules/@radix-ui/react-menu/dist/index.js +636 -0
- package/dist/node_modules/@radix-ui/react-popper/dist/index.js +219 -0
- package/dist/node_modules/@radix-ui/react-portal/dist/index.js +15 -0
- package/dist/node_modules/@radix-ui/react-presence/dist/index.js +70 -0
- package/dist/node_modules/@radix-ui/react-primitive/dist/index.js +36 -0
- package/dist/node_modules/@radix-ui/react-roving-focus/dist/index.js +183 -0
- package/dist/node_modules/@radix-ui/react-slot/dist/index.js +49 -0
- package/dist/node_modules/@radix-ui/react-use-callback-ref/dist/index.js +10 -0
- package/dist/node_modules/@radix-ui/react-use-controllable-state/dist/index.js +52 -0
- package/dist/node_modules/@radix-ui/react-use-escape-keydown/dist/index.js +14 -0
- package/dist/node_modules/@radix-ui/react-use-layout-effect/dist/index.js +6 -0
- package/dist/node_modules/@radix-ui/react-use-size/dist/index.js +27 -0
- package/dist/node_modules/aria-hidden/dist/es2015/index.js +52 -0
- package/dist/node_modules/fast-deep-equal/index.js +31 -0
- package/dist/node_modules/get-nonce/dist/es2015/index.js +7 -0
- package/dist/node_modules/object-assign/index.js +49 -0
- package/dist/node_modules/prop-types/checkPropTypes.js +54 -0
- package/dist/node_modules/prop-types/factoryWithThrowingShims.js +52 -0
- package/dist/node_modules/prop-types/factoryWithTypeCheckers.js +329 -0
- package/dist/node_modules/prop-types/index.js +17 -0
- package/dist/node_modules/prop-types/lib/ReactPropTypesSecret.js +10 -0
- package/dist/node_modules/prop-types/lib/has.js +7 -0
- package/dist/node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js +87 -0
- package/dist/node_modules/prop-types/node_modules/react-is/cjs/react-is.production.min.js +70 -0
- package/dist/node_modules/prop-types/node_modules/react-is/index.js +10 -0
- package/dist/node_modules/react/cjs/react-compiler-runtime.development.js +21 -0
- package/dist/node_modules/react/cjs/react-compiler-runtime.production.js +14 -0
- package/dist/node_modules/react/compiler-runtime.js +10 -0
- package/dist/node_modules/react-contenteditable/lib/react-contenteditable.js +132 -0
- package/dist/node_modules/react-dom/cjs/react-dom-server-legacy.browser.development.js +6235 -0
- package/dist/node_modules/react-dom/cjs/react-dom-server-legacy.browser.production.js +4096 -0
- package/dist/node_modules/react-dom/cjs/react-dom-server.browser.development.js +6753 -0
- package/dist/node_modules/react-dom/cjs/react-dom-server.browser.production.js +4645 -0
- package/dist/node_modules/react-dom/server.browser.js +15 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/Combination.js +11 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/SideEffect.js +112 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/UI.js +31 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.js +16 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/handleScroll.js +68 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/medium.js +5 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/sidecar.js +7 -0
- package/dist/node_modules/react-remove-scroll-bar/dist/es2015/component.js +71 -0
- package/dist/node_modules/react-remove-scroll-bar/dist/es2015/constants.js +7 -0
- package/dist/node_modules/react-remove-scroll-bar/dist/es2015/utils.js +25 -0
- package/dist/node_modules/react-style-singleton/dist/es2015/component.js +11 -0
- package/dist/node_modules/react-style-singleton/dist/es2015/hook.js +15 -0
- package/dist/node_modules/react-style-singleton/dist/es2015/singleton.js +30 -0
- package/dist/node_modules/tslib/tslib.es6.js +27 -0
- package/dist/node_modules/use-callback-ref/dist/es2015/assignRef.js +6 -0
- package/dist/node_modules/use-callback-ref/dist/es2015/useMergeRef.js +26 -0
- package/dist/node_modules/use-callback-ref/dist/es2015/useRef.js +25 -0
- package/dist/node_modules/use-sidecar/dist/es2015/exports.js +18 -0
- package/dist/node_modules/use-sidecar/dist/es2015/medium.js +67 -0
- package/dist/utils/arrayService.d.ts +2 -2
- package/dist/utils/contextStore.js +1 -1
- package/dist/utils/generics.d.ts +7 -6
- package/dist/utils/generics.js +136 -124
- package/dist/utils/index.js +22 -21
- package/dist/utils/inspection.d.ts +4 -2
- package/dist/utils/inspection.js +27 -2
- package/dist/utils/objectStore.js +15 -15
- package/dist/utils/reactiveArrayService.d.ts +3 -3
- package/dist/utils/reactiveArrayService.js +53 -43
- package/dist/utils/types.d.ts +2 -2
- package/package.json +38 -33
- package/dist/DFlowDataType.service-Dz8pQUeO.js +0 -793
- package/dist/assets/Avatar.css +0 -1
- package/dist/assets/Badge.css +0 -1
- package/dist/assets/Button.css +0 -1
- package/dist/assets/ButtonGroup.css +0 -1
- package/dist/assets/Card.css +0 -1
- package/dist/assets/Command.css +0 -1
- package/dist/assets/DFlowFolder.css +0 -1
- package/dist/assets/DFlowFunctionDefaultCard.css +0 -1
- package/dist/assets/DFlowInputDataType.css +0 -1
- package/dist/assets/DFlowMiniMap.css +0 -1
- package/dist/assets/DFlowSuggestionSearchInput.css +0 -1
- package/dist/assets/DFlowValidation.css +0 -1
- package/dist/assets/DLayout.css +0 -1
- package/dist/assets/DResizable.css +0 -1
- package/dist/assets/Dialog.css +0 -1
- package/dist/assets/FileTabs.css +0 -1
- package/dist/assets/Input.css +0 -1
- package/dist/assets/Menu.css +0 -1
- package/dist/assets/SegmentedControl.css +0 -1
- package/dist/assets/Text.css +0 -1
- package/dist/assets/Tooltip.css +0 -1
- package/dist/compiler-runtime-BNHg76kC.js +0 -36
- package/dist/components/d-flow/DFlow.view.d.ts +0 -109
- package/dist/components/d-flow/DFlow.view.js +0 -213
- package/dist/components/d-flow/control/DFlowControl.d.ts +0 -2
- package/dist/components/d-flow/control/DFlowControl.js +0 -77
- package/dist/components/d-flow/control/index.d.ts +0 -1
- package/dist/components/d-flow/control/index.js +0 -4
- package/dist/components/d-flow/data-type/DFlowDataType.service.d.ts +0 -10
- package/dist/components/d-flow/data-type/DFlowDataType.service.js +0 -7
- package/dist/components/d-flow/data-type/DFlowDataType.validation.type.d.ts +0 -2
- package/dist/components/d-flow/data-type/DFlowDataType.validation.type.js +0 -18
- package/dist/components/d-flow/data-type/DFlowDataType.validation.value.d.ts +0 -4
- package/dist/components/d-flow/data-type/DFlowDataType.validation.value.js +0 -6
- package/dist/components/d-flow/data-type/DFlowDataType.view.js +0 -65
- package/dist/components/d-flow/data-type/rules/DFlowDataTypeContainsKeyRule.js +0 -6
- package/dist/components/d-flow/data-type/rules/DFlowDataTypeContainsTypeRule.js +0 -6
- package/dist/components/d-flow/data-type/rules/DFlowDataTypeReturnTypeRule.js +0 -7
- package/dist/components/d-flow/data-type/rules/DFlowDataTypeRules.js +0 -8
- package/dist/components/d-flow/edge/DFlowEdge.js +0 -48
- package/dist/components/d-flow/folder/DFlowFolder.d.ts +0 -19
- package/dist/components/d-flow/folder/DFlowFolder.js +0 -118
- package/dist/components/d-flow/folder/index.d.ts +0 -1
- package/dist/components/d-flow/folder/index.js +0 -6
- package/dist/components/d-flow/function/DFlowFunction.input.hook.js +0 -9
- package/dist/components/d-flow/function/DFlowFunction.return.hook.js +0 -11
- package/dist/components/d-flow/function/DFlowFunction.service.d.ts +0 -6
- package/dist/components/d-flow/function/DFlowFunction.service.js +0 -9
- package/dist/components/d-flow/function/DFlowFunction.vaildation.hook.d.ts +0 -10
- package/dist/components/d-flow/function/DFlowFunction.vaildation.hook.js +0 -75
- package/dist/components/d-flow/function/DFlowFunction.view.js +0 -117
- package/dist/components/d-flow/function/DFlowFunctionDefaultCard.js +0 -158
- package/dist/components/d-flow/function/DFlowFunctionGroupCard.d.ts +0 -5
- package/dist/components/d-flow/function/DFlowFunctionGroupCard.js +0 -55
- package/dist/components/d-flow/function/DFlowFunctionSuggestionCard.js +0 -26
- package/dist/components/d-flow/function/DFlowFunctionTriggerCard.js +0 -97
- package/dist/components/d-flow/input/DFlowInputDataType.js +0 -422
- package/dist/components/d-flow/minimap/DFlowMiniMap.js +0 -21
- package/dist/components/d-flow/minimap/index.d.ts +0 -1
- package/dist/components/d-flow/minimap/index.js +0 -4
- package/dist/components/d-flow/suggestion/DFlowSuggestion.hook.d.ts +0 -33
- package/dist/components/d-flow/suggestion/DFlowSuggestion.hook.js +0 -151
- package/dist/components/d-flow/suggestion/DFlowSuggestion.service.d.ts +0 -5
- package/dist/components/d-flow/suggestion/DFlowSuggestion.service.js +0 -18
- package/dist/components/d-flow/suggestion/DFlowSuggestion.view.d.ts +0 -21
- package/dist/components/d-flow/suggestion/DFlowSuggestion.view.js +0 -25
- package/dist/components/d-flow/suggestion/DFlowSuggestionMenu.js +0 -67
- package/dist/components/d-flow/suggestion/DFlowSuggestionSearchInput.js +0 -21
- package/dist/components/d-flow/suggestion/index.d.ts +0 -2
- package/dist/components/d-flow/suggestion/index.js +0 -7
- package/dist/components/d-flow/tab/DFlowTabDefault.d.ts +0 -11
- package/dist/components/d-flow/tab/DFlowTabDefault.js +0 -97
- package/dist/components/d-flow/tab/DFlowTabTrigger.js +0 -51
- package/dist/components/d-flow/tab/DFlowTabs.d.ts +0 -2
- package/dist/components/d-flow/tab/DFlowTabs.js +0 -105
- package/dist/components/d-flow/type/DFlowType.service.d.ts +0 -6
- package/dist/components/d-flow/type/DFlowType.service.js +0 -9
- package/dist/components/d-flow/type/DFlowType.view.js +0 -69
- package/dist/components/d-flow/validation/DFlowValidation.hook.d.ts +0 -3
- package/dist/components/d-flow/validation/DFlowValidation.hook.js +0 -10
- package/dist/components/d-flow/validation/DFlowValidation.js +0 -59
- package/dist/components/d-namespace/license/DNamespaceLicense.service.d.ts +0 -8
- package/dist/components/d-namespace/license/DNamespaceLicense.service.js +0 -11
- package/dist/components/d-namespace/member/DNamespaceMember.service.d.ts +0 -9
- package/dist/components/d-namespace/member/DNamespaceMember.service.js +0 -11
- package/dist/components/d-namespace/project/DNamespaceProject.service.d.ts +0 -9
- package/dist/components/d-namespace/project/DNamespaceProject.service.js +0 -11
- package/dist/components/d-namespace/project/DNamespaceProjectCard.d.ts +0 -9
- package/dist/components/d-namespace/project/DNamespaceProjectCard.js +0 -57
- package/dist/components/d-namespace/project/DNamespaceProjectMenu.d.ts +0 -9
- package/dist/components/d-namespace/project/DNamespaceProjectMenu.js +0 -18
- package/dist/components/d-namespace/role/DNamespaceRole.service.d.ts +0 -10
- package/dist/components/d-namespace/role/DNamespaceRole.service.js +0 -11
- /package/dist/assets/{Col.css → components/col/Col.style.css} +0 -0
- /package/dist/assets/{Container.css → components/container/Container.style.css} +0 -0
- /package/dist/assets/{DFullScreen.css → components/d-fullscreen/DFullScreen.style.css} +0 -0
- /package/dist/assets/{Flex.css → components/flex/Flex.style.css} +0 -0
- /package/dist/assets/{Quote.css → components/quote/Quote.style.css} +0 -0
- /package/dist/assets/{Row.css → components/row/Row.style.css} +0 -0
- /package/dist/components/{d-flow/data-type → d-flow-data-type}/index.d.ts +0 -0
- /package/dist/components/{d-flow/data-type → d-flow-data-type}/rules/DFlowDataTypeItemOfCollectionRule.d.ts +0 -0
- /package/dist/components/{d-flow/data-type → d-flow-data-type}/rules/DFlowDataTypeItemOfCollectionRule.js +0 -0
- /package/dist/components/{d-flow/data-type → d-flow-data-type}/rules/DFlowDataTypeNumberRangeRule.d.ts +0 -0
- /package/dist/components/{d-flow/data-type → d-flow-data-type}/rules/DFlowDataTypeNumberRangeRule.js +0 -0
- /package/dist/components/{d-flow/data-type → d-flow-data-type}/rules/DFlowDataTypeRegexRule.d.ts +0 -0
- /package/dist/components/{d-flow/data-type → d-flow-data-type}/rules/DFlowDataTypeRegexRule.js +0 -0
- /package/dist/components/{d-flow/data-type → d-flow-data-type}/rules/DFlowDataTypeRule.js +0 -0
- /package/dist/components/{d-flow/data-type → d-flow-data-type}/rules/DFlowDataTypeRules.d.ts +0 -0
- /package/dist/components/{d-flow/function → d-flow-function}/index.d.ts +0 -0
- /package/dist/components/{d-flow/function → d-flow-function}/index.js +0 -0
- /package/dist/components/{d-flow/minimap → d-flow-panel}/DFlowMiniMap.d.ts +0 -0
- /package/dist/components/{d-flow/suggestion → d-flow-suggestion}/DFlowSuggestionMenu.d.ts +0 -0
- /package/dist/components/{d-flow/suggestion → d-flow-suggestion}/DFlowSuggestionMenuFooter.d.ts +0 -0
- /package/dist/components/{d-flow/type → d-flow-type}/index.d.ts +0 -0
- /package/dist/components/{d-flow/type → d-flow-type}/index.js +0 -0
- /package/dist/components/{d-flow/validation → d-flow-validation}/DFlowValidation.d.ts +0 -0
- /package/dist/components/{d-flow/validation → d-flow-validation}/index.d.ts +0 -0
- /package/dist/components/{d-namespace/license → d-license}/DNamespaceLicense.view.d.ts +0 -0
- /package/dist/components/{d-namespace/license → d-license}/DNamespaceLicense.view.js +0 -0
package/dist/assets/Avatar.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.avatar{aspect-ratio:1/1;padding:.35rem;display:flex;width:38px;align-items:center;justify-content:center;overflow:hidden}.avatar{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem}.avatar--image{padding:0}
|
package/dist/assets/Badge.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.badge{padding:.175rem .7rem;display:inline-flex;font-size:.7rem;width:fit-content;align-items:center;gap:.35rem}.badge{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5;border-radius:1rem}.badge--primary{border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;box-shadow:none}.badge--secondary{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;box-shadow:none}.badge--success{border:none;background:#071314;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;box-shadow:none}.badge--warning{border:none;background:#1c1313;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;box-shadow:none}.badge--error{border:none;background:#180016;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;box-shadow:none}.badge--info{border:none;background:#0e1a24;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;box-shadow:none}
|
package/dist/assets/Button.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.button{padding:.35rem .7rem;gap:.5rem;cursor:pointer;height:fit-content;display:flex;align-items:center;width:fit-content;border-radius:50rem;justify-content:center;font-size:.8rem}.button:disabled,.button[data-disabled],.button[aria-disabled=true],.button--disabled{cursor:not-allowed;opacity:25%;pointer-events:unset}.button--primary{border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.button--primary:hover{box-shadow:inset 0 0 0 1px #ffffff40}.button--primary:active,.button--primary:focus{box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.button--primary.button--outlined{background:transparent}.button--primary.button--none{background:transparent;box-shadow:none}.button--secondary{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.button--secondary:hover{box-shadow:inset 0 0 0 1px #ffffff40}.button--secondary:active,.button--secondary:focus{box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.button--secondary.button--outlined{background:transparent}.button--secondary.button--none{background:transparent;box-shadow:none}.button--success{border:none;background:#071314;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.button--success:hover{box-shadow:inset 0 0 0 1px #ffffff40}.button--success:active,.button--success:focus{box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.button--success.button--outlined{background:transparent}.button--success.button--none{background:transparent;box-shadow:none}.button--warning{border:none;background:#1c1313;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.button--warning:hover{box-shadow:inset 0 0 0 1px #ffffff40}.button--warning:active,.button--warning:focus{box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.button--warning.button--outlined{background:transparent}.button--warning.button--none{background:transparent;box-shadow:none}.button--error{border:none;background:#180016;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.button--error:hover{box-shadow:inset 0 0 0 1px #ffffff40}.button--error:active,.button--error:focus{box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.button--error.button--outlined{background:transparent}.button--error.button--none{background:transparent;box-shadow:none}.button--info{border:none;background:#0e1a24;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.button--info:hover{box-shadow:inset 0 0 0 1px #ffffff40}.button--info:active,.button--info:focus{box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.button--info.button--outlined{background:transparent}.button--info.button--none{background:transparent;box-shadow:none}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.button-group{border:none;width:fit-content;background:transparent;position:relative;display:flex}.button-group *{margin-bottom:0}.button-group .button{margin-bottom:0;border-radius:0;display:inline-flex;height:100%}.button-group>div,.button-group .dropdown__trigger,.button-group .dropdown{display:inline-flex;margin-bottom:0!important}.button-group__first .button{border-top-left-radius:1rem!important;border-bottom-left-radius:1rem!important}.button-group__last .button{border-top-right-radius:1rem!important;border-bottom-right-radius:1rem!important}
|
package/dist/assets/Card.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.card{display:block;padding:.7rem;position:relative;font-size:.8rem}.card{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.card>.card__section>img{border-radius:.5rem}.card>.card__section:first-child{margin-top:0}.card>.card__section--border:first-child{padding-top:0;border-top:none}.card>.card__section:not(:has(~.card__section)){margin-bottom:0}.card>.card__section--border:not(:has(~.card__section)){padding-bottom:0;border-bottom:none}.card *.card__section>img{border-radius:.5rem}.card__section{margin-bottom:.7rem;margin-top:.7rem;position:relative}.card__section--border{margin-right:-.7rem;margin-left:-.7rem;padding:.7rem;border-top:1px solid rgba(255,255,255,.1);border-bottom:1px solid rgba(255,255,255,.1)}.card__section--border+.card__section--border{border-top:none;margin-top:-.5em}.card--primary{border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem}.card--primary.card--none{background:transparent;border-color:transparent}.card--primary.card--filled{border-color:transparent}.card--primary.card--outlined{background:transparent}.card--outline-primary{outline-offset:.35rem;margin:.35rem;outline:rgba(3,0,20,.25) solid 1px}.card--border-primary{box-shadow:inset 0 0 0 1px #03001440}.card--secondary{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem}.card--secondary.card--none{background:transparent;border-color:transparent}.card--secondary.card--filled{border-color:transparent}.card--secondary.card--outlined{background:transparent}.card--outline-secondary{outline-offset:.35rem;margin:.35rem;outline:rgba(255,255,255,.1) solid 1px}.card--border-secondary{box-shadow:inset 0 0 0 1px #ffffff1a}.card--success{border:none;background:#071314;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem}.card--success.card--none{background:transparent;border-color:transparent}.card--success.card--filled{border-color:transparent}.card--success.card--outlined{background:transparent}.card--outline-success{outline-offset:.35rem;margin:.35rem;outline:rgba(41,191,18,.25) solid 1px}.card--border-success{box-shadow:inset 0 0 0 1px #29bf1240}.card--warning{border:none;background:#1c1313;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem}.card--warning.card--none{background:transparent;border-color:transparent}.card--warning.card--filled{border-color:transparent}.card--warning.card--outlined{background:transparent}.card--outline-warning{outline-offset:.35rem;margin:.35rem;outline:rgba(255,190,11,.25) solid 1px}.card--border-warning{box-shadow:inset 0 0 0 1px #ffbe0b40}.card--error{border:none;background:#180016;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem}.card--error.card--none{background:transparent;border-color:transparent}.card--error.card--filled{border-color:transparent}.card--error.card--outlined{background:transparent}.card--outline-error{outline-offset:.35rem;margin:.35rem;outline:rgba(217,4,41,.25) solid 1px}.card--border-error{box-shadow:inset 0 0 0 1px #d9042940}.card--info{border:none;background:#0e1a24;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem}.card--info.card--none{background:transparent;border-color:transparent}.card--info.card--filled{border-color:transparent}.card--info.card--outlined{background:transparent}.card--outline-info{outline-offset:.35rem;margin:.35rem;outline:rgba(112,255,178,.25) solid 1px}.card--border-info{box-shadow:inset 0 0 0 1px #70ffb240}.card--border--dashed{border-style:dashed}
|
package/dist/assets/Command.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.command{z-index:100;display:flex;height:100%;width:100%;flex-direction:column;overflow:hidden;background:#030014;padding:.7rem}.command{border:none;background:#030014;color:#030014bf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #c0bfc41a;border-radius:1rem}.command__dialog{padding:0;border:none}.command__list:focus{outline:none}.command__list{max-height:300px;overflow-y:auto;overflow-x:hidden}.command__input.input:focus,.command .input.input:hover:focus,.command .input.input:active:focus,.command .input.input:focus:focus,.command .input.input:focus-within:focus,.command .input.input:not(:focus):focus{outline:none}.command__input.input,.command .input.input:hover,.command .input.input:active,.command .input.input:focus,.command .input.input:focus-within,.command .input.input:not(:focus){width:100%;border:none!important;outline:none!important;background:transparent;box-shadow:none!important;display:flex;height:2rem;color:#ffffffbf;font-size:.8rem;border-radius:.65rem}.command__input.input::placeholder,.command .input.input:hover::placeholder,.command .input.input:active::placeholder,.command .input.input:focus::placeholder,.command .input.input:focus-within::placeholder,.command .input.input:not(:focus)::placeholder{color:#ffffff40}.command__input.input .input__right,.command .input.input:hover .input__right,.command .input.input:active .input__right,.command .input.input:focus .input__right,.command .input.input:focus-within .input__right,.command .input.input:not(:focus) .input__right{padding-right:0}.command__empty{padding:1rem 0 1.3rem;text-align:center;font-size:.8rem;color:#ffffff80}.command__empty{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.command [cmdk-group-heading]{padding:.35rem .7rem}.command__group{overflow:hidden;text-transform:uppercase;font-size:.7rem;padding:.35rem 0 0;color:#ffffff80}.command__group{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.command__item{position:relative;display:flex;cursor:pointer;-webkit-user-select:none;user-select:none;align-items:center;font-size:.8rem;outline:none;color:#ffffffbf;border-radius:.65rem;padding:.35rem .35rem .35rem .8rem;gap:.7rem;text-transform:none}.command__item[data-disabled=true]{pointer-events:none;color:#ffffff40}.command__item[data-selected=true]{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;box-shadow:none;width:100%}.command__item svg{pointer-events:none;width:1rem;height:1rem;flex-shrink:0}.command__separator{height:1px;margin:.35rem 0;background:#1c1a2c}.command__shortcut{margin-left:auto;font-size:.7rem;letter-spacing:.1rem;padding:0 .35rem;border-radius:.375rem!important;color:#ffffff80;background:#030014}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.d-folder{padding:.35rem .7rem;display:flex;white-space:nowrap;flex-wrap:nowrap;gap:.35rem;cursor:pointer;font-size:.8rem;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.d-folder{border-radius:1rem;border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.d-folder:hover{box-shadow:inset 0 0 0 1px #ffffff40}.d-folder{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5;box-shadow:none;background:#030014}.d-folder__icon,.d-folder__status,.d-folder__item-icon{color:#70ffb2;display:flex;align-items:center;justify-content:center}.d-folder__status,.d-folder__item-icon{color:#fff}.d-folder__content{margin-left:.7rem;position:relative;padding-left:calc(5px + .35rem)}.d-folder__content:before{height:100%;width:1px;background:#1c1a2c;position:absolute;content:"";left:5px}.d-folder__item{padding:.35rem .7rem;display:flex;white-space:nowrap;flex-wrap:nowrap;gap:.35rem;align-items:center;cursor:pointer;font-size:.8rem;position:relative}.d-folder__item{border-radius:1rem;border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.d-folder__item:hover{box-shadow:inset 0 0 0 1px #ffffff40}.d-folder__item:active,.d-folder__item:focus{box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.d-folder__item{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5;box-shadow:none}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.d-flow-viewport-default-card__handle{border:none!important;padding:1px;z-index:-1;opacity:0}.d-flow-viewport-default-card__inspection{top:0;transform:translateY(-50%);padding:.35rem}.d-flow-viewport-default-card__inspection{border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem;position:absolute}.d-flow-viewport-default-card--active{box-shadow:inset 0 0 0 1px #70ffb240,0 0 0 3px #70ffb240}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.d-flow-viewport-data-type-input{padding:1rem;box-sizing:border-box;position:relative}.d-flow-viewport-data-type-input{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5;border-radius:1rem}.d-flow-viewport-data-type-input__rule{margin-bottom:1rem;display:flex;position:relative;flex-direction:column;gap:1.2rem}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.d-flow-viewport-mini-map{border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem;margin:0;width:100%}.d-flow-viewport-mini-map>svg{border-radius:1rem}.d-flow-viewport-mini-map * .react-flow__minimap-mask{fill:#ffffff1a}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.d-flow-suggestion-search-input{box-shadow:none!important;background:none!important;margin-left:-.35rem;margin-right:-.35rem;padding-left:.35rem;padding-right:.35rem;border-radius:0!important}.d-flow-suggestion-search-input>input{padding-top:0!important;padding-bottom:0!important}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.d-flow-viewport-validations{padding:.35rem}.d-flow-viewport-validations{border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem}
|
package/dist/assets/DLayout.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.d-layout{position:relative;width:100%;height:100%;overflow:hidden}.d-layout .flex{width:100%;height:100%;gap:.7rem}.d-layout__content{width:100%}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.d-resizable__panel{color:#fff;position:relative;overflow:hidden;z-index:0}.d-resizable__panel{border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem}.d-resizable__panel:has(.d-resizable__panel){background:#030014}.d-resizable__handle{position:relative;display:flex;align-items:center;justify-content:center}.d-resizable__handle[data-panel-group-direction=horizontal]{width:1rem;height:100%}.d-resizable__handle[data-panel-group-direction=vertical]{height:1rem;width:100%}.d-resizable__handle-bar{z-index:1;position:relative;display:block;padding:.25rem}.d-resizable__handle-bar{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem}.d-resizable[data-panel-group-direction=horizontal] * .d-resizable__handle-bar{min-height:3rem;height:15%}.d-resizable[data-panel-group-direction=vertical] * .d-resizable__handle-bar{min-width:3rem;min-height:auto;height:auto;width:15%}
|
package/dist/assets/Dialog.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.dialog{border:none;background:#030014;color:#030014bf;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem;backdrop-filter:none;-webkit-backdrop-filter:none;position:relative;padding:1.3rem;margin:auto;overflow:auto;inset:auto;height:fit-content;max-height:none}.dialog__overlay{position:fixed;inset:0;z-index:50;background:#00000080}.dialog__content{position:fixed;top:50%;left:50%;z-index:50;display:grid;width:100%;max-width:calc(100% - 2rem);gap:1rem;transform:translate(-50%,-50%);border:1px solid rgba(255,255,255,.1);padding:1rem;background:#030014;color:#fff;border-radius:1rem}@media(min-width:768px){.dialog__content{width:420px}}.dialog__title{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5;font-weight:600;font-size:1.2rem;color:#fff;margin:0}.dialog__description{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5;font-size:.8rem;color:#fff;margin:0}.dialog__header{display:flex;flex-direction:column;gap:.5rem;text-align:center}@media(min-width:640px){.dialog__header{text-align:left}}.dialog__footer{display:flex;flex-direction:column-reverse;gap:.5rem}@media(min-width:640px){.dialog__footer{flex-direction:row;justify-content:flex-end}}.dialog__close{position:absolute;top:1rem;right:1rem;border-radius:.125rem;border:none;opacity:.7;transition:opacity .2s ease;background:none;color:#fff}.dialog__close:hover{opacity:1}.dialog__close:focus{outline:none}.dialog__close:disabled{pointer-events:none}.dialog__close svg{pointer-events:none;flex-shrink:0}.dialog__close svg:not([class*=size-]){width:1rem;height:1rem}
|
package/dist/assets/FileTabs.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.file-tabs{position:relative;width:100%;height:100%}.file-tabs__list{box-sizing:border-box;display:flex;flex-wrap:nowrap;align-items:center;justify-content:space-between;position:relative;gap:.7rem;padding:.7rem}.file-tabs__list-content{display:flex;overflow-x:scroll;flex-wrap:nowrap;gap:.35rem;-ms-overflow-style:none;scrollbar-width:none}.file-tabs__list-content::-webkit-scrollbar{display:none}.file-tabs__list-controls{display:flex;flex-wrap:nowrap;gap:.35rem}.file-tabs__trigger{padding:.35rem .7rem;display:flex;gap:.7rem;align-items:center;text-wrap:nowrap;margin-bottom:1px;cursor:pointer;font-size:.8rem}.file-tabs__trigger{border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.file-tabs__trigger:hover{box-shadow:inset 0 0 0 1px #c0bfc440}.file-tabs__trigger{border-radius:1rem;font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5;background:transparent;box-shadow:none}.file-tabs__trigger[data-state=active]{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.file-tabs__trigger[data-state=active] .file-tabs__trigger-icon,.file-tabs__trigger:hover .file-tabs__trigger-icon,.file-tabs__trigger:active .file-tabs__trigger-icon{opacity:1}.file-tabs__trigger-icon{display:flex;align-items:center;justify-content:center;padding:.1rem;opacity:0;cursor:pointer;font-size:unset}.file-tabs__trigger-icon:hover{box-shadow:inset 0 0 0 1px #ffffff40}.file-tabs__trigger-icon{border-radius:1rem}.file-tabs__content{padding:1.4rem;position:relative}
|
package/dist/assets/Input.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.input{display:flex;z-index:1;align-items:stretch;box-sizing:border-box}.input{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.input:hover{box-shadow:inset 0 0 0 1px #ffffff40}.input:active,.input:focus{box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.input{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5;border-radius:1rem}.input:has(.input__control:focus){box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.input--not-valid{border:none;background:#180016;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #f6c0ca1a}.input__syntax{position:absolute;z-index:-1;overflow:hidden;font-size:.8rem;color:#ffffff80;white-space:nowrap;padding:.7rem;box-sizing:border-box;top:0;left:0;width:100%;height:100%}.input__left,.input__right{display:flex;align-items:stretch;margin:.175rem;gap:.7rem}.input__left>button,.input__right>button{height:100%;padding-left:0;padding-right:0}.input__left--action,.input__right--action{padding:0}.input__left--placeholder,.input__right--placeholder{border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5;border-radius:.825rem;padding:.7rem}.input__left{padding-left:.7rem}.input__left--icon{align-items:center}.input__right{padding-right:.7rem}.input__right--icon{align-items:center}.input__control{background:none;border:none;outline:none;padding:.7rem;flex:1;width:100%;box-shadow:none;font-size:.8rem;box-sizing:border-box;color:#ffffff80}.input__control{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.input__control--syntax{color:transparent}.input__label{text-transform:uppercase;color:#ffffff80;font-size:.7rem;display:block}.input__label{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.input__description{color:#ffffff80;font-size:.8rem;margin:.35rem 0 .7rem;display:block}.input__description{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.input__message{padding:.7rem;z-index:0;display:flex;align-items:center;font-size:.7rem;gap:.35rem;margin-top:.7rem}.input__message{border:none;background:#180016;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #f6c0ca1a;border-radius:1rem;font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.input__message>svg{width:.8rem;height:.8rem}.pin-input{display:flex;justify-content:space-between;gap:.7rem;position:relative;background:transparent}.pin-input__field{flex:1;width:100%;aspect-ratio:1/1;text-align:center}.number-input::-webkit-outer-spin-button,.number-input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.number-input[type=number]{-moz-appearance:textfield}.radio-input{background:transparent!important;box-shadow:none!important;display:flex;align-items:center;box-sizing:border-box;gap:.35rem;position:relative}.radio-input__button{top:-1px;width:18px;height:18px;padding:.35rem}.radio-input__button{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.radio-input__button:active,.radio-input__button:focus{box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.radio-input__button{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.radio-input__button:disabled,.radio-input__button[data-disabled],.radio-input__button[aria-disabled=true],.radio-input__button--disabled{cursor:not-allowed;opacity:25%;pointer-events:unset}.radio-input__button{border-radius:1rem}.radio-input__button[data-state=checked]{box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.radio-input__indicator{height:100%;position:relative;display:block;aspect-ratio:1/1}.radio-input__indicator[data-state=checked]{background-color:#70ffb2}.radio-input__indicator[data-state=checked]{border-radius:1rem}.radio-button{padding:0;display:inline-flex}.checkbox-input{background:transparent!important;box-shadow:none!important;align-items:center;box-sizing:border-box;gap:.35rem;padding:.35rem 0}.checkbox-input__button{aspect-ratio:1/1;width:17px;height:17px;display:flex;align-items:center;justify-content:center}.checkbox-input__button{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.checkbox-input__button:active,.checkbox-input__button:focus{box-shadow:inset 0 0 0 1px #ffffff0d,inset 0 0 3rem #ffffff1a;outline:none}.checkbox-input__button{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a}.checkbox-input__button:disabled,.checkbox-input__button[data-disabled],.checkbox-input__button[aria-disabled=true],.checkbox-input__button--disabled{cursor:not-allowed;opacity:25%;pointer-events:unset}.checkbox-input__button{border-radius:1rem}.checkbox-input__indicator{position:relative;display:flex;align-items:center;justify-content:center;top:1px}.switch-input{background:transparent!important;box-shadow:none!important}.switch-input .input__control{position:relative;box-sizing:border-box;padding:0;width:.9rem;height:.9rem;appearance:none;outline:none;cursor:pointer;background-color:transparent;border-radius:50%}.switch-input .input__control:checked:after{-webkit-transform:translateX(22px);-ms-transform:translateX(22px);transform:translate(22px);-webkit-transition:.4s;transition:.4s}.switch-input .input__control:checked:before{border:none;background:#0e1a24;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;position:absolute;width:2.6rem;height:1.25rem}.switch-input .input__control:after{width:.9rem;height:.9rem;background-color:#fff;border-radius:50%;position:absolute;content:"";-webkit-transition:.4s;transition:.4s}.switch-input .input__control:before{content:"";z-index:-1;-webkit-transition:.4s;transition:.4s;top:-.175rem;left:-.175rem}.switch-input .input__control:before{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:1rem;position:absolute;width:2.6rem;height:1.25rem}
|
package/dist/assets/Menu.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.menu{z-index:999}.menu__content,.menu__sub-content{padding:.35rem;position:relative;box-sizing:border-box}.menu__content,.menu__sub-content{border:none;background:#030014;color:#030014bf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #c0bfc41a;border-radius:1rem}.menu__label{text-transform:uppercase;font-size:.7rem;display:flex;gap:.35rem;align-items:center;padding:.35rem .7rem;color:#ffffff80}.menu__label{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.menu__item,.menu__sub-trigger{border-radius:.65rem;padding:.35rem .7rem;gap:.7rem;cursor:pointer;width:100%;display:flex;align-items:center;font-size:.8rem}.menu__item,.menu__sub-trigger{border:none;background:#030014;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #c0bfc41a}.menu__item:focus,.menu__sub-trigger:focus{outline:none}.menu__item,.menu__sub-trigger{font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5}.menu__item:disabled,.menu__item[data-disabled],.menu__item[aria-disabled=true],.menu__item--disabled,.menu__sub-trigger:disabled,.menu__sub-trigger[data-disabled],.menu__sub-trigger[aria-disabled=true],.menu__sub-trigger--disabled{cursor:not-allowed;opacity:25%;pointer-events:unset}.menu__item,.menu__sub-trigger{box-shadow:none}.menu__item:focus,.menu__sub-trigger:focus{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;box-shadow:none;width:100%}.menu__separator{border:none;margin:.35rem 0;color:#ffffff1a;height:1px;background-color:#ffffff1a}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.segmented-control{padding:.35rem;gap:.35rem;display:flex;flex-wrap:nowrap}.segmented-control{border:none;background:#030014;color:#030014bf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #c0bfc41a;border-radius:1rem}.segmented-control__item{cursor:pointer;padding:.35rem .7rem}.segmented-control__item{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;border-radius:.65rem;font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5;font-size:.8rem;box-shadow:none}.segmented-control__item[data-state=off]{background:transparent}
|
package/dist/assets/Text.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.text{font-family:Inter,sans-serif}.text--xs{font-size:.7rem}.text--sm{font-size:.8rem}.text--md{font-size:1rem}.text--lg{font-size:1.2rem}.text--xl{font-size:1.3rem}.text--primary{font-family:Inter,sans-serif;line-height:1.1;letter-spacing:-.75px;color:#fff}.text--secondary{line-height:1.1;letter-spacing:-.75px;color:#ffffffbf}.text--tertiary{line-height:1.1;letter-spacing:-.75px;color:#ffffff80}
|
package/dist/assets/Tooltip.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.tooltip__content{z-index:999;padding:.35rem .7rem}.tooltip__content{border:none;background:#1c1a2c;color:#ffffffbf;position:relative;box-sizing:border-box;box-shadow:inset 0 0 0 1px #ffffff1a;font-family:Inter,sans-serif;font-weight:400;letter-spacing:-.5px;line-height:1.5;border-radius:1rem;box-shadow:none}.tooltip__arrow{fill:#1c1a2c}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import p from "react";
|
|
2
|
-
var e = { exports: {} }, t = {};
|
|
3
|
-
var a;
|
|
4
|
-
function s() {
|
|
5
|
-
if (a) return t;
|
|
6
|
-
a = 1;
|
|
7
|
-
var o = p.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;
|
|
8
|
-
return t.c = function(r) {
|
|
9
|
-
return o.H.useMemoCache(r);
|
|
10
|
-
}, t;
|
|
11
|
-
}
|
|
12
|
-
var n = {};
|
|
13
|
-
var u;
|
|
14
|
-
function m() {
|
|
15
|
-
return u || (u = 1, process.env.NODE_ENV !== "production" && (function() {
|
|
16
|
-
var o = p.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;
|
|
17
|
-
n.c = function(r) {
|
|
18
|
-
var i = o.H;
|
|
19
|
-
return i === null && console.error(
|
|
20
|
-
`Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
|
|
21
|
-
1. You might have mismatching versions of React and the renderer (such as React DOM)
|
|
22
|
-
2. You might be breaking the Rules of Hooks
|
|
23
|
-
3. You might have more than one copy of React in the same app
|
|
24
|
-
See https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem.`
|
|
25
|
-
), i.useMemoCache(r);
|
|
26
|
-
};
|
|
27
|
-
})()), n;
|
|
28
|
-
}
|
|
29
|
-
var c;
|
|
30
|
-
function l() {
|
|
31
|
-
return c || (c = 1, process.env.NODE_ENV === "production" ? e.exports = s() : e.exports = m()), e.exports;
|
|
32
|
-
}
|
|
33
|
-
var _ = l();
|
|
34
|
-
export {
|
|
35
|
-
_ as c
|
|
36
|
-
};
|
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
import { DataType, Flow, FlowSetting, FlowType, FunctionDefinition, LiteralValue, Maybe, NodeFunction, NodeParameter, NodeParameterValue, ReferenceValue, RuntimeParameterDefinition, Scalars } from '@code0-tech/sagittarius-graphql-types';
|
|
2
|
-
import { ValidationResult } from '../../utils/inspection';
|
|
3
|
-
export declare class FlowView {
|
|
4
|
-
/** Time when this Flow was created */
|
|
5
|
-
private readonly _createdAt?;
|
|
6
|
-
/** Global ID of this Flow */
|
|
7
|
-
private readonly _id?;
|
|
8
|
-
/** The input data type of the flow */
|
|
9
|
-
private _inputType?;
|
|
10
|
-
/** Nodes of the flow */
|
|
11
|
-
private _nodes?;
|
|
12
|
-
/** The return data type of the flow */
|
|
13
|
-
private readonly _returnType?;
|
|
14
|
-
/** The settings of the flow */
|
|
15
|
-
private readonly _settings?;
|
|
16
|
-
/** The ID of the starting node of the flow */
|
|
17
|
-
private _startingNodeId?;
|
|
18
|
-
/** The flow type of the flow */
|
|
19
|
-
private readonly _type?;
|
|
20
|
-
/** Time when this Flow was last updated */
|
|
21
|
-
private readonly _updatedAt?;
|
|
22
|
-
/** Name of the flow */
|
|
23
|
-
private _name?;
|
|
24
|
-
constructor(flow: Flow);
|
|
25
|
-
get createdAt(): Maybe<Scalars["Time"]["output"]> | undefined;
|
|
26
|
-
get id(): Maybe<Scalars["FlowID"]["output"]> | undefined;
|
|
27
|
-
get inputType(): Maybe<DataType> | undefined;
|
|
28
|
-
get nodes(): NodeFunctionView[] | undefined;
|
|
29
|
-
get returnType(): Maybe<DataType> | undefined;
|
|
30
|
-
get settings(): FlowSettingView[] | undefined;
|
|
31
|
-
get startingNodeId(): Maybe<Scalars["NodeFunctionID"]["output"]> | undefined;
|
|
32
|
-
get type(): Maybe<FlowType> | undefined;
|
|
33
|
-
get updatedAt(): Maybe<Scalars["Time"]["output"]> | undefined;
|
|
34
|
-
get name(): Maybe<Scalars["String"]["output"]> | undefined;
|
|
35
|
-
set inputType(value: Maybe<DataType>);
|
|
36
|
-
set startingNodeId(value: Maybe<Scalars["NodeFunctionID"]["output"]>);
|
|
37
|
-
set name(value: Maybe<Scalars["String"]["output"]>);
|
|
38
|
-
addNode(node: NodeFunctionView): void;
|
|
39
|
-
updateNode(updatedNode: NodeFunctionView): void;
|
|
40
|
-
removeNode(nodeId: Scalars['NodeFunctionID']['output']): void;
|
|
41
|
-
getNodeById(nodeId: Scalars['NodeFunctionID']['output']): NodeFunctionView | undefined;
|
|
42
|
-
json(): Flow;
|
|
43
|
-
}
|
|
44
|
-
export declare class NodeFunctionView {
|
|
45
|
-
/** Time when this NodeFunction was created */
|
|
46
|
-
private readonly _createdAt?;
|
|
47
|
-
/** Global ID of this NodeFunction */
|
|
48
|
-
private readonly _id?;
|
|
49
|
-
/** The ID of the next Node Function in the flow */
|
|
50
|
-
private _nextNodeId?;
|
|
51
|
-
/** The parameters of the Node Function */
|
|
52
|
-
private readonly _parameters?;
|
|
53
|
-
/** The definition of the Node Function */
|
|
54
|
-
private readonly _functionDefinition?;
|
|
55
|
-
/** Time when this NodeFunction was last updated */
|
|
56
|
-
private readonly _updatedAt?;
|
|
57
|
-
constructor(nodeFunction: NodeFunction);
|
|
58
|
-
get createdAt(): Maybe<Scalars["Time"]["output"]> | undefined;
|
|
59
|
-
get id(): Maybe<Scalars["NodeFunctionID"]["output"]> | undefined;
|
|
60
|
-
get nextNodeId(): Maybe<Scalars["NodeFunctionID"]["output"]> | undefined;
|
|
61
|
-
get parameters(): NodeParameterView[] | undefined;
|
|
62
|
-
get functionDefinition(): Maybe<FunctionDefinition> | undefined;
|
|
63
|
-
get updatedAt(): Maybe<Scalars["Time"]["output"]> | undefined;
|
|
64
|
-
set nextNodeId(value: Maybe<Scalars["NodeFunctionID"]["output"]>);
|
|
65
|
-
deleteNextNode(): void;
|
|
66
|
-
json(): NodeFunction | undefined;
|
|
67
|
-
}
|
|
68
|
-
export declare class NodeParameterView {
|
|
69
|
-
/** Time when this NodeParameter was created */
|
|
70
|
-
private readonly _createdAt?;
|
|
71
|
-
/** Global ID of this NodeParameter */
|
|
72
|
-
private readonly _id?;
|
|
73
|
-
/** The definition of the parameter */
|
|
74
|
-
private readonly _runtimeParameter?;
|
|
75
|
-
/** Time when this NodeParameter was last updated */
|
|
76
|
-
private readonly _updatedAt?;
|
|
77
|
-
/** The value of the parameter */
|
|
78
|
-
private _value?;
|
|
79
|
-
private _validationResults;
|
|
80
|
-
constructor(nodeParameter: NodeParameter);
|
|
81
|
-
get createdAt(): Maybe<Scalars["Time"]["output"]> | undefined;
|
|
82
|
-
get id(): Maybe<Scalars["NodeParameterID"]["output"]> | undefined;
|
|
83
|
-
get runtimeParameter(): Maybe<RuntimeParameterDefinition> | undefined;
|
|
84
|
-
get updatedAt(): Maybe<Scalars["Time"]["output"]> | undefined;
|
|
85
|
-
get value(): LiteralValue | ReferenceValue | NodeFunctionView | undefined;
|
|
86
|
-
get validationResults(): ValidationResult[];
|
|
87
|
-
set validationResults(value: ValidationResult[]);
|
|
88
|
-
set value(value: NodeParameterValue | undefined);
|
|
89
|
-
json(): NodeParameter | undefined;
|
|
90
|
-
}
|
|
91
|
-
export declare class FlowSettingView {
|
|
92
|
-
private readonly _createdAt?;
|
|
93
|
-
/** The identifier of the flow setting */
|
|
94
|
-
private readonly _flowSettingIdentifier?;
|
|
95
|
-
/** Global ID of this FlowSetting */
|
|
96
|
-
private readonly _id?;
|
|
97
|
-
/** Time when this FlowSetting was last updated */
|
|
98
|
-
private readonly _updatedAt?;
|
|
99
|
-
/** The value of the flow setting */
|
|
100
|
-
private _value?;
|
|
101
|
-
constructor(flowSetting: FlowSetting);
|
|
102
|
-
get createdAt(): Maybe<Scalars["Time"]["output"]> | undefined;
|
|
103
|
-
get flowSettingIdentifier(): Maybe<Scalars["String"]["output"]> | undefined;
|
|
104
|
-
get id(): Maybe<Scalars["FlowSettingID"]["output"]> | undefined;
|
|
105
|
-
get value(): Maybe<Scalars["String"]["output"]> | undefined;
|
|
106
|
-
get updatedAt(): Maybe<Scalars["Time"]["output"]> | undefined;
|
|
107
|
-
set value(value: Maybe<Scalars["JSON"]["output"]>);
|
|
108
|
-
json(): FlowSetting;
|
|
109
|
-
}
|
|
@@ -1,213 +0,0 @@
|
|
|
1
|
-
function e(s, t, i) {
|
|
2
|
-
return (t = n(t)) in s ? Object.defineProperty(s, t, { value: i, enumerable: !0, configurable: !0, writable: !0 }) : s[t] = i, s;
|
|
3
|
-
}
|
|
4
|
-
function n(s) {
|
|
5
|
-
var t = a(s, "string");
|
|
6
|
-
return typeof t == "symbol" ? t : t + "";
|
|
7
|
-
}
|
|
8
|
-
function a(s, t) {
|
|
9
|
-
if (typeof s != "object" || !s) return s;
|
|
10
|
-
var i = s[Symbol.toPrimitive];
|
|
11
|
-
if (i !== void 0) {
|
|
12
|
-
var r = i.call(s, t);
|
|
13
|
-
if (typeof r != "object") return r;
|
|
14
|
-
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
15
|
-
}
|
|
16
|
-
return (t === "string" ? String : Number)(s);
|
|
17
|
-
}
|
|
18
|
-
class h {
|
|
19
|
-
constructor(t) {
|
|
20
|
-
e(this, "_createdAt", void 0), e(this, "_id", void 0), e(this, "_inputType", void 0), e(this, "_nodes", void 0), e(this, "_returnType", void 0), e(this, "_settings", void 0), e(this, "_startingNodeId", void 0), e(this, "_type", void 0), e(this, "_updatedAt", void 0), e(this, "_name", void 0), this._createdAt = t.createdAt, this._id = t.id, this._inputType = t.inputType, this._nodes = t.nodes?.nodes?.map((i) => new d(i)), this._returnType = t.returnType, this._settings = t.settings?.nodes?.map((i) => new u(i)), this._startingNodeId = t.startingNodeId, this._type = t.type, this._updatedAt = t.updatedAt, this._name = t.name;
|
|
21
|
-
}
|
|
22
|
-
get createdAt() {
|
|
23
|
-
return this._createdAt;
|
|
24
|
-
}
|
|
25
|
-
get id() {
|
|
26
|
-
return this._id;
|
|
27
|
-
}
|
|
28
|
-
get inputType() {
|
|
29
|
-
return this._inputType;
|
|
30
|
-
}
|
|
31
|
-
get nodes() {
|
|
32
|
-
return this._nodes;
|
|
33
|
-
}
|
|
34
|
-
get returnType() {
|
|
35
|
-
return this._returnType;
|
|
36
|
-
}
|
|
37
|
-
get settings() {
|
|
38
|
-
return this._settings;
|
|
39
|
-
}
|
|
40
|
-
get startingNodeId() {
|
|
41
|
-
return this._startingNodeId;
|
|
42
|
-
}
|
|
43
|
-
get type() {
|
|
44
|
-
return this._type;
|
|
45
|
-
}
|
|
46
|
-
get updatedAt() {
|
|
47
|
-
return this._updatedAt;
|
|
48
|
-
}
|
|
49
|
-
get name() {
|
|
50
|
-
return this._name;
|
|
51
|
-
}
|
|
52
|
-
set inputType(t) {
|
|
53
|
-
this._inputType = t;
|
|
54
|
-
}
|
|
55
|
-
set startingNodeId(t) {
|
|
56
|
-
this._startingNodeId = t;
|
|
57
|
-
}
|
|
58
|
-
set name(t) {
|
|
59
|
-
this._name = t;
|
|
60
|
-
}
|
|
61
|
-
addNode(t) {
|
|
62
|
-
this._nodes || (this._nodes = []), this._nodes.push(t);
|
|
63
|
-
}
|
|
64
|
-
updateNode(t) {
|
|
65
|
-
this._nodes && (this._nodes = this._nodes.map((i) => i.id === t.id ? t : i));
|
|
66
|
-
}
|
|
67
|
-
removeNode(t) {
|
|
68
|
-
this._nodes && (this._nodes = this._nodes.filter((i) => i.id !== t));
|
|
69
|
-
}
|
|
70
|
-
getNodeById(t) {
|
|
71
|
-
if (this._nodes)
|
|
72
|
-
return this._nodes.find((i) => i.id === t);
|
|
73
|
-
}
|
|
74
|
-
json() {
|
|
75
|
-
return {
|
|
76
|
-
__typename: "Flow",
|
|
77
|
-
createdAt: this._createdAt,
|
|
78
|
-
id: this._id,
|
|
79
|
-
inputType: this._inputType,
|
|
80
|
-
nodes: this._nodes ? {
|
|
81
|
-
nodes: this._nodes.map((t) => t.json())
|
|
82
|
-
} : void 0,
|
|
83
|
-
returnType: this._returnType,
|
|
84
|
-
settings: this._settings ? {
|
|
85
|
-
nodes: this._settings.map((t) => t.json())
|
|
86
|
-
} : void 0,
|
|
87
|
-
startingNodeId: this._startingNodeId,
|
|
88
|
-
type: this._type,
|
|
89
|
-
updatedAt: this._updatedAt,
|
|
90
|
-
name: this._name
|
|
91
|
-
};
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
class d {
|
|
95
|
-
constructor(t) {
|
|
96
|
-
e(this, "_createdAt", void 0), e(this, "_id", void 0), e(this, "_nextNodeId", void 0), e(this, "_parameters", void 0), e(this, "_functionDefinition", void 0), e(this, "_updatedAt", void 0), this._createdAt = t.createdAt, this._id = t.id, this._nextNodeId = t.nextNodeId, this._functionDefinition = t.functionDefinition, this._updatedAt = t.updatedAt, this._parameters = t.parameters ? t.parameters.nodes?.map((i) => new _(i)) : void 0;
|
|
97
|
-
}
|
|
98
|
-
get createdAt() {
|
|
99
|
-
return this._createdAt;
|
|
100
|
-
}
|
|
101
|
-
get id() {
|
|
102
|
-
return this._id;
|
|
103
|
-
}
|
|
104
|
-
get nextNodeId() {
|
|
105
|
-
return this._nextNodeId;
|
|
106
|
-
}
|
|
107
|
-
get parameters() {
|
|
108
|
-
return this._parameters;
|
|
109
|
-
}
|
|
110
|
-
get functionDefinition() {
|
|
111
|
-
return this._functionDefinition;
|
|
112
|
-
}
|
|
113
|
-
get updatedAt() {
|
|
114
|
-
return this._updatedAt;
|
|
115
|
-
}
|
|
116
|
-
set nextNodeId(t) {
|
|
117
|
-
this._nextNodeId = t;
|
|
118
|
-
}
|
|
119
|
-
deleteNextNode() {
|
|
120
|
-
this._nextNodeId = void 0;
|
|
121
|
-
}
|
|
122
|
-
json() {
|
|
123
|
-
return {
|
|
124
|
-
__typename: "NodeFunction",
|
|
125
|
-
createdAt: this._createdAt,
|
|
126
|
-
id: this._id,
|
|
127
|
-
nextNodeId: this._nextNodeId,
|
|
128
|
-
parameters: this._parameters ? {
|
|
129
|
-
nodes: this._parameters.map((t) => t.json())
|
|
130
|
-
} : void 0,
|
|
131
|
-
functionDefinition: this._functionDefinition,
|
|
132
|
-
updatedAt: this._updatedAt
|
|
133
|
-
};
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
class _ {
|
|
137
|
-
constructor(t) {
|
|
138
|
-
e(this, "_createdAt", void 0), e(this, "_id", void 0), e(this, "_runtimeParameter", void 0), e(this, "_updatedAt", void 0), e(this, "_value", void 0), e(this, "_validationResults", void 0), this._createdAt = t.createdAt, this._id = t.id, this._runtimeParameter = t.runtimeParameter, this._updatedAt = t.updatedAt, t.value?.__typename === "NodeFunction" ? this._value = new d(t.value) : this._value = t.value, this._validationResults = [];
|
|
139
|
-
}
|
|
140
|
-
get createdAt() {
|
|
141
|
-
return this._createdAt;
|
|
142
|
-
}
|
|
143
|
-
get id() {
|
|
144
|
-
return this._id;
|
|
145
|
-
}
|
|
146
|
-
get runtimeParameter() {
|
|
147
|
-
return this._runtimeParameter;
|
|
148
|
-
}
|
|
149
|
-
get updatedAt() {
|
|
150
|
-
return this._updatedAt;
|
|
151
|
-
}
|
|
152
|
-
get value() {
|
|
153
|
-
return this._value;
|
|
154
|
-
}
|
|
155
|
-
get validationResults() {
|
|
156
|
-
return this._validationResults;
|
|
157
|
-
}
|
|
158
|
-
set validationResults(t) {
|
|
159
|
-
this._validationResults = t;
|
|
160
|
-
}
|
|
161
|
-
set value(t) {
|
|
162
|
-
t?.__typename === "NodeFunction" ? this._value = new d(t) : this._value = t;
|
|
163
|
-
}
|
|
164
|
-
json() {
|
|
165
|
-
return {
|
|
166
|
-
__typename: "NodeParameter",
|
|
167
|
-
createdAt: this._createdAt,
|
|
168
|
-
id: this._id,
|
|
169
|
-
runtimeParameter: this._runtimeParameter,
|
|
170
|
-
updatedAt: this._updatedAt,
|
|
171
|
-
value: this._value instanceof d ? this._value.json() : this._value
|
|
172
|
-
};
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
class u {
|
|
176
|
-
constructor(t) {
|
|
177
|
-
e(this, "_createdAt", void 0), e(this, "_flowSettingIdentifier", void 0), e(this, "_id", void 0), e(this, "_updatedAt", void 0), e(this, "_value", void 0), this._createdAt = t.createdAt, this._flowSettingIdentifier = t.flowSettingIdentifier, this._id = t.id, this._value = t.value, this._updatedAt = t.updatedAt;
|
|
178
|
-
}
|
|
179
|
-
get createdAt() {
|
|
180
|
-
return this._createdAt;
|
|
181
|
-
}
|
|
182
|
-
get flowSettingIdentifier() {
|
|
183
|
-
return this._flowSettingIdentifier;
|
|
184
|
-
}
|
|
185
|
-
get id() {
|
|
186
|
-
return this._id;
|
|
187
|
-
}
|
|
188
|
-
get value() {
|
|
189
|
-
return this._value;
|
|
190
|
-
}
|
|
191
|
-
get updatedAt() {
|
|
192
|
-
return this._updatedAt;
|
|
193
|
-
}
|
|
194
|
-
set value(t) {
|
|
195
|
-
this._value = t;
|
|
196
|
-
}
|
|
197
|
-
json() {
|
|
198
|
-
return {
|
|
199
|
-
__typename: "FlowSetting",
|
|
200
|
-
createdAt: this._createdAt,
|
|
201
|
-
flowSettingIdentifier: this._flowSettingIdentifier,
|
|
202
|
-
id: this._id,
|
|
203
|
-
value: this._value,
|
|
204
|
-
updatedAt: this._updatedAt
|
|
205
|
-
};
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
export {
|
|
209
|
-
u as FlowSettingView,
|
|
210
|
-
h as FlowView,
|
|
211
|
-
d as NodeFunctionView,
|
|
212
|
-
_ as NodeParameterView
|
|
213
|
-
};
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
import { jsx as o, jsxs as k } from "react/jsx-runtime";
|
|
2
|
-
import { c as j } from "../../../compiler-runtime-BNHg76kC.js";
|
|
3
|
-
import { useViewport as D, useReactFlow as M, Panel as O } from "@xyflow/react";
|
|
4
|
-
import { ButtonGroup as R } from "../../button-group/ButtonGroup.js";
|
|
5
|
-
import { Button as B } from "../../button/Button.js";
|
|
6
|
-
import { IconPlus as V, IconMinus as v, IconFocusCentered as E } from "@tabler/icons-react";
|
|
7
|
-
import { Badge as G } from "../../badge/Badge.js";
|
|
8
|
-
import { Flex as P } from "../../flex/Flex.js";
|
|
9
|
-
const N = () => {
|
|
10
|
-
const e = j.c(36), C = D(), t = M();
|
|
11
|
-
let p;
|
|
12
|
-
e[0] !== t ? (p = () => {
|
|
13
|
-
t.zoomIn();
|
|
14
|
-
}, e[0] = t, e[1] = p) : p = e[1];
|
|
15
|
-
const I = p;
|
|
16
|
-
let d;
|
|
17
|
-
e[2] !== t ? (d = () => {
|
|
18
|
-
t.zoomOut();
|
|
19
|
-
}, e[2] = t, e[3] = d) : d = e[3];
|
|
20
|
-
const g = d;
|
|
21
|
-
let h;
|
|
22
|
-
e[4] !== t ? (h = () => {
|
|
23
|
-
t.fitView();
|
|
24
|
-
}, e[4] = t, e[5] = h) : h = e[5];
|
|
25
|
-
const F = h;
|
|
26
|
-
let u;
|
|
27
|
-
e[6] !== C.zoom ? (u = () => Math.round(C.zoom * 100), e[6] = C.zoom, e[7] = u) : u = e[7];
|
|
28
|
-
const S = u;
|
|
29
|
-
let y;
|
|
30
|
-
e[8] === Symbol.for("react.memo_cache_sentinel") ? (y = {
|
|
31
|
-
flexDirection: "column",
|
|
32
|
-
gap: "1rem"
|
|
33
|
-
}, e[8] = y) : y = e[8];
|
|
34
|
-
let z;
|
|
35
|
-
e[9] === Symbol.for("react.memo_cache_sentinel") ? (z = {
|
|
36
|
-
gap: ".35rem"
|
|
37
|
-
}, e[9] = z) : z = e[9];
|
|
38
|
-
let l;
|
|
39
|
-
e[10] !== I ? (l = () => I(), e[10] = I, e[11] = l) : l = e[11];
|
|
40
|
-
let _;
|
|
41
|
-
e[12] === Symbol.for("react.memo_cache_sentinel") ? (_ = /* @__PURE__ */ o(V, { size: 15 }), e[12] = _) : _ = e[12];
|
|
42
|
-
let r;
|
|
43
|
-
e[13] !== l ? (r = /* @__PURE__ */ o(B, { color: "secondary", onClick: l, children: _ }), e[13] = l, e[14] = r) : r = e[14];
|
|
44
|
-
let i;
|
|
45
|
-
e[15] !== g ? (i = () => g(), e[15] = g, e[16] = i) : i = e[16];
|
|
46
|
-
let b;
|
|
47
|
-
e[17] === Symbol.for("react.memo_cache_sentinel") ? (b = /* @__PURE__ */ o(v, { size: 15 }), e[17] = b) : b = e[17];
|
|
48
|
-
let c;
|
|
49
|
-
e[18] !== i ? (c = /* @__PURE__ */ o(B, { color: "secondary", onClick: i, children: b }), e[18] = i, e[19] = c) : c = e[19];
|
|
50
|
-
let n;
|
|
51
|
-
e[20] !== F ? (n = () => F(), e[20] = F, e[21] = n) : n = e[21];
|
|
52
|
-
let w;
|
|
53
|
-
e[22] === Symbol.for("react.memo_cache_sentinel") ? (w = /* @__PURE__ */ o(E, { size: 15 }), e[22] = w) : w = e[22];
|
|
54
|
-
let s;
|
|
55
|
-
e[23] !== n ? (s = /* @__PURE__ */ o(B, { color: "secondary", onClick: n, children: w }), e[23] = n, e[24] = s) : s = e[24];
|
|
56
|
-
let m;
|
|
57
|
-
e[25] !== c || e[26] !== s || e[27] !== r ? (m = /* @__PURE__ */ k(R, { children: [
|
|
58
|
-
r,
|
|
59
|
-
c,
|
|
60
|
-
s
|
|
61
|
-
] }), e[25] = c, e[26] = s, e[27] = r, e[28] = m) : m = e[28];
|
|
62
|
-
let f;
|
|
63
|
-
e[29] !== S ? (f = S(), e[29] = S, e[30] = f) : f = e[30];
|
|
64
|
-
let a;
|
|
65
|
-
e[31] !== f ? (a = /* @__PURE__ */ k(G, { color: "secondary", children: [
|
|
66
|
-
f,
|
|
67
|
-
"%"
|
|
68
|
-
] }), e[31] = f, e[32] = a) : a = e[32];
|
|
69
|
-
let x;
|
|
70
|
-
return e[33] !== m || e[34] !== a ? (x = /* @__PURE__ */ o(O, { position: "bottom-left", children: /* @__PURE__ */ o(P, { style: y, children: /* @__PURE__ */ k(P, { align: "stretch", style: z, children: [
|
|
71
|
-
m,
|
|
72
|
-
a
|
|
73
|
-
] }) }) }), e[33] = m, e[34] = a, e[35] = x) : x = e[35], x;
|
|
74
|
-
};
|
|
75
|
-
export {
|
|
76
|
-
N as DFlowControl
|
|
77
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './DFlowControl';
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { ReactiveArrayService } from '../../../utils/reactiveArrayService';
|
|
2
|
-
import { DataTypeView } from './DFlowDataType.view';
|
|
3
|
-
import { DataTypeIdentifier, Maybe, NodeParameterValue } from '@code0-tech/sagittarius-graphql-types';
|
|
4
|
-
import { FlowView } from '../DFlow.view';
|
|
5
|
-
export declare abstract class DFlowDataTypeReactiveService extends ReactiveArrayService<DataTypeView> {
|
|
6
|
-
getDataType(type: DataTypeIdentifier): DataTypeView | undefined;
|
|
7
|
-
getDataTypeFromValue(value: NodeParameterValue, flow?: FlowView): DataTypeView | undefined;
|
|
8
|
-
getTypeFromValue(value: NodeParameterValue, flow?: FlowView): Maybe<DataTypeIdentifier> | undefined;
|
|
9
|
-
hasDataTypes(types: DataTypeIdentifier[]): boolean;
|
|
10
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
const g = ["id", "__typename", "createdAt", "updatedAt"], h = (c, u) => {
|
|
2
|
-
if (c.variant !== u.variant) return !1;
|
|
3
|
-
const l = (r) => r !== null && typeof r == "object", i = (r, e) => {
|
|
4
|
-
if (r === e) return !0;
|
|
5
|
-
const y = Array.isArray(r), a = Array.isArray(e);
|
|
6
|
-
if (y || a)
|
|
7
|
-
return !y || !a || r.length !== e.length ? !1 : r.every((s, f) => i(s, e[f]));
|
|
8
|
-
if (l(r) && l(e)) {
|
|
9
|
-
const s = Object.keys(r), f = Object.keys(e);
|
|
10
|
-
return s.length !== f.length ? !1 : s.every((o) => g.includes(o) ? !0 : i(r[o], e[o]));
|
|
11
|
-
}
|
|
12
|
-
return !1;
|
|
13
|
-
}, t = c.rules?.nodes ?? [], n = u.rules?.nodes ?? [];
|
|
14
|
-
return !t.length && !n.length ? !0 : !t.length || !n.length || t.length !== n.length ? !1 : t.every((r, e) => i(r, n[e]));
|
|
15
|
-
};
|
|
16
|
-
export {
|
|
17
|
-
h as useValidateDataType
|
|
18
|
-
};
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { GenericMapper, NodeParameterValue } from '@code0-tech/sagittarius-graphql-types';
|
|
2
|
-
import { DataTypeView } from './DFlowDataType.view';
|
|
3
|
-
import { FlowView } from '../DFlow.view';
|
|
4
|
-
export declare const useValidateValue: (value: NodeParameterValue, dataType: DataTypeView, flow?: FlowView, generics?: GenericMapper[]) => boolean;
|