@quidgest/ui 0.7.21 → 0.7.22
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 +0 -8
- package/dist/ui.css +3 -5
- package/dist/ui.esm.js +265 -267
- package/dist/ui.esm.js.map +1 -1
- package/dist/ui.js +2 -2
- package/dist/ui.js.map +1 -1
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +37 -37
- package/dist/ui.min.js.map +1 -1
- package/dist/ui.scss +4 -6
- 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.22
|
|
3
3
|
* (c) 2023 Quidgest - Consultores de Gestão, SA
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -524,14 +524,14 @@ $btn-outline: var(--q-theme-primary-light);
|
|
|
524
524
|
&__prepend,
|
|
525
525
|
&__append {
|
|
526
526
|
display: flex;
|
|
527
|
-
align-items:
|
|
527
|
+
align-items: stretch;
|
|
528
528
|
height: inherit;
|
|
529
529
|
> * {
|
|
530
530
|
border-radius: 0;
|
|
531
531
|
min-width: 40px;
|
|
532
532
|
height: 100%;
|
|
533
533
|
justify-content: center;
|
|
534
|
-
padding:
|
|
534
|
+
padding: 0 0.4rem;
|
|
535
535
|
}
|
|
536
536
|
> span {
|
|
537
537
|
display: flex;
|
|
@@ -873,6 +873,7 @@ $popover-header-bg: rgb(var(--q-theme-on-background-rgb) / 0.04);
|
|
|
873
873
|
overflow: hidden;
|
|
874
874
|
text-overflow: ellipsis;
|
|
875
875
|
pointer-events: none;
|
|
876
|
+
min-height: 1.5em;
|
|
876
877
|
}
|
|
877
878
|
&__placeholder {
|
|
878
879
|
font-style: italic;
|
|
@@ -883,9 +884,6 @@ $popover-header-bg: rgb(var(--q-theme-on-background-rgb) / 0.04);
|
|
|
883
884
|
transform: rotate(-180deg);
|
|
884
885
|
}
|
|
885
886
|
}
|
|
886
|
-
.q-field__control {
|
|
887
|
-
min-height: calc(1.5em + 2 * $input-padding-y + 2px);
|
|
888
|
-
}
|
|
889
887
|
|
|
890
888
|
.q-field__prepend {
|
|
891
889
|
padding-left: 6px;
|