@quidgest/ui 0.13.0 → 0.13.1
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 +6 -2
- package/dist/ui.esm.js +269 -263
- package/dist/ui.js +4 -4
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +47 -47
- package/dist/ui.scss +7 -3
- package/esm/components/QDialog/QDialog.d.ts +8 -4
- package/esm/components/QDialog/QDialog.d.ts.map +1 -1
- package/esm/components/QDialog/QDialog.vue.js +28 -28
- package/esm/components/QSelect/QSelect.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.vue.js +34 -34
- package/esm/components/QTooltip/QTooltip.d.ts +15 -0
- package/esm/components/QTooltip/QTooltip.d.ts.map +1 -1
- package/esm/components/QTooltip/QTooltip.vue.js +44 -27
- package/esm/components/QTooltip/index.d.ts +20 -0
- package/esm/components/QTooltip/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/ui.css
CHANGED
|
@@ -595,7 +595,7 @@ body *::-webkit-scrollbar-track {
|
|
|
595
595
|
}
|
|
596
596
|
|
|
597
597
|
.q-dialog__header .q-btn {
|
|
598
|
-
align-items:
|
|
598
|
+
align-items: center;
|
|
599
599
|
}
|
|
600
600
|
|
|
601
601
|
.q-dialog__body {
|
|
@@ -900,6 +900,7 @@ body *::-webkit-scrollbar-track {
|
|
|
900
900
|
.q-list-item__description .q-icon {
|
|
901
901
|
font-size: inherit;
|
|
902
902
|
flex-shrink: 0;
|
|
903
|
+
height: 1lh;
|
|
903
904
|
}
|
|
904
905
|
.q-list-item + .q-list-item {
|
|
905
906
|
margin-top: 1px;
|
|
@@ -1184,8 +1185,11 @@ body *::-webkit-scrollbar-track {
|
|
|
1184
1185
|
}
|
|
1185
1186
|
|
|
1186
1187
|
.q-tooltip .q-overlay__content {
|
|
1188
|
+
display: flex;
|
|
1189
|
+
flex-direction: column;
|
|
1190
|
+
gap: 0.25rem;
|
|
1191
|
+
align-items: center;
|
|
1187
1192
|
padding: 0.5rem;
|
|
1188
|
-
text-align: center;
|
|
1189
1193
|
font-style: normal;
|
|
1190
1194
|
font-size: 0.81rem;
|
|
1191
1195
|
font-weight: 400;
|