eco-vue-js 0.11.5 → 0.11.6

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 (54) hide show
  1. package/dist/components/Button/WButtonDropdown.vue.d.ts +0 -2
  2. package/dist/components/Button/WButtonDropdown.vue.d.ts.map +1 -1
  3. package/dist/components/Button/WButtonDropdown.vue.js +2 -6
  4. package/dist/components/Button/WButtonMore.vue.d.ts.map +1 -1
  5. package/dist/components/Button/WButtonMore.vue.js +0 -2
  6. package/dist/components/Button/WButtonSelection.vue.d.ts.map +1 -1
  7. package/dist/components/Button/WButtonSelection.vue.js +0 -2
  8. package/dist/components/Button/types.d.ts +1 -1
  9. package/dist/components/Button/types.d.ts.map +1 -1
  10. package/dist/components/Dropdown/WDropdown.vue.d.ts.map +1 -1
  11. package/dist/components/Dropdown/WDropdown.vue.js +29 -47
  12. package/dist/components/Dropdown/types.d.ts +0 -7
  13. package/dist/components/Dropdown/types.d.ts.map +1 -1
  14. package/dist/components/Dropdown/utils/DropdownStyle.d.ts +35 -75
  15. package/dist/components/Dropdown/utils/DropdownStyle.d.ts.map +1 -1
  16. package/dist/components/Dropdown/utils/DropdownStyle.js +97 -164
  17. package/dist/components/DropdownMenu/WDropdownMenu.vue.d.ts +0 -4
  18. package/dist/components/DropdownMenu/WDropdownMenu.vue.d.ts.map +1 -1
  19. package/dist/components/DropdownMenu/WDropdownMenu.vue.js +1 -5
  20. package/dist/components/FormAsync/WFormAsyncSelect.vue.js +0 -2
  21. package/dist/components/FormAsync/WFormAsyncSelectInfiniteSingle.vue.js +0 -2
  22. package/dist/components/FormAsync/WFormAsyncSelectSingle.vue.js +0 -2
  23. package/dist/components/FormAsync/WFormAsyncSelectStringified.vue.js +0 -2
  24. package/dist/components/Input/WInputDate.vue.d.ts +0 -2
  25. package/dist/components/Input/WInputDate.vue.d.ts.map +1 -1
  26. package/dist/components/Input/WInputDate.vue.js +0 -2
  27. package/dist/components/Input/WInputOptions.vue.js +0 -2
  28. package/dist/components/Input/WInputSuggest.vue.d.ts.map +1 -1
  29. package/dist/components/Input/WInputSuggest.vue.js +1 -5
  30. package/dist/components/List/components/HeaderSettings.vue.d.ts.map +1 -1
  31. package/dist/components/List/components/HeaderSettings.vue.js +0 -2
  32. package/dist/components/List/components/HeaderSort.vue.d.ts.map +1 -1
  33. package/dist/components/List/components/HeaderSort.vue.js +0 -2
  34. package/dist/components/List/components/ListFilterSelect.vue.d.ts.map +1 -1
  35. package/dist/components/List/components/ListFilterSelect.vue.js +0 -2
  36. package/dist/components/Nav/WNavItemExpand.vue.d.ts.map +1 -1
  37. package/dist/components/Nav/WNavItemExpand.vue.js +0 -2
  38. package/dist/components/Select/WSelect.vue.d.ts.map +1 -1
  39. package/dist/components/Select/WSelect.vue.js +75 -74
  40. package/dist/components/Select/WSelectAsync.vue.d.ts +2 -2
  41. package/dist/components/Select/WSelectAsync.vue.d.ts.map +1 -1
  42. package/dist/components/Select/WSelectAsync.vue.js +1 -2
  43. package/dist/components/Select/WSelectAsyncSingle.vue.js +0 -2
  44. package/dist/components/Select/WSelectSingle.vue.js +0 -2
  45. package/dist/components/Select/WSelectStringified.vue.js +0 -2
  46. package/dist/components/Select/components/SelectAsyncList.vue.js +1 -1
  47. package/dist/components/Tooltip/WTooltipContainer.vue.d.ts +0 -2
  48. package/dist/components/Tooltip/WTooltipContainer.vue.d.ts.map +1 -1
  49. package/dist/components/Tooltip/WTooltipContainer.vue.js +1 -3
  50. package/dist/utils/HorizontalAlign.d.ts +0 -1
  51. package/dist/utils/HorizontalAlign.d.ts.map +1 -1
  52. package/dist/utils/HorizontalAlign.js +0 -1
  53. package/package.json +1 -1
  54. package/tailwind-base/plugins/default.ts +14 -8
@@ -1,176 +1,109 @@
1
+ import { markRaw } from 'vue';
1
2
  import { HorizontalAlign } from '../../../utils/HorizontalAlign.js';
2
3
 
