@quidgest/ui 0.7.13 → 0.7.14
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 +243 -3
- package/dist/ui.css +4 -5
- package/dist/ui.esm.js +513 -511
- 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 +3 -3
- package/dist/ui.min.js.map +1 -1
- package/dist/ui.scss +9 -7
- 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.14
|
|
3
3
|
* (c) 2023 Quidgest - Consultores de Gestão, SA
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -850,6 +850,14 @@ $popover-header-bg: rgb(var(--q-theme-on-background-rgb) / 0.04);
|
|
|
850
850
|
&:not(#{$this}--readonly):not(#{$this}--disabled) {
|
|
851
851
|
cursor: pointer;
|
|
852
852
|
}
|
|
853
|
+
&:not(#{$this}--disabled) {
|
|
854
|
+
#{$this}__clear,
|
|
855
|
+
#{$this}__chevron {
|
|
856
|
+
&:hover {
|
|
857
|
+
opacity: 1;
|
|
858
|
+
}
|
|
859
|
+
}
|
|
860
|
+
}
|
|
853
861
|
&__value,
|
|
854
862
|
&__placeholder {
|
|
855
863
|
white-space: nowrap;
|
|
@@ -876,12 +884,6 @@ $popover-header-bg: rgb(var(--q-theme-on-background-rgb) / 0.04);
|
|
|
876
884
|
.q-select__chevron {
|
|
877
885
|
opacity: 0.5;
|
|
878
886
|
}
|
|
879
|
-
.q-select__clear,
|
|
880
|
-
.q-select__chevron {
|
|
881
|
-
&:hover {
|
|
882
|
-
opacity: 1;
|
|
883
|
-
}
|
|
884
|
-
}
|
|
885
887
|
.q-select__chevron {
|
|
886
888
|
transition: all 0.2s;
|
|
887
889
|
}
|