@quidgest/ui 0.16.42 → 0.16.44

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.
Files changed (59) hide show
  1. package/dist/json/api.json +68 -57
  2. package/dist/manifest/components.json +0 -1
  3. package/dist/ui.css +18 -22
  4. package/dist/ui.esm.js +5318 -5235
  5. package/dist/ui.js +25 -21
  6. package/dist/ui.min.css +1 -1
  7. package/dist/ui.min.js +659 -650
  8. package/dist/ui.scss +65 -53
  9. package/esm/components/QDialog/QDialog.d.ts +1 -0
  10. package/esm/components/QDialog/QDialog.d.ts.map +1 -1
  11. package/esm/components/QDialog/QDialog.vue.js +50 -48
  12. package/esm/components/QDialog/index.d.ts +6 -0
  13. package/esm/components/QDialog/index.d.ts.map +1 -1
  14. package/esm/components/QDialog/types.d.ts +7 -0
  15. package/esm/components/QDialog/types.d.ts.map +1 -1
  16. package/esm/components/QDivider/QDivider.d.ts +2 -0
  17. package/esm/components/QDivider/QDivider.d.ts.map +1 -1
  18. package/esm/components/QDivider/QDivider.vue.js +26 -18
  19. package/esm/components/QDivider/index.d.ts +6 -0
  20. package/esm/components/QDivider/index.d.ts.map +1 -1
  21. package/esm/components/QDivider/types.d.ts +14 -0
  22. package/esm/components/QDivider/types.d.ts.map +1 -1
  23. package/esm/components/QDropdownMenu/QDropdownMenu.d.ts +2 -0
  24. package/esm/components/QDropdownMenu/QDropdownMenu.d.ts.map +1 -1
  25. package/esm/components/QDropdownMenu/QDropdownMenu.vue.js +23 -17
  26. package/esm/components/QDropdownMenu/QDropdownMenuContent.d.ts +4 -0
  27. package/esm/components/QDropdownMenu/QDropdownMenuContent.d.ts.map +1 -1
  28. package/esm/components/QDropdownMenu/QDropdownMenuContent.vue.js +70 -68
  29. package/esm/components/QDropdownMenu/index.d.ts +2 -0
  30. package/esm/components/QDropdownMenu/index.d.ts.map +1 -1
  31. package/esm/components/QOverlay/QOverlay.d.ts +1 -0
  32. package/esm/components/QOverlay/QOverlay.d.ts.map +1 -1
  33. package/esm/components/QOverlay/QOverlay.vue.js +114 -111
  34. package/esm/components/QOverlay/index.d.ts +6 -0
  35. package/esm/components/QOverlay/index.d.ts.map +1 -1
  36. package/esm/components/QOverlay/types.d.ts +7 -0
  37. package/esm/components/QOverlay/types.d.ts.map +1 -1
  38. package/esm/components/QPasswordField/QPasswordFieldMeterOverlay.vue.js +12 -11
  39. package/esm/components/QPopover/QPopover.d.ts.map +1 -1
  40. package/esm/components/QPopover/QPopover.vue.js +14 -13
  41. package/esm/components/QSelect/QSelect.vue.js +1 -2
  42. package/esm/components/index.d.ts +0 -1
  43. package/esm/components/index.d.ts.map +1 -1
  44. package/esm/components/index.js +70 -72
  45. package/esm/composables/useDialog/index.d.ts +1 -0
  46. package/esm/composables/useDialog/index.d.ts.map +1 -1
  47. package/esm/index.d.ts +0 -1
  48. package/esm/vendors/focus-trap-vue/dist/focus-trap-vue.esm-browser.js +104 -0
  49. package/package.json +3 -2
  50. package/esm/components/QFocusTrap/QFocusTrap.d.ts +0 -28
  51. package/esm/components/QFocusTrap/QFocusTrap.d.ts.map +0 -1
  52. package/esm/components/QFocusTrap/QFocusTrap.vue.js +0 -32
  53. package/esm/components/QFocusTrap/QFocusTrap.vue2.js +0 -4
  54. package/esm/components/QFocusTrap/index.d.ts +0 -37
  55. package/esm/components/QFocusTrap/index.d.ts.map +0 -1
  56. package/esm/components/QFocusTrap/index.js +0 -6
  57. package/esm/components/QFocusTrap/types.d.ts +0 -6
  58. package/esm/components/QFocusTrap/types.d.ts.map +0 -1
  59. package/esm/vendors/@vueuse/integrations/useFocusTrap/component.js +0 -24
package/dist/ui.scss CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Quidgest UI v0.16.42
2
+ * Quidgest UI v0.16.44
3
3
  * (c) 2025 Quidgest - Consultores de Gestão, S.A.
4
4
  * Released under the MIT License.
5
5
  */
@@ -1573,62 +1573,74 @@ $q-carousel-height-md: 300px;
1573
1573
  }
1574
1574
  }
