bt-core-app 2.2.5 → 2.2.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 (181) hide show
  1. package/dist/_virtual/VCheckbox.sass.mjs +1 -0
  2. package/dist/_virtual/VChip.sass.mjs +1 -0
  3. package/dist/_virtual/VChipGroup.sass.mjs +1 -0
  4. package/dist/_virtual/VColorPicker.sass.mjs +1 -0
  5. package/dist/_virtual/VColorPickerCanvas.sass.mjs +1 -0
  6. package/dist/_virtual/VColorPickerEdit.sass.mjs +1 -0
  7. package/dist/_virtual/VColorPickerPreview.sass.mjs +1 -0
  8. package/dist/_virtual/VColorPickerSwatches.sass.mjs +1 -0
  9. package/dist/_virtual/VCombobox.sass.mjs +1 -0
  10. package/dist/_virtual/VContainer.sass.mjs +1 -0
  11. package/dist/_virtual/VCounter.sass.mjs +1 -0
  12. package/dist/_virtual/VDialog.sass.mjs +1 -0
  13. package/dist/_virtual/VField.sass.mjs +1 -0
  14. package/dist/_virtual/VGrid.sass.mjs +1 -0
  15. package/dist/_virtual/VInput.sass.mjs +1 -0
  16. package/dist/_virtual/VLabel.sass.mjs +1 -0
  17. package/dist/_virtual/VMessages.sass.mjs +1 -0
  18. package/dist/_virtual/VNavigationDrawer.sass.mjs +1 -0
  19. package/dist/_virtual/VPagination.sass.mjs +1 -0
  20. package/dist/_virtual/VPicker.sass.mjs +1 -0
  21. package/dist/_virtual/VRating.sass.mjs +1 -0
  22. package/dist/_virtual/VSelect.sass.mjs +1 -0
  23. package/dist/_virtual/VSelectionControl.sass.mjs +1 -0
  24. package/dist/_virtual/VSelectionControlGroup.sass.mjs +1 -0
  25. package/dist/_virtual/VSheet.sass.mjs +1 -0
  26. package/dist/_virtual/VSlideGroup.sass.mjs +1 -0
  27. package/dist/_virtual/VSlider.sass.mjs +1 -0
  28. package/dist/_virtual/VSliderThumb.sass.mjs +1 -0
  29. package/dist/_virtual/VSliderTrack.sass.mjs +1 -0
  30. package/dist/_virtual/VSpacer.sass.mjs +1 -0
  31. package/dist/_virtual/VSwitch.sass.mjs +1 -0
  32. package/dist/_virtual/VTab.sass.mjs +1 -0
  33. package/dist/_virtual/VTable.sass.mjs +1 -0
  34. package/dist/_virtual/VTabs.sass.mjs +1 -0
  35. package/dist/_virtual/VTextField.sass.mjs +1 -0
  36. package/dist/_virtual/VTextarea.sass.mjs +1 -0
  37. package/dist/_virtual/VVirtualScroll.sass.mjs +1 -0
  38. package/dist/_virtual/VWindow.sass.mjs +1 -0
  39. package/dist/bt-core/core/node_modules/vuetify/lib/components/VBtnToggle/VBtnToggle.mjs +14 -14
  40. package/dist/bt-core/core/node_modules/vuetify/lib/components/VCheckbox/VCheckbox.mjs +74 -0
  41. package/dist/bt-core/core/node_modules/vuetify/lib/components/VCheckbox/VCheckboxBtn.mjs +53 -0
  42. package/dist/bt-core/core/node_modules/vuetify/lib/components/VChip/VChip.mjs +263 -0
  43. package/dist/bt-core/core/node_modules/vuetify/lib/components/VChipGroup/VChipGroup.mjs +87 -0
  44. package/dist/bt-core/core/node_modules/vuetify/lib/components/VColorPicker/VColorPicker.mjs +161 -0
  45. package/dist/bt-core/core/node_modules/vuetify/lib/components/VColorPicker/VColorPickerCanvas.mjs +166 -0
  46. package/dist/bt-core/core/node_modules/vuetify/lib/components/VColorPicker/VColorPickerEdit.mjs +97 -0
  47. package/dist/bt-core/core/node_modules/vuetify/lib/components/VColorPicker/VColorPickerPreview.mjs +123 -0
  48. package/dist/bt-core/core/node_modules/vuetify/lib/components/VColorPicker/VColorPickerSwatches.mjs +72 -0
  49. package/dist/bt-core/core/node_modules/vuetify/lib/components/VColorPicker/util/index.mjs +193 -0
  50. package/dist/bt-core/core/node_modules/vuetify/lib/components/VCombobox/VCombobox.mjs +501 -0
  51. package/dist/bt-core/core/node_modules/vuetify/lib/components/VCounter/VCounter.mjs +51 -0
  52. package/dist/bt-core/core/node_modules/vuetify/lib/components/VDialog/VDialog.mjs +103 -0
  53. package/dist/bt-core/core/node_modules/vuetify/lib/components/VField/VField.mjs +295 -0
  54. package/dist/bt-core/core/node_modules/vuetify/lib/components/VField/VFieldLabel.mjs +28 -0
  55. package/dist/bt-core/core/node_modules/vuetify/lib/components/VForm/VForm.mjs +53 -0
  56. package/dist/bt-core/core/node_modules/vuetify/lib/components/VGrid/VCol.mjs +98 -0
  57. package/dist/bt-core/core/node_modules/vuetify/lib/components/VGrid/VContainer.mjs +41 -0
  58. package/dist/bt-core/core/node_modules/vuetify/lib/components/VGrid/VRow.mjs +104 -0
  59. package/dist/bt-core/core/node_modules/vuetify/lib/components/VGrid/VSpacer.mjs +6 -0
  60. package/dist/bt-core/core/node_modules/vuetify/lib/components/VHover/VHover.mjs +41 -0
  61. package/dist/bt-core/core/node_modules/vuetify/lib/components/VInput/InputIcon.mjs +40 -0
  62. package/dist/bt-core/core/node_modules/vuetify/lib/components/VInput/VInput.mjs +154 -0
  63. package/dist/bt-core/core/node_modules/vuetify/lib/components/VLabel/VLabel.mjs +36 -0
  64. package/dist/bt-core/core/node_modules/vuetify/lib/components/VMessages/VMessages.mjs +55 -0
  65. package/dist/bt-core/core/node_modules/vuetify/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +247 -0
  66. package/dist/bt-core/core/node_modules/vuetify/lib/components/VNavigationDrawer/sticky.mjs +44 -0
  67. package/dist/bt-core/core/node_modules/vuetify/lib/components/VNavigationDrawer/touch.mjs +100 -0
  68. package/dist/bt-core/core/node_modules/vuetify/lib/components/VPagination/VPagination.mjs +315 -0
  69. package/dist/bt-core/core/node_modules/vuetify/lib/components/VRating/VRating.mjs +217 -0
  70. package/dist/bt-core/core/node_modules/vuetify/lib/components/VSelect/VSelect.mjs +475 -0
  71. package/dist/bt-core/core/node_modules/vuetify/lib/components/VSelect/useScrolling.mjs +57 -0
  72. package/dist/bt-core/core/node_modules/vuetify/lib/components/VSelectionControl/VSelectionControl.mjs +183 -0
  73. package/dist/bt-core/core/node_modules/vuetify/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs +106 -0
  74. package/dist/bt-core/core/node_modules/vuetify/lib/components/VSheet/VSheet.mjs +61 -0
  75. package/dist/bt-core/core/node_modules/vuetify/lib/components/VSlideGroup/VSlideGroup.mjs +287 -0
  76. package/dist/bt-core/core/node_modules/vuetify/lib/components/VSlideGroup/helpers.mjs +54 -0
  77. package/dist/bt-core/core/node_modules/vuetify/lib/components/VSlider/VSlider.mjs +159 -0
  78. package/dist/bt-core/core/node_modules/vuetify/lib/components/VSlider/VSliderThumb.mjs +176 -0
  79. package/dist/bt-core/core/node_modules/vuetify/lib/components/VSlider/VSliderTrack.mjs +109 -0
  80. package/dist/bt-core/core/node_modules/vuetify/lib/components/VSlider/slider.mjs +242 -0
  81. package/dist/bt-core/core/node_modules/vuetify/lib/components/VSwitch/VSwitch.mjs +172 -0
  82. package/dist/bt-core/core/node_modules/vuetify/lib/components/VTable/VTable.mjs +66 -0
  83. package/dist/bt-core/core/node_modules/vuetify/lib/components/VTabs/VTab.mjs +126 -0
  84. package/dist/bt-core/core/node_modules/vuetify/lib/components/VTabs/VTabs.mjs +153 -0
  85. package/dist/bt-core/core/node_modules/vuetify/lib/components/VTabs/VTabsWindow.mjs +48 -0
  86. package/dist/bt-core/core/node_modules/vuetify/lib/components/VTabs/VTabsWindowItem.mjs +29 -0
  87. package/dist/bt-core/core/node_modules/vuetify/lib/components/VTabs/shared.mjs +4 -0
  88. package/dist/bt-core/core/node_modules/vuetify/lib/components/VTextField/VTextField.mjs +204 -0
  89. package/dist/bt-core/core/node_modules/vuetify/lib/components/VTextarea/VTextarea.mjs +258 -0
  90. package/dist/bt-core/core/node_modules/vuetify/lib/components/VToolbar/VToolbarItems.mjs +38 -0
  91. package/dist/bt-core/core/node_modules/vuetify/lib/components/VVirtualScroll/VVirtualScroll.mjs +106 -0
  92. package/dist/bt-core/core/node_modules/vuetify/lib/components/VVirtualScroll/VVirtualScrollItem.mjs +47 -0
  93. package/dist/bt-core/core/node_modules/vuetify/lib/components/VWindow/VWindow.mjs +211 -0
  94. package/dist/bt-core/core/node_modules/vuetify/lib/components/VWindow/VWindowItem.mjs +93 -0
  95. package/dist/bt-core/core/node_modules/vuetify/lib/components/transitions/index.mjs +21 -19
  96. package/dist/bt-core/core/node_modules/vuetify/lib/composables/autocomplete.mjs +21 -0
  97. package/dist/bt-core/core/node_modules/vuetify/lib/composables/autofocus.mjs +14 -0
  98. package/dist/bt-core/core/node_modules/vuetify/lib/composables/display.mjs +21 -12
  99. package/dist/bt-core/core/node_modules/vuetify/lib/composables/filter.mjs +125 -0
  100. package/dist/bt-core/core/node_modules/vuetify/lib/composables/focus.mjs +31 -0
  101. package/dist/bt-core/core/node_modules/vuetify/lib/composables/focusGroups.mjs +54 -0
  102. package/dist/bt-core/core/node_modules/vuetify/lib/composables/form.mjs +112 -0
  103. package/dist/bt-core/core/node_modules/vuetify/lib/composables/goto.mjs +86 -0
  104. package/dist/bt-core/core/node_modules/vuetify/lib/composables/icons.mjs +4 -4
  105. package/dist/bt-core/core/node_modules/vuetify/lib/composables/layout.mjs +43 -0
  106. package/dist/bt-core/core/node_modules/vuetify/lib/composables/list-items.mjs +92 -5
  107. package/dist/bt-core/core/node_modules/vuetify/lib/composables/menuActivator.mjs +24 -0
  108. package/dist/bt-core/core/node_modules/vuetify/lib/composables/nested/nested.mjs +1 -1
  109. package/dist/bt-core/core/node_modules/vuetify/lib/composables/refs.mjs +15 -0
  110. package/dist/bt-core/core/node_modules/vuetify/lib/composables/touch.mjs +73 -0
  111. package/dist/bt-core/core/node_modules/vuetify/lib/composables/validation.mjs +139 -0
  112. package/dist/bt-core/core/node_modules/vuetify/lib/composables/virtual.mjs +164 -0
  113. package/dist/bt-core/core/node_modules/vuetify/lib/directives/touch/index.mjs +89 -0
  114. package/dist/bt-core/core/node_modules/vuetify/lib/labs/VPicker/VPicker.mjs +77 -0
  115. package/dist/bt-core/core/node_modules/vuetify/lib/labs/VPicker/VPickerTitle.mjs +5 -0
  116. package/dist/bt-core/core/node_modules/vuetify/lib/labs/rules/rules.mjs +15 -0
  117. package/dist/bt-core/core/node_modules/vuetify/lib/util/color/transformSRGB.mjs +16 -0
  118. package/dist/bt-core/core/node_modules/vuetify/lib/util/colorUtils.mjs +133 -50
  119. package/dist/bt-core/core/node_modules/vuetify/lib/util/easing.mjs +20 -4
  120. package/dist/bt-core/core/node_modules/vuetify/lib/util/globals.mjs +2 -1
  121. package/dist/bt-core/core/node_modules/vuetify/lib/util/helpers.mjs +248 -141
  122. package/dist/components/BT-Assistant-Menu.vue.mjs +226 -211
  123. package/dist/components/BT-Avatar.vue.mjs +31 -31
  124. package/dist/components/BT-Background-Task.vue.mjs +30 -28
  125. package/dist/components/BT-Blade-Item.vue.mjs +111 -102
  126. package/dist/components/BT-Blade-Items.vue.mjs +2 -2
  127. package/dist/components/BT-Blade-Items.vue2.mjs +413 -402
  128. package/dist/components/BT-Blade-Steps.vue.mjs +1 -1
  129. package/dist/components/BT-Blade-Steps.vue2.mjs +597 -583
  130. package/dist/components/BT-Blade.vue.mjs +19 -19
  131. package/dist/components/BT-Btn.vue.mjs +23 -25
  132. package/dist/components/BT-Camera-Overlay.vue.mjs +72 -68
  133. package/dist/components/BT-Col.vue.mjs +17 -19
  134. package/dist/components/BT-Color-Picker-Menu.vue.mjs +51 -49
  135. package/dist/components/BT-Cosmetics-Menu.vue.mjs +180 -173
  136. package/dist/components/BT-Cron.vue.mjs +249 -235
  137. package/dist/components/BT-Date-Select.vue.mjs +46 -47
  138. package/dist/components/BT-Demo-Profile-Select.vue.mjs +40 -40
  139. package/dist/components/BT-Dialog-Confirm.vue.mjs +39 -39
  140. package/dist/components/BT-Dialog-Date.vue.mjs +22 -19
  141. package/dist/components/BT-Dialog-Number.vue.mjs +125 -121
  142. package/dist/components/BT-Dialog-Select.vue.mjs +107 -97
  143. package/dist/components/BT-Divider.vue.mjs +20 -21
  144. package/dist/components/BT-Drag-Counter.vue.mjs +2 -2
  145. package/dist/components/BT-Drag-Counter.vue2.mjs +58 -56
  146. package/dist/components/BT-Entity.vue.mjs +50 -48
  147. package/dist/components/BT-Error.vue.mjs +16 -15
  148. package/dist/components/BT-Field-Checkbox.vue.mjs +30 -31
  149. package/dist/components/BT-Field-Date.vue.mjs +87 -84
  150. package/dist/components/BT-Field-Entity.vue.mjs +20 -16
  151. package/dist/components/BT-Field-Select-Simple.vue.mjs +24 -26
  152. package/dist/components/BT-Field-Select.vue.mjs +32 -34
  153. package/dist/components/BT-Field-String.vue.mjs +54 -52
  154. package/dist/components/BT-Field-Switch.vue.mjs +44 -43
  155. package/dist/components/BT-Field-Tags.vue.mjs +57 -55
  156. package/dist/components/BT-Field-Textarea.vue.mjs +44 -43
  157. package/dist/components/BT-Field-Trigger.vue.mjs +276 -270
  158. package/dist/components/BT-Field.vue.mjs +39 -38
  159. package/dist/components/BT-Form-Builder.vue.mjs +342 -322
  160. package/dist/components/BT-Form-Field.vue.mjs +81 -75
  161. package/dist/components/BT-Form.vue.mjs +263 -253
  162. package/dist/components/BT-Header-Option.vue.mjs +10 -9
  163. package/dist/components/BT-Image-Select.vue.mjs +186 -177
  164. package/dist/components/BT-Json.vue.mjs +29 -30
  165. package/dist/components/BT-Loader.vue.mjs +32 -31
  166. package/dist/components/BT-Nav-Sidebar.vue.mjs +130 -124
  167. package/dist/components/BT-Number.vue.mjs +2 -2
  168. package/dist/components/BT-Number.vue2.mjs +17 -19
  169. package/dist/components/BT-Numpad.vue.mjs +71 -66
  170. package/dist/components/BT-Select-List-Box.vue.mjs +157 -144
  171. package/dist/components/BT-Select-Simple.vue.mjs +21 -23
  172. package/dist/components/BT-Select.vue.mjs +36 -37
  173. package/dist/components/BT-Signature-Overlay.vue.mjs +63 -60
  174. package/dist/components/BT-Signature.vue.mjs +66 -64
  175. package/dist/components/BT-Slider.vue.mjs +69 -61
  176. package/dist/components/BT-Square-Check.vue.mjs +24 -22
  177. package/dist/components/BT-Status-Item.vue.mjs +18 -16
  178. package/dist/components/BT-Tags.vue.mjs +21 -22
  179. package/dist/components/BT-Tour.vue.mjs +69 -65
  180. package/dist/style.css +1 -1
  181. package/package.json +1 -1
