@quoreadmin/ui 1.10.3 → 1.10.5

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 (85) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/index138.js +155 -105
  3. package/dist/index147.js +1 -1
  4. package/dist/index186.js +4 -4
  5. package/dist/index193.js +8 -8
  6. package/dist/index195.js +8 -8
  7. package/dist/index201.js +7 -7
  8. package/dist/index206.js +2 -2
  9. package/dist/index208.js +14 -14
  10. package/dist/index209.js +1 -1
  11. package/dist/index210.js +1 -1
  12. package/dist/index211.js +3 -3
  13. package/dist/index212.js +6 -6
  14. package/dist/index230.js +159 -159
  15. package/dist/index231.js +228 -20
  16. package/dist/index232.js +36 -19
  17. package/dist/index233.js +10 -22
  18. package/dist/index234.js +113 -185
  19. package/dist/index235.js +25 -57
  20. package/dist/index236.js +77 -31
  21. package/dist/index237.js +19 -39
  22. package/dist/index238.js +19 -126
  23. package/dist/index239.js +16 -34
  24. package/dist/index240.js +20 -80
  25. package/dist/index241.js +10 -10
  26. package/dist/index242.js +3636 -20
  27. package/dist/index243.js +55 -20
  28. package/dist/index244.js +77 -20
  29. package/dist/index245.js +51 -160
  30. package/dist/index246.js +212 -225
  31. package/dist/index247.js +10 -37
  32. package/dist/index248.js +57 -10
  33. package/dist/index249.js +46 -3621
  34. package/dist/index250.js +35 -36
  35. package/dist/index251.js +28 -30
  36. package/dist/index252.js +702 -28
  37. package/dist/index253.js +22 -195
  38. package/dist/index254.js +63 -9
  39. package/dist/index255.js +8 -54
  40. package/dist/index256.js +695 -51
  41. package/dist/index257.js +815 -49
  42. package/dist/index258.js +154 -68
  43. package/dist/index259.js +19 -725
  44. package/dist/index260.js +22 -42
  45. package/dist/index261.js +190 -55
  46. package/dist/index262.js +70 -11
  47. package/dist/index263.js +33 -704
  48. package/dist/index264.js +37 -817
  49. package/dist/index277.js +3 -3
  50. package/dist/index292.js +2 -54
  51. package/dist/index294.js +1534 -26
  52. package/dist/index295.js +386 -22
  53. package/dist/index296.js +2731 -22
  54. package/dist/index297.js +86 -16
  55. package/dist/index298.js +3792 -17
  56. package/dist/index299.js +59 -22
  57. package/dist/index300.js +15 -2
  58. package/dist/index301.js +62 -1512
  59. package/dist/index302.js +172 -356
  60. package/dist/index303.js +210 -2695
  61. package/dist/index304.js +50 -82
  62. package/dist/index305.js +26 -3792
  63. package/dist/index306.js +21 -59
  64. package/dist/index307.js +22 -15
  65. package/dist/index308.js +16 -84
  66. package/dist/index309.js +16 -201
  67. package/dist/index310.js +23 -246
  68. package/dist/index313.js +1 -1
  69. package/dist/index380.js +95 -98
  70. package/dist/index381.js +100 -90
  71. package/dist/index382.js +91 -98
  72. package/dist/index41.js +5 -5
  73. package/dist/src/components/comment/comment.d.ts +6 -0
  74. package/dist/src/components/comment/comment.stories.d.ts +6 -0
  75. package/dist/src/components/comment-section/comment-section.d.ts +6 -0
  76. package/dist/src/components/comment-section/comment-section.stories.d.ts +6 -0
  77. package/dist/src/components/data-filter/data-filter.d.ts +6 -0
  78. package/dist/src/components/data-list/data-list.d.ts +6 -0
  79. package/dist/src/components/grid/grid.stories.d.ts +12 -0
  80. package/dist/src/components/popover/popover.d.ts +6 -0
  81. package/dist/src/components/popover/popover.stories.d.ts +42 -0
  82. package/dist/src/components/room-details-popover/room-details-popover.d.ts +6 -0
  83. package/dist/src/views/lists.vue.d.ts +12 -0
  84. package/dist/src/views/tables.vue.d.ts +6 -0
  85. package/package.json +1 -1
