@quidgest/ui 0.16.68 → 0.16.70
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 +12 -0
- 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 +15 -3
- 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.70",
|
|
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
|
@@ -441,6 +441,13 @@ body *::-webkit-scrollbar-track {
|
|
|
441
441
|
border-radius: inherit;
|
|
442
442
|
opacity: 0.1;
|
|
443
443
|
}
|
|
444
|
+
.q-badge__content {
|
|
445
|
+
white-space: normal;
|
|
446
|
+
}
|
|
447
|
+
.q-badge__content .q-icon {
|
|
448
|
+
min-width: -moz-fit-content;
|
|
449
|
+
min-width: fit-content;
|
|
450
|
+
}
|
|
444
451
|
.q-badge__content, .q-badge__content.q-button {
|
|
445
452
|
display: inline-flex;
|
|
446
453
|
border-width: 1px;
|
|
@@ -465,6 +472,8 @@ body *::-webkit-scrollbar-track {
|
|
|
465
472
|
}
|
|
466
473
|
.q-badge__remove.q-button {
|
|
467
474
|
padding: 0.25rem;
|
|
475
|
+
min-width: -moz-fit-content;
|
|
476
|
+
min-width: fit-content;
|
|
468
477
|
}
|
|
469
478
|
.q-badge:not(:has(button.q-badge__content)) .q-badge__remove.q-button {
|
|
470
479
|
background-color: transparent;
|
|
@@ -609,6 +618,9 @@ body *::-webkit-scrollbar-track {
|
|
|
609
618
|
.q-button-group > .q-button:not(:first-child).q-badge__remove {
|
|
610
619
|
margin-left: 1px;
|
|
611
620
|
}
|
|
621
|
+
.q-button-group .q-badge__content {
|
|
622
|
+
white-space: normal;
|
|
623
|
+
}
|
|
612
624
|
|
|
613
625
|
.q-badge-indicator {
|
|
614
626
|
flex-wrap: wrap;
|