3
- const EDGE = 20;
4
- var OriginY = /* @__PURE__ */ ((OriginY2) => {
5
- OriginY2["TOP"] = "content-start";
6
- OriginY2["BOTTOM"] = "content-end";
7
- OriginY2["CENTER"] = "content-center";
8
- return OriginY2;
9
- })(OriginY || {});
10
- class VerticalGetter {
11
- heightStyleGetter(parentRect, maxHeight) {
12
- return _maxHeightOrWidthGetter(this, parentRect, maxHeight);
13
- }
14
- }
15
- class BottomInner extends VerticalGetter {
16
- isTop = false;
17
- origin = "content-start" /* TOP */;
18
- styleGetter(parentRect) {
19
- return Math.round(parentRect.top);
20
- }
21
- marginGetter(parentRect, maxHeight) {
22
- return Math.round(window.innerHeight - parentRect.top - maxHeight - EDGE);
23
- }
24
- }
25
- class BottomOuter extends VerticalGetter {
26
- isTop = false;
27
- origin = "content-start" /* TOP */;
28
- styleGetter(parentRect) {
29
- return Math.round(parentRect.bottom);
30
- }
31
- marginGetter(parentRect, maxHeight) {
32
- return Math.round(window.innerHeight - parentRect.bottom - maxHeight - EDGE);
33
- }
34
- }
35
- class VerticalCenter extends VerticalGetter {
36
- isTop = false;
37
- origin = "content-center" /* CENTER */;
38
- styleGetter(parentRect) {
39
- return Math.round(parentRect.top + parentRect.height / 2);
40
- }
41
- marginGetter() {
42
- return 0;
43
- }
44
- heightStyleGetter() {
45
- return void 0;
46
- }
47
- }
48
- class TopOuter extends VerticalGetter {
49
- isTop = true;
50
- origin = "content-end" /* BOTTOM */;
51
- styleGetter(parentRect) {
52
- return Math.round(parentRect.top);
53
- }
54
- marginGetter(parentRect, maxHeight) {
55
- return Math.round(parentRect.top - maxHeight - EDGE);
56
- }
57
- }
58
- class TopInner extends VerticalGetter {
59
- isTop = true;
60
- origin = "content-end" /* BOTTOM */;
61
- styleGetter(parentRect) {
62
- return Math.round(parentRect.bottom);
63
- }
64
- marginGetter(parentRect, maxHeight) {
65
- return Math.round(parentRect.bottom - maxHeight - EDGE);
66
- }
67
- }
4
+ const EDGE_FACTOR = 0.66;
5
+ const BOTTOM_EDGE = window.innerHeight * EDGE_FACTOR;
6
+ const BottomInner = markRaw({
7
+ isTop: false,
8
+ origin: "content-start" /* TOP */,
9
+ style: { maxHeight: "calc(100vh - var(--dropdown-y, 0px) - var(--w-bottom-inner, 0px) - var(--inner-margin, 0px))" },
10
+ y: (parentRect) => Math.round(parentRect.top),
11
+ isEdge: (parentRect) => parentRect.top > BOTTOM_EDGE
12
+ });
13
+ const BottomOuter = markRaw({
14
+ ...BottomInner,
15
+ y: (parentRect) => Math.round(parentRect.bottom),
16
+ isEdge: (parentRect) => parentRect.bottom > BOTTOM_EDGE
17
+ });
18
+ const VerticalCenter = markRaw({
19
+ isTop: false,
20
+ origin: "content-center" /* CENTER */,
21
+ style: void 0,
22
+ y: (parentRect) => Math.round(parentRect.top + parentRect.height / 2),
23
+ isEdge: void 0
24
+ });
25
+ const TOP_EDGE = window.innerHeight * (1 - EDGE_FACTOR);
26
+ const TopOuter = markRaw({
27
+ isTop: true,
28
+ origin: "content-end" /* BOTTOM */,
29
+ style: { maxHeight: "calc(var(--dropdown-y, 0px) - var(--w-top-inner, 0px) - var(--inner-margin, 0px))" },
30
+ y: (parentRect) => Math.round(parentRect.top),
31
+ isEdge: (parentRect) => parentRect.top < TOP_EDGE
32
+ });
33
+ const TopInner = markRaw({
34
+ ...TopOuter,
35
+ y: (parentRect) => Math.round(parentRect.bottom),
36
+ isEdge: (parentRect) => parentRect.bottom < TOP_EDGE
37
+ });
68
38
  var OriginX = /* @__PURE__ */ ((OriginX2) => {
69
39
  OriginX2["LEFT"] = "justify-start";
70
40
  OriginX2["RIGHT"] = "justify-end";
71
41
  OriginX2["CENTER"] = "justify-center";
72
42
  return OriginX2;
73
43
  })(OriginX || {});