1575
1575
  .q-divider {
1576
+ --q-divider-thickness: 1px;
1577
+ --q-divider-color: var(--q-theme-neutral);
1576
1578
  display: flex;
1577
1579
  align-items: center;
1578
1580
  justify-content: center;
1579
1581
  position: relative;
1580
- color: var(--q-theme-neutral);
1582
+ color: var(--q-divider-color);
1581
1583
  font-size: 0.875rem;
1582
- }
1583
- .q-divider--horizontal {
1584
- width: 100%;
1585
- flex-direction: row;
1586
- margin: 8px 0;
1587
- }
1588
- .q-divider--horizontal:not(.q-divider--labeled)::before {
1589
- content: '';
1590
- flex: 1;
1591
- border-top-width: 1px;
1592
- }
1593
- .q-divider--horizontal.q-divider--labeled .q-divider__line {
1594
- flex: 1;
1595
- border-top-width: 1px;
1596
- }
1597
- .q-divider--horizontal.q-divider--labeled .q-divider__label {
1598
- padding: 0 12px;
1599
- white-space: nowrap;
1600
- }
1601
- .q-divider--horizontal.q-divider--inset {
1602
- max-width: calc(100% - 72px);
1603
- margin-inline-start: 72px;
1604
- }
1605
- .q-divider--vertical {
1606
- display: flex;
1607
- flex-direction: column;
1608
- align-items: center;
1609
- height: 100%;
1610
- min-height: 100%;
1611
- margin: 0 8px;
1612
- }
1613
- .q-divider--vertical:not(.q-divider--labeled)::before {
1614
- content: '';
1615
- flex: 1;
1616
- border-left-width: 1px;
1617
- }
1618
- .q-divider--vertical.q-divider--labeled .q-divider__line {
1619
- border-left-width: 1px;
1620
- height: 100%;
1621
- }
1622
- .q-divider--vertical.q-divider--labeled .q-divider__label {
1623
- writing-mode: vertical-rl;
1624
- text-orientation: mixed;
1625
- padding: 12px 0;
1626
- white-space: nowrap;
1627
- }
1628
- .q-divider--vertical.q-divider--inset {
1629
- margin-bottom: 8px;
1630
- margin-top: 8px;
1631
- max-height: calc(100% - 16px);
1584
+
1585
+ &--horizontal {
1586
+ width: 100%;
1587
+ flex-direction: row;
1588
+ margin: 8px 0;
1589
+ }
1590
+ &--horizontal:not(.q-divider--labeled)::before {
1591
+ content: '';
1592
+ flex: 1;
1593
+ border-top-width: var(--q-divider-thickness);
1594
+ border-color: var(--q-divider-color);
1595
+ }
1596
+
1597
+ &--horizontal.q-divider--labeled .q-divider__line {
1598
+ flex: 1;
1599
+ border-top-width: var(--q-divider-thickness);
1600
+ border-color: var(--q-divider-color);
1601
+ }
1602
+ &--horizontal.q-divider--labeled .q-divider__label {
1603
+ padding: 0 12px;
1604
+ white-space: nowrap;
1605
+ }
1606
+
1607
+ &--horizontal.q-divider--inset {
1608
+ max-width: calc(100% - 72px);
1609
+ margin-inline-start: 72px;
1610
+ }
1611
+
1612
+ &--vertical {
1613
+ display: flex;
1614
+ flex-direction: column;
1615
+ align-items: center;
1616
+ height: 100%;
1617
+ min-height: 100%;
1618
+ margin: 0 8px;
1619
+ }
1620
+ &--vertical:not(.q-divider--labeled)::before {
1621
+ content: '';
1622
+ flex: 1;
1623
+ border-left-width: var(--q-divider-thickness);
1624
+ border-color: var(--q-divider-color);
1625
+ }
1626
+
1627
+ &--vertical.q-divider--labeled .q-divider__line {
1628
+ border-left-width: var(--q-divider-thickness);
1629
+ border-color: var(--q-divider-color);
1630
+ height: 100%;
1631
+ }
1632
+ &--vertical.q-divider--labeled .q-divider__label {
1633
+ writing-mode: vertical-rl;
1634
+ text-orientation: mixed;
1635
+ padding: 12px 0;
1636
+ white-space: nowrap;
1637
+ }
1638
+
1639
+ &--vertical.q-divider--inset {
1640
+ margin-bottom: 8px;
1641
+ margin-top: 8px;
1642
+ max-height: calc(100% - 16px);
1643
+ }
1632
1644
  }
