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,5 +1,7 @@
1
- import { defineComponent as S, computed as o, inject as B, ref as L, resolveComponent as i, openBlock as a, createBlock as d, withModifiers as T, withCtx as s, renderSlot as w, createVNode as f, createElementBlock as r, toDisplayString as n, normalizeClass as p, createTextVNode as v } from "vue";
2
- const E = { key: "1" }, $ = { key: "2" }, j = { key: "3" }, D = /* @__PURE__ */ S({
1
+ import { defineComponent as _, computed as o, inject as B, ref as L, resolveComponent as c, openBlock as a, createBlock as u, unref as r, withModifiers as T, withCtx as s, renderSlot as w, createVNode as f, createElementBlock as d, toDisplayString as i, normalizeClass as p, createTextVNode as g } from "vue";
2
+ import { VCard as E } from "../bt-core/core/node_modules/vuetify/lib/components/VCard/VCard.mjs";
3
+ import { VIcon as m } from "../bt-core/core/node_modules/vuetify/lib/components/VIcon/VIcon.mjs";
4
+ const $ = { key: "1" }, j = { key: "2" }, N = { key: "3" }, F = /* @__PURE__ */ _({
3
5
  __name: "BT-Square-Check",
4
6
  props: {
5
7
  disabled: { type: Boolean },
@@ -21,23 +23,23 @@ const E = { key: "1" }, $ = { key: "2" }, j = { key: "3" }, D = /* @__PURE__ */
21
23
  width: { default: "100" }
22
24
  },
23
25
  emits: ["update:modelValue"],
24
- setup(g, { emit: h }) {
25
- const l = g, m = h, u = o({
26
+ setup(h, { emit: v }) {
27
+ const l = h, b = v, n = o({
26
28
  get() {
27
29
  return l.modelValue;
28
30
  },
29
31
  set(e) {
30
- m("update:modelValue", e);
32
+ b("update:modelValue", e);
31
33
  }
32
- }), b = B("isEditing", () => L(!1), !0), _ = o(() => l.isEditing ?? b.value), t = o(() => u.value === l.trueValue), y = o(() => t.value ? l.trueLabel : l.falseLabel), V = o(() => t.value ? l.trueIcon : l.falseIcon);
33
- function k() {
34
- l.onToggle != null ? l.onToggle() : u.value = u.value == l.falseValue ? l.trueValue : l.falseValue;
34
+ }), y = B("isEditing", () => L(!1), !0), V = o(() => l.isEditing ?? y.value), t = o(() => n.value === l.trueValue), k = o(() => t.value ? l.trueLabel : l.falseLabel), C = o(() => t.value ? l.trueIcon : l.falseIcon);
35
+ function I() {
36
+ l.onToggle != null ? l.onToggle() : n.value = n.value == l.falseValue ? l.trueValue : l.falseValue;
35
37
  }
36
- return (e, N) => {
37
- const z = i("v-slide-x-transition"), c = i("v-icon"), C = i("v-slide-y-reverse-transition"), I = i("v-card");
38
- return a(), d(I, {
39
- onClick: T(k, ["stop"]),
40
- disabled: e.disabled || !_.value,
38
+ return (e, q) => {
39
+ const z = c("v-slide-x-transition"), S = c("v-slide-y-reverse-transition");
40
+ return a(), u(r(E), {
41
+ onClick: T(I, ["stop"]),
42
+ disabled: e.disabled || !V.value,
41
43
  class: "d-flex flex-column align-center justify-center",
42
44
  height: e.height,
43
45
  ripple: e.ripple,
@@ -45,9 +47,9 @@ const E = { key: "1" }, $ = { key: "2" }, j = { key: "3" }, D = /* @__PURE__ */
45
47
  }, {
46
48
  default: s(() => [
47
49
  w(e.$slots, "content", {
48
- icon: V.value,
50
+ icon: C.value,
49
51
  isTrue: t.value,
50
- label: y.value,
52
+ label: k.value,
51
53
  iconSize: e.iconSize
52
54
  }, () => [
53
55
  f(z, {
@@ -55,31 +57,31 @@ const E = { key: "1" }, $ = { key: "2" }, j = { key: "3" }, D = /* @__PURE__ */
55
57
  "hide-on-leave": ""
56
58
  }, {
57
59
  default: s(() => [
58
- e.label != null ? (a(), r("p", E, n(e.label), 1)) : t.value ? (a(), r("p", $, n(e.trueLabel), 1)) : (a(), r("p", j, n(e.falseLabel), 1))
60
+ e.label != null ? (a(), d("p", $, i(e.label), 1)) : t.value ? (a(), d("p", j, i(e.trueLabel), 1)) : (a(), d("p", N, i(e.falseLabel), 1))
59
61
  ]),
60
62
  _: 1
61
63
  }),
62
- f(C, {
64
+ f(S, {
63
65
  group: "",
64
66
  "hide-on-leave": ""
65
67
  }, {
66
68
  default: s(() => [
67
- t.value ? (a(), d(c, {
69
+ t.value ? (a(), u(r(m), {
68
70
  size: e.iconSize,
69
71
  class: p(e.disabled ? "" : e.trueClass),
70
72
  key: "3"
71
73
  }, {
72
74
  default: s(() => [
73
- v(n(e.trueIcon), 1)
75
+ g(i(e.trueIcon), 1)
74
76
  ]),
75
77
  _: 1
76
- }, 8, ["size", "class"])) : (a(), d(c, {
78
+ }, 8, ["size", "class"])) : (a(), u(r(m), {
77
79
  size: e.iconSize,
78
80
  class: p(e.disabled ? "" : e.falseClass),
79
81
  key: "4"
80
82
  }, {
81
83
  default: s(() => [
82
- v(n(e.falseIcon), 1)
84
+ g(i(e.falseIcon), 1)
83
85
  ]),
84
86
  _: 1
85
87
  }, 8, ["size", "class"]))
@@ -94,5 +96,5 @@ const E = { key: "1" }, $ = { key: "2" }, j = { key: "3" }, D = /* @__PURE__ */
94
96
  }
95
97
  });
96
98
  export {
97
- D as default
99
+ F as default
98
100
  };
@@ -1,5 +1,7 @@
1
- import { defineComponent as c, resolveComponent as o, openBlock as t, createBlock as l, withCtx as i, createCommentVNode as m, renderSlot as r, createElementBlock as u, toDisplayString as a } from "vue";
2
- const _ = { key: 1 }, b = { key: 1 }, d = /* @__PURE__ */ c({
1
+ import { defineComponent as p, resolveComponent as m, openBlock as t, createBlock as l, unref as o, withCtx as i, createCommentVNode as c, renderSlot as s, createElementBlock as n, toDisplayString as u } from "vue";
2
+ import { VListItem as f } from "../bt-core/core/node_modules/vuetify/lib/components/VList/VListItem.mjs";
3
+ import { VIcon as a } from "../bt-core/core/node_modules/vuetify/lib/components/VIcon/VIcon.mjs";
4
+ const b = { key: 1 }, k = { key: 1 }, B = /* @__PURE__ */ p({
3
5
  __name: "BT-Status-Item",
4
6
  props: {
5
7
  isTrue: { type: Boolean, default: void 0 },
@@ -8,37 +10,37 @@ const _ = { key: 1 }, b = { key: 1 }, d = /* @__PURE__ */ c({
8
10
  title: {},
9
11
  titleFilter: {}
10
12
  },
11
- setup(f) {
12
- return (e, k) => {
13
- const s = o("v-icon"), n = o("bt-span"), p = o("v-list-item");
14
- return t(), l(p, null, {
13
+ setup(d) {
14
+ return (e, y) => {
15
+ const r = m("bt-span");
16
+ return t(), l(o(f), null, {
15
17
  prepend: i(() => [
16
- e.isTrue === !0 ? (t(), l(s, {
18
+ e.isTrue === !0 ? (t(), l(o(a), {
17
19
  key: 0,
18
20
  icon: "$check",
19
21
  color: "success"
20
- })) : e.isTrue === !1 ? (t(), l(s, {
22
+ })) : e.isTrue === !1 ? (t(), l(o(a), {
21
23
  key: 1,
22
24
  icon: "$close",
23
25
  color: "error"
24
- })) : m("", !0)
26
+ })) : c("", !0)
25
27
  ]),
26
28
  title: i(() => [
27
- r(e.$slots, "title", {}, () => [
28
- e.titleFilter != null ? (t(), l(n, {
29
+ s(e.$slots, "title", {}, () => [
30
+ e.titleFilter != null ? (t(), l(r, {
29
31
  key: 0,
30
32
  value: e.title,
31
33
  filter: e.titleFilter
32
- }, null, 8, ["value", "filter"])) : (t(), u("span", _, a(e.title), 1))
34
+ }, null, 8, ["value", "filter"])) : (t(), n("span", b, u(e.title), 1))
33
35
  ])
34
36
  ]),
35
37
  subtitle: i(() => [
36
- r(e.$slots, "subtitle", {}, () => [
37
- e.subtitleFilter != null ? (t(), l(n, {
38
+ s(e.$slots, "subtitle", {}, () => [
39
+ e.subtitleFilter != null ? (t(), l(r, {
38
40
  key: 0,
39
41
  value: e.subtitle,
40
42
  filter: e.subtitleFilter
41
- }, null, 8, ["value", "filter"])) : (t(), u("span", b, a(e.subtitle), 1))
43
+ }, null, 8, ["value", "filter"])) : (t(), n("span", k, u(e.subtitle), 1))
42
44
  ])
43
45
  ]),
44
46
  _: 3
@@ -47,5 +49,5 @@ const _ = { key: 1 }, b = { key: 1 }, d = /* @__PURE__ */ c({
47
49
  }
48
50
  });
49
51
  export {
50
- d as default
52
+ B as default
51
53
  };
@@ -1,32 +1,31 @@
1
- import { defineComponent as m, computed as _, resolveComponent as o, openBlock as t, createBlock as n, withCtx as r, createElementBlock as d, Fragment as f, renderList as g, createTextVNode as h, toDisplayString as v } from "vue";
2
- const z = /* @__PURE__ */ m({
1
+ import { defineComponent as s, computed as m, openBlock as t, createBlock as r, unref as o, withCtx as l, createElementBlock as c, Fragment as d, renderList as f, createTextVNode as V, toDisplayString as _ } from "vue";
2
+ import { VChipGroup as g } from "../bt-core/core/node_modules/vuetify/lib/components/VChipGroup/VChipGroup.mjs";
3
+ import { VChip as h } from "../bt-core/core/node_modules/vuetify/lib/components/VChip/VChip.mjs";
4
+ const x = /* @__PURE__ */ s({
3
5
  __name: "BT-Tags",
4
6
  props: {
5
7
  chipProps: {},
6
8
  modelValue: {},
7
9
  size: {}
8
10
  },
9
- setup(l) {
10
- const e = l, p = _(() => e.modelValue == null ? [] : typeof e.modelValue == "string" ? e.modelValue.split(",") : e.modelValue);
11
- return (s, V) => {
12
- const u = o("v-chip"), c = o("v-chip-group");
13
- return t(), n(c, null, {
14
- default: r(() => [
15
- (t(!0), d(f, null, g(p.value, (a, i) => (t(), n(u, {
16
- key: i,
17
- size: s.size
18
- }, {
19
- default: r(() => [
20
- h(v(a), 1)
21
- ]),
22
- _: 2
23
- }, 1032, ["size"]))), 128))
24
- ]),
25
- _: 1
26
- });
27
- };
11
+ setup(n) {
12
+ const e = n, u = m(() => e.modelValue == null ? [] : typeof e.modelValue == "string" ? e.modelValue.split(",") : e.modelValue);
13
+ return (a, k) => (t(), r(o(g), null, {
14
+ default: l(() => [
15
+ (t(!0), c(d, null, f(u.value, (i, p) => (t(), r(o(h), {
16
+ key: p,
17
+ size: a.size
18
+ }, {
19
+ default: l(() => [
20
+ V(_(i), 1)
21
+ ]),
22
+ _: 2
23
+ }, 1032, ["size"]))), 128))
24
+ ]),
25
+ _: 1
26
+ }));
28
27
  }
29
28
  });
30
29
  export {
31
- z as default
30
+ x as default
32
31
  };
@@ -1,6 +1,13 @@
1
- import { defineComponent as S, ref as v, watch as V, resolveComponent as e, openBlock as $, createBlock as k, withCtx as l, renderSlot as p, createVNode as t, createTextVNode as B, toDisplayString as H, createElementVNode as I } from "vue";
2
- import { useRoute as D } from "vue-router";
3
- const E = /* @__PURE__ */ S({
1
+ import { defineComponent as T, ref as d, watch as w, openBlock as N, createBlock as C, unref as o, withCtx as l, renderSlot as p, createVNode as t, createTextVNode as S, toDisplayString as b, createElementVNode as $ } from "vue";
2
+ import { useRoute as x } from "vue-router";
3
+ import { VDialog as B } from "../bt-core/core/node_modules/vuetify/lib/components/VDialog/VDialog.mjs";
4
+ import { VCard as k } from "../bt-core/core/node_modules/vuetify/lib/components/VCard/VCard.mjs";
5
+ import { VBtn as c } from "../bt-core/core/node_modules/vuetify/lib/components/VBtn/VBtn.mjs";
6
+ import { VToolbar as H } from "../bt-core/core/node_modules/vuetify/lib/components/VToolbar/VToolbar.mjs";
7
+ import { VToolbarTitle as D } from "../bt-core/core/node_modules/vuetify/lib/components/VToolbar/VToolbarTitle.mjs";
8
+ import { VSpacer as I } from "../bt-core/core/node_modules/vuetify/lib/components/VGrid/VSpacer.mjs";
9
+ import { VCardText as J } from "../bt-core/core/node_modules/vuetify/lib/components/VCard/VCardText.mjs";
10
+ const z = /* @__PURE__ */ T({
4
11
  __name: "BT-Tour",
5
12
  props: {
6
13
  label: { default: "Info" },
@@ -8,71 +15,68 @@ const E = /* @__PURE__ */ S({
8
15
  tourName: {}
9
16
  },
10
17
  emits: ["close"],
11
- setup(f, { emit: _ }) {
12
- const g = _, i = f, n = v(!1), y = D(), r = `tour-info-box-${i.tourName ?? y.name}`, s = v({
13
- tourKey: r,
18
+ setup(v, { emit: V }) {
19
+ const g = V, i = v, a = d(!1), y = x(), s = `tour-info-box-${i.tourName ?? y.name}`, n = d({
20
+ tourKey: s,
14
21
  alwaysHide: !1
15
- }), c = localStorage.getItem(r);
16
- c != null && (s.value = JSON.parse(c)), n.value = !s.value.alwaysHide;
17
- function m(a) {
18
- a && (s.value.alwaysHide = !0), n.value = !1, localStorage.setItem(r, JSON.stringify(s.value)), g("close");
22
+ }), m = localStorage.getItem(s);
23
+ m != null && (n.value = JSON.parse(m)), a.value = !n.value.alwaysHide;
24
+ function f(r) {
25
+ r && (n.value.alwaysHide = !0), a.value = !1, localStorage.setItem(s, JSON.stringify(n.value)), g("close");
19
26
  }
20
- return V(() => i.showToggle, () => {
21
- n.value = !0;
22
- }), (a, o) => {
23
- const b = e("v-toolbar-title"), w = e("v-spacer"), d = e("v-btn"), N = e("v-toolbar"), T = e("v-card-text"), x = e("v-card"), C = e("v-dialog");
24
- return $(), k(C, {
25
- transition: "dialog-top-transition",
26
- modelValue: n.value,
27
- "onUpdate:modelValue": o[2] || (o[2] = (u) => n.value = u)
28
- }, {
29
- default: l(() => [
30
- p(a.$slots, "body", {}, () => [
31
- t(x, null, {
32
- actions: l(() => [
33
- t(d, {
34
- text: "Hide Forever",
35
- onClick: o[1] || (o[1] = (u) => m(!0))
36
- })
37
- ]),
38
- default: l(() => [
39
- t(N, { density: "compact" }, {
40
- default: l(() => [
41
- t(b, null, {
42
- default: l(() => [
43
- B(H(a.label), 1)
44
- ]),
45
- _: 1
46
- }),
47
- t(w),
48
- t(d, {
49
- icon: "$close",
50
- onClick: o[0] || (o[0] = (u) => m(!1))
51
- })
52
- ]),
53
- _: 1
54
- }),
55
- t(T, {
56
- class: "overflow-y-auto ma-0 pa-0",
57
- "max-height": "70vh"
58
- }, {
59
- default: l(() => [
60
- p(a.$slots, "content", {}, () => [
61
- o[3] || (o[3] = I("div", null, "Tour Content", -1))
62
- ])
63
- ]),
64
- _: 3
65
- })
66
- ]),
67
- _: 3
68
- })
69
- ])
70
- ]),
71
- _: 3
72
- }, 8, ["modelValue"]);
73
- };
27
+ return w(() => i.showToggle, () => {
28
+ a.value = !0;
29
+ }), (r, e) => (N(), C(o(B), {
30
+ transition: "dialog-top-transition",
31
+ modelValue: a.value,
32
+ "onUpdate:modelValue": e[2] || (e[2] = (u) => a.value = u)
33
+ }, {
34
+ default: l(() => [
35
+ p(r.$slots, "body", {}, () => [
36
+ t(o(k), null, {
37
+ actions: l(() => [
38
+ t(o(c), {
39
+ text: "Hide Forever",
40
+ onClick: e[1] || (e[1] = (u) => f(!0))
41
+ })
42
+ ]),
43
+ default: l(() => [
44
+ t(o(H), { density: "compact" }, {
45
+ default: l(() => [
46
+ t(o(D), null, {
47
+ default: l(() => [
48
+ S(b(r.label), 1)
49
+ ]),
50
+ _: 1
51
+ }),
52
+ t(o(I)),
53
+ t(o(c), {
54
+ icon: "$close",
55
+ onClick: e[0] || (e[0] = (u) => f(!1))
56
+ })
57
+ ]),
58
+ _: 1
59
+ }),
60
+ t(o(J), {
61
+ class: "overflow-y-auto ma-0 pa-0",
62
+ "max-height": "70vh"
63
+ }, {
64
+ default: l(() => [
65
+ p(r.$slots, "content", {}, () => [
66
+ e[3] || (e[3] = $("div", null, "Tour Content", -1))
67
+ ])
68
+ ]),
69
+ _: 3
70
+ })
71
+ ]),
72
+ _: 3
73
+ })
74
+ ])
75
+ ]),
76
+ _: 3
77
+ }, 8, ["modelValue"]));
74
78
  }
75
79
  });
76
80
  export {
77
- E as default
81
+ z as default
78
82
  };