@quidgest/ui 0.9.7 → 0.9.9

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/ui.scss CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Quidgest Framework v0.9.7
2
+ * Quidgest Framework v0.9.9
3
3
  * (c) 2023 Quidgest - Consultores de Gestão, SA
4
4
  */
5
5
 
@@ -730,16 +730,18 @@ $line-color: var(--q-theme-primary);
730
730
  $overlay-border-width: 1px;
731
731
  $overlay-arrow-width: 1rem;
732
732
  $overlay-arrow-height: 0.5rem;
733
+ $overlay-z-index: 1070;
733
734
  .q-overlay {
734
735
  $this: &;
735
736
  --q-overlay-bg: var(--q-theme-background);
736
737
  --q-overlay-color: var(--q-theme-on-background);
737
738
  --q-overlay-border-color: var(--q-theme-neutral-light);
738
739
  position: absolute;
739
- z-index: 1070;
740
+ z-index: $overlay-z-index;
740
741
  &__underlay {
741
742
  position: fixed;
742
743
  inset: 0;
744
+ z-index: $overlay-z-index - 1;
743
745
  &--blur {
744
746
  backdrop-filter: blur(2px);
745
747
  }
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@quidgest/ui",
3
3
  "private": false,
4
4
  "description": "Quidgest's UI framework",
5
- "version": "0.9.7",
5
+ "version": "0.9.9",
6
6
  "author": {
7
7
  "name": "Quidgest"
8
8
  },