@quidgest/ui 0.16.38 → 0.16.39
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 +84 -1
- package/dist/manifest/components.json +1 -0
- package/dist/ui.css +113 -1
- package/dist/ui.esm.js +3669 -3642
- package/dist/ui.js +7 -7
- package/dist/ui.min.css +1 -1
- package/dist/ui.min.js +136 -133
- package/dist/ui.scss +119 -2
- package/esm/components/QGrid/QCol.d.ts.map +1 -1
- package/esm/components/QGrid/QCol.vue.js +12 -9
- package/esm/components/QGroupBox/QGroupBox.d.ts +21 -0
- package/esm/components/QGroupBox/QGroupBox.d.ts.map +1 -0
- package/esm/components/QGroupBox/QGroupBox.vue.js +44 -0
- package/esm/components/QGroupBox/QGroupBox.vue2.js +4 -0
- package/esm/components/QGroupBox/index.d.ts +26 -0
- package/esm/components/QGroupBox/index.d.ts.map +1 -0
- package/esm/components/QGroupBox/index.js +6 -0
- package/esm/components/QGroupBox/types.d.ts +32 -0
- package/esm/components/QGroupBox/types.d.ts.map +1 -0
- package/esm/components/QList/QList.d.ts.map +1 -1
- package/esm/components/QList/QList.vue.js +3 -7
- package/esm/components/QSelect/QSelect.d.ts.map +1 -1
- package/esm/components/QSelect/QSelect.vue.js +163 -169
- package/esm/components/index.d.ts +1 -0
- package/esm/components/index.d.ts.map +1 -1
- package/esm/components/index.js +70 -68
- package/esm/composables/useGroup/index.js +17 -17
- package/esm/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/ui.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Quidgest UI v0.16.
|
|
2
|
+
* Quidgest UI v0.16.39
|
|
3
3
|
* (c) 2025 Quidgest - Consultores de Gestão, S.A.
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -256,6 +256,7 @@ $outline: $outline-width $outline-style $outline-color;
|
|
|
256
256
|
$scrollbar-thumb: var(--q-theme-neutral-light);
|
|
257
257
|
$scrollbar-track: rgb(var(--q-theme-neutral-light-rgb) / 25%);
|
|
258
258
|
$headings-text-transform: uppercase !default;
|
|
259
|
+
$group-border-bottom: 1px solid $border !default;
|
|
259
260
|
$input-padding-y: 0.26rem !default;
|
|
260
261
|
$input-padding-x: 0.25rem !default;
|
|
261
262
|
:root {
|
|
@@ -1937,6 +1938,121 @@ $q-carousel-height-md: 300px;
|
|
|
1937
1938
|
.q-spacer {
|
|
1938
1939
|
flex: 1 1 0;
|
|
1939
1940
|
}
|
|
1941
|
+
.q-group-box {
|
|
1942
|
+
$this: &;
|
|
1943
|
+
display: inline-block;
|
|
1944
|
+
word-wrap: break-word;
|
|
1945
|
+
background-color: var(--q-theme-container);
|
|
1946
|
+
border-width: 1px;
|
|
1947
|
+
border-bottom: $group-border-bottom;
|
|
1948
|
+
padding: 0.5rem 1rem 1rem;
|
|
1949
|
+
border-radius: var(--border-radius);
|
|
1950
|
+
position: relative;
|
|
1951
|
+
max-width: 100%;
|
|
1952
|
+
&:focus-visible {
|
|
1953
|
+
outline: $outline;
|
|
1954
|
+
border-radius: var(--border-radius);
|
|
1955
|
+
}
|
|
1956
|
+
&__title {
|
|
1957
|
+
font-size: 1.2rem;
|
|
1958
|
+
line-height: 1rem;
|
|
1959
|
+
letter-spacing: 0.02rem;
|
|
1960
|
+
color: var(--q-theme-primary);
|
|
1961
|
+
text-transform: $headings-text-transform;
|
|
1962
|
+
margin: 0;
|
|
1963
|
+
margin-top: 0.25rem;
|
|
1964
|
+
display: flex;
|
|
1965
|
+
align-items: flex-start;
|
|
1966
|
+
width: fit-content;
|
|
1967
|
+
gap: 0.25rem;
|
|
1968
|
+
margin-bottom: 0.5rem;
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1971
|
+
&--background {
|
|
1972
|
+
background-color: rgb(var(--q-theme-primary-light-rgb) / 50%);
|
|
1973
|
+
padding: 0.5rem 1rem 1rem;
|
|
1974
|
+
}
|
|
1975
|
+
&--minor {
|
|
1976
|
+
background-color: transparent;
|
|
1977
|
+
border: none;
|
|
1978
|
+
border-radius: 0;
|
|
1979
|
+
padding: 0.5rem 0 0;
|
|
1980
|
+
}
|
|
1981
|
+
&--minor-border-top {
|
|
1982
|
+
background-color: transparent;
|
|
1983
|
+
border: none;
|
|
1984
|
+
border-top: 1px solid var(--q-theme-neutral-light);
|
|
1985
|
+
border-radius: 0;
|
|
1986
|
+
margin-top: 0.5rem;
|
|
1987
|
+
padding: 0.25rem 0;
|
|
1988
|
+
}
|
|
1989
|
+
&--minor,
|
|
1990
|
+
&--minor-border-top {
|
|
1991
|
+
#{$this}__title {
|
|
1992
|
+
font-size: 0.9rem;
|
|
1993
|
+
line-height: 1;
|
|
1994
|
+
letter-spacing: initial;
|
|
1995
|
+
color: var(--q-theme-neutral-dark);
|
|
1996
|
+
text-transform: none;
|
|
1997
|
+
font-weight: 600;
|
|
1998
|
+
margin-bottom: 0.25rem;
|
|
1999
|
+
margin-top: 0.25rem;
|
|
2000
|
+
}
|
|
2001
|
+
}
|
|
2002
|
+
&--title-background {
|
|
2003
|
+
padding: 0 !important;
|
|
2004
|
+
&::before {
|
|
2005
|
+
position: absolute;
|
|
2006
|
+
top: 0;
|
|
2007
|
+
left: 0;
|
|
2008
|
+
height: 30px;
|
|
2009
|
+
width: 100%;
|
|
2010
|
+
content: '';
|
|
2011
|
+
background-color: rgb(var(--q-theme-neutral-light-rgb) / 25%);
|
|
2012
|
+
border-radius: var(--border-radius) var(--border-radius) 0 0;
|
|
2013
|
+
}
|
|
2014
|
+
#{$this}__title {
|
|
2015
|
+
padding: 0.5rem 1rem;
|
|
2016
|
+
margin: 0;
|
|
2017
|
+
font-size: 0.9rem;
|
|
2018
|
+
font-weight: 700;
|
|
2019
|
+
line-height: 1;
|
|
2020
|
+
letter-spacing: 0.01rem;
|
|
2021
|
+
color: var(--q-theme-on-background);
|
|
2022
|
+
text-transform: none;
|
|
2023
|
+
z-index: 10;
|
|
2024
|
+
position: relative;
|
|
2025
|
+
}
|
|
2026
|
+
> #{$this}__content {
|
|
2027
|
+
padding: 0.2rem 1rem 1rem;
|
|
2028
|
+
}
|
|
2029
|
+
}
|
|
2030
|
+
&--subsection {
|
|
2031
|
+
border: none;
|
|
2032
|
+
margin-left: 0.625rem;
|
|
2033
|
+
margin-bottom: 0.625rem;
|
|
2034
|
+
#{$this}__title {
|
|
2035
|
+
font-size: 0.9rem;
|
|
2036
|
+
line-height: 1;
|
|
2037
|
+
letter-spacing: initial;
|
|
2038
|
+
background-color: transparent;
|
|
2039
|
+
color: var(--q-theme-neutral-dark);
|
|
2040
|
+
text-transform: none;
|
|
2041
|
+
font-weight: 600;
|
|
2042
|
+
margin-bottom: 0.25rem;
|
|
2043
|
+
}
|
|
2044
|
+
}
|
|
2045
|
+
|
|
2046
|
+
&--borderless {
|
|
2047
|
+
border-color: transparent;
|
|
2048
|
+
margin: 0;
|
|
2049
|
+
padding: 0;
|
|
2050
|
+
background-color: transparent;
|
|
2051
|
+
}
|
|
2052
|
+
&--block {
|
|
2053
|
+
width: 100%;
|
|
2054
|
+
}
|
|
2055
|
+
}
|
|
1940
2056
|
.q-icon {
|
|
1941
2057
|
display: inline-block;
|
|
1942
2058
|
color: var(--q-theme-primary);
|
|
@@ -2598,7 +2714,7 @@ $base-border: 1px solid rgb(var(--q-theme-neutral-light-rgb) / 50%);
|
|
|
2598
2714
|
width: 100%;
|
|
2599
2715
|
#{$this}__badge {
|
|
2600
2716
|
&-count {
|
|
2601
|
-
font-weight:
|
|
2717
|
+
font-weight: $font-weight-black;
|
|
2602
2718
|
}
|
|
2603
2719
|
&-hidden {
|
|
2604
2720
|
visibility: hidden;
|
|
@@ -2606,6 +2722,7 @@ $base-border: 1px solid rgb(var(--q-theme-neutral-light-rgb) / 50%);
|
|
|
2606
2722
|
}
|
|
2607
2723
|
.q-badge__content {
|
|
2608
2724
|
height: 0.85em;
|
|
2725
|
+
white-space: nowrap;
|
|
2609
2726
|
}
|
|
2610
2727
|
}
|
|
2611
2728
|
&__placeholder {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QCol.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QGrid/QCol.vue"],"names":[],"mappings":"AAKA;
|
|
1
|
+
{"version":3,"file":"QCol.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QGrid/QCol.vue"],"names":[],"mappings":"AAKA;AA6DC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AA+CzC,iBAAS,cAAc;WAuBT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AASD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,ySAOnB,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,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as c, computed as
|
|
1
|
+
import { defineComponent as c, computed as s, createElementBlock as u, openBlock as a, normalizeClass as d, renderSlot as m } from "vue";
|
|
2
2
|
import { provideDefaults as i } from "../../composables/defaults.js";
|
|
3
3
|
const p = /* @__PURE__ */ c({
|
|
4
4
|
__name: "QCol",
|
|
@@ -11,7 +11,7 @@ const p = /* @__PURE__ */ c({
|
|
|
11
11
|
xxl: {}
|
|
12
12
|
},
|
|
13
13
|
setup(n) {
|
|
14
|
-
const e = n, r =
|
|
14
|
+
const e = n, r = s(() => [
|
|
15
15
|
"q-col",
|
|
16
16
|
o("", e.cols),
|
|
17
17
|
o("sm", e.sm),
|
|
@@ -20,21 +20,24 @@ const p = /* @__PURE__ */ c({
|
|
|
20
20
|
o("xl", e.xl),
|
|
21
21
|
o("xxl", e.xxl)
|
|
22
22
|
].filter(Boolean));
|
|
23
|
-
function o(l,
|
|
24
|
-
if (
|
|
25
|
-
return
|
|
23
|
+
function o(l, t) {
|
|
24
|
+
if (t)
|
|
25
|
+
return t === "auto" ? `q-col${l ? `-${l}` : ""}-auto` : `q-col${l ? `-${l}` : ""}-${t}`;
|
|
26
26
|
}
|
|
27
27
|
return i({
|
|
28
|
+
QGroupBox: {
|
|
29
|
+
block: s(() => e.cols === "auto" ? void 0 : !0)
|
|
30
|
+
},
|
|
28
31
|
QField: {
|
|
29
|
-
size:
|
|
32
|
+
size: s(() => e.cols === "auto" ? void 0 : "block")
|
|
30
33
|
}
|
|
31
|
-
}), (l,
|
|
34
|
+
}), (l, t) => (a(), u(
|
|
32
35
|
"div",
|
|
33
36
|
{
|
|
34
|
-
class:
|
|
37
|
+
class: d(r.value)
|
|
35
38
|
},
|
|
36
39
|
[
|
|
37
|
-
|
|
40
|
+
m(l.$slots, "default")
|
|
38
41
|
],
|
|
39
42
|
2
|
|
40
43
|
/* CLASS */
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { QGroupBoxProps } from './types';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {};
|
|
8
|
+
rootEl: HTMLDivElement;
|
|
9
|
+
};
|
|
10
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
+
declare const __VLS_component: import('vue').DefineComponent<QGroupBoxProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<QGroupBoxProps> & Readonly<{}>, {
|
|
12
|
+
variant: import('./types').QGroupBoxVariant;
|
|
13
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
14
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
15
|
+
export default _default;
|
|
16
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
17
|
+
new (): {
|
|
18
|
+
$slots: S;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
//# sourceMappingURL=QGroupBox.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"QGroupBox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QGroupBox/QGroupBox.vue"],"names":[],"mappings":"AAcA;AA6CC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AA+B9C,iBAAS,cAAc;WAkCT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAUD,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"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { defineComponent as l, computed as n, createElementBlock as t, openBlock as s, normalizeClass as i, createCommentVNode as c, createElementVNode as d, toDisplayString as p, renderSlot as u } from "vue";
|
|
2
|
+
const _ = ["id"], b = {
|
|
3
|
+
key: 0,
|
|
4
|
+
class: "q-group-box__title"
|
|
5
|
+
}, m = { class: "q-group-box__content" }, x = /* @__PURE__ */ l({
|
|
6
|
+
__name: "QGroupBox",
|
|
7
|
+
props: {
|
|
8
|
+
id: {},
|
|
9
|
+
class: {},
|
|
10
|
+
title: {},
|
|
11
|
+
borderless: { type: Boolean },
|
|
12
|
+
variant: { default: "default" },
|
|
13
|
+
block: { type: Boolean }
|
|
14
|
+
},
|
|
15
|
+
setup(r) {
|
|
16
|
+
const e = r, a = n(() => [
|
|
17
|
+
"q-group-box",
|
|
18
|
+
e.variant === "default" ? void 0 : `q-group-box--${e.variant}`,
|
|
19
|
+
{
|
|
20
|
+
"q-group-box--block": e.block,
|
|
21
|
+
"q-group-box--borderless": e.borderless
|
|
22
|
+
},
|
|
23
|
+
e.class
|
|
24
|
+
]);
|
|
25
|
+
return (o, f) => (s(), t("div", {
|
|
26
|
+
id: e.id,
|
|
27
|
+
class: i(a.value)
|
|
28
|
+
}, [
|
|
29
|
+
e.title ? (s(), t(
|
|
30
|
+
"div",
|
|
31
|
+
b,
|
|
32
|
+
p(e.title),
|
|
33
|
+
1
|
|
34
|
+
/* TEXT */
|
|
35
|
+
)) : c("v-if", !0),
|
|
36
|
+
d("div", m, [
|
|
37
|
+
u(o.$slots, "default")
|
|
38
|
+
])
|
|
39
|
+
], 10, _));
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
export {
|
|
43
|
+
x as default
|
|
44
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
declare const QGroupBox: {
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./types').QGroupBoxProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
3
|
+
variant: import('./types').QGroupBoxVariant;
|
|
4
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
5
|
+
P: {};
|
|
6
|
+
B: {};
|
|
7
|
+
D: {};
|
|
8
|
+
C: {};
|
|
9
|
+
M: {};
|
|
10
|
+
Defaults: {};
|
|
11
|
+
}, Readonly<import('./types').QGroupBoxProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
12
|
+
variant: import('./types').QGroupBoxVariant;
|
|
13
|
+
}>;
|
|
14
|
+
__isFragment?: never;
|
|
15
|
+
__isTeleport?: never;
|
|
16
|
+
__isSuspense?: never;
|
|
17
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('./types').QGroupBoxProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
18
|
+
variant: import('./types').QGroupBoxVariant;
|
|
19
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
20
|
+
$slots: {
|
|
21
|
+
default?(_: {}): any;
|
|
22
|
+
};
|
|
23
|
+
});
|
|
24
|
+
export { QGroupBox };
|
|
25
|
+
export * from './types';
|
|
26
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/QGroupBox/index.ts"],"names":[],"mappings":"AAMA,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;EAA8B,CAAA;AAG7C,OAAO,EAAE,SAAS,EAAE,CAAA;AAGpB,cAAc,SAAS,CAAA"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { QBaseComponentProps } from '../../types/component';
|
|
2
|
+
/**
|
|
3
|
+
* QGroupBox visual style variants.
|
|
4
|
+
*/
|
|
5
|
+
export type QGroupBoxVariant = 'default' | 'background' | 'minor' | 'minor-border-top' | 'title-background';
|
|
6
|
+
export type QGroupBoxProps = QBaseComponentProps & {
|
|
7
|
+
/**
|
|
8
|
+
* The title of the group box.
|
|
9
|
+
*
|
|
10
|
+
* @category Content
|
|
11
|
+
*/
|
|
12
|
+
title?: string;
|
|
13
|
+
/**
|
|
14
|
+
* If true, the group box has no borders.
|
|
15
|
+
*
|
|
16
|
+
* @category Presentation
|
|
17
|
+
*/
|
|
18
|
+
borderless?: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* The styling variant of the group box.
|
|
21
|
+
*
|
|
22
|
+
* @category Presentation
|
|
23
|
+
*/
|
|
24
|
+
variant?: QGroupBoxVariant;
|
|
25
|
+
/**
|
|
26
|
+
* If true, the group box spans the full width of its container.
|
|
27
|
+
*
|
|
28
|
+
* @category Presentation
|
|
29
|
+
*/
|
|
30
|
+
block?: boolean;
|
|
31
|
+
};
|
|
32
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/QGroupBox/types.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAEhE;;GAEG;AACH,MAAM,MAAM,gBAAgB,GACzB,SAAS,GACT,YAAY,GACZ,OAAO,GACP,kBAAkB,GAClB,kBAAkB,CAAA;AAErB,MAAM,MAAM,cAAc,GAAG,mBAAmB,GAAG;IAClD;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;;;OAIG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;IAEpB;;;;OAIG;IACH,OAAO,CAAC,EAAE,gBAAgB,CAAA;IAE1B;;;;OAIG;IACH,KAAK,CAAC,EAAE,OAAO,CAAA;CACf,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QList.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QList/QList.vue"],"names":[],"mappings":"AA8CA;
|
|
1
|
+
{"version":3,"file":"QList.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QList/QList.vue"],"names":[],"mappings":"AA8CA;AAmcC,OAAO,KAAK,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;AA8OhD,iBAAS,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,WAAW,GAAG,SAAS,CAIrD;AAED;;;;GAIG;AACH,iBAAS,kBAAkB,IAAI,MAAM,CAIpC;AAED;;;;;;GAMG;AACH,iBAAS,0BAA0B,IAAI,MAAM,CAO5C;AAED;;;;;;GAMG;AACH,iBAAS,yBAAyB,IAAI,MAAM,CAO3C;AAmCD;;;;;;;;GAQG;AACH,iBAAS,oBAAoB,CAAC,GAAG,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,CAuB7E;AAyDF,iBAAS,cAAc;WA0IT,OAAO,IAA6B;;yBAdpB,GAAG;;;;YACN,GAAG;;;;YACM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCA3FoD,GAAG,8CAE9F,GAAE,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;EA0GnE;AAuBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCApIsE,GAAG,8CAE9F,GAAE,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;OA6IlE,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"}
|
|
@@ -147,13 +147,9 @@ const oe = /* @__PURE__ */ N({
|
|
|
147
147
|
var t;
|
|
148
148
|
return e ? (t = n.items) == null ? void 0 : t.filter((l) => l.group === e) : n.items;
|
|
149
149
|
}
|
|
150
|
-
return X(
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
g("update:modelValue", e);
|
|
154
|
-
},
|
|
155
|
-
{ deep: !0 }
|
|
156
|
-
), G({
|
|
150
|
+
return X(r, (e) => {
|
|
151
|
+
g("update:modelValue", e);
|
|
152
|
+
}), G({
|
|
157
153
|
getItem: P,
|
|
158
154
|
getActiveItemIndex: _,
|
|
159
155
|
getAdjacentItemIndex: D,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QSelect.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QSelect/QSelect.vue"],"names":[],"mappings":"AAmMA;
|
|
1
|
+
{"version":3,"file":"QSelect.vue.d.ts","sourceRoot":"","sources":["../../../src/components/QSelect/QSelect.vue"],"names":[],"mappings":"AAmMA;AA4hBC,OAAO,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAe1D,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,UAAU,CAAA;AACpC,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAG3C,OAAO,EAAY,QAAQ,EAAgD,MAAM,KAAK,CAAA;AAMtF,KAAK,WAAW,GAAG,YAAY,CAAC;AAsUjC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,GAAG,CAAC;CAChB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WA4dT,OAAO,IAA6B;;yBArBpB,GAAG;wBACJ,GAAG;wBACH,GAAG;gCACK,GAAG;;;YACZ,GAAG;+BACM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAtWX,GAAG,8CACrB,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCADnD,GAAG,8CACrB,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gDADnD,GAAG,8CACrB,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCADnD,GAAG,8CACrB,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0X/E;AAoCD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAhaQ,GAAG,8CACrB,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCADnD,GAAG,8CACrB,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CADnD,GAAG,8CACrB,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCADnD,GAAG,8CACrB,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAwa9E,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"}
|