package/dist/index382.js CHANGED
@@ -1,100 +1,93 @@
1
- var l = 200, p = function() {
2
- };
3
- p.prototype.append = function(t) {
4
- return t.length ? (t = p.from(t), !this.length && t || t.length < l && this.leafAppend(t) || this.length < l && t.leafPrepend(this) || this.appendInner(t)) : this;
5
- };
6
- p.prototype.prepend = function(t) {
7
- return t.length ? p.from(t).append(this) : this;
8
- };
9
- p.prototype.appendInner = function(t) {
10
- return new u(this, t);
11
- };
12
- p.prototype.slice = function(t, r) {
13
- return t === void 0 && (t = 0), r === void 0 && (r = this.length), t >= r ? p.empty : this.sliceInner(Math.max(0, t), Math.min(this.length, r));
14
- };
15
- p.prototype.get = function(t) {
16
- if (!(t < 0 || t >= this.length))
17
- return this.getInner(t);
18
- };
19
- p.prototype.forEach = function(t, r, e) {
20
- r === void 0 && (r = 0), e === void 0 && (e = this.length), r <= e ? this.forEachInner(t, r, e, 0) : this.forEachInvertedInner(t, r, e, 0);
21
- };
22
- p.prototype.map = function(t, r, e) {
23
- r === void 0 && (r = 0), e === void 0 && (e = this.length);
24
- var n = [];
25
- return this.forEach(function(i, s) {
26
- return n.push(t(i, s));
27
- }, r, e), n;
28
- };
29
- p.from = function(t) {
30
- return t instanceof p ? t : t && t.length ? new o(t) : p.empty;
31
- };
32
- var o = /* @__PURE__ */ (function(h) {
33
- function t(e) {
34
- h.call(this), this.values = e;
35
- }
36
- h && (t.__proto__ = h), t.prototype = Object.create(h && h.prototype), t.prototype.constructor = t;
37
- var r = { length: { configurable: !0 }, depth: { configurable: !0 } };
38
- return t.prototype.flatten = function() {
39
- return this.values;
40
- }, t.prototype.sliceInner = function(n, i) {
41
- return n == 0 && i == this.length ? this : new t(this.values.slice(n, i));
42
- }, t.prototype.getInner = function(n) {
43
- return this.values[n];
44
- }, t.prototype.forEachInner = function(n, i, s, f) {
45
- for (var a = i; a < s; a++)
46
- if (n(this.values[a], f + a) === !1)
47
- return !1;
48
- }, t.prototype.forEachInvertedInner = function(n, i, s, f) {
49
- for (var a = i - 1; a >= s; a--)
50
- if (n(this.values[a], f + a) === !1)
51
- return !1;
52
- }, t.prototype.leafAppend = function(n) {
53
- if (this.length + n.length <= l)
54
- return new t(this.values.concat(n.flatten()));
55
- }, t.prototype.leafPrepend = function(n) {
56
- if (this.length + n.length <= l)
57
- return new t(n.flatten().concat(this.values));
58
- }, r.length.get = function() {
59
- return this.values.length;
60
- }, r.depth.get = function() {
61
- return 0;
62
- }, Object.defineProperties(t.prototype, r), t;
63
- })(p);
64
- p.empty = new o([]);
65
- var u = /* @__PURE__ */ (function(h) {
66
- function t(r, e) {
67
- h.call(this), this.left = r, this.right = e, this.length = r.length + e.length, this.depth = Math.max(r.depth, e.depth) + 1;
68
- }
69
- return h && (t.__proto__ = h), t.prototype = Object.create(h && h.prototype), t.prototype.constructor = t, t.prototype.flatten = function() {
70
- return this.left.flatten().concat(this.right.flatten());
71
- }, t.prototype.getInner = function(e) {
72
- return e < this.left.length ? this.left.get(e) : this.right.get(e - this.left.length);
73
- }, t.prototype.forEachInner = function(e, n, i, s) {
74
- var f = this.left.length;
75
- if (n < f && this.left.forEachInner(e, n, Math.min(i, f), s) === !1 || i > f && this.right.forEachInner(e, Math.max(n - f, 0), Math.min(this.length, i) - f, s + f) === !1)
76
- return !1;
77
- }, t.prototype.forEachInvertedInner = function(e, n, i, s) {
78
- var f = this.left.length;
79
- if (n > f && this.right.forEachInvertedInner(e, n - f, Math.max(i, f) - f, s + f) === !1 || i < f && this.left.forEachInvertedInner(e, Math.min(n, f), i, s) === !1)
80
- return !1;
81
- }, t.prototype.sliceInner = function(e, n) {
82
- if (e == 0 && n == this.length)
83
- return this;
84
- var i = this.left.length;
85
- return n <= i ? this.left.slice(e, n) : e >= i ? this.right.slice(e - i, n - i) : this.left.slice(e, i).append(this.right.slice(0, n - i));
86
- }, t.prototype.leafAppend = function(e) {
87
- var n = this.right.leafAppend(e);
88
- if (n)
89
- return new t(this.left, n);
90
- }, t.prototype.leafPrepend = function(e) {
91
- var n = this.left.leafPrepend(e);
92
- if (n)
93
- return new t(n, this.right);
94
- }, t.prototype.appendInner = function(e) {
95
- return this.left.depth >= Math.max(this.right.depth, e.depth) + 1 ? new t(this.left, new t(this.right, e)) : new t(this, e);
96
- }, t;
97
- })(p);
1
+ var t = {
2
+ 8: "Backspace",
3
+ 9: "Tab",
4
+ 10: "Enter",
5
+ 12: "NumLock",
6
+ 13: "Enter",
7
+ 16: "Shift",
8
+ 17: "Control",
9
+ 18: "Alt",
10
+ 20: "CapsLock",
11
+ 27: "Escape",
12
+ 32: " ",
13
+ 33: "PageUp",
14
+ 34: "PageDown",
15
+ 35: "End",
16
+ 36: "Home",
17
+ 37: "ArrowLeft",
18
+ 38: "ArrowUp",
19
+ 39: "ArrowRight",
20
+ 40: "ArrowDown",
21
+ 44: "PrintScreen",
22
+ 45: "Insert",
23
+ 46: "Delete",
24
+ 59: ";",
25
+ 61: "=",
26
+ 91: "Meta",
27
+ 92: "Meta",
28
+ 106: "*",
29
+ 107: "+",
30
+ 108: ",",
31
+ 109: "-",
32
+ 110: ".",
33
+ 111: "/",
34
+ 144: "NumLock",
35
+ 145: "ScrollLock",
36
+ 160: "Shift",
37
+ 161: "Shift",
38
+ 162: "Control",
39
+ 163: "Control",
40
+ 164: "Alt",
41
+ 165: "Alt",
42
+ 173: "-",
43
+ 186: ";",
44
+ 187: "=",
45
+ 188: ",",
46
+ 189: "-",
47
+ 190: ".",
48
+ 191: "/",
49
+ 192: "`",
50
+ 219: "[",
51
+ 220: "\\",
52
+ 221: "]",
53
+ 222: "'"
54
+ }, a = {
55
+ 48: ")",
56
+ 49: "!",
57
+ 50: "@",
58
+ 51: "#",
59
+ 52: "$",
60
+ 53: "%",
61
+ 54: "^",
62
+ 55: "&",
63
+ 56: "*",
64
+ 57: "(",
65
+ 59: ":",
66
+ 61: "+",
67
+ 173: "_",
68
+ 186: ":",
69
+ 187: "+",
70
+ 188: "<",
71
+ 189: "_",
72
+ 190: ">",
73
+ 191: "?",
74
+ 192: "~",
75
+ 219: "{",
76
+ 220: "|",
77
+ 221: "}",
78
+ 222: '"'
79
+ }, n = typeof navigator < "u" && /Mac/.test(navigator.platform), y = typeof navigator < "u" && /MSIE \d|Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(navigator.userAgent);
80
+ for (var r = 0; r < 10; r++) t[48 + r] = t[96 + r] = String(r);
81
+ for (var r = 1; r <= 24; r++) t[r + 111] = "F" + r;
82
+ for (var r = 65; r <= 90; r++)
83
+ t[r] = String.fromCharCode(r + 32), a[r] = String.fromCharCode(r);
84
+ for (var i in t) a.hasOwnProperty(i) || (a[i] = t[i]);
85
+ function g(o) {
86
+ var f = n && o.metaKey && o.shiftKey && !o.ctrlKey && !o.altKey || y && o.shiftKey && o.key && o.key.length == 1 || o.key == "Unidentified", e = !f && o.key || (o.shiftKey ? a : t)[o.keyCode] || o.key || "Unidentified";
87
+ return e == "Esc" && (e = "Escape"), e == "Del" && (e = "Delete"), e == "Left" && (e = "ArrowLeft"), e == "Up" && (e = "ArrowUp"), e == "Right" && (e = "ArrowRight"), e == "Down" && (e = "ArrowDown"), e;
88
+ }
98
89
  export {
99
- p as default
90
+ t as base,
91
+ g as keyName,
92
+ a as shift
100
93
  };
