@code0-tech/pictor 0.0.0-mvp.21 → 0.0.0-mvp.23
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/assets/components/alert/Alert.style.css +1 -1
- package/dist/assets/components/badge/Badge.style.css +1 -1
- package/dist/assets/components/breadcrumb/Breadcrumb.style.css +1 -1
- package/dist/assets/components/button/Button.style.css +1 -1
- package/dist/assets/components/button-group/ButtonGroup.style.css +1 -1
- package/dist/assets/components/card/Card.style.css +1 -1
- package/dist/assets/components/command/Command.style.css +1 -1
- package/dist/assets/components/d-flow/folder/DFlowFolder.style.css +1 -1
- package/dist/assets/components/d-flow/function/DFlowFunctionDefaultCard.style.css +1 -1
- package/dist/assets/components/d-flow/input/DFlowInputDataType.style.css +1 -1
- package/dist/assets/components/d-layout/DLayout.style.css +1 -1
- package/dist/assets/components/dialog/Dialog.style.css +1 -1
- package/dist/assets/components/file-tabs/FileTabs.style.css +1 -1
- package/dist/assets/components/form/Input.style.css +1 -1
- package/dist/assets/components/menu/Menu.style.css +1 -1
- package/dist/assets/components/segmented-control/SegmentedControl.style.css +1 -1
- package/dist/assets/components/tab/Tab.style.css +1 -1
- package/dist/assets/components/text/Text.style.css +1 -1
- package/dist/assets/components/toast/Toast.style.css +1 -1
- package/dist/assets/components/tooltip/Tooltip.style.css +1 -1
- package/dist/components/badge/Badge.d.ts +1 -0
- package/dist/components/badge/Badge.js +12 -11
- package/dist/components/button/Button.d.ts +1 -1
- package/dist/components/d-flow/input/DFlowInputDataType.js +32 -32
- package/dist/components/d-flow/suggestion/DFlowSuggestionMenu.js +22 -22
- package/dist/components/d-flow/suggestion/DFlowSuggestionMenu.util.js +11 -11
- package/dist/components/d-flow/suggestion/DFlowSuggestionSearchInput.d.ts +1 -1
- package/dist/components/d-flow/suggestion/DFlowSuggestionSearchInput.js +29 -16
- package/dist/components/d-flow/tab/DFlowTabDefault.js +59 -53
- package/dist/components/d-member/DNamespaceMember.service.js +6 -4
- package/dist/components/d-member/DNamespaceMember.view.js +13 -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 +176 -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 +2 -0
- package/dist/components/d-member/index.js +6 -2
- package/dist/components/d-organization/DOrganizationCard.d.ts +3 -2
- package/dist/components/d-organization/DOrganizationList.d.ts +3 -4
- package/dist/components/d-organization/DOrganizationList.js +7 -7
- package/dist/components/d-organization/DOrganizatonContent.d.ts +5 -4
- package/dist/components/d-organization/DOrganizatonContent.js +40 -25
- package/dist/components/d-organization/index.js +22 -7
- package/dist/components/d-project/DNamespaceProjectCard.d.ts +5 -5
- package/dist/components/d-project/DNamespaceProjectCard.js +13 -11
- package/dist/components/d-project/DNamespaceProjectContent.d.ts +2 -1
- package/dist/components/d-project/DNamespaceProjectContent.js +36 -42
- package/dist/components/d-project/DNamespaceProjectList.d.ts +3 -3
- package/dist/components/d-project/DNamespaceProjectList.js +1 -1
- package/dist/components/d-project/index.js +11 -17
- package/dist/components/d-role/DNamespaceRole.view.d.ts +4 -1
- package/dist/components/d-role/DNamespaceRole.view.js +6 -3
- 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 +156 -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 +129 -0
- package/dist/components/d-role/index.d.ts +2 -0
- package/dist/components/d-role/index.js +6 -2
- package/dist/components/d-runtime/DRuntimeCard.d.ts +3 -1
- package/dist/components/d-runtime/DRuntimeCard.js +13 -12
- package/dist/components/d-runtime/DRuntimeContent.d.ts +3 -1
- package/dist/components/d-runtime/DRuntimeContent.js +25 -20
- package/dist/components/d-runtime/DRuntimeList.d.ts +5 -3
- package/dist/components/d-runtime/DRuntimeList.js +21 -15
- package/dist/components/d-user/DUser.service.d.ts +1 -0
- package/dist/components/d-user/DUser.service.js +5 -2
- package/dist/components/d-user/DUserCard.d.ts +2 -1
- package/dist/components/d-user/DUserContent.d.ts +2 -1
- package/dist/components/d-user/DUserContent.js +45 -45
- package/dist/components/d-user/DUserInput.d.ts +5 -0
- package/dist/components/d-user/DUserInput.js +97 -0
- package/dist/components/d-user/DUserList.d.ts +2 -3
- package/dist/components/d-user/DUserList.js +4 -4
- package/dist/components/d-user/DUserMenu.js +7 -6
- package/dist/components/d-user/index.d.ts +1 -0
- package/dist/components/d-user/index.js +11 -9
- package/dist/components/dialog/Dialog.d.ts +2 -1
- package/dist/components/dialog/Dialog.js +67 -59
- package/dist/components/form/EmailInput.js +12 -11
- package/dist/components/form/Input.d.ts +17 -5
- package/dist/components/form/Input.js +420 -137
- package/dist/components/form/Input.selection.hook.d.ts +17 -0
- package/dist/components/form/Input.selection.hook.js +78 -0
- package/dist/components/form/Input.syntax.hook.d.ts +27 -0
- package/dist/components/form/Input.syntax.hook.js +80 -0
- package/dist/components/form/Input.utils.d.ts +11 -0
- package/dist/components/form/Input.utils.js +33 -0
- package/dist/components/form/InputSuggestion.d.ts +14 -6
- package/dist/components/form/InputSuggestion.js +126 -72
- package/dist/components/form/InputSyntax.d.ts +19 -0
- package/dist/components/form/InputSyntax.js +52 -0
- package/dist/components/form/PasswordInput.js +11 -10
- package/dist/components/form/TextInput.js +11 -10
- package/dist/components/form/index.js +26 -27
- package/dist/components/form/inputSyntaxMapping.d.ts +3 -0
- package/dist/components/form/inputSyntaxMapping.js +42 -0
- package/dist/components/menu/Menu.d.ts +7 -3
- package/dist/components/menu/Menu.js +22 -22
- package/dist/components/tooltip/Tooltip.js +33 -33
- package/dist/index.js +200 -189
- package/package.json +16 -16
package/dist/index.js
CHANGED
|
@@ -2,18 +2,18 @@ import { Alert as m } from "./components/alert/Alert.js";
|
|
|
2
2
|
import { Avatar as n } from "./components/avatar/Avatar.js";
|
|
3
3
|
import { Badge as f } from "./components/badge/Badge.js";
|
|
4
4
|
import { Breadcrumb as c } from "./components/breadcrumb/Breadcrumb.js";
|
|
5
|
-
import { Button as
|
|
5
|
+
import { Button as u } from "./components/button/Button.js";
|
|
6
6
|
import { ButtonGroup as g } from "./components/button-group/ButtonGroup.js";
|
|
7
|
-
import { Card as
|
|
8
|
-
import { Col as
|
|
9
|
-
import { Command as F, CommandDialog as R, CommandEmpty as
|
|
10
|
-
import { Container as
|
|
11
|
-
import { FlowSettingView as O, FlowView as
|
|
7
|
+
import { Card as d } from "./components/card/Card.js";
|
|
8
|
+
import { Col as v } from "./components/col/Col.js";
|
|
9
|
+
import { Command as F, CommandDialog as R, CommandEmpty as I, CommandGroup as T, CommandInput as b, CommandItem as N, CommandList as M, CommandSeparator as P, CommandShortcut as V } from "./components/command/Command.js";
|
|
10
|
+
import { Container as L } from "./components/container/Container.js";
|
|
11
|
+
import { FlowSettingView as O, FlowView as U, NodeFunctionView as G, NodeParameterView as j } from "./components/d-flow/DFlow.view.js";
|
|
12
12
|
import { DFlowReactiveService as h } from "./components/d-flow/DFlow.service.js";
|
|
13
|
-
import { FLOW_EDGE_RAINBOW as
|
|
13
|
+
import { FLOW_EDGE_RAINBOW as E, useFlowEdges as H } from "./components/d-flow/DFlow.edges.hook.js";
|
|
14
14
|
import { useFlowNodes as _ } from "./components/d-flow/DFlow.nodes.hook.js";
|
|
15
|
-
import { DFlow as
|
|
16
|
-
import { DFlowControl as
|
|
15
|
+
import { DFlow as Q } from "./components/d-flow/DFlow.js";
|
|
16
|
+
import { DFlowControl as J } from "./components/d-flow/control/DFlowControl.js";
|
|
17
17
|
import { DFlowDataTypeReactiveService as X } from "./components/d-flow/data-type/DFlowDataType.service.js";
|
|
18
18
|
import { DataTypeView as Z } from "./components/d-flow/data-type/DFlowDataType.view.js";
|
|
19
19
|
import { DFlowFolder as ee, DFlowFolderGroup as oe, DFlowFolderItem as re } from "./components/d-flow/folder/DFlowFolder.js";
|
|
@@ -21,100 +21,106 @@ import { DFlowFunctionReactiveService as ie } from "./components/d-flow/function
|
|
|
21
21
|
import { FunctionDefinitionView as me, ParameterDefinitionView as ae } from "./components/d-flow/function/DFlowFunction.view.js";
|
|
22
22
|
import { DFlowMiniMap as xe } from "./components/d-flow/minimap/DFlowMiniMap.js";
|
|
23
23
|
import { DFlowReactiveSuggestionService as le } from "./components/d-flow/suggestion/DFlowSuggestion.service.js";
|
|
24
|
-
import { DFlowSuggestion as
|
|
24
|
+
import { DFlowSuggestion as se, DFlowSuggestionType as ue } from "./components/d-flow/suggestion/DFlowSuggestion.view.js";
|
|
25
25
|
import { DFlowTypeReactiveService as ge } from "./components/d-flow/type/DFlowType.service.js";
|
|
26
|
-
import { FlowTypeView as
|
|
27
|
-
import { useDFlowValidations as
|
|
26
|
+
import { FlowTypeView as de } from "./components/d-flow/type/DFlowType.view.js";
|
|
27
|
+
import { useDFlowValidations as ve } from "./components/d-flow/validation/DFlowValidation.hook.js";
|
|
28
28
|
import { DFlowValidation as Fe } from "./components/d-flow/validation/DFlowValidation.js";
|
|
29
|
-
import { DFullScreen as
|
|
29
|
+
import { DFullScreen as Ie } from "./components/d-fullscreen/DFullScreen.js";
|
|
30
30
|
import { DLayout as be } from "./components/d-layout/DLayout.js";
|
|
31
31
|
import { DNamespaceLicenseReactiveService as Me } from "./components/d-license/DNamespaceLicense.service.js";
|
|
32
|
-
import { DNamespaceLicenseView as
|
|
33
|
-
import { DNamespaceMemberReactiveService as
|
|
32
|
+
import { DNamespaceLicenseView as Ve } from "./components/d-license/DNamespaceLicense.view.js";
|
|
33
|
+
import { DNamespaceMemberReactiveService as Le } from "./components/d-member/DNamespaceMember.service.js";
|
|
34
34
|
import { DNamespaceMemberView as Oe } from "./components/d-member/DNamespaceMember.view.js";
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
35
|
+
import { DNamespaceMemberCard as Ge } from "./components/d-member/DNamespaceMemberCard.js";
|
|
36
|
+
import { DNamespaceMemberList as ze } from "./components/d-member/DNamespaceMemberList.js";
|
|
37
|
+
import { DNamespaceReactiveService as Be } from "./components/d-namespace/DNamespace.service.js";
|
|
38
|
+
import { DNamespaceView as He } from "./components/d-namespace/DNamespace.view.js";
|
|
39
|
+
import { DOrganizationReactiveService as _e } from "./components/d-organization/DOrganization.service.js";
|
|
40
|
+
import { DOrganizationView as Qe } from "./components/d-organization/DOrganization.view.js";
|
|
39
41
|
import "react/jsx-runtime";
|
|
40
42
|
import "./_virtual/compiler-runtime.js";
|
|
41
43
|
import "react";
|
|
42
|
-
import { ContextStore as
|
|
43
|
-
import { InspectionSeverity as
|
|
44
|
-
import { NonReactiveArrayService as
|
|
45
|
-
import { ObjectService as
|
|
46
|
-
import { ReactiveArrayService as
|
|
47
|
-
import { Colors as
|
|
48
|
-
import { getChild as
|
|
49
|
-
import { Text as
|
|
44
|
+
import { ContextStore as Je, ContextStoreProvider as Ke, useService as Xe, useStore as Ye } from "./utils/contextStore.js";
|
|
45
|
+
import { InspectionSeverity as $e } from "./utils/inspection.js";
|
|
46
|
+
import { NonReactiveArrayService as oo, createNonReactiveArrayService as ro } from "./utils/nonReactiveArrayService.js";
|
|
47
|
+
import { ObjectService as io, createObjectService as po } from "./utils/objectStore.js";
|
|
48
|
+
import { ReactiveArrayService as ao, useReactiveArrayService as no } from "./utils/reactiveArrayService.js";
|
|
49
|
+
import { Colors as fo } from "./utils/types.js";
|
|
50
|
+
import { getChild as co, getContent as so, getPositionAroundTarget as uo, getPositioning as Do, getWindowPositioning as go, mergeCode0Props as So, parseUnit as wo } from "./utils/utils.js";
|
|
51
|
+
import { Text as Co } from "./components/text/Text.js";
|
|
50
52
|
import "@tabler/icons-react";
|
|
51
|
-
import { Flex as
|
|
52
|
-
import { Spacing as
|
|
53
|
-
import { DUserReactiveService as
|
|
54
|
-
import { DUserView as
|
|
55
|
-
import { Menu as
|
|
56
|
-
import { DUserCard as
|
|
57
|
-
import { DUserList as
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import { DRuntimeCard as tr } from "./components/d-runtime/DRuntimeCard.js";
|
|
65
|
-
import { DRuntimeList as pr } from "./components/d-runtime/DRuntimeList.js";
|
|
53
|
+
import { Flex as Ro } from "./components/flex/Flex.js";
|
|
54
|
+
import { Spacing as To } from "./components/spacing/Spacing.js";
|
|
55
|
+
import { DUserReactiveService as No } from "./components/d-user/DUser.service.js";
|
|
56
|
+
import { DUserView as Po } from "./components/d-user/DUser.view.js";
|
|
57
|
+
import { Menu as Ao, MenuArrow as Lo, MenuContent as yo, MenuGroup as Oo, MenuItem as Uo, MenuLabel as Go, MenuPortal as jo, MenuSeparator as zo, MenuSub as ho, MenuSubContent as Bo, MenuSubTrigger as Eo, MenuTrigger as Ho } from "./components/menu/Menu.js";
|
|
58
|
+
import { DUserCard as _o } from "./components/d-user/DUserCard.js";
|
|
59
|
+
import { DUserList as Qo } from "./components/d-user/DUserList.js";
|
|
60
|
+
import { DUserInput as Jo } from "./components/d-user/DUserInput.js";
|
|
61
|
+
import { setUserSession as Xo, useUserSession as Yo } from "./components/d-user/DUser.session.hook.js";
|
|
62
|
+
import { DOrganizationList as $o } from "./components/d-organization/DOrganizationList.js";
|
|
63
|
+
import { DNamespaceProjectReactiveService as or } from "./components/d-project/DNamespaceProject.service.js";
|
|
64
|
+
import { DNamespaceProjectView as tr } from "./components/d-project/DNamespaceProject.view.js";
|
|
65
|
+
import { DNamespaceProjectCard as pr } from "./components/d-project/DNamespaceProjectCard.js";
|
|
66
66
|
import { DNamespaceProjectList as ar } from "./components/d-project/DNamespaceProjectList.js";
|
|
67
67
|
import { DResizableHandle as xr, DResizablePanel as fr, DResizablePanelGroup as lr } from "./components/d-resizable/DResizable.js";
|
|
68
|
-
import { DNamespaceRoleReactiveService as
|
|
68
|
+
import { DNamespaceRoleReactiveService as sr } from "./components/d-role/DNamespaceRole.service.js";
|
|
69
69
|
import { DNamespaceRoleView as Dr } from "./components/d-role/DNamespaceRole.view.js";
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
70
|
+
import { DNamespaceRoleList as Sr } from "./components/d-role/DNamespaceRoleList.js";
|
|
71
|
+
import { DNamespaceRoleCard as wr } from "./components/d-role/DNamespaceRoleCard.js";
|
|
72
|
+
import { DRuntimeReactiveService as Cr } from "./components/d-runtime/DRuntime.service.js";
|
|
73
|
+
import { DRuntimeView as Rr } from "./components/d-runtime/DRuntime.view.js";
|
|
74
|
+
import { DRuntimeCard as Tr } from "./components/d-runtime/DRuntimeCard.js";
|
|
75
|
+
import { DRuntimeList as Nr } from "./components/d-runtime/DRuntimeList.js";
|
|
76
|
+
import { Dialog as Pr, DialogClose as Vr, DialogContent as Ar, DialogDescription as Lr, DialogFooter as yr, DialogHeader as Or, DialogOverlay as Ur, DialogPortal as Gr, DialogTitle as jr, DialogTrigger as zr } from "./components/dialog/Dialog.js";
|
|
77
|
+
import { CheckboxInput as Br } from "./components/form/CheckboxInput.js";
|
|
78
|
+
import { EmailInput as Hr, emailValidation as Wr } from "./components/form/EmailInput.js";
|
|
79
|
+
import { Input as kr } from "./components/form/Input.js";
|
|
80
|
+
import { InputDescription as qr } from "./components/form/InputDescription.js";
|
|
81
|
+
import { InputLabel as Kr } from "./components/form/InputLabel.js";
|
|
82
|
+
import { InputMessage as Yr } from "./components/form/InputMessage.js";
|
|
83
|
+
import { InputSuggestionMenuContent as $r, InputSuggestionMenuContentItems as et } from "./components/form/InputSuggestion.js";
|
|
84
|
+
import { NumberInput as rt } from "./components/form/NumberInput.js";
|
|
85
|
+
import { PasswordInput as it } from "./components/form/PasswordInput.js";
|
|
86
|
+
import { PinInput as mt, PinInputField as at, PinInputHiddenField as nt } from "./components/form/PinInput.js";
|
|
87
|
+
import { RadioGroup as ft } from "./components/form/RadioGroup.js";
|
|
88
|
+
import { RadioInput as ct } from "./components/form/RadioInput.js";
|
|
89
|
+
import { SwitchInput as ut } from "./components/form/SwitchInput.js";
|
|
90
|
+
import { TextInput as gt } from "./components/form/TextInput.js";
|
|
91
|
+
import { useForm as dt } from "./components/form/useForm.js";
|
|
92
|
+
import { Quote as vt } from "./components/quote/Quote.js";
|
|
93
|
+
import { Row as Ft } from "./components/row/Row.js";
|
|
94
|
+
import { ScrollArea as It, ScrollAreaCorner as Tt, ScrollAreaScrollbar as bt, ScrollAreaThumb as Nt, ScrollAreaViewport as Mt } from "./components/scroll-area/ScrollArea.js";
|
|
95
|
+
import { SegmentedControl as Vt, SegmentedControlItem as At } from "./components/segmented-control/SegmentedControl.js";
|
|
96
|
+
import { Tab as yt, TabContent as Ot, TabList as Ut, TabTrigger as Gt } from "./components/tab/Tab.js";
|
|
97
|
+
import { Toast as zt, toast as ht } from "./components/toast/Toast.js";
|
|
98
|
+
import { Tooltip as Et, TooltipArrow as Ht, TooltipContent as Wt, TooltipPortal as _t, TooltipTrigger as kt } from "./components/tooltip/Tooltip.js";
|
|
93
99
|
export {
|
|
94
100
|
m as Alert,
|
|
95
101
|
n as Avatar,
|
|
96
102
|
f as Badge,
|
|
97
103
|
c as Breadcrumb,
|
|
98
|
-
|
|
104
|
+
u as Button,
|
|
99
105
|
g as ButtonGroup,
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
106
|
+
d as Card,
|
|
107
|
+
Br as CheckboxInput,
|
|
108
|
+
v as Col,
|
|
109
|
+
fo as Colors,
|
|
104
110
|
F as Command,
|
|
105
111
|
R as CommandDialog,
|
|
106
|
-
|
|
107
|
-
|
|
112
|
+
I as CommandEmpty,
|
|
113
|
+
T as CommandGroup,
|
|
108
114
|
b as CommandInput,
|
|
109
|
-
|
|
115
|
+
N as CommandItem,
|
|
110
116
|
M as CommandList,
|
|
111
117
|
P as CommandSeparator,
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
+
V as CommandShortcut,
|
|
119
|
+
L as Container,
|
|
120
|
+
Je as ContextStore,
|
|
121
|
+
Ke as ContextStoreProvider,
|
|
122
|
+
Q as DFlow,
|
|
123
|
+
J as DFlowControl,
|
|
118
124
|
X as DFlowDataTypeReactiveService,
|
|
119
125
|
ee as DFlowFolder,
|
|
120
126
|
oe as DFlowFolderGroup,
|
|
@@ -123,129 +129,134 @@ export {
|
|
|
123
129
|
xe as DFlowMiniMap,
|
|
124
130
|
h as DFlowReactiveService,
|
|
125
131
|
le as DFlowReactiveSuggestionService,
|
|
126
|
-
|
|
127
|
-
|
|
132
|
+
se as DFlowSuggestion,
|
|
133
|
+
ue as DFlowSuggestionType,
|
|
128
134
|
ge as DFlowTypeReactiveService,
|
|
129
135
|
Fe as DFlowValidation,
|
|
130
|
-
|
|
136
|
+
Ie as DFullScreen,
|
|
131
137
|
be as DLayout,
|
|
132
138
|
Me as DNamespaceLicenseReactiveService,
|
|
133
|
-
|
|
134
|
-
|
|
139
|
+
Ve as DNamespaceLicenseView,
|
|
140
|
+
Ge as DNamespaceMemberCard,
|
|
141
|
+
ze as DNamespaceMemberList,
|
|
142
|
+
Le as DNamespaceMemberReactiveService,
|
|
135
143
|
Oe as DNamespaceMemberView,
|
|
144
|
+
pr as DNamespaceProjectCard,
|
|
136
145
|
ar as DNamespaceProjectList,
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
146
|
+
or as DNamespaceProjectReactiveService,
|
|
147
|
+
tr as DNamespaceProjectView,
|
|
148
|
+
Be as DNamespaceReactiveService,
|
|
149
|
+
wr as DNamespaceRoleCard,
|
|
150
|
+
Sr as DNamespaceRoleList,
|
|
151
|
+
sr as DNamespaceRoleReactiveService,
|
|
141
152
|
Dr as DNamespaceRoleView,
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
153
|
+
He as DNamespaceView,
|
|
154
|
+
$o as DOrganizationList,
|
|
155
|
+
_e as DOrganizationReactiveService,
|
|
156
|
+
Qe as DOrganizationView,
|
|
146
157
|
xr as DResizableHandle,
|
|
147
158
|
fr as DResizablePanel,
|
|
148
159
|
lr as DResizablePanelGroup,
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
160
|
+
Tr as DRuntimeCard,
|
|
161
|
+
Nr as DRuntimeList,
|
|
162
|
+
Cr as DRuntimeReactiveService,
|
|
163
|
+
Rr as DRuntimeView,
|
|
164
|
+
_o as DUserCard,
|
|
165
|
+
Jo as DUserInput,
|
|
166
|
+
Qo as DUserList,
|
|
167
|
+
No as DUserReactiveService,
|
|
168
|
+
Po as DUserView,
|
|
157
169
|
Z as DataTypeView,
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
170
|
+
Pr as Dialog,
|
|
171
|
+
Vr as DialogClose,
|
|
172
|
+
Ar as DialogContent,
|
|
173
|
+
Lr as DialogDescription,
|
|
174
|
+
yr as DialogFooter,
|
|
175
|
+
Or as DialogHeader,
|
|
176
|
+
Ur as DialogOverlay,
|
|
177
|
+
Gr as DialogPortal,
|
|
178
|
+
jr as DialogTitle,
|
|
179
|
+
zr as DialogTrigger,
|
|
180
|
+
Hr as EmailInput,
|
|
181
|
+
E as FLOW_EDGE_RAINBOW,
|
|
182
|
+
Ro as Flex,
|
|
171
183
|
O as FlowSettingView,
|
|
172
|
-
|
|
173
|
-
|
|
184
|
+
de as FlowTypeView,
|
|
185
|
+
U as FlowView,
|
|
174
186
|
me as FunctionDefinitionView,
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
187
|
+
kr as Input,
|
|
188
|
+
qr as InputDescription,
|
|
189
|
+
Kr as InputLabel,
|
|
190
|
+
Yr as InputMessage,
|
|
191
|
+
$r as InputSuggestionMenuContent,
|
|
192
|
+
et as InputSuggestionMenuContentItems,
|
|
193
|
+
$e as InspectionSeverity,
|
|
194
|
+
Ao as Menu,
|
|
195
|
+
Lo as MenuArrow,
|
|
196
|
+
yo as MenuContent,
|
|
197
|
+
Oo as MenuGroup,
|
|
198
|
+
Uo as MenuItem,
|
|
199
|
+
Go as MenuLabel,
|
|
200
|
+
jo as MenuPortal,
|
|
201
|
+
zo as MenuSeparator,
|
|
202
|
+
ho as MenuSub,
|
|
203
|
+
Bo as MenuSubContent,
|
|
204
|
+
Eo as MenuSubTrigger,
|
|
205
|
+
Ho as MenuTrigger,
|
|
206
|
+
G as NodeFunctionView,
|
|
207
|
+
j as NodeParameterView,
|
|
208
|
+
oo as NonReactiveArrayService,
|
|
209
|
+
rt as NumberInput,
|
|
210
|
+
io as ObjectService,
|
|
199
211
|
ae as ParameterDefinitionView,
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
de as useDFlowValidations,
|
|
212
|
+
it as PasswordInput,
|
|
213
|
+
mt as PinInput,
|
|
214
|
+
at as PinInputField,
|
|
215
|
+
nt as PinInputHiddenField,
|
|
216
|
+
vt as Quote,
|
|
217
|
+
ft as RadioGroup,
|
|
218
|
+
ct as RadioInput,
|
|
219
|
+
ao as ReactiveArrayService,
|
|
220
|
+
Ft as Row,
|
|
221
|
+
It as ScrollArea,
|
|
222
|
+
Tt as ScrollAreaCorner,
|
|
223
|
+
bt as ScrollAreaScrollbar,
|
|
224
|
+
Nt as ScrollAreaThumb,
|
|
225
|
+
Mt as ScrollAreaViewport,
|
|
226
|
+
Vt as SegmentedControl,
|
|
227
|
+
At as SegmentedControlItem,
|
|
228
|
+
To as Spacing,
|
|
229
|
+
ut as SwitchInput,
|
|
230
|
+
yt as Tab,
|
|
231
|
+
Ot as TabContent,
|
|
232
|
+
Ut as TabList,
|
|
233
|
+
Gt as TabTrigger,
|
|
234
|
+
Co as Text,
|
|
235
|
+
gt as TextInput,
|
|
236
|
+
zt as Toast,
|
|
237
|
+
Et as Tooltip,
|
|
238
|
+
Ht as TooltipArrow,
|
|
239
|
+
Wt as TooltipContent,
|
|
240
|
+
_t as TooltipPortal,
|
|
241
|
+
kt as TooltipTrigger,
|
|
242
|
+
ro as createNonReactiveArrayService,
|
|
243
|
+
po as createObjectService,
|
|
244
|
+
Wr as emailValidation,
|
|
245
|
+
co as getChild,
|
|
246
|
+
so as getContent,
|
|
247
|
+
uo as getPositionAroundTarget,
|
|
248
|
+
Do as getPositioning,
|
|
249
|
+
go as getWindowPositioning,
|
|
250
|
+
So as mergeCode0Props,
|
|
251
|
+
wo as parseUnit,
|
|
252
|
+
Xo as setUserSession,
|
|
253
|
+
ht as toast,
|
|
254
|
+
ve as useDFlowValidations,
|
|
244
255
|
H as useFlowEdges,
|
|
245
256
|
_ as useFlowNodes,
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
257
|
+
dt as useForm,
|
|
258
|
+
no as useReactiveArrayService,
|
|
259
|
+
Xe as useService,
|
|
260
|
+
Ye as useStore,
|
|
261
|
+
Yo as useUserSession
|
|
251
262
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@code0-tech/pictor",
|
|
3
|
-
"version": "0.0.0-mvp.
|
|
3
|
+
"version": "0.0.0-mvp.23",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A simple template for a custom React component library",
|
|
6
6
|
"scripts": {
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@babel/plugin-transform-class-properties": "^7.27.1",
|
|
23
23
|
"@code0-tech/definition-reader": "^0.0.18",
|
|
24
24
|
"@code0-tech/sagittarius-graphql-types": "^0.0.0-755f9382e6589ede0182dace55452703bcd6e85b",
|
|
25
|
-
"@dagrejs/dagre": "^
|
|
25
|
+
"@dagrejs/dagre": "^2.0.0",
|
|
26
26
|
"@mdx-js/react": "^3.1.1",
|
|
27
27
|
"@radix-ui/react-checkbox": "^1.3.3",
|
|
28
28
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
@@ -37,20 +37,20 @@
|
|
|
37
37
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
38
38
|
"@rollup/plugin-terser": "^0.4.4",
|
|
39
39
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
40
|
-
"@storybook/addon-a11y": "^10.
|
|
41
|
-
"@storybook/addon-docs": "^10.
|
|
42
|
-
"@storybook/addon-links": "^10.
|
|
43
|
-
"@storybook/addon-onboarding": "^10.
|
|
44
|
-
"@storybook/addon-vitest": "^10.
|
|
45
|
-
"@storybook/builder-vite": "^10.
|
|
46
|
-
"@storybook/cli": "^10.
|
|
47
|
-
"@storybook/react-vite": "^10.
|
|
40
|
+
"@storybook/addon-a11y": "^10.1.2",
|
|
41
|
+
"@storybook/addon-docs": "^10.1.2",
|
|
42
|
+
"@storybook/addon-links": "^10.1.2",
|
|
43
|
+
"@storybook/addon-onboarding": "^10.1.2",
|
|
44
|
+
"@storybook/addon-vitest": "^10.1.2",
|
|
45
|
+
"@storybook/builder-vite": "^10.1.2",
|
|
46
|
+
"@storybook/cli": "^10.1.2",
|
|
47
|
+
"@storybook/react-vite": "^10.1.2",
|
|
48
48
|
"@tabler/icons-react": "3.35.0",
|
|
49
49
|
"@types/jest-image-snapshot": "^6.4.0",
|
|
50
|
-
"@types/react": "^19.2.
|
|
50
|
+
"@types/react": "^19.2.7",
|
|
51
51
|
"@vitejs/plugin-react": "^5.1.1",
|
|
52
|
-
"@vitest/browser-playwright": "^4.0.
|
|
53
|
-
"@vitest/coverage-v8": "^4.0.
|
|
52
|
+
"@vitest/browser-playwright": "^4.0.14",
|
|
53
|
+
"@vitest/coverage-v8": "^4.0.14",
|
|
54
54
|
"@xyflow/react": "^12.9.3",
|
|
55
55
|
"axe-playwright": "^2.2.2",
|
|
56
56
|
"babel-loader": "^10.0.0",
|
|
@@ -73,15 +73,15 @@
|
|
|
73
73
|
"sass": "^1.94.2",
|
|
74
74
|
"sass-loader": "^16.0.6",
|
|
75
75
|
"sonner": "^2.0.7",
|
|
76
|
-
"storybook": "^10.
|
|
76
|
+
"storybook": "^10.1.2",
|
|
77
77
|
"style-loader": "^4.0.0",
|
|
78
|
-
"ts-jest": "^29.4.
|
|
78
|
+
"ts-jest": "^29.4.6",
|
|
79
79
|
"ts-node": "^10.9.2",
|
|
80
80
|
"typescript": "^5.9.3",
|
|
81
81
|
"vite": "^7.2.4",
|
|
82
82
|
"vite-plugin-dts": "^4.5.4",
|
|
83
83
|
"vite-plugin-lib-inject-css": "^2.2.2",
|
|
84
|
-
"vitest": "^4.0.
|
|
84
|
+
"vitest": "^4.0.14"
|
|
85
85
|
},
|
|
86
86
|
"main": "dist/index.js",
|
|
87
87
|
"repository": {
|