@quidgest/ui 0.16.70 → 0.16.72
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/json/api.json +1 -1
- package/dist/ui.css +7 -13
- package/dist/ui.esm.js +120 -125
- package/dist/ui.js +5 -5
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +5 -5
- package/dist/ui.scss +3 -4
- package/esm/components/QCheckbox/QCheckboxLabel.d.ts.map +1 -1
- package/esm/components/QCheckbox/QCheckboxLabel.vue.js +11 -20
- package/esm/components/QLabel/QLabel.d.ts +1 -0
- package/esm/components/QLabel/QLabel.d.ts.map +1 -1
- package/esm/components/QLabel/QLabel.vue.js +10 -9
- package/esm/components/QLabel/index.d.ts +1 -0
- package/esm/components/QLabel/index.d.ts.map +1 -1
- package/esm/components/QPopover/QPopover.d.ts.map +1 -1
- package/esm/components/QPopover/QPopover.vue.js +36 -28
- package/esm/components/QRadioGroup/QRadioGroup.d.ts.map +1 -1
- package/esm/components/QSwitch/QSwitch.d.ts.map +1 -1
- package/esm/components/QSwitch/QSwitch.vue.js +42 -51
- package/package.json +1 -1
package/dist/json/api.json
CHANGED
package/dist/ui.css
CHANGED
|
@@ -3201,28 +3201,22 @@ body *::-webkit-scrollbar-track {
|
|
|
3201
3201
|
outline: 2px solid rgb(var(--q-theme-info-rgb)/50%);
|
|
3202
3202
|
}
|
|
3203
3203
|
.q-field--mini > .q-field__control {
|
|
3204
|
-
width:
|
|
3205
|
-
max-width: 100%;
|
|
3204
|
+
width: min(1 * 5em + 0 * 0.25rem, 100%);
|
|
3206
3205
|
}
|
|
3207
3206
|
.q-field--small > .q-field__control {
|
|
3208
|
-
width:
|
|
3209
|
-
max-width: 100%;
|
|
3207
|
+
width: min(2 * 5em + 1 * 0.25rem, 100%);
|
|
3210
3208
|
}
|
|
3211
3209
|
.q-field--medium > .q-field__control {
|
|
3212
|
-
width:
|
|
3213
|
-
max-width: 100%;
|
|
3210
|
+
width: min(3 * 5em + 2 * 0.25rem, 100%);
|
|
3214
3211
|
}
|
|
3215
3212
|
.q-field--large > .q-field__control {
|
|
3216
|
-
width:
|
|
3217
|
-
max-width: 100%;
|
|
3213
|
+
width: min(4 * 5em + 3 * 0.25rem, 100%);
|
|
3218
3214
|
}
|
|
3219
3215
|
.q-field--xlarge > .q-field__control {
|
|
3220
|
-
width:
|
|
3221
|
-
max-width: 100%;
|
|
3216
|
+
width: min(6 * 5em + 5 * 0.25rem, 100%);
|
|
3222
3217
|
}
|
|
3223
3218
|
.q-field--xxlarge > .q-field__control {
|
|
3224
|
-
width:
|
|
3225
|
-
max-width: 100%;
|
|
3219
|
+
width: min(8 * 5em + 7 * 0.25rem, 100%);
|
|
3226
3220
|
}
|
|
3227
3221
|
.q-field--block {
|
|
3228
3222
|
width: 100%;
|
|
@@ -4381,7 +4375,7 @@ body *::-webkit-scrollbar-track {
|
|
|
4381
4375
|
width: -moz-fit-content;
|
|
4382
4376
|
width: fit-content;
|
|
4383
4377
|
align-items: center;
|
|
4384
|
-
gap: 0.
|
|
4378
|
+
gap: 0.375rem;
|
|
4385
4379
|
cursor: pointer;
|
|
4386
4380
|
}
|
|
4387
4381
|
.q-radio-button label {
|