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,23 +1,38 @@
1
- import { defineComponent as ue, ref as V, computed as re, watch as ie, onMounted as de, resolveComponent as s, openBlock as n, createElementBlock as p, unref as o, createBlock as d, withCtx as a, createVNode as l, mergeProps as me, createElementVNode as z, isRef as B, createTextVNode as v, createCommentVNode as c, Fragment as T, renderList as A, toDisplayString as X } from "vue";
2
- import { isNullOrEmpty as ve, isLengthyArray as $ } from "../composables/helpers.mjs";
3
- import { findYouTubeAvatar as H, useAssistant as pe } from "../composables/assistant.mjs";
4
- import { t as N } from "../bt-core/core/node_modules/thenby/thenBy.module.mjs";
5
- import { useRoute as ce } from "vue-router";
1
+ import { defineComponent as oe, ref as k, computed as ne, watch as ue, onMounted as re, resolveComponent as se, openBlock as n, createElementBlock as m, unref as e, createBlock as s, withCtx as o, createVNode as a, mergeProps as ie, createElementVNode as S, isRef as C, createTextVNode as d, createCommentVNode as p, Fragment as U, renderList as B, toDisplayString as q } from "vue";
2
+ import { isNullOrEmpty as de, isLengthyArray as w } from "../composables/helpers.mjs";
3
+ import { findYouTubeAvatar as F, useAssistant as me } from "../composables/assistant.mjs";
4
+ import { t as R } from "../bt-core/core/node_modules/thenby/thenBy.module.mjs";
5
+ import { useRoute as pe } from "vue-router";
6
6
  import { useDisplay as fe } from "vuetify";
