@quidgest/ui 0.7.20 → 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 +7 -10
- 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 +8 -11
- 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
|
|
|
@@ -474,7 +474,7 @@ $btn-outline: var(--q-theme-primary-light);
|
|
|
474
474
|
}
|
|
475
475
|
&--readonly {
|
|
476
476
|
> #{$this}__control {
|
|
477
|
-
background-color: #
|
|
477
|
+
background-color: #f2f5f7;
|
|
478
478
|
}
|
|
479
479
|
}
|
|
480
480
|
&--disabled {
|
|
@@ -524,20 +524,19 @@ $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: 0 0.4rem;
|
|
534
535
|
}
|
|
535
536
|
> span {
|
|
536
537
|
display: flex;
|
|
537
538
|
align-items: center;
|
|
538
|
-
justify-content: center;
|
|
539
539
|
text-align: center;
|
|
540
|
-
padding: $input-padding-y $input-padding-x;
|
|
541
540
|
line-height: 1.5;
|
|
542
541
|
font-size: $font-size-base;
|
|
543
542
|
border-width: 1px;
|
|
@@ -837,7 +836,7 @@ $popover-header-bg: rgb(var(--q-theme-on-background-rgb) / 0.04);
|
|
|
837
836
|
word-wrap: break-word;
|
|
838
837
|
white-space: normal;
|
|
839
838
|
line-break: auto;
|
|
840
|
-
font-size: calc($font-size-base * 0.
|
|
839
|
+
font-size: calc($font-size-base * 0.9);
|
|
841
840
|
}
|
|
842
841
|
&__header {
|
|
843
842
|
padding: 0.5rem 1rem;
|
|
@@ -874,6 +873,7 @@ $popover-header-bg: rgb(var(--q-theme-on-background-rgb) / 0.04);
|
|
|
874
873
|
overflow: hidden;
|
|
875
874
|
text-overflow: ellipsis;
|
|
876
875
|
pointer-events: none;
|
|
876
|
+
min-height: 1.5em;
|
|
877
877
|
}
|
|
878
878
|
&__placeholder {
|
|
879
879
|
font-style: italic;
|
|
@@ -884,9 +884,6 @@ $popover-header-bg: rgb(var(--q-theme-on-background-rgb) / 0.04);
|
|
|
884
884
|
transform: rotate(-180deg);
|
|
885
885
|
}
|
|
886
886
|
}
|
|
887
|
-
.q-field__control {
|
|
888
|
-
min-height: calc(1.5em + 2 * $input-padding-y + 2px);
|
|
889
|
-
}
|
|
890
887
|
|
|
891
888
|
.q-field__prepend {
|
|
892
889
|
padding-left: 6px;
|
|
@@ -989,7 +986,7 @@ $spinner-color: var(--q-theme-primary);
|
|
|
989
986
|
width: 100%;
|
|
990
987
|
line-height: inherit;
|
|
991
988
|
outline: none;
|
|
992
|
-
background-color:
|
|
989
|
+
background-color: transparent;
|
|
993
990
|
cursor: inherit;
|
|
994
991
|
padding: 0;
|
|
995
992
|
&::placeholder {
|
|
@@ -1010,7 +1007,7 @@ $spinner-color: var(--q-theme-primary);
|
|
|
1010
1007
|
padding: 0.5rem;
|
|
1011
1008
|
text-align: center;
|
|
1012
1009
|
font-style: normal;
|
|
1013
|
-
font-size: 0.
|
|
1010
|
+
font-size: calc($font-size-base * 0.9);
|
|
1014
1011
|
font-weight: $font-weight-regular;
|
|
1015
1012
|
text-decoration: none;
|
|
1016
1013
|
text-shadow: none;
|