@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/index.d.ts
CHANGED
|
@@ -2117,14 +2117,6 @@ declare type QInputGroupProps = {
|
|
|
2117
2117
|
* The label of the field.
|
|
2118
2118
|
*/
|
|
2119
2119
|
label?: string;
|
|
2120
|
-
/**
|
|
2121
|
-
* Whether the field is readonly.
|
|
2122
|
-
*/
|
|
2123
|
-
readonly?: boolean;
|
|
2124
|
-
/**
|
|
2125
|
-
* Whether the field is disabled.
|
|
2126
|
-
*/
|
|
2127
|
-
disabled?: boolean;
|
|
2128
2120
|
/**
|
|
2129
2121
|
* If set to true, an asterisk (*) is displayed
|
|
2130
2122
|
* to indicate that the field is required.
|
package/dist/ui.css
CHANGED
|
@@ -481,7 +481,7 @@ body *::-webkit-scrollbar-track {
|
|
|
481
481
|
color: var(--q-theme-danger);
|
|
482
482
|
}
|
|
483
483
|
.q-field--readonly > .q-field__control {
|
|
484
|
-
background-color: #
|
|
484
|
+
background-color: #f2f5f7;
|
|
485
485
|
}
|
|
486
486
|
.q-field--disabled > .q-field__control {
|
|
487
487
|
cursor: not-allowed;
|
|
@@ -530,7 +530,7 @@ body *::-webkit-scrollbar-track {
|
|
|
530
530
|
}
|
|
531
531
|
.q-input-group__prepend, .q-input-group__append {
|
|
532
532
|
display: flex;
|
|
533
|
-
align-items:
|
|
533
|
+
align-items: stretch;
|
|
534
534
|
height: inherit;
|
|
535
535
|
}
|
|
536
536
|
.q-input-group__prepend > *, .q-input-group__append > * {
|
|
@@ -538,13 +538,12 @@ body *::-webkit-scrollbar-track {
|
|
|
538
538
|
min-width: 40px;
|
|
539
539
|
height: 100%;
|
|
540
540
|
justify-content: center;
|
|
541
|
+
padding: 0 0.4rem;
|
|
541
542
|
}
|
|
542
543
|
.q-input-group__prepend > span, .q-input-group__append > span {
|
|
543
544
|
display: flex;
|
|
544
545
|
align-items: center;
|
|
545
|
-
justify-content: center;
|
|
546
546
|
text-align: center;
|
|
547
|
-
padding: 0.26rem 0.25rem;
|
|
548
547
|
line-height: 1.5;
|
|
549
548
|
font-size: 0.9rem;
|
|
550
549
|
border-width: 1px;
|
|
@@ -810,7 +809,7 @@ body *::-webkit-scrollbar-track {
|
|
|
810
809
|
word-wrap: break-word;
|
|
811
810
|
white-space: normal;
|
|
812
811
|
line-break: auto;
|
|
813
|
-
font-size: 0.
|
|
812
|
+
font-size: 0.81rem;
|
|
814
813
|
}
|
|
815
814
|
.q-popover__header {
|
|
816
815
|
padding: 0.5rem 1rem;
|
|
@@ -844,6 +843,7 @@ body *::-webkit-scrollbar-track {
|
|
|
844
843
|
overflow: hidden;
|
|
845
844
|
text-overflow: ellipsis;
|
|
846
845
|
pointer-events: none;
|
|
846
|
+
min-height: 1.5em;
|
|
847
847
|
}
|
|
848
848
|
.q-select__placeholder {
|
|
849
849
|
font-style: italic;
|
|
@@ -852,9 +852,6 @@ body *::-webkit-scrollbar-track {
|
|
|
852
852
|
.q-select--expanded .q-select__chevron {
|
|
853
853
|
transform: rotate(-180deg);
|
|
854
854
|
}
|
|
855
|
-
.q-select .q-field__control {
|
|
856
|
-
min-height: calc(1.5em + 0.52rem + 2px);
|
|
857
|
-
}
|
|
858
855
|
.q-select .q-field__prepend {
|
|
859
856
|
padding-left: 6px;
|
|
860
857
|
padding-right: 0.25rem;
|
|
@@ -962,7 +959,7 @@ body *::-webkit-scrollbar-track {
|
|
|
962
959
|
width: 100%;
|
|
963
960
|
line-height: inherit;
|
|
964
961
|
outline: none;
|
|
965
|
-
background-color:
|
|
962
|
+
background-color: transparent;
|
|
966
963
|
cursor: inherit;
|
|
967
964
|
padding: 0;
|
|
968
965
|
}
|
|
@@ -991,7 +988,7 @@ body *::-webkit-scrollbar-track {
|
|
|
991
988
|
padding: 0.5rem;
|
|
992
989
|
text-align: center;
|
|
993
990
|
font-style: normal;
|
|
994
|
-
font-size: 0.
|
|
991
|
+
font-size: 0.81rem;
|
|
995
992
|
font-weight: 400;
|
|
996
993
|
text-decoration: none;
|
|
997
994
|
text-shadow: none;
|