@quidgest/ui 0.16.67 → 0.16.69
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 +6 -1
- package/dist/ui.css +11 -1
- package/dist/ui.esm.js +4050 -4111
- package/dist/ui.js +24 -24
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +187 -203
- package/dist/ui.scss +12 -2
- package/esm/components/QDialog/QDialog.d.ts +2 -0
- package/esm/components/QDialog/QDialog.d.ts.map +1 -1
- package/esm/components/QDialog/QDialog.vue.js +19 -19
- package/esm/components/QDialog/QDialogProvider.d.ts.map +1 -1
- package/esm/components/QDialog/QDialogProvider.vue.js +19 -15
- package/esm/components/QDialog/index.d.ts +5 -0
- package/esm/components/QDialog/index.d.ts.map +1 -1
- package/esm/components/QDialog/types.d.ts +7 -0
- package/esm/components/QDialog/types.d.ts.map +1 -1
- package/esm/components/QTextArea/QTextArea.d.ts.map +1 -1
- package/esm/components/QTextArea/QTextArea.vue.js +18 -18
- package/esm/composables/useDialog/index.d.ts +1 -0
- package/esm/composables/useDialog/index.d.ts.map +1 -1
- package/esm/composables/useTextareaAutosize/index.d.ts +11 -0
- package/esm/composables/useTextareaAutosize/index.d.ts.map +1 -0
- package/esm/composables/useTextareaAutosize/index.js +22 -0
- package/package.json +1 -3
- package/esm/vendors/@vueuse/core/index.js +0 -85
- package/esm/vendors/@vueuse/shared/index.js +0 -20
package/dist/json/api.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.16.
|
|
2
|
+
"version": "0.16.69",
|
|
3
3
|
"components": [
|
|
4
4
|
{
|
|
5
5
|
"name": "QAccordion",
|
|
@@ -2881,6 +2881,11 @@
|
|
|
2881
2881
|
"name": "update:modelValue",
|
|
2882
2882
|
"description": "",
|
|
2883
2883
|
"type": "[val: boolean]"
|
|
2884
|
+
},
|
|
2885
|
+
{
|
|
2886
|
+
"name": "action",
|
|
2887
|
+
"description": "",
|
|
2888
|
+
"type": "[val: string]"
|
|
2884
2889
|
}
|
|
2885
2890
|
],
|
|
2886
2891
|
"slots": [
|
package/dist/ui.css
CHANGED
|
@@ -3127,6 +3127,7 @@ body *::-webkit-scrollbar-track {
|
|
|
3127
3127
|
border-radius: var(--border-radius);
|
|
3128
3128
|
width: -moz-fit-content;
|
|
3129
3129
|
width: fit-content;
|
|
3130
|
+
max-width: 100%;
|
|
3130
3131
|
}
|
|
3131
3132
|
.q-field__control {
|
|
3132
3133
|
display: flex;
|
|
@@ -3189,21 +3190,27 @@ body *::-webkit-scrollbar-track {
|
|
|
3189
3190
|
}
|
|
3190
3191
|
.q-field--mini > .q-field__control {
|
|
3191
3192
|
width: calc(1 * 5em + 0 * 0.25rem);
|
|
3193
|
+
max-width: 100%;
|
|
3192
3194
|
}
|
|
3193
3195
|
.q-field--small > .q-field__control {
|
|
3194
3196
|
width: calc(2 * 5em + 1 * 0.25rem);
|
|
3197
|
+
max-width: 100%;
|
|
3195
3198
|
}
|
|
3196
3199
|
.q-field--medium > .q-field__control {
|
|
3197
3200
|
width: calc(3 * 5em + 2 * 0.25rem);
|
|
3201
|
+
max-width: 100%;
|
|
3198
3202
|
}
|
|
3199
3203
|
.q-field--large > .q-field__control {
|
|
3200
3204
|
width: calc(4 * 5em + 3 * 0.25rem);
|
|
3205
|
+
max-width: 100%;
|
|
3201
3206
|
}
|
|
3202
3207
|
.q-field--xlarge > .q-field__control {
|
|
3203
3208
|
width: calc(6 * 5em + 5 * 0.25rem);
|
|
3209
|
+
max-width: 100%;
|
|
3204
3210
|
}
|
|
3205
3211
|
.q-field--xxlarge > .q-field__control {
|
|
3206
3212
|
width: calc(8 * 5em + 7 * 0.25rem);
|
|
3213
|
+
max-width: 100%;
|
|
3207
3214
|
}
|
|
3208
3215
|
.q-field--block {
|
|
3209
3216
|
width: 100%;
|
|
@@ -3301,7 +3308,7 @@ body *::-webkit-scrollbar-track {
|
|
|
3301
3308
|
.q-focus-wrap {
|
|
3302
3309
|
width: 0;
|
|
3303
3310
|
height: 0;
|
|
3304
|
-
display:
|
|
3311
|
+
display: block;
|
|
3305
3312
|
}
|
|
3306
3313
|
.q-focus-wrap:focus {
|
|
3307
3314
|
outline: 0;
|
|
@@ -4171,6 +4178,9 @@ body *::-webkit-scrollbar-track {
|
|
|
4171
4178
|
--q-overlay-color: var(--q-theme-background);
|
|
4172
4179
|
--q-overlay-border-color: var(--q-theme-neutral-dark);
|
|
4173
4180
|
}
|
|
4181
|
+
.q-overlay--small .q-overlay__content, .q-overlay--medium .q-overlay__content, .q-overlay--large .q-overlay__content, .q-overlay--xlarge .q-overlay__content {
|
|
4182
|
+
min-width: unset;
|
|
4183
|
+
}
|
|
4174
4184
|
.q-overlay--small {
|
|
4175
4185
|
width: 20rem;
|
|
4176
4186
|
}
|