@code0-tech/pictor 0.0.0-mvp.29 → 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.
Files changed (125) hide show
  1. package/dist/_virtual/_commonjsHelpers.js +6 -0
  2. package/dist/_virtual/index.js +4 -0
  3. package/dist/_virtual/index2.js +4 -0
  4. package/dist/_virtual/react-contenteditable.js +7 -0
  5. package/dist/_virtual/react-contenteditable2.js +4 -0
  6. package/dist/_virtual/react-dom-server-legacy.browser.development.js +4 -0
  7. package/dist/_virtual/react-dom-server-legacy.browser.production.js +4 -0
  8. package/dist/_virtual/react-dom-server.browser.development.js +4 -0
  9. package/dist/_virtual/react-dom-server.browser.production.js +4 -0
  10. package/dist/_virtual/react-is.development.js +4 -0
  11. package/dist/_virtual/react-is.production.min.js +4 -0
  12. package/dist/_virtual/server.browser.js +5 -0
  13. package/dist/_virtual/server.browser2.js +4 -0
  14. package/dist/assets/components/d-resizable/DResizable.style.css +1 -1
  15. package/dist/assets/components/form/Input.style.css +1 -1
  16. package/dist/components/breadcrumb/Breadcrumb.js +12 -12
  17. package/dist/components/button-group/ButtonGroup.js +12 -12
  18. package/dist/components/d-flow/DFlow.edges.hook.js +57 -54
  19. package/dist/components/d-flow/DFlow.js +304 -268
  20. package/dist/components/d-flow/DFlow.nodes.hook.js +60 -59
  21. package/dist/components/d-flow/DFlow.service.d.ts +3 -2
  22. package/dist/components/d-flow/DFlow.service.js +62 -47
  23. package/dist/components/d-flow/DFlow.util.d.ts +4 -0
  24. package/dist/components/d-flow/DFlow.util.js +63 -0
  25. package/dist/components/d-flow/DFlowEdge.js +34 -34
  26. package/dist/components/d-flow-data-type/DFlowDataType.service.js +17 -14
  27. package/dist/components/d-flow-data-type/DFlowDataType.view.d.ts +7 -4
  28. package/dist/components/d-flow-data-type/DFlowDataType.view.js +11 -6
  29. package/dist/components/d-flow-file/DFlowTabDefault.d.ts +0 -3
  30. package/dist/components/d-flow-file/DFlowTabDefault.js +77 -112
  31. package/dist/components/d-flow-file/DFlowTabTrigger.js +38 -49
  32. package/dist/components/d-flow-file/DFlowTabs.js +26 -27
  33. package/dist/components/d-flow-folder/DFlowFolder.js +170 -143
  34. package/dist/components/d-flow-folder/DFlowFolderContextMenu.js +18 -11
  35. package/dist/components/d-flow-folder/DFlowFolderItemPathInput.js +1 -0
  36. package/dist/components/d-flow-function/DFlowFunction.input.hook.js +4 -5
  37. package/dist/components/d-flow-function/DFlowFunction.return.hook.js +1 -1
  38. package/dist/components/d-flow-function/DFlowFunction.view.d.ts +14 -11
  39. package/dist/components/d-flow-function/DFlowFunction.view.js +19 -12
  40. package/dist/components/d-flow-function/DFlowFunctionDefaultCard.js +72 -75
  41. package/dist/components/d-flow-function/DFlowFunctionSuggestionCard.js +27 -32
  42. package/dist/components/d-flow-function/DFlowFunctionTriggerCard.js +17 -10
  43. package/dist/components/d-flow-input/DFlowInputDataType.js +38 -33
  44. package/dist/components/d-flow-input/DFlowInputDefault.d.ts +10 -0
  45. package/dist/components/d-flow-input/DFlowInputDefault.js +128 -0
  46. package/dist/components/d-flow-input/DFlowInputLiteralBadge.d.ts +7 -0
  47. package/dist/components/d-flow-input/DFlowInputLiteralBadge.js +24 -0
  48. package/dist/components/d-flow-input/DFlowInputNodeBadge.d.ts +11 -0
  49. package/dist/components/d-flow-input/DFlowInputNodeBadge.js +44 -0
  50. package/dist/components/d-flow-input/DFlowInputReferenceBadge.d.ts +11 -0
  51. package/dist/components/d-flow-input/DFlowInputReferenceBadge.js +33 -0
  52. package/dist/components/d-flow-panel/DFlowExport.js +1 -1
  53. package/dist/components/d-flow-panel/DFlowMiniMap.js +1 -1
  54. package/dist/components/d-flow-panel/DFlowPanelControl.js +34 -32
  55. package/dist/components/d-flow-suggestion/DFlowDataTypeSuggestions.hook.d.ts +3 -0
  56. package/dist/components/d-flow-suggestion/DFlowDataTypeSuggestions.hook.js +34 -0
  57. package/dist/components/d-flow-suggestion/DFlowFunctionSuggestions.hook.d.ts +3 -0
  58. package/dist/components/d-flow-suggestion/DFlowFunctionSuggestions.hook.js +50 -0
  59. package/dist/components/d-flow-suggestion/DFlowReferenceSuggestions.hook.d.ts +3 -0
  60. package/dist/components/d-flow-suggestion/DFlowReferenceSuggestions.hook.js +133 -0
  61. package/dist/components/d-flow-suggestion/DFlowSuggestion.hook.d.ts +3 -18
  62. package/dist/components/d-flow-suggestion/DFlowSuggestion.hook.js +19 -156
  63. package/dist/components/d-flow-suggestion/DFlowSuggestionMenu.js +47 -58
  64. package/dist/components/d-flow-suggestion/DFlowSuggestionMenu.util.js +5 -4
  65. package/dist/components/d-flow-suggestion/DFlowSuggestionSearchInput.js +6 -6
  66. package/dist/components/d-flow-suggestion/DFlowValueSuggestions.hook.d.ts +3 -0
  67. package/dist/components/d-flow-suggestion/DFlowValueSuggestions.hook.js +44 -0
  68. package/dist/components/d-flow-type/DFlowType.view.d.ts +5 -5
  69. package/dist/components/d-flow-type/DFlowType.view.js +22 -12
  70. package/dist/components/d-flow-validation/DFlowValidation.hook.js +1 -1
  71. package/dist/components/d-flow-validation/DNodeValidation.hook.js +39 -43
  72. package/dist/components/d-resizable/DResizable.d.ts +4 -4
  73. package/dist/components/d-resizable/DResizable.js +22 -21
  74. package/dist/components/d-user/DUserInput.js +23 -21
  75. package/dist/components/file-tabs/FileTabs.service.d.ts +0 -1
  76. package/dist/components/file-tabs/FileTabs.service.js +49 -53
  77. package/dist/components/form/EmailInput.js +9 -9
  78. package/dist/components/form/Input.d.ts +2 -1
  79. package/dist/components/form/Input.js +294 -397
  80. package/dist/components/form/Input.syntax.hook.d.ts +1 -18
  81. package/dist/components/form/Input.syntax.hook.js +7 -73
  82. package/dist/components/form/Input.utils.d.ts +1 -2
  83. package/dist/components/form/Input.utils.js +26 -21
  84. package/dist/components/form/InputContentEditable.hook.d.ts +40 -0
  85. package/dist/components/form/InputContentEditable.hook.js +471 -0
  86. package/dist/components/form/InputSuggestion.d.ts +2 -2
  87. package/dist/components/form/InputSuggestion.js +169 -107
  88. package/dist/components/form/PasswordInput.js +8 -8
  89. package/dist/components/form/TextInput.js +11 -11
  90. package/dist/components/form/useForm.d.ts +1 -0
  91. package/dist/components/form/useForm.js +45 -60
  92. package/dist/components/menu/Menu.js +4 -4
  93. package/dist/index.js +155 -154
  94. package/dist/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +30 -30
  95. package/dist/node_modules/@radix-ui/react-portal/dist/index.js +8 -8
  96. package/dist/node_modules/@radix-ui/react-primitive/dist/index.js +8 -8
  97. package/dist/node_modules/fast-deep-equal/index.js +31 -0
  98. package/dist/node_modules/object-assign/index.js +49 -0
  99. package/dist/node_modules/prop-types/checkPropTypes.js +54 -0
  100. package/dist/node_modules/prop-types/factoryWithThrowingShims.js +52 -0
  101. package/dist/node_modules/prop-types/factoryWithTypeCheckers.js +329 -0
  102. package/dist/node_modules/prop-types/index.js +17 -0
  103. package/dist/node_modules/prop-types/lib/ReactPropTypesSecret.js +10 -0
  104. package/dist/node_modules/prop-types/lib/has.js +7 -0
  105. package/dist/node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js +87 -0
  106. package/dist/node_modules/prop-types/node_modules/react-is/cjs/react-is.production.min.js +70 -0
  107. package/dist/node_modules/prop-types/node_modules/react-is/index.js +10 -0
  108. package/dist/node_modules/react-contenteditable/lib/react-contenteditable.js +132 -0
  109. package/dist/node_modules/react-dom/cjs/react-dom-server-legacy.browser.development.js +6235 -0
  110. package/dist/node_modules/react-dom/cjs/react-dom-server-legacy.browser.production.js +4096 -0
  111. package/dist/node_modules/react-dom/cjs/react-dom-server.browser.development.js +6753 -0
  112. package/dist/node_modules/react-dom/cjs/react-dom-server.browser.production.js +4645 -0
  113. package/dist/node_modules/react-dom/server.browser.js +15 -0
  114. package/dist/utils/generics.d.ts +2 -0
  115. package/dist/utils/generics.js +93 -80
  116. package/dist/utils/index.js +22 -21
  117. package/dist/utils/inspection.d.ts +4 -2
  118. package/dist/utils/inspection.js +27 -2
  119. package/package.json +10 -8
  120. package/dist/components/form/Input.selection.hook.d.ts +0 -17
  121. package/dist/components/form/Input.selection.hook.js +0 -78
  122. package/dist/components/form/InputSyntax.d.ts +0 -19
  123. package/dist/components/form/InputSyntax.js +0 -52
  124. package/dist/components/form/inputSyntaxMapping.d.ts +0 -3
  125. package/dist/components/form/inputSyntaxMapping.js +0 -42
