@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.
- package/dist/_virtual/_commonjsHelpers.js +6 -0
- package/dist/_virtual/index.js +4 -0
- package/dist/_virtual/index2.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/d-resizable/DResizable.style.css +1 -1
- package/dist/assets/components/form/Input.style.css +1 -1
- package/dist/components/breadcrumb/Breadcrumb.js +12 -12
- package/dist/components/button-group/ButtonGroup.js +12 -12
- package/dist/components/d-flow/DFlow.edges.hook.js +57 -54
- package/dist/components/d-flow/DFlow.js +304 -268
- package/dist/components/d-flow/DFlow.nodes.hook.js +60 -59
- package/dist/components/d-flow/DFlow.service.d.ts +3 -2
- package/dist/components/d-flow/DFlow.service.js +62 -47
- 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/DFlowEdge.js +34 -34
- package/dist/components/d-flow-data-type/DFlowDataType.service.js +17 -14
- package/dist/components/d-flow-data-type/DFlowDataType.view.d.ts +7 -4
- package/dist/components/d-flow-data-type/DFlowDataType.view.js +11 -6
- package/dist/components/d-flow-file/DFlowTabDefault.d.ts +0 -3
- package/dist/components/d-flow-file/DFlowTabDefault.js +77 -112
- package/dist/components/d-flow-file/DFlowTabTrigger.js +38 -49
- package/dist/components/d-flow-file/DFlowTabs.js +26 -27
- package/dist/components/d-flow-folder/DFlowFolder.js +170 -143
- package/dist/components/d-flow-folder/DFlowFolderContextMenu.js +18 -11
- package/dist/components/d-flow-folder/DFlowFolderItemPathInput.js +1 -0
- package/dist/components/d-flow-function/DFlowFunction.input.hook.js +4 -5
- package/dist/components/d-flow-function/DFlowFunction.return.hook.js +1 -1
- package/dist/components/d-flow-function/DFlowFunction.view.d.ts +14 -11
- package/dist/components/d-flow-function/DFlowFunction.view.js +19 -12
- package/dist/components/d-flow-function/DFlowFunctionDefaultCard.js +72 -75
- package/dist/components/d-flow-function/DFlowFunctionSuggestionCard.js +27 -32
- package/dist/components/d-flow-function/DFlowFunctionTriggerCard.js +17 -10
- package/dist/components/d-flow-input/DFlowInputDataType.js +38 -33
- 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.js +1 -1
- package/dist/components/d-flow-panel/DFlowMiniMap.js +1 -1
- package/dist/components/d-flow-panel/DFlowPanelControl.js +34 -32
- 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 -18
- package/dist/components/d-flow-suggestion/DFlowSuggestion.hook.js +19 -156
- package/dist/components/d-flow-suggestion/DFlowSuggestionMenu.js +47 -58
- package/dist/components/d-flow-suggestion/DFlowSuggestionMenu.util.js +5 -4
- package/dist/components/d-flow-suggestion/DFlowSuggestionSearchInput.js +6 -6
- 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-type/DFlowType.view.d.ts +5 -5
- package/dist/components/d-flow-type/DFlowType.view.js +22 -12
- package/dist/components/d-flow-validation/DFlowValidation.hook.js +1 -1
- package/dist/components/d-flow-validation/DNodeValidation.hook.js +39 -43
- package/dist/components/d-resizable/DResizable.d.ts +4 -4
- package/dist/components/d-resizable/DResizable.js +22 -21
- package/dist/components/d-user/DUserInput.js +23 -21
- package/dist/components/file-tabs/FileTabs.service.d.ts +0 -1
- package/dist/components/file-tabs/FileTabs.service.js +49 -53
- package/dist/components/form/EmailInput.js +9 -9
- package/dist/components/form/Input.d.ts +2 -1
- package/dist/components/form/Input.js +294 -397
- package/dist/components/form/Input.syntax.hook.d.ts +1 -18
- package/dist/components/form/Input.syntax.hook.js +7 -73
- package/dist/components/form/Input.utils.d.ts +1 -2
- package/dist/components/form/Input.utils.js +26 -21
- package/dist/components/form/InputContentEditable.hook.d.ts +40 -0
- package/dist/components/form/InputContentEditable.hook.js +471 -0
- package/dist/components/form/InputSuggestion.d.ts +2 -2
- package/dist/components/form/InputSuggestion.js +169 -107
- package/dist/components/form/PasswordInput.js +8 -8
- package/dist/components/form/TextInput.js +11 -11
- package/dist/components/form/useForm.d.ts +1 -0
- package/dist/components/form/useForm.js +45 -60
- package/dist/components/menu/Menu.js +4 -4
- package/dist/index.js +155 -154
- package/dist/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +30 -30
- package/dist/node_modules/@radix-ui/react-portal/dist/index.js +8 -8
- package/dist/node_modules/@radix-ui/react-primitive/dist/index.js +8 -8
- package/dist/node_modules/fast-deep-equal/index.js +31 -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-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/utils/generics.d.ts +2 -0
- package/dist/utils/generics.js +93 -80
- package/dist/utils/index.js +22 -21
- package/dist/utils/inspection.d.ts +4 -2
- package/dist/utils/inspection.js +27 -2
- package/package.json +10 -8
- package/dist/components/form/Input.selection.hook.d.ts +0 -17
- package/dist/components/form/Input.selection.hook.js +0 -78
- package/dist/components/form/InputSyntax.d.ts +0 -19
- package/dist/components/form/InputSyntax.js +0 -52
- package/dist/components/form/inputSyntaxMapping.d.ts +0 -3
- 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
|
|
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
|
|
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
|
|
35
|
-
import { DFullScreen as
|
|
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
|
|
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
|
|
53
|
-
import { ObjectService as
|
|
54
|
-
import { ReactiveArrayService as
|
|
55
|
-
import { Colors as
|
|
56
|
-
import { getChild as
|
|
57
|
-
import { Text as
|
|
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
|
|
61
|
-
import { DUserReactiveService as
|
|
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
|
|
64
|
-
import { DUserCard as
|
|
65
|
-
import { DUserList as
|
|
66
|
-
import { DUserInput as
|
|
67
|
-
import { setUserSession as
|
|
68
|
-
import { DOrganizationList as
|
|
69
|
-
import { DNamespaceProjectReactiveService as
|
|
70
|
-
import { DNamespaceProjectView as
|
|
71
|
-
import { DNamespaceProjectCard as
|
|
72
|
-
import { DNamespaceProjectList as
|
|
73
|
-
import { DRuntimeReactiveService as
|
|
74
|
-
import { DRuntimeView as
|
|
75
|
-
import { DRuntimeCard as
|
|
76
|
-
import { DRuntimeList as
|
|
77
|
-
import { DResizableHandle as
|
|
78
|
-
import { DNamespaceRoleReactiveService as
|
|
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
|
|
81
|
-
import { DNamespaceRoleCard as
|
|
82
|
-
import { Dialog as Gr, DialogClose as jr, DialogContent as
|
|
83
|
-
import { CheckboxInput as
|
|
84
|
-
import { EmailInput as
|
|
85
|
-
import { Input as
|
|
86
|
-
import { InputDescription as
|
|
87
|
-
import { InputLabel as
|
|
88
|
-
import { InputMessage as
|
|
89
|
-
import { InputSuggestionMenuContent as
|
|
90
|
-
import { NumberInput as
|
|
91
|
-
import { PasswordInput as
|
|
92
|
-
import { PinInput as
|
|
93
|
-
import { RadioGroup as
|
|
94
|
-
import { RadioInput as
|
|
95
|
-
import { SwitchInput as
|
|
96
|
-
import { TextInput as
|
|
97
|
-
import { useForm as
|
|
98
|
-
import { Quote as
|
|
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
|
|
101
|
-
import { SegmentedControl as jt, SegmentedControlItem as
|
|
102
|
-
import { Tab as
|
|
103
|
-
import { Toast as
|
|
104
|
-
import { Tooltip as
|
|
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
|
-
|
|
114
|
+
Kr as CheckboxInput,
|
|
115
115
|
C as Col,
|
|
116
|
-
|
|
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
|
-
|
|
124
|
-
|
|
125
|
-
|
|
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
|
-
|
|
143
|
+
G as DFlowReactiveService,
|
|
144
144
|
Ce as DFlowSuggestionType,
|
|
145
145
|
K as DFlowTabs,
|
|
146
146
|
Te as DFlowTypeReactiveService,
|
|
147
|
-
|
|
148
|
-
|
|
147
|
+
ye as DFlowValidation,
|
|
148
|
+
Ve as DFullScreen,
|
|
149
149
|
Oe as DLayout,
|
|
150
150
|
ze as DNamespaceLicenseReactiveService,
|
|
151
|
-
|
|
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
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
156
|
+
sr as DNamespaceProjectCard,
|
|
157
|
+
gr as DNamespaceProjectList,
|
|
158
|
+
fr as DNamespaceProjectReactiveService,
|
|
159
|
+
cr as DNamespaceProjectView,
|
|
160
160
|
Je as DNamespaceReactiveService,
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
161
|
+
zr as DNamespaceRoleCard,
|
|
162
|
+
Or as DNamespaceRoleList,
|
|
163
|
+
yr as DNamespaceRoleReactiveService,
|
|
164
164
|
Vr as DNamespaceRoleView,
|
|
165
165
|
Xe as DNamespaceView,
|
|
166
|
-
|
|
166
|
+
nr as DOrganizationList,
|
|
167
167
|
Ze as DOrganizationReactiveService,
|
|
168
168
|
eo as DOrganizationView,
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
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
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
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
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
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
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
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
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
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
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
230
|
+
Ot as ScrollAreaCorner,
|
|
231
|
+
Ut as ScrollAreaScrollbar,
|
|
232
|
+
zt as ScrollAreaThumb,
|
|
233
|
+
Bt as ScrollAreaViewport,
|
|
234
234
|
jt as SegmentedControl,
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
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
|
-
|
|
266
|
-
|
|
266
|
+
Pt as useForm,
|
|
267
|
+
So as useReactiveArrayService,
|
|
267
268
|
po as useService,
|
|
268
269
|
mo as useStore,
|
|
269
|
-
|
|
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
|
|
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 =
|
|
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:
|
|
60
|
+
floating: A
|
|
61
61
|
} = {},
|
|
62
|
-
transform:
|
|
63
|
-
whileElementsMounted:
|
|
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
|
-
}), [
|
|
73
|
-
R(
|
|
74
|
-
const [U, V] = o.useState(null), [W, G] = o.useState(null),
|
|
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
|
-
}, []),
|
|
76
|
+
}, []), v = o.useCallback((f) => {
|
|
77
77
|
f !== d.current && (d.current = f, G(f));
|
|
78
|
-
}, []), u = p || U, l =
|
|
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:
|
|
84
|
+
middleware: S
|
|
85
85
|
};
|
|
86
|
-
|
|
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:
|
|
93
|
+
isPositioned: F.current !== !1
|
|
94
94
|
};
|
|
95
|
-
|
|
95
|
+
P.current && !R(y.current, m) && (y.current = m, Z.flushSync(() => {
|
|
96
96
|
C(m);
|
|
97
97
|
}));
|
|
98
98
|
});
|
|
99
|
-
}, [
|
|
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
|
|
107
|
-
w(() => (
|
|
108
|
-
|
|
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 (
|
|
112
|
-
return
|
|
111
|
+
if ($.current)
|
|
112
|
+
return $.current(u, l, g);
|
|
113
113
|
g();
|
|
114
114
|
}
|
|
115
|
-
}, [u, l, g,
|
|
116
|
-
const
|
|
115
|
+
}, [u, l, g, $, H]);
|
|
116
|
+
const O = o.useMemo(() => ({
|
|
117
117
|
reference: a,
|
|
118
118
|
floating: d,
|
|
119
|
-
setReference:
|
|
120
|
-
setFloating:
|
|
121
|
-
}), [
|
|
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
|
|
133
|
+
return E ? {
|
|
134
134
|
...f,
|
|
135
135
|
transform: "translate(" + h + "px, " + m + "px)",
|
|
136
|
-
...
|
|
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,
|
|
144
|
+
}, [n, E, c.floating, s.x, s.y]);
|
|
145
145
|
return o.useMemo(() => ({
|
|
146
146
|
...s,
|
|
147
147
|
update: g,
|
|
148
|
-
refs:
|
|
148
|
+
refs: O,
|
|
149
149
|
elements: c,
|
|
150
150
|
floatingStyles: j
|
|
151
|
-
}), [s, g,
|
|
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
|
|
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
|
|
5
|
-
import { jsx as
|
|
6
|
-
var l = "Portal", p =
|
|
7
|
-
const { container: a, ...
|
|
8
|
-
|
|
9
|
-
const
|
|
10
|
-
return
|
|
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
|
|
5
|
-
var
|
|
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 =
|
|
24
|
-
const o = c(`Primitive.${i}`),
|
|
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__ */
|
|
26
|
+
return typeof window < "u" && (window[Symbol.for("radix-ui")] = !0), /* @__PURE__ */ u(n, { ...a, ref: m });
|
|
27
27
|
});
|
|
28
|
-
return
|
|
28
|
+
return t.displayName = `Primitive.${i}`, { ...r, [i]: t };
|
|
29
29
|
}, {});
|
|
30
|
-
function w(
|
|
31
|
-
|
|
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
|
+
};
|