@quidgest/ui 0.7.2 → 0.7.4
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 +1789 -2986
- package/dist/ui.css +13 -8
- package/dist/ui.esm.js +954 -946
- 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 +101 -101
- package/dist/ui.min.js.map +1 -1
- package/dist/ui.scss +15 -9
- package/package.json +18 -17
package/dist/ui.css
CHANGED
|
@@ -481,29 +481,33 @@ body *::-webkit-scrollbar-track {
|
|
|
481
481
|
font-weight: 700;
|
|
482
482
|
color: var(--q-theme-danger);
|
|
483
483
|
}
|
|
484
|
-
.q-field--readonly .q-field__control {
|
|
484
|
+
.q-field--readonly > .q-field__control {
|
|
485
485
|
background-color: #eaebec;
|
|
486
486
|
}
|
|
487
|
-
.q-field--disabled .q-field__control {
|
|
487
|
+
.q-field--disabled > .q-field__control {
|
|
488
488
|
cursor: not-allowed;
|
|
489
489
|
opacity: 0.5;
|
|
490
490
|
}
|
|
491
|
-
.q-field--
|
|
491
|
+
.q-field--fit-content > .q-field__control {
|
|
492
|
+
width: -moz-fit-content;
|
|
493
|
+
width: fit-content;
|
|
494
|
+
}
|
|
495
|
+
.q-field--mini > .q-field__control {
|
|
492
496
|
width: 4.35rem;
|
|
493
497
|
}
|
|
494
|
-
.q-field--small .q-field__control {
|
|
498
|
+
.q-field--small > .q-field__control {
|
|
495
499
|
width: 6.525rem;
|
|
496
500
|
}
|
|
497
|
-
.q-field--medium .q-field__control {
|
|
501
|
+
.q-field--medium > .q-field__control {
|
|
498
502
|
width: 10.875rem;
|
|
499
503
|
}
|
|
500
|
-
.q-field--large .q-field__control {
|
|
504
|
+
.q-field--large > .q-field__control {
|
|
501
505
|
width: 15.225rem;
|
|
502
506
|
}
|
|
503
|
-
.q-field--x-large .q-field__control {
|
|
507
|
+
.q-field--x-large > .q-field__control {
|
|
504
508
|
width: 19.575rem;
|
|
505
509
|
}
|
|
506
|
-
.q-field--xx-large .q-field__control {
|
|
510
|
+
.q-field--xx-large > .q-field__control {
|
|
507
511
|
width: 36.975rem;
|
|
508
512
|
}
|
|
509
513
|
.q-field--block {
|
|
@@ -524,6 +528,7 @@ body *::-webkit-scrollbar-track {
|
|
|
524
528
|
.q-input-group {
|
|
525
529
|
display: flex;
|
|
526
530
|
align-items: flex-end;
|
|
531
|
+
width: 100%;
|
|
527
532
|
}
|
|
528
533
|
.q-input-group__prepend > :first-child {
|
|
529
534
|
border-top-left-radius: 0.25rem;
|