@almadar/ui 4.19.1 → 4.19.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.
@@ -51638,6 +51638,7 @@ function getSlotContentRenderer2() {
51638
51638
  }
51639
51639
  function makeLambdaFn(argName, lambdaBody, callerKey) {
51640
51640
  return (item, index) => {
51641
+ console.log(`[lambda-triage:${callerKey}#${index}]`, JSON.stringify(item));
51641
51642
  const resolvedBody = resolveLambdaBindings(lambdaBody, argName, item);
51642
51643
  if (resolvedBody === null || typeof resolvedBody !== "object" || Array.isArray(resolvedBody)) {
51643
51644
  return null;
package/dist/avl/index.js CHANGED
@@ -51592,6 +51592,7 @@ function getSlotContentRenderer2() {
51592
51592
  }
51593
51593
  function makeLambdaFn(argName, lambdaBody, callerKey) {
51594
51594
  return (item, index) => {
51595
+ console.log(`[lambda-triage:${callerKey}#${index}]`, JSON.stringify(item));
51595
51596
  const resolvedBody = resolveLambdaBindings(lambdaBody, argName, item);
51596
51597
  if (resolvedBody === null || typeof resolvedBody !== "object" || Array.isArray(resolvedBody)) {
51597
51598
  return null;
@@ -38229,6 +38229,7 @@ function getSlotContentRenderer2() {
38229
38229
  }
38230
38230
  function makeLambdaFn(argName, lambdaBody, callerKey) {
38231
38231
  return (item, index) => {
38232
+ console.log(`[lambda-triage:${callerKey}#${index}]`, JSON.stringify(item));
38232
38233
  const resolvedBody = resolveLambdaBindings(lambdaBody, argName, item);
38233
38234
  if (resolvedBody === null || typeof resolvedBody !== "object" || Array.isArray(resolvedBody)) {
38234
38235
  return null;
@@ -38184,6 +38184,7 @@ function getSlotContentRenderer2() {
38184
38184
  }
38185
38185
  function makeLambdaFn(argName, lambdaBody, callerKey) {
38186
38186
  return (item, index) => {
38187
+ console.log(`[lambda-triage:${callerKey}#${index}]`, JSON.stringify(item));
38187
38188
  const resolvedBody = resolveLambdaBindings(lambdaBody, argName, item);
38188
38189
  if (resolvedBody === null || typeof resolvedBody !== "object" || Array.isArray(resolvedBody)) {
38189
38190
  return null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@almadar/ui",
3
- "version": "4.19.1",
3
+ "version": "4.19.3",
4
4
  "description": "React UI components, hooks, and providers for Almadar",
5
5
  "type": "module",
6
6
  "main": "./dist/components/index.js",