@almadar/ui 4.47.2 → 4.47.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 +1 -1
- package/dist/avl/index.js +1 -1
- package/package.json +1 -1
package/dist/avl/index.cjs
CHANGED
|
@@ -60610,7 +60610,7 @@ var AvlTransitionScene = ({
|
|
|
60610
60610
|
effects.map((eff, i) => {
|
|
60611
60611
|
const rowY = secY + 22 + i * effectRowH;
|
|
60612
60612
|
const effectType = mapEffectType(eff.type);
|
|
60613
|
-
const argsText = eff.args.length > 0 ? eff.args.join(" \xB7 ") : "";
|
|
60613
|
+
const argsText = eff.args.length > 0 ? eff.args.map((a) => typeof a === "string" ? a : JSON.stringify(a)).join(" \xB7 ") : "";
|
|
60614
60614
|
return /* @__PURE__ */ jsxRuntime.jsxs("g", { children: [
|
|
60615
60615
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
60616
60616
|
exports.AvlEffect,
|
package/dist/avl/index.js
CHANGED
|
@@ -60564,7 +60564,7 @@ var AvlTransitionScene = ({
|
|
|
60564
60564
|
effects.map((eff, i) => {
|
|
60565
60565
|
const rowY = secY + 22 + i * effectRowH;
|
|
60566
60566
|
const effectType = mapEffectType(eff.type);
|
|
60567
|
-
const argsText = eff.args.length > 0 ? eff.args.join(" \xB7 ") : "";
|
|
60567
|
+
const argsText = eff.args.length > 0 ? eff.args.map((a) => typeof a === "string" ? a : JSON.stringify(a)).join(" \xB7 ") : "";
|
|
60568
60568
|
return /* @__PURE__ */ jsxs("g", { children: [
|
|
60569
60569
|
/* @__PURE__ */ jsx(
|
|
60570
60570
|
AvlEffect,
|