@almadar/ui 3.8.0 → 3.8.1

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.
@@ -51104,6 +51104,15 @@ function createClientEffectHandlers(options) {
51104
51104
  slotSetter.clearSlot(slot);
51105
51105
  return;
51106
51106
  }
51107
+ if (typeof console !== "undefined" && slot === "modal") {
51108
+ try {
51109
+ const str = JSON.stringify(pattern);
51110
+ if (str && str.includes("actionPayload")) {
51111
+ console.warn("[render-ui modal] pattern=", str.slice(0, 800));
51112
+ }
51113
+ } catch {
51114
+ }
51115
+ }
51107
51116
  slotSetter.addPattern(slot, pattern, props);
51108
51117
  },
51109
51118
  navigate: navigate ?? ((path) => {
package/dist/avl/index.js CHANGED
@@ -51058,6 +51058,15 @@ function createClientEffectHandlers(options) {
51058
51058
  slotSetter.clearSlot(slot);
51059
51059
  return;
51060
51060
  }
51061
+ if (typeof console !== "undefined" && slot === "modal") {
51062
+ try {
51063
+ const str = JSON.stringify(pattern);
51064
+ if (str && str.includes("actionPayload")) {
51065
+ console.warn("[render-ui modal] pattern=", str.slice(0, 800));
51066
+ }
51067
+ } catch {
51068
+ }
51069
+ }
51061
51070
  slotSetter.addPattern(slot, pattern, props);
51062
51071
  },
51063
51072
  navigate: navigate ?? ((path) => {
@@ -37900,6 +37900,15 @@ function createClientEffectHandlers(options) {
37900
37900
  slotSetter.clearSlot(slot);
37901
37901
  return;
37902
37902
  }
37903
+ if (typeof console !== "undefined" && slot === "modal") {
37904
+ try {
37905
+ const str = JSON.stringify(pattern);
37906
+ if (str && str.includes("actionPayload")) {
37907
+ console.warn("[render-ui modal] pattern=", str.slice(0, 800));
37908
+ }
37909
+ } catch {
37910
+ }
37911
+ }
37903
37912
  slotSetter.addPattern(slot, pattern, props);
37904
37913
  },
37905
37914
  navigate: navigate ?? ((path) => {
@@ -37855,6 +37855,15 @@ function createClientEffectHandlers(options) {
37855
37855
  slotSetter.clearSlot(slot);
37856
37856
  return;
37857
37857
  }
37858
+ if (typeof console !== "undefined" && slot === "modal") {
37859
+ try {
37860
+ const str = JSON.stringify(pattern);
37861
+ if (str && str.includes("actionPayload")) {
37862
+ console.warn("[render-ui modal] pattern=", str.slice(0, 800));
37863
+ }
37864
+ } catch {
37865
+ }
37866
+ }
37858
37867
  slotSetter.addPattern(slot, pattern, props);
37859
37868
  },
37860
37869
  navigate: navigate ?? ((path) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@almadar/ui",
3
- "version": "3.8.0",
3
+ "version": "3.8.1",
4
4
  "description": "React UI components, hooks, and providers for Almadar",
5
5
  "type": "module",
6
6
  "main": "./dist/components/index.js",