package/dist/index41.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import f from "./index138.js";
2
- import { openBlock as o, createElementBlock as n, renderSlot as t, createBlock as p, Transition as a, withCtx as l, normalizeStyle as s, normalizeClass as i, createCommentVNode as d, Teleport as u, createVNode as m, withModifiers as k } from "vue";
2
+ import { openBlock as o, createElementBlock as n, renderSlot as t, createBlock as a, Transition as p, withCtx as l, normalizeStyle as s, normalizeClass as i, createCommentVNode as d, Teleport as u, createVNode as m, withModifiers as k } from "vue";
3
3
  /* empty css */
4
4
  /* empty css */
5
5
  import g from "./index65.js";
@@ -13,11 +13,11 @@ function y(e, r, C, L, $, E) {
13
13
  onClick: e.onClick,
14
14
  onMouseOver: e.onMouseOver
15
15
  }, void 0, !0),
16
- e.teleport ? (o(), p(u, {
16
+ e.teleport ? (o(), a(u, {
17
17
  key: 1,
18
18
  to: e.teleportTo
19
19
  }, [
20
- m(a, {
20
+ m(p, {
21
21
  name: "q-popover-fade",
22
22
  onEnter: e.onEnter,
23
23
  onAfterLeave: e.onAfterLeave
@@ -41,7 +41,7 @@ function y(e, r, C, L, $, E) {
41
41
  ]),
42
42
  _: 3
43
43
  }, 8, ["onEnter", "onAfterLeave"])
44
- ], 8, ["to"])) : (o(), p(a, {
44
+ ], 8, ["to"])) : (o(), a(p, {
45
45
  key: 0,
46
46
  name: "fade",
47
47
  onEnter: e.onEnter,
@@ -66,7 +66,7 @@ function y(e, r, C, L, $, E) {
66
66
  }, 8, ["onEnter", "onAfterLeave"]))
67
67
  ], 544);
68
68
  }
69
- const S = /* @__PURE__ */ g(f, [["render", y], ["__scopeId", "data-v-6cb108c1"]]);
69
+ const S = /* @__PURE__ */ g(f, [["render", y], ["__scopeId", "data-v-41d1d2a6"]]);
70
70
  export {
71
71
  S as default
72
72
  };
@@ -1343,14 +1343,20 @@ declare const QComment: import('vue').DefineComponent<import('vue').ExtractPropT
1343
1343
  top: string;
1344
1344
  left: string;
1345
1345
  transform: string;
1346
+ maxHeight?: string | undefined;
1347
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1346
1348
  }, {
1347
1349
  top: string;
1348
1350
  left: string;
1349
1351
  transform: string;
1352
+ maxHeight?: string;
1353
+ overflowY?: "auto" | "hidden" | "scroll" | "visible";
1350
1354
  } | {
1351
1355
  top: string;
1352
1356
  left: string;
1353
1357
  transform: string;
1358
+ maxHeight?: string | undefined;
1359
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1354
1360
  }>;
1355
1361
  alignment: import('vue').ComputedRef<string>;
1356
1362
  positioning: import('vue').ComputedRef<string>;
@@ -1311,14 +1311,20 @@ export declare const Primary: {
1311
1311
  top: string;
1312
1312
  left: string;
1313
1313
  transform: string;
1314
+ maxHeight?: string | undefined;
1315
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1314
1316
  }, {
1315
1317
  top: string;
1316
1318
  left: string;
1317
1319
  transform: string;
1320
+ maxHeight?: string;
1321
+ overflowY?: "auto" | "hidden" | "scroll" | "visible";
1318
1322
  } | {
1319
1323
  top: string;
1320
1324
  left: string;
1321
1325
  transform: string;
1326
+ maxHeight?: string | undefined;
1327
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1322
1328
  }>;
1323
1329
  alignment: import('vue').ComputedRef<string>;
1324
1330
  positioning: import('vue').ComputedRef<string>;
@@ -1495,14 +1495,20 @@ declare const QCommentSection: import('vue').DefineComponent<import('vue').Extra
1495
1495
  top: string;
1496
1496
  left: string;
1497
1497
  transform: string;
1498
+ maxHeight?: string | undefined;
1499
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1498
1500
  }, {
1499
1501
  top: string;
1500
1502
  left: string;
1501
1503
  transform: string;
1504
+ maxHeight?: string;
1505
+ overflowY?: "auto" | "hidden" | "scroll" | "visible";
1502
1506
  } | {
1503
1507
  top: string;
1504
1508
  left: string;
1505
1509
  transform: string;
1510
+ maxHeight?: string | undefined;
1511
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1506
1512
  }>;
