@almadar/ui 4.53.2 → 4.53.3
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/avl/index.cjs +22 -13
- package/dist/avl/index.js +22 -13
- package/package.json +1 -1
package/dist/avl/index.cjs
CHANGED
|
@@ -61182,7 +61182,7 @@ function OrbInspector({ node, schema, editable = false, userType = "builder", th
|
|
|
61182
61182
|
eventBus.emit("UI:REMOVE_EFFECT", { effectIndex });
|
|
61183
61183
|
}, [eventBus]);
|
|
61184
61184
|
const headerTitle = selectedPattern ? selectedPattern.patternType : isExpanded ? transitionEvent || "Transition" : orbitalName;
|
|
61185
|
-
return /* @__PURE__ */ jsxRuntime.jsxs(Box, { className: "flex flex-col bg-card border-l border-border h-full
|
|
61185
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(Box, { className: "flex flex-col bg-card border-l border-border h-full w-full sm:w-[340px]", children: [
|
|
61186
61186
|
/* @__PURE__ */ jsxRuntime.jsxs(Box, { className: "shrink-0 border-b border-border", children: [
|
|
61187
61187
|
/* @__PURE__ */ jsxRuntime.jsxs(Box, { className: "flex items-center justify-between px-4 py-2", children: [
|
|
61188
61188
|
/* @__PURE__ */ jsxRuntime.jsx(Box, { className: "flex items-center gap-2", children: selectedPattern ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -62011,18 +62011,27 @@ function FlowCanvasInner({
|
|
|
62011
62011
|
}
|
|
62012
62012
|
)
|
|
62013
62013
|
] }),
|
|
62014
|
-
selectedNode && /* @__PURE__ */ jsxRuntime.
|
|
62015
|
-
|
|
62016
|
-
|
|
62017
|
-
|
|
62018
|
-
|
|
62019
|
-
|
|
62020
|
-
|
|
62021
|
-
|
|
62022
|
-
|
|
62023
|
-
|
|
62024
|
-
|
|
62025
|
-
|
|
62014
|
+
selectedNode && /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
62015
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
62016
|
+
Box,
|
|
62017
|
+
{
|
|
62018
|
+
className: "fixed inset-0 bg-foreground/40 z-40 lg:hidden",
|
|
62019
|
+
onClick: handleClosePanel
|
|
62020
|
+
}
|
|
62021
|
+
),
|
|
62022
|
+
/* @__PURE__ */ jsxRuntime.jsx(Box, { className: "fixed inset-y-0 right-0 z-50 max-w-full lg:static lg:z-auto lg:max-w-none lg:flex-shrink-0", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
62023
|
+
OrbInspector,
|
|
62024
|
+
{
|
|
62025
|
+
node: selectedNode,
|
|
62026
|
+
schema: parsedSchema,
|
|
62027
|
+
editable,
|
|
62028
|
+
userType,
|
|
62029
|
+
themeManifest,
|
|
62030
|
+
onSchemaChange,
|
|
62031
|
+
onClose: handleClosePanel
|
|
62032
|
+
}
|
|
62033
|
+
) })
|
|
62034
|
+
] })
|
|
62026
62035
|
]
|
|
62027
62036
|
}
|
|
62028
62037
|
) }) });
|
package/dist/avl/index.js
CHANGED
|
@@ -61136,7 +61136,7 @@ function OrbInspector({ node, schema, editable = false, userType = "builder", th
|
|
|
61136
61136
|
eventBus.emit("UI:REMOVE_EFFECT", { effectIndex });
|
|
61137
61137
|
}, [eventBus]);
|
|
61138
61138
|
const headerTitle = selectedPattern ? selectedPattern.patternType : isExpanded ? transitionEvent || "Transition" : orbitalName;
|
|
61139
|
-
return /* @__PURE__ */ jsxs(Box, { className: "flex flex-col bg-card border-l border-border h-full
|
|
61139
|
+
return /* @__PURE__ */ jsxs(Box, { className: "flex flex-col bg-card border-l border-border h-full w-full sm:w-[340px]", children: [
|
|
61140
61140
|
/* @__PURE__ */ jsxs(Box, { className: "shrink-0 border-b border-border", children: [
|
|
61141
61141
|
/* @__PURE__ */ jsxs(Box, { className: "flex items-center justify-between px-4 py-2", children: [
|
|
61142
61142
|
/* @__PURE__ */ jsx(Box, { className: "flex items-center gap-2", children: selectedPattern ? /* @__PURE__ */ jsx(
|
|
@@ -61965,18 +61965,27 @@ function FlowCanvasInner({
|
|
|
61965
61965
|
}
|
|
61966
61966
|
)
|
|
61967
61967
|
] }),
|
|
61968
|
-
selectedNode && /* @__PURE__ */
|
|
61969
|
-
|
|
61970
|
-
|
|
61971
|
-
|
|
61972
|
-
|
|
61973
|
-
|
|
61974
|
-
|
|
61975
|
-
|
|
61976
|
-
|
|
61977
|
-
|
|
61978
|
-
|
|
61979
|
-
|
|
61968
|
+
selectedNode && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
61969
|
+
/* @__PURE__ */ jsx(
|
|
61970
|
+
Box,
|
|
61971
|
+
{
|
|
61972
|
+
className: "fixed inset-0 bg-foreground/40 z-40 lg:hidden",
|
|
61973
|
+
onClick: handleClosePanel
|
|
61974
|
+
}
|
|
61975
|
+
),
|
|
61976
|
+
/* @__PURE__ */ jsx(Box, { className: "fixed inset-y-0 right-0 z-50 max-w-full lg:static lg:z-auto lg:max-w-none lg:flex-shrink-0", children: /* @__PURE__ */ jsx(
|
|
61977
|
+
OrbInspector,
|
|
61978
|
+
{
|
|
61979
|
+
node: selectedNode,
|
|
61980
|
+
schema: parsedSchema,
|
|
61981
|
+
editable,
|
|
61982
|
+
userType,
|
|
61983
|
+
themeManifest,
|
|
61984
|
+
onSchemaChange,
|
|
61985
|
+
onClose: handleClosePanel
|
|
61986
|
+
}
|
|
61987
|
+
) })
|
|
61988
|
+
] })
|
|
61980
61989
|
]
|
|
61981
61990
|
}
|
|
61982
61991
|
) }) });
|