@rettangoli/ui 1.0.22 → 1.0.23
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/dist/rettangoli-iife-layout.min.js +2 -1
- package/dist/rettangoli-iife-ui.min.js +35 -34
- package/package.json +1 -1
- package/src/components/sidebar/sidebar.handlers.js +23 -3
- package/src/components/sidebar/sidebar.schema.yaml +4 -0
- package/src/components/sidebar/sidebar.store.js +10 -2
- package/src/primitives/popover.js +2 -1
|
@@ -1370,6 +1370,7 @@ var rettangoli=(()=>{var B=`
|
|
|
1370
1370
|
left: 0;
|
|
1371
1371
|
width: 100vw;
|
|
1372
1372
|
height: 100vh;
|
|
1373
|
+
z-index: 2000;
|
|
1373
1374
|
/* Prevent dialog from being focused */
|
|
1374
1375
|
pointer-events: none;
|
|
1375
1376
|
}
|
|
@@ -1382,7 +1383,7 @@ var rettangoli=(()=>{var B=`
|
|
|
1382
1383
|
|
|
1383
1384
|
.popover-container {
|
|
1384
1385
|
position: fixed;
|
|
1385
|
-
z-index:
|
|
1386
|
+
z-index: inherit;
|
|
1386
1387
|
outline: none;
|
|
1387
1388
|
pointer-events: auto;
|
|
1388
1389
|
}
|