74
- class HorizontalGetter {
75
- widthStyleGetter(parentRect, maxWidth) {
76
- return _maxHeightOrWidthGetter(this, parentRect, maxWidth);
77
- }
78
- }
79
- class RightOuter extends HorizontalGetter {
80
- verticalGetterOrder = [new BottomInner(), new TopInner()];
81
- origin = "justify-start" /* LEFT */;
82
- styleGetter(parentRect) {
83
- return Math.round(parentRect.right);
84
- }
85
- marginGetter(parentRect, maxWidth) {
86
- return Math.round(document.documentElement.clientWidth - parentRect.right - maxWidth - EDGE);
87
- }
88
- }
89
- class RightInner extends HorizontalGetter {
90
- verticalGetterOrder = [new BottomOuter(), new TopOuter()];
91
- origin = "justify-start" /* LEFT */;
92
- styleGetter(parentRect) {
93
- return Math.round(parentRect.left);
94
- }
95
- marginGetter(parentRect, maxWidth) {
96
- return Math.round(document.documentElement.clientWidth - parentRect.left - maxWidth - EDGE);
97
- }
98
- }
99
- class RightCenter extends RightOuter {
100
- verticalGetterOrder = [new VerticalCenter()];
101
- }
102
- class Fill extends HorizontalGetter {
103
- verticalGetterOrder = [new BottomOuter(), new TopOuter()];
104
- origin = "justify-start" /* LEFT */;
105
- styleGetter(parentRect) {
106
- return Math.round(parentRect.left);
107
- }
108
- marginGetter() {
109
- return 0;
110
- }
111
- widthStyleGetter(parentRect) {
112
- return Math.round(parentRect.right - parentRect.left);
113
- }
114
- }
115
- class Center extends HorizontalGetter {
116
- verticalGetterOrder = [new BottomOuter(), new TopOuter()];
117
- origin = "justify-center" /* CENTER */;
118
- styleGetter(parentRect) {
119
- return Math.round(parentRect.left + parentRect.width / 2);
120
- }
121
- marginGetter() {
122
- return 0;
123
- }
124
- widthStyleGetter() {
125
- return void 0;
126
- }
127
- }
128
- class LeftInner extends HorizontalGetter {
129
- verticalGetterOrder = [new BottomOuter(), new TopOuter()];
130
- origin = "justify-end" /* RIGHT */;
131
- styleGetter(parentRect) {
132
- return Math.round(parentRect.right);
133
- }
134
- marginGetter(parentRect, maxWidth) {
135
- return Math.round(parentRect.right - maxWidth - EDGE);
136
- }
137
- }
138
- class LeftOuter extends HorizontalGetter {
139
- verticalGetterOrder = [new BottomInner(), new TopInner()];
140
- origin = "justify-end" /* RIGHT */;
141
- styleGetter(parentRect) {
142
- return Math.round(parentRect.left);
143
- }
144
- marginGetter(parentRect, maxWidth) {
145
- return Math.round(parentRect.left - maxWidth - EDGE);
146
- }
147
- }
148
- class LeftCenter extends LeftOuter {
149
- verticalGetterOrder = [new VerticalCenter()];
150
- }
44
+ const RIGHT_EDGE = window.innerWidth * EDGE_FACTOR;
45
+ const RightOuter = markRaw({
46
+ verticalGetterOrder: [BottomInner, TopInner],
47
+ origin: "justify-start" /* LEFT */,
48
+ style: { maxWidth: "calc(100vw - var(--dropdown-x, 0px) - var(--w-right-inner, 0px))" },
49
+ x: (parentRect) => Math.round(parentRect.right),
50
+ isEdge: (parentRect) => parentRect.right > RIGHT_EDGE
51
+ });
52
+ const RightInner = markRaw({
53
+ ...RightOuter,
54
+ verticalGetterOrder: [BottomOuter, TopOuter],
55
+ x: (parentRect) => Math.round(parentRect.left),
56
+ isEdge: (parentRect) => parentRect.left > RIGHT_EDGE
57
+ });
58
+ const RightCenter = markRaw({
59
+ ...RightOuter,
60
+ verticalGetterOrder: [VerticalCenter]
61
+ });
62
+ const Fill = markRaw({
63
+ verticalGetterOrder: [BottomOuter, TopOuter],
64
+ origin: "justify-start" /* LEFT */,
65
+ style: { minWidth: "var(--dropdown-width)", maxWidth: "var(--dropdown-width)" },
66
+ styleGetter: (parentRect) => ({ "--dropdown-width": `${Math.round(parentRect.right - parentRect.left)}px` }),
67
+ x: (parentRect) => Math.round(parentRect.left),
68
+ isEdge: void 0
69
+ });
70
+ const Center = markRaw({
71
+ verticalGetterOrder: [BottomOuter, TopOuter],
72
+ origin: "justify-center" /* CENTER */,
73
+ x: (parentRect) => Math.round(parentRect.left + parentRect.width / 2),
74
+ isEdge: void 0
75
+ });
76
+ const LEFT_EDGE = window.innerWidth * (1 - EDGE_FACTOR);
77
+ const LeftInner = markRaw({
78
+ verticalGetterOrder: [BottomOuter, TopOuter],
79
+ origin: "justify-end" /* RIGHT */,
80
+ style: { maxWidth: "calc(var(--dropdown-x, 0px) - var(--w-left-inner, 0px))" },
81
+ x: (parentRect) => Math.round(parentRect.right),
82
+ isEdge: (parentRect) => parentRect.right < LEFT_EDGE
83
+ });
84
+ const LeftOuter = markRaw({
85
+ ...LeftInner,
86
+ verticalGetterOrder: [BottomInner, TopInner],
87
+ x: (parentRect) => Math.round(parentRect.left),
88
+ isEdge: (parentRect) => parentRect.left < LEFT_EDGE
89
+ });
90
+ const LeftCenter = markRaw({
91
+ ...LeftOuter,
92
+ verticalGetterOrder: [VerticalCenter]
93
+ });
151
94
  const horizontalGetterOrderMap = {
152
- [HorizontalAlign.RIGHT_OUTER]: [new RightOuter(), new LeftOuter(), new RightInner(), new LeftInner()],
153
- [HorizontalAlign.RIGHT_CENTER]: [new RightCenter(), new LeftCenter()],
154
- [HorizontalAlign.RIGHT_INNER]: [new RightInner(), new LeftInner()],
155
- [HorizontalAlign.FILL]: [new Fill()],
156
- [HorizontalAlign.FILL_MIN]: [new Fill()],
157
- [HorizontalAlign.CENTER]: [new Center()],
158
- [HorizontalAlign.LEFT_INNER]: [new LeftInner(), new RightInner()],
159
- [HorizontalAlign.LEFT_CENTER]: [new LeftCenter(), new RightCenter()],
160
- [HorizontalAlign.LEFT_OUTER]: [new LeftOuter(), new RightOuter(), new LeftInner(), new RightInner()]
95
+ [HorizontalAlign.RIGHT_OUTER]: [RightOuter, LeftOuter],
96
+ [HorizontalAlign.RIGHT_CENTER]: [RightCenter, LeftCenter],
97
+ [HorizontalAlign.RIGHT_INNER]: [RightInner, LeftInner],
98
+ [HorizontalAlign.FILL]: [Fill],
99
+ [HorizontalAlign.CENTER]: [Center],
100
+ [HorizontalAlign.LEFT_INNER]: [LeftInner, RightInner],
101
+ [HorizontalAlign.LEFT_CENTER]: [LeftCenter, RightCenter],
102
+ [HorizontalAlign.LEFT_OUTER]: [LeftOuter, RightOuter]
161
103
  };
