@ansiversa/components 0.0.68 → 0.0.70

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ansiversa/components",
3
- "version": "0.0.68",
3
+ "version": "0.0.70",
4
4
  "description": "Shared UI components and layouts for the Ansiversa ecosystem",
5
5
  "type": "module",
6
6
  "exports": {
@@ -796,8 +796,21 @@
796
796
 
797
797
  /* Avoid a second dark band when the overlay already dims the page. */
798
798
  .av-drawer-overlay .av-drawer {
799
- box-shadow: none;
800
- border-left: none;
799
+ box-shadow: none !important;
800
+ border-left: none !important;
801
+ }
802
+
803
+ /* Let the overlay handle backdrop clicks; don't let the drawer root block it. */
804
+ .av-drawer-overlay .av-drawer-root {
805
+ position: static;
806
+ inset: auto;
807
+ width: auto;
808
+ height: auto;
809
+ pointer-events: none;
810
+ }
811
+
812
+ .av-drawer-overlay .av-drawer {
813
+ pointer-events: auto;
801
814
  }
802
815
 
803
816
  /* TABLE */