7
- import { useFeedback as _e } from "../composables/feedback.mjs";
8
- const ge = { class: "d-flex align-center" }, be = { class: "d-flex align-center" }, ye = { class: "text-center" }, xe = {
7
+ import { useFeedback as ve } from "../composables/feedback.mjs";
8
+ import { VTabs as G } from "../bt-core/core/node_modules/vuetify/lib/components/VTabs/VTabs.mjs";
9
+ import { VTab as A } from "../bt-core/core/node_modules/vuetify/lib/components/VTabs/VTab.mjs";
10
+ import { VTabsWindow as W } from "../bt-core/core/node_modules/vuetify/lib/components/VTabs/VTabsWindow.mjs";
11
+ import { VTabsWindowItem as _ } from "../bt-core/core/node_modules/vuetify/lib/components/VTabs/VTabsWindowItem.mjs";
12
+ import { VCardSubtitle as Y } from "../bt-core/core/node_modules/vuetify/lib/components/VCard/VCardSubtitle.mjs";
13
+ import { VRating as J } from "../bt-core/core/node_modules/vuetify/lib/components/VRating/VRating.mjs";
14
+ import { VMenu as ce } from "../bt-core/core/node_modules/vuetify/lib/components/VMenu/VMenu.mjs";
15
+ import { VBtn as f } from "../bt-core/core/node_modules/vuetify/lib/components/VBtn/VBtn.mjs";
16
+ import { VCard as i } from "../bt-core/core/node_modules/vuetify/lib/components/VCard/VCard.mjs";
17
+ import { VIcon as z } from "../bt-core/core/node_modules/vuetify/lib/components/VIcon/VIcon.mjs";
18
+ import { VSpacer as K } from "../bt-core/core/node_modules/vuetify/lib/components/VGrid/VSpacer.mjs";
19
+ import { VList as Q } from "../bt-core/core/node_modules/vuetify/lib/components/VList/VList.mjs";
20
+ import { VListSubheader as D } from "../bt-core/core/node_modules/vuetify/lib/components/VList/VListSubheader.mjs";
21
+ import { VTextarea as X } from "../bt-core/core/node_modules/vuetify/lib/components/VTextarea/VTextarea.mjs";
22
+ import { VDialog as ge } from "../bt-core/core/node_modules/vuetify/lib/components/VDialog/VDialog.mjs";
23
+ const ye = { class: "d-flex align-center" }, be = { class: "d-flex align-center" }, Ve = { class: "text-center" }, xe = {
9
24
  key: 1,
10
25
  class: "text-h5"
11
26
  }, he = {
12
27
  key: 2,
13
28
  class: "text-body-2 text-center"
14
- }, ke = { class: "d-flex align-center justify-space-between" }, Ve = { class: "d-flex align-center mb-1" }, we = { class: "text-center" }, Se = {
29
+ }, ke = { class: "d-flex align-center justify-space-between" }, Se = { class: "d-flex align-center mb-1" }, we = { class: "text-center" }, _e = {
15
30
  key: 1,
16
31
  class: "text-h5"
17
32
  }, ze = {
18
33
  key: 2,
19
34
  class: "text-body-2"
20
- }, Ae = /* @__PURE__ */ ue({
35
+ }, Je = /* @__PURE__ */ oe({
21
36
  __name: "BT-Assistant-Menu",
22
37
  props: {
23
38
  buttonIcon: {},
@@ -25,152 +40,152 @@ const ge = { class: "d-flex align-center" }, be = { class: "d-flex align-center"
25
40
  tags: {}
26
41
  },
27
42
  setup(Z) {
28
- const U = Z, {
29
- doShowDialog: O,
30
- getPrimaryLinks: j,
31
- getSecondaryLinks: M,
43
+ const L = Z, {
44
+ doShowDialog: M,
45
+ getPrimaryLinks: O,
46
+ getSecondaryLinks: j,
32
47
  hideDialogPermanently: ee,
33
48
  hideDialogTemporarily: te,
34
- menuRouteName: L,
49
+ menuRouteName: T,
35
50
  tab: r
36
- } = pe(), f = ce(), _ = V([]), g = V([]), b = V(!1), R = V(!1), y = V(), x = V(), h = V(), { sendAsync: le } = _e(), { xs: D } = fe(), P = re(() => !ve(x.value) || y.value != null);
37
- async function E() {
51
+ } = me(), v = pe(), c = k([]), g = k([]), y = k(!1), H = k(!1), b = k(), V = k(), x = k(), { sendAsync: le } = ve(), { xs: N } = fe(), P = ne(() => !de(V.value) || b.value != null);
52
+ async function I() {
38
53
  try {
39
54
  var u = await le({
40
- msg: x.value,
41
- rating: y.value,
42
- route: f.fullPath
55
+ msg: V.value,
56
+ rating: b.value,
57
+ route: v.fullPath
43
58
  });
44
59
  r.value = 2, setTimeout(() => {
45
- r.value = 1, q();
46
- }, 3e3), u ? (x.value = void 0, y.value = void 0) : h.value = "Sorry! Something seems to have gone wrong. Perhaps try again later.";
47
- } catch (e) {
48
- console.log(e);
60
+ r.value = 1, E();
61
+ }, 3e3), u ? (V.value = void 0, b.value = void 0) : x.value = "Sorry! Something seems to have gone wrong. Perhaps try again later.";
62
+ } catch (t) {
63
+ console.log(t);
49
64
  }
50
65
  }
51
- function q() {
52
- te(), b.value = !1;
66
+ function E() {
67
+ te(), y.value = !1;
53
68
  }
54
69
  function ae() {
55
- f.name != null && ee(f.name), b.value = !1;
70
+ v.name != null && ee(v.name), y.value = !1;
56
71
  }
57
- return ie(() => f.name, (u) => {
58
- _.value = j(u == null ? void 0 : u.toString(), U.tags).sort(N.firstBy((e) => e.sort ?? 0)) ?? [], g.value = M(u == null ? void 0 : u.toString(), U.tags).sort(N.firstBy((e) => e.sort ?? 0)) ?? [], O(u) && (b.value = !0);
59
- }), de(() => {
60
- var u, e;
61
- f.name != null && (_.value = j((u = f.name) == null ? void 0 : u.toString(), U.tags).sort(N.firstBy((i) => i.sort ?? 0)) ?? [], g.value = M((e = f.name) == null ? void 0 : e.toString(), U.tags).sort(N.firstBy((i) => i.sort ?? 0)) ?? [], O(f.name) && (b.value = !0));
62
- }), (u, e) => {
63
- const i = s("v-btn"), w = s("v-icon"), C = s("v-tab"), G = s("v-tabs"), I = s("v-spacer"), F = s("v-list-subheader"), m = s("v-card"), Y = s("v-list"), S = s("v-tabs-window-item"), J = s("v-textarea"), K = s("v-card-subtitle"), Q = s("v-rating"), W = s("v-tabs-window"), ne = s("v-menu"), oe = s("v-divider"), se = s("v-dialog");
64
- return n(), p("div", null, [
65
- o($)(_.value) || o($)(g.value) ? (n(), d(ne, {
72
+ return ue(() => v.name, (u) => {
73
+ c.value = O(u == null ? void 0 : u.toString(), L.tags).sort(R.firstBy((t) => t.sort ?? 0)) ?? [], g.value = j(u == null ? void 0 : u.toString(), L.tags).sort(R.firstBy((t) => t.sort ?? 0)) ?? [], M(u) && (y.value = !0);
74
+ }), re(() => {
75
+ var u, t;
76
+ v.name != null && (c.value = O((u = v.name) == null ? void 0 : u.toString(), L.tags).sort(R.firstBy(($) => $.sort ?? 0)) ?? [], g.value = j((t = v.name) == null ? void 0 : t.toString(), L.tags).sort(R.firstBy(($) => $.sort ?? 0)) ?? [], M(v.name) && (y.value = !0));
77
+ }), (u, t) => {
78
+ const $ = se("v-divider");
79
+ return n(), m("div", null, [
80
+ e(w)(c.value) || e(w)(g.value) ? (n(), s(e(ce), {
66
81
  key: 0,
67
82
  "max-height": "80vh",
68
83
  "max-width": "450",
69
84
  "close-on-content-click": !1,
70
- modelValue: R.value,
71
- "onUpdate:modelValue": e[5] || (e[5] = (t) => R.value = t)
85
+ modelValue: H.value,
86
+ "onUpdate:modelValue": t[5] || (t[5] = (l) => H.value = l)
72
87
  }, {
73
- activator: a(({ props: t }) => [
74
- l(i, me(t, {
88
+ activator: o(({ props: l }) => [
89
+ a(e(f), ie(l, {
75
90
  icon: u.buttonIcon ?? "$help-circle-outline",
76
91
  size: u.buttonSize
77
92
  }), null, 16, ["icon", "size"])
78
93
  ]),
79
- default: a(() => [
80
- l(m, null, {
81
- default: a(() => [
82
- z("div", ge, [
83
- l(G, {
84
- modelValue: o(r),
85
- "onUpdate:modelValue": e[0] || (e[0] = (t) => B(r) ? r.value = t : null)
94
+ default: o(() => [
95
+ a(e(i), null, {
96
+ default: o(() => [
97
+ S("div", ye, [
98
+ a(e(G), {
99
+ modelValue: e(r),
100
+ "onUpdate:modelValue": t[0] || (t[0] = (l) => C(r) ? r.value = l : null)
86
101
  }, {
87
- default: a(() => [
88
- l(C, null, {
89
- default: a(() => [
90
- l(w, {
102
+ default: o(() => [
103
+ a(e(A), null, {
104
+ default: o(() => [
105
+ a(e(z), {
91
106
  start: "",
92
107
  icon: "$help-circle-outline"
93
108
  }),
94
- e[12] || (e[12] = v("Help "))
109
+ t[12] || (t[12] = d("Help "))
95
110
  ]),
96
111
  _: 1
97
112
  }),
98
- l(C, null, {
99
- default: a(() => [
100
- l(w, {
113
+ a(e(A), null, {
114
+ default: o(() => [
115
+ a(e(z), {
101
116
  start: "",
102
117
  icon: "$feedback"
103
118
  }),
104
- e[13] || (e[13] = v("Feedback "))
119
+ t[13] || (t[13] = d("Feedback "))
105
120
  ]),
106
121
  _: 1
107
122
  })
108
123
  ]),
109
124
  _: 1
110
125
  }, 8, ["modelValue"]),
111
- l(I),
112
- l(i, {
113
- onClick: e[1] || (e[1] = (t) => R.value = !1),
126
+ a(e(K)),
127
+ a(e(f), {
128
+ onClick: t[1] || (t[1] = (l) => H.value = !1),
114
129
  size: "small",
115
130
  icon: "$close",
116
131
  variant: "text"
117
132
  })
118
133
  ]),
119
- l(W, {
120
- modelValue: o(r),
121
- "onUpdate:modelValue": e[4] || (e[4] = (t) => B(r) ? r.value = t : null)
134
+ a(e(W), {
135
+ modelValue: e(r),
136
+ "onUpdate:modelValue": t[4] || (t[4] = (l) => C(r) ? r.value = l : null)
122
137
  }, {
123
- default: a(() => [
124
- l(S, null, {
125
- default: a(() => [
126
- l(m, null, {
127
- default: a(() => [
128
- l(Y, { class: "pa-2" }, {
129
- default: a(() => [
130
- z("div", be, [
131
- o($)(_.value) ? (n(), d(F, { key: 0 }, {
132
- default: a(() => e[14] || (e[14] = [
133
- v(" Relevant Links ")
138
+ default: o(() => [
139
+ a(e(_), null, {
140
+ default: o(() => [
141
+ a(e(i), null, {
142
+ default: o(() => [
143
+ a(e(Q), { class: "pa-2" }, {
144
+ default: o(() => [
145
+ S("div", be, [
146
+ e(w)(c.value) ? (n(), s(e(D), { key: 0 }, {
147
+ default: o(() => t[14] || (t[14] = [
148
+ d(" Relevant Links ")
134
149
  ])),
135
150
  _: 1
136
- })) : c("", !0),
137
- l(I),
138
- o(L) != null ? (n(), d(i, {
151
+ })) : p("", !0),
152
+ a(e(K)),
153
+ e(T) != null ? (n(), s(e(f), {
139
154
  key: 1,
140
155
  "append-icon": "$arrow-right",
141
156
  size: "small",
142
157
  text: "More Help",
143
- to: { name: o(L) },
158
+ to: { name: e(T) },
144
159
  variant: "text"
145
- }, null, 8, ["to"])) : c("", !0)
160
+ }, null, 8, ["to"])) : p("", !0)
146
161
  ]),
147
- (n(!0), p(T, null, A(_.value, (t, k) => (n(), d(m, {
148
- key: k,
149
- "prepend-icon": t.icon,
162
+ (n(!0), m(U, null, B(c.value, (l, h) => (n(), s(e(i), {
163
+ key: h,
164
+ "prepend-icon": l.icon,
150
165
  class: "ma-1",
151
- href: t.url,
166
+ href: l.url,
152
167
  target: "_blank",
153
- text: t.description,
154
- "append-avatar": o(H)(t.url),
155
- title: t.title,
156
- subtitle: t.subtitle
168
+ text: l.description,
169
+ "append-avatar": e(F)(l.url),
170
+ title: l.title,
171
+ subtitle: l.subtitle
157
172
  }, null, 8, ["prepend-icon", "href", "text", "append-avatar", "title", "subtitle"]))), 128)),
158
- o($)(g.value) ? (n(), d(F, { key: 0 }, {
159
- default: a(() => e[15] || (e[15] = [
160
- v("Other Helpful Links")
173
+ e(w)(g.value) ? (n(), s(e(D), { key: 0 }, {
174
+ default: o(() => t[15] || (t[15] = [
175
+ d("Other Helpful Links")
161
176
  ])),
162
177
  _: 1
163
- })) : c("", !0),
164
- (n(!0), p(T, null, A(g.value, (t, k) => (n(), d(m, {
165
- key: k,
166
- "prepend-icon": t.icon,
178
+ })) : p("", !0),
179
+ (n(!0), m(U, null, B(g.value, (l, h) => (n(), s(e(i), {
180
+ key: h,
181
+ "prepend-icon": l.icon,
167
182
  class: "ma-1",
168
- href: t.url,
183
+ href: l.url,
169
184
  target: "_blank",
170
- text: t.description,
171
- "append-avatar": o(H)(t.url),
172
- title: t.title,
173
- subtitle: t.subtitle
185
+ text: l.description,
186
+ "append-avatar": e(F)(l.url),
187
+ title: l.title,
188
+ subtitle: l.subtitle
174
189
  }, null, 8, ["prepend-icon", "href", "text", "append-avatar", "title", "subtitle"]))), 128))
175
190
  ]),
176
191
  _: 1
@@ -181,41 +196,41 @@ const ge = { class: "d-flex align-center" }, be = { class: "d-flex align-center"
181
196
  ]),
182
197
  _: 1
183
198
  }),
184
- l(S, null, {
185
- default: a(() => [
186
- l(m, {
199
+ a(e(_), null, {
200
+ default: o(() => [
201
+ a(e(i), {
187
202
  "min-width": "330",
188
203
  subtitle: "Share your thoughts with us",
189
204
  title: "Give Feedback"
190
205
  }, {
191
- default: a(() => [
192
- l(J, {
206
+ default: o(() => [
207
+ a(e(X), {
193
208
  autofocus: "",
194
209
  "hide-details": "",
195
210
  lines: "three",
196
211
  placeholder: "...start typing any requests, suggestions, or frustrations you might have. Unburden yourself.",
197
- modelValue: x.value,
198
- "onUpdate:modelValue": e[2] || (e[2] = (t) => x.value = t)
212
+ modelValue: V.value,
213
+ "onUpdate:modelValue": t[2] || (t[2] = (l) => V.value = l)
199
214
  }, null, 8, ["modelValue"]),
200
- l(K, { class: "mt-2" }, {
201
- default: a(() => e[16] || (e[16] = [
202
- v("Or just give us a rating")
215
+ a(e(Y), { class: "mt-2" }, {
216
+ default: o(() => t[16] || (t[16] = [
217
+ d("Or just give us a rating")
203
218
  ])),
204
219
  _: 1
205
220
  }),
206
- z("div", ye, [
207
- l(Q, {
221
+ S("div", Ve, [
222
+ a(e(J), {
208
223
  "active-color": "primary",
209
224
  hover: "",
210
225
  length: 5,
211
- modelValue: y.value,
212
- "onUpdate:modelValue": e[3] || (e[3] = (t) => y.value = t)
226
+ modelValue: b.value,
227
+ "onUpdate:modelValue": t[3] || (t[3] = (l) => b.value = l)
213
228
  }, null, 8, ["modelValue"])
214
229
  ]),
215
- l(i, {
230
+ a(e(f), {
216
231
  "append-icon": "$send",
217
232
  block: "",
218
- onClick: E,
233
+ onClick: I,
219
234
  disabled: !P.value,
220
235
  text: "Send"
221
236
  }, null, 8, ["disabled"])
@@ -225,21 +240,21 @@ const ge = { class: "d-flex align-center" }, be = { class: "d-flex align-center"
225
240
  ]),
226
241
  _: 1
227
242
  }),
228
- l(S, null, {
229
- default: a(() => [
230
- l(m, {
243
+ a(e(_), null, {
244
+ default: o(() => [
245
+ a(e(i), {
231
246
  class: "d-flex align-center justify-center",
232
247
  "min-height": "330",
233
248
  "max-width": "330"
234
249
  }, {
235
- default: a(() => [
236
- h.value == null ? (n(), d(w, {
250
+ default: o(() => [
251
+ x.value == null ? (n(), s(e(z), {
237
252
  key: 0,
238
253
  icon: "$party",
239
254
  size: "x-large",
240
255
  start: ""
241
- })) : c("", !0),
242
- h.value == null ? (n(), p("div", xe, "Thankyou so much!")) : (n(), p("p", he, X(h.value), 1))
256
+ })) : p("", !0),
257
+ x.value == null ? (n(), m("div", xe, "Thankyou so much!")) : (n(), m("p", he, q(x.value), 1))
243
258
  ]),
244
259
  _: 1
245
260
  })
@@ -254,125 +269,125 @@ const ge = { class: "d-flex align-center" }, be = { class: "d-flex align-center"
254
269
  })
255
270
  ]),
256
271
  _: 1
257
- }, 8, ["modelValue"])) : c("", !0),
258
- l(se, {
259
- modelValue: b.value,
260
- "onUpdate:modelValue": e[11] || (e[11] = (t) => b.value = t),
272
+ }, 8, ["modelValue"])) : p("", !0),
273
+ a(e(ge), {
274
+ modelValue: y.value,
275
+ "onUpdate:modelValue": t[11] || (t[11] = (l) => y.value = l),
261
276
  "max-width": "450"
262
277
  }, {
263
- default: a(() => [
264
- l(m, null, {
265
- default: a(() => [
266
- z("div", ke, [
267
- l(G, {
268
- modelValue: o(r),
269
- "onUpdate:modelValue": e[6] || (e[6] = (t) => B(r) ? r.value = t : null)
278
+ default: o(() => [
279
+ a(e(i), null, {
280
+ default: o(() => [
281
+ S("div", ke, [
282
+ a(e(G), {
283
+ modelValue: e(r),
284
+ "onUpdate:modelValue": t[6] || (t[6] = (l) => C(r) ? r.value = l : null)
270
285
  }, {
271
- default: a(() => [
272
- l(C, null, {
273
- default: a(() => [
274
- l(w, {
286
+ default: o(() => [
287
+ a(e(A), null, {
288
+ default: o(() => [
289
+ a(e(z), {
275
290
  start: "",
276
291
  icon: "$help-circle-outline"
277
292
  }),
278
- e[17] || (e[17] = v("Help "))
293
+ t[17] || (t[17] = d("Help "))
279
294
  ]),
280
295
  _: 1
281
296
  }),
282
- l(C, null, {
283
- default: a(() => [
284
- l(w, {
297
+ a(e(A), null, {
298
+ default: o(() => [
299
+ a(e(z), {
285
300
  start: "",
286
301
  icon: "$feedback"
287
302
  }),
288
- e[18] || (e[18] = v("Feedback "))
303
+ t[18] || (t[18] = d("Feedback "))
289
304
  ]),
290
305
  _: 1
291
306
  })
292
307
  ]),
293
308
  _: 1
294
309
  }, 8, ["modelValue"]),
295
- l(i, {
310
+ a(e(f), {
296
311
  class: "mr-1",
297
- onClick: e[7] || (e[7] = (t) => b.value = !1),
312
+ onClick: t[7] || (t[7] = (l) => y.value = !1),
298
313
  icon: "$close",
299
314
  size: "small",
300
315
  variant: "text"
301
316
  })
302
317
  ]),
303
- l(W, {
304
- modelValue: o(r),
305
- "onUpdate:modelValue": e[10] || (e[10] = (t) => B(r) ? r.value = t : null)
318
+ a(e(W), {
319
+ modelValue: e(r),
320
+ "onUpdate:modelValue": t[10] || (t[10] = (l) => C(r) ? r.value = l : null)
306
321
  }, {
307
- default: a(() => [
308
- l(S, null, {
309
- default: a(() => [
310
- l(m, {
322
+ default: o(() => [
323
+ a(e(_), null, {
324
+ default: o(() => [
325
+ a(e(i), {
311
326
  subtitle: "Here are some relevant tips and clips.",
312
327
  title: "Tips Assistant"
313
328
  }, {
314
- default: a(() => [
315
- z("div", Ve, [
316
- l(i, {
329
+ default: o(() => [
330
+ S("div", Se, [
331
+ a(e(f), {
317
332
  class: "mx-1",
318
- onClick: q,
333
+ onClick: E,
319
334
  rounded: "",
320
- size: o(D) ? "x-small" : "small",
335
+ size: e(N) ? "x-small" : "small",
321
336
  text: "Maybe Later",
322
337
  variant: "tonal"
323
338
  }, null, 8, ["size"]),
324
- l(i, {
339
+ a(e(f), {
325
340
  class: "mr-1",
326
341
  onClick: ae,
327
342
  rounded: "",
328
- size: o(D) ? "x-small" : "small",
343
+ size: e(N) ? "x-small" : "small",
329
344
  text: "Hide Forever",
330
345
  variant: "tonal"
331
346
  }, null, 8, ["size"]),
332
- o(L) != null ? (n(), d(i, {
347
+ e(T) != null ? (n(), s(e(f), {
333
348
  key: 0,
334
349
  rounded: "",
335
- size: o(D) ? "x-small" : "small",
350
+ size: e(N) ? "x-small" : "small",
336
351
  text: "Show More",
337
- to: { name: o(L) }
338
- }, null, 8, ["size", "to"])) : c("", !0)
352
+ to: { name: e(T) }
353
+ }, null, 8, ["size", "to"])) : p("", !0)
339
354
  ]),
340
- l(oe),
341
- l(Y, { class: "pa-2 overflow-y-auto" }, {
342
- default: a(() => [
343
- o($)(_.value) ? (n(), d(F, { key: 0 }, {
344
- default: a(() => e[19] || (e[19] = [
345
- v(" Relevant Links ")
355
+ a($),
356
+ a(e(Q), { class: "pa-2 overflow-y-auto" }, {
357
+ default: o(() => [
358
+ e(w)(c.value) ? (n(), s(e(D), { key: 0 }, {
359
+ default: o(() => t[19] || (t[19] = [
360
+ d(" Relevant Links ")
346
361
  ])),
347
362
  _: 1
348
- })) : c("", !0),
349
- (n(!0), p(T, null, A(_.value, (t, k) => (n(), d(m, {
350
- key: k,
351
- "prepend-icon": t.icon,
363
+ })) : p("", !0),
364
+ (n(!0), m(U, null, B(c.value, (l, h) => (n(), s(e(i), {
365
+ key: h,
366
+ "prepend-icon": l.icon,
352
367
  class: "ma-1",
353
- href: t.url,
368
+ href: l.url,
354
369
  target: "_blank",
355
- text: t.description,
356
- "append-avatar": o(H)(t.url),
357
- title: t.title,
358
- subtitle: t.subtitle
370
+ text: l.description,
371
+ "append-avatar": e(F)(l.url),
372
+ title: l.title,
373
+ subtitle: l.subtitle
359
374
  }, null, 8, ["prepend-icon", "href", "text", "append-avatar", "title", "subtitle"]))), 128)),
360
- o($)(g.value) ? (n(), d(F, { key: 1 }, {
361
- default: a(() => e[20] || (e[20] = [
362
- v("Other Helpful Links")
375
+ e(w)(g.value) ? (n(), s(e(D), { key: 1 }, {
376
+ default: o(() => t[20] || (t[20] = [
377
+ d("Other Helpful Links")
363
378
  ])),
364
379
  _: 1
365
- })) : c("", !0),
366
- (n(!0), p(T, null, A(g.value, (t, k) => (n(), d(m, {
367
- key: k,
368
- "prepend-icon": t.icon,
380
+ })) : p("", !0),
381
+ (n(!0), m(U, null, B(g.value, (l, h) => (n(), s(e(i), {
382
+ key: h,
383
+ "prepend-icon": l.icon,
369
384
  class: "ma-1",
370
- href: t.url,
385
+ href: l.url,
371
386
  target: "_blank",
372
- text: t.description,
373
- "append-avatar": o(H)(t.url),
374
- title: t.title,
375
- subtitle: t.subtitle
387
+ text: l.description,
388
+ "append-avatar": e(F)(l.url),
389
+ title: l.title,
390
+ subtitle: l.subtitle
376
391
  }, null, 8, ["prepend-icon", "href", "text", "append-avatar", "title", "subtitle"]))), 128))
377
392
  ]),
378
393
  _: 1
@@ -383,40 +398,40 @@ const ge = { class: "d-flex align-center" }, be = { class: "d-flex align-center"
383
398
  ]),
384
399
  _: 1
385
400
  }),
386
- l(S, null, {
387
- default: a(() => [
388
- l(m, {
401
+ a(e(_), null, {
402
+ default: o(() => [
403
+ a(e(i), {
389
404
  subtitle: "Share your thoughts with us",
390
405
  title: "Give Feedback"
391
406
  }, {
392
- default: a(() => [
393
- l(J, {
407
+ default: o(() => [
408
+ a(e(X), {
394
409
  autofocus: "",
395
410
  "hide-details": "",
396
411
  lines: "three",
397
412
  placeholder: "...start typing any requests, suggestions, or frustrations you might have. Unburden yourself.",
398
- modelValue: x.value,
399
- "onUpdate:modelValue": e[8] || (e[8] = (t) => x.value = t)
413
+ modelValue: V.value,
414
+ "onUpdate:modelValue": t[8] || (t[8] = (l) => V.value = l)
400
415
  }, null, 8, ["modelValue"]),
401
- l(K, { class: "mt-2" }, {
402
- default: a(() => e[21] || (e[21] = [
403
- v("Or just give us a rating")
416
+ a(e(Y), { class: "mt-2" }, {
417
+ default: o(() => t[21] || (t[21] = [
418
+ d("Or just give us a rating")
404
419
  ])),
405
420
  _: 1
406
421
  }),
407
- z("div", we, [
408
- l(Q, {
422
+ S("div", we, [
423
+ a(e(J), {
409
424
  "active-color": "primary",
410
425
  hover: "",
411
426
  length: 5,
412
- modelValue: y.value,
413
- "onUpdate:modelValue": e[9] || (e[9] = (t) => y.value = t)
427
+ modelValue: b.value,
428
+ "onUpdate:modelValue": t[9] || (t[9] = (l) => b.value = l)
414
429
  }, null, 8, ["modelValue"])
415
430
  ]),
416
- l(i, {
431
+ a(e(f), {
417
432
  "append-icon": "$send",
418
433
  block: "",
419
- onClick: E,
434
+ onClick: I,
420
435
  disabled: !P.value,
421
436
  text: "Send"
422
437
  }, null, 8, ["disabled"])
@@ -426,20 +441,20 @@ const ge = { class: "d-flex align-center" }, be = { class: "d-flex align-center"
426
441
  ]),
427
442
  _: 1
428
443
  }),
429
- l(S, null, {
430
- default: a(() => [
431
- l(m, {
444
+ a(e(_), null, {
445
+ default: o(() => [
446
+ a(e(i), {
432
447
  class: "d-flex align-center justify-center",
433
448
  "min-height": "300"
434
449
  }, {
435
- default: a(() => [
436
- h.value == null ? (n(), d(w, {
450
+ default: o(() => [
451
+ x.value == null ? (n(), s(e(z), {
437
452
  key: 0,
438
453
  icon: "$party",
439
454
  size: "x-large",
440
455
  start: ""
441
- })) : c("", !0),
442
- h.value == null ? (n(), p("div", Se, "Thankyou so much!")) : (n(), p("div", ze, X(h.value), 1))
456
+ })) : p("", !0),
457
+ x.value == null ? (n(), m("div", _e, "Thankyou so much!")) : (n(), m("div", ze, q(x.value), 1))
443
458
  ]),
444
459
  _: 1
445
460
  })
@@ -460,5 +475,5 @@ const ge = { class: "d-flex align-center" }, be = { class: "d-flex align-center"
460
475
  }
461
476
  });
462
477
  export {
463
- Ae as default
478
+ Je as default
464
479
  };