@almadar/ui 4.47.5 → 4.47.6
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
CHANGED
|
@@ -4418,6 +4418,9 @@ function exprToTree(expr) {
|
|
|
4418
4418
|
}
|
|
4419
4419
|
return { label: expr, type: "literal" };
|
|
4420
4420
|
}
|
|
4421
|
+
if (expr !== null && typeof expr === "object") {
|
|
4422
|
+
return { label: JSON.stringify(expr), type: "literal" };
|
|
4423
|
+
}
|
|
4421
4424
|
return { label: String(expr), type: "literal" };
|
|
4422
4425
|
}
|
|
4423
4426
|
function parseApplicationLevel(schema) {
|
package/dist/avl/index.js
CHANGED
|
@@ -4372,6 +4372,9 @@ function exprToTree(expr) {
|
|
|
4372
4372
|
}
|
|
4373
4373
|
return { label: expr, type: "literal" };
|
|
4374
4374
|
}
|
|
4375
|
+
if (expr !== null && typeof expr === "object") {
|
|
4376
|
+
return { label: JSON.stringify(expr), type: "literal" };
|
|
4377
|
+
}
|
|
4375
4378
|
return { label: String(expr), type: "literal" };
|
|
4376
4379
|
}
|
|
4377
4380
|
function parseApplicationLevel(schema) {
|
|
@@ -3484,6 +3484,9 @@ function exprToTree(expr) {
|
|
|
3484
3484
|
}
|
|
3485
3485
|
return { label: expr, type: "literal" };
|
|
3486
3486
|
}
|
|
3487
|
+
if (expr !== null && typeof expr === "object") {
|
|
3488
|
+
return { label: JSON.stringify(expr), type: "literal" };
|
|
3489
|
+
}
|
|
3487
3490
|
return { label: String(expr), type: "literal" };
|
|
3488
3491
|
}
|
|
3489
3492
|
function parseApplicationLevel(schema) {
|
|
@@ -3460,6 +3460,9 @@ function exprToTree(expr) {
|
|
|
3460
3460
|
}
|
|
3461
3461
|
return { label: expr, type: "literal" };
|
|
3462
3462
|
}
|
|
3463
|
+
if (expr !== null && typeof expr === "object") {
|
|
3464
|
+
return { label: JSON.stringify(expr), type: "literal" };
|
|
3465
|
+
}
|
|
3463
3466
|
return { label: String(expr), type: "literal" };
|
|
3464
3467
|
}
|
|
3465
3468
|
function parseApplicationLevel(schema) {
|