@quidgest/ui 0.16.11 → 0.16.13
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/ui.css +10 -0
- package/dist/ui.esm.js +2464 -2451
- package/dist/ui.js +5 -5
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +23 -23
- package/dist/ui.scss +9 -1
- package/esm/components/QAccordion/QAccordionItem.vue.js +13 -15
- package/esm/components/QSelect/QSelect.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.vue.js +133 -118
- package/package.json +1 -1
package/dist/ui.css
CHANGED
|
@@ -3499,6 +3499,7 @@ body *::-webkit-scrollbar-track {
|
|
|
3499
3499
|
width: inherit;
|
|
3500
3500
|
border-radius: var(--border-radius);
|
|
3501
3501
|
outline: none;
|
|
3502
|
+
cursor: default;
|
|
3502
3503
|
}
|
|
3503
3504
|
.q-list-item--selectable:hover {
|
|
3504
3505
|
cursor: pointer;
|
|
@@ -3530,6 +3531,10 @@ body *::-webkit-scrollbar-track {
|
|
|
3530
3531
|
display: flex;
|
|
3531
3532
|
flex-grow: 1;
|
|
3532
3533
|
gap: 0.5rem;
|
|
3534
|
+
cursor: inherit;
|
|
3535
|
+
-webkit-user-select: none;
|
|
3536
|
+
-moz-user-select: none;
|
|
3537
|
+
user-select: none;
|
|
3533
3538
|
}
|
|
3534
3539
|
.q-list-item__check-container {
|
|
3535
3540
|
display: flex;
|
|
@@ -3937,6 +3942,11 @@ body *::-webkit-scrollbar-track {
|
|
|
3937
3942
|
font-style: italic;
|
|
3938
3943
|
color: var(--q-theme-neutral);
|
|
3939
3944
|
}
|
|
3945
|
+
.q-select__input {
|
|
3946
|
+
width: 0;
|
|
3947
|
+
opacity: 0;
|
|
3948
|
+
cursor: inherit;
|
|
3949
|
+
}
|
|
3940
3950
|
.q-select .q-field__prepend {
|
|
3941
3951
|
padding-left: 0.5rem;
|
|
3942
3952
|
padding-right: 0.5rem;
|