162
- function searchStyleGetter(order, parentRect, maxHeightOrWidth) {
163
- const margins = [];
164
- return order.find((item) => {
165
- const margin = item.marginGetter(parentRect, maxHeightOrWidth);
166
- margins.push(margin);
167
- return margin >= 0;
168
- }) || order[margins.indexOf(Math.max(...margins))];
169
- }
170
- function _maxHeightOrWidthGetter(getter, parentRect, maxHeightOrWidth) {
171
- const margin = getter.marginGetter(parentRect, maxHeightOrWidth);
172
- if (margin > 0) return Math.round(maxHeightOrWidth);
173
- else return Math.round(maxHeightOrWidth + margin);
104
+ function searchStyleGetter(order, parentRect) {
105
+ if (order[1] && order[0].isEdge?.(parentRect)) return order[1];
106
+ return order[0];
174
107
  }
175
108
 
176
- export { HorizontalGetter, LeftCenter, LeftInner, LeftOuter, OriginX, OriginY, RightInner, RightOuter, VerticalGetter, horizontalGetterOrderMap, searchStyleGetter };
109
+ export { LeftCenter, LeftInner, LeftOuter, OriginX, RightInner, RightOuter, horizontalGetterOrderMap, searchStyleGetter };
@@ -22,8 +22,6 @@ declare function __VLS_template(): {
22
22
  $: import('vue').ComponentInternalInstance;
23
23
  $data: {};
24
24
  $props: {
25
- readonly maxHeight: number;
26
- readonly maxWidth: number;
27
25
  readonly horizontalAlign: import('../../main').HorizontalAlign;
28
26
  readonly top?: boolean | undefined;
29
27
  readonly bottom?: boolean | undefined;
@@ -101,8 +99,6 @@ declare const __VLS_component: import('vue').DefineComponent<DropdownMenuProps,
101
99
  $: import('vue').ComponentInternalInstance;
102
100
  $data: {};
103
101
  $props: {
104
- readonly maxHeight: number;
105
- readonly maxWidth: number;
106
102
  readonly horizontalAlign: import('../../main').HorizontalAlign;
107
103
  readonly top?: boolean | undefined;
108
104
  readonly bottom?: boolean | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"WDropdownMenu.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/DropdownMenu/WDropdownMenu.vue"],"names":[],"mappings":"AAiCA;AAwEA,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,SAAS,CAAA;AAC9C,OAAO,KAAK,EAAC,wBAAwB,EAAC,MAAM,6BAA6B,CAAA;AAEzE,OAAO,EAAC,KAAK,KAAK,EAAmC,MAAM,KAAK,CAAA;AAyChE,iBAAS,cAAc;WA6FT,OAAO,IAA6B;;iBA9GvC,CAAC,KAAK,EAAE;YAAC,KAAK,EAAE,OAAO,CAAC;YAAC,WAAW,EAAE,SAAS,CAAA;SAAC,KAAK,KAAK,EAAE;kBAC3D,CAAC,KAAK,EAAE,wBAAwB,KAAK,KAAK,EAAE;;iBAD7C,CAAC,KAAK,EAAE;YAAC,KAAK,EAAE,OAAO,CAAC;YAAC,WAAW,EAAE,SAAS,CAAA;SAAC,KAAK,KAAK,EAAE;kBAC3D,CAAC,KAAK,EAAE,wBAAwB,KAAK,KAAK,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCA0JkoiB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;EAxC/yiB;AAeD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAwBqqiB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;OAf9yiB,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":"WDropdownMenu.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/DropdownMenu/WDropdownMenu.vue"],"names":[],"mappings":"AA+BA;AAsEA,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,SAAS,CAAA;AAC9C,OAAO,KAAK,EAAC,wBAAwB,EAAC,MAAM,6BAA6B,CAAA;AAEzE,OAAO,EAAC,KAAK,KAAK,EAAmC,MAAM,KAAK,CAAA;AAyChE,iBAAS,cAAc;WAyFT,OAAO,IAA6B;;iBA1GvC,CAAC,KAAK,EAAE;YAAC,KAAK,EAAE,OAAO,CAAC;YAAC,WAAW,EAAE,SAAS,CAAA;SAAC,KAAK,KAAK,EAAE;kBAC3D,CAAC,KAAK,EAAE,wBAAwB,KAAK,KAAK,EAAE;;iBAD7C,CAAC,KAAK,EAAE;YAAC,KAAK,EAAE,OAAO,CAAC;YAAC,WAAW,EAAE,SAAS,CAAA;SAAC,KAAK,KAAK,EAAE;kBAC3D,CAAC,KAAK,EAAE,wBAAwB,KAAK,KAAK,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAsJw0iB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;EAxCr/iB;AAeD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAwB22iB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;OAfp/iB,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"}
@@ -7,8 +7,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
7
7
  props: {
8
8
  isOpen: { type: Boolean },
9
9
  parentElement: {},
10
- maxHeight: {},
11
- maxWidth: {},
12
10
  horizontalAlign: {},
13
11
  top: { type: Boolean },
14
12
  bottom: { type: Boolean },
@@ -40,8 +38,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
40
38
  "parent-element": _ctx.parentElement ?? element.value,
41
39
  "horizontal-align": _ctx.horizontalAlign,
42
40
  "update-align": _ctx.updateAlign,
43
- "max-height": _ctx.maxHeight,
44
- "max-width": _ctx.maxWidth,
45
41
  "emit-update": _ctx.emitUpdate,
46
42
  style: normalizeStyle({ zIndex: unref(baseZIndex) + unref(BASE_ZINDEX_DROPDOWN) }),
47
43
  top: _ctx.top,
@@ -51,7 +47,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
51
47
  renderSlot(_ctx.$slots, "content", normalizeProps(guardReactiveProps(defaultScope)))
52
48
  ]),
