@almadar/ui 4.19.0 → 4.19.2
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 +9 -0
- package/dist/avl/index.js +9 -0
- package/dist/runtime/index.cjs +9 -0
- package/dist/runtime/index.js +9 -0
- package/package.json +1 -1
package/dist/avl/index.cjs
CHANGED
|
@@ -51638,6 +51638,15 @@ function getSlotContentRenderer2() {
|
|
|
51638
51638
|
}
|
|
51639
51639
|
function makeLambdaFn(argName, lambdaBody, callerKey) {
|
|
51640
51640
|
return (item, index) => {
|
|
51641
|
+
lambdaLog.info("invoke", {
|
|
51642
|
+
argName,
|
|
51643
|
+
callerKey,
|
|
51644
|
+
index,
|
|
51645
|
+
itemType: typeof item,
|
|
51646
|
+
itemIsArray: Array.isArray(item),
|
|
51647
|
+
itemKeys: item && typeof item === "object" ? Object.keys(item).slice(0, 12) : null,
|
|
51648
|
+
itemSample: JSON.stringify(item).slice(0, 400)
|
|
51649
|
+
});
|
|
51641
51650
|
const resolvedBody = resolveLambdaBindings(lambdaBody, argName, item);
|
|
51642
51651
|
if (resolvedBody === null || typeof resolvedBody !== "object" || Array.isArray(resolvedBody)) {
|
|
51643
51652
|
return null;
|
package/dist/avl/index.js
CHANGED
|
@@ -51592,6 +51592,15 @@ function getSlotContentRenderer2() {
|
|
|
51592
51592
|
}
|
|
51593
51593
|
function makeLambdaFn(argName, lambdaBody, callerKey) {
|
|
51594
51594
|
return (item, index) => {
|
|
51595
|
+
lambdaLog.info("invoke", {
|
|
51596
|
+
argName,
|
|
51597
|
+
callerKey,
|
|
51598
|
+
index,
|
|
51599
|
+
itemType: typeof item,
|
|
51600
|
+
itemIsArray: Array.isArray(item),
|
|
51601
|
+
itemKeys: item && typeof item === "object" ? Object.keys(item).slice(0, 12) : null,
|
|
51602
|
+
itemSample: JSON.stringify(item).slice(0, 400)
|
|
51603
|
+
});
|
|
51595
51604
|
const resolvedBody = resolveLambdaBindings(lambdaBody, argName, item);
|
|
51596
51605
|
if (resolvedBody === null || typeof resolvedBody !== "object" || Array.isArray(resolvedBody)) {
|
|
51597
51606
|
return null;
|
package/dist/runtime/index.cjs
CHANGED
|
@@ -38229,6 +38229,15 @@ function getSlotContentRenderer2() {
|
|
|
38229
38229
|
}
|
|
38230
38230
|
function makeLambdaFn(argName, lambdaBody, callerKey) {
|
|
38231
38231
|
return (item, index) => {
|
|
38232
|
+
lambdaLog.info("invoke", {
|
|
38233
|
+
argName,
|
|
38234
|
+
callerKey,
|
|
38235
|
+
index,
|
|
38236
|
+
itemType: typeof item,
|
|
38237
|
+
itemIsArray: Array.isArray(item),
|
|
38238
|
+
itemKeys: item && typeof item === "object" ? Object.keys(item).slice(0, 12) : null,
|
|
38239
|
+
itemSample: JSON.stringify(item).slice(0, 400)
|
|
38240
|
+
});
|
|
38232
38241
|
const resolvedBody = resolveLambdaBindings(lambdaBody, argName, item);
|
|
38233
38242
|
if (resolvedBody === null || typeof resolvedBody !== "object" || Array.isArray(resolvedBody)) {
|
|
38234
38243
|
return null;
|
package/dist/runtime/index.js
CHANGED
|
@@ -38184,6 +38184,15 @@ function getSlotContentRenderer2() {
|
|
|
38184
38184
|
}
|
|
38185
38185
|
function makeLambdaFn(argName, lambdaBody, callerKey) {
|
|
38186
38186
|
return (item, index) => {
|
|
38187
|
+
lambdaLog.info("invoke", {
|
|
38188
|
+
argName,
|
|
38189
|
+
callerKey,
|
|
38190
|
+
index,
|
|
38191
|
+
itemType: typeof item,
|
|
38192
|
+
itemIsArray: Array.isArray(item),
|
|
38193
|
+
itemKeys: item && typeof item === "object" ? Object.keys(item).slice(0, 12) : null,
|
|
38194
|
+
itemSample: JSON.stringify(item).slice(0, 400)
|
|
38195
|
+
});
|
|
38187
38196
|
const resolvedBody = resolveLambdaBindings(lambdaBody, argName, item);
|
|
38188
38197
|
if (resolvedBody === null || typeof resolvedBody !== "object" || Array.isArray(resolvedBody)) {
|
|
38189
38198
|
return null;
|