@quidgest/ui 0.16.25 → 0.16.26
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 +7 -0
- package/dist/ui.esm.js +8 -4
- package/dist/ui.js +3 -3
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +106 -106
- package/dist/ui.scss +7 -1
- package/esm/components/QButtonGroup/QButtonGroup.d.ts.map +1 -1
- package/esm/components/QButtonGroup/QButtonGroup.vue.js +10 -8
- package/esm/components/QButtonGroup/types.d.ts +4 -0
- package/esm/components/QButtonGroup/types.d.ts.map +1 -1
- package/esm/components/QPasswordField/QPasswordField.d.ts +0 -1
- package/esm/components/QPasswordField/QPasswordField.d.ts.map +1 -1
- package/esm/components/QPasswordField/QPasswordField.vue.js +1 -1
- package/esm/components/QPasswordField/index.d.ts +0 -3
- package/esm/components/QPasswordField/index.d.ts.map +1 -1
- package/esm/components/QToggleGroup/QToggleGroup.d.ts.map +1 -1
- package/esm/components/QToggleGroup/QToggleGroup.vue.js +13 -11
- package/esm/components/QToggleGroup/index.d.ts +3 -0
- package/esm/components/QToggleGroup/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/ui.css
CHANGED
|
@@ -922,6 +922,13 @@ body *::-webkit-scrollbar-track {
|
|
|
922
922
|
z-index: 3;
|
|
923
923
|
}
|
|
924
924
|
|
|
925
|
+
.q-button-group.q-button-group--block {
|
|
926
|
+
min-width: 100%;
|
|
927
|
+
}
|
|
928
|
+
.q-button-group.q-button-group--block > .q-button {
|
|
929
|
+
flex: 1 1 0%; /* distribute width, each button takes equal available space */
|
|
930
|
+
}
|
|
931
|
+
|
|
925
932
|
.q-card {
|
|
926
933
|
--card-base-padding: 1rem;
|
|
927
934
|
--card-padding: 1rem;
|
package/dist/ui.esm.js
CHANGED
|
@@ -3,7 +3,7 @@ var Mo = (t, e, a) => e in t ? To(t, e, { enumerable: !0, configurable: !0, writ
|
|
|
3
3
|
var be = (t, e, a) => Mo(t, typeof e != "symbol" ? e + "" : e, a);
|
|
4
4
|
import { getCurrentInstance as $l, computed as _, ref as X, toValue as ta, provide as xl, inject as ja, unref as u, isRef as fn, watch as Ce, defineComponent as ce, mergeModels as Ie, toRef as qe, useModel as Fe, createElementBlock as w, openBlock as m, normalizeClass as ie, renderSlot as q, normalizeStyle as Ye, withModifiers as pt, createCommentVNode as R, createElementVNode as ee, createVNode as ye, createTextVNode as et, toDisplayString as $e, useAttrs as Dl, createBlock as se, resolveDynamicComponent as aa, withCtx as H, Fragment as we, h as pn, mergeProps as De, withKeys as mn, normalizeProps as Re, guardReactiveProps as He, useSlots as Qt, onMounted as Ge, onUnmounted as $t, renderList as Ve, nextTick as Xe, useTemplateRef as Xa, createSlots as ze, withDirectives as Ft, vModelDynamic as Ao, vModelText as Tl, useId as Co, readonly as Po, customRef as qo, getCurrentScope as Yr, onScopeDispose as Ml, shallowRef as rl, reactive as Gt, onBeforeUnmount as zr, Teleport as Qr, Transition as Yt, render as nr, onBeforeUpdate as So, vShow as cn, resolveComponent as Io, vModelCheckbox as Oo, toHandlers as Eo, watchEffect as Ro, TransitionGroup as Lo } from "vue";
|
|
5
5
|
/*!
|
|
6
|
-
* Quidgest UI v0.16.
|
|
6
|
+
* Quidgest UI v0.16.26
|
|
7
7
|
* (c) 2025 Quidgest - Consultores de Gestão, S.A.
|
|
8
8
|
* Released under the MIT License.
|
|
9
9
|
*/
|
|
@@ -1140,6 +1140,7 @@ const Si = /* @__PURE__ */ ce({
|
|
|
1140
1140
|
id: {},
|
|
1141
1141
|
class: {},
|
|
1142
1142
|
disabled: { type: Boolean },
|
|
1143
|
+
block: { type: Boolean },
|
|
1143
1144
|
borderless: { type: Boolean },
|
|
1144
1145
|
elevated: { type: Boolean }
|
|
1145
1146
|
},
|
|
@@ -1155,7 +1156,8 @@ const Si = /* @__PURE__ */ ce({
|
|
|
1155
1156
|
class: ie([
|
|
1156
1157
|
"q-button-group",
|
|
1157
1158
|
{
|
|
1158
|
-
"q-button-group--elevated": e.elevated
|
|
1159
|
+
"q-button-group--elevated": e.elevated,
|
|
1160
|
+
"q-button-group--block": e.block
|
|
1159
1161
|
},
|
|
1160
1162
|
e.class
|
|
1161
1163
|
]),
|
|
@@ -13946,7 +13948,7 @@ const ey = /* @__PURE__ */ Kh(Gh, [["render", Jh]]), Va = _e(Uh), _l = _e(jh), k
|
|
|
13946
13948
|
label: {},
|
|
13947
13949
|
for: {},
|
|
13948
13950
|
required: { type: Boolean },
|
|
13949
|
-
size: {
|
|
13951
|
+
size: {},
|
|
13950
13952
|
readonly: { type: Boolean },
|
|
13951
13953
|
disabled: { type: Boolean },
|
|
13952
13954
|
invalid: { type: Boolean },
|
|
@@ -15549,6 +15551,7 @@ const ey = /* @__PURE__ */ Kh(Gh, [["render", Jh]]), Va = _e(Uh), _l = _e(jh), k
|
|
|
15549
15551
|
id: {},
|
|
15550
15552
|
class: {},
|
|
15551
15553
|
disabled: { type: Boolean },
|
|
15554
|
+
block: { type: Boolean },
|
|
15552
15555
|
borderless: { type: Boolean },
|
|
15553
15556
|
elevated: { type: Boolean },
|
|
15554
15557
|
multiple: { type: Boolean },
|
|
@@ -15574,13 +15577,14 @@ const ey = /* @__PURE__ */ Kh(Gh, [["render", Jh]]), Va = _e(Uh), _l = _e(jh), k
|
|
|
15574
15577
|
}), (l, r) => (m(), se(u(ls), {
|
|
15575
15578
|
id: e.id,
|
|
15576
15579
|
class: ie(e.class),
|
|
15580
|
+
block: e.block,
|
|
15577
15581
|
elevated: e.elevated
|
|
15578
15582
|
}, {
|
|
15579
15583
|
default: H(() => [
|
|
15580
15584
|
q(l.$slots, "default")
|
|
15581
15585
|
]),
|
|
15582
15586
|
_: 3
|
|
15583
|
-
}, 8, ["id", "class", "elevated"]));
|
|
15587
|
+
}, 8, ["id", "class", "block", "elevated"]));
|
|
15584
15588
|
}
|
|
15585
15589
|
}), Lg = /* @__PURE__ */ ce({
|
|
15586
15590
|
__name: "QToggleGroupItem",
|