package/dist/index.js CHANGED
@@ -7,10 +7,10 @@ import { Button as g } from "./components/button/Button.js";
7
7
  import { ButtonGroup as d } from "./components/button-group/ButtonGroup.js";
8
8
  import { Card as v } from "./components/card/Card.js";
9
9
  import { Col as C } from "./components/col/Col.js";
10
- import { Command as T, CommandDialog as I, CommandEmpty as b, CommandGroup as P, CommandInput as M, CommandItem as N, CommandList as A, CommandSeparator as V, CommandShortcut as L } from "./components/command/Command.js";
10
+ import { Command as T, CommandDialog as I, CommandEmpty as b, CommandGroup as P, CommandInput as M, CommandItem as N, CommandList as y, CommandSeparator as A, CommandShortcut as V } from "./components/command/Command.js";
11
11
  import { Container as O } from "./components/container/Container.js";
12
12
  import { DFlow as z } from "./components/d-flow/DFlow.js";
13
- import { DFlowReactiveService as j } from "./components/d-flow/DFlow.service.js";
13
+ import { DFlowReactiveService as G } from "./components/d-flow/DFlow.service.js";
14
14
  import { FLOW_EDGE_RAINBOW as E, useFlowEdges as h } from "./components/d-flow/DFlow.edges.hook.js";
