@almadar/ui 4.13.0 → 4.13.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.
@@ -52626,7 +52626,14 @@ function SlotBridge({ embeddedTraits }) {
52626
52626
  entries.push(e);
52627
52627
  }
52628
52628
  if (entries.length === 0) {
52629
- clear(slotName);
52629
+ if (allEntries.length === 0) {
52630
+ clear(slotName);
52631
+ } else {
52632
+ slotLog.debug("SlotBridge:embed-only-skip", {
52633
+ slot: slotName,
52634
+ embeddedCount: allEntries.length
52635
+ });
52636
+ }
52630
52637
  continue;
52631
52638
  }
52632
52639
  const children = entries.map(({ entry }) => entry.patterns[entry.patterns.length - 1]).filter((p2) => Boolean(p2)).map((entry) => {
package/dist/avl/index.js CHANGED
@@ -52580,7 +52580,14 @@ function SlotBridge({ embeddedTraits }) {
52580
52580
  entries.push(e);
52581
52581
  }
52582
52582
  if (entries.length === 0) {
52583
- clear(slotName);
52583
+ if (allEntries.length === 0) {
52584
+ clear(slotName);
52585
+ } else {
52586
+ slotLog.debug("SlotBridge:embed-only-skip", {
52587
+ slot: slotName,
52588
+ embeddedCount: allEntries.length
52589
+ });
52590
+ }
52584
52591
  continue;
52585
52592
  }
52586
52593
  const children = entries.map(({ entry }) => entry.patterns[entry.patterns.length - 1]).filter((p2) => Boolean(p2)).map((entry) => {
@@ -39398,7 +39398,14 @@ function SlotBridge({ embeddedTraits }) {
39398
39398
  entries.push(e);
39399
39399
  }
39400
39400
  if (entries.length === 0) {
39401
- clear(slotName);
39401
+ if (allEntries.length === 0) {
39402
+ clear(slotName);
39403
+ } else {
39404
+ slotLog.debug("SlotBridge:embed-only-skip", {
39405
+ slot: slotName,
39406
+ embeddedCount: allEntries.length
39407
+ });
39408
+ }
39402
39409
  continue;
39403
39410
  }
39404
39411
  const children = entries.map(({ entry }) => entry.patterns[entry.patterns.length - 1]).filter((p2) => Boolean(p2)).map((entry) => {
@@ -39353,7 +39353,14 @@ function SlotBridge({ embeddedTraits }) {
39353
39353
  entries.push(e);
39354
39354
  }
39355
39355
  if (entries.length === 0) {
39356
- clear(slotName);
39356
+ if (allEntries.length === 0) {
39357
+ clear(slotName);
39358
+ } else {
39359
+ slotLog.debug("SlotBridge:embed-only-skip", {
39360
+ slot: slotName,
39361
+ embeddedCount: allEntries.length
39362
+ });
39363
+ }
39357
39364
  continue;
39358
39365
  }
39359
39366
  const children = entries.map(({ entry }) => entry.patterns[entry.patterns.length - 1]).filter((p2) => Boolean(p2)).map((entry) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@almadar/ui",
3
- "version": "4.13.0",
3
+ "version": "4.13.1",
4
4
  "description": "React UI components, hooks, and providers for Almadar",
5
5
  "type": "module",
6
6
  "main": "./dist/components/index.js",