1507
1513
  alignment: import('vue').ComputedRef<string>;
1508
1514
  positioning: import('vue').ComputedRef<string>;
@@ -1465,14 +1465,20 @@ export declare const Primary: {
1465
1465
  top: string;
1466
1466
  left: string;
1467
1467
  transform: string;
1468
+ maxHeight?: string | undefined;
1469
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1468
1470
  }, {
1469
1471
  top: string;
1470
1472
  left: string;
1471
1473
  transform: string;
1474
+ maxHeight?: string;
1475
+ overflowY?: "auto" | "hidden" | "scroll" | "visible";
1472
1476
  } | {
1473
1477
  top: string;
1474
1478
  left: string;
1475
1479
  transform: string;
1480
+ maxHeight?: string | undefined;
1481
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1476
1482
  }>;
1477
1483
  alignment: import('vue').ComputedRef<string>;
1478
1484
  positioning: import('vue').ComputedRef<string>;
@@ -806,14 +806,20 @@ declare const QDataFilter: import('vue').DefineComponent<import('vue').ExtractPr
806
806
  top: string;
807
807
  left: string;
808
808
  transform: string;
809
+ maxHeight?: string | undefined;
810
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
809
811
  }, {
810
812
  top: string;
811
813
  left: string;
812
814
  transform: string;
815
+ maxHeight?: string;
816
+ overflowY?: "auto" | "hidden" | "scroll" | "visible";
813
817
  } | {
814
818
  top: string;
815
819
  left: string;
816
820
  transform: string;
821
+ maxHeight?: string | undefined;
822
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
817
823
  }>;
