@quidgest/ui 0.16.46 → 0.16.48
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 +23 -1
- package/dist/ui.css +17 -5
- package/dist/ui.esm.js +3800 -3784
- package/dist/ui.js +21 -21
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +30 -30
- package/dist/ui.scss +20 -6
- package/esm/components/QCheckbox/QCheckbox.d.ts +1 -0
- package/esm/components/QCheckbox/QCheckbox.d.ts.map +1 -1
- package/esm/components/QCheckbox/QCheckbox.vue.js +41 -39
- package/esm/components/QCheckbox/index.d.ts +6 -0
- package/esm/components/QCheckbox/index.d.ts.map +1 -1
- package/esm/components/QCheckbox/types.d.ts +6 -0
- package/esm/components/QCheckbox/types.d.ts.map +1 -1
- package/esm/components/QOverlay/QOverlay.d.ts.map +1 -1
- package/esm/components/QOverlay/QOverlay.vue.js +40 -40
- package/esm/components/QRadioGroup/QRadioButton.d.ts.map +1 -1
- package/esm/components/QRadioGroup/QRadioButton.vue.js +38 -29
- package/esm/components/QRadioGroup/QRadioGroup.d.ts +1 -0
- package/esm/components/QRadioGroup/QRadioGroup.d.ts.map +1 -1
- package/esm/components/QRadioGroup/QRadioGroup.vue.js +21 -19
- package/esm/components/QRadioGroup/index.d.ts +6 -0
- package/esm/components/QRadioGroup/index.d.ts.map +1 -1
- package/esm/components/QRadioGroup/types.d.ts +6 -0
- package/esm/components/QRadioGroup/types.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.d.ts +10 -8
- package/esm/components/QSelect/QSelect.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.vue.js +128 -125
- package/esm/components/QSelect/index.d.ts +1 -0
- package/esm/components/QSelect/index.d.ts.map +1 -1
- package/esm/symbols/dismissibleLayer.d.ts.map +1 -1
- package/esm/symbols/dismissibleLayer.js +1 -1
- package/package.json +1 -1
package/dist/json/api.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.16.
|
|
2
|
+
"version": "0.16.48",
|
|
3
3
|
"components": [
|
|
4
4
|
{
|
|
5
5
|
"name": "QAccordion",
|
|
@@ -1407,6 +1407,17 @@
|
|
|
1407
1407
|
"default": "DEFAULT_ICONS",
|
|
1408
1408
|
"required": false,
|
|
1409
1409
|
"category": "Configuration"
|
|
1410
|
+
},
|
|
1411
|
+
{
|
|
1412
|
+
"name": "hasFocusOutline",
|
|
1413
|
+
"type": {
|
|
1414
|
+
"kind": "primitive",
|
|
1415
|
+
"name": "boolean"
|
|
1416
|
+
},
|
|
1417
|
+
"description": "Indicates whether the control will have an outline when focused.",
|
|
1418
|
+
"default": "true",
|
|
1419
|
+
"required": false,
|
|
1420
|
+
"category": "Behavior"
|
|
1410
1421
|
}
|
|
1411
1422
|
],
|
|
1412
1423
|
"events": [
|
|
@@ -5509,6 +5520,17 @@
|
|
|
5509
5520
|
"description": "Indicates whether the provided value fails the validation criteria.",
|
|
5510
5521
|
"required": false,
|
|
5511
5522
|
"category": "State"
|
|
5523
|
+
},
|
|
5524
|
+
{
|
|
5525
|
+
"name": "hasFocusOutline",
|
|
5526
|
+
"type": {
|
|
5527
|
+
"kind": "primitive",
|
|
5528
|
+
"name": "boolean"
|
|
5529
|
+
},
|
|
5530
|
+
"description": "Indicates whether the control will have an outline when focused.",
|
|
5531
|
+
"default": "true",
|
|
5532
|
+
"required": false,
|
|
5533
|
+
"category": "Behavior"
|
|
5512
5534
|
}
|
|
5513
5535
|
],
|
|
5514
5536
|
"events": [
|
package/dist/ui.css
CHANGED
|
@@ -1321,7 +1321,7 @@ body *::-webkit-scrollbar-track {
|
|
|
1321
1321
|
color: var(--q-theme-neutral-dark);
|
|
1322
1322
|
cursor: pointer;
|
|
1323
1323
|
}
|
|
1324
|
-
.q-checkbox:focus-within {
|
|
1324
|
+
.q-checkbox--focus-style:focus-within {
|
|
1325
1325
|
outline: 2px solid rgb(var(--q-theme-info-rgb)/50%);
|
|
1326
1326
|
}
|
|
1327
1327
|
.q-checkbox label {
|
|
@@ -4305,9 +4305,6 @@ body *::-webkit-scrollbar-track {
|
|
|
4305
4305
|
gap: 0.5em;
|
|
4306
4306
|
cursor: pointer;
|
|
4307
4307
|
}
|
|
4308
|
-
.q-radio-button:focus-within {
|
|
4309
|
-
outline: 2px solid rgb(var(--q-theme-info-rgb)/50%);
|
|
4310
|
-
}
|
|
4311
4308
|
.q-radio-button label {
|
|
4312
4309
|
line-height: 1;
|
|
4313
4310
|
cursor: pointer;
|
|
@@ -4386,8 +4383,19 @@ body *::-webkit-scrollbar-track {
|
|
|
4386
4383
|
.q-radio-button--readonly {
|
|
4387
4384
|
cursor: default;
|
|
4388
4385
|
}
|
|
4389
|
-
.q-radio-button--readonly .q-radio-button__input
|
|
4386
|
+
.q-radio-button--readonly .q-radio-button__input,
|
|
4387
|
+
.q-radio-button--readonly .q-radio-button__input:checked:not(:disabled) {
|
|
4390
4388
|
background-color: rgb(var(--q-theme-neutral-light-rgb)/25%);
|
|
4389
|
+
border-color: inherit;
|
|
4390
|
+
cursor: unset;
|
|
4391
|
+
}
|
|
4392
|
+
.q-radio-button--readonly .q-radio-button__input::before,
|
|
4393
|
+
.q-radio-button--readonly .q-radio-button__input:checked:not(:disabled)::before {
|
|
4394
|
+
background-color: var(--q-theme-neutral);
|
|
4395
|
+
}
|
|
4396
|
+
.q-radio-button--readonly:hover.q-radio-button .q-radio-button__input,
|
|
4397
|
+
.q-radio-button--readonly:hover.q-radio-button .q-radio-button__input:not(:disabled) {
|
|
4398
|
+
border-color: inherit;
|
|
4391
4399
|
}
|
|
4392
4400
|
.q-radio-button--readonly .q-radio-button__input:disabled,
|
|
4393
4401
|
.q-radio-button--readonly label {
|
|
@@ -4407,6 +4415,10 @@ body *::-webkit-scrollbar-track {
|
|
|
4407
4415
|
padding: 0.625rem;
|
|
4408
4416
|
}
|
|
4409
4417
|
|
|
4418
|
+
.q-radio-group--focus-style .q-radio-button:focus-within {
|
|
4419
|
+
outline: 2px solid rgb(var(--q-theme-info-rgb)/50%);
|
|
4420
|
+
}
|
|
4421
|
+
|
|
4410
4422
|
.q-select {
|
|
4411
4423
|
/* Icon of the selected item */
|
|
4412
4424
|
}
|