@@ -1,39 +1,39 @@
1
- import { Fragment as O, reactive as P, watchEffect as A, toRef as C, capitalize as S, shallowRef as b } from "vue";
2
- import { consoleError as v } from "./console.mjs";
3
- import { IN_BROWSER as p } from "./globals.mjs";
4
- function g(e, t, n) {
5
- x(e, t), t.set(e, n);
1
+ import { Fragment as y, reactive as b, watchEffect as O, toRef as v, capitalize as T, isVNode as S, Comment as R, shallowRef as x, camelize as F, unref as M } from "vue";
2
+ import { consoleError as $ } from "./console.mjs";
3
+ import { IN_BROWSER as w } from "./globals.mjs";
4
+ function d(e, t, n) {
5
+ I(e, t), t.set(e, n);
6
6
  }
7
- function x(e, t) {
7
+ function I(e, t) {
8
8
  if (t.has(e))
9
9
  throw new TypeError("Cannot initialize the same private elements twice on an object");
10
10
  }
11
- function m(e, t, n) {
12
- return e.set(y(e, t), n), n;
11
+ function g(e, t, n) {
12
+ return e.set(A(e, t), n), n;
13
13
  }
14
- function o(e, t) {
15
- return e.get(y(e, t));
14
+ function s(e, t) {
15
+ return e.get(A(e, t));
16
16
  }
17
- function y(e, t, n) {
17
+ function A(e, t, n) {
18
18
  if (typeof e == "function" ? e === t : e.has(t))
19
19
  return arguments.length < 3 ? t : n;
20
20
  throw new TypeError("Private element is not present on this object");
21
21
  }
22
- function w(e, t, n) {
22
+ function P(e, t, n) {
23
23
  const r = t.length - 1;
24
24
  if (r < 0)
25
25
  return e === void 0 ? n : e;
26
- for (let i = 0; i < r; i++) {
26
+ for (let o = 0; o < r; o++) {
27
27
  if (e == null)
28
28
  return n;
29
- e = e[t[i]];
29
+ e = e[t[o]];
30
30
  }
31
31
  return e == null || e[t[r]] === void 0 ? n : e[t[r]];
32
32
  }
33
- function T(e, t, n) {
34
- return e == null || !t || typeof t != "string" ? n : e[t] !== void 0 ? e[t] : (t = t.replace(/\[(\w+)\]/g, ".$1"), t = t.replace(/^\./, ""), w(e, t.split("."), n));
33
+ function D(e, t, n) {
34
+ return e == null || !t || typeof t != "string" ? n : e[t] !== void 0 ? e[t] : (t = t.replace(/\[(\w+)\]/g, ".$1"), t = t.replace(/^\./, ""), P(e, t.split("."), n));
35
35
  }
36
- function L(e, t, n) {
36
+ function _(e, t, n) {
37
37
  if (t === !0)
38
38
  return e === void 0 ? n : e;
39
39
  if (t == null || typeof t == "boolean")
@@ -41,67 +41,123 @@ function L(e, t, n) {
41
41
  if (e !== Object(e)) {
42
42
  if (typeof t != "function")
43
43
  return n;
44
- const i = t(e, n);
45
- return typeof i > "u" ? n : i;
44
+ const o = t(e, n);
45
+ return typeof o > "u" ? n : o;
46
46
  }
47
47
  if (typeof t == "string")
48
- return T(e, t, n);
48
+ return D(e, t, n);
49
49
  if (Array.isArray(t))
50
- return w(e, t, n);
50
+ return P(e, t, n);
51
51
  if (typeof t != "function")
52
52
  return n;
53
53
  const r = t(e, n);
54
54
  return typeof r > "u" ? n : r;
55
55
  }
56
- function W(e) {
56
+ function q(e) {
57
+ let t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 0;
58
+ return Array.from({
59
+ length: e
60
+ }, (n, r) => t + r);
61
+ }
62
+ function H(e) {
57
63
  let t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : "px";
58
64
  if (e == null || e === "")
59
65
  return;
60
66
  const n = Number(e);
61
67
  return isNaN(n) ? String(e) : isFinite(n) ? `${n}${t}` : void 0;
62
68
  }
63
- function X(e) {
69
+ function Z(e) {
64
70
  return e !== null && typeof e == "object" && !Array.isArray(e);
65
71
  }
66
- function h(e) {
72
+ function p(e) {
67
73
  let t;
68
74
  return e !== null && typeof e == "object" && ((t = Object.getPrototypeOf(e)) === Object.prototype || t === null);
69
75
  }
70
- function $(e) {
76
+ function N(e) {
71
77
  if (e && "$el" in e) {
72
78
  const t = e.$el;
73
79
  return (t == null ? void 0 : t.nodeType) === Node.TEXT_NODE ? t.nextElementSibling : t;
74
80
  }
75
81
  return e;
76
82
  }
77
- function Y(e, t) {
83
+ const J = Object.freeze({
84
+ enter: "Enter",
85
+ tab: "Tab",
86
+ delete: "Delete",
87
+ esc: "Escape",
88
+ space: "Space",
89
+ up: "ArrowUp",
90
+ down: "ArrowDown",
91
+ left: "ArrowLeft",
92
+ right: "ArrowRight",
93
+ end: "End",
94
+ home: "Home",
95
+ del: "Delete",
96
+ backspace: "Backspace",
97
+ insert: "Insert",
98
+ pageup: "PageUp",
99
+ pagedown: "PageDown",
100
+ shift: "Shift"
101
+ });
102
+ function Q(e) {
103
+ return Object.keys(e);
104
+ }
105
+ function ee(e, t) {
78
106
  return t.every((n) => e.hasOwnProperty(n));
79
107
  }
80
- function U(e, t) {
108
+ function te(e, t) {
81
109
  const n = {};
82
110
  for (const r of t)
83
111
  Object.prototype.hasOwnProperty.call(e, r) && (n[r] = e[r]);
84
112
  return n;
85
113
  }
86
- function V(e, t) {
114
+ function h(e, t, n) {
115
+ const r = /* @__PURE__ */ Object.create(null), o = /* @__PURE__ */ Object.create(null);
116
+ for (const i in e)
117
+ t.some((u) => u instanceof RegExp ? u.test(i) : u === i) && !(n != null && n.some((u) => u === i)) ? r[i] = e[i] : o[i] = e[i];
118
+ return [r, o];
119
+ }
120
+ function z(e, t) {
87
121
  const n = {
88
122
  ...e
89
123
  };
90
124
  return t.forEach((r) => delete n[r]), n;
91
125
  }
92
- const R = /^on[^a-z]/, j = (e) => R.test(e);
93
- function q(e) {
126
+ const C = /^on[^a-z]/, ne = (e) => C.test(e), B = ["onAfterscriptexecute", "onAnimationcancel", "onAnimationend", "onAnimationiteration", "onAnimationstart", "onAuxclick", "onBeforeinput", "onBeforescriptexecute", "onChange", "onClick", "onCompositionend", "onCompositionstart", "onCompositionupdate", "onContextmenu", "onCopy", "onCut", "onDblclick", "onFocusin", "onFocusout", "onFullscreenchange", "onFullscreenerror", "onGesturechange", "onGestureend", "onGesturestart", "onGotpointercapture", "onInput", "onKeydown", "onKeypress", "onKeyup", "onLostpointercapture", "onMousedown", "onMousemove", "onMouseout", "onMouseover", "onMouseup", "onMousewheel", "onPaste", "onPointercancel", "onPointerdown", "onPointerenter", "onPointerleave", "onPointermove", "onPointerout", "onPointerover", "onPointerup", "onReset", "onSelect", "onSubmit", "onTouchcancel", "onTouchend", "onTouchmove", "onTouchstart", "onTransitioncancel", "onTransitionend", "onTransitionrun", "onTransitionstart", "onWheel"], K = ["ArrowUp", "ArrowDown", "ArrowRight", "ArrowLeft", "Enter", "Escape", "Tab", " "];
127
+ function re(e) {
128
+ return e.isComposing && K.includes(e.key);
129
+ }
130
+ function oe(e) {
131
+ const [t, n] = h(e, [C]), r = z(t, B), [o, i] = h(n, ["class", "style", "id", "inert", /^data-/]);
132
+ return Object.assign(o, t), Object.assign(i, r), [o, i];
133
+ }
134
+ function ie(e) {
94
135
  return e == null ? [] : Array.isArray(e) ? e : [e];
95
136
  }
96
- function G(e) {
137
+ function ue(e, t) {
138
+ let n = 0;
139
+ const r = function() {
140
+ for (var o = arguments.length, i = new Array(o), u = 0; u < o; u++)
141
+ i[u] = arguments[u];
142
+ clearTimeout(n), n = setTimeout(() => e(...i), M(t));
143
+ };
144
+ return r.clear = () => {
145
+ clearTimeout(n);
146
+ }, r.immediate = e, r;
147
+ }
148
+ function se(e) {
97
149
  let t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 0, n = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : 1;
98
150
  return Math.max(t, Math.min(n, e));
99
151
  }
100
- function K(e, t) {
152
+ function ce(e) {
153
+ const t = e.toString().trim();
154
+ return t.includes(".") ? t.length - t.indexOf(".") - 1 : 0;
155
+ }
156
+ function ae(e, t) {
101
157
  let n = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : "0";
102
158
  return e + n.repeat(Math.max(0, t - e.length));
103
159
  }
104
- function Z(e) {
160
+ function fe(e) {
105
161
  let t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 1;
106
162
  const n = [];
107
163
  let r = 0;
@@ -109,135 +165,155 @@ function Z(e) {
109
165
  n.push(e.substr(r, t)), r += t;
110
166
  return n;
111
167
  }
112
- function _() {
168
+ function L() {
113
169
  let e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, n = arguments.length > 2 ? arguments[2] : void 0;
114
170
  const r = {};
115
- for (const i in e)
116
- r[i] = e[i];
117
- for (const i in t) {
118
- const u = e[i], s = t[i];
119
- if (h(u) && h(s)) {
120
- r[i] = _(u, s, n);
171
+ for (const o in e)
172
+ r[o] = e[o];
173
+ for (const o in t) {
174
+ const i = e[o], u = t[o];
175
+ if (p(i) && p(u)) {
176
+ r[o] = L(i, u, n);
121
177
  continue;
122
178
  }
123
- if (n && Array.isArray(u) && Array.isArray(s)) {
124
- r[i] = n(u, s);
179
+ if (n && Array.isArray(i) && Array.isArray(u)) {
180
+ r[o] = n(i, u);
125
181
  continue;
126
182
  }
127
- r[i] = s;
183
+ r[o] = u;
128
184
  }
129
185
  return r;
130
186
  }
131
- function F(e) {
132
- return e.map((t) => t.type === O ? F(t.children) : t).flat();
187
+ function X(e) {
188
+ return e.map((t) => t.type === y ? X(t.children) : t).flat();
133
189
  }
134
- function d() {
190
+ function m() {
135
191
  let e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : "";
136
- if (d.cache.has(e))
137
- return d.cache.get(e);
192
+ if (m.cache.has(e))
193
+ return m.cache.get(e);
138
194
  const t = e.replace(/[^a-z]/gi, "-").replace(/\B([A-Z])/g, "-$1").toLowerCase();
139
- return d.cache.set(e, t), t;
195
+ return m.cache.set(e, t), t;
140
196
  }
141
- d.cache = /* @__PURE__ */ new Map();
142
- function a(e, t) {
197
+ m.cache = /* @__PURE__ */ new Map();
198
+ function l(e, t) {
143
199
  if (!t || typeof t != "object")
144
200
  return [];
145
201
  if (Array.isArray(t))
146
- return t.map((n) => a(e, n)).flat(1);
202
+ return t.map((n) => l(e, n)).flat(1);
147
203
  if (t.suspense)
148
- return a(e, t.ssContent);
204
+ return l(e, t.ssContent);
149
205
  if (Array.isArray(t.children))
150
- return t.children.map((n) => a(e, n)).flat(1);
206
+ return t.children.map((n) => l(e, n)).flat(1);
151
207
  if (t.component) {
152
208
  if (Object.getOwnPropertyDescriptor(t.component.provides, e))
153
209
  return [t.component];
154
210
  if (t.component.subTree)
155
- return a(e, t.component.subTree).flat(1);
211
+ return l(e, t.component.subTree).flat(1);
156
212
  }
157
213
  return [];
158
214
  }
159
- var f = /* @__PURE__ */ new WeakMap(), c = /* @__PURE__ */ new WeakMap();
160
- class H {
215
+ var a = /* @__PURE__ */ new WeakMap(), c = /* @__PURE__ */ new WeakMap();
216
+ class le {
161
217
  constructor(t) {
162
- g(this, f, []), g(this, c, 0), this.size = t;
218
+ d(this, a, []), d(this, c, 0), this.size = t;
163
219
  }
164
220
  get isFull() {
165
- return o(f, this).length === this.size;
221
+ return s(a, this).length === this.size;
166
222
  }
167
223
  push(t) {
168
- o(f, this)[o(c, this)] = t, m(c, this, (o(c, this) + 1) % this.size);
224
+ s(a, this)[s(c, this)] = t, g(c, this, (s(c, this) + 1) % this.size);
169
225
  }
170
226
  values() {
171
- return o(f, this).slice(o(c, this)).concat(o(f, this).slice(0, o(c, this)));
227
+ return s(a, this).slice(s(c, this)).concat(s(a, this).slice(0, s(c, this)));
172
228
  }
173
229
  clear() {
174
- o(f, this).length = 0, m(c, this, 0);
230
+ s(a, this).length = 0, g(c, this, 0);
175
231
  }
176
232
  }
177
- function J(e) {
178
- const t = P({});
179
- A(() => {
233
+ function me(e) {
234
+ return "touches" in e ? {
235
+ clientX: e.touches[0].clientX,
236
+ clientY: e.touches[0].clientY
237
+ } : {
238
+ clientX: e.clientX,
239
+ clientY: e.clientY
240
+ };
241
+ }
242
+ function de(e) {
243
+ const t = b({});
244
+ O(() => {
180
245
  const r = e();
181
- for (const i in r)
182
- t[i] = r[i];
246
+ for (const o in r)
247
+ t[o] = r[o];
183
248
  }, {
184
249
  flush: "sync"
185
250
  });
186
251
  const n = {};
187
252
  for (const r in t)
188
- n[r] = C(() => t[r]);
253
+ n[r] = v(() => t[r]);
189
254
  return n;
190
255
  }
191
- function Q(e, t) {
256
+ function ge(e, t) {
192
257
  return e.includes(t);
193
258
  }
194
- function k(e) {
259
+ function pe(e) {
195
260
  return e[2].toLowerCase() + e.slice(3);
196
261
  }
197
- const ee = () => [Function, Array];
198
- function te(e, t) {
199
- return t = "on" + S(t), !!(e[t] || e[`${t}Once`] || e[`${t}Capture`] || e[`${t}OnceCapture`] || e[`${t}CaptureOnce`]);
262
+ const he = () => [Function, Array];
263
+ function ye(e, t) {
264
+ return t = "on" + T(t), !!(e[t] || e[`${t}Once`] || e[`${t}Capture`] || e[`${t}OnceCapture`] || e[`${t}CaptureOnce`]);
200
265
  }
201
- function N(e) {
266
+ function we(e) {
267
+ for (var t = arguments.length, n = new Array(t > 1 ? t - 1 : 0), r = 1; r < t; r++)
268
+ n[r - 1] = arguments[r];
269
+ if (Array.isArray(e))
270
+ for (const o of e)
271
+ o(...n);
272
+ else
273
+ typeof e == "function" && e(...n);
274
+ }
275
+ function Y(e) {
202
276
  let t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : !0;
203
- const n = ["button", "[href]", 'input:not([type="hidden"])', "select", "textarea", "details:not(:has(> summary))", "details > summary", "[tabindex]", '[contenteditable]:not([contenteditable="false"])', "audio[controls]", "video[controls]"].map((i) => `${i}${t ? ':not([tabindex="-1"])' : ""}:not([disabled], [inert])`).join(", ");
277
+ const n = ["button", "[href]", 'input:not([type="hidden"])', "select", "textarea", "details:not(:has(> summary))", "details > summary", "[tabindex]", '[contenteditable]:not([contenteditable="false"])', "audio[controls]", "video[controls]"].map((o) => `${o}${t ? ':not([tabindex="-1"])' : ""}:not([disabled], [inert])`).join(", ");
204
278
  let r;
205
279
  try {
206
280
  r = [...e.querySelectorAll(n)];
207
- } catch (i) {
208
- return v(String(i)), [];
281
+ } catch (o) {
282
+ return $(String(o)), [];
209
283
  }
210
- return r.filter((i) => !i.closest("[inert]")).filter((i) => !!i.offsetParent || i.getClientRects().length > 0).filter((i) => {
211
- var u, s;
212
- return !((u = i.parentElement) != null && u.closest("details:not([open])")) || i.tagName === "SUMMARY" && ((s = i.parentElement) == null ? void 0 : s.tagName) === "DETAILS";
284
+ return r.filter((o) => !o.closest("[inert]")).filter((o) => !!o.offsetParent || o.getClientRects().length > 0).filter((o) => {
285
+ var i, u;
286
+ return !((i = o.parentElement) != null && i.closest("details:not([open])")) || o.tagName === "SUMMARY" && ((u = o.parentElement) == null ? void 0 : u.tagName) === "DETAILS";
213
287
  });
214
288
  }
215
- function z(e, t, n) {
216
- let r, i = e.indexOf(document.activeElement);
217
- const u = t === "next" ? 1 : -1;
289
+ function V(e, t, n) {
290
+ let r, o = e.indexOf(document.activeElement);
291
+ const i = t === "next" ? 1 : -1;
218
292
  do
219
- i += u, r = e[i];
220
- while ((!r || r.offsetParent == null || !((n == null ? void 0 : n(r)) ?? !0)) && i < e.length && i >= 0);
293
+ o += i, r = e[o];
294
+ while ((!r || r.offsetParent == null || !((n == null ? void 0 : n(r)) ?? !0)) && o < e.length && o >= 0);
221
295
  return r;
222
296
  }
223
- function B(e, t) {
224
- var r, i, u, s;
225
- const n = N(e);
297
+ function W(e, t) {
298
+ var r, o, i, u;
299
+ const n = Y(e);
226
300
  if (t == null)
227
301
  (e === document.activeElement || !e.contains(document.activeElement)) && ((r = n[0]) == null || r.focus());
228
302
  else if (t === "first")
229
- (i = n[0]) == null || i.focus();
303
+ (o = n[0]) == null || o.focus();
230
304
  else if (t === "last")
231
- (u = n.at(-1)) == null || u.focus();
305
+ (i = n.at(-1)) == null || i.focus();
232
306
  else if (typeof t == "number")
233
- (s = n[t]) == null || s.focus();
307
+ (u = n[t]) == null || u.focus();
234
308
  else {
235
- const l = z(n, t);
236
- l ? l.focus() : B(e, t === "next" ? "first" : "last");
309
+ const f = V(n, t);
310
+ f ? f.focus() : W(e, t === "next" ? "first" : "last");
237
311
  }
238
312
  }
239
- function ne(e, t) {
240
- if (!(p && typeof CSS < "u" && typeof CSS.supports < "u" && CSS.supports(`selector(${t})`)))
313
+ function Ae() {
314
+ }
315
+ function Pe(e, t) {
316
+ if (!(w && typeof CSS < "u" && typeof CSS.supports < "u" && CSS.supports(`selector(${t})`)))
241
317
  return null;
242
318
  try {
243
319
  return !!e && e.matches(t);
@@ -245,19 +321,22 @@ function ne(e, t) {
245
321
  return null;
246
322
  }
247
323
  }
248
- function re(e, t) {
249
- if (!p || e === 0)
324
+ function j(e) {
325
+ return e.some((t) => S(t) ? t.type === R ? !1 : t.type !== y || j(t.children) : !0) ? e : null;
326
+ }
327
+ function Ce(e, t) {
328
+ if (!w || e === 0)
250
329
  return t(), () => {
251
330
  };
252
331
  const n = window.setTimeout(t, e);
253
332
  return () => window.clearTimeout(n);
254
333
  }
255
- function ie(e, t) {
256
- const n = e.clientX, r = e.clientY, i = t.getBoundingClientRect(), u = i.left, s = i.top, l = i.right, E = i.bottom;
257
- return n >= u && n <= l && r >= s && r <= E;
334
+ function Ee(e, t) {
335
+ const n = e.clientX, r = e.clientY, o = t.getBoundingClientRect(), i = o.left, u = o.top, f = o.right, E = o.bottom;
336
+ return n >= i && n <= f && r >= u && r <= E;
258
337
  }
259
- function ue() {
260
- const e = b(), t = (n) => {
338
+ function be() {
339
+ const e = x(), t = (n) => {
261
340
  e.value = n;
262
341
  };
263
342
  return Object.defineProperty(t, "value", {
@@ -266,52 +345,80 @@ function ue() {
266
345
  set: (n) => e.value = n
267
346
  }), Object.defineProperty(t, "el", {
268
347
  enumerable: !0,
269
- get: () => $(e.value)
348
+ get: () => N(e.value)
270
349
  }), t;
271
350
  }
272
- function se(e) {
351
+ function Oe(e) {
352
+ const t = e.key.length === 1, n = !e.ctrlKey && !e.metaKey && !e.altKey;
353
+ return t && n;
354
+ }
355
+ function ve(e) {
273
356
  return typeof e == "string" || typeof e == "number" || typeof e == "boolean" || typeof e == "bigint";
274
357
  }
275
- function oe(e) {
358
+ function Te(e) {
359
+ return "\\^$*+?.()|{}[]".includes(e) ? `\\${e}` : e;
360
+ }
361
+ function Se(e) {
362
+ const t = {};
363
+ for (const n in e)
364
+ t[F(n)] = e[n];
365
+ return t;
366
+ }
367
+ function Re(e) {
276
368
  const t = ["checked", "disabled"];
277
369
  return Object.fromEntries(Object.entries(e).filter((n) => {
278
- let [r, i] = n;
279
- return t.includes(r) ? !!i : i !== void 0;
370
+ let [r, o] = n;
371
+ return t.includes(r) ? !!o : o !== void 0;
280
372
  }));
281
373
  }
282
374
  export {
283
- H as CircularBuffer,
284
- ee as EventProp,
285
- Z as chunk,
286
- G as clamp,
287
- W as convertToUnit,
288
- re as defer,
289
- J as destructComputed,
290
- k as eventName,
291
- a as findChildrenWithProvide,
292
- F as flattenFragments,
293
- B as focusChild,
294
- N as focusableChildren,
295
- w as getNestedValue,
296
- z as getNextElement,
297
- T as getObjectValueByPath,
298
- L as getPropertyFromItem,
299
- Y as has,
300
- te as hasEvent,
301
- Q as includes,
302
- ie as isClickInsideElement,
303
- X as isObject,
304
- j as isOn,
305
- h as isPlainObject,
306
- se as isPrimitive,
307
- ne as matchesSelector,
308
- _ as mergeDeep,
309
- V as omit,
310
- oe as onlyDefinedProps,
311
- K as padEnd,
312
- U as pick,
313
- $ as refElement,
314
- ue as templateRef,
315
- d as toKebabCase,
316
- q as wrapInArray
375
+ le as CircularBuffer,
376
+ he as EventProp,
377
+ we as callEvent,
378
+ Se as camelizeProps,
379
+ Oe as checkPrintable,
380
+ fe as chunk,
381
+ se as clamp,
382
+ H as convertToUnit,
383
+ q as createRange,
384
+ ue as debounce,
385
+ Ce as defer,
386
+ de as destructComputed,
387
+ j as ensureValidVNode,
388
+ Te as escapeForRegex,
389
+ pe as eventName,
390
+ oe as filterInputAttrs,
391
+ l as findChildrenWithProvide,
392
+ X as flattenFragments,
393
+ W as focusChild,
394
+ Y as focusableChildren,
395
+ ce as getDecimals,
396
+ me as getEventCoordinates,
397
+ P as getNestedValue,
398
+ V as getNextElement,
399
+ D as getObjectValueByPath,
400
+ _ as getPropertyFromItem,
401
+ ee as has,
402
+ ye as hasEvent,
403
+ ge as includes,
404
+ Ee as isClickInsideElement,
405
+ re as isComposingIgnoreKey,
406
+ Z as isObject,
407
+ ne as isOn,
408
+ p as isPlainObject,
409
+ ve as isPrimitive,
410
+ J as keyValues,
411
+ Q as keys,
412
+ Pe as matchesSelector,
413
+ L as mergeDeep,
414
+ Ae as noop,
415
+ z as omit,
416
+ Re as onlyDefinedProps,
417
+ ae as padEnd,
418
+ te as pick,
419
+ h as pickWithRest,
420
+ N as refElement,
421
+ be as templateRef,
422
+ m as toKebabCase,
423
+ ie as wrapInArray
317
424
  };