53
49
  _: 3
54
- }, 8, ["parent-element", "horizontal-align", "update-align", "max-height", "max-width", "emit-update", "style", "top"])) : createCommentVNode("", true)
50
+ }, 8, ["parent-element", "horizontal-align", "update-align", "emit-update", "style", "top"])) : createCommentVNode("", true)
55
51
  ], 8, ["disabled"]))
56
52
  ], 64);
57
53
  };
@@ -65,8 +65,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
65
65
  savedText: {},
66
66
  topText: { type: Boolean },
67
67
  parentElement: {},
68
- maxHeight: {},
69
- maxWidth: {},
70
68
  horizontalAlign: {},
71
69
  top: { type: Boolean },
72
70
  bottom: { type: Boolean },
@@ -70,8 +70,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
70
70
  savedText: {},
71
71
  topText: { type: Boolean },
72
72
  parentElement: {},
73
- maxHeight: {},
74
- maxWidth: {},
75
73
  horizontalAlign: {},
76
74
  top: { type: Boolean },
77
75
  bottom: { type: Boolean },
@@ -66,8 +66,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
66
66
  savedText: {},
67
67
  topText: { type: Boolean },
68
68
  parentElement: {},
69
- maxHeight: {},
70
- maxWidth: {},
71
69
  horizontalAlign: {},
72
70
  top: { type: Boolean },
73
71
  bottom: { type: Boolean },
@@ -66,8 +66,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
66
66
  savedText: {},
67
67
  topText: { type: Boolean },
68
68
  parentElement: {},
69
- maxHeight: {},
70
- maxWidth: {},
71
69
  horizontalAlign: {},
72
70
  top: { type: Boolean },
73
71
  bottom: { type: Boolean },
@@ -26,10 +26,8 @@ declare const __VLS_component: import('vue').DefineComponent<InputDateProps, {},
26
26
  }>, {
27
27
  skeleton: boolean;
28
28
  readonly: boolean;
29
- maxHeight: number;
30
29
  disabled: boolean;
31
30
  modelValue: Date;
32
- maxWidth: number;
33
31
  horizontalAlign: HorizontalAlign;
34
32
  minDate: Date;
35
33
  maxDate: Date;
@@ -1 +1 @@
1
- {"version":3,"file":"WInputDate.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Input/WInputDate.vue"],"names":[],"mappings":"AAiDA;AAmHA,OAAO,KAAK,EAAC,cAAc,EAAC,MAAM,SAAS,CAAA;AAO3C,OAAO,EAAC,eAAe,EAAC,MAAM,yBAAyB,CAAA;AAuEvD,iBAAS,cAAc;WA6HT,OAAO,IAA6B;;uBAbtB,GAAG;0BACA,GAAG;uBACN,GAAG;;;;;;;;;;;;EAgB9B;AAeD,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;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":"WInputDate.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Input/WInputDate.vue"],"names":[],"mappings":"AAiDA;AAmHA,OAAO,KAAK,EAAC,cAAc,EAAC,MAAM,SAAS,CAAA;AAO3C,OAAO,EAAC,eAAe,EAAC,MAAM,yBAAyB,CAAA;AAuEvD,iBAAS,cAAc;WA6HT,OAAO,IAA6B;;uBAbtB,GAAG;0BACA,GAAG;uBACN,GAAG;;;;;;;;;;;;EAgB9B;AAeD,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;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -62,8 +62,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
62
62
  savedText: {},
63
63
  topText: { type: Boolean },
64
64
  parentElement: {},
65
- maxHeight: { default: 440 },
66
- maxWidth: { default: 480 },
67
65
  horizontalAlign: { default: HorizontalAlign.RIGHT_INNER },
68
66
  top: { type: Boolean },
69
67
  bottom: { type: Boolean }
@@ -68,8 +68,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
68
68
  savedText: {},
69
69
  topText: { type: Boolean },
70
70
  parentElement: {},
71
- maxHeight: {},
72
- maxWidth: {},
73
71
  horizontalAlign: {},
74
72
  top: { type: Boolean },
75
73
  bottom: { type: Boolean }