1633
1645
  .q-dropdown-menu {
1634
1646
  &__body {
@@ -2719,6 +2731,7 @@ $base-border: 1px solid rgb(var(--q-theme-neutral-light-rgb) / 50%);
2719
2731
  gap: 0.1rem;
2720
2732
  overflow: hidden;
2721
2733
  width: 100%;
2734
+ height: 1.35rem;
2722
2735
  #{$this}__badge {
2723
2736
  &-count {
2724
2737
  font-weight: $font-weight-black;
@@ -2728,7 +2741,6 @@ $base-border: 1px solid rgb(var(--q-theme-neutral-light-rgb) / 50%);
2728
2741
  }
2729
2742
  }
2730
2743
  .q-badge__content {
2731
- height: 0.85em;
2732
2744
  white-space: nowrap;
2733
2745
  }
2734
2746
  }
@@ -36,6 +36,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
36
36
  backdropBlur: boolean;
37
37
  attach: string;
38
38
  focusTrap: boolean;
39
+ returnFocusOnDeactivate: boolean;
39
40
  buttons: DialogButton[];
40
41
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
41
42
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
@@ -1 +1 @@
1
- {"version":3,"file":"QDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QDialog/QDialog.vue"],"names":[],"mappings":"AAoGA;AAoLC,OAAO,EAAiC,aAAa,EAAE,MAAM,aAAa,CAAA;AAS1E,OAAO,KAAK,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAKzD,KAAK,WAAW,GAAG,YAAY,CAAC;AA2EjC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;CACpB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WAwPT,OAAO,IAA6B;;wBAhBrB,GAAG;kCACO,GAAG;iCACJ,GAAG;sBACd,GAAG;6BACI,GAAG;+BACD,GAAG;iCACD,GAAG;;;;EAexC;AAuBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;6EASnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"QDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QDialog/QDialog.vue"],"names":[],"mappings":"AAqGA;AAsLC,OAAO,EAAiC,aAAa,EAAE,MAAM,aAAa,CAAA;AAS1E,OAAO,KAAK,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAKzD,KAAK,WAAW,GAAG,YAAY,CAAC;AA6EjC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;CACpB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WA0PT,OAAO,IAA6B;;wBAhBrB,GAAG;kCACO,GAAG;iCACJ,GAAG;sBACd,GAAG;6BACI,GAAG;+BACD,GAAG;iCACD,GAAG;;;;EAexC;AAuBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;6EASnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1,6 +1,6 @@
1
- import { defineComponent as Q, mergeModels as g, useModel as A, ref as V, computed as b, createBlock as c, openBlock as l, unref as a, normalizeClass as B, withCtx as p, createElementVNode as $, createElementBlock as s, createCommentVNode as i, renderSlot as n, toDisplayString as v, createVNode as _, normalizeProps as q, guardReactiveProps as C, createTextVNode as O, Fragment as S, renderList as I, mergeProps as T } from "vue";
1
+ import { defineComponent as U, mergeModels as g, useModel as Q, ref as V, computed as B, createBlock as u, openBlock as t, unref as a, normalizeClass as b, withCtx as p, createElementVNode as $, createElementBlock as s, createCommentVNode as i, renderSlot as n, toDisplayString as m, createVNode as y, normalizeProps as q, guardReactiveProps as C, createTextVNode as A, Fragment as S, renderList as I, mergeProps as T } from "vue";
2
2
  import { DEFAULT_ICONS as P, DEFAULT_BUTTONS as H, DEFAULT_ICON as w } from "./constants.js";
3
- import { QButton as L } from "../QButton/index.js";
3
+ import { QButton as D } from "../QButton/index.js";
4
4
  import { QIcon as f } from "../QIcon/index.js";
5
5
  import { QOverlay as x } from "../QOverlay/index.js";
6
6
  import { QTextField as R } from "../QTextField/index.js";