818
824
  alignment: import('vue').ComputedRef<string>;
819
825
  positioning: import('vue').ComputedRef<string>;
@@ -977,14 +977,20 @@ declare const QDataList: import('vue').DefineComponent<import('vue').ExtractProp
977
977
  top: string;
978
978
  left: string;
979
979
  transform: string;
980
+ maxHeight?: string | undefined;
981
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
980
982
  }, {
981
983
  top: string;
982
984
  left: string;
983
985
  transform: string;
986
+ maxHeight?: string;
987
+ overflowY?: "auto" | "hidden" | "scroll" | "visible";
984
988
  } | {
985
989
  top: string;
986
990
  left: string;
987
991
  transform: string;
992
+ maxHeight?: string | undefined;
993
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
988
994
  }>;
989
995
  alignment: import('vue').ComputedRef<string>;
990
996
  positioning: import('vue').ComputedRef<string>;
@@ -2386,14 +2386,20 @@ export declare const PMGrid: {
2386
2386
  top: string;
2387
2387
  left: string;
2388
2388
  transform: string;
2389
+ maxHeight?: string | undefined;
2390
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
2389
2391
  }, {
2390
2392
  top: string;
2391
2393
  left: string;
2392
2394
  transform: string;
2395
+ maxHeight?: string;
2396
+ overflowY?: "auto" | "hidden" | "scroll" | "visible";
2393
2397
  } | {
2394
2398
  top: string;
2395
2399
  left: string;
2396
2400
  transform: string;
2401
+ maxHeight?: string | undefined;
2402
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
2397
2403
  }>;
2398
2404
  alignment: import('vue').ComputedRef<string>;
2399
2405
  positioning: import('vue').ComputedRef<string>;
@@ -3035,14 +3041,20 @@ export declare const PMGrid: {
3035
3041
  top: string;
3036
3042
  left: string;
3037
3043
  transform: string;
3044
+ maxHeight?: string | undefined;
3045
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
3038
3046
  }, {
3039
3047
  top: string;
3040
3048
  left: string;
3041
3049
  transform: string;
3050
+ maxHeight?: string;
3051
+ overflowY?: "auto" | "hidden" | "scroll" | "visible";
3042
3052
  } | {
3043
3053
  top: string;
3044
3054
  left: string;
3045
3055
  transform: string;
3056
+ maxHeight?: string | undefined;
3057
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
3046
3058
  }>;