@@ -1 +1 @@
1
- {"version":3,"file":"WInputSuggest.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Input/WInputSuggest.vue"],"names":[],"mappings":"AAiHA;AA6NA,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,SAAS,CAAA;AAE9C,OAAO,EAAC,KAAK,KAAK,EAAgC,MAAM,KAAK,CAAA;yBAe5C,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;WAkZO,mBAAmB,CAAC,2CAAkE,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB;;;;;;MAAsB,GAAG,IAAI;WACpE,GAAG;;gBA3TD,MAAM,IAAI;iBACT,MAAM,IAAI;mBACR,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,MAAM,KAAK,EAAE;;gBALf,MAAM,IAAI;iBACT,MAAM,IAAI;mBACR,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,MAAM,KAAK,EAAE;;;YA3EnB,oBAAoB,mDAAsB,IAAI;YAC9C,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,SAAS,GAAG,IAAI;YAC7C,MAAM,SAAS,UAAU,GAAG,IAAI;;EA4XlC,KACQ,OAAO,KAAK,EAAE,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,WAAW,CAAC,CAAA;CAAE;AA7ZzE,wBA6Z4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
1
+ {"version":3,"file":"WInputSuggest.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Input/WInputSuggest.vue"],"names":[],"mappings":"AA+GA;AA2NA,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,SAAS,CAAA;AAE9C,OAAO,EAAC,KAAK,KAAK,EAAgC,MAAM,KAAK,CAAA;yBAe5C,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;WA8YO,mBAAmB,CAAC,2CAAkE,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB;;;;;;MAAsB,GAAG,IAAI;WACpE,GAAG;;gBAvTD,MAAM,IAAI;iBACT,MAAM,IAAI;mBACR,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,MAAM,KAAK,EAAE;;gBALf,MAAM,IAAI;iBACT,MAAM,IAAI;mBACR,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,MAAM,KAAK,EAAE;;;YA3EnB,oBAAoB,mDAAsB,IAAI;YAC9C,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,SAAS,GAAG,IAAI;YAC7C,MAAM,SAAS,UAAU,GAAG,IAAI;;EAwXlC,KACQ,OAAO,KAAK,EAAE,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,WAAW,CAAC,CAAA;CAAE;AAzZzE,wBAyZ4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
@@ -65,8 +65,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
65
65
  savedText: {},
66
66
  topText: { type: Boolean },
67
67
  parentElement: {},
68
- maxHeight: { default: 320 },
69
- maxWidth: { default: 600 },
70
68
  horizontalAlign: { default: HorizontalAlign.FILL },
71
69
  top: { type: Boolean },
72
70
  bottom: { type: Boolean }
@@ -116,8 +114,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
116
114
  onClose: close
