@quidgest/ui 0.7.15 → 0.7.16
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/index.d.ts +37 -10
- package/dist/ui.css +10 -1
- package/dist/ui.esm.js +782 -748
- package/dist/ui.esm.js.map +1 -1
- package/dist/ui.js +4 -4
- package/dist/ui.js.map +1 -1
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +34 -32
- package/dist/ui.min.js.map +1 -1
- package/dist/ui.scss +11 -2
- package/package.json +1 -1
package/dist/ui.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Quidgest Framework v0.7.
|
|
2
|
+
* Quidgest Framework v0.7.16
|
|
3
3
|
* (c) 2023 Quidgest - Consultores de Gestão, SA
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -696,9 +696,17 @@ $overlay-arrow-height: 0.5rem;
|
|
|
696
696
|
$this: &;
|
|
697
697
|
--q-overlay-bg: var(--q-theme-background);
|
|
698
698
|
--q-overlay-color: var(--q-theme-on-background);
|
|
699
|
-
|
|
699
|
+
|
|
700
|
+
--q-overlay-border-color: #c4c5ca;
|
|
700
701
|
position: absolute;
|
|
701
702
|
z-index: 1070;
|
|
703
|
+
&__underlay {
|
|
704
|
+
position: fixed;
|
|
705
|
+
inset: 0;
|
|
706
|
+
&--blur {
|
|
707
|
+
backdrop-filter: blur(2px);
|
|
708
|
+
}
|
|
709
|
+
}
|
|
702
710
|
&__content {
|
|
703
711
|
display: block;
|
|
704
712
|
position: relative;
|
|
@@ -709,6 +717,7 @@ $overlay-arrow-height: 0.5rem;
|
|
|
709
717
|
background-clip: padding-box;
|
|
710
718
|
border: $overlay-border-width solid var(--q-overlay-border-color);
|
|
711
719
|
border-radius: $border-radius;
|
|
720
|
+
outline: none;
|
|
712
721
|
box-shadow:
|
|
713
722
|
0 0 #0000,
|
|
714
723
|
0 0 #0000,
|