@r2digisolutions/components 0.8.2 → 0.8.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.
@@ -478,9 +478,12 @@
478
478
  const base = className
479
479
  ? String(className)
480
480
  .split(/\s+/)
481
- .filter((token) => token && token !== 'h-full' && token !== 'min-h-0')
481
+ .filter(
482
+ (token) =>
483
+ token && token !== 'h-full' && token !== 'min-h-0' && token !== 'flex-1'
484
+ )
482
485
  : [];
483
- return [...base, 'h-auto', 'max-h-fit', 'self-start', 'shrink-0'].join(' ');
486
+ return [...base, 'h-auto', 'max-h-fit', 'w-full', 'shrink-0'].join(' ');
484
487
  });
485
488
  </script>
486
489
 
@@ -602,7 +602,7 @@
602
602
  loading={meta.loading}
603
603
  empty={meta.empty}
604
604
  onreload={meta.onReload}
605
- class="h-full"
605
+ class="h-full w-full"
606
606
  ondragstart={(e) => onDragStart(item.id, e)}
607
607
  onresizestart={(e, edge) => onResizeStart(item.id, e, edge)}
608
608
  >
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@r2digisolutions/components",
3
- "version": "0.8.2",
3
+ "version": "0.8.3",
4
4
  "private": false,
5
5
  "description": "R2DigiSolutions Svelte 5 component library — Atomic Design, Tailwind 4, Light/Dark mode",
6
6
  "license": "MIT",