15
15
  import { useFlowNodes as W } from "./components/d-flow/DFlow.nodes.hook.js";
16
16
  import { DFlowDataTypeReactiveService as _ } from "./components/d-flow-data-type/DFlowDataType.service.js";
@@ -31,11 +31,11 @@ import { DFlowSuggestionType as Ce } from "./components/d-flow-suggestion/DFlowS
31
31
  import { DFlowTypeReactiveService as Te } from "./components/d-flow-type/DFlowType.service.js";
32
32
  import { FlowTypeView as be } from "./components/d-flow-type/DFlowType.view.js";
33
33
  import { useFlowValidation as Me } from "./components/d-flow-validation/DFlowValidation.hook.js";
34
- import { DFlowValidation as Ae } from "./components/d-flow-validation/DFlowValidation.js";
35
- import { DFullScreen as Le } from "./components/d-fullscreen/DFullScreen.js";
34
+ import { DFlowValidation as ye } from "./components/d-flow-validation/DFlowValidation.js";
35
+ import { DFullScreen as Ve } from "./components/d-fullscreen/DFullScreen.js";
36
36
  import { DLayout as Oe } from "./components/d-layout/DLayout.js";
37
37
  import { DNamespaceLicenseReactiveService as ze } from "./components/d-license/DNamespaceLicense.service.js";
38
- import { DNamespaceLicenseView as je } from "./components/d-license/DNamespaceLicense.view.js";
38
+ import { DNamespaceLicenseView as Ge } from "./components/d-license/DNamespaceLicense.view.js";
39
39
  import { DNamespaceMemberReactiveService as Ee } from "./components/d-member/DNamespaceMember.service.js";
40
40
  import { DNamespaceMemberView as He } from "./components/d-member/DNamespaceMember.view.js";
41
41
  import { DNamespaceMemberCard as ke } from "./components/d-member/DNamespaceMemberCard.js";
@@ -48,60 +48,60 @@ import "react/jsx-runtime";
48
48
  import "./_virtual/compiler-runtime.js";
49
49
  import "react";
50
50
  import { ContextStore as ro, ContextStoreProvider as to, useService as po, useStore as mo } from "./utils/contextStore.js";
51
- import { InspectionSeverity as io } from "./utils/inspection.js";
52
- import { NonReactiveArrayService as xo, createNonReactiveArrayService as fo } from "./utils/nonReactiveArrayService.js";
53
- import { ObjectService as co, createObjectService as Do } from "./utils/objectStore.js";
54
- import { ReactiveArrayService as uo, useReactiveArrayService as go } from "./utils/reactiveArrayService.js";
55
- import { Colors as wo } from "./utils/types.js";
56
- import { getChild as Fo, getContent as Co, getPositionAroundTarget as Ro, getPositioning as To, getWindowPositioning as Io, mergeCode0Props as bo, parseUnit as Po } from "./utils/utils.js";
57
- import { Text as No } from "./components/text/Text.js";
51
+ import { InspectionSeverity as io, underlineBySeverity as no } from "./utils/inspection.js";
52
+ import { NonReactiveArrayService as fo, createNonReactiveArrayService as lo } from "./utils/nonReactiveArrayService.js";
53
+ import { ObjectService as Do, createObjectService as so } from "./utils/objectStore.js";
54
+ import { ReactiveArrayService as go, useReactiveArrayService as So } from "./utils/reactiveArrayService.js";
55
+ import { Colors as vo } from "./utils/types.js";
56
+ import { getChild as Co, getContent as Ro, getPositionAroundTarget as To, getPositioning as Io, getWindowPositioning as bo, mergeCode0Props as Po, parseUnit as Mo } from "./utils/utils.js";
57
+ import { Text as yo } from "./components/text/Text.js";
58
58
  import "@tabler/icons-react";
59
59
  import { Flex as Vo } from "./components/flex/Flex.js";
60
- import { Spacing as yo } from "./components/spacing/Spacing.js";
61
- import { DUserReactiveService as Uo } from "./components/d-user/DUser.service.js";
60
+ import { Spacing as Oo } from "./components/spacing/Spacing.js";
61
+ import { DUserReactiveService as zo } from "./components/d-user/DUser.service.js";
62
62
  import { DUserView as Go } from "./components/d-user/DUser.view.js";
