@quidgest/ui 0.16.39 → 0.16.41
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 +2382 -522
- package/dist/ui.css +8 -1
- package/dist/ui.esm.js +11 -6
- package/dist/ui.js +3 -3
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +7 -7
- package/dist/ui.scss +9 -2
- package/esm/components/QBadge/QBadge.d.ts.map +1 -1
- package/esm/components/QBadge/QBadge.vue.js +22 -19
- package/esm/components/QBadge/types.d.ts +6 -0
- package/esm/components/QBadge/types.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.d.ts +2 -0
- package/esm/components/QSelect/QSelect.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.vue.js +12 -10
- package/esm/components/QSelect/index.d.ts +1 -0
- package/esm/components/QSelect/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/ui.css
CHANGED
|
@@ -448,7 +448,7 @@ body *::-webkit-scrollbar-track {
|
|
|
448
448
|
gap: 0.25em;
|
|
449
449
|
z-index: 1;
|
|
450
450
|
}
|
|
451
|
-
.q-badge__remove.q-button
|
|
451
|
+
.q-badge__remove.q-button {
|
|
452
452
|
padding: 0;
|
|
453
453
|
}
|
|
454
454
|
.q-badge .q-icon {
|
|
@@ -473,6 +473,10 @@ body *::-webkit-scrollbar-track {
|
|
|
473
473
|
.q-badge--pill {
|
|
474
474
|
border-radius: 9999px;
|
|
475
475
|
}
|
|
476
|
+
.q-badge--disabled {
|
|
477
|
+
opacity: 0.5;
|
|
478
|
+
pointer-events: none;
|
|
479
|
+
}
|
|
476
480
|
.q-badge--clickable {
|
|
477
481
|
cursor: pointer;
|
|
478
482
|
}
|
|
@@ -1399,6 +1403,9 @@ body *::-webkit-scrollbar-track {
|
|
|
1399
1403
|
opacity: 0.6;
|
|
1400
1404
|
cursor: not-allowed;
|
|
1401
1405
|
}
|
|
1406
|
+
.q-checkbox--disabled label {
|
|
1407
|
+
cursor: not-allowed;
|
|
1408
|
+
}
|
|
1402
1409
|
.q-checkbox--readonly {
|
|
1403
1410
|
--active-color: var(--q-theme-neutral-light);
|
|
1404
1411
|
cursor: default;
|
package/dist/ui.esm.js
CHANGED
|
@@ -3,7 +3,7 @@ var Io = (a, e, t) => e in a ? So(a, e, { enumerable: !0, configurable: !0, writ
|
|
|
3
3
|
var _e = (a, e, t) => Io(a, typeof e != "symbol" ? e + "" : e, t);
|
|
4
4
|
import { getCurrentInstance as Ml, computed as k, ref as K, toValue as ma, provide as Al, inject as Za, unref as u, isRef as bn, watch as Me, defineComponent as ce, mergeModels as Ie, toRef as Pe, useModel as Fe, createElementBlock as w, openBlock as m, normalizeClass as ie, renderSlot as I, normalizeStyle as Qe, withModifiers as dt, createCommentVNode as E, createElementVNode as te, createVNode as ye, createTextVNode as Xe, toDisplayString as ke, useAttrs as Pl, createBlock as ae, resolveDynamicComponent as aa, withCtx as W, Fragment as be, h as _n, mergeProps as De, withKeys as wn, normalizeProps as Oe, guardReactiveProps as ze, useSlots as Ht, onMounted as Ze, onUnmounted as $t, renderList as Re, nextTick as Ue, useTemplateRef as Ot, createSlots as We, withDirectives as Yt, vModelDynamic as Oo, vModelText as ql, useId as Eo, readonly as Lo, customRef as Ro, getCurrentScope as Kr, onScopeDispose as Sl, shallowRef as ul, reactive as Jt, onBeforeUnmount as Gr, Teleport as Zr, Transition as zt, render as fr, onBeforeUpdate as Bo, vShow as yn, resolveComponent as No, vModelCheckbox as Vo, toHandlers as Fo, watchEffect as Yo, TransitionGroup as zo } from "vue";
|
|
5
5
|
/*!
|
|
6
|
-
* Quidgest UI v0.16.
|
|
6
|
+
* Quidgest UI v0.16.41
|
|
7
7
|
* (c) 2025 Quidgest - Consultores de Gestão, S.A.
|
|
8
8
|
* Released under the MIT License.
|
|
9
9
|
*/
|
|
@@ -1124,6 +1124,7 @@ const Ei = /* @__PURE__ */ ce({
|
|
|
1124
1124
|
color: { default: "primary" },
|
|
1125
1125
|
pill: { type: Boolean },
|
|
1126
1126
|
size: { default: "default" },
|
|
1127
|
+
disabled: { type: Boolean },
|
|
1127
1128
|
removable: { type: Boolean },
|
|
1128
1129
|
icons: { default: () => Yi },
|
|
1129
1130
|
texts: { default: () => zi }
|
|
@@ -1139,7 +1140,8 @@ const Ei = /* @__PURE__ */ ce({
|
|
|
1139
1140
|
h,
|
|
1140
1141
|
{
|
|
1141
1142
|
"q-badge--pill": t.pill,
|
|
1142
|
-
"q-badge--
|
|
1143
|
+
"q-badge--disabled": t.disabled,
|
|
1144
|
+
"q-badge--clickable": r.value && !t.disabled
|
|
1143
1145
|
},
|
|
1144
1146
|
t.class
|
|
1145
1147
|
];
|
|
@@ -1178,13 +1180,14 @@ const Ei = /* @__PURE__ */ ce({
|
|
|
1178
1180
|
tabindex: "0",
|
|
1179
1181
|
color: t.color,
|
|
1180
1182
|
"aria-label": t.texts.removeText,
|
|
1183
|
+
disabled: t.disabled,
|
|
1181
1184
|
onClick: c
|
|
1182
1185
|
}, {
|
|
1183
1186
|
default: W(() => [
|
|
1184
1187
|
ye(u(Ye), Oe(ze(t.icons.remove)), null, 16)
|
|
1185
1188
|
]),
|
|
1186
1189
|
_: 1
|
|
1187
|
-
}, 8, ["color", "aria-label"])) : E("", !0)
|
|
1190
|
+
}, 8, ["color", "aria-label", "disabled"])) : E("", !0)
|
|
1188
1191
|
])
|
|
1189
1192
|
], 46, Qi));
|
|
1190
1193
|
}
|
|
@@ -14787,7 +14790,7 @@ const ry = /* @__PURE__ */ ty(ay, [["render", ly]]), Qa = we(Zh), Tl = we(Jh), C
|
|
|
14787
14790
|
Array.isArray(O) ? (l.value = O.sort((q, Z) => P.value.get(q) - P.value.get(Z)), D()) : (l.value = O, Q());
|
|
14788
14791
|
}
|
|
14789
14792
|
function F() {
|
|
14790
|
-
|
|
14793
|
+
H(t.emptyValue), y();
|
|
14791
14794
|
}
|
|
14792
14795
|
function z(O) {
|
|
14793
14796
|
var q, Z, R;
|
|
@@ -14957,7 +14960,9 @@ const ry = /* @__PURE__ */ ty(ay, [["render", ly]]), Qa = we(Zh), Tl = we(Jh), C
|
|
|
14957
14960
|
}, 1032, ["removable"]))), 128))
|
|
14958
14961
|
], 64)) : (m(), ae(u(xa), {
|
|
14959
14962
|
key: 1,
|
|
14960
|
-
pill: ""
|
|
14963
|
+
pill: "",
|
|
14964
|
+
removable: !t.required,
|
|
14965
|
+
"onClick:remove": F
|
|
14961
14966
|
}, {
|
|
14962
14967
|
default: W(() => {
|
|
14963
14968
|
var R, x;
|
|
@@ -14967,7 +14972,7 @@ const ry = /* @__PURE__ */ ty(ay, [["render", ly]]), Qa = we(Zh), Tl = we(Jh), C
|
|
|
14967
14972
|
];
|
|
14968
14973
|
}),
|
|
14969
14974
|
_: 1
|
|
14970
|
-
}))
|
|
14975
|
+
}, 8, ["removable"]))
|
|
14971
14976
|
], 512)) : (m(), w("span", cg, ke(C.value), 1))
|
|
14972
14977
|
], 64)),
|
|
14973
14978
|
Yt(te("input", De({
|