@uipath/apollo-react 6.30.2 → 6.31.0
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/canvas/components/CanvasLeftSidebar/CanvasLeftSidebar.cjs +5 -5
- package/dist/canvas/components/CanvasLeftSidebar/CanvasLeftSidebar.d.ts +2 -0
- package/dist/canvas/components/CanvasLeftSidebar/CanvasLeftSidebar.d.ts.map +1 -1
- package/dist/canvas/components/CanvasLeftSidebar/CanvasLeftSidebar.js +5 -5
- package/dist/canvas/components/CanvasTakeoverModal/CanvasTakeoverModal.cjs +1 -1
- package/dist/canvas/components/CanvasTakeoverModal/CanvasTakeoverModal.js +1 -1
- package/dist/canvas/components/NodePropertyPanel/NodePropertyPanel.cjs +5 -2
- package/dist/canvas/components/NodePropertyPanel/NodePropertyPanel.d.ts +1 -1
- package/dist/canvas/components/NodePropertyPanel/NodePropertyPanel.d.ts.map +1 -1
- package/dist/canvas/components/NodePropertyPanel/NodePropertyPanel.js +5 -2
- package/dist/canvas/components/NodePropertyPanel/NodePropertyPanel.types.d.ts +2 -1
- package/dist/canvas/components/NodePropertyPanel/NodePropertyPanel.types.d.ts.map +1 -1
- package/dist/canvas/controls/NodeOutputModeSelect/NodeOutputModeSelect.cjs +22 -4
- package/dist/canvas/controls/NodeOutputModeSelect/NodeOutputModeSelect.d.ts +2 -1
- package/dist/canvas/controls/NodeOutputModeSelect/NodeOutputModeSelect.d.ts.map +1 -1
- package/dist/canvas/controls/NodeOutputModeSelect/NodeOutputModeSelect.js +23 -5
- package/dist/canvas/controls/NodeOutputModeSelect/index.d.ts +1 -1
- package/dist/canvas/controls/NodeOutputModeSelect/index.d.ts.map +1 -1
- package/dist/canvas/controls/index.d.ts +1 -1
- package/dist/canvas/controls/index.d.ts.map +1 -1
- package/dist/canvas/stories/templates/Flow.stories.css +53 -0
- package/dist/canvas/styles/tailwind.canvas.css +1 -1
- package/package.json +4 -3
|
@@ -139,7 +139,7 @@ function RailButton({ item, activeItemId, onSelect }) {
|
|
|
139
139
|
children: item.icon
|
|
140
140
|
});
|
|
141
141
|
}
|
|
142
|
-
const CanvasLeftSidebar_CanvasLeftSidebar = /*#__PURE__*/ (0, external_react_namespaceObject.memo)(function({ title, children, isExpanded, onExpandedChange, activeItemId, onItemSelect, onLogoClick, logo, primaryItems = CANVAS_LEFT_SIDEBAR_DEFAULT_PRIMARY_ITEMS, bottomItems = CANVAS_LEFT_SIDEBAR_DEFAULT_BOTTOM_ITEMS, headerActions, variant = 'default', className }) {
|
|
142
|
+
const CanvasLeftSidebar_CanvasLeftSidebar = /*#__PURE__*/ (0, external_react_namespaceObject.memo)(function({ title, children, isExpanded, onExpandedChange, activeItemId, onItemSelect, onLogoClick, logo, primaryItems = CANVAS_LEFT_SIDEBAR_DEFAULT_PRIMARY_ITEMS, bottomItems = CANVAS_LEFT_SIDEBAR_DEFAULT_BOTTOM_ITEMS, headerActions, showContentHeader = true, variant = 'default', expandedContentWidth = CANVAS_LEFT_SIDEBAR_WIDTH, className }) {
|
|
143
143
|
const selectItem = (itemId)=>{
|
|
144
144
|
onItemSelect?.(itemId);
|
|
145
145
|
onExpandedChange(activeItemId === itemId ? !isExpanded : true);
|
|
@@ -149,7 +149,7 @@ const CanvasLeftSidebar_CanvasLeftSidebar = /*#__PURE__*/ (0, external_react_nam
|
|
|
149
149
|
"data-expanded": isExpanded,
|
|
150
150
|
className: (0, apollo_wind_namespaceObject.cn)('flex h-full shrink-0 overflow-hidden border border-border-subtle bg-surface-raised text-foreground transition-[width] duration-150 ease-[cubic-bezier(0.2,0,0,1)] motion-reduce:transition-none', 'floating' === variant && 'rounded-2xl shadow-lg', className),
|
|
151
151
|
style: {
|
|
152
|
-
width: isExpanded ? CANVAS_LEFT_SIDEBAR_RAIL_WIDTH +
|
|
152
|
+
width: isExpanded ? CANVAS_LEFT_SIDEBAR_RAIL_WIDTH + expandedContentWidth : CANVAS_LEFT_SIDEBAR_COLLAPSED_WIDTH
|
|
153
153
|
},
|
|
154
154
|
children: [
|
|
155
155
|
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("nav", {
|
|
@@ -192,10 +192,10 @@ const CanvasLeftSidebar_CanvasLeftSidebar = /*#__PURE__*/ (0, external_react_nam
|
|
|
192
192
|
inert: !isExpanded,
|
|
193
193
|
className: (0, apollo_wind_namespaceObject.cn)('flex h-full shrink-0 flex-col transition-[opacity,transform] duration-150 ease-[cubic-bezier(0.2,0,0,1)] motion-reduce:transition-none', isExpanded ? 'translate-x-0 opacity-100' : 'invisible -translate-x-1 opacity-0'),
|
|
194
194
|
style: {
|
|
195
|
-
width:
|
|
195
|
+
width: expandedContentWidth
|
|
196
196
|
},
|
|
197
197
|
children: [
|
|
198
|
-
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("header", {
|
|
198
|
+
showContentHeader && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("header", {
|
|
199
199
|
className: "flex h-12 shrink-0 items-center justify-between gap-3 px-4",
|
|
200
200
|
children: [
|
|
201
201
|
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("h2", {
|
|
@@ -218,7 +218,7 @@ const CanvasLeftSidebar_CanvasLeftSidebar = /*#__PURE__*/ (0, external_react_nam
|
|
|
218
218
|
]
|
|
219
219
|
}),
|
|
220
220
|
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
|
|
221
|
-
className:
|
|
221
|
+
className: (0, apollo_wind_namespaceObject.cn)('min-h-0 flex-1 overflow-auto p-3', showContentHeader && 'border-t border-border-subtle'),
|
|
222
222
|
children: children
|
|
223
223
|
})
|
|
224
224
|
]
|
|
@@ -21,7 +21,9 @@ export interface CanvasLeftSidebarProps {
|
|
|
21
21
|
primaryItems?: readonly CanvasLeftSidebarItem[];
|
|
22
22
|
bottomItems?: readonly CanvasLeftSidebarItem[];
|
|
23
23
|
headerActions?: ReactNode;
|
|
24
|
+
showContentHeader?: boolean;
|
|
24
25
|
variant?: 'default' | 'floating';
|
|
26
|
+
expandedContentWidth?: number;
|
|
25
27
|
className?: string;
|
|
26
28
|
}
|
|
27
29
|
export declare const CANVAS_LEFT_SIDEBAR_DEFAULT_PRIMARY_ITEMS: readonly CanvasLeftSidebarItem[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CanvasLeftSidebar.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/CanvasLeftSidebar/CanvasLeftSidebar.tsx"],"names":[],"mappings":"AAWA,OAAO,EAAQ,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAG7C,eAAO,MAAM,8BAA8B,KAAK,CAAC;AACjD,eAAO,MAAM,yBAAyB,MAAM,CAAC;AAC7C,eAAO,MAAM,mCAAmC,KAAiC,CAAC;AAElF,MAAM,MAAM,uBAAuB,GAAG,MAAM,CAAC;AAE7C,MAAM,WAAW,qBAAqB;IACpC,EAAE,EAAE,uBAAuB,CAAC;IAC5B,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,SAAS,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,sBAAsB;IAErC,KAAK,EAAE,SAAS,CAAC;IAEjB,QAAQ,CAAC,EAAE,SAAS,CAAC;IAErB,UAAU,EAAE,OAAO,CAAC;IAEpB,gBAAgB,EAAE,CAAC,UAAU,EAAE,OAAO,KAAK,IAAI,CAAC;IAEhD,YAAY,CAAC,EAAE,uBAAuB,CAAC;IAEvC,YAAY,CAAC,EAAE,CAAC,MAAM,EAAE,uBAAuB,KAAK,IAAI,CAAC;IAEzD,WAAW,CAAC,EAAE,MAAM,IAAI,CAAC;IAEzB,IAAI,CAAC,EAAE,SAAS,CAAC;IAEjB,YAAY,CAAC,EAAE,SAAS,qBAAqB,EAAE,CAAC;IAEhD,WAAW,CAAC,EAAE,SAAS,qBAAqB,EAAE,CAAC;IAE/C,aAAa,CAAC,EAAE,SAAS,CAAC;IAE1B,OAAO,CAAC,EAAE,SAAS,GAAG,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"CanvasLeftSidebar.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/CanvasLeftSidebar/CanvasLeftSidebar.tsx"],"names":[],"mappings":"AAWA,OAAO,EAAQ,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAG7C,eAAO,MAAM,8BAA8B,KAAK,CAAC;AACjD,eAAO,MAAM,yBAAyB,MAAM,CAAC;AAC7C,eAAO,MAAM,mCAAmC,KAAiC,CAAC;AAElF,MAAM,MAAM,uBAAuB,GAAG,MAAM,CAAC;AAE7C,MAAM,WAAW,qBAAqB;IACpC,EAAE,EAAE,uBAAuB,CAAC;IAC5B,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,SAAS,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,sBAAsB;IAErC,KAAK,EAAE,SAAS,CAAC;IAEjB,QAAQ,CAAC,EAAE,SAAS,CAAC;IAErB,UAAU,EAAE,OAAO,CAAC;IAEpB,gBAAgB,EAAE,CAAC,UAAU,EAAE,OAAO,KAAK,IAAI,CAAC;IAEhD,YAAY,CAAC,EAAE,uBAAuB,CAAC;IAEvC,YAAY,CAAC,EAAE,CAAC,MAAM,EAAE,uBAAuB,KAAK,IAAI,CAAC;IAEzD,WAAW,CAAC,EAAE,MAAM,IAAI,CAAC;IAEzB,IAAI,CAAC,EAAE,SAAS,CAAC;IAEjB,YAAY,CAAC,EAAE,SAAS,qBAAqB,EAAE,CAAC;IAEhD,WAAW,CAAC,EAAE,SAAS,qBAAqB,EAAE,CAAC;IAE/C,aAAa,CAAC,EAAE,SAAS,CAAC;IAE1B,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAE5B,OAAO,CAAC,EAAE,SAAS,GAAG,UAAU,CAAC;IAEjC,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,yCAAyC,EAAE,SAAS,qBAAqB,EAMrF,CAAC;AAEF,eAAO,MAAM,wCAAwC,EAAE,SAAS,qBAAqB,EAGpF,CAAC;AA2CF,eAAO,MAAM,iBAAiB,8DAqH5B,CAAC"}
|
|
@@ -106,7 +106,7 @@ function RailButton({ item, activeItemId, onSelect }) {
|
|
|
106
106
|
children: item.icon
|
|
107
107
|
});
|
|
108
108
|
}
|
|
109
|
-
const CanvasLeftSidebar_CanvasLeftSidebar = /*#__PURE__*/ memo(function({ title, children, isExpanded, onExpandedChange, activeItemId, onItemSelect, onLogoClick, logo, primaryItems = CANVAS_LEFT_SIDEBAR_DEFAULT_PRIMARY_ITEMS, bottomItems = CANVAS_LEFT_SIDEBAR_DEFAULT_BOTTOM_ITEMS, headerActions, variant = 'default', className }) {
|
|
109
|
+
const CanvasLeftSidebar_CanvasLeftSidebar = /*#__PURE__*/ memo(function({ title, children, isExpanded, onExpandedChange, activeItemId, onItemSelect, onLogoClick, logo, primaryItems = CANVAS_LEFT_SIDEBAR_DEFAULT_PRIMARY_ITEMS, bottomItems = CANVAS_LEFT_SIDEBAR_DEFAULT_BOTTOM_ITEMS, headerActions, showContentHeader = true, variant = 'default', expandedContentWidth = CANVAS_LEFT_SIDEBAR_WIDTH, className }) {
|
|
110
110
|
const selectItem = (itemId)=>{
|
|
111
111
|
onItemSelect?.(itemId);
|
|
112
112
|
onExpandedChange(activeItemId === itemId ? !isExpanded : true);
|
|
@@ -116,7 +116,7 @@ const CanvasLeftSidebar_CanvasLeftSidebar = /*#__PURE__*/ memo(function({ title,
|
|
|
116
116
|
"data-expanded": isExpanded,
|
|
117
117
|
className: cn('flex h-full shrink-0 overflow-hidden border border-border-subtle bg-surface-raised text-foreground transition-[width] duration-150 ease-[cubic-bezier(0.2,0,0,1)] motion-reduce:transition-none', 'floating' === variant && 'rounded-2xl shadow-lg', className),
|
|
118
118
|
style: {
|
|
119
|
-
width: isExpanded ? CANVAS_LEFT_SIDEBAR_RAIL_WIDTH +
|
|
119
|
+
width: isExpanded ? CANVAS_LEFT_SIDEBAR_RAIL_WIDTH + expandedContentWidth : CANVAS_LEFT_SIDEBAR_COLLAPSED_WIDTH
|
|
120
120
|
},
|
|
121
121
|
children: [
|
|
122
122
|
/*#__PURE__*/ jsxs("nav", {
|
|
@@ -159,10 +159,10 @@ const CanvasLeftSidebar_CanvasLeftSidebar = /*#__PURE__*/ memo(function({ title,
|
|
|
159
159
|
inert: !isExpanded,
|
|
160
160
|
className: cn('flex h-full shrink-0 flex-col transition-[opacity,transform] duration-150 ease-[cubic-bezier(0.2,0,0,1)] motion-reduce:transition-none', isExpanded ? 'translate-x-0 opacity-100' : 'invisible -translate-x-1 opacity-0'),
|
|
161
161
|
style: {
|
|
162
|
-
width:
|
|
162
|
+
width: expandedContentWidth
|
|
163
163
|
},
|
|
164
164
|
children: [
|
|
165
|
-
/*#__PURE__*/ jsxs("header", {
|
|
165
|
+
showContentHeader && /*#__PURE__*/ jsxs("header", {
|
|
166
166
|
className: "flex h-12 shrink-0 items-center justify-between gap-3 px-4",
|
|
167
167
|
children: [
|
|
168
168
|
/*#__PURE__*/ jsx("h2", {
|
|
@@ -185,7 +185,7 @@ const CanvasLeftSidebar_CanvasLeftSidebar = /*#__PURE__*/ memo(function({ title,
|
|
|
185
185
|
]
|
|
186
186
|
}),
|
|
187
187
|
/*#__PURE__*/ jsx("div", {
|
|
188
|
-
className:
|
|
188
|
+
className: cn('min-h-0 flex-1 overflow-auto p-3', showContentHeader && 'border-t border-border-subtle'),
|
|
189
189
|
children: children
|
|
190
190
|
})
|
|
191
191
|
]
|
|
@@ -74,7 +74,7 @@ function CanvasTakeoverModal({ open, onOpenChange, title, headerActions, sidebar
|
|
|
74
74
|
if (closeOnBackdropClick && event.target === event.currentTarget) onOpenChange?.(false);
|
|
75
75
|
};
|
|
76
76
|
return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
|
|
77
|
-
className: (0, apollo_wind_namespaceObject.cn)('absolute inset-0 z-50 flex items-center justify-center bg-
|
|
77
|
+
className: (0, apollo_wind_namespaceObject.cn)('absolute inset-0 z-50 flex items-center justify-center bg-black/60', expanded ? 'p-0' : 'p-3'),
|
|
78
78
|
onMouseDown: handleBackdropClick,
|
|
79
79
|
"data-testid": "canvas-takeover-backdrop",
|
|
80
80
|
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_react_focus_lock_default(), {
|
|
@@ -36,7 +36,7 @@ function CanvasTakeoverModal({ open, onOpenChange, title, headerActions, sidebar
|
|
|
36
36
|
if (closeOnBackdropClick && event.target === event.currentTarget) onOpenChange?.(false);
|
|
37
37
|
};
|
|
38
38
|
return /*#__PURE__*/ jsx("div", {
|
|
39
|
-
className: cn('absolute inset-0 z-50 flex items-center justify-center bg-
|
|
39
|
+
className: cn('absolute inset-0 z-50 flex items-center justify-center bg-black/60', expanded ? 'p-0' : 'p-3'),
|
|
40
40
|
onMouseDown: handleBackdropClick,
|
|
41
41
|
"data-testid": "canvas-takeover-backdrop",
|
|
42
42
|
children: /*#__PURE__*/ jsx(react_focus_lock, {
|
|
@@ -31,7 +31,7 @@ const apollo_wind_namespaceObject = require("@uipath/apollo-wind");
|
|
|
31
31
|
const external_lucide_react_namespaceObject = require("lucide-react");
|
|
32
32
|
const external_react_namespaceObject = require("react");
|
|
33
33
|
const SURFACE_REMAP = 'future:[--surface-raised:var(--surface-overlay)]';
|
|
34
|
-
function NodePropertyPanel({ panelTitle, onClose, nodeIcon, nodeLabel, nodeCategory, action, schema, plugins, onSubmit, disabled, autoComplete, resetKey, className, contentInset = '1.5rem', children, headerExtra, sectionVariant, activeStepId, onActiveStepChange }) {
|
|
34
|
+
function NodePropertyPanel({ panelTitle, dragHandleProps, onClose, nodeIcon, nodeLabel, nodeCategory, action, schema, plugins, onSubmit, disabled, autoComplete, resetKey, className, contentInset = '1.5rem', children, headerExtra, sectionVariant, activeStepId, onActiveStepChange }) {
|
|
35
35
|
const hasNodeHeader = !!(nodeLabel || nodeCategory || nodeIcon || action);
|
|
36
36
|
const formSchema = (0, external_react_namespaceObject.useMemo)(()=>schema && void 0 === schema.actions ? {
|
|
37
37
|
...schema,
|
|
@@ -46,13 +46,16 @@ function NodePropertyPanel({ panelTitle, onClose, nodeIcon, nodeLabel, nodeCateg
|
|
|
46
46
|
},
|
|
47
47
|
children: [
|
|
48
48
|
panelTitle && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
|
|
49
|
+
"data-slot": "node-property-panel-titlebar",
|
|
49
50
|
className: "flex h-10 shrink-0 items-center justify-between px-2",
|
|
50
51
|
children: [
|
|
51
52
|
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)("div", {
|
|
52
53
|
className: "flex items-center gap-1",
|
|
53
54
|
children: [
|
|
54
55
|
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("div", {
|
|
55
|
-
|
|
56
|
+
...dragHandleProps,
|
|
57
|
+
"data-slot": "node-property-panel-drag-handle",
|
|
58
|
+
className: "grid size-8 cursor-grab touch-none place-items-center text-foreground-subtle active:cursor-grabbing",
|
|
56
59
|
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_lucide_react_namespaceObject.GripVertical, {
|
|
57
60
|
size: 14
|
|
58
61
|
})
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { NodePropertyPanelProps } from './NodePropertyPanel.types';
|
|
2
|
-
export declare function NodePropertyPanel({ panelTitle, onClose, nodeIcon, nodeLabel, nodeCategory, action, schema, plugins, onSubmit, disabled, autoComplete, resetKey, className, contentInset, children, headerExtra, sectionVariant, activeStepId, onActiveStepChange, }: NodePropertyPanelProps): import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export declare function NodePropertyPanel({ panelTitle, dragHandleProps, onClose, nodeIcon, nodeLabel, nodeCategory, action, schema, plugins, onSubmit, disabled, autoComplete, resetKey, className, contentInset, children, headerExtra, sectionVariant, activeStepId, onActiveStepChange, }: NodePropertyPanelProps): import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
//# sourceMappingURL=NodePropertyPanel.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NodePropertyPanel.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/NodePropertyPanel/NodePropertyPanel.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,2BAA2B,CAAC;AAmCxE,wBAAgB,iBAAiB,CAAC,EAChC,UAAU,EACV,OAAO,EACP,QAAQ,EACR,SAAS,EACT,YAAY,EACZ,MAAM,EACN,MAAM,EACN,OAAO,EACP,QAAQ,EACR,QAAQ,EACR,YAAY,EACZ,QAAQ,EACR,SAAS,EACT,YAAuB,EACvB,QAAQ,EACR,WAAW,EACX,cAAc,EACd,YAAY,EACZ,kBAAkB,GACnB,EAAE,sBAAsB,
|
|
1
|
+
{"version":3,"file":"NodePropertyPanel.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/NodePropertyPanel/NodePropertyPanel.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,2BAA2B,CAAC;AAmCxE,wBAAgB,iBAAiB,CAAC,EAChC,UAAU,EACV,eAAe,EACf,OAAO,EACP,QAAQ,EACR,SAAS,EACT,YAAY,EACZ,MAAM,EACN,MAAM,EACN,OAAO,EACP,QAAQ,EACR,QAAQ,EACR,YAAY,EACZ,QAAQ,EACR,SAAS,EACT,YAAuB,EACvB,QAAQ,EACR,WAAW,EACX,cAAc,EACd,YAAY,EACZ,kBAAkB,GACnB,EAAE,sBAAsB,2CAuIxB"}
|
|
@@ -3,7 +3,7 @@ import { MetadataForm, cn } from "@uipath/apollo-wind";
|
|
|
3
3
|
import { GripVertical, X } from "lucide-react";
|
|
4
4
|
import { useMemo } from "react";
|
|
5
5
|
const SURFACE_REMAP = 'future:[--surface-raised:var(--surface-overlay)]';
|
|
6
|
-
function NodePropertyPanel({ panelTitle, onClose, nodeIcon, nodeLabel, nodeCategory, action, schema, plugins, onSubmit, disabled, autoComplete, resetKey, className, contentInset = '1.5rem', children, headerExtra, sectionVariant, activeStepId, onActiveStepChange }) {
|
|
6
|
+
function NodePropertyPanel({ panelTitle, dragHandleProps, onClose, nodeIcon, nodeLabel, nodeCategory, action, schema, plugins, onSubmit, disabled, autoComplete, resetKey, className, contentInset = '1.5rem', children, headerExtra, sectionVariant, activeStepId, onActiveStepChange }) {
|
|
7
7
|
const hasNodeHeader = !!(nodeLabel || nodeCategory || nodeIcon || action);
|
|
8
8
|
const formSchema = useMemo(()=>schema && void 0 === schema.actions ? {
|
|
9
9
|
...schema,
|
|
@@ -18,13 +18,16 @@ function NodePropertyPanel({ panelTitle, onClose, nodeIcon, nodeLabel, nodeCateg
|
|
|
18
18
|
},
|
|
19
19
|
children: [
|
|
20
20
|
panelTitle && /*#__PURE__*/ jsxs("div", {
|
|
21
|
+
"data-slot": "node-property-panel-titlebar",
|
|
21
22
|
className: "flex h-10 shrink-0 items-center justify-between px-2",
|
|
22
23
|
children: [
|
|
23
24
|
/*#__PURE__*/ jsxs("div", {
|
|
24
25
|
className: "flex items-center gap-1",
|
|
25
26
|
children: [
|
|
26
27
|
/*#__PURE__*/ jsx("div", {
|
|
27
|
-
|
|
28
|
+
...dragHandleProps,
|
|
29
|
+
"data-slot": "node-property-panel-drag-handle",
|
|
30
|
+
className: "grid size-8 cursor-grab touch-none place-items-center text-foreground-subtle active:cursor-grabbing",
|
|
28
31
|
children: /*#__PURE__*/ jsx(GripVertical, {
|
|
29
32
|
size: 14
|
|
30
33
|
})
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import type { FormPlugin, FormSchema } from '@uipath/apollo-wind';
|
|
2
|
-
import type { ReactNode } from 'react';
|
|
2
|
+
import type { HTMLAttributes, ReactNode } from 'react';
|
|
3
3
|
export interface NodePropertyPanelProps {
|
|
4
4
|
panelTitle?: string;
|
|
5
|
+
dragHandleProps?: Omit<HTMLAttributes<HTMLDivElement>, 'className'>;
|
|
5
6
|
onClose?: () => void;
|
|
6
7
|
nodeIcon?: ReactNode;
|
|
7
8
|
nodeLabel?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NodePropertyPanel.types.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/NodePropertyPanel/NodePropertyPanel.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAClE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"NodePropertyPanel.types.d.ts","sourceRoot":"","sources":["../../../../src/canvas/components/NodePropertyPanel/NodePropertyPanel.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAClE,OAAO,KAAK,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvD,MAAM,WAAW,sBAAsB;IAKrC,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB,eAAe,CAAC,EAAE,IAAI,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,WAAW,CAAC,CAAC;IAEpE,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IAErB,QAAQ,CAAC,EAAE,SAAS,CAAC;IAErB,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB,MAAM,CAAC,EAAE,SAAS,CAAC;IAMnB,MAAM,CAAC,EAAE,UAAU,CAAC;IAMpB,OAAO,CAAC,EAAE,UAAU,EAAE,CAAC;IAOvB,cAAc,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;IAMlC,YAAY,CAAC,EAAE,MAAM,CAAC;IAKtB,kBAAkB,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;IAE9C,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEnD,QAAQ,CAAC,EAAE,OAAO,CAAC;IAMnB,YAAY,CAAC,EAAE,KAAK,GAAG,IAAI,CAAC;IAM5B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IAMnB,YAAY,CAAC,EAAE,MAAM,CAAC;IAKtB,WAAW,CAAC,EAAE,SAAS,CAAC;IAQxB,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB"}
|
|
@@ -33,6 +33,21 @@ const apollo_wind_namespaceObject = require("@uipath/apollo-wind");
|
|
|
33
33
|
const external_lucide_react_namespaceObject = require("lucide-react");
|
|
34
34
|
const external_react_namespaceObject = require("react");
|
|
35
35
|
const index_cjs_namespaceObject = require("../../../i18n/index.cjs");
|
|
36
|
+
const icon_registry_cjs_namespaceObject = require("../../utils/icon-registry.cjs");
|
|
37
|
+
function ModeIcon({ icon, size, className }) {
|
|
38
|
+
if ('string' == typeof icon) return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("span", {
|
|
39
|
+
className: (0, apollo_wind_namespaceObject.cn)('inline-flex', className),
|
|
40
|
+
children: /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(icon_registry_cjs_namespaceObject.CanvasIcon, {
|
|
41
|
+
icon: icon,
|
|
42
|
+
size: size
|
|
43
|
+
})
|
|
44
|
+
});
|
|
45
|
+
const Icon = icon;
|
|
46
|
+
return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(Icon, {
|
|
47
|
+
size: size,
|
|
48
|
+
className: className
|
|
49
|
+
});
|
|
50
|
+
}
|
|
36
51
|
const MODE_DEFS = [
|
|
37
52
|
{
|
|
38
53
|
value: 'live',
|
|
@@ -60,7 +75,7 @@ const MODE_DEFS = [
|
|
|
60
75
|
},
|
|
61
76
|
{
|
|
62
77
|
value: 'simulated',
|
|
63
|
-
icon:
|
|
78
|
+
icon: 'file-sparkles-corner',
|
|
64
79
|
label: {
|
|
65
80
|
id: 'canvas.node_mode_select.simulated_label',
|
|
66
81
|
message: 'Simulated'
|
|
@@ -110,8 +125,10 @@ function NodeOutputModeSelect({ value, onChange, options, disabled = false, clas
|
|
|
110
125
|
}),
|
|
111
126
|
className: (0, apollo_wind_namespaceObject.cn)('min-w-12 gap-1.5 rounded-full border border-border px-2 text-[11px] font-medium text-foreground-muted hover:bg-surface-overlay hover:text-foreground [&_svg]:size-2.5', className),
|
|
112
127
|
children: [
|
|
113
|
-
CurrentIcon && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(
|
|
114
|
-
|
|
128
|
+
CurrentIcon && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(ModeIcon, {
|
|
129
|
+
icon: CurrentIcon,
|
|
130
|
+
className: "text-foreground-subtle",
|
|
131
|
+
size: 10
|
|
115
132
|
}),
|
|
116
133
|
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("span", {
|
|
117
134
|
className: "min-w-0 flex-1 truncate shrink-0",
|
|
@@ -134,7 +151,8 @@ function NodeOutputModeSelect({ value, onChange, options, disabled = false, clas
|
|
|
134
151
|
value: option.value,
|
|
135
152
|
className: (0, apollo_wind_namespaceObject.cn)('group flex items-center gap-2 [&>span:first-child]:text-foreground-accent', selectedValue === option.value && 'text-foreground'),
|
|
136
153
|
children: [
|
|
137
|
-
Icon && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(
|
|
154
|
+
Icon && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(ModeIcon, {
|
|
155
|
+
icon: Icon,
|
|
138
156
|
size: 13,
|
|
139
157
|
className: "shrink-0 text-foreground-subtle"
|
|
140
158
|
}),
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import type { LucideIcon } from 'lucide-react';
|
|
2
|
+
export type NodeOutputModeIcon = LucideIcon | string;
|
|
2
3
|
export interface NodeOutputModeOption {
|
|
3
4
|
value: string;
|
|
4
5
|
label: string;
|
|
5
6
|
description?: string;
|
|
6
|
-
icon?:
|
|
7
|
+
icon?: NodeOutputModeIcon;
|
|
7
8
|
}
|
|
8
9
|
export declare const DEFAULT_NODE_OUTPUT_MODES: NodeOutputModeOption[];
|
|
9
10
|
export declare function useDefaultNodeOutputModes(): NodeOutputModeOption[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NodeOutputModeSelect.d.ts","sourceRoot":"","sources":["../../../../src/canvas/controls/NodeOutputModeSelect/NodeOutputModeSelect.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"NodeOutputModeSelect.d.ts","sourceRoot":"","sources":["../../../../src/canvas/controls/NodeOutputModeSelect/NodeOutputModeSelect.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAgB/C,MAAM,MAAM,kBAAkB,GAAG,UAAU,GAAG,MAAM,CAAC;AAErD,MAAM,WAAW,oBAAoB;IACnC,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,kBAAkB,CAAC;CAC3B;AAqED,eAAO,MAAM,yBAAyB,EAAE,oBAAoB,EAKzD,CAAC;AAGJ,wBAAgB,yBAAyB,IAAI,oBAAoB,EAAE,CAYlE;AAED,MAAM,WAAW,yBAAyB;IAExC,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAElC,OAAO,CAAC,EAAE,oBAAoB,EAAE,CAAC;IACjC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAGD,wBAAgB,oBAAoB,CAAC,EACnC,KAAK,EACL,QAAQ,EACR,OAAO,EACP,QAAgB,EAChB,SAAS,GACV,EAAE,yBAAyB,2CAoE3B"}
|
|
@@ -1,8 +1,23 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { Button, DropdownMenu, DropdownMenuContent, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuTrigger, cn } from "@uipath/apollo-wind";
|
|
3
|
-
import { ChevronDown, CircleDot, FileBracesCorner
|
|
3
|
+
import { ChevronDown, CircleDot, FileBracesCorner } from "lucide-react";
|
|
4
4
|
import { useMemo } from "react";
|
|
5
5
|
import { useSafeLingui } from "../../../i18n/index.js";
|
|
6
|
+
import { CanvasIcon } from "../../utils/icon-registry.js";
|
|
7
|
+
function ModeIcon({ icon, size, className }) {
|
|
8
|
+
if ('string' == typeof icon) return /*#__PURE__*/ jsx("span", {
|
|
9
|
+
className: cn('inline-flex', className),
|
|
10
|
+
children: /*#__PURE__*/ jsx(CanvasIcon, {
|
|
11
|
+
icon: icon,
|
|
12
|
+
size: size
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
const Icon = icon;
|
|
16
|
+
return /*#__PURE__*/ jsx(Icon, {
|
|
17
|
+
size: size,
|
|
18
|
+
className: className
|
|
19
|
+
});
|
|
20
|
+
}
|
|
6
21
|
const MODE_DEFS = [
|
|
7
22
|
{
|
|
8
23
|
value: 'live',
|
|
@@ -30,7 +45,7 @@ const MODE_DEFS = [
|
|
|
30
45
|
},
|
|
31
46
|
{
|
|
32
47
|
value: 'simulated',
|
|
33
|
-
icon:
|
|
48
|
+
icon: 'file-sparkles-corner',
|
|
34
49
|
label: {
|
|
35
50
|
id: 'canvas.node_mode_select.simulated_label',
|
|
36
51
|
message: 'Simulated'
|
|
@@ -80,8 +95,10 @@ function NodeOutputModeSelect({ value, onChange, options, disabled = false, clas
|
|
|
80
95
|
}),
|
|
81
96
|
className: cn('min-w-12 gap-1.5 rounded-full border border-border px-2 text-[11px] font-medium text-foreground-muted hover:bg-surface-overlay hover:text-foreground [&_svg]:size-2.5', className),
|
|
82
97
|
children: [
|
|
83
|
-
CurrentIcon && /*#__PURE__*/ jsx(
|
|
84
|
-
|
|
98
|
+
CurrentIcon && /*#__PURE__*/ jsx(ModeIcon, {
|
|
99
|
+
icon: CurrentIcon,
|
|
100
|
+
className: "text-foreground-subtle",
|
|
101
|
+
size: 10
|
|
85
102
|
}),
|
|
86
103
|
/*#__PURE__*/ jsx("span", {
|
|
87
104
|
className: "min-w-0 flex-1 truncate shrink-0",
|
|
@@ -104,7 +121,8 @@ function NodeOutputModeSelect({ value, onChange, options, disabled = false, clas
|
|
|
104
121
|
value: option.value,
|
|
105
122
|
className: cn('group flex items-center gap-2 [&>span:first-child]:text-foreground-accent', selectedValue === option.value && 'text-foreground'),
|
|
106
123
|
children: [
|
|
107
|
-
Icon && /*#__PURE__*/ jsx(
|
|
124
|
+
Icon && /*#__PURE__*/ jsx(ModeIcon, {
|
|
125
|
+
icon: Icon,
|
|
108
126
|
size: 13,
|
|
109
127
|
className: "shrink-0 text-foreground-subtle"
|
|
110
128
|
}),
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { DEFAULT_NODE_OUTPUT_MODES, type NodeOutputModeOption, NodeOutputModeSelect, type NodeOutputModeSelectProps, useDefaultNodeOutputModes, } from './NodeOutputModeSelect';
|
|
1
|
+
export { DEFAULT_NODE_OUTPUT_MODES, type NodeOutputModeIcon, type NodeOutputModeOption, NodeOutputModeSelect, type NodeOutputModeSelectProps, useDefaultNodeOutputModes, } from './NodeOutputModeSelect';
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/canvas/controls/NodeOutputModeSelect/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,yBAAyB,EACzB,KAAK,oBAAoB,EACzB,oBAAoB,EACpB,KAAK,yBAAyB,EAC9B,yBAAyB,GAC1B,MAAM,wBAAwB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/canvas/controls/NodeOutputModeSelect/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,yBAAyB,EACzB,KAAK,kBAAkB,EACvB,KAAK,oBAAoB,EACzB,oBAAoB,EACpB,KAAK,yBAAyB,EAC9B,yBAAyB,GAC1B,MAAM,wBAAwB,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { Breadcrumb } from './Breadcrumb';
|
|
2
|
-
export { DEFAULT_NODE_OUTPUT_MODES, type NodeOutputModeOption, NodeOutputModeSelect, type NodeOutputModeSelectProps, useDefaultNodeOutputModes, } from './NodeOutputModeSelect';
|
|
2
|
+
export { DEFAULT_NODE_OUTPUT_MODES, type NodeOutputModeIcon, type NodeOutputModeOption, NodeOutputModeSelect, type NodeOutputModeSelectProps, useDefaultNodeOutputModes, } from './NodeOutputModeSelect';
|
|
3
3
|
export { NodePropertyTrigger, NodePropertyTriggerCheckboxItem, NodePropertyTriggerRadioItem, NodePropertyTriggerSectionLabel, NodePropertyTriggerSeparator, } from './NodePropertyTrigger';
|
|
4
4
|
export type { NodePropertyTriggerProps, NodePropertyTriggerItem, NodePropertyTriggerBehavior, NodePropertyTriggerBehaviorOption, NodePropertyTriggerCheckboxItemProps, NodePropertyTriggerLayout, NodePropertyTriggerLayoutOption, NodePropertyTriggerPreset, } from './NodePropertyTrigger';
|
|
5
5
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/canvas/controls/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EACL,yBAAyB,EACzB,KAAK,oBAAoB,EACzB,oBAAoB,EACpB,KAAK,yBAAyB,EAC9B,yBAAyB,GAC1B,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,mBAAmB,EACnB,+BAA+B,EAC/B,4BAA4B,EAC5B,+BAA+B,EAC/B,4BAA4B,GAC7B,MAAM,uBAAuB,CAAC;AAC/B,YAAY,EACV,wBAAwB,EACxB,uBAAuB,EACvB,2BAA2B,EAC3B,iCAAiC,EACjC,oCAAoC,EACpC,yBAAyB,EACzB,+BAA+B,EAC/B,yBAAyB,GAC1B,MAAM,uBAAuB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/canvas/controls/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EACL,yBAAyB,EACzB,KAAK,kBAAkB,EACvB,KAAK,oBAAoB,EACzB,oBAAoB,EACpB,KAAK,yBAAyB,EAC9B,yBAAyB,GAC1B,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,mBAAmB,EACnB,+BAA+B,EAC/B,4BAA4B,EAC5B,+BAA+B,EAC/B,4BAA4B,GAC7B,MAAM,uBAAuB,CAAC;AAC/B,YAAY,EACV,wBAAwB,EACxB,uBAAuB,EACvB,2BAA2B,EAC3B,iCAAiC,EACjC,oCAAoC,EACpC,yBAAyB,EACzB,+BAA+B,EAC/B,yBAAyB,GAC1B,MAAM,uBAAuB,CAAC"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
.canvas-template-dockview, .canvas-template-dockview :where(.dv-tabs-and-actions-container, .dv-groupview, .dv-tab, .dv-tabs-container, .dv-void-container) {
|
|
2
|
+
--dv-background-color: var(--surface);
|
|
3
|
+
--dv-paneview-active-outline-color: transparent;
|
|
4
|
+
--dv-group-view-background-color: var(--surface-raised);
|
|
5
|
+
--dv-tabs-and-actions-container-background-color: var(--surface-raised);
|
|
6
|
+
--dv-activegroup-visiblepanel-tab-background-color: var(--surface-raised);
|
|
7
|
+
--dv-activegroup-hiddenpanel-tab-background-color: var(--surface-raised);
|
|
8
|
+
--dv-inactivegroup-visiblepanel-tab-background-color: var(--surface-raised);
|
|
9
|
+
--dv-inactivegroup-hiddenpanel-tab-background-color: var(--surface-raised);
|
|
10
|
+
--dv-tab-background-color: transparent;
|
|
11
|
+
--dv-activegroup-visiblepanel-tab-color: var(--foreground);
|
|
12
|
+
--dv-activegroup-hiddenpanel-tab-color: var(--foreground-muted);
|
|
13
|
+
--dv-inactivegroup-visiblepanel-tab-color: var(--foreground);
|
|
14
|
+
--dv-inactivegroup-hiddenpanel-tab-color: var(--foreground-muted);
|
|
15
|
+
--dv-separator-border: var(--border-subtle);
|
|
16
|
+
--dv-tab-divider-color: transparent;
|
|
17
|
+
--dv-drag-over-border: 2px solid var(--primary);
|
|
18
|
+
--dv-drag-over-background-color: color-mix(in srgb, var(--primary) 16%, transparent);
|
|
19
|
+
--dv-active-sash-color: var(--primary);
|
|
20
|
+
--dv-icon-hover-background-color: var(--surface-hover);
|
|
21
|
+
--dv-border-radius: 0;
|
|
22
|
+
--dv-tabs-and-actions-container-height: 36px;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.canvas-template-dockview .dv-groupview {
|
|
26
|
+
background: var(--surface-raised);
|
|
27
|
+
border: 1px solid var(--border-subtle);
|
|
28
|
+
overflow: hidden;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.canvas-template-dockview .dv-tabs-and-actions-container {
|
|
32
|
+
border-bottom: 1px solid var(--border-subtle);
|
|
33
|
+
padding: 0 2px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.canvas-template-dockview .dv-tab {
|
|
37
|
+
height: 32px;
|
|
38
|
+
color: var(--foreground-muted);
|
|
39
|
+
cursor: grab;
|
|
40
|
+
border-radius: 8px;
|
|
41
|
+
margin: 2px;
|
|
42
|
+
padding: 0 10px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.canvas-template-dockview .dv-tab:hover, .canvas-template-dockview .dv-tab.dv-active-tab {
|
|
46
|
+
background: var(--surface-overlay);
|
|
47
|
+
color: var(--foreground);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.canvas-template-dockview .dv-sash:hover, .canvas-template-dockview .dv-sash:active {
|
|
51
|
+
background: var(--primary);
|
|
52
|
+
}
|
|
53
|
+
|