63
- import { Menu as Bo, MenuArrow as Eo, MenuContent as ho, MenuGroup as Ho, MenuItem as Wo, MenuLabel as ko, MenuPortal as _o, MenuSeparator as Qo, MenuSub as qo, MenuSubContent as Jo, MenuSubTrigger as Ko, MenuTrigger as Xo } from "./components/menu/Menu.js";
64
- import { DUserCard as Zo } from "./components/d-user/DUserCard.js";
65
- import { DUserList as er } from "./components/d-user/DUserList.js";
66
- import { DUserInput as rr } from "./components/d-user/DUserInput.js";
67
- import { setUserSession as pr, useUserSession as mr } from "./components/d-user/DUser.session.hook.js";
68
- import { DOrganizationList as ir } from "./components/d-organization/DOrganizationList.js";
69
- import { DNamespaceProjectReactiveService as xr } from "./components/d-project/DNamespaceProject.service.js";
70
- import { DNamespaceProjectView as lr } from "./components/d-project/DNamespaceProject.view.js";
71
- import { DNamespaceProjectCard as Dr } from "./components/d-project/DNamespaceProjectCard.js";
72
- import { DNamespaceProjectList as ur } from "./components/d-project/DNamespaceProjectList.js";
73
- import { DRuntimeReactiveService as Sr } from "./components/d-runtime/DRuntime.service.js";
74
- import { DRuntimeView as wr } from "./components/d-runtime/DRuntime.view.js";
75
- import { DRuntimeCard as Fr } from "./components/d-runtime/DRuntimeCard.js";
76
- import { DRuntimeList as Rr } from "./components/d-runtime/DRuntimeList.js";
77
- import { DResizableHandle as Ir, DResizablePanel as br, DResizablePanelGroup as Pr } from "./components/d-resizable/DResizable.js";
78
- import { DNamespaceRoleReactiveService as Nr } from "./components/d-role/DNamespaceRole.service.js";
63
+ import { Menu as Eo, MenuArrow as ho, MenuContent as Ho, MenuGroup as Wo, MenuItem as ko, MenuLabel as _o, MenuPortal as Qo, MenuSeparator as qo, MenuSub as Jo, MenuSubContent as Ko, MenuSubTrigger as Xo, MenuTrigger as Yo } from "./components/menu/Menu.js";
64
+ import { DUserCard as $o } from "./components/d-user/DUserCard.js";
65
+ import { DUserList as or } from "./components/d-user/DUserList.js";
66
+ import { DUserInput as tr } from "./components/d-user/DUserInput.js";
67
+ import { setUserSession as mr, useUserSession as ar } from "./components/d-user/DUser.session.hook.js";
68
+ import { DOrganizationList as nr } from "./components/d-organization/DOrganizationList.js";
69
+ import { DNamespaceProjectReactiveService as fr } from "./components/d-project/DNamespaceProject.service.js";
70
+ import { DNamespaceProjectView as cr } from "./components/d-project/DNamespaceProject.view.js";
71
+ import { DNamespaceProjectCard as sr } from "./components/d-project/DNamespaceProjectCard.js";
72
+ import { DNamespaceProjectList as gr } from "./components/d-project/DNamespaceProjectList.js";
73
+ import { DRuntimeReactiveService as dr } from "./components/d-runtime/DRuntime.service.js";
74
+ import { DRuntimeView as vr } from "./components/d-runtime/DRuntime.view.js";
75
+ import { DRuntimeCard as Cr } from "./components/d-runtime/DRuntimeCard.js";
76
+ import { DRuntimeList as Tr } from "./components/d-runtime/DRuntimeList.js";
77
+ import { DResizableHandle as br, DResizablePanel as Pr, DResizablePanelGroup as Mr } from "./components/d-resizable/DResizable.js";
78
+ import { DNamespaceRoleReactiveService as yr } from "./components/d-role/DNamespaceRole.service.js";
79
79
  import { DNamespaceRoleView as Vr } from "./components/d-role/DNamespaceRole.view.js";
80
- import { DNamespaceRoleList as yr } from "./components/d-role/DNamespaceRoleList.js";
81
- import { DNamespaceRoleCard as Ur } from "./components/d-role/DNamespaceRoleCard.js";
82
- import { Dialog as Gr, DialogClose as jr, DialogContent as Br, DialogDescription as Er, DialogFooter as hr, DialogHeader as Hr, DialogOverlay as Wr, DialogPortal as kr, DialogTitle as _r, DialogTrigger as Qr } from "./components/dialog/Dialog.js";
83
- import { CheckboxInput as Jr } from "./components/form/CheckboxInput.js";
84
- import { EmailInput as Xr, emailValidation as Yr } from "./components/form/EmailInput.js";
85
- import { Input as $r } from "./components/form/Input.js";
86
- import { InputDescription as ot } from "./components/form/InputDescription.js";
87
- import { InputLabel as tt } from "./components/form/InputLabel.js";
88
- import { InputMessage as mt } from "./components/form/InputMessage.js";
89
- import { InputSuggestionMenuContent as it, InputSuggestionMenuContentItems as nt } from "./components/form/InputSuggestion.js";
90
- import { NumberInput as ft } from "./components/form/NumberInput.js";
91
- import { PasswordInput as ct } from "./components/form/PasswordInput.js";
92
- import { PinInput as st, PinInputField as ut, PinInputHiddenField as gt } from "./components/form/PinInput.js";
93
- import { RadioGroup as dt } from "./components/form/RadioGroup.js";
94
- import { RadioInput as vt } from "./components/form/RadioInput.js";
95
- import { SwitchInput as Ct } from "./components/form/SwitchInput.js";
96
- import { TextInput as Tt } from "./components/form/TextInput.js";
97
- import { useForm as bt } from "./components/form/useForm.js";
98
- import { Quote as Mt } from "./components/quote/Quote.js";
80
+ import { DNamespaceRoleList as Or } from "./components/d-role/DNamespaceRoleList.js";
81
+ import { DNamespaceRoleCard as zr } from "./components/d-role/DNamespaceRoleCard.js";
82
+ import { Dialog as Gr, DialogClose as jr, DialogContent as Er, DialogDescription as hr, DialogFooter as Hr, DialogHeader as Wr, DialogOverlay as kr, DialogPortal as _r, DialogTitle as Qr, DialogTrigger as qr } from "./components/dialog/Dialog.js";
83
+ import { CheckboxInput as Kr } from "./components/form/CheckboxInput.js";
84
+ import { EmailInput as Yr, emailValidation as Zr } from "./components/form/EmailInput.js";
85
+ import { Input as et } from "./components/form/Input.js";
86
+ import { InputDescription as rt } from "./components/form/InputDescription.js";
87
+ import { InputLabel as pt } from "./components/form/InputLabel.js";
88
+ import { InputMessage as at } from "./components/form/InputMessage.js";
89
+ import { InputSuggestionMenuContent as nt, InputSuggestionMenuContentItems as xt } from "./components/form/InputSuggestion.js";
90
+ import { NumberInput as lt } from "./components/form/NumberInput.js";
91
+ import { PasswordInput as Dt } from "./components/form/PasswordInput.js";
92
+ import { PinInput as ut, PinInputField as gt, PinInputHiddenField as St } from "./components/form/PinInput.js";
93
+ import { RadioGroup as wt } from "./components/form/RadioGroup.js";
94
+ import { RadioInput as Ft } from "./components/form/RadioInput.js";
95
+ import { SwitchInput as Rt } from "./components/form/SwitchInput.js";
96
+ import { TextInput as It } from "./components/form/TextInput.js";
97
+ import { useForm as Pt } from "./components/form/useForm.js";
98
+ import { Quote as Nt } from "./components/quote/Quote.js";
99
99
  import { Row as At } from "./components/row/Row.js";