@@ -25,7 +25,7 @@ const j = {
25
25
  }, oe = {
26
26
  key: 0,
27
27
  class: "q-dialog__footer-buttons"
28
- }, ne = /* @__PURE__ */ Q({
28
+ }, ne = /* @__PURE__ */ U({
29
29
  __name: "QDialog",
30
30
  props: /* @__PURE__ */ g({
31
31
  id: {},
@@ -40,6 +40,7 @@ const j = {
40
40
  attach: { default: "body" },
41
41
  inline: { type: Boolean },
42
42
  focusTrap: { type: Boolean, default: !0 },
43
+ returnFocusOnDeactivate: { type: Boolean, default: !0 },
43
44
  dismissible: { type: Boolean },
44
45
  html: { type: Boolean, default: !0 },
45
46
  input: {},
@@ -49,30 +50,30 @@ const j = {
49
50
  modelModifiers: {}
50
51
  }),
51
52
  emits: /* @__PURE__ */ g(["enter", "leave"], ["update:modelValue"]),
52
- setup(y, { emit: N }) {
53
- const e = y, k = N, m = A(y, "modelValue"), u = V(""), d = V(""), z = b(() => ["q-dialog", e.class]), D = b(() => `q-overlay--${e.size}`);
53
+ setup(_, { emit: F }) {
54
+ const e = _, k = F, v = Q(_, "modelValue"), c = V(""), d = V(""), L = B(() => ["q-dialog", e.class]), N = B(() => `q-overlay--${e.size}`);
54
55
  function h() {
55
- m.value = !1;
56
+ v.value = !1;
56
57
  }
57
- function E(o) {
58
- var r, t;
58
+ function z(o) {
59
+ var r, l;
59
60
  if (o.action) {
60
- if ((r = e.input) != null && r.validator && (d.value = e.input.validator(a(u)), a(d)))
61
+ if ((r = e.input) != null && r.validator && (d.value = e.input.validator(a(c)), a(d)))
61
62
  return;
62
- (t = o.action) == null || t.call(o, a(u));
63
+ (l = o.action) == null || l.call(o, a(c));
63
64
  }
64
65
  h();
65
66
  }
66
- function M() {
67
+ function E() {
67
68
  k("enter");
68
69
  }
69
- function U() {
70
+ function M() {
70
71
  k("leave");
71
72
  }
72
- return (o, r) => (l(), c(a(x), {
73
+ return (o, r) => (t(), u(a(x), {
73
74
  id: e.id,
74
- modelValue: m.value,
75
- "onUpdate:modelValue": r[1] || (r[1] = (t) => m.value = t),
75
+ modelValue: v.value,
76
+ "onUpdate:modelValue": r[1] || (r[1] = (l) => v.value = l),
76
77
  "backdrop-class": "q-dialog__underlay",
77
78
  "scroll-lock": "",
78
79
  persistent: "",
@@ -81,37 +82,38 @@ const j = {
81
82
  "backdrop-blur": e.backdropBlur,
82
83
  "center-vertically": e.centerVertically,
83
84
  "focus-trap": e.focusTrap,
84
- class: B(D.value),
85
- onEnter: M,
86
- onLeave: U
85
+ "return-focus-on-deactivate": e.returnFocusOnDeactivate,
86
+ class: b(N.value),
87
+ onEnter: E,
88
+ onLeave: M
87
89
  }, {
88
90
  default: p(() => [
89
91
  $(
90
92
  "div",
91
93
  {
92
- class: B(z.value)
94
+ class: b(L.value)
93
95
  },
94
96
  [
95
- e.title || o.$slots.header || o.$slots["header.prepend"] || o.$slots["header.append"] ? (l(), s("div", j, [
97
+ e.title || o.$slots.header || o.$slots["header.prepend"] || o.$slots["header.append"] ? (t(), s("div", j, [
96
98
  n(o.$slots, "header", {}, () => [
97
99
  n(o.$slots, "header.prepend"),
98
- e.title ? (l(), s(
100
+ e.title ? (t(), s(
99
101
  "span",
100
102
  G,
101
- v(e.title),
103
+ m(e.title),
102
104
  1
103
105
  /* TEXT */
104
106
  )) : i("v-if", !0),
105
107
  n(o.$slots, "header.append")
106
108
  ])
107
109
  ])) : i("v-if", !0),
108
- e.icon || e.text || o.$slots.body ? (l(), s("div", J, [
110
+ e.icon || e.text || o.$slots.body ? (t(), s("div", J, [
109
111
  n(o.$slots, "body", {}, () => {
110
- var t;
112
+ var l;
111
113
  return [
112
114
  n(o.$slots, "body.icon", {}, () => [
113
- e.icon ? (l(), s("span", K, [
114
- _(
115
+ e.icon ? (t(), s("span", K, [
116
+ y(
115
117
  a(f),
116
118
  q(C(e.icon)),
117
119
  null,
@@ -121,32 +123,32 @@ const j = {
121
123
  ])) : i("v-if", !0)
122
124
  ]),
123
125
  $("div", W, [
124
- e.html ? (l(), s("div", {
126
+ e.html ? (t(), s("div", {
125
127
  key: 0,
126
128
  innerHTML: e.text
127
- }, null, 8, X)) : (l(), s(
129
+ }, null, 8, X)) : (t(), s(
128
130
  "div",
129
131
  Y,
130
- v(e.text),
132
+ m(e.text),
131
133
  1
132
134
  /* TEXT */
133
135
  ))
134
136
  ]),
135
- e.input ? (l(), s("div", Z, [
136
- _(a(R), {
137
- modelValue: u.value,
138
- "onUpdate:modelValue": r[0] || (r[0] = (F) => u.value = F),
137
+ e.input ? (t(), s("div", Z, [
138
+ y(a(R), {
139
+ modelValue: c.value,
140
+ "onUpdate:modelValue": r[0] || (r[0] = (O) => c.value = O),
139
141
  invalid: !!d.value,
140
- placeholder: (t = e.input) == null ? void 0 : t.placeholder,
142
+ placeholder: (l = e.input) == null ? void 0 : l.placeholder,
141
143
  size: "block"
142
144
  }, {
143
145
  extras: p(() => [
144
- d.value ? (l(), c(a(f), {
146
+ d.value ? (t(), u(a(f), {
145
147
  key: 0,
146
148
  icon: "exclamation-sign"
147
149
  })) : i("v-if", !0),
148
- O(
149
- " " + v(d.value),
150
+ A(
151
+ " " + m(d.value),
150
152
  1
151
153
  /* TEXT */
152
154
  )
@@ -159,22 +161,22 @@ const j = {
159
161
  ];
160
162
  })
161
163
  ])) : i("v-if", !0),
162
- e.buttons || o.$slots["footer.append"] ? (l(), s("div", ee, [
163
- e.buttons ? (l(), s("span", oe, [
164
- (l(!0), s(
164
+ e.buttons || o.$slots["footer.append"] ? (t(), s("div", ee, [
165
+ e.buttons ? (t(), s("span", oe, [
166
+ (t(!0), s(
165
167
  S,
166
168
  null,
167
- I(e.buttons, (t) => (l(), c(a(L), T({ ref_for: !0 }, t.props, {
168
- key: t.id,
169
- onClick: () => E(t)
169
+ I(e.buttons, (l) => (t(), u(a(D), T({ ref_for: !0 }, l.props, {
170
+ key: l.id,
171
+ onClick: () => z(l)
170
172
  }), {
171
173
  default: p(() => [
172
- t.icon ? (l(), c(
174
+ l.icon ? (t(), u(
173
175
  a(f),
174
176
  T({
175
177
  key: 0,
176
178
  ref_for: !0
177
- }, t.icon),
179
+ }, l.icon),
178
180
  null,
179
181
  16
180
182
  /* FULL_PROPS */
@@ -189,14 +191,14 @@ const j = {
189
191
  ])) : i("v-if", !0),
190
192
  n(o.$slots, "footer.append")
191
193
  ])) : i("v-if", !0),
192
- e.dismissible ? (l(), c(a(L), {
194
+ e.dismissible ? (t(), u(a(D), {
193
195
  key: 3,
194
196
  class: "q-dialog__close",
195
197
  variant: "text",
196
198
  onClick: h
197
199
  }, {
198
200
  default: p(() => [
199
- _(
201
+ y(
200
202
  a(f),
201
203
  q(C(e.icons.close)),
202
204
  null,
@@ -214,7 +216,7 @@ const j = {
214
216
  ]),
215
217
  _: 3
216
218
  /* FORWARDED */
217
- }, 8, ["id", "modelValue", "inline", "attach", "backdrop-blur", "center-vertically", "focus-trap", "class"]));
219
+ }, 8, ["id", "modelValue", "inline", "attach", "backdrop-blur", "center-vertically", "focus-trap", "return-focus-on-deactivate", "class"]));
218
220
  }
219
221
  });
220
222
  export {
@@ -12,6 +12,7 @@ declare const QDialog: {
12
12
  attach?: string;
13
13
  inline?: boolean;
14
14
  focusTrap?: boolean;
15
+ returnFocusOnDeactivate?: boolean;
15
16
  dismissible?: boolean;
16
17
  html?: boolean;
17
18
  input?: import('./types').QDialogInputOption;
@@ -33,6 +34,7 @@ declare const QDialog: {
33
34
  backdropBlur: boolean;
34
35
  attach: string;
35
36
  focusTrap: boolean;
37
+ returnFocusOnDeactivate: boolean;
36
38
  buttons: import('./types').DialogButton[];
37
39
  }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
38
40
  P: {};
@@ -54,6 +56,7 @@ declare const QDialog: {
54
56
  attach?: string;
55
57
  inline?: boolean;
56
58
  focusTrap?: boolean;
59
+ returnFocusOnDeactivate?: boolean;
57
60
  dismissible?: boolean;
58
61
  html?: boolean;
59
62
  input?: import('./types').QDialogInputOption;
@@ -70,6 +73,7 @@ declare const QDialog: {
70
73
  backdropBlur: boolean;
71
74
  attach: string;
72
75
  focusTrap: boolean;
76
+ returnFocusOnDeactivate: boolean;
73
77
  buttons: import('./types').DialogButton[];
74
78
  }>;
75
79
  __isFragment?: never;
@@ -88,6 +92,7 @@ declare const QDialog: {
88
92
  attach?: string;
89
93
  inline?: boolean;
90
94
  focusTrap?: boolean;
95
+ returnFocusOnDeactivate?: boolean;
91
96
  dismissible?: boolean;
92
97
  html?: boolean;
93
98
  input?: import('./types').QDialogInputOption;
@@ -109,6 +114,7 @@ declare const QDialog: {
109
114
  backdropBlur: boolean;
110
115
  attach: string;
111
116
  focusTrap: boolean;
117
+ returnFocusOnDeactivate: boolean;
112
118
  buttons: import('./types').DialogButton[];
113
119
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
114
120
  $slots: {
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QDialog/index.ts"],"names":[],"mappings":"AAOA,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA4B,CAAA;AACzC,QAAA,MAAM,eAAe;;;;kFAAoC,CAAA;AAGzD,OAAO,EAAE,OAAO,EAAE,eAAe,EAAE,CAAA;AAGnC,cAAc,SAAS,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QDialog/index.ts"],"names":[],"mappings":"AAOA,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA4B,CAAA;AACzC,QAAA,MAAM,eAAe;;;;kFAAoC,CAAA;AAGzD,OAAO,EAAE,OAAO,EAAE,eAAe,EAAE,CAAA;AAGnC,cAAc,SAAS,CAAA"}
@@ -67,6 +67,13 @@ export type QDialogProps = QBaseComponentProps & {
67
67
  * @category Behavior
68
68
  */
69
69
  focusTrap?: boolean;
70
+ /**
71
+ * Whether to return focus to the element that opened this
72
+ * when the focus trap is deactivaed.
73
+ *
74
+ * @category Behavior
75
+ */
76
+ returnFocusOnDeactivate?: boolean;
70
77
  /**
71
78
  * True if the dialog window can be closed, false otherwise.
72
79
  *
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QDialog/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAChE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AAC9C,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,UAAU,CAAA;AACpC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAEhD,MAAM,MAAM,WAAW,GAAG,OAAO,GAAG,QAAQ,GAAG,OAAO,GAAG,QAAQ,CAAA;AAEjE,MAAM,MAAM,YAAY,GAAG,mBAAmB,GAAG;IAChD;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;;;OAIG;IACH,IAAI,CAAC,EAAE,IAAI,CAAA;IAEX;;;;OAIG;IACH,OAAO,CAAC,EAAE,YAAY,EAAE,CAAA;IAExB;;;;OAIG;IACH,YAAY,CAAC,EAAE,OAAO,CAAA;IAEtB;;;;OAIG;IACH,IAAI,CAAC,EAAE,WAAW,CAAA;IAElB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAA;IAE1B;;;;;OAKG;IACH,MAAM,CAAC,EAAE,MAAM,CAAA;IAEf;;;;;OAKG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAEhB;;;;;OAKG;IACH,SAAS,CAAC,EAAE,OAAO,CAAA;IAEnB;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAA;IAErB;;;;OAIG;IACH,IAAI,CAAC,EAAE,OAAO,CAAA;IAEd;;;;OAIG;IACH,KAAK,CAAC,EAAE,kBAAkB,CAAA;IAE1B;;;;OAIG;IACH,KAAK,CAAC,EAAE,OAAO,aAAa,CAAA;CAC5B,CAAA;AAED,MAAM,MAAM,YAAY,GAAG;IAC1B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAA;IAEV;;OAEG;IACH,IAAI,CAAC,EAAE,IAAI,CAAA;IAEX;;OAEG;IACH,MAAM,CAAC,EAAE;QAAE,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;KAAE,CAAA;IAEnC;;OAEG;IACH,KAAK,EAAE,YAAY,CAAA;CACnB,CAAA;AAED,MAAM,MAAM,cAAc,GAAG;IAC5B;;OAEG;IACH,KAAK,CAAC,EAAE,kBAAkB,CAAA;CAC1B,CAAA;AAED,MAAM,MAAM,kBAAkB,GAAG;IAChC;;OAEG;IACH,IAAI,EAAE,MAAM,CAAA;IAEZ;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAA;IAEpB;;OAEG;IACH,SAAS,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,MAAM,GAAG,SAAS,CAAA;CACjD,CAAA;AAED,MAAM,MAAM,oBAAoB,GAAG;IAClC;;;;OAIG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;CAChB,CAAA"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QDialog/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAChE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AAC9C,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,UAAU,CAAA;AACpC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAEhD,MAAM,MAAM,WAAW,GAAG,OAAO,GAAG,QAAQ,GAAG,OAAO,GAAG,QAAQ,CAAA;AAEjE,MAAM,MAAM,YAAY,GAAG,mBAAmB,GAAG;IAChD;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;;;OAIG;IACH,IAAI,CAAC,EAAE,IAAI,CAAA;IAEX;;;;OAIG;IACH,OAAO,CAAC,EAAE,YAAY,EAAE,CAAA;IAExB;;;;OAIG;IACH,YAAY,CAAC,EAAE,OAAO,CAAA;IAEtB;;;;OAIG;IACH,IAAI,CAAC,EAAE,WAAW,CAAA;IAElB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAA;IAE1B;;;;;OAKG;IACH,MAAM,CAAC,EAAE,MAAM,CAAA;IAEf;;;;;OAKG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAEhB;;;;;OAKG;IACH,SAAS,CAAC,EAAE,OAAO,CAAA;IAEnB;;;;;OAKG;IACH,uBAAuB,CAAC,EAAE,OAAO,CAAA;IAEjC;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAA;IAErB;;;;OAIG;IACH,IAAI,CAAC,EAAE,OAAO,CAAA;IAEd;;;;OAIG;IACH,KAAK,CAAC,EAAE,kBAAkB,CAAA;IAE1B;;;;OAIG;IACH,KAAK,CAAC,EAAE,OAAO,aAAa,CAAA;CAC5B,CAAA;AAED,MAAM,MAAM,YAAY,GAAG;IAC1B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAA;IAEV;;OAEG;IACH,IAAI,CAAC,EAAE,IAAI,CAAA;IAEX;;OAEG;IACH,MAAM,CAAC,EAAE;QAAE,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;KAAE,CAAA;IAEnC;;OAEG;IACH,KAAK,EAAE,YAAY,CAAA;CACnB,CAAA;AAED,MAAM,MAAM,cAAc,GAAG;IAC5B;;OAEG;IACH,KAAK,CAAC,EAAE,kBAAkB,CAAA;CAC1B,CAAA;AAED,MAAM,MAAM,kBAAkB,GAAG;IAChC;;OAEG;IACH,IAAI,EAAE,MAAM,CAAA;IAEZ;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAA;IAEpB;;OAEG;IACH,SAAS,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,MAAM,GAAG,SAAS,CAAA;CACjD,CAAA;AAED,MAAM,MAAM,oBAAoB,GAAG;IAClC;;;;OAIG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;CAChB,CAAA"}
@@ -9,7 +9,9 @@ declare function __VLS_template(): {
9
9
  };
10
10
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
11
  declare const __VLS_component: import('vue').DefineComponent<QDividerProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<QDividerProps> & Readonly<{}>, {
12
+ color: string;
12
13
  direction: "horizontal" | "vertical";
14
+ thickness: number;
13
15
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
14
16
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
15
17
  export default _default;
@@ -1 +1 @@
1
- {"version":3,"file":"QDivider.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QDivider/QDivider.vue"],"names":[],"mappings":"AAcA;AAyCC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AA2B7C,iBAAS,cAAc;WAqCT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAWD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;wFAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"QDivider.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QDivider/QDivider.vue"],"names":[],"mappings":"AAeA;AAsEC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAiD7C,iBAAS,cAAc;WAsCT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;wFAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1,42 +1,50 @@
1
- import { defineComponent as v, computed as t, useSlots as c, createElementBlock as l, openBlock as o, normalizeClass as u, createCommentVNode as p, Fragment as m, createElementVNode as s, renderSlot as _ } from "vue";
2
- const f = ["id"], q = { class: "q-divider__label" }, b = /* @__PURE__ */ v({
1
+ import { defineComponent as m, computed as i, useSlots as p, toRef as f, createElementBlock as r, openBlock as n, normalizeStyle as _, normalizeClass as q, createCommentVNode as k, Fragment as y, createElementVNode as l, renderSlot as h } from "vue";
2
+ import { useColor as C } from "../../composables/useColor/index.js";
3
+ const $ = ["id"], b = { class: "q-divider__label" }, S = /* @__PURE__ */ m({
3
4
  __name: "QDivider",
4
5
  props: {
5
6
  id: {},
6
7
  class: {},
7
8
  direction: { default: "horizontal" },
8
- inset: { type: Boolean }
9
+ inset: { type: Boolean },
10
+ thickness: { default: 1 },
11
+ color: { default: "neutral" }
9
12
  },
10
- setup(n) {
11
- const e = n, d = t(() => !!c().default), r = t(() => [
13
+ setup(d) {
14
+ const e = d, o = i(() => !!p().default), a = i(() => [
12
15
  "q-divider",
13
16
  `q-divider--${e.direction}`,
14
17
  {
15
18
  "q-divider--inset": e.inset,
16
- "q-divider--labeled": d.value
19
+ "q-divider--labeled": o.value
17
20
  },
18
21
  e.class
19
- ]);
20
- return (a, i) => (o(), l("div", {
22
+ ]), { isUtilityColor: c, style: u } = C(f(e, "color")), v = i(() => {
23
+ var s;
24
+ const t = {};
25
+ return e.thickness >= 0 && e.thickness !== 1 && (t["--q-divider-thickness"] = `${e.thickness}px`), e.color !== "neutral" && (t["--q-divider-color"] = c.value ? `var(--q-theme-${e.color})` : (s = u.value) == null ? void 0 : s.mainColor), t;
26
+ });
27
+ return (t, s) => (n(), r("div", {
21
28
  id: e.id,
22
- class: u(r.value),
29
+ class: q(a.value),
30
+ style: _(v.value),
23
31
  role: "separator"
24
32
  }, [
25
- d.value ? (o(), l(
26
- m,
33
+ o.value ? (n(), r(
34
+ y,
27
35
  { key: 0 },
28
36
  [
29
- i[0] || (i[0] = s(
37
+ s[0] || (s[0] = l(
30
38
  "div",
31
39
  { class: "q-divider__line" },
32
40
  null,
33
41
  -1
34
42
  /* HOISTED */
35
43
  )),
36
- s("span", q, [
37
- _(a.$slots, "default")
44
+ l("span", b, [
45
+ h(t.$slots, "default")
38
46
  ]),
39
- i[1] || (i[1] = s(
47
+ s[1] || (s[1] = l(
40
48
  "div",
41
49
  { class: "q-divider__line" },
42
50
  null,
@@ -46,10 +54,10 @@ const f = ["id"], q = { class: "q-divider__label" }, b = /* @__PURE__ */ v({
46
54
  ],
47
55
  64
48
56
  /* STABLE_FRAGMENT */
49
- )) : p("v-if", !0)
50
- ], 10, f));
57
+ )) : k("v-if", !0)
58
+ ], 14, $));
51
59
  }
52
60
  });
53
61
  export {
54
- b as default
62
+ S as default
55
63
  };
@@ -1,6 +1,8 @@
1
1
  declare const QDivider: {
2
2
  new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./types').QDividerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
3
+ color: string;
3
4
  direction: "horizontal" | "vertical";
5
+ thickness: number;
4
6
  }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
5
7
  P: {};
6
8
  B: {};
@@ -9,13 +11,17 @@ declare const QDivider: {
9
11
  M: {};
10
12
  Defaults: {};
11
13
  }, Readonly<import('./types').QDividerProps> & Readonly<{}>, {}, {}, {}, {}, {
14
+ color: string;
12
15
  direction: "horizontal" | "vertical";
16
+ thickness: number;
13
17
  }>;
14
18
  __isFragment?: never;
15
19
  __isTeleport?: never;
16
20
  __isSuspense?: never;
17
21
  } & import('vue').ComponentOptionsBase<Readonly<import('./types').QDividerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
22
+ color: string;
18
23
  direction: "horizontal" | "vertical";
24
+ thickness: number;
19
25
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
20
26
  $slots: {
21
27
  default?(_: {}): any;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QDivider/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;EAA6B,CAAA;AAG3C,OAAO,EAAE,QAAQ,EAAE,CAAA;AAGnB,cAAc,SAAS,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QDivider/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA6B,CAAA;AAG3C,OAAO,EAAE,QAAQ,EAAE,CAAA;AAGnB,cAAc,SAAS,CAAA"}
@@ -12,5 +12,19 @@ export type QDividerProps = QBaseComponentProps & {
12
12
  * @category Presentation
13
13
  */
14
14
  inset?: boolean;
15
+ /**
16
+ * The thickness of the divider line in pixels.
17
+ *
18
+ * @category Presentation
19
+ */
20
+ thickness?: number;
21
+ /**
22
+ * The color of the divider line.
23
+ * Can be chosen from utility colors like 'success' or 'danger',
24
+ * or specified using CSS color codes.
25
+ *
26
+ * @category Presentation
27
+ */
28
+ color?: string;
15
29
  };
16
30
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QDivider/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAEhE,MAAM,MAAM,aAAa,GAAG,mBAAmB,GAAG;IACjD;;;;OAIG;IACH,SAAS,CAAC,EAAE,YAAY,GAAG,UAAU,CAAA;IAErC;;;;OAIG;IACH,KAAK,CAAC,EAAE,OAAO,CAAA;CACf,CAAA"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QDivider/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAEhE,MAAM,MAAM,aAAa,GAAG,mBAAmB,GAAG;IACjD;;;;OAIG;IACH,SAAS,CAAC,EAAE,YAAY,GAAG,UAAU,CAAA;IAErC;;;;OAIG;IACH,KAAK,CAAC,EAAE,OAAO,CAAA;IAEf;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAElB;;;;;;OAMG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;CACd,CAAA"}
@@ -6,6 +6,8 @@ type __VLS_PublicProps = {
6
6
  declare function __VLS_template(): {
7
7
  attrs: Partial<{}>;
8
8
  slots: {
9
+ prepend?(_: {}): any;
10
+ append?(_: {}): any;
9
11
  item?(_: {
10
12
  item: import('..').Item;
11
13
  }): any;
@@ -1 +1 @@
1
- {"version":3,"file":"QDropdownMenu.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QDropdownMenu/QDropdownMenu.vue"],"names":[],"mappings":"AAiBA;AAuDC,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAA;AAEjD,KAAK,WAAW,GAAG,kBAAkB,CAAC;AA6BvC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;CACpB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WAwDT,OAAO,IAA6B;;;;YAXxB,GAAG;;;YACM,GAAG;;;;EAerC;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;kFAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"QDropdownMenu.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QDropdownMenu/QDropdownMenu.vue"],"names":[],"mappings":"AAuBA;AA6DC,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAA;AAEjD,KAAK,WAAW,GAAG,kBAAkB,CAAC;AA6BvC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;CACpB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WAwET,OAAO,IAA6B;;yBAbrB,GAAG;wBACJ,GAAG;;;YACL,GAAG;;;YACO,GAAG;;;;EAetC;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;kFAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}