3047
3059
  alignment: import('vue').ComputedRef<string>;
3048
3060
  positioning: import('vue').ComputedRef<string>;
@@ -86,14 +86,20 @@ declare const QPopover: import('vue').DefineComponent<import('vue').ExtractPropT
86
86
  top: string;
87
87
  left: string;
88
88
  transform: string;
89
+ maxHeight?: string | undefined;
90
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
89
91
  }, {
90
92
  top: string;
91
93
  left: string;
92
94
  transform: string;
95
+ maxHeight?: string;
96
+ overflowY?: "auto" | "hidden" | "scroll" | "visible";
93
97
  } | {
94
98
  top: string;
95
99
  left: string;
96
100
  transform: string;
101
+ maxHeight?: string | undefined;
102
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
97
103
  }>;
98
104
  alignment: import('vue').ComputedRef<string>;
99
105
  positioning: import('vue').ComputedRef<string>;
@@ -67,14 +67,20 @@ export declare const selectable: {
67
67
  top: string;
68
68
  left: string;
69
69
  transform: string;
70
+ maxHeight?: string | undefined;
71
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
70
72
  }, {
71
73
  top: string;
72
74
  left: string;
73
75
  transform: string;
76
+ maxHeight?: string;
77
+ overflowY?: "auto" | "hidden" | "scroll" | "visible";
74
78
  } | {
75
79
  top: string;
76
80
  left: string;
77
81
  transform: string;
82
+ maxHeight?: string | undefined;
83
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
78
84
  }>;
79
85
  alignment: import('vue').ComputedRef<string>;
80
86
  positioning: import('vue').ComputedRef<string>;
@@ -236,14 +242,20 @@ export declare const Info1: {
236
242
  top: string;
237
243
  left: string;
238
244
  transform: string;
245
+ maxHeight?: string | undefined;
246
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
239
247
  }, {
240
248
  top: string;
241
249
  left: string;
242
250
  transform: string;
251
+ maxHeight?: string;
252
+ overflowY?: "auto" | "hidden" | "scroll" | "visible";
243
253
  } | {
244
254
  top: string;
245
255
  left: string;
246
256
  transform: string;
257
+ maxHeight?: string | undefined;
258
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
247
259
  }>;
248
260
  alignment: import('vue').ComputedRef<string>;
249
261
  positioning: import('vue').ComputedRef<string>;
@@ -406,14 +418,20 @@ export declare const PositionRight: {
406
418
  top: string;
407
419
  left: string;
408
420
  transform: string;
421
+ maxHeight?: string | undefined;
422
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
409
423
  }, {
410
424
  top: string;
411
425
  left: string;
412
426
  transform: string;
427
+ maxHeight?: string;
428
+ overflowY?: "auto" | "hidden" | "scroll" | "visible";
413
429
  } | {
414
430
  top: string;
415
431
  left: string;
416
432
  transform: string;
433
+ maxHeight?: string | undefined;
434
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
417
435
  }>;
418
436
  alignment: import('vue').ComputedRef<string>;
419
437
  positioning: import('vue').ComputedRef<string>;
@@ -576,14 +594,20 @@ export declare const Info2: {
576
594
  top: string;
577
595
  left: string;
578
596
  transform: string;
597
+ maxHeight?: string | undefined;
598
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
579
599
  }, {
580
600
  top: string;
581
601
  left: string;
582
602
  transform: string;
603
+ maxHeight?: string;
604
+ overflowY?: "auto" | "hidden" | "scroll" | "visible";
583
605
  } | {
584
606
  top: string;
585
607
  left: string;
586
608
  transform: string;
609
+ maxHeight?: string | undefined;
610
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
587
611
  }>;
588
612
  alignment: import('vue').ComputedRef<string>;
589
613
  positioning: import('vue').ComputedRef<string>;
@@ -746,14 +770,20 @@ export declare const FilterSizeSm: {
746
770
  top: string;
747
771
  left: string;
748
772
  transform: string;
773
+ maxHeight?: string | undefined;
774
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
749
775
  }, {
750
776
  top: string;
751
777
  left: string;
752
778
  transform: string;
779
+ maxHeight?: string;
780
+ overflowY?: "auto" | "hidden" | "scroll" | "visible";
753
781
  } | {
754
782
  top: string;
755
783
  left: string;
756
784
  transform: string;
785
+ maxHeight?: string | undefined;
786
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
757
787
  }>;
