@code0-tech/pictor 0.0.0-mvp.3 → 0.0.0-mvp.31
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
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
function i(e, t, r) {
|
|
2
|
-
return (t = s(t)) in e ? Object.defineProperty(e, t, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : e[t] = r, e;
|
|
3
|
-
}
|
|
4
|
-
function s(e) {
|
|
5
|
-
var t = u(e, "string");
|
|
6
|
-
return typeof t == "symbol" ? t : t + "";
|
|
7
|
-
}
|
|
8
|
-
function u(e, t) {
|
|
9
|
-
if (typeof e != "object" || !e) return e;
|
|
10
|
-
var r = e[Symbol.toPrimitive];
|
|
11
|
-
if (r !== void 0) {
|
|
12
|
-
var n = r.call(e, t);
|
|
13
|
-
if (typeof n != "object") return n;
|
|
14
|
-
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
15
|
-
}
|
|
16
|
-
return (t === "string" ? String : Number)(e);
|
|
17
|
-
}
|
|
18
|
-
class d {
|
|
19
|
-
constructor(t) {
|
|
20
|
-
i(this, "_createdAt", void 0), i(this, "_genericKeys", void 0), i(this, "_id", void 0), i(this, "_identifier", void 0), i(this, "_name", void 0), i(this, "_runtime", void 0), i(this, "_rules", void 0), i(this, "_updatedAt", void 0), i(this, "_variant", void 0), this._id = t.id, this._createdAt = t.createdAt, this._updatedAt = t.updatedAt, this._identifier = t.identifier, this._name = t.name ?? void 0, this._runtime = t.runtime ?? void 0, this._variant = t.variant, this._genericKeys = t.genericKeys ?? void 0, this._rules = t.rules ?? void 0;
|
|
21
|
-
}
|
|
22
|
-
get createdAt() {
|
|
23
|
-
return this._createdAt;
|
|
24
|
-
}
|
|
25
|
-
get genericKeys() {
|
|
26
|
-
return this._genericKeys;
|
|
27
|
-
}
|
|
28
|
-
get id() {
|
|
29
|
-
return this._id;
|
|
30
|
-
}
|
|
31
|
-
get identifier() {
|
|
32
|
-
return this._identifier;
|
|
33
|
-
}
|
|
34
|
-
get name() {
|
|
35
|
-
return this._name;
|
|
36
|
-
}
|
|
37
|
-
get runtime() {
|
|
38
|
-
return this._runtime;
|
|
39
|
-
}
|
|
40
|
-
get rules() {
|
|
41
|
-
return this._rules;
|
|
42
|
-
}
|
|
43
|
-
get updatedAt() {
|
|
44
|
-
return this._updatedAt;
|
|
45
|
-
}
|
|
46
|
-
get variant() {
|
|
47
|
-
return this._variant;
|
|
48
|
-
}
|
|
49
|
-
get json() {
|
|
50
|
-
return {
|
|
51
|
-
id: this._id,
|
|
52
|
-
createdAt: this._createdAt,
|
|
53
|
-
updatedAt: this._updatedAt,
|
|
54
|
-
identifier: this._identifier,
|
|
55
|
-
name: this._name,
|
|
56
|
-
runtime: this._runtime,
|
|
57
|
-
variant: this._variant,
|
|
58
|
-
genericKeys: this._genericKeys,
|
|
59
|
-
rules: this._rules
|
|
60
|
-
};
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
export {
|
|
64
|
-
d as DataTypeView
|
|
65
|
-
};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import "./DFlowDataTypeRegexRule.js";
|
|
2
|
-
import "./DFlowDataTypeNumberRangeRule.js";
|
|
3
|
-
import "./DFlowDataTypeItemOfCollectionRule.js";
|
|
4
|
-
import { R as a } from "../../../../DFlowDataType.service-Dz8pQUeO.js";
|
|
5
|
-
import "@code0-tech/sagittarius-graphql-types";
|
|
6
|
-
export {
|
|
7
|
-
a as RuleMap
|
|
8
|
-
};
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import { jsx as c, jsxs as Y, Fragment as B } from "react/jsx-runtime";
|
|
2
|
-
import { c as S } from "../../../compiler-runtime-BNHg76kC.js";
|
|
3
|
-
import { Position as m, getSmoothStepPath as X, EdgeLabelRenderer as $, BaseEdge as j } from "@xyflow/react";
|
|
4
|
-
import { memo as v } from "react";
|
|
5
|
-
import { Badge as y } from "../../badge/Badge.js";
|
|
6
|
-
const D = v((r) => {
|
|
7
|
-
const e = S.c(21), {
|
|
8
|
-
sourceX: d,
|
|
9
|
-
sourceY: g,
|
|
10
|
-
targetX: f,
|
|
11
|
-
targetY: s,
|
|
12
|
-
id: b,
|
|
13
|
-
data: i
|
|
14
|
-
} = r, h = i?.isParameter ? m.Left : m.Bottom, u = i?.isParameter ? m.Right : m.Top, p = (i?.isSuggestion, s - 37.5);
|
|
15
|
-
let a;
|
|
16
|
-
e[0] !== d || e[1] !== g || e[2] !== h || e[3] !== u || e[4] !== p || e[5] !== f || e[6] !== s ? (a = X({
|
|
17
|
-
sourceX: d,
|
|
18
|
-
sourceY: g,
|
|
19
|
-
sourcePosition: h,
|
|
20
|
-
targetX: f,
|
|
21
|
-
targetY: s,
|
|
22
|
-
targetPosition: u,
|
|
23
|
-
borderRadius: 16,
|
|
24
|
-
centerY: p
|
|
25
|
-
}), e[0] = d, e[1] = g, e[2] = h, e[3] = u, e[4] = p, e[5] = f, e[6] = s, e[7] = a) : a = e[7];
|
|
26
|
-
const [x, P, E] = a, R = i?.color;
|
|
27
|
-
let t;
|
|
28
|
-
e[8] !== R ? (t = {
|
|
29
|
-
stroke: R
|
|
30
|
-
}, e[8] = R, e[9] = t) : t = e[9];
|
|
31
|
-
let o;
|
|
32
|
-
e[10] !== x || e[11] !== b || e[12] !== t ? (o = /* @__PURE__ */ c(j, { id: b, path: x, style: t }), e[10] = x, e[11] = b, e[12] = t, e[13] = o) : o = e[13];
|
|
33
|
-
let l;
|
|
34
|
-
e[14] !== P || e[15] !== E || e[16] !== r.label ? (l = r.label ? /* @__PURE__ */ c($, { children: /* @__PURE__ */ c("div", { style: {
|
|
35
|
-
position: "absolute",
|
|
36
|
-
transform: `translate(-50%, -50%) translate(${P}px, ${E}px)`,
|
|
37
|
-
pointerEvents: "all",
|
|
38
|
-
zIndex: 100
|
|
39
|
-
}, children: /* @__PURE__ */ c(y, { children: r.label }) }) }) : null, e[14] = P, e[15] = E, e[16] = r.label, e[17] = l) : l = e[17];
|
|
40
|
-
let n;
|
|
41
|
-
return e[18] !== o || e[19] !== l ? (n = /* @__PURE__ */ Y(B, { children: [
|
|
42
|
-
o,
|
|
43
|
-
l
|
|
44
|
-
] }), e[18] = o, e[19] = l, e[20] = n) : n = e[20], n;
|
|
45
|
-
});
|
|
46
|
-
export {
|
|
47
|
-
D as DFlowEdge
|
|
48
|
-
};
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
import { Code0Component } from '../../../utils/types';
|
|
3
|
-
import { Scalars } from '@code0-tech/sagittarius-graphql-types';
|
|
4
|
-
export interface DFlowFolderProps {
|
|
5
|
-
flowId: Scalars["FlowID"]["output"];
|
|
6
|
-
}
|
|
7
|
-
export interface DFlowFolderGroupProps extends Omit<Code0Component<HTMLDivElement>, "controls"> {
|
|
8
|
-
name: string;
|
|
9
|
-
children: React.ReactElement<DFlowFolderItemProps> | React.ReactElement<DFlowFolderItemProps>[] | React.ReactElement<DFlowFolderGroupProps> | React.ReactElement<DFlowFolderGroupProps>[];
|
|
10
|
-
defaultOpen?: boolean;
|
|
11
|
-
}
|
|
12
|
-
export interface DFlowFolderItemProps extends Code0Component<HTMLDivElement> {
|
|
13
|
-
name: string;
|
|
14
|
-
icon?: React.ReactNode;
|
|
15
|
-
active?: boolean;
|
|
16
|
-
}
|
|
17
|
-
export declare const DFlowFolder: React.FC<DFlowFolderProps>;
|
|
18
|
-
export declare const DFlowFolderGroup: React.FC<DFlowFolderGroupProps>;
|
|
19
|
-
export declare const DFlowFolderItem: React.FC<DFlowFolderItemProps>;
|
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
import { jsxs as g, Fragment as O, jsx as s } from "react/jsx-runtime";
|
|
2
|
-
import { c as N } from "../../../compiler-runtime-BNHg76kC.js";
|
|
3
|
-
import S from "react";
|
|
4
|
-
import { mergeCode0Props as D } from "../../../utils/utils.js";
|
|
5
|
-
import { IconChevronDown as $, IconChevronRight as x, IconFolder as A } from "@tabler/icons-react";
|
|
6
|
-
import { useService as I, useStore as k } from "../../../utils/contextStore.js";
|
|
7
|
-
import { DFlowReactiveService as b } from "../DFlow.service.js";
|
|
8
|
-
import { ScrollArea as z, ScrollAreaViewport as R, ScrollAreaScrollbar as j, ScrollAreaThumb as M } from "../../scroll-area/ScrollArea.js";
|
|
9
|
-
import '../../../assets/DFlowFolder.css';const Q = (f) => {
|
|
10
|
-
const {
|
|
11
|
-
flowId: e
|
|
12
|
-
} = f, a = I(b), m = k(b), h = (n) => n.replace(/^\/+|\/+$/g, "").split("/").filter(Boolean), d = S.useMemo(() => (a.values?.() ?? []).filter((l) => !!l?.name), [m]), u = S.useMemo(() => {
|
|
13
|
-
const n = d.find((l) => l.id === e);
|
|
14
|
-
return n?.name ? h(n.name) : [];
|
|
15
|
-
}, [d, e]), p = S.useMemo(() => {
|
|
16
|
-
const n = {
|
|
17
|
-
name: "",
|
|
18
|
-
path: "",
|
|
19
|
-
children: {}
|
|
20
|
-
};
|
|
21
|
-
for (const l of d) {
|
|
22
|
-
const i = h(l.name);
|
|
23
|
-
if (i.length === 0) continue;
|
|
24
|
-
let o = n, t = "";
|
|
25
|
-
for (let c = 0; c < i.length; c++) {
|
|
26
|
-
const r = i[c];
|
|
27
|
-
t = t ? `${t}/${r}` : r, c === i.length - 1 ? o.children[r] ? o.children[r].flow = l : o.children[r] = {
|
|
28
|
-
name: r,
|
|
29
|
-
path: t,
|
|
30
|
-
children: {},
|
|
31
|
-
flow: l
|
|
32
|
-
} : (o.children[r] || (o.children[r] = {
|
|
33
|
-
name: r,
|
|
34
|
-
path: t,
|
|
35
|
-
children: {}
|
|
36
|
-
}), o = o.children[r]);
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
return n;
|
|
40
|
-
}, [d]), v = S.useCallback((n) => n ? n.split("/").filter(Boolean).every((i, o) => u[o] === i) : !1, [u]), _ = S.useCallback((n) => {
|
|
41
|
-
const l = Object.values(n), i = l.filter((t) => !t.flow), o = l.filter((t) => !!t.flow);
|
|
42
|
-
return i.sort((t, c) => t.name.localeCompare(c.name)), o.sort((t, c) => t.name.localeCompare(c.name)), /* @__PURE__ */ g(O, { children: [
|
|
43
|
-
i.map((t) => /* @__PURE__ */ s(P, { name: t.name, defaultOpen: v(t.path), children: _(t.children) }, t.path)),
|
|
44
|
-
o.map((t) => /* @__PURE__ */ s(y, { name: t.name, active: t.flow.id === e, "data-flow-id": t.flow.id ?? void 0, title: t.flow.name ?? void 0 }, t.flow.id ?? t.path))
|
|
45
|
-
] });
|
|
46
|
-
}, [e, v]);
|
|
47
|
-
return /* @__PURE__ */ g(z, { h: "100%", children: [
|
|
48
|
-
/* @__PURE__ */ s(R, { children: /* @__PURE__ */ s("div", { className: "d-folder__root", children: _(p.children) }) }),
|
|
49
|
-
/* @__PURE__ */ s(j, { orientation: "vertical", children: /* @__PURE__ */ s(M, {}) })
|
|
50
|
-
] });
|
|
51
|
-
}, P = (f) => {
|
|
52
|
-
const e = N.c(22), {
|
|
53
|
-
name: a,
|
|
54
|
-
defaultOpen: m,
|
|
55
|
-
children: h,
|
|
56
|
-
...d
|
|
57
|
-
} = f, u = m === void 0 ? !1 : m, [p, v] = S.useState(u);
|
|
58
|
-
let _;
|
|
59
|
-
e[0] !== v ? (_ = () => v(B), e[0] = v, e[1] = _) : _ = e[1];
|
|
60
|
-
const n = D("d-folder", d);
|
|
61
|
-
let l;
|
|
62
|
-
e[2] !== v ? (l = () => v(E), e[2] = v, e[3] = l) : l = e[3];
|
|
63
|
-
let i;
|
|
64
|
-
e[4] !== p ? (i = p ? /* @__PURE__ */ s($, { size: 12 }) : /* @__PURE__ */ s(x, { size: 12 }), e[4] = p, e[5] = i) : i = e[5];
|
|
65
|
-
let o;
|
|
66
|
-
e[6] !== l || e[7] !== i ? (o = /* @__PURE__ */ s("span", { onClick: l, className: "d-folder__status", children: i }), e[6] = l, e[7] = i, e[8] = o) : o = e[8];
|
|
67
|
-
let t;
|
|
68
|
-
e[9] === Symbol.for("react.memo_cache_sentinel") ? (t = /* @__PURE__ */ s("span", { className: "d-folder__icon", children: /* @__PURE__ */ s(A, { size: 12 }) }), e[9] = t) : t = e[9];
|
|
69
|
-
let c;
|
|
70
|
-
e[10] !== a ? (c = /* @__PURE__ */ s("span", { className: "d-folder__name", children: a }), e[10] = a, e[11] = c) : c = e[11];
|
|
71
|
-
let r;
|
|
72
|
-
e[12] !== _ || e[13] !== n || e[14] !== o || e[15] !== c ? (r = /* @__PURE__ */ g("div", { onDoubleClick: _, ...n, children: [
|
|
73
|
-
o,
|
|
74
|
-
t,
|
|
75
|
-
c
|
|
76
|
-
] }), e[12] = _, e[13] = n, e[14] = o, e[15] = c, e[16] = r) : r = e[16];
|
|
77
|
-
const F = p ? h : null;
|
|
78
|
-
let w;
|
|
79
|
-
e[17] !== F ? (w = /* @__PURE__ */ s("div", { className: "d-folder__content", children: F }), e[17] = F, e[18] = w) : w = e[18];
|
|
80
|
-
let C;
|
|
81
|
-
return e[19] !== w || e[20] !== r ? (C = /* @__PURE__ */ g("div", { children: [
|
|
82
|
-
r,
|
|
83
|
-
w
|
|
84
|
-
] }), e[19] = w, e[20] = r, e[21] = C) : C = e[21], C;
|
|
85
|
-
}, y = (f) => {
|
|
86
|
-
const e = N.c(12);
|
|
87
|
-
let a, m, h;
|
|
88
|
-
if (e[0] !== f) {
|
|
89
|
-
const {
|
|
90
|
-
name: v,
|
|
91
|
-
icon: _,
|
|
92
|
-
active: n,
|
|
93
|
-
...l
|
|
94
|
-
} = f;
|
|
95
|
-
m = v, a = _, h = D(`d-folder__item ${n ? "d-folder__item--active" : ""}`, l), e[0] = f, e[1] = a, e[2] = m, e[3] = h;
|
|
96
|
-
} else
|
|
97
|
-
a = e[1], m = e[2], h = e[3];
|
|
98
|
-
let d;
|
|
99
|
-
e[4] !== a ? (d = a ? /* @__PURE__ */ s("span", { className: "d-folder__item-icon", children: a }) : null, e[4] = a, e[5] = d) : d = e[5];
|
|
100
|
-
let u;
|
|
101
|
-
e[6] !== m ? (u = /* @__PURE__ */ s("span", { className: "d-folder__item-name", children: m }), e[6] = m, e[7] = u) : u = e[7];
|
|
102
|
-
let p;
|
|
103
|
-
return e[8] !== h || e[9] !== d || e[10] !== u ? (p = /* @__PURE__ */ g("div", { ...h, children: [
|
|
104
|
-
d,
|
|
105
|
-
u
|
|
106
|
-
] }), e[8] = h, e[9] = d, e[10] = u, e[11] = p) : p = e[11], p;
|
|
107
|
-
};
|
|
108
|
-
function B(f) {
|
|
109
|
-
return !f;
|
|
110
|
-
}
|
|
111
|
-
function E(f) {
|
|
112
|
-
return !f;
|
|
113
|
-
}
|
|
114
|
-
export {
|
|
115
|
-
Q as DFlowFolder,
|
|
116
|
-
P as DFlowFolderGroup,
|
|
117
|
-
y as DFlowFolderItem
|
|
118
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './DFlowFolder';
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { D as n } from "../../../DFlowDataType.service-Dz8pQUeO.js";
|
|
2
|
-
import { resolveGenericKeys as p, replaceGenericKeysInType as i } from "../../../utils/generics.js";
|
|
3
|
-
import { useService as s } from "../../../utils/contextStore.js";
|
|
4
|
-
const c = (e, o, r) => {
|
|
5
|
-
if (r = r ?? s(n), !e.returnType) return null;
|
|
6
|
-
const t = p(e, o, r);
|
|
7
|
-
return i(e.returnType, t);
|
|
8
|
-
};
|
|
9
|
-
export {
|
|
10
|
-
c as useReturnType
|
|
11
|
-
};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { ReactiveArrayService } from '../../../utils/reactiveArrayService';
|
|
2
|
-
import { FunctionDefinitionView } from './DFlowFunction.view';
|
|
3
|
-
import { FunctionDefinition } from '@code0-tech/sagittarius-graphql-types';
|
|
4
|
-
export declare abstract class DFlowFunctionReactiveService extends ReactiveArrayService<FunctionDefinitionView> {
|
|
5
|
-
getById(id: FunctionDefinition['id']): FunctionDefinitionView | undefined;
|
|
6
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { FunctionDefinitionView } from './DFlowFunction.view';
|
|
2
|
-
import { DFlowDataTypeReactiveService } from '../data-type/DFlowDataType.service';
|
|
3
|
-
import { ValidationResult } from '../../../utils/inspection';
|
|
4
|
-
import { NodeParameterValue, Scalars } from '@code0-tech/sagittarius-graphql-types';
|
|
5
|
-
/**
|
|
6
|
-
* Validates function parameter values against a function definition, resolving all generics.
|
|
7
|
-
* For each parameter, determines if the provided value is a valid match for the parameter's (possibly generic) type.
|
|
8
|
-
* Returns an array of ValidationResults (errors for each parameter, null entry for valid).
|
|
9
|
-
*/
|
|
10
|
-
export declare const useFunctionValidation: (func: FunctionDefinitionView, values: NodeParameterValue[], dataTypeService: DFlowDataTypeReactiveService, flowId: Scalars["FlowID"]["output"]) => ValidationResult[] | null;
|
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
import { DataTypeView as m } from "../data-type/DFlowDataType.view.js";
|
|
2
|
-
import { InspectionSeverity as N } from "../../../utils/inspection.js";
|
|
3
|
-
import { resolveGenericKeys as I, replaceGenericKeysInDataTypeObject as g, replaceGenericKeysInType as D } from "../../../utils/generics.js";
|
|
4
|
-
import { useReturnType as M } from "./DFlowFunction.return.hook.js";
|
|
5
|
-
import { useService as v } from "../../../utils/contextStore.js";
|
|
6
|
-
import { DFlowFunctionReactiveService as P } from "./DFlowFunction.service.js";
|
|
7
|
-
import { DataTypeVariant as h } from "@code0-tech/sagittarius-graphql-types";
|
|
8
|
-
import { useValidateDataType as T } from "../data-type/DFlowDataType.validation.type.js";
|
|
9
|
-
import { u as l } from "../../../DFlowDataType.service-Dz8pQUeO.js";
|
|
10
|
-
import { DFlowReactiveService as S } from "../DFlow.service.js";
|
|
11
|
-
const C = (f, d, a, R) => {
|
|
12
|
-
const w = v(P), y = v(S).getById(R), u = I(f, d, a, y), F = f.parameterDefinitions ?? [], V = f.genericKeys ?? [], r = [];
|
|
13
|
-
return F.forEach((s, K) => {
|
|
14
|
-
const n = d[K];
|
|
15
|
-
if (!n) return;
|
|
16
|
-
const p = s.dataTypeIdentifier, e = a.getDataType(p), _ = n.__typename === "NodeFunction" && e?.variant != h.Node ? M(w.getById(n.functionDefinition?.id), n.parameters?.nodes?.map((o) => o?.value)) : a.getTypeFromValue(n, y), t = a.getDataType(_), j = e && p?.genericType || p?.genericKey && V.includes(p.genericKey);
|
|
17
|
-
let i = !0;
|
|
18
|
-
if (j) {
|
|
19
|
-
if (_?.genericType && e) {
|
|
20
|
-
if (n.__typename === "ReferenceValue" || n.__typename === "NodeFunction") {
|
|
21
|
-
const o = new m(g(e.json, u)), G = new m(g(t?.json, u));
|
|
22
|
-
i = T(o, G), i || r.push(c(s.id, e, t));
|
|
23
|
-
} else {
|
|
24
|
-
const o = D(p, u);
|
|
25
|
-
i = l(n, e, y, o?.genericType?.genericMappers), i || r.push(c(s.id, e, t));
|
|
26
|
-
}
|
|
27
|
-
return;
|
|
28
|
-
}
|
|
29
|
-
if (p?.genericKey && V.includes(p?.genericKey)) {
|
|
30
|
-
if (n.__typename != "ReferenceValue") {
|
|
31
|
-
const o = D(p, u);
|
|
32
|
-
i = l(n, a.getDataType(o), y, o.genericType?.genericMappers), i || r.push(c(s.id, e, t));
|
|
33
|
-
}
|
|
34
|
-
return;
|
|
35
|
-
}
|
|
36
|
-
if (t && e && t.json && e.json) {
|
|
37
|
-
if (n.__typename === "ReferenceValue" || n.__typename === "NodeFunction") {
|
|
38
|
-
const o = new m(g(e.json, u));
|
|
39
|
-
i = T(o, t), i || r.push(c(s.id, e, t));
|
|
40
|
-
} else {
|
|
41
|
-
const o = D(p, u);
|
|
42
|
-
i = l(n, a.getDataType(o), y, o.genericType?.genericMappers), i || r.push(c(s.id, e, t));
|
|
43
|
-
}
|
|
44
|
-
return;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
if (e) {
|
|
48
|
-
if (_?.genericType && e) {
|
|
49
|
-
if (n.__typename === "ReferenceValue" || n.__typename === "NodeFunction") {
|
|
50
|
-
const o = new m(g(t?.json, u));
|
|
51
|
-
i = T(e, o), i || r.push(c(s.id, e, t));
|
|
52
|
-
} else
|
|
53
|
-
i = l(n, e), i || r.push(c(s.id, e, t));
|
|
54
|
-
return;
|
|
55
|
-
}
|
|
56
|
-
if (t) {
|
|
57
|
-
(n.__typename === "ReferenceValue" || n.__typename === "NodeFunction") && e.variant !== h.Node ? (i = T(e, t), i || r.push(c(s.id, e, t))) : (i = l(n, e), i || r.push(c(s.id, e, t)));
|
|
58
|
-
return;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
r.push(c(s.id, e, t));
|
|
62
|
-
}), r.length > 0 ? r : null;
|
|
63
|
-
}, c = (f, d, a) => ({
|
|
64
|
-
parameterId: f,
|
|
65
|
-
type: N.ERROR,
|
|
66
|
-
message: {
|
|
67
|
-
nodes: [{
|
|
68
|
-
code: "en-US",
|
|
69
|
-
content: `Argument of type ${a?.name?.nodes[0]?.content} is not assignable to parameter of type ${d?.name?.nodes[0]?.content}`
|
|
70
|
-
}]
|
|
71
|
-
}
|
|
72
|
-
});
|
|
73
|
-
export {
|
|
74
|
-
C as useFunctionValidation
|
|
75
|
-
};
|
|
@@ -1,117 +0,0 @@
|
|
|
1
|
-
function i(e, t, r) {
|
|
2
|
-
return (t = s(t)) in e ? Object.defineProperty(e, t, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : e[t] = r, e;
|
|
3
|
-
}
|
|
4
|
-
function s(e) {
|
|
5
|
-
var t = d(e, "string");
|
|
6
|
-
return typeof t == "symbol" ? t : t + "";
|
|
7
|
-
}
|
|
8
|
-
function d(e, t) {
|
|
9
|
-
if (typeof e != "object" || !e) return e;
|
|
10
|
-
var r = e[Symbol.toPrimitive];
|
|
11
|
-
if (r !== void 0) {
|
|
12
|
-
var n = r.call(e, t);
|
|
13
|
-
if (typeof n != "object") return n;
|
|
14
|
-
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
15
|
-
}
|
|
16
|
-
return (t === "string" ? String : Number)(e);
|
|
17
|
-
}
|
|
18
|
-
class a {
|
|
19
|
-
constructor(t) {
|
|
20
|
-
i(this, "_createdAt", void 0), i(this, "_deprecationMessages", void 0), i(this, "_descriptions", void 0), i(this, "_documentations", void 0), i(this, "_genericKeys", void 0), i(this, "_id", void 0), i(this, "_names", void 0), i(this, "_parameterDefinitions", void 0), i(this, "_returnType", void 0), i(this, "_runtimeFunctionDefinition", void 0), i(this, "_throwsError", void 0), i(this, "_updatedAt", void 0), this._createdAt = t.createdAt, this._deprecationMessages = t.deprecationMessages, this._descriptions = t.descriptions, this._documentations = t.documentations, this._genericKeys = t.genericKeys, this._id = t.id, this._names = t.names, this._parameterDefinitions = t.parameterDefinitions?.nodes?.map((r) => new o(r)) ?? void 0, this._returnType = t.returnType, this._runtimeFunctionDefinition = t.runtimeFunctionDefinition, this._throwsError = t.throwsError, this._updatedAt = t.updatedAt;
|
|
21
|
-
}
|
|
22
|
-
get createdAt() {
|
|
23
|
-
return this._createdAt;
|
|
24
|
-
}
|
|
25
|
-
get deprecationMessages() {
|
|
26
|
-
return this._deprecationMessages;
|
|
27
|
-
}
|
|
28
|
-
get descriptions() {
|
|
29
|
-
return this._descriptions;
|
|
30
|
-
}
|
|
31
|
-
get documentations() {
|
|
32
|
-
return this._documentations;
|
|
33
|
-
}
|
|
34
|
-
get genericKeys() {
|
|
35
|
-
return this._genericKeys;
|
|
36
|
-
}
|
|
37
|
-
get id() {
|
|
38
|
-
return this._id;
|
|
39
|
-
}
|
|
40
|
-
get names() {
|
|
41
|
-
return this._names;
|
|
42
|
-
}
|
|
43
|
-
get parameterDefinitions() {
|
|
44
|
-
return this._parameterDefinitions;
|
|
45
|
-
}
|
|
46
|
-
get returnType() {
|
|
47
|
-
return this._returnType;
|
|
48
|
-
}
|
|
49
|
-
get runtimeFunctionDefinition() {
|
|
50
|
-
return this._runtimeFunctionDefinition;
|
|
51
|
-
}
|
|
52
|
-
get throwsError() {
|
|
53
|
-
return this._throwsError;
|
|
54
|
-
}
|
|
55
|
-
get updatedAt() {
|
|
56
|
-
return this._updatedAt;
|
|
57
|
-
}
|
|
58
|
-
json() {
|
|
59
|
-
return {
|
|
60
|
-
createdAt: this._createdAt,
|
|
61
|
-
deprecationMessages: this._deprecationMessages,
|
|
62
|
-
descriptions: this._descriptions,
|
|
63
|
-
documentations: this._documentations,
|
|
64
|
-
genericKeys: this._genericKeys,
|
|
65
|
-
id: this._id,
|
|
66
|
-
names: this._names,
|
|
67
|
-
parameterDefinitions: this._parameterDefinitions ? {
|
|
68
|
-
nodes: this._parameterDefinitions.map((t) => t.json())
|
|
69
|
-
} : void 0,
|
|
70
|
-
returnType: this._returnType,
|
|
71
|
-
runtimeFunctionDefinition: this._runtimeFunctionDefinition,
|
|
72
|
-
throwsError: this._throwsError,
|
|
73
|
-
updatedAt: this._updatedAt
|
|
74
|
-
};
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
class o {
|
|
78
|
-
constructor(t) {
|
|
79
|
-
i(this, "_createdAt", void 0), i(this, "_dataTypeIdentifier", void 0), i(this, "_descriptions", void 0), i(this, "_documentations", void 0), i(this, "_id", void 0), i(this, "_names", void 0), i(this, "_updatedAt", void 0), this._createdAt = t.createdAt, this._dataTypeIdentifier = t.dataTypeIdentifier, this._descriptions = t.descriptions, this._documentations = t.documentations, this._id = t.id, this._names = t.names, this._updatedAt = t.updatedAt;
|
|
80
|
-
}
|
|
81
|
-
get createdAt() {
|
|
82
|
-
return this._createdAt;
|
|
83
|
-
}
|
|
84
|
-
get dataTypeIdentifier() {
|
|
85
|
-
return this._dataTypeIdentifier;
|
|
86
|
-
}
|
|
87
|
-
get descriptions() {
|
|
88
|
-
return this._descriptions;
|
|
89
|
-
}
|
|
90
|
-
get documentations() {
|
|
91
|
-
return this._documentations;
|
|
92
|
-
}
|
|
93
|
-
get id() {
|
|
94
|
-
return this._id;
|
|
95
|
-
}
|
|
96
|
-
get names() {
|
|
97
|
-
return this._names;
|
|
98
|
-
}
|
|
99
|
-
get updatedAt() {
|
|
100
|
-
return this._updatedAt;
|
|
101
|
-
}
|
|
102
|
-
json() {
|
|
103
|
-
return {
|
|
104
|
-
createdAt: this._createdAt,
|
|
105
|
-
dataTypeIdentifier: this._dataTypeIdentifier,
|
|
106
|
-
descriptions: this._descriptions,
|
|
107
|
-
documentations: this._documentations,
|
|
108
|
-
id: this._id,
|
|
109
|
-
names: this._names,
|
|
110
|
-
updatedAt: this._updatedAt
|
|
111
|
-
};
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
export {
|
|
115
|
-
a as FunctionDefinitionView,
|
|
116
|
-
o as ParameterDefinitionView
|
|
117
|
-
};
|