117
115
  } : {
118
116
  isOpen: isOpen.value,
119
- maxHeight: _ctx.maxHeight,
120
- maxWidth: _ctx.maxWidth,
121
117
  horizontalAlign: _ctx.horizontalAlign,
122
118
  updateAlign: true,
123
119
  parentElement: unref(inputRef)?.fieldRef
@@ -210,7 +206,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
210
206
  parent: unref(isMobile),
211
207
  class: normalizeClass(["bg-default dark:bg-default-dark w-full", {
212
208
  "pb-[50vh]": unref(isMobile),
213
- "overflow-y-overlay max-h-[inherit] overflow-x-hidden overscroll-contain rounded-xl shadow-md dark:border dark:border-solid dark:border-gray-800": !unref(isMobile),
209
+ "max-h-[inherit] overflow-auto overscroll-contain rounded-xl shadow-md dark:border dark:border-solid dark:border-gray-800": !unref(isMobile),
214
210
  "mt-5": "isTop" in contentScope && contentScope.isTop === false && (_ctx.errorMessage || _ctx.maxLength)
215
211
  }])
216
212
  }, {
@@ -1 +1 @@
1
- {"version":3,"file":"HeaderSettings.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/List/components/HeaderSettings.vue"],"names":[],"mappings":"AAuEA;AAoJA,OAAO,KAAK,EAAC,WAAW,EAAE,UAAU,EAAC,MAAM,UAAU,CAAA;AAWrD,OAAO,EAAC,KAAK,QAAQ,EAAC,MAAM,eAAe,CAAA;yBAQ1B,IAAI,SAAS,WAAW,EAAE,WAAW,EACrD,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;WA6QO,mBAAmB,CAAC;;;;;gBA3QlB,UAAU,CAAC,IAAI,EAAE,WAAW,CAAC;wBACrB,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC;cACrC,QAAQ;qBACD,WAAW;kBACd,OAAO;gBACT,OAAO;mBACJ,OAAO;mBAqQ0E,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;;YAlQL,yBAAyB,SAAS,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC,GAAG,IAAI;YACpE,aAAa,SAAS,QAAQ,GAAG,IAAI;YACrC,aAAa,GAAG,IAAI;;EAoQtB,KACQ,OAAO,KAAK,EAAE,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,WAAW,CAAC,CAAA;CAAE;AAxRzE,wBAwR4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
1
+ {"version":3,"file":"HeaderSettings.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/List/components/HeaderSettings.vue"],"names":[],"mappings":"AAqEA;AAkJA,OAAO,KAAK,EAAC,WAAW,EAAE,UAAU,EAAC,MAAM,UAAU,CAAA;AAWrD,OAAO,EAAC,KAAK,QAAQ,EAAC,MAAM,eAAe,CAAA;yBAQ1B,IAAI,SAAS,WAAW,EAAE,WAAW,EACrD,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;WAyQO,mBAAmB,CAAC;;;;;gBAvQlB,UAAU,CAAC,IAAI,EAAE,WAAW,CAAC;wBACrB,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC;cACrC,QAAQ;qBACD,WAAW;kBACd,OAAO;gBACT,OAAO;mBACJ,OAAO;mBAiQ0E,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;;YA9PL,yBAAyB,SAAS,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC,GAAG,IAAI;YACpE,aAAa,SAAS,QAAQ,GAAG,IAAI;YACrC,aAAa,GAAG,IAAI;;EAgQtB,KACQ,OAAO,KAAK,EAAE,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,WAAW,CAAC,CAAA;CAAE;AApRzE,wBAoR4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
@@ -66,8 +66,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
66
66
  return (_ctx, _cache) => {
67
67
  return openBlock(), createBlock(_sfc_main$1, {
68
68
  "is-open": isOpen.value,
69
- "max-width": 400,
70
- "max-height": 300,
71
69
  "horizontal-align": unref(HorizontalAlign).RIGHT_INNER
72
70
  }, {
73
71
  toggle: withCtx(() => [
@@ -1 +1 @@
1
- {"version":3,"file":"HeaderSort.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/List/components/HeaderSort.vue"],"names":[],"mappings":"AAmCA;AAyFA,OAAO,KAAK,EAAiB,WAAW,EAA8B,UAAU,EAAC,MAAM,UAAU,CAAA;AACjG,OAAO,KAAK,EAAC,SAAS,EAAC,MAAM,eAAe,CAAA;AAW5C,OAAO,EAAC,KAAK,QAAQ,EAAC,MAAM,eAAe,CAAA;yBAI1B,IAAI,SAAS,WAAW,EAAE,WAAW,EACrD,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;WA+LO,mBAAmB,CAAC;;;;;;kBA3LhB,SAAS,CAAC,MAAM,IAAI,CAAC,EAAE;gBACzB,UAAU,CAAC,IAAI,EAAE,WAAW,CAAC;qBACxB,WAAW;mBACb,OAAO;mBAwL0E,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;;YArLL,yBAAyB,SAAS,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC,GAAG,IAAI;YACpE,aAAa,SAAS,QAAQ,GAAG,IAAI;YACrC,aAAa,GAAG,IAAI;YACpB,iBAAiB,SAAS,SAAS,CAAC,MAAM,IAAI,CAAC,EAAE,GAAG,IAAI;;EAsL1D,KACQ,OAAO,KAAK,EAAE,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,WAAW,CAAC,CAAA;CAAE;AA1MzE,wBA0M4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
1
+ {"version":3,"file":"HeaderSort.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/List/components/HeaderSort.vue"],"names":[],"mappings":"AAiCA;AAuFA,OAAO,KAAK,EAAiB,WAAW,EAA8B,UAAU,EAAC,MAAM,UAAU,CAAA;AACjG,OAAO,KAAK,EAAC,SAAS,EAAC,MAAM,eAAe,CAAA;AAW5C,OAAO,EAAC,KAAK,QAAQ,EAAC,MAAM,eAAe,CAAA;yBAI1B,IAAI,SAAS,WAAW,EAAE,WAAW,EACrD,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;WA2LO,mBAAmB,CAAC;;;;;;kBAvLhB,SAAS,CAAC,MAAM,IAAI,CAAC,EAAE;gBACzB,UAAU,CAAC,IAAI,EAAE,WAAW,CAAC;qBACxB,WAAW;mBACb,OAAO;mBAoL0E,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;;YAjLL,yBAAyB,SAAS,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC,GAAG,IAAI;YACpE,aAAa,SAAS,QAAQ,GAAG,IAAI;YACrC,aAAa,GAAG,IAAI;YACpB,iBAAiB,SAAS,SAAS,CAAC,MAAM,IAAI,CAAC,EAAE,GAAG,IAAI;;EAkL1D,KACQ,OAAO,KAAK,EAAE,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,WAAW,CAAC,CAAA;CAAE;AAtMzE,wBAsM4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
@@ -34,8 +34,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
34
34
  return fieldsFlat.value.length ? (openBlock(), createBlock(_sfc_main$1, {
35
35
  key: 0,
36
36
  "is-open": isOpen.value,
37
- "max-width": 300,
38
- "max-height": 300,
39
37
  "horizontal-align": unref(HorizontalAlign).RIGHT_INNER
40
38
  }, {
41
39
  toggle: withCtx(() => [
@@ -1 +1 @@
1
- {"version":3,"file":"ListFilterSelect.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/List/components/ListFilterSelect.vue"],"names":[],"mappings":"AA6CA;AA2EA,OAAO,KAAK,EAAC,eAAe,EAAC,MAAM,UAAU,CAAA;yBAe5B,WAAW,EAC3B,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;WA4KO,mBAAmB,CAAC;;;gBA1KlB,eAAe,CAAC,WAAW,CAAC,EAAE;iBAC7B,MAAM,EAAE;qBACJ,WAAW;mBAwKoE,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;cArKL,QAAQ,SAAS,MAAM,KAAG,IAAI;EAyKhC,KACQ,OAAO,KAAK,EAAE,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,WAAW,CAAC,CAAA;CAAE;AAvLzE,wBAuL4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
1
+ {"version":3,"file":"ListFilterSelect.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/List/components/ListFilterSelect.vue"],"names":[],"mappings":"AA2CA;AAyEA,OAAO,KAAK,EAAC,eAAe,EAAC,MAAM,UAAU,CAAA;yBAe5B,WAAW,EAC3B,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;WAwKO,mBAAmB,CAAC;;;gBAtKlB,eAAe,CAAC,WAAW,CAAC,EAAE;iBAC7B,MAAM,EAAE;qBACJ,WAAW;mBAoKoE,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;cAjKL,QAAQ,SAAS,MAAM,KAAG,IAAI;EAqKhC,KACQ,OAAO,KAAK,EAAE,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,WAAW,CAAC,CAAA;CAAE;AAnLzE,wBAmL4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
@@ -21,8 +21,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
21
21
  return openBlock(), createBlock(_sfc_main$1, {
22
22
  "is-open": isOpen.value,
23
23
  "horizontal-align": unref(HorizontalAlign).FILL,
24
- "max-height": 320,
25
- "max-width": 320,
26
24
  "update-align": ""
27
25
  }, {
28
26
  toggle: withCtx(() => [
@@ -1 +1 @@
1
- {"version":3,"file":"WNavItemExpand.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Nav/WNavItemExpand.vue"],"names":[],"mappings":"AAoFA;AA+JA,OAAO,KAAK,EAAC,kBAAkB,EAAC,MAAM,SAAS,CAAA;AAE/C,OAAO,EAAC,KAAK,KAAK,EAAY,QAAQ,EAAwD,MAAM,KAAK,CAAA;AA2EzG,iBAAS,cAAc;WA0LT,OAAO,IAA6B;;kBAvMtC,MAAM,KAAK,EAAE;eAChB,MAAM,KAAK,EAAE;;kBADV,MAAM,KAAK,EAAE;eAChB,MAAM,KAAK,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAyPoyS,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;EA9C/6S;AAqBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAwBqyS,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;kBAf96S,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":"WNavItemExpand.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Nav/WNavItemExpand.vue"],"names":[],"mappings":"AAkFA;AA6JA,OAAO,KAAK,EAAC,kBAAkB,EAAC,MAAM,SAAS,CAAA;AAE/C,OAAO,EAAC,KAAK,KAAK,EAAY,QAAQ,EAAwD,MAAM,KAAK,CAAA;AA2EzG,iBAAS,cAAc;WAsLT,OAAO,IAA6B;;kBAnMtC,MAAM,KAAK,EAAE;eAChB,MAAM,KAAK,EAAE;;kBADV,MAAM,KAAK,EAAE;eAChB,MAAM,KAAK,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAqPi6S,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;EA9C5iT;AAqBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAwBk6S,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;kBAf3iT,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"}
@@ -58,8 +58,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
58
58
  return openBlock(), createElementBlock("div", null, [
59
59
  createVNode(_sfc_main$1, {
60
60
  "is-open": isDropdownOpen.value && !isActive.value,
61
- "max-width": 320,
62
- "max-height": 320,
63
61
  "horizontal-align": unref(HorizontalAlign).RIGHT_OUTER
64
62
  }, {
65
63
  toggle: withCtx(() => [
@@ -1 +1 @@
1
- {"version":3,"file":"WSelect.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Select/WSelect.vue"],"names":[],"mappings":"AA+KA;AA0cA,OAAO,KAAK,EAAC,qBAAqB,EAA8B,iBAAiB,EAAE,WAAW,EAAC,MAAM,SAAS,CAAA;yBAc7F,KAAK,SAAS,MAAM,GAAG,MAAM,EAAE,IAAI,SAAS,WAAW,EAAE,kBAAkB,EAAE,eAAe,SAAS,qBAAqB,CAAC,IAAI,CAAC,EAChJ,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;WAurBO,mBAAmB,CAAC;;;;;;;sSAAkE,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB;;;2BA5drB,MAAM,KAAG,IAAI;MA4d8B,GAAG,IAAI;WACpE,GAAG;;gBA9aD,MAAM,IAAI;mBACP,MAAM,IAAI;iBACZ,CAAC,KAAK,EAAE,UAAU,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC,KAAK,IAAI;gBACrD,MAAM,IAAI;;gBAHV,MAAM,IAAI;mBACP,MAAM,IAAI;iBACZ,CAAC,KAAK,EAAE,UAAU,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC,KAAK,IAAI;gBACrD,MAAM,IAAI;;;YAhQd,QAAQ,QAAQ,KAAK,GAAG,IAAI;YAC5B,UAAU,QAAQ,KAAK,GAAG,IAAI;YAC9B,OAAO,SAAS,UAAU,GAAG,SAAS,GAAG,IAAI;YAC7C,MAAM,SAAS,UAAU,GAAG,IAAI;YAChC,4BAA4B,SAAS,MAAM,GAAG,SAAS,GAAG,IAAI;YAC9D,YAAY,GAAG,IAAI;;EA0qBrB,KACQ,OAAO,KAAK,EAAE,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,WAAW,CAAC,CAAA;CAAE;AAlsBzE,wBAksB4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
1
+ {"version":3,"file":"WSelect.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Select/WSelect.vue"],"names":[],"mappings":"AAiLA;AA4cA,OAAO,KAAK,EAAC,qBAAqB,EAA8B,iBAAiB,EAAE,WAAW,EAAC,MAAM,SAAS,CAAA;yBAc7F,KAAK,SAAS,MAAM,GAAG,MAAM,EAAE,IAAI,SAAS,WAAW,EAAE,kBAAkB,EAAE,eAAe,SAAS,qBAAqB,CAAC,IAAI,CAAC,EAChJ,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;WA0rBO,mBAAmB,CAAC;;;;;;;sSAAkE,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB;;;2BA/drB,MAAM,KAAG,IAAI;MA+d8B,GAAG,IAAI;WACpE,GAAG;;gBAjbD,MAAM,IAAI;mBACP,MAAM,IAAI;iBACZ,CAAC,KAAK,EAAE,UAAU,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC,KAAK,IAAI;gBACrD,MAAM,IAAI;;gBAHV,MAAM,IAAI;mBACP,MAAM,IAAI;iBACZ,CAAC,KAAK,EAAE,UAAU,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC,KAAK,IAAI;gBACrD,MAAM,IAAI;;;YAhQd,QAAQ,QAAQ,KAAK,GAAG,IAAI;YAC5B,UAAU,QAAQ,KAAK,GAAG,IAAI;YAC9B,OAAO,SAAS,UAAU,GAAG,SAAS,GAAG,IAAI;YAC7C,MAAM,SAAS,UAAU,GAAG,IAAI;YAChC,4BAA4B,SAAS,MAAM,GAAG,SAAS,GAAG,IAAI;YAC9D,YAAY,GAAG,IAAI;;EA6qBrB,KACQ,OAAO,KAAK,EAAE,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,WAAW,CAAC,CAAA;CAAE;AArsBzE,wBAqsB4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}