@almadar/ui 4.47.2 → 4.47.4

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.
@@ -60146,14 +60146,6 @@ function FlowCanvasInner({
60146
60146
  }) })
60147
60147
  ]
60148
60148
  }
60149
- ),
60150
- /* @__PURE__ */ jsxRuntime.jsx(
60151
- Box,
60152
- {
60153
- className: "absolute bottom-3 left-3 px-3 py-1 rounded-md bg-card/80 border border-border/40 backdrop-blur-sm",
60154
- style: { zIndex: 10 },
60155
- children: /* @__PURE__ */ jsxRuntime.jsx(Typography, { variant: "small", className: "text-muted-foreground text-[11px]", children: level === "overview" ? "Double-click a module to explore its screens" : "Click a screen to view code \xB7 Esc to go back" })
60156
- }
60157
60149
  )
60158
60150
  ] }),
60159
60151
  selectedNode && /* @__PURE__ */ jsxRuntime.jsx(
@@ -60610,7 +60602,7 @@ var AvlTransitionScene = ({
60610
60602
  effects.map((eff, i) => {
60611
60603
  const rowY = secY + 22 + i * effectRowH;
60612
60604
  const effectType = mapEffectType(eff.type);
60613
- const argsText = eff.args.length > 0 ? eff.args.join(" \xB7 ") : "";
60605
+ const argsText = eff.args.length > 0 ? eff.args.map((a) => typeof a === "string" ? a : JSON.stringify(a)).join(" \xB7 ") : "";
60614
60606
  return /* @__PURE__ */ jsxRuntime.jsxs("g", { children: [
60615
60607
  /* @__PURE__ */ jsxRuntime.jsx(
60616
60608
  exports.AvlEffect,
package/dist/avl/index.js CHANGED
@@ -60100,14 +60100,6 @@ function FlowCanvasInner({
60100
60100
  }) })
60101
60101
  ]
60102
60102
  }
60103
- ),
60104
- /* @__PURE__ */ jsx(
60105
- Box,
60106
- {
60107
- className: "absolute bottom-3 left-3 px-3 py-1 rounded-md bg-card/80 border border-border/40 backdrop-blur-sm",
60108
- style: { zIndex: 10 },
60109
- children: /* @__PURE__ */ jsx(Typography, { variant: "small", className: "text-muted-foreground text-[11px]", children: level === "overview" ? "Double-click a module to explore its screens" : "Click a screen to view code \xB7 Esc to go back" })
60110
- }
60111
60103
  )
60112
60104
  ] }),
60113
60105
  selectedNode && /* @__PURE__ */ jsx(
@@ -60564,7 +60556,7 @@ var AvlTransitionScene = ({
60564
60556
  effects.map((eff, i) => {
60565
60557
  const rowY = secY + 22 + i * effectRowH;
60566
60558
  const effectType = mapEffectType(eff.type);
60567
- const argsText = eff.args.length > 0 ? eff.args.join(" \xB7 ") : "";
60559
+ const argsText = eff.args.length > 0 ? eff.args.map((a) => typeof a === "string" ? a : JSON.stringify(a)).join(" \xB7 ") : "";
60568
60560
  return /* @__PURE__ */ jsxs("g", { children: [
60569
60561
  /* @__PURE__ */ jsx(
60570
60562
  AvlEffect,
@@ -1,6 +1,6 @@
1
1
  import React from "react";
2
2
  export interface LightboxImage {
3
- src: string;
3
+ src?: string;
4
4
  alt?: string;
5
5
  caption?: string;
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@almadar/ui",
3
- "version": "4.47.2",
3
+ "version": "4.47.4",
4
4
  "description": "React UI components, hooks, and providers for Almadar",
5
5
  "type": "module",
6
6
  "sideEffects": [