eco-vue-js 0.10.33 → 0.10.35
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/components/Button/WButtonAction.vue.js +1 -1
- package/dist/components/Button/WButtonDropdown.vue.d.ts +2 -2
- package/dist/components/Button/WButtonDropdown.vue.d.ts.map +1 -1
- package/dist/components/Button/WButtonDropdown.vue.js +1 -0
- package/dist/components/Button/WButtonGroup.vue.js +1 -0
- package/dist/components/Button/WButtonMore.vue.d.ts +11 -4
- package/dist/components/Button/WButtonMore.vue.d.ts.map +1 -1
- package/dist/components/Button/WButtonMore.vue.js +35 -15
- package/dist/components/Button/WButtonMoreItem.vue.d.ts +5 -6
- package/dist/components/Button/WButtonMoreItem.vue.d.ts.map +1 -1
- package/dist/components/Button/WButtonMoreItem.vue.js +11 -6
- package/dist/components/Checkbox/WCheckboxGroup.vue.js +1 -0
- package/dist/components/ClickOutside/WClickOutside.vue.d.ts +6 -3
- package/dist/components/ClickOutside/WClickOutside.vue.d.ts.map +1 -1
- package/dist/components/ClickOutside/WClickOutside.vue.js +9 -1
- package/dist/components/Dropdown/WDropdown.vue.d.ts +2 -0
- package/dist/components/Dropdown/WDropdown.vue.d.ts.map +1 -1
- package/dist/components/Dropdown/WDropdown.vue.js +6 -2
- package/dist/components/Dropdown/utils/DropdownStyle.d.ts +36 -1
- package/dist/components/Dropdown/utils/DropdownStyle.d.ts.map +1 -1
- package/dist/components/Dropdown/utils/DropdownStyle.js +1 -1
- package/dist/components/DropdownMenu/WDropdownMenu.vue.d.ts +10 -7
- package/dist/components/DropdownMenu/WDropdownMenu.vue.d.ts.map +1 -1
- package/dist/components/DropdownMenu/WDropdownMenu.vue.js +24 -33
- package/dist/components/DropdownMenu/types.d.ts +1 -0
- package/dist/components/DropdownMenu/types.d.ts.map +1 -1
- package/dist/components/FieldWrapper/WFieldWrapper.vue.d.ts +5 -1
- package/dist/components/FieldWrapper/WFieldWrapper.vue.d.ts.map +1 -1
- package/dist/components/FieldWrapper/WFieldWrapper.vue.js +13 -7
- package/dist/components/FieldWrapper/types.d.ts +1 -0
- package/dist/components/FieldWrapper/types.d.ts.map +1 -1
- package/dist/components/FormAsync/WFormAsyncButtonGroup.vue.js +1 -0
- package/dist/components/FormAsync/WFormAsyncCheckboxGroup.vue.js +1 -0
- package/dist/components/FormAsync/WFormAsyncInput.vue.js +3 -1
- package/dist/components/FormAsync/WFormAsyncSelect.vue.js +4 -1
- package/dist/components/FormAsync/WFormAsyncSelectInfiniteSingle.vue.js +4 -1
- package/dist/components/FormAsync/WFormAsyncSelectSingle.vue.js +4 -1
- package/dist/components/FormAsync/WFormAsyncSelectStringified.vue.js +4 -1
- package/dist/components/HeaderBar/WHeaderBar.vue.d.ts +2 -0
- package/dist/components/HeaderBar/WHeaderBar.vue.d.ts.map +1 -1
- package/dist/components/Input/WInput.vue.d.ts +1 -0
- package/dist/components/Input/WInput.vue.d.ts.map +1 -1
- package/dist/components/Input/WInput.vue.js +32 -15
- package/dist/components/Input/WInputAsync.vue.js +4 -2
- package/dist/components/Input/WInputDate.vue.js +4 -1
- package/dist/components/Input/WInputOptions.vue.js +4 -1
- package/dist/components/Input/WInputSuggest.vue.d.ts +2 -2
- package/dist/components/Input/WInputSuggest.vue.d.ts.map +1 -1
- package/dist/components/Input/WInputSuggest.vue.js +102 -110
- package/dist/components/Input/types.d.ts +2 -1
- package/dist/components/Input/types.d.ts.map +1 -1
- package/dist/components/List/WList.vue.d.ts +8 -3
- package/dist/components/List/WList.vue.d.ts.map +1 -1
- package/dist/components/List/WList.vue.js +7 -4
- package/dist/components/List/WListCard.vue.d.ts +143 -0
- package/dist/components/List/WListCard.vue.d.ts.map +1 -1
- package/dist/components/List/WListCard.vue.js +41 -15
- package/dist/components/List/types.d.ts +8 -0
- package/dist/components/List/types.d.ts.map +1 -1
- package/dist/components/MenuItem/WMenuItem.vue.d.ts +5 -5
- package/dist/components/MenuItem/WMenuItem.vue.d.ts.map +1 -1
- package/dist/components/MenuItem/WMenuItem.vue.js +16 -8
- package/dist/components/Select/WSelect.vue.js +5 -2
- package/dist/components/Select/WSelectAsync.vue.js +5 -2
- package/dist/components/Select/WSelectAsyncSingle.vue.js +4 -1
- package/dist/components/Select/WSelectSingle.vue.js +4 -1
- package/dist/components/Select/WSelectStringified.vue.js +4 -1
- package/dist/utils/useDefaultQuery.d.ts.map +1 -1
- package/dist/utils/useDefaultQuery.js +0 -1
- package/package.json +1 -1
@@ -17,16 +17,20 @@ declare function __VLS_template(): {
|
|
17
17
|
right?(_: {}): any;
|
18
18
|
};
|
19
19
|
refs: {
|
20
|
+
field: HTMLDivElement;
|
20
21
|
rightContainer: HTMLDivElement;
|
21
22
|
};
|
22
23
|
rootEl: any;
|
23
24
|
};
|
24
25
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
25
|
-
declare const __VLS_component: import('vue').DefineComponent<FieldWrapperProps, {
|
26
|
+
declare const __VLS_component: import('vue').DefineComponent<FieldWrapperProps, {
|
27
|
+
fieldRef: Readonly<import('vue').ShallowRef<HTMLDivElement | null>>;
|
28
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
26
29
|
click: (value: MouseEvent) => any;
|
27
30
|
}, string, import('vue').PublicProps, Readonly<FieldWrapperProps> & Readonly<{
|
28
31
|
onClick?: ((value: MouseEvent) => any) | undefined;
|
29
32
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
33
|
+
field: HTMLDivElement;
|
30
34
|
rightContainer: HTMLDivElement;
|
31
35
|
}, any>;
|
32
36
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"WFieldWrapper.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/FieldWrapper/WFieldWrapper.vue"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"WFieldWrapper.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/FieldWrapper/WFieldWrapper.vue"],"names":[],"mappings":"AAiLA;AA8NA,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,SAAS,CAAA;AAgD9C,iBAAS,cAAc;WA2RT,OAAO,IAA6B;;uBAhBvB,GAAG;0BACC,GAAG;;;gCAzRP,OAAO,KAAG,IAAI;;YA0Rb,GAAG;;;gCA1RJ,OAAO,KAAG,IAAI;;YA2RX,GAAG;uBACL,GAAG;;;;;;;EAiB9B;AAmBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;OASnB,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, useId, ref, computed, createElementBlock, openBlock, mergeProps, createCommentVNode, renderSlot, createElementVNode, createBlock, normalizeClass, unref, Fragment, createVNode, createTextVNode, resolveDynamicComponent, toDisplayString, Transition, withCtx, normalizeProps, guardReactiveProps } from 'vue';
|
1
|
+
import { defineComponent, useId, useTemplateRef, ref, computed, createElementBlock, openBlock, mergeProps, createCommentVNode, renderSlot, createElementVNode, createBlock, normalizeClass, unref, readonly, Fragment, createVNode, createTextVNode, resolveDynamicComponent, toDisplayString, Transition, withCtx, normalizeProps, guardReactiveProps } from 'vue';
|
2
2
|
import _sfc_main$2 from '../Button/WButtonCopy.vue.js';
|
3
3
|
import WSkeleton from '../Skeleton/WSkeleton.vue.js';
|
4
4
|
import _sfc_main$3 from '../Tooltip/WTooltip.vue.js';
|
@@ -48,12 +48,14 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
48
48
|
leftError: { type: Boolean },
|
49
49
|
filterField: {},
|
50
50
|
filterValue: {},
|
51
|
-
subgrid: { type: Boolean }
|
51
|
+
subgrid: { type: Boolean },
|
52
|
+
seamless: { type: Boolean }
|
52
53
|
},
|
53
54
|
emits: ["click"],
|
54
|
-
setup(__props) {
|
55
|
+
setup(__props, { expose: __expose }) {
|
55
56
|
const props = __props;
|
56
57
|
const id = useId();
|
58
|
+
const fieldRef = useTemplateRef("field");
|
57
59
|
const focused = ref(false);
|
58
60
|
const encodedQueryParam = computed(() => {
|
59
61
|
if (props.filterField === void 0) return void 0;
|
@@ -62,8 +64,11 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
62
64
|
const setFocused = (value) => {
|
63
65
|
focused.value = value;
|
64
66
|
};
|
67
|
+
__expose({
|
68
|
+
fieldRef
|
69
|
+
});
|
65
70
|
return (_ctx, _cache) => {
|
66
|
-
return openBlock(), createElementBlock("div", mergeProps({ class: "relative" }, { class: _ctx.$attrs.class, style: _ctx.$attrs.style }, {
|
71
|
+
return openBlock(), createElementBlock("div", mergeProps({ class: "group/field relative" }, { class: _ctx.$attrs.class, style: _ctx.$attrs.style }, {
|
67
72
|
class: {
|
68
73
|
"mb-[1.125rem] mt-1": !_ctx.noMargin && !_ctx.subgrid,
|
69
74
|
"col-span-full grid grid-cols-subgrid": _ctx.subgrid
|
@@ -74,7 +79,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
74
79
|
key: 0,
|
75
80
|
for: unref(id),
|
76
81
|
class: normalizeClass(["text-accent relative block pr-6 text-xs font-semibold leading-loose", {
|
77
|
-
"cursor-not-allowed opacity-50": _ctx.disabled && !
|
82
|
+
"cursor-not-allowed opacity-50": _ctx.disabled && !readonly && !_ctx.skeleton,
|
78
83
|
"col-start-1": _ctx.subgrid
|
79
84
|
}])
|
80
85
|
}, [
|
@@ -107,6 +112,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
107
112
|
], 10, _hoisted_1)) : createCommentVNode("", true),
|
108
113
|
renderSlot(_ctx.$slots, "subtitle"),
|
109
114
|
createElementVNode("div", {
|
115
|
+
ref: "field",
|
110
116
|
class: normalizeClass(["grid", {
|
111
117
|
"pr-9": !_ctx.title && !_ctx.$slots.title && _ctx.filterField,
|
112
118
|
"col-start-2 -col-end-1 row-start-1 -row-end-3 grid-cols-subgrid": _ctx.subgrid,
|
@@ -184,7 +190,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
184
190
|
_ctx.description ? (openBlock(), createElementBlock("div", {
|
185
191
|
key: 1,
|
186
192
|
class: normalizeClass(["text-description col-start-1 whitespace-pre-wrap text-pretty break-words text-xs font-normal", {
|
187
|
-
"opacity-50": _ctx.disabled && !
|
193
|
+
"opacity-50": _ctx.disabled && !readonly && !_ctx.skeleton,
|
188
194
|
"pt-4": !_ctx.subgrid
|
189
195
|
}])
|
190
196
|
}, [
|
@@ -192,7 +198,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
192
198
|
createTextVNode(toDisplayString(_ctx.description), 1)
|
193
199
|
], 64))
|
194
200
|
], 2)) : createCommentVNode("", true),
|
195
|
-
_ctx.tooltipText && !_ctx.skeleton && !
|
201
|
+
_ctx.tooltipText && !_ctx.skeleton && !readonly ? (openBlock(), createBlock(_sfc_main$3, {
|
196
202
|
key: 2,
|
197
203
|
text: _ctx.tooltipText
|
198
204
|
}, null, 8, ["text"])) : createCommentVNode("", true)
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/FieldWrapper/types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,iBAAiB;IAChC,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,IAAI,CAAA;IAC7C,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,SAAS,CAAC,EAAE,YAAY,CAAA;IACxB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,OAAO,CAAC,EAAE,OAAO,CAAA;
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/FieldWrapper/types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,iBAAiB;IAChC,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,IAAI,CAAA;IAC7C,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,SAAS,CAAC,EAAE,YAAY,CAAA;IACxB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB"}
|
@@ -23,7 +23,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
23
23
|
autocomplete: {},
|
24
24
|
autofocus: { type: Boolean },
|
25
25
|
readonly: { type: Boolean },
|
26
|
-
unclickable: { type: Boolean },
|
26
|
+
unclickable: { type: [Boolean, null] },
|
27
27
|
disabledActions: { type: Boolean },
|
28
28
|
loading: { type: Boolean },
|
29
29
|
spellcheck: { type: Boolean },
|
@@ -32,6 +32,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
32
32
|
allowClear: { type: Boolean },
|
33
33
|
allowPaste: { type: Boolean },
|
34
34
|
hideInput: { type: Boolean },
|
35
|
+
noWrap: { type: Boolean },
|
35
36
|
title: {},
|
36
37
|
titleIcon: {},
|
37
38
|
description: {},
|
@@ -50,6 +51,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
50
51
|
filterField: {},
|
51
52
|
filterValue: {},
|
52
53
|
subgrid: { type: Boolean },
|
54
|
+
seamless: { type: Boolean },
|
53
55
|
useQueryFn: {},
|
54
56
|
noParams: { type: Boolean },
|
55
57
|
queryParams: {},
|
@@ -32,7 +32,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
32
32
|
autocomplete: {},
|
33
33
|
autofocus: { type: Boolean },
|
34
34
|
readonly: { type: Boolean },
|
35
|
-
unclickable: { type: Boolean },
|
35
|
+
unclickable: { type: [Boolean, null] },
|
36
36
|
disabledActions: { type: Boolean },
|
37
37
|
loading: { type: Boolean },
|
38
38
|
spellcheck: { type: Boolean },
|
@@ -40,6 +40,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
40
40
|
textSecure: { type: Boolean },
|
41
41
|
placeholderSecure: { type: Boolean },
|
42
42
|
allowPaste: { type: Boolean },
|
43
|
+
noWrap: { type: Boolean },
|
43
44
|
title: {},
|
44
45
|
titleIcon: {},
|
45
46
|
description: {},
|
@@ -58,9 +59,11 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
58
59
|
filterField: {},
|
59
60
|
filterValue: {},
|
60
61
|
subgrid: { type: Boolean },
|
62
|
+
seamless: { type: Boolean },
|
61
63
|
teleport: { type: Boolean },
|
62
64
|
noZIndex: { type: Boolean },
|
63
65
|
zIndex: {},
|
66
|
+
parentElement: {},
|
64
67
|
maxHeight: {},
|
65
68
|
maxWidth: {},
|
66
69
|
horizontalAlign: {},
|
@@ -37,7 +37,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
37
37
|
autocomplete: {},
|
38
38
|
autofocus: { type: Boolean },
|
39
39
|
readonly: { type: Boolean },
|
40
|
-
unclickable: { type: Boolean },
|
40
|
+
unclickable: { type: [Boolean, null] },
|
41
41
|
disabledActions: { type: Boolean },
|
42
42
|
loading: { type: Boolean },
|
43
43
|
spellcheck: { type: Boolean },
|
@@ -45,6 +45,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
45
45
|
textSecure: { type: Boolean },
|
46
46
|
placeholderSecure: { type: Boolean },
|
47
47
|
allowPaste: { type: Boolean },
|
48
|
+
noWrap: { type: Boolean },
|
48
49
|
title: {},
|
49
50
|
titleIcon: {},
|
50
51
|
description: {},
|
@@ -63,9 +64,11 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
63
64
|
filterField: {},
|
64
65
|
filterValue: {},
|
65
66
|
subgrid: { type: Boolean },
|
67
|
+
seamless: { type: Boolean },
|
66
68
|
teleport: { type: Boolean },
|
67
69
|
noZIndex: { type: Boolean },
|
68
70
|
zIndex: {},
|
71
|
+
parentElement: {},
|
69
72
|
maxHeight: {},
|
70
73
|
maxWidth: {},
|
71
74
|
horizontalAlign: {},
|
@@ -33,7 +33,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
33
33
|
autocomplete: {},
|
34
34
|
autofocus: { type: Boolean },
|
35
35
|
readonly: { type: Boolean },
|
36
|
-
unclickable: { type: Boolean },
|
36
|
+
unclickable: { type: [Boolean, null] },
|
37
37
|
disabledActions: { type: Boolean },
|
38
38
|
loading: { type: Boolean },
|
39
39
|
spellcheck: { type: Boolean },
|
@@ -41,6 +41,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
41
41
|
textSecure: { type: Boolean },
|
42
42
|
placeholderSecure: { type: Boolean },
|
43
43
|
allowPaste: { type: Boolean },
|
44
|
+
noWrap: { type: Boolean },
|
44
45
|
title: {},
|
45
46
|
titleIcon: {},
|
46
47
|
description: {},
|
@@ -59,9 +60,11 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
59
60
|
filterField: {},
|
60
61
|
filterValue: {},
|
61
62
|
subgrid: { type: Boolean },
|
63
|
+
seamless: { type: Boolean },
|
62
64
|
teleport: { type: Boolean },
|
63
65
|
noZIndex: { type: Boolean },
|
64
66
|
zIndex: {},
|
67
|
+
parentElement: {},
|
65
68
|
maxHeight: {},
|
66
69
|
maxWidth: {},
|
67
70
|
horizontalAlign: {},
|
@@ -33,7 +33,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
33
33
|
autocomplete: {},
|
34
34
|
autofocus: { type: Boolean },
|
35
35
|
readonly: { type: Boolean },
|
36
|
-
unclickable: { type: Boolean },
|
36
|
+
unclickable: { type: [Boolean, null] },
|
37
37
|
disabledActions: { type: Boolean },
|
38
38
|
loading: { type: Boolean },
|
39
39
|
spellcheck: { type: Boolean },
|
@@ -41,6 +41,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
41
41
|
textSecure: { type: Boolean },
|
42
42
|
placeholderSecure: { type: Boolean },
|
43
43
|
allowPaste: { type: Boolean },
|
44
|
+
noWrap: { type: Boolean },
|
44
45
|
title: {},
|
45
46
|
titleIcon: {},
|
46
47
|
description: {},
|
@@ -59,9 +60,11 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
59
60
|
filterField: {},
|
60
61
|
filterValue: {},
|
61
62
|
subgrid: { type: Boolean },
|
63
|
+
seamless: { type: Boolean },
|
62
64
|
teleport: { type: Boolean },
|
63
65
|
noZIndex: { type: Boolean },
|
64
66
|
zIndex: {},
|
67
|
+
parentElement: {},
|
65
68
|
maxHeight: {},
|
66
69
|
maxWidth: {},
|
67
70
|
horizontalAlign: {},
|
@@ -15,6 +15,7 @@ declare function __VLS_template(): {
|
|
15
15
|
input: import('vue').ShallowUnwrapRef<{
|
16
16
|
focus: () => void;
|
17
17
|
blur: () => void;
|
18
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
18
19
|
}> | null;
|
19
20
|
};
|
20
21
|
rootEl: HTMLDivElement;
|
@@ -32,6 +33,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
32
33
|
input: import('vue').ShallowUnwrapRef<{
|
33
34
|
focus: () => void;
|
34
35
|
blur: () => void;
|
36
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
35
37
|
}> | null;
|
36
38
|
}, HTMLDivElement>;
|
37
39
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"WHeaderBar.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/HeaderBar/WHeaderBar.vue"],"names":[],"mappings":"AAsFA;AA2KA,KAAK,WAAW,GAAG;IACf,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,aAAa,CAAC,EAAE,OAAO,CAAA;CACxB,CAAC;AA+DJ,iBAAS,cAAc;WA+LT,OAAO,IAA6B;;uBAdvB,GAAG;wBACD,GAAG;wBACH,GAAG
|
1
|
+
{"version":3,"file":"WHeaderBar.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/HeaderBar/WHeaderBar.vue"],"names":[],"mappings":"AAsFA;AA2KA,KAAK,WAAW,GAAG;IACf,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,aAAa,CAAC,EAAE,OAAO,CAAA;CACxB,CAAC;AA+DJ,iBAAS,cAAc;WA+LT,OAAO,IAA6B;;uBAdvB,GAAG;wBACD,GAAG;wBACH,GAAG;;;;;;;;;;;EAiB/B;AAqBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;WA5RT,MAAM;YACL,MAAM;;;;;;;;kBAqSjB,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"}
|
@@ -4,6 +4,7 @@ declare const _default: <Type extends InputType = "text">(__VLS_props: NonNullab
|
|
4
4
|
expose(exposed: import('vue').ShallowUnwrapRef<{
|
5
5
|
focus: () => void;
|
6
6
|
blur: () => void;
|
7
|
+
fieldRef: import('vue').ComputedRef<HTMLDivElement | null | undefined>;
|
7
8
|
}>): void;
|
8
9
|
attrs: any;
|
9
10
|
slots: {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"WInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Input/WInput.vue"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"WInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Input/WInput.vue"],"names":[],"mappings":"AAoMA;AAqZA,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,SAAS,CAAA;yBAWtB,IAAI,SAAS,SAAS,GAAG,MAAM,EAC/C,aAAa,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,OAAO,CAAC,EAC9D,YAAY,mBAAmB,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC,CAAC,EAC3G,eAAe,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAC,EACjE;WA0mBO,mBAAmB,CAAC,oCAAkE,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB;qBAlgB7B,IAAI;oBAML,IAAI;;MA4fgD,GAAG,IAAI;WACpE,GAAG;;uBAlDgB,GAAG;0BACA,GAAG;wBACJ,GAAG;wBACH,GAAG;wBACH,GAAG;uBACJ,GAAG;wBACF,GAAG;uBACJ,GAAG;uBACH,GAAG;;;YAnjBzB,mBAAmB,SAAS,4CAAa,SAAS,GAAG,IAAI;YACzD,gBAAgB,SAAS,aAAa,GAAG,IAAI;YAC7C,aAAa,SAAS,aAAa,GAAG,IAAI;YAC1C,eAAe,SAAS,aAAa,GAAG,IAAI;YAC5C,iBAAiB,SAAS,aAAa,GAAG,IAAI;YAC9C,oBAAoB,SAAS,aAAa,GAAG,IAAI;YACjD,aAAa,GAAG,IAAI;YACpB,OAAO,SAAS,UAAU,GAAG,IAAI;YACjC,MAAM,SAAS,UAAU,GAAG,IAAI;YAChC,OAAO,SAAS,UAAU,GAAG,IAAI;YACjC,WAAW,SAAS,UAAU,GAAG,IAAI;YACrC,cAAc,SAAS,UAAU,GAAG,IAAI;YACxC,cAAc,SAAS,KAAK,GAAG,IAAI;YACnC,OAAO,GAAG,IAAI;;EAolBhB,KACQ,OAAO,KAAK,EAAE,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,WAAW,CAAC,CAAA;CAAE;AArnBzE,wBAqnB4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { defineComponent, useTemplateRef, ref, onMounted, onBeforeUnmount, createBlock, openBlock, mergeProps, createSlots, withCtx, renderSlot, createElementVNode, createElementBlock, createCommentVNode, normalizeClass, toDisplayString, withModifiers,
|
1
|
+
import { defineComponent, useTemplateRef, ref, onMounted, onBeforeUnmount, computed, createBlock, openBlock, mergeProps, createSlots, withCtx, renderSlot, createElementVNode, createElementBlock, createCommentVNode, normalizeClass, toDisplayString, withModifiers, resolveDynamicComponent, withKeys, unref, nextTick } from 'vue';
|
2
2
|
import _sfc_main$1 from '../FieldWrapper/WFieldWrapper.vue.js';
|
3
3
|
import { useTabActiveListener } from '../Tabs/use/useTabActiveListener.js';
|
4
4
|
import { Notify } from '../../utils/Notify.js';
|
@@ -24,7 +24,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
24
24
|
autocomplete: { default: "off" },
|
25
25
|
autofocus: { type: Boolean },
|
26
26
|
readonly: { type: Boolean },
|
27
|
-
unclickable: { type: Boolean },
|
27
|
+
unclickable: { type: [Boolean, null] },
|
28
28
|
disabledActions: { type: Boolean },
|
29
29
|
loading: { type: Boolean },
|
30
30
|
spellcheck: { type: Boolean },
|
@@ -34,6 +34,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
34
34
|
allowClear: { type: Boolean },
|
35
35
|
allowPaste: { type: Boolean },
|
36
36
|
hideInput: { type: Boolean },
|
37
|
+
noWrap: { type: Boolean },
|
37
38
|
title: {},
|
38
39
|
titleIcon: {},
|
39
40
|
description: {},
|
@@ -51,12 +52,15 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
51
52
|
leftError: { type: Boolean },
|
52
53
|
filterField: {},
|
53
54
|
filterValue: {},
|
54
|
-
subgrid: { type: Boolean }
|
55
|
+
subgrid: { type: Boolean },
|
56
|
+
seamless: { type: Boolean }
|
55
57
|
},
|
56
58
|
emits: ["update:modelValue", "keypress:enter", "keypress:up", "keypress:down", "keypress:delete", "keypress:backspace", "click:clear", "focus", "blur", "click", "mousedown", "click:suffix", "select:input", "paste"],
|
57
59
|
setup(__props, { expose: __expose, emit: __emit }) {
|
58
60
|
const props = __props;
|
59
61
|
const emit = __emit;
|
62
|
+
const fieldWrapperRef = useTemplateRef("fieldWrapper");
|
63
|
+
const contentRef = useTemplateRef("content");
|
60
64
|
const inputRef = useTemplateRef("input");
|
61
65
|
const isSecureVisible = ref(false);
|
62
66
|
const updateModelValue = (value) => {
|
@@ -173,12 +177,16 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
173
177
|
});
|
174
178
|
__expose({
|
175
179
|
focus,
|
176
|
-
blur
|
180
|
+
blur,
|
181
|
+
fieldRef: computed(() => fieldWrapperRef.value?.fieldRef)
|
177
182
|
});
|
178
183
|
return (_ctx, _cache) => {
|
179
|
-
return openBlock(), createBlock(_sfc_main$1, mergeProps(props, {
|
184
|
+
return openBlock(), createBlock(_sfc_main$1, mergeProps({ ref: "fieldWrapper" }, props, {
|
180
185
|
class: _ctx.$attrs.class,
|
181
|
-
onClick: _cache[10] || (_cache[10] = ($event) =>
|
186
|
+
onClick: _cache[10] || (_cache[10] = ($event) => {
|
187
|
+
_ctx.$emit("click:suffix", $event);
|
188
|
+
_ctx.seamless && focus();
|
189
|
+
})
|
182
190
|
}), createSlots({ _: 2 }, [
|
183
191
|
_ctx.$slots.title ? {
|
184
192
|
name: "title",
|
@@ -187,7 +195,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
187
195
|
]),
|
188
196
|
key: "0"
|
189
197
|
} : void 0,
|
190
|
-
_ctx.$slots.subtitle ? {
|
198
|
+
_ctx.$slots.subtitle && _ctx.unclickable !== false ? {
|
191
199
|
name: "subtitle",
|
192
200
|
fn: withCtx(() => [
|
193
201
|
renderSlot(_ctx.$slots, "subtitle")
|
@@ -213,12 +221,14 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
213
221
|
name: "field",
|
214
222
|
fn: withCtx(({ id, setFocused, focused }) => [
|
215
223
|
createElementVNode("div", {
|
216
|
-
class: normalizeClass(["
|
224
|
+
class: normalizeClass(["relative grid min-h-[--w-input-height,2.75rem] grid-cols-[auto,1fr,auto] overflow-hidden rounded-[--w-input-rounded,0.75rem] border border-solid transition-colors duration-75", {
|
217
225
|
"focus-within:border-primary dark:focus-within:border-primary-dark focus-within:outline-primary/20 dark:focus-within:outline-primary-dark/20 focus-within:outline focus-within:outline-2": !_ctx.disabled && !_ctx.readonly && !_ctx.unclickable,
|
218
226
|
"cursor-text": !_ctx.disabled,
|
219
227
|
"border-negative dark:border-negative-dark": _ctx.errorMessage,
|
220
228
|
"border-gray-300 dark:border-gray-700": !_ctx.disabled,
|
221
|
-
"border-gray-300/50 dark:border-gray-700/50": _ctx.disabled
|
229
|
+
"border-gray-300/50 dark:border-gray-700/50": _ctx.disabled,
|
230
|
+
"border-opacity-0 group-hover/field:border-opacity-100 dark:border-opacity-0 dark:group-hover/field:border-opacity-100": _ctx.seamless && !focused,
|
231
|
+
"bg-default dark:bg-default-dark": !_ctx.seamless || focused
|
222
232
|
}]),
|
223
233
|
onClick: focus,
|
224
234
|
onMousedown: _cache[9] || (_cache[9] = withModifiers(() => {
|
@@ -234,13 +244,17 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
234
244
|
(openBlock(), createBlock(resolveDynamicComponent(_ctx.icon), { class: "square-[1.125em]" }))
|
235
245
|
], 2)) : createCommentVNode("", true),
|
236
246
|
createElementVNode("div", {
|
247
|
+
ref: "content",
|
237
248
|
class: normalizeClass(["group/input col-start-2 grid grid-cols-1", {
|
238
|
-
"py-[--w-input-gap,0.25rem] first:pl-[--w-input-gap,0.25rem] last:pr-[--w-input-gap,0.25rem]": _ctx.$slots.prefix
|
249
|
+
"py-[--w-input-gap,0.25rem] first:pl-[--w-input-gap,0.25rem] last:pr-[--w-input-gap,0.25rem]": _ctx.$slots.prefix,
|
250
|
+
"no-scrollbar overflow-x-auto overscroll-x-contain": _ctx.noWrap && (!_ctx.seamless || focused),
|
251
|
+
"overflow-hidden": _ctx.noWrap && (_ctx.seamless && !focused)
|
239
252
|
}])
|
240
253
|
}, [
|
241
254
|
createElementVNode("div", {
|
242
|
-
class: normalizeClass(["flex
|
243
|
-
"[&:not(:has(.w-option-has-bg))]:-px--w-option-padding": !_ctx.icon && !_ctx.textarea
|
255
|
+
class: normalizeClass(["flex gap-[--w-input-gap,0.25rem]", {
|
256
|
+
"[&:not(:has(.w-option-has-bg))]:-px--w-option-padding": !_ctx.icon && !_ctx.textarea,
|
257
|
+
"flex-wrap": !_ctx.noWrap
|
244
258
|
}])
|
245
259
|
}, [
|
246
260
|
renderSlot(_ctx.$slots, "prefix"),
|
@@ -290,11 +304,13 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
290
304
|
onFocus: ($event) => {
|
291
305
|
_ctx.$emit("focus", $event);
|
292
306
|
setFocused(true);
|
307
|
+
_ctx.seamless && nextTick(() => unref(contentRef)?.scrollTo({ left: unref(contentRef)?.scrollWidth ?? 0 }));
|
293
308
|
},
|
294
309
|
onBlur: ($event) => {
|
295
310
|
_ctx.$emit("blur", $event);
|
296
311
|
setFocused(false);
|
297
312
|
isSecureVisible.value = false;
|
313
|
+
_ctx.seamless && unref(contentRef)?.scrollTo({ left: 0 });
|
298
314
|
},
|
299
315
|
onClick: _cache[4] || (_cache[4] = ($event) => _ctx.$emit("click", $event)),
|
300
316
|
onMousedown: _cache[5] || (_cache[5] = withModifiers(($event) => _ctx.$emit("mousedown", $event), ["stop"])),
|
@@ -304,12 +320,13 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
304
320
|
], 2)
|
305
321
|
], 2)
|
306
322
|
], 2),
|
307
|
-
|
323
|
+
!_ctx.seamless || focused ? (openBlock(), createBlock(_sfc_main$2, {
|
324
|
+
key: 1,
|
308
325
|
"model-value": _ctx.modelValue,
|
309
326
|
loading: _ctx.loading,
|
310
327
|
"allow-clear": _ctx.allowClear && _ctx.modelValue !== "",
|
311
328
|
disabled: _ctx.disabled || _ctx.disabledActions,
|
312
|
-
readonly: _ctx.readonly || _ctx.unclickable,
|
329
|
+
readonly: _ctx.readonly || _ctx.unclickable === true,
|
313
330
|
"text-secure": _ctx.textSecure,
|
314
331
|
"is-secure-visible": isSecureVisible.value,
|
315
332
|
"allow-paste": _ctx.allowPaste,
|
@@ -334,7 +351,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
334
351
|
]),
|
335
352
|
key: "0"
|
336
353
|
} : void 0
|
337
|
-
]), 1032, ["model-value", "loading", "allow-clear", "disabled", "readonly", "text-secure", "is-secure-visible", "allow-paste", "allow-copy", "focused", "onClick:slot"]),
|
354
|
+
]), 1032, ["model-value", "loading", "allow-clear", "disabled", "readonly", "text-secure", "is-secure-visible", "allow-paste", "allow-copy", "focused", "onClick:slot"])) : createCommentVNode("", true),
|
338
355
|
renderSlot(_ctx.$slots, "inner")
|
339
356
|
], 34)
|
340
357
|
]),
|
@@ -34,7 +34,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
34
34
|
autocomplete: {},
|
35
35
|
autofocus: { type: Boolean },
|
36
36
|
readonly: { type: Boolean },
|
37
|
-
unclickable: { type: Boolean },
|
37
|
+
unclickable: { type: [Boolean, null] },
|
38
38
|
disabledActions: { type: Boolean },
|
39
39
|
loading: { type: Boolean },
|
40
40
|
spellcheck: { type: Boolean },
|
@@ -44,6 +44,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
44
44
|
allowClear: { type: Boolean },
|
45
45
|
allowPaste: { type: Boolean },
|
46
46
|
hideInput: { type: Boolean },
|
47
|
+
noWrap: { type: Boolean },
|
47
48
|
title: {},
|
48
49
|
titleIcon: {},
|
49
50
|
description: {},
|
@@ -61,7 +62,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
61
62
|
leftError: { type: Boolean },
|
62
63
|
filterField: {},
|
63
64
|
filterValue: {},
|
64
|
-
subgrid: { type: Boolean }
|
65
|
+
subgrid: { type: Boolean },
|
66
|
+
seamless: { type: Boolean }
|
65
67
|
},
|
66
68
|
emits: ["update:modelValue"],
|
67
69
|
setup(__props, { emit: __emit }) {
|
@@ -27,7 +27,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
27
27
|
autocomplete: {},
|
28
28
|
autofocus: { type: Boolean },
|
29
29
|
readonly: { type: Boolean },
|
30
|
-
unclickable: { type: Boolean },
|
30
|
+
unclickable: { type: [Boolean, null] },
|
31
31
|
disabledActions: { type: Boolean },
|
32
32
|
loading: { type: Boolean },
|
33
33
|
spellcheck: { type: Boolean },
|
@@ -37,6 +37,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
37
37
|
allowClear: { type: Boolean },
|
38
38
|
allowPaste: { type: Boolean },
|
39
39
|
hideInput: { type: Boolean },
|
40
|
+
noWrap: { type: Boolean },
|
40
41
|
title: {},
|
41
42
|
titleIcon: {},
|
42
43
|
description: {},
|
@@ -55,9 +56,11 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
55
56
|
filterField: {},
|
56
57
|
filterValue: {},
|
57
58
|
subgrid: { type: Boolean },
|
59
|
+
seamless: { type: Boolean },
|
58
60
|
teleport: { type: Boolean },
|
59
61
|
noZIndex: { type: Boolean },
|
60
62
|
zIndex: {},
|
63
|
+
parentElement: {},
|
61
64
|
maxHeight: { default: 440 },
|
62
65
|
maxWidth: { default: 480 },
|
63
66
|
horizontalAlign: { default: HorizontalAlign.RIGHT_INNER }
|
@@ -32,7 +32,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
32
32
|
autocomplete: {},
|
33
33
|
autofocus: { type: Boolean },
|
34
34
|
readonly: { type: Boolean },
|
35
|
-
unclickable: { type: Boolean },
|
35
|
+
unclickable: { type: [Boolean, null] },
|
36
36
|
disabledActions: { type: Boolean },
|
37
37
|
loading: { type: Boolean },
|
38
38
|
spellcheck: { type: Boolean },
|
@@ -42,6 +42,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
42
42
|
allowClear: { type: Boolean },
|
43
43
|
allowPaste: { type: Boolean },
|
44
44
|
hideInput: { type: Boolean },
|
45
|
+
noWrap: { type: Boolean },
|
45
46
|
title: {},
|
46
47
|
titleIcon: {},
|
47
48
|
description: {},
|
@@ -60,9 +61,11 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
60
61
|
filterField: {},
|
61
62
|
filterValue: {},
|
62
63
|
subgrid: { type: Boolean },
|
64
|
+
seamless: { type: Boolean },
|
63
65
|
teleport: { type: Boolean },
|
64
66
|
noZIndex: { type: Boolean },
|
65
67
|
zIndex: {},
|
68
|
+
parentElement: {},
|
66
69
|
maxHeight: {},
|
67
70
|
maxWidth: {},
|
68
71
|
horizontalAlign: {}
|
@@ -13,7 +13,7 @@ declare const _default: <Type extends InputType = "text">(__VLS_props: NonNullab
|
|
13
13
|
title?: () => void;
|
14
14
|
subtitle?: () => void;
|
15
15
|
prefix?: (props: {
|
16
|
-
unclickable?: boolean;
|
16
|
+
unclickable?: boolean | null;
|
17
17
|
}) => void;
|
18
18
|
right?: (props: Record<string, never>) => void;
|
19
19
|
content?: (props?: {
|
@@ -23,7 +23,7 @@ declare const _default: <Type extends InputType = "text">(__VLS_props: NonNullab
|
|
23
23
|
title?: () => void;
|
24
24
|
subtitle?: () => void;
|
25
25
|
prefix?: (props: {
|
26
|
-
unclickable?: boolean;
|
26
|
+
unclickable?: boolean | null;
|
27
27
|
}) => void;
|
28
28
|
right?: (props: Record<string, never>) => void;
|
29
29
|
content?: (props?: {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"WInputSuggest.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Input/WInputSuggest.vue"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"WInputSuggest.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Input/WInputSuggest.vue"],"names":[],"mappings":"AA+GA;AA6MA,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,SAAS,CAAA;AAE9C,OAAO,EAAC,KAAK,KAAK,EAAgC,MAAM,KAAK,CAAA;yBAW5C,IAAI,SAAS,SAAS,GAAG,MAAM,EAC/C,aAAa,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,OAAO,CAAC,EAC9D,YAAY,mBAAmB,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC,CAAC,EAC3G,eAAe,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAC,EACjE;WAwXO,mBAAmB,CAAC,2CAAkE,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB;;;;;MAAsB,GAAG,IAAI;WACpE,GAAG;;gBA3SD,MAAM,IAAI;mBACP,MAAM,IAAI;iBACZ,CAAC,KAAK,EAAE;YAAC,WAAW,CAAC,EAAE,OAAO,GAAG,IAAI,CAAA;SAAC,KAAK,IAAI;gBAChD,CAAC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,KAAK,IAAI;kBACpC,CAAC,KAAK,CAAC,EAAE;YAAC,gBAAgB,CAAC,EAAE,OAAO,CAAA;SAAC,KAAK,KAAK,EAAE;;gBAJnD,MAAM,IAAI;mBACP,MAAM,IAAI;iBACZ,CAAC,KAAK,EAAE;YAAC,WAAW,CAAC,EAAE,OAAO,GAAG,IAAI,CAAA;SAAC,KAAK,IAAI;gBAChD,CAAC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,KAAK,IAAI;kBACpC,CAAC,KAAK,CAAC,EAAE;YAAC,gBAAgB,CAAC,EAAE,OAAO,CAAA;SAAC,KAAK,KAAK,EAAE;;;YAnEvD,mBAAmB,mDAAsB,IAAI;YAC7C,gBAAgB,SAAS,aAAa,GAAG,IAAI;YAC7C,aAAa,SAAS,aAAa,GAAG,IAAI;YAC1C,eAAe,SAAS,aAAa,GAAG,IAAI;YAC5C,iBAAiB,SAAS,aAAa,GAAG,IAAI;YAC9C,MAAM,GAAG,IAAI;YACb,OAAO,GAAG,IAAI;YACd,aAAa,GAAG,IAAI;YACpB,OAAO,SAAS,UAAU,GAAG,IAAI;YACjC,MAAM,SAAS,UAAU,GAAG,IAAI;;EAqWlC,KACQ,OAAO,KAAK,EAAE,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,WAAW,CAAC,CAAA;CAAE;AAnYzE,wBAmY4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
|