@almadar/ui 5.7.0 → 5.8.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/avl/index.cjs +3 -2
- package/dist/avl/index.js +3 -2
- package/dist/runtime/index.cjs +3 -2
- package/dist/runtime/index.js +3 -2
- package/package.json +1 -1
package/dist/avl/index.cjs
CHANGED
|
@@ -59716,10 +59716,11 @@ function makeLambdaFn(argName, lambdaBody, callerKey) {
|
|
|
59716
59716
|
return null;
|
|
59717
59717
|
}
|
|
59718
59718
|
const SlotContentRenderer2 = getSlotContentRenderer2();
|
|
59719
|
-
const
|
|
59719
|
+
const rawChildProps = {};
|
|
59720
59720
|
for (const [k, v] of Object.entries(record)) {
|
|
59721
|
-
if (k !== "type")
|
|
59721
|
+
if (k !== "type") rawChildProps[k] = v;
|
|
59722
59722
|
}
|
|
59723
|
+
const childProps = convertObjectProps(rawChildProps);
|
|
59723
59724
|
const childContent = {
|
|
59724
59725
|
id: `lambda-${callerKey}-${index}`,
|
|
59725
59726
|
pattern: record.type,
|
package/dist/avl/index.js
CHANGED
|
@@ -59667,10 +59667,11 @@ function makeLambdaFn(argName, lambdaBody, callerKey) {
|
|
|
59667
59667
|
return null;
|
|
59668
59668
|
}
|
|
59669
59669
|
const SlotContentRenderer2 = getSlotContentRenderer2();
|
|
59670
|
-
const
|
|
59670
|
+
const rawChildProps = {};
|
|
59671
59671
|
for (const [k, v] of Object.entries(record)) {
|
|
59672
|
-
if (k !== "type")
|
|
59672
|
+
if (k !== "type") rawChildProps[k] = v;
|
|
59673
59673
|
}
|
|
59674
|
+
const childProps = convertObjectProps(rawChildProps);
|
|
59674
59675
|
const childContent = {
|
|
59675
59676
|
id: `lambda-${callerKey}-${index}`,
|
|
59676
59677
|
pattern: record.type,
|
package/dist/runtime/index.cjs
CHANGED
|
@@ -47172,10 +47172,11 @@ function makeLambdaFn(argName, lambdaBody, callerKey) {
|
|
|
47172
47172
|
return null;
|
|
47173
47173
|
}
|
|
47174
47174
|
const SlotContentRenderer2 = getSlotContentRenderer2();
|
|
47175
|
-
const
|
|
47175
|
+
const rawChildProps = {};
|
|
47176
47176
|
for (const [k, v] of Object.entries(record)) {
|
|
47177
|
-
if (k !== "type")
|
|
47177
|
+
if (k !== "type") rawChildProps[k] = v;
|
|
47178
47178
|
}
|
|
47179
|
+
const childProps = convertObjectProps(rawChildProps);
|
|
47179
47180
|
const childContent = {
|
|
47180
47181
|
id: `lambda-${callerKey}-${index}`,
|
|
47181
47182
|
pattern: record.type,
|
package/dist/runtime/index.js
CHANGED
|
@@ -47123,10 +47123,11 @@ function makeLambdaFn(argName, lambdaBody, callerKey) {
|
|
|
47123
47123
|
return null;
|
|
47124
47124
|
}
|
|
47125
47125
|
const SlotContentRenderer2 = getSlotContentRenderer2();
|
|
47126
|
-
const
|
|
47126
|
+
const rawChildProps = {};
|
|
47127
47127
|
for (const [k, v] of Object.entries(record)) {
|
|
47128
|
-
if (k !== "type")
|
|
47128
|
+
if (k !== "type") rawChildProps[k] = v;
|
|
47129
47129
|
}
|
|
47130
|
+
const childProps = convertObjectProps(rawChildProps);
|
|
47130
47131
|
const childContent = {
|
|
47131
47132
|
id: `lambda-${callerKey}-${index}`,
|
|
47132
47133
|
pattern: record.type,
|