758
788
  alignment: import('vue').ComputedRef<string>;
759
789
  positioning: import('vue').ComputedRef<string>;
@@ -916,14 +946,20 @@ export declare const FilterSizeMd: {
916
946
  top: string;
917
947
  left: string;
918
948
  transform: string;
949
+ maxHeight?: string | undefined;
950
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
919
951
  }, {
920
952
  top: string;
921
953
  left: string;
922
954
  transform: string;
955
+ maxHeight?: string;
956
+ overflowY?: "auto" | "hidden" | "scroll" | "visible";
923
957
  } | {
924
958
  top: string;
925
959
  left: string;
926
960
  transform: string;
961
+ maxHeight?: string | undefined;
962
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
927
963
  }>;
928
964
  alignment: import('vue').ComputedRef<string>;
929
965
  positioning: import('vue').ComputedRef<string>;
@@ -1086,14 +1122,20 @@ export declare const FilterSizeLg: {
1086
1122
  top: string;
1087
1123
  left: string;
1088
1124
  transform: string;
1125
+ maxHeight?: string | undefined;
1126
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1089
1127
  }, {
1090
1128
  top: string;
1091
1129
  left: string;
1092
1130
  transform: string;
1131
+ maxHeight?: string;
1132
+ overflowY?: "auto" | "hidden" | "scroll" | "visible";
1093
1133
  } | {
1094
1134
  top: string;
1095
1135
  left: string;
1096
1136
  transform: string;
1137
+ maxHeight?: string | undefined;
1138
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1097
1139
  }>;
1098
1140
  alignment: import('vue').ComputedRef<string>;
1099
1141
  positioning: import('vue').ComputedRef<string>;
@@ -1652,14 +1652,20 @@ declare const QRoomDetailsPopover: import('vue').DefineComponent<import('vue').E
1652
1652
  top: string;
1653
1653
  left: string;
1654
1654
  transform: string;
1655
+ maxHeight?: string | undefined;
1656
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1655
1657
  }, {
1656
1658
  top: string;
1657
1659
  left: string;
1658
1660
  transform: string;
1661
+ maxHeight?: string;
1662
+ overflowY?: "auto" | "hidden" | "scroll" | "visible";
1659
1663
  } | {
1660
1664
  top: string;
1661
1665
  left: string;
1662
1666
  transform: string;
1667
+ maxHeight?: string | undefined;
1668
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1663
1669
  }>;
1664
1670
  alignment: import('vue').ComputedRef<string>;
1665
1671
  positioning: import('vue').ComputedRef<string>;
@@ -1115,14 +1115,20 @@ declare const _default: import('vue').DefineComponent<{}, {
1115
1115
  top: string;
1116
1116
  left: string;
1117
1117
  transform: string;
1118
+ maxHeight?: string | undefined;
1119
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1118
1120
  }, {
1119
1121
  top: string;
1120
1122
  left: string;
1121
1123
  transform: string;
1124
+ maxHeight?: string;
1125
+ overflowY?: "auto" | "hidden" | "scroll" | "visible";
1122
1126
  } | {
1123
1127
  top: string;
1124
1128
  left: string;
1125
1129
  transform: string;
1130
+ maxHeight?: string | undefined;
1131
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1126
1132
  }>;
1127
1133
  alignment: import('vue').ComputedRef<string>;
1128
1134
  positioning: import('vue').ComputedRef<string>;
@@ -2170,14 +2176,20 @@ declare const _default: import('vue').DefineComponent<{}, {
2170
2176
  top: string;
2171
2177
  left: string;
2172
2178
  transform: string;
2179
+ maxHeight?: string | undefined;
2180
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
2173
2181
  }, {
2174
2182
  top: string;
2175
2183
  left: string;
2176
2184
  transform: string;
2185
+ maxHeight?: string;
2186
+ overflowY?: "auto" | "hidden" | "scroll" | "visible";
2177
2187
  } | {
2178
2188
  top: string;
2179
2189
  left: string;
2180
2190
  transform: string;
2191
+ maxHeight?: string | undefined;
2192
+ overflowY?: "auto" | "hidden" | "scroll" | "visible" | undefined;
2181
2193
  }>;
2182
2194
  alignment: import('vue').ComputedRef<string>;
2183
2195
  positioning: import('vue').ComputedRef<string>;