100
- import { ScrollArea as Lt, ScrollAreaCorner as yt, ScrollAreaScrollbar as Ot, ScrollAreaThumb as Ut, ScrollAreaViewport as zt } from "./components/scroll-area/ScrollArea.js";
101
- import { SegmentedControl as jt, SegmentedControlItem as Bt } from "./components/segmented-control/SegmentedControl.js";
102
- import { Tab as ht, TabContent as Ht, TabList as Wt, TabTrigger as kt } from "./components/tab/Tab.js";
103
- import { Toast as Qt, toast as qt } from "./components/toast/Toast.js";
104
- import { Tooltip as Kt, TooltipArrow as Xt, TooltipContent as Yt, TooltipPortal as Zt, TooltipTrigger as $t } from "./components/tooltip/Tooltip.js";
100
+ import { ScrollArea as Lt, ScrollAreaCorner as Ot, ScrollAreaScrollbar as Ut, ScrollAreaThumb as zt, ScrollAreaViewport as Bt } from "./components/scroll-area/ScrollArea.js";
101
+ import { SegmentedControl as jt, SegmentedControlItem as Et } from "./components/segmented-control/SegmentedControl.js";
102
+ import { Tab as Ht, TabContent as Wt, TabList as kt, TabTrigger as _t } from "./components/tab/Tab.js";
103
+ import { Toast as qt, toast as Jt } from "./components/toast/Toast.js";
104
+ import { Tooltip as Xt, TooltipArrow as Yt, TooltipContent as Zt, TooltipPortal as $t, TooltipTrigger as ep } from "./components/tooltip/Tooltip.js";
105
105
  export {
106
106
  a as Alert,
107
107
  n as AuroraBackground,
@@ -111,18 +111,18 @@ export {
111
111
  g as Button,
112
112
  d as ButtonGroup,
113
113
  v as Card,
114
- Jr as CheckboxInput,
114
+ Kr as CheckboxInput,
115
115
  C as Col,
116
- wo as Colors,
116
+ vo as Colors,
117
117
  T as Command,
118
118
  I as CommandDialog,
119
119
  b as CommandEmpty,
120
120
  P as CommandGroup,
121
121
  M as CommandInput,
122
122
  N as CommandItem,
123
- A as CommandList,
124
- V as CommandSeparator,
125
- L as CommandShortcut,
123
+ y as CommandList,
124
+ A as CommandSeparator,
125
+ V as CommandShortcut,
126
126
  O as Container,
127
127
  ro as ContextStore,
128
128
  to as ContextStoreProvider,
@@ -140,131 +140,132 @@ export {
140
140
  se as DFlowPanelControl,
141
141
  ve as DFlowPanelLayout,
142
142
  ce as DFlowPanelSize,
143
- j as DFlowReactiveService,
143
+ G as DFlowReactiveService,
144
144
  Ce as DFlowSuggestionType,
145
145
  K as DFlowTabs,
146
146
  Te as DFlowTypeReactiveService,
147
- Ae as DFlowValidation,
148
- Le as DFullScreen,
147
+ ye as DFlowValidation,
148
+ Ve as DFullScreen,
149
149
  Oe as DLayout,
150
150
  ze as DNamespaceLicenseReactiveService,
151
- je as DNamespaceLicenseView,
151
+ Ge as DNamespaceLicenseView,
152
152
  ke as DNamespaceMemberCard,
153
153
  Qe as DNamespaceMemberList,
154
154
  Ee as DNamespaceMemberReactiveService,
155
155
  He as DNamespaceMemberView,
156
- Dr as DNamespaceProjectCard,
157
- ur as DNamespaceProjectList,
158
- xr as DNamespaceProjectReactiveService,
159
- lr as DNamespaceProjectView,
156
+ sr as DNamespaceProjectCard,
157
+ gr as DNamespaceProjectList,
158
+ fr as DNamespaceProjectReactiveService,
159
+ cr as DNamespaceProjectView,
160
160
  Je as DNamespaceReactiveService,
161
- Ur as DNamespaceRoleCard,
162
- yr as DNamespaceRoleList,
163
- Nr as DNamespaceRoleReactiveService,
161
+ zr as DNamespaceRoleCard,
162
+ Or as DNamespaceRoleList,
163
+ yr as DNamespaceRoleReactiveService,
164
164
  Vr as DNamespaceRoleView,
165
165
  Xe as DNamespaceView,
166
- ir as DOrganizationList,
166
+ nr as DOrganizationList,
167
167
  Ze as DOrganizationReactiveService,
168
168
  eo as DOrganizationView,
169
- Ir as DResizableHandle,
170
- br as DResizablePanel,
171
- Pr as DResizablePanelGroup,
172
- Fr as DRuntimeCard,
173
- Rr as DRuntimeList,
174
- Sr as DRuntimeReactiveService,
175
- wr as DRuntimeView,
176
- Zo as DUserCard,
177
- rr as DUserInput,
178
- er as DUserList,
179
- Uo as DUserReactiveService,
169
+ br as DResizableHandle,
170
+ Pr as DResizablePanel,
171
+ Mr as DResizablePanelGroup,
172
+ Cr as DRuntimeCard,
173
+ Tr as DRuntimeList,
174
+ dr as DRuntimeReactiveService,
175
+ vr as DRuntimeView,
176
+ $o as DUserCard,
177
+ tr as DUserInput,
178
+ or as DUserList,
179
+ zo as DUserReactiveService,
180
180
  Go as DUserView,
181
181
  q as DataTypeView,
182
182
  Gr as Dialog,
183
183
  jr as DialogClose,
184
- Br as DialogContent,
185
- Er as DialogDescription,
186
- hr as DialogFooter,
187
- Hr as DialogHeader,
188
- Wr as DialogOverlay,
189
- kr as DialogPortal,
190
- _r as DialogTitle,
191
- Qr as DialogTrigger,
192
- Xr as EmailInput,
184
+ Er as DialogContent,
185
+ hr as DialogDescription,
186
+ Hr as DialogFooter,
187
+ Wr as DialogHeader,
188
+ kr as DialogOverlay,
189
+ _r as DialogPortal,
190
+ Qr as DialogTitle,
191
+ qr as DialogTrigger,
192
+ Yr as EmailInput,
193
193
  E as FLOW_EDGE_RAINBOW,
194
194
  Vo as Flex,
195
195
  be as FlowTypeView,
196
196
  xe as FunctionDefinitionView,
197
- $r as Input,
198
- ot as InputDescription,
199
- tt as InputLabel,
200
- mt as InputMessage,
201
- it as InputSuggestionMenuContent,
202
- nt as InputSuggestionMenuContentItems,
197
+ et as Input,
198
+ rt as InputDescription,
199
+ pt as InputLabel,
200
+ at as InputMessage,
201
+ nt as InputSuggestionMenuContent,
202
+ xt as InputSuggestionMenuContentItems,
203
203
  io as InspectionSeverity,
204
- Bo as Menu,
205
- Eo as MenuArrow,
206
- ho as MenuContent,
207
- Ho as MenuGroup,
208
- Wo as MenuItem,
209
- ko as MenuLabel,
210
- _o as MenuPortal,
211
- Qo as MenuSeparator,
212
- qo as MenuSub,
213
- Jo as MenuSubContent,
214
- Ko as MenuSubTrigger,
215
- Xo as MenuTrigger,
216
- xo as NonReactiveArrayService,
217
- ft as NumberInput,
218
- co as ObjectService,
204
+ Eo as Menu,
205
+ ho as MenuArrow,
206
+ Ho as MenuContent,
207
+ Wo as MenuGroup,
208
+ ko as MenuItem,
209
+ _o as MenuLabel,
210
+ Qo as MenuPortal,
211
+ qo as MenuSeparator,
212
+ Jo as MenuSub,
213
+ Ko as MenuSubContent,
214
+ Xo as MenuSubTrigger,
215
+ Yo as MenuTrigger,
216
+ fo as NonReactiveArrayService,
217
+ lt as NumberInput,
218
+ Do as ObjectService,
219
219
  fe as ParameterDefinitionView,
220
- ct as PasswordInput,
221
- st as PinInput,
222
- ut as PinInputField,
223
- gt as PinInputHiddenField,
224
- Mt as Quote,
225
- dt as RadioGroup,
226
- vt as RadioInput,
227
- uo as ReactiveArrayService,
220
+ Dt as PasswordInput,
221
+ ut as PinInput,
222
+ gt as PinInputField,
223
+ St as PinInputHiddenField,
224
+ Nt as Quote,
225
+ wt as RadioGroup,
226
+ Ft as RadioInput,
227
+ go as ReactiveArrayService,
228
228
  At as Row,
229
229
  Lt as ScrollArea,
230
- yt as ScrollAreaCorner,
231
- Ot as ScrollAreaScrollbar,
232
- Ut as ScrollAreaThumb,
233
- zt as ScrollAreaViewport,
230
+ Ot as ScrollAreaCorner,
231
+ Ut as ScrollAreaScrollbar,
232
+ zt as ScrollAreaThumb,
233
+ Bt as ScrollAreaViewport,
234
234
  jt as SegmentedControl,
235
- Bt as SegmentedControlItem,
236
- yo as Spacing,
237
- Ct as SwitchInput,
238
- ht as Tab,
239
- Ht as TabContent,
240
- Wt as TabList,
241
- kt as TabTrigger,
242
- No as Text,
243
- Tt as TextInput,
244
- Qt as Toast,
245
- Kt as Tooltip,
246
- Xt as TooltipArrow,
247
- Yt as TooltipContent,
248
- Zt as TooltipPortal,
249
- $t as TooltipTrigger,
250
- fo as createNonReactiveArrayService,
251
- Do as createObjectService,
252
- Yr as emailValidation,
253
- Fo as getChild,
254
- Co as getContent,
255
- Ro as getPositionAroundTarget,
256
- To as getPositioning,
257
- Io as getWindowPositioning,
258
- bo as mergeCode0Props,
259
- Po as parseUnit,
260
- pr as setUserSession,
261
- qt as toast,
235
+ Et as SegmentedControlItem,
236
+ Oo as Spacing,
237
+ Rt as SwitchInput,
238
+ Ht as Tab,
239
+ Wt as TabContent,
240
+ kt as TabList,
241
+ _t as TabTrigger,
242
+ yo as Text,
243
+ It as TextInput,
244
+ qt as Toast,
245
+ Xt as Tooltip,
246
+ Yt as TooltipArrow,
247
+ Zt as TooltipContent,
248
+ $t as TooltipPortal,
249
+ ep as TooltipTrigger,
250
+ lo as createNonReactiveArrayService,
251
+ so as createObjectService,
252
+ Zr as emailValidation,
253
+ Co as getChild,
254
+ Ro as getContent,
255
+ To as getPositionAroundTarget,
256
+ Io as getPositioning,
257
+ bo as getWindowPositioning,
258
+ Po as mergeCode0Props,
259
+ Mo as parseUnit,
260
+ mr as setUserSession,
261
+ Jt as toast,
262
+ no as underlineBySeverity,
262
263
  h as useFlowEdges,
263
264
  W as useFlowNodes,
264
265
  Me as useFlowValidation,
265
- bt as useForm,
266
- go as useReactiveArrayService,
266
+ Pt as useForm,
267
+ So as useReactiveArrayService,
267
268
  po as useService,
268
269
  mo as useStore,
269
- mr as useUserSession
270
+ ar as useUserSession
270
271
  };
@@ -35,11 +35,11 @@ function R(e, t) {
35
35
  }
36
36
  return e !== e && t !== t;
37
37
  }
38
- function A(e) {
38
+ function q(e) {
39
39
  return typeof window > "u" ? 1 : (e.ownerDocument.defaultView || window).devicePixelRatio || 1;
40
40
  }
41
41
  function L(e, t) {
42
- const n = A(e);
42
+ const n = q(e);
43
43
  return Math.round(t * n) / n;
44
44
  }
45
45
  function k(e) {
@@ -57,10 +57,10 @@ function oe(e) {
57
57
  platform: i,
58
58
  elements: {
59
59
  reference: p,
60
- floating: q
60
+ floating: A
61
61
  } = {},
62
- transform: D = !0,
63
- whileElementsMounted: E,
62
+ transform: E = !0,
63
+ whileElementsMounted: D,
64
64
  open: x
65
65
  } = e, [s, C] = o.useState({
66
66
  x: 0,
@@ -69,56 +69,56 @@ function oe(e) {
69
69
  placement: t,
70
70
  middlewareData: {},
71
71
  isPositioned: !1
72
- }), [M, B] = o.useState(r);
73
- R(M, r) || B(r);
74
- const [U, V] = o.useState(null), [W, G] = o.useState(null), O = o.useCallback((f) => {
72
+ }), [S, B] = o.useState(r);
73
+ R(S, r) || B(r);
74
+ const [U, V] = o.useState(null), [W, G] = o.useState(null), _ = o.useCallback((f) => {
75
75
  f !== a.current && (a.current = f, V(f));
76
- }, []), _ = o.useCallback((f) => {
76
+ }, []), v = o.useCallback((f) => {
77
77
  f !== d.current && (d.current = f, G(f));
78
- }, []), u = p || U, l = q || W, a = o.useRef(null), d = o.useRef(null), y = o.useRef(s), H = E != null, S = k(E), P = k(i), v = k(x), g = o.useCallback(() => {
78
+ }, []), u = p || U, l = A || W, a = o.useRef(null), d = o.useRef(null), y = o.useRef(s), H = D != null, $ = k(D), M = k(i), F = k(x), g = o.useCallback(() => {
79
79
  if (!a.current || !d.current)
80
80
  return;
81
81
  const f = {
82
82
  placement: t,
83
83
  strategy: n,
84
- middleware: M
84
+ middleware: S
85
85
  };
86
- P.current && (f.platform = P.current), I(a.current, d.current, f).then((h) => {
86
+ M.current && (f.platform = M.current), I(a.current, d.current, f).then((h) => {
87
87
  const m = {
88
88
  ...h,
89
89
  // The floating element's position may be recomputed while it's closed
90
90
  // but still mounted (such as when transitioning out). To ensure
91
91
  // `isPositioned` will be `false` initially on the next open, avoid
92
92
  // setting it to `true` when `open === false` (must be specified).
93
- isPositioned: v.current !== !1
93
+ isPositioned: F.current !== !1
94
94
  };
95
- $.current && !R(y.current, m) && (y.current = m, Z.flushSync(() => {
95
+ P.current && !R(y.current, m) && (y.current = m, Z.flushSync(() => {
96
96
  C(m);
97
97
  }));
98
98
  });
99
- }, [M, t, n, P, v]);
99
+ }, [S, t, n, M, F]);
100
100
  w(() => {
101
101
  x === !1 && y.current.isPositioned && (y.current.isPositioned = !1, C((f) => ({
102
102
  ...f,
103
103
  isPositioned: !1
104
104
  })));
105
105
  }, [x]);
106
- const $ = o.useRef(!1);
107
- w(() => ($.current = !0, () => {
108
- $.current = !1;
106
+ const P = o.useRef(!1);
107
+ w(() => (P.current = !0, () => {
108
+ P.current = !1;
109
109
  }), []), w(() => {
110
110
  if (u && (a.current = u), l && (d.current = l), u && l) {
111
- if (S.current)
112
- return S.current(u, l, g);
111
+ if ($.current)
112
+ return $.current(u, l, g);
113
113
  g();
114
114
  }
115
- }, [u, l, g, S, H]);
116
- const F = o.useMemo(() => ({
115
+ }, [u, l, g, $, H]);
116
+ const O = o.useMemo(() => ({
117
117
  reference: a,
118
118
  floating: d,
119
- setReference: O,
120
- setFloating: _
121
- }), [O, _]), c = o.useMemo(() => ({
119
+ setReference: _,
120
+ setFloating: v
121
+ }), [_, v]), c = o.useMemo(() => ({
122
122
  reference: u,
123
123
  floating: l
124
124
  }), [u, l]), j = o.useMemo(() => {
@@ -130,10 +130,10 @@ function oe(e) {
130
130
  if (!c.floating)
131
131
  return f;
132
132
  const h = L(c.floating, s.x), m = L(c.floating, s.y);
133
- return D ? {
133
+ return E ? {
134
134
  ...f,
135
135
  transform: "translate(" + h + "px, " + m + "px)",
136
- ...A(c.floating) >= 1.5 && {
136
+ ...q(c.floating) >= 1.5 && {
137
137
  willChange: "transform"
138
138
  }
139
139
  } : {
@@ -141,14 +141,14 @@ function oe(e) {
141
141
  left: h,
142
142
  top: m
143
143
  };
144
- }, [n, D, c.floating, s.x, s.y]);
144
+ }, [n, E, c.floating, s.x, s.y]);
145
145
  return o.useMemo(() => ({
146
146
  ...s,
147
147
  update: g,
148
- refs: F,
148
+ refs: O,
149
149
  elements: c,
150
150
  floatingStyles: j
151
- }), [s, g, F, c, j]);
151
+ }), [s, g, O, c, j]);
152
152
  }
153
153
  const te = (e) => {
154
154
  function t(n) {
@@ -1,13 +1,13 @@
1
- import * as o from "react";
1
+ import * as t from "react";
2
2
  import n from "react-dom";
3
3
  import { Primitive as s } from "../../react-primitive/dist/index.js";
4
- import { useLayoutEffect as c } from "../../react-use-layout-effect/dist/index.js";
5
- import { jsx as u } from "react/jsx-runtime";
6
- var l = "Portal", p = o.forwardRef((r, e) => {
7
- const { container: a, ...f } = r, [i, m] = o.useState(!1);
8
- c(() => m(!0), []);
9
- const t = a || i && globalThis?.document?.body;
10
- return t ? n.createPortal(/* @__PURE__ */ u(s.div, { ...f, ref: e }), t) : null;
4
+ import { useLayoutEffect as u } from "../../react-use-layout-effect/dist/index.js";
5
+ import { jsx as c } from "react/jsx-runtime";
6
+ var l = "Portal", p = t.forwardRef((o, e) => {
7
+ const { container: a, ...i } = o, [f, m] = t.useState(!1);
8
+ u(() => m(!0), []);
9
+ const r = a || f && globalThis?.document?.body;
10
+ return r ? n.createPortal(/* @__PURE__ */ c(s.div, { ...i, ref: e }), r) : null;
11
11
  });
12
12
  p.displayName = l;
13
13
  export {
@@ -1,8 +1,8 @@
1
1
  import * as f from "react";
2
2
  import * as p from "react-dom";
3
3
  import { createSlot as c } from "../../react-slot/dist/index.js";
4
- import { jsx as l } from "react/jsx-runtime";
5
- var u = [
4
+ import { jsx as u } from "react/jsx-runtime";
5
+ var l = [
6
6
  "a",
7
7
  "button",
8
8
  "div",
@@ -20,15 +20,15 @@ var u = [
20
20
  "span",
21
21
  "svg",
22
22
  "ul"
23
- ], h = u.reduce((t, i) => {
24
- const o = c(`Primitive.${i}`), r = f.forwardRef((e, m) => {
23
+ ], h = l.reduce((r, i) => {
24
+ const o = c(`Primitive.${i}`), t = f.forwardRef((e, m) => {
25
25
  const { asChild: s, ...a } = e, n = s ? o : i;
26
- return typeof window < "u" && (window[Symbol.for("radix-ui")] = !0), /* @__PURE__ */ l(n, { ...a, ref: m });
26
+ return typeof window < "u" && (window[Symbol.for("radix-ui")] = !0), /* @__PURE__ */ u(n, { ...a, ref: m });
27
27
  });
28
- return r.displayName = `Primitive.${i}`, { ...t, [i]: r };
28
+ return t.displayName = `Primitive.${i}`, { ...r, [i]: t };
29
29
  }, {});
30
- function w(t, i) {
31
- t && p.flushSync(() => t.dispatchEvent(i));
30
+ function w(r, i) {
31
+ r && p.flushSync(() => r.dispatchEvent(i));
32
32
  }
33
33
  export {
34
34
  h as Primitive,
@@ -0,0 +1,31 @@
1
+ var o, c;
2
+ function l() {
3
+ return c || (c = 1, o = function n(r, e) {
4
+ if (r === e) return !0;
5
+ if (r && e && typeof r == "object" && typeof e == "object") {
6
+ if (r.constructor !== e.constructor) return !1;
7
+ var u, t, f;
8
+ if (Array.isArray(r)) {
9
+ if (u = r.length, u != e.length) return !1;
10
+ for (t = u; t-- !== 0; )
11
+ if (!n(r[t], e[t])) return !1;
12
+ return !0;
13
+ }
14
+ if (r.constructor === RegExp) return r.source === e.source && r.flags === e.flags;
15
+ if (r.valueOf !== Object.prototype.valueOf) return r.valueOf() === e.valueOf();
16
+ if (r.toString !== Object.prototype.toString) return r.toString() === e.toString();
17
+ if (f = Object.keys(r), u = f.length, u !== Object.keys(e).length) return !1;
18
+ for (t = u; t-- !== 0; )
19
+ if (!Object.prototype.hasOwnProperty.call(e, f[t])) return !1;
20
+ for (t = u; t-- !== 0; ) {
21
+ var s = f[t];
22
+ if (!n(r[s], e[s])) return !1;
23
+ }
24
+ return !0;
25
+ }
26
+ return r !== r && e !== e;
27
+ }), o;
28
+ }
29
+ export {
30
+ l as __require
31
+ };