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,17 +1,28 @@
1
- import { defineComponent as Ie, ref as J, computed as k, watch as we, onMounted as Ee, resolveComponent as g, openBlock as i, createBlock as c, unref as l, withCtx as o, renderSlot as y, createElementBlock as p, createVNode as u, withKeys as ue, withModifiers as m, createCommentVNode as v, normalizeStyle as U, mergeProps as O, Fragment as $, renderList as z, createTextVNode as G, toDisplayString as X, createElementVNode as R, normalizeClass as F, createSlots as Pe, nextTick as Ve } from "vue";
2
- import { isLengthyArray as A, isNullOrEmpty as de, capitalizeWords as ce } from "../composables/helpers.mjs";
3
- import { useAuth as Te } from "../composables/auth.mjs";
4
- import { useList as Fe } from "../composables/list.mjs";
5
- import { useNavigation as He } from "../composables/navigation.mjs";
6
- import { useNested as Me } from "../composables/nested.mjs";
7
- import { usePresets as Ne } from "../composables/presets.mjs";
8
- import { useRoute as Ue, useRouter as De } from "vue-router";
9
- import { useHeights as Le } from "../composables/heights.mjs";
10
- import { useDisplay as Oe } from "vuetify";
11
- const Ge = {
1
+ import { defineComponent as Ce, ref as X, computed as S, watch as Be, onMounted as Ie, resolveComponent as T, openBlock as i, createBlock as d, unref as e, withCtx as o, renderSlot as v, createElementBlock as p, createVNode as r, withKeys as se, withModifiers as f, createCommentVNode as c, normalizeStyle as U, mergeProps as R, Fragment as k, renderList as b, createTextVNode as G, toDisplayString as Z, createElementVNode as K, normalizeClass as F, createSlots as Ae, nextTick as we } from "vue";
2
+ import { isLengthyArray as B, isNullOrEmpty as oe, capitalizeWords as re } from "../composables/helpers.mjs";
3
+ import { useAuth as Ve } from "../composables/auth.mjs";
4
+ import { useList as Ee } from "../composables/list.mjs";
5
+ import { useNavigation as Pe } from "../composables/navigation.mjs";
6
+ import { useNested as Te } from "../composables/nested.mjs";
7
+ import { usePresets as Fe } from "../composables/presets.mjs";
8
+ import { useRoute as Me, useRouter as He } from "vue-router";
9
+ import { useHeights as Ne } from "../composables/heights.mjs";
10
+ import { useDisplay as Ue } from "vuetify";
11
+ import { VTextField as ue } from "../bt-core/core/node_modules/vuetify/lib/components/VTextField/VTextField.mjs";
12
+ import { VListItem as V } from "../bt-core/core/node_modules/vuetify/lib/components/VList/VListItem.mjs";
13
+ import { VRow as de } from "../bt-core/core/node_modules/vuetify/lib/components/VGrid/VRow.mjs";
14
+ import { VDivider as De } from "../bt-core/core/node_modules/vuetify/lib/components/VDivider/VDivider.mjs";
15
+ import { VTable as Le } from "../bt-core/core/node_modules/vuetify/lib/components/VTable/VTable.mjs";
16
+ import { VPagination as Oe } from "../bt-core/core/node_modules/vuetify/lib/components/VPagination/VPagination.mjs";
17
+ import { VBtn as m } from "../bt-core/core/node_modules/vuetify/lib/components/VBtn/VBtn.mjs";
18
+ import { VMenu as q } from "../bt-core/core/node_modules/vuetify/lib/components/VMenu/VMenu.mjs";
19
+ import { VList as D } from "../bt-core/core/node_modules/vuetify/lib/components/VList/VList.mjs";
20
+ import { VSpacer as ce } from "../bt-core/core/node_modules/vuetify/lib/components/VGrid/VSpacer.mjs";
21
+ import { VIcon as pe } from "../bt-core/core/node_modules/vuetify/lib/components/VIcon/VIcon.mjs";
22
+ const Re = {
12
23
  key: 0,
13
24
  class: "d-flex"
14
- }, Re = {
25
+ }, Ge = {
15
26
  key: 0,
16
27
  class: "d-flex align-center mr-2"
17
28
  }, Ke = { key: "0" }, qe = {
@@ -23,7 +34,7 @@ const Ge = {
23
34
  }, Qe = ["onClick"], We = { key: "0" }, je = {
24
35
  class: "d-flex",
25
36
  key: "a1"
26
- }, Je = { key: 0 }, st = /* @__PURE__ */ Ie({
37
+ }, Je = { key: 0 }, ft = /* @__PURE__ */ Ce({
27
38
  __name: "BT-Blade-Items",
28
39
  props: {
29
40
  actionButtonSize: { default: "x-small" },
@@ -154,201 +165,201 @@ const Ge = {
154
165
  variant: { default: "page" }
155
166
  },
156
167
  emits: ["update:selected", "change", "deleted", "fetched", "input", "select", "confirm", "mouse-over-item"],
157
- setup(ve, { emit: pe }) {
158
- const K = pe, s = ve, Z = J(null), x = J(null), { getValue: _ } = Me(), { xs: ye } = Oe(), D = Ue(), T = Ne(s.preset), { findDisplay: he } = He(), P = Te(), ee = Le(), t = Fe(s, K, {
168
+ setup(ve, { emit: ye }) {
169
+ const Y = ye, s = ve, x = X(null), _ = X(null), { getValue: ee } = Te(), { xs: he } = Ue(), L = Me(), P = Fe(s.preset), { findDisplay: me } = Pe(), E = Ve(), te = Ne(), l = Ee(s, Y, {
159
170
  hideActions: !0,
160
- onError: (e) => {
161
- if (e.code == 401)
162
- P.logout(), P.login(location.pathname);
171
+ onError: (t) => {
172
+ if (t.code == 401)
173
+ E.logout(), E.login(location.pathname);
163
174
  else
164
- return e;
175
+ return t;
165
176
  },
166
- router: De(),
167
- route: D
168
- }), f = k(() => s.actionButtonSize ?? s.size), me = k(() => T.canAdd ?? s.canAdd), te = k(() => {
169
- const e = T.fadingActions ?? s.fadingActions;
170
- return t.currentExternalParty.value == null && (e ?? !ye.value);
171
- }), ge = k(() => T.hideColumns ?? s.hideColumns), fe = k(() => T.hideFilters ?? s.hideFilters), q = k(() => (T.hideIntegrations ?? s.hideIntegrations) || t.proxyID.value != null), Se = k(() => T.hideRefresh ?? s.hideRefresh), le = k(() => !!s.hideSubtoolbar || s.variant == "inline"), ke = k(() => {
172
- var n, r, S;
173
- let e = s.label ?? (s.variant == "page" ? (n = D == null ? void 0 : D.meta) == null ? void 0 : n.displayName : void 0) ?? he(s.nav);
174
- return s.showCount && (s.paginate == "server" ? t.totalCount.value != null && (e = `${e} (${t.totalCount.value})`) : ((r = t.filteredItems.value) == null ? void 0 : r.length) != null && ((S = t.asyncItems.value) == null ? void 0 : S.length) != null && (e = `${e} (${t.filteredItems.value.length} of ${t.asyncItems.value.length})`)), e;
175
- }), Y = k(() => s.variant == "inline" && (s.canSearch || A(s.searchProps))), H = k(() => {
176
- let e = s.opacity != null ? `opacity: ${s.opacity};` : "";
177
+ router: He(),
178
+ route: L
179
+ }), g = S(() => s.actionButtonSize ?? s.size), fe = S(() => P.canAdd ?? s.canAdd), le = S(() => {
180
+ const t = P.fadingActions ?? s.fadingActions;
181
+ return l.currentExternalParty.value == null && (t ?? !he.value);
182
+ }), ge = S(() => P.hideColumns ?? s.hideColumns), Se = S(() => P.hideFilters ?? s.hideFilters), Q = S(() => (P.hideIntegrations ?? s.hideIntegrations) || l.proxyID.value != null), ke = S(() => P.hideRefresh ?? s.hideRefresh), ne = S(() => !!s.hideSubtoolbar || s.variant == "inline"), $e = S(() => {
183
+ var n, h, $;
184
+ let t = s.label ?? (s.variant == "page" ? (n = L == null ? void 0 : L.meta) == null ? void 0 : n.displayName : void 0) ?? me(s.nav);
185
+ return s.showCount && (s.paginate == "server" ? l.totalCount.value != null && (t = `${t} (${l.totalCount.value})`) : ((h = l.filteredItems.value) == null ? void 0 : h.length) != null && (($ = l.asyncItems.value) == null ? void 0 : $.length) != null && (t = `${t} (${l.filteredItems.value.length} of ${l.asyncItems.value.length})`)), t;
186
+ }), W = S(() => s.variant == "inline" && (s.canSearch || B(s.searchProps))), M = S(() => {
187
+ let t = s.opacity != null ? `opacity: ${s.opacity};` : "";
177
188
  if (s.actualHeight != null)
178
- return `${e} ${s.heightStrat == "upto" ? "max-height" : "height"}: calc(${s.actualHeight})`;
189
+ return `${t} ${s.heightStrat == "upto" ? "max-height" : "height"}: calc(${s.actualHeight})`;
179
190
  if (s.actualUsedHeight != null)
180
- return `${e} ${s.heightStrat == "upto" ? "max-height" : "height"}: calc(100vh - ${ee.getUsedHeight(s.actualUsedHeight)}px)`;
191
+ return `${t} ${s.heightStrat == "upto" ? "max-height" : "height"}: calc(100vh - ${te.getUsedHeight(s.actualUsedHeight)}px)`;
181
192
  {
182
193
  let n = 154;
183
- return s.bordered ? n += 26 : s.variant == "page" && (n += 16), s.variant == "pure" && (n -= 96), le.value && (n -= 48), s.hideToolbar == !0 && (n -= 48), de(s.paginate) && (n -= 58), `${e} ${s.heightStrat == "upto" ? "max-height" : "height"}: calc(100vh - ${ee.getUsedHeight(n)}px)`;
194
+ return s.bordered ? n += 26 : s.variant == "page" && (n += 16), s.variant == "pure" && (n -= 96), ne.value && (n -= 48), s.hideToolbar == !0 && (n -= 48), oe(s.paginate) && (n -= 58), `${t} ${s.heightStrat == "upto" ? "max-height" : "height"}: calc(100vh - ${te.getUsedHeight(n)}px)`;
184
195
  }
185
- }), M = J([]), ne = k({
196
+ }), H = X([]), ae = S({
186
197
  get() {
187
- const e = s.selected ?? M.value;
188
- let n = s.returnCSV ? e.split(",") : e;
198
+ const t = s.selected ?? H.value;
199
+ let n = s.returnCSV ? t.split(",") : t;
189
200
  if (s.selectSingle && !Array.isArray(n) && (n = [n]), s.returnIndex && s.returnCSV)
190
- return n.map((S) => Number.parseInt(S));
191
- let r = [];
192
- return s.itemValue != null && A(n) ? t.filteredItems.value.forEach((S) => {
193
- const V = _(S, s.itemValue);
194
- n.some((C) => C == V) && r.push(S);
195
- }) : s.itemValue == null && r.push(...n), s.selectSingle ? A(r) ? [r[0]] : [] : r;
201
+ return n.map(($) => Number.parseInt($));
202
+ let h = [];
203
+ return s.itemValue != null && B(n) ? l.filteredItems.value.forEach(($) => {
204
+ const O = ee($, s.itemValue);
205
+ n.some((N) => N == O) && h.push($);
206
+ }) : s.itemValue == null && h.push(...n), s.selectSingle ? B(h) ? [h[0]] : [] : h;
196
207
  },
197
- set(e) {
198
- if (e == null)
199
- K("update:selected", e), M.value = [];
208
+ set(t) {
209
+ if (t == null)
210
+ Y("update:selected", t), H.value = [];
200
211
  else {
201
- let n = e;
202
- s.returnIndex ? n = e.map((r) => t.filteredItems.value.indexOf((S) => S === r)) : s.itemValue != null && (n = e.map((r) => _(r, s.itemValue))), s.selectSingle ? (n = A(n) ? n[0] : void 0, M.value = n != null ? [n] : []) : M.value = n, s.returnCSV && n != null && (n = n.toString()), K("update:selected", n), M.value = n;
212
+ let n = t;
213
+ s.returnIndex ? n = t.map((h) => l.filteredItems.value.indexOf(($) => $ === h)) : s.itemValue != null && (n = t.map((h) => ee(h, s.itemValue))), s.selectSingle ? (n = B(n) ? n[0] : void 0, H.value = n != null ? [n] : []) : H.value = n, s.returnCSV && n != null && (n = n.toString()), Y("update:selected", n), H.value = n;
203
214
  }
204
215
  }
205
216
  });
206
- function ae() {
207
- s.onFocusSearch != null ? s.onFocusSearch() : Ve(() => {
208
- var n, r;
209
- let e;
210
- Y.value ? e = (n = x.value) == null ? void 0 : n.$el.querySelector("input:not([type=hidden]),textarea:not([type=hidden])") : t.showSearch.value && (e = (r = Z.value) == null ? void 0 : r.$el.querySelector("input:not([type=hidden]),textarea:not([type=hidden])")), e == null || e.focus();
217
+ function ie() {
218
+ s.onFocusSearch != null ? s.onFocusSearch() : we(() => {
219
+ var n, h;
220
+ let t;
221
+ W.value ? t = (n = _.value) == null ? void 0 : n.$el.querySelector("input:not([type=hidden]),textarea:not([type=hidden])") : l.showSearch.value && (t = (h = x.value) == null ? void 0 : h.$el.querySelector("input:not([type=hidden]),textarea:not([type=hidden])")), t == null || t.focus();
211
222
  });
212
223
  }
213
- function $e() {
214
- (s.canSearch !== !1 || A(s.searchProps)) && !t.showSearch.value && t.toggleSearch();
224
+ function ze() {
225
+ (s.canSearch !== !1 || B(s.searchProps)) && !l.showSearch.value && l.toggleSearch();
215
226
  }
216
- return we(t.showSearch, (e) => {
217
- e && ae();
218
- }), Ee(() => {
219
- ae();
220
- }), (e, n) => {
221
- const r = g("v-btn"), S = g("v-text-field"), V = g("v-slide-x-transition"), C = g("v-list-item"), N = g("v-list"), L = g("v-menu"), be = g("v-slide-y-transition"), ie = g("v-spacer"), se = g("v-icon"), oe = g("v-fade-transition"), Q = g("v-slide-y-reverse-transition"), W = g("bt-header-option"), re = g("v-row"), ze = g("v-divider"), Ce = g("v-table"), Be = g("v-pagination"), Ae = g("bt-blade");
222
- return i(), c(Ae, {
223
- onTitled: $e,
227
+ return Be(l.showSearch, (t) => {
228
+ t && ie();
229
+ }), Ie(() => {
230
+ ie();
231
+ }), (t, n) => {
232
+ const h = T("v-slide-x-transition"), $ = T("v-slide-y-transition"), O = T("v-fade-transition"), N = T("v-slide-y-reverse-transition"), j = T("bt-header-option"), be = T("bt-blade");
233
+ return i(), d(be, {
234
+ onTitled: ze,
224
235
  bladeBasic: "",
225
- bladeName: e.bladeName,
226
- bladeStartShowing: e.bladeStartShowing,
227
- bordered: e.bordered,
228
- density: e.density,
229
- flat: e.flat,
230
- errorMsg: l(t).errorMsg.value,
231
- hideSubtoolbar: le.value,
232
- hideToolbar: e.hideToolbar,
233
- label: ke.value,
234
- loadingMsg: l(t).loadingMsg.value,
235
- opacity: e.opacity,
236
- preset: e.preset,
237
- showOnlyTitleLeft: Y.value && l(t).showSearch.value,
238
- size: e.size,
239
- transparent: e.transparent,
240
- variant: e.variant
236
+ bladeName: t.bladeName,
237
+ bladeStartShowing: t.bladeStartShowing,
238
+ bordered: t.bordered,
239
+ density: t.density,
240
+ flat: t.flat,
241
+ errorMsg: e(l).errorMsg.value,
242
+ hideSubtoolbar: ne.value,
243
+ hideToolbar: t.hideToolbar,
244
+ label: $e.value,
245
+ loadingMsg: e(l).loadingMsg.value,
246
+ opacity: t.opacity,
247
+ preset: t.preset,
248
+ showOnlyTitleLeft: W.value && e(l).showSearch.value,
249
+ size: t.size,
250
+ transparent: t.transparent,
251
+ variant: t.variant
241
252
  }, {
242
253
  "blade-toolbar": o(() => [
243
- y(e.$slots, "blade-toolbar", {
244
- refresh: l(t).refresh,
245
- searchString: l(t).searchString,
246
- showSearch: l(t).showSearch,
247
- toggleSearch: l(t).toggleSearch,
248
- ui: l(t)
254
+ v(t.$slots, "blade-toolbar", {
255
+ refresh: e(l).refresh,
256
+ searchString: e(l).searchString,
257
+ showSearch: e(l).showSearch,
258
+ toggleSearch: e(l).toggleSearch,
259
+ ui: e(l)
249
260
  }, void 0, !0)
250
261
  ]),
251
262
  "blade-toolbar-left": o(() => [
252
- y(e.$slots, "toolbar-left", { ui: l(t) }, void 0, !0)
263
+ v(t.$slots, "toolbar-left", { ui: e(l) }, void 0, !0)
253
264
  ]),
254
265
  "blade-title-left": o(() => [
255
- Y.value ? (i(), p("div", Ge, [
256
- y(e.$slots, "search-box", { ui: l(t) }, () => [
257
- u(r, {
258
- icon: l(t).showSearch.value ? "$close" : "$magnify",
259
- size: e.size,
260
- onClick: l(t).toggleSearch,
266
+ W.value ? (i(), p("div", Re, [
267
+ v(t.$slots, "search-box", { ui: e(l) }, () => [
268
+ r(e(m), {
269
+ icon: e(l).showSearch.value ? "$close" : "$magnify",
270
+ size: t.size,
271
+ onClick: e(l).toggleSearch,
261
272
  variant: "text"
262
273
  }, null, 8, ["icon", "size", "onClick"]),
263
- u(V, { "hide-on-leave": "" }, {
274
+ r(h, { "hide-on-leave": "" }, {
264
275
  default: o(() => [
265
- l(t).showSearch.value ? (i(), c(S, {
276
+ e(l).showSearch.value ? (i(), d(e(ue), {
266
277
  key: 0,
267
- "onClick:appendInner": n[0] || (n[0] = () => l(t).refresh({ deepRefresh: !0 })),
268
- onKeyup: n[1] || (n[1] = ue(m(() => {
278
+ "onClick:appendInner": n[0] || (n[0] = () => e(l).refresh({ deepRefresh: !0 })),
279
+ onKeyup: n[1] || (n[1] = se(f(() => {
269
280
  console.log("kk");
270
281
  }, ["stop"]), ["native", "enter"])),
271
282
  "append-inner-icon": "$magnify",
272
283
  autofocus: "",
273
- density: e.density,
284
+ density: t.density,
274
285
  flat: "",
275
286
  "hide-details": "",
276
287
  placeholder: "Find",
277
288
  ref_key: "inlineSearchEl",
278
- ref: x,
289
+ ref: _,
279
290
  style: { width: "200px" },
280
291
  variant: "solo",
281
- modelValue: l(t).searchString.value,
282
- "onUpdate:modelValue": n[2] || (n[2] = (d) => l(t).searchString.value = d)
283
- }, null, 8, ["density", "modelValue"])) : v("", !0)
292
+ modelValue: e(l).searchString.value,
293
+ "onUpdate:modelValue": n[2] || (n[2] = (u) => e(l).searchString.value = u)
294
+ }, null, 8, ["density", "modelValue"])) : c("", !0)
284
295
  ]),
285
296
  _: 1
286
297
  })
287
298
  ], !0)
288
- ])) : v("", !0)
299
+ ])) : c("", !0)
289
300
  ]),
290
301
  "blade-toolbar-right": o(() => [
291
- y(e.$slots, "toolbar-right", {
292
- style: U(H.value),
293
- ui: l(t)
302
+ v(t.$slots, "toolbar-right", {
303
+ style: U(M.value),
304
+ ui: e(l)
294
305
  }, void 0, !0),
295
- Se.value ? v("", !0) : (i(), c(r, {
306
+ ke.value ? c("", !0) : (i(), d(e(m), {
296
307
  key: 0,
297
308
  icon: "$refresh",
298
- onClick: n[3] || (n[3] = m((d) => l(t).refresh({ deepRefresh: !0 }), ["stop"])),
299
- size: e.size,
309
+ onClick: n[3] || (n[3] = f((u) => e(l).refresh({ deepRefresh: !0 }), ["stop"])),
310
+ size: t.size,
300
311
  title: "Refresh",
301
312
  variant: "text"
302
313
  }, null, 8, ["size"])),
303
- me.value ? (i(), c(r, {
314
+ fe.value ? (i(), d(e(m), {
304
315
  key: 1,
305
316
  icon: "$plus",
306
- onClick: n[4] || (n[4] = m((d) => l(t).add(e.variant), ["stop"])),
307
- size: e.size,
308
- disabled: !l(P).canEdit(e.nav),
317
+ onClick: n[4] || (n[4] = f((u) => e(l).add(t.variant), ["stop"])),
318
+ size: t.size,
319
+ disabled: !e(E).canEdit(t.nav),
309
320
  title: "Add",
310
321
  variant: "text"
311
- }, null, 8, ["size", "disabled"])) : v("", !0)
322
+ }, null, 8, ["size", "disabled"])) : c("", !0)
312
323
  ]),
313
324
  subtoolbar: o(() => [
314
- y(e.$slots, "subtoolbar", {}, () => [
315
- e.hideSubtoolbarSettings ? v("", !0) : (i(), c(L, {
325
+ v(t.$slots, "subtoolbar", {}, () => [
326
+ t.hideSubtoolbarSettings ? c("", !0) : (i(), d(e(q), {
316
327
  key: 0,
317
328
  "close-on-content-click": !1,
318
- density: e.density
329
+ density: t.density
319
330
  }, {
320
- activator: o(({ props: d }) => [
321
- u(r, O({
331
+ activator: o(({ props: u }) => [
332
+ r(e(m), R({
322
333
  icon: "$cog",
323
- size: e.size
324
- }, d, { variant: "text" }), null, 16, ["size"])
334
+ size: t.size
335
+ }, u, { variant: "text" }), null, 16, ["size"])
325
336
  ]),
326
337
  default: o(() => [
327
- u(N, {
328
- density: e.density,
338
+ r(e(D), {
339
+ density: t.density,
329
340
  "min-width": "300"
330
341
  }, {
331
342
  default: o(() => [
332
- ge.value ? v("", !0) : (i(), c(L, {
343
+ ge.value ? c("", !0) : (i(), d(e(q), {
333
344
  key: 0,
334
345
  "close-on-content-click": !1,
335
- density: e.density,
346
+ density: t.density,
336
347
  location: "end"
337
348
  }, {
338
- activator: o(({ props: d }) => [
339
- u(C, O(d, {
349
+ activator: o(({ props: u }) => [
350
+ r(e(V), R(u, {
340
351
  "prepend-icon": "$view-column",
341
352
  subtitle: "Columns"
342
353
  }), null, 16)
343
354
  ]),
344
355
  default: o(() => [
345
- u(N, null, {
356
+ r(e(D), null, {
346
357
  default: o(() => [
347
- (i(!0), p($, null, z(l(t).headerOptions.value, (d, B) => (i(), c(C, {
348
- key: B,
349
- "prepend-icon": d.hide === !0 ? "mdi" : "$check",
350
- subtitle: d.title,
351
- onClick: m((a) => d.hide = !d.hide, ["stop"])
358
+ (i(!0), p(k, null, b(e(l).headerOptions.value, (u, C) => (i(), d(e(V), {
359
+ key: C,
360
+ "prepend-icon": u.hide === !0 ? "mdi" : "$check",
361
+ subtitle: u.title,
362
+ onClick: f((a) => u.hide = !u.hide, ["stop"])
352
363
  }, null, 8, ["prepend-icon", "subtitle", "onClick"]))), 128))
353
364
  ]),
354
365
  _: 1
@@ -356,32 +367,32 @@ const Ge = {
356
367
  ]),
357
368
  _: 1
358
369
  }, 8, ["density"])),
359
- e.archiveBladeName != null ? (i(), c(C, {
370
+ t.archiveBladeName != null ? (i(), d(e(V), {
360
371
  key: 1,
361
- density: e.density,
372
+ density: t.density,
362
373
  "prepend-icon": "$archive-outline",
363
374
  subtitle: "Archives",
364
- to: { name: e.archiveBladeName }
365
- }, null, 8, ["density", "to"])) : v("", !0),
366
- e.canShowInactive ? (i(), c(C, {
375
+ to: { name: t.archiveBladeName }
376
+ }, null, 8, ["density", "to"])) : c("", !0),
377
+ t.canShowInactive ? (i(), d(e(V), {
367
378
  key: 2,
368
- density: e.density,
379
+ density: t.density,
369
380
  "prepend-icon": "$eraser",
370
- subtitle: l(t).showInactive.value ? "Hide Inactive" : "Show Inactive",
371
- onClick: n[5] || (n[5] = m((d) => l(t).showInactive.value = !l(t).showInactive.value, ["stop"]))
372
- }, null, 8, ["density", "subtitle"])) : v("", !0),
373
- e.canExportCSV ? (i(), c(C, {
381
+ subtitle: e(l).showInactive.value ? "Hide Inactive" : "Show Inactive",
382
+ onClick: n[5] || (n[5] = f((u) => e(l).showInactive.value = !e(l).showInactive.value, ["stop"]))
383
+ }, null, 8, ["density", "subtitle"])) : c("", !0),
384
+ t.canExportCSV ? (i(), d(e(V), {
374
385
  key: 3,
375
- density: e.density,
386
+ density: t.density,
376
387
  "prepend-icon": "$file-delimited-outline",
377
388
  subtitle: "Export To CSV",
378
- onClick: l(t).exportToCSV
379
- }, null, 8, ["density", "onClick"])) : v("", !0),
380
- y(e.$slots, "settings", {
381
- items: l(t).filteredItems.value,
382
- allItems: l(t).asyncItems.value,
383
- size: e.size,
384
- ui: l(t)
389
+ onClick: e(l).exportToCSV
390
+ }, null, 8, ["density", "onClick"])) : c("", !0),
391
+ v(t.$slots, "settings", {
392
+ items: e(l).filteredItems.value,
393
+ allItems: e(l).asyncItems.value,
394
+ size: t.size,
395
+ ui: e(l)
385
396
  }, void 0, !0)
386
397
  ]),
387
398
  _: 3
@@ -389,79 +400,79 @@ const Ge = {
389
400
  ]),
390
401
  _: 3
391
402
  }, 8, ["density"])),
392
- y(e.$slots, "search-box", { ui: l(t) }, () => [
393
- u(be, { "hide-on-leave": "" }, {
403
+ v(t.$slots, "search-box", { ui: e(l) }, () => [
404
+ r($, { "hide-on-leave": "" }, {
394
405
  default: o(() => [
395
- (e.canSearch !== !1 || l(A)(e.searchProps)) && !l(t).showSearch.value ? (i(), c(r, {
406
+ (t.canSearch !== !1 || e(B)(t.searchProps)) && !e(l).showSearch.value ? (i(), d(e(m), {
396
407
  icon: "$magnify",
397
408
  key: "11",
398
- size: e.size,
399
- onClick: m(l(t).toggleSearch, ["stop"])
400
- }, null, 8, ["size", "onClick"])) : (e.canSearch !== !1 || l(A)(e.searchProps)) && l(t).showSearch.value ? (i(), c(S, {
401
- "onClick:appendInner": n[6] || (n[6] = () => l(t).refresh({ deepRefresh: !0 })),
402
- "onClick:prependInner": n[7] || (n[7] = () => l(t).toggleSearch()),
403
- onKeyup: n[8] || (n[8] = ue(m(() => l(t).refresh({ deepRefresh: !0 }), ["stop"]), ["native", "enter"])),
409
+ size: t.size,
410
+ onClick: f(e(l).toggleSearch, ["stop"])
411
+ }, null, 8, ["size", "onClick"])) : (t.canSearch !== !1 || e(B)(t.searchProps)) && e(l).showSearch.value ? (i(), d(e(ue), {
412
+ "onClick:appendInner": n[6] || (n[6] = () => e(l).refresh({ deepRefresh: !0 })),
413
+ "onClick:prependInner": n[7] || (n[7] = () => e(l).toggleSearch()),
414
+ onKeyup: n[8] || (n[8] = se(f(() => e(l).refresh({ deepRefresh: !0 }), ["stop"]), ["native", "enter"])),
404
415
  "append-inner-icon": "$magnify",
405
416
  "prepend-inner-icon": "$close",
406
- density: e.density,
417
+ density: t.density,
407
418
  flat: "",
408
419
  "hide-details": "",
409
420
  ref_key: "searchEl",
410
- ref: Z,
421
+ ref: x,
411
422
  key: "12",
412
423
  placeholder: "Find",
413
424
  variant: "outlined",
414
- modelValue: l(t).searchString.value,
415
- "onUpdate:modelValue": n[9] || (n[9] = (d) => l(t).searchString.value = d)
416
- }, null, 8, ["density", "modelValue"])) : v("", !0)
425
+ modelValue: e(l).searchString.value,
426
+ "onUpdate:modelValue": n[9] || (n[9] = (u) => e(l).searchString.value = u)
427
+ }, null, 8, ["density", "modelValue"])) : c("", !0)
417
428
  ]),
418
429
  _: 1
419
430
  })
420
431
  ], !0),
421
- y(e.$slots, "actions", {
422
- ui: l(t),
423
- allItems: l(t).asyncItems.value,
424
- size: e.size
432
+ v(t.$slots, "actions", {
433
+ ui: e(l),
434
+ allItems: e(l).asyncItems.value,
435
+ size: t.size
425
436
  }, void 0, !0),
426
- u(ie),
427
- y(e.$slots, "actions-right", {
428
- ui: l(t),
429
- allItems: l(t).asyncItems.value,
430
- size: e.size
437
+ r(e(ce)),
438
+ v(t.$slots, "actions-right", {
439
+ ui: e(l),
440
+ allItems: e(l).asyncItems.value,
441
+ size: t.size
431
442
  }, void 0, !0),
432
- !fe.value && l(A)(l(t).filters.value) ? (i(), c(L, {
443
+ !Se.value && e(B)(e(l).filters.value) ? (i(), d(e(q), {
433
444
  key: 1,
434
445
  "close-on-content-click": !1,
435
- density: e.density,
446
+ density: t.density,
436
447
  location: "start"
437
448
  }, {
438
- activator: o(({ props: d }) => [
439
- u(r, O({
449
+ activator: o(({ props: u }) => [
450
+ r(e(m), R({
440
451
  icon: "$filter",
441
- size: e.size
442
- }, d, { variant: "text" }), null, 16, ["size"])
452
+ size: t.size
453
+ }, u, { variant: "text" }), null, 16, ["size"])
443
454
  ]),
444
455
  default: o(() => [
445
- u(N, {
456
+ r(e(D), {
446
457
  class: "pa-0",
447
- density: e.density,
458
+ density: t.density,
448
459
  "open-strategy": "multiple",
449
460
  "select-strategy": "classic",
450
- selected: l(t).selectedFilters.value,
451
- "onUpdate:selected": n[10] || (n[10] = (d) => l(t).selectedFilters.value = d)
461
+ selected: e(l).selectedFilters.value,
462
+ "onUpdate:selected": n[10] || (n[10] = (u) => e(l).selectedFilters.value = u)
452
463
  }, {
453
464
  default: o(() => [
454
- (i(!0), p($, null, z(l(t).filters.value, (d, B) => (i(), c(C, {
455
- key: B,
456
- subtitle: d,
457
- value: B
465
+ (i(!0), p(k, null, b(e(l).filters.value, (u, C) => (i(), d(e(V), {
466
+ key: C,
467
+ subtitle: u,
468
+ value: C
458
469
  }, {
459
470
  prepend: o(({ isActive: a }) => [
460
- u(V, null, {
471
+ r(h, null, {
461
472
  default: o(() => [
462
- u(se, { size: e.size }, {
473
+ r(e(pe), { size: t.size }, {
463
474
  default: o(() => [
464
- G(X(a ? "$check" : ""), 1)
475
+ G(Z(a ? "$check" : ""), 1)
465
476
  ]),
466
477
  _: 2
467
478
  }, 1032, ["size"])
@@ -471,18 +482,18 @@ const Ge = {
471
482
  ]),
472
483
  _: 2
473
484
  }, 1032, ["subtitle", "value"]))), 128)),
474
- u(oe, { "hide-on-leave": "" }, {
485
+ r(O, { "hide-on-leave": "" }, {
475
486
  default: o(() => [
476
- l(t).filtersChanged.value ? (i(), c(r, {
487
+ e(l).filtersChanged.value ? (i(), d(e(m), {
477
488
  key: 0,
478
489
  block: "",
479
- onClick: m(l(t).applyFilters, ["stop"]),
480
- size: e.size
490
+ onClick: f(e(l).applyFilters, ["stop"]),
491
+ size: t.size
481
492
  }, {
482
493
  default: o(() => [
483
- u(se, {
494
+ r(e(pe), {
484
495
  start: "",
485
- size: e.size
496
+ size: t.size
486
497
  }, {
487
498
  default: o(() => n[16] || (n[16] = [
488
499
  G("$filter")
@@ -492,7 +503,7 @@ const Ge = {
492
503
  n[17] || (n[17] = G("Apply "))
493
504
  ]),
494
505
  _: 1
495
- }, 8, ["onClick", "size"])) : v("", !0)
506
+ }, 8, ["onClick", "size"])) : c("", !0)
496
507
  ]),
497
508
  _: 1
498
509
  })
@@ -501,26 +512,26 @@ const Ge = {
501
512
  }, 8, ["density", "selected"])
502
513
  ]),
503
514
  _: 1
504
- }, 8, ["density"])) : v("", !0),
505
- !q.value && l(A)(l(t).externalParties.value) ? (i(), c(L, {
515
+ }, 8, ["density"])) : c("", !0),
516
+ !Q.value && e(B)(e(l).externalParties.value) ? (i(), d(e(q), {
506
517
  key: 2,
507
- density: e.density,
518
+ density: t.density,
508
519
  location: "bottom"
509
520
  }, {
510
- activator: o(({ props: d }) => [
511
- u(Q, { "hide-on-leave": "" }, {
521
+ activator: o(({ props: u }) => [
522
+ r(N, { "hide-on-leave": "" }, {
512
523
  default: o(() => [
513
- l(t).currentExternalParty.value != null ? (i(), p("div", Re, [
514
- u(r, {
524
+ e(l).currentExternalParty.value != null ? (i(), p("div", Ge, [
525
+ r(e(m), {
515
526
  icon: "$close",
516
- onClick: n[11] || (n[11] = m((B) => l(t).selectExternalParty(void 0), ["stop"]))
527
+ onClick: n[11] || (n[11] = f((C) => e(l).selectExternalParty(void 0), ["stop"]))
517
528
  }),
518
- R("span", null, "Sync: " + X(l(ce)(l(t).currentExternalParty.value.party)), 1)
519
- ])) : (i(), c(r, O({
529
+ K("span", null, "Sync: " + Z(e(re)(e(l).currentExternalParty.value.party)), 1)
530
+ ])) : (i(), d(e(m), R({
520
531
  key: 1,
521
532
  icon: "$cloud-sync",
522
- size: e.size
523
- }, d, {
533
+ size: t.size
534
+ }, u, {
524
535
  title: "Open sync options",
525
536
  variant: "text"
526
537
  }), null, 16, ["size"]))
@@ -529,105 +540,105 @@ const Ge = {
529
540
  }, 1024)
530
541
  ]),
531
542
  default: o(() => [
532
- u(N, {
533
- density: e.density,
543
+ r(e(D), {
544
+ density: t.density,
534
545
  "min-width": "150"
535
546
  }, {
536
547
  default: o(() => [
537
- (i(!0), p($, null, z(l(t).externalParties.value, (d, B) => (i(), c(C, {
538
- onClick: m((a) => l(t).selectExternalParty(d), ["stop"]),
539
- key: (d.party ?? "") + B,
540
- title: l(ce)(d.party)
548
+ (i(!0), p(k, null, b(e(l).externalParties.value, (u, C) => (i(), d(e(V), {
549
+ onClick: f((a) => e(l).selectExternalParty(u), ["stop"]),
550
+ key: (u.party ?? "") + C,
551
+ title: e(re)(u.party)
541
552
  }, null, 8, ["onClick", "title"]))), 128))
542
553
  ]),
543
554
  _: 1
544
555
  }, 8, ["density"])
545
556
  ]),
546
557
  _: 1
547
- }, 8, ["density"])) : v("", !0)
558
+ }, 8, ["density"])) : c("", !0)
548
559
  ], !0)
549
560
  ]),
550
- content: o(({ bladeData: d, isMobile: B }) => [
551
- y(e.$slots, "d", {
552
- items: l(t).asyncItems
561
+ content: o(({ bladeData: u, isMobile: C }) => [
562
+ v(t.$slots, "d", {
563
+ items: e(l).asyncItems
553
564
  }, void 0, !0),
554
- y(e.$slots, "body", {
555
- bladeData: d,
556
- items: l(t).filteredItems.value,
557
- allItems: l(t).asyncItems.value,
558
- refresh: l(t).refresh,
559
- searchString: l(t).searchString,
560
- showSearch: l(t).showSearch,
561
- size: e.size,
562
- style: U(H.value),
563
- toggleSearch: l(t).toggleSearch,
564
- ui: l(t)
565
+ v(t.$slots, "body", {
566
+ bladeData: u,
567
+ items: e(l).filteredItems.value,
568
+ allItems: e(l).asyncItems.value,
569
+ refresh: e(l).refresh,
570
+ searchString: e(l).searchString,
571
+ showSearch: e(l).showSearch,
572
+ size: t.size,
573
+ style: U(M.value),
574
+ toggleSearch: e(l).toggleSearch,
575
+ ui: e(l)
565
576
  }, () => [
566
- y(e.$slots, "top", {
567
- refresh: l(t).refresh,
568
- searchString: l(t).searchString,
569
- showSearch: l(t).showSearch,
570
- toggleSearch: l(t).toggleSearch,
571
- size: e.size,
572
- allItems: l(t).asyncItems.value,
573
- items: l(t).filteredItems.value,
574
- ui: l(t)
577
+ v(t.$slots, "top", {
578
+ refresh: e(l).refresh,
579
+ searchString: e(l).searchString,
580
+ showSearch: e(l).showSearch,
581
+ toggleSearch: e(l).toggleSearch,
582
+ size: t.size,
583
+ allItems: e(l).asyncItems.value,
584
+ items: e(l).filteredItems.value,
585
+ ui: e(l)
575
586
  }, void 0, !0),
576
- l(A)(l(t).asyncItems.value) ? e.selectSingle || e.selectMulti || e.showListOnly === !0 || B ? (i(), c(N, {
587
+ e(B)(e(l).asyncItems.value) ? t.selectSingle || t.selectMulti || t.showListOnly === !0 || C ? (i(), d(e(D), {
577
588
  key: 1,
578
- "active-class": e.activeClass,
579
- class: F(["pt-0", e.scrollY ? "overflow-y-auto" : ""]),
580
- "bg-color": e.transparent ? "transparent" : void 0,
589
+ "active-class": t.activeClass,
590
+ class: F(["pt-0", t.scrollY ? "overflow-y-auto" : ""]),
591
+ "bg-color": t.transparent ? "transparent" : void 0,
581
592
  flat: "",
582
- density: e.density,
583
- lines: e.lines,
584
- mandatory: !e.canUnselect,
585
- selectable: e.selectSingle || e.selectMulti,
586
- "select-strategy": e.selectSingle ? "single-independent" : "independent",
587
- style: U(H.value),
588
- selected: ne.value,
589
- "onUpdate:selected": n[13] || (n[13] = (a) => ne.value = a)
593
+ density: t.density,
594
+ lines: t.lines,
595
+ mandatory: !t.canUnselect,
596
+ selectable: t.selectSingle || t.selectMulti,
597
+ "select-strategy": t.selectSingle ? "single-independent" : "independent",
598
+ style: U(M.value),
599
+ selected: ae.value,
600
+ "onUpdate:selected": n[13] || (n[13] = (a) => ae.value = a)
590
601
  }, {
591
602
  default: o(() => [
592
- u(V, {
603
+ r(h, {
593
604
  group: "",
594
605
  "hide-on-leave": ""
595
606
  }, {
596
607
  default: o(() => [
597
- (i(!0), p($, null, z(l(t).filteredItems.value, (a, I) => (i(), p($, {
608
+ (i(!0), p(k, null, b(e(l).filteredItems.value, (a, I) => (i(), p(k, {
598
609
  key: `${a.id}${I}-table-list-item`
599
610
  }, [
600
- y(e.$slots, "listItem", {
601
- bladeData: d,
602
- deleteItem: () => l(t).deleteItem(a),
611
+ v(t.$slots, "listItem", {
612
+ bladeData: u,
613
+ deleteItem: () => e(l).deleteItem(a),
603
614
  item: a,
604
615
  index: I,
605
- size: e.size,
606
- select: () => l(t).selectItem(a, e.variant),
607
- ui: l(t)
616
+ size: t.size,
617
+ select: () => e(l).selectItem(a, t.variant),
618
+ ui: e(l)
608
619
  }, () => [
609
- u(C, {
620
+ r(e(V), {
610
621
  class: "mouse-item",
611
- density: e.density,
612
- ripple: e.ripple,
622
+ density: t.density,
623
+ ripple: t.ripple,
613
624
  value: a,
614
- onClick: (h) => l(t).selectItem(a, e.variant),
615
- onMouseover: (h) => e.$emit("mouse-over-item", a)
616
- }, Pe({
625
+ onClick: (y) => e(l).selectItem(a, t.variant),
626
+ onMouseover: (y) => t.$emit("mouse-over-item", a)
627
+ }, Ae({
617
628
  title: o(() => [
618
- y(e.$slots, "itemTitle", {
629
+ v(t.$slots, "itemTitle", {
619
630
  item: a,
620
631
  index: I,
621
- size: e.size
632
+ size: t.size
622
633
  }, () => [
623
- (i(!0), p($, null, z(l(t).titleOptions.value, (h, w) => (i(), p("span", { key: w }, [
624
- (i(!0), p($, null, z(h.values, (b, E) => y(e.$slots, b.value, {
625
- key: E,
634
+ (i(!0), p(k, null, b(e(l).titleOptions.value, (y, A) => (i(), p("span", { key: A }, [
635
+ (i(!0), p(k, null, b(y.values, (z, w) => v(t.$slots, z.value, {
636
+ key: w,
626
637
  item: a,
627
638
  class: "mr-1"
628
639
  }, () => [
629
- u(W, {
630
- option: b,
640
+ r(j, {
641
+ option: z,
631
642
  data: a
632
643
  }, null, 8, ["option", "data"])
633
644
  ], !0)), 128))
@@ -635,19 +646,19 @@ const Ge = {
635
646
  ], !0)
636
647
  ]),
637
648
  subtitle: o(() => [
638
- y(e.$slots, "itemSubtitle", {
649
+ v(t.$slots, "itemSubtitle", {
639
650
  item: a,
640
651
  index: I,
641
- size: e.size
652
+ size: t.size
642
653
  }, () => [
643
- (i(!0), p($, null, z(l(t).subtitleOptions.value, (h, w) => (i(), p("span", { key: w }, [
644
- (i(!0), p($, null, z(h.values, (b, E) => y(e.$slots, b.value, {
645
- key: E,
654
+ (i(!0), p(k, null, b(e(l).subtitleOptions.value, (y, A) => (i(), p("span", { key: A }, [
655
+ (i(!0), p(k, null, b(y.values, (z, w) => v(t.$slots, z.value, {
656
+ key: w,
646
657
  item: a,
647
658
  class: "mr-1"
648
659
  }, () => [
649
- u(W, {
650
- option: b,
660
+ r(j, {
661
+ option: z,
651
662
  data: a
652
663
  }, null, 8, ["option", "data"])
653
664
  ], !0)), 128))
@@ -655,96 +666,96 @@ const Ge = {
655
666
  ], !0)
656
667
  ]),
657
668
  prepend: o(() => [
658
- y(e.$slots, "itemPrepend", {
669
+ v(t.$slots, "itemPrepend", {
659
670
  item: a,
660
671
  index: I,
661
- size: e.size
672
+ size: t.size
662
673
  }, void 0, !0)
663
674
  ]),
664
675
  _: 2
665
676
  }, [
666
- e.hideActions ? void 0 : {
677
+ t.hideActions ? void 0 : {
667
678
  name: "append",
668
679
  fn: o(() => [
669
- u(re, {
680
+ r(e(de), {
670
681
  "no-gutters": "",
671
- class: F(te.value ? "actionButtons" : null)
682
+ class: F(le.value ? "actionButtons" : null)
672
683
  }, {
673
684
  default: o(() => [
674
- y(e.$slots, "itemActions", {
685
+ v(t.$slots, "itemActions", {
675
686
  item: a,
676
687
  index: I,
677
- items: l(t).asyncItems.value,
678
- size: f.value
688
+ items: e(l).asyncItems.value,
689
+ size: g.value
679
690
  }, void 0, !0),
680
- u(V, {
691
+ r(h, {
681
692
  group: "",
682
693
  "hide-on-leave": ""
683
694
  }, {
684
695
  default: o(() => [
685
- !q.value && l(t).isIntegratable.value(a) ? (i(), p("div", Ke, [
686
- u(Q, { "hide-on-leave": "" }, {
696
+ !Q.value && e(l).isIntegratable.value(a) ? (i(), p("div", Ke, [
697
+ r(N, { "hide-on-leave": "" }, {
687
698
  default: o(() => {
688
- var h, w, b, E;
699
+ var y, A, z, w;
689
700
  return [
690
- l(t).isIntegrated.value(a) ? (i(), p("div", qe, [
691
- u(r, {
701
+ e(l).isIntegrated.value(a) ? (i(), p("div", qe, [
702
+ r(e(m), {
692
703
  class: "text-success",
693
704
  icon: "$cloud-check",
694
- size: f.value,
695
- title: `Synced with ${(h = l(t).currentExternalParty.value) == null ? void 0 : h.party}`,
705
+ size: g.value,
706
+ title: `Synced with ${(y = e(l).currentExternalParty.value) == null ? void 0 : y.party}`,
696
707
  variant: "text"
697
708
  }, null, 8, ["size", "title"]),
698
- (w = l(t).currentExternalParty.value) != null && w.canUnlink ? (i(), c(r, {
709
+ (A = e(l).currentExternalParty.value) != null && A.canUnlink ? (i(), d(e(m), {
699
710
  key: 0,
700
- onClick: m((j) => l(t).unlinkFromExternalParty(a), ["stop"]),
711
+ onClick: f((J) => e(l).unlinkFromExternalParty(a), ["stop"]),
701
712
  class: "text-error",
702
713
  icon: "$cloud-remove",
703
- size: f.value,
704
- title: `Unlink from ${(b = l(t).currentExternalParty.value) == null ? void 0 : b.party}`,
714
+ size: g.value,
715
+ title: `Unlink from ${(z = e(l).currentExternalParty.value) == null ? void 0 : z.party}`,
705
716
  variant: "text"
706
- }, null, 8, ["onClick", "size", "title"])) : v("", !0)
707
- ])) : (i(), c(r, {
708
- onClick: m((j) => l(t).pushToExternalParty(a), ["stop"]),
717
+ }, null, 8, ["onClick", "size", "title"])) : c("", !0)
718
+ ])) : (i(), d(e(m), {
719
+ onClick: f((J) => e(l).pushToExternalParty(a), ["stop"]),
709
720
  icon: "$cloud-upload",
710
721
  key: "a2",
711
- size: f.value,
712
- title: `Send to ${(E = l(t).currentExternalParty.value) == null ? void 0 : E.party}`,
722
+ size: g.value,
723
+ title: `Send to ${(w = e(l).currentExternalParty.value) == null ? void 0 : w.party}`,
713
724
  variant: "text"
714
725
  }, null, 8, ["onClick", "size", "title"]))
715
726
  ];
716
727
  }),
717
728
  _: 2
718
729
  }, 1024)
719
- ])) : v("", !0),
720
- a.errorMsg != null ? (i(), c(r, {
721
- onClick: n[12] || (n[12] = m(() => {
730
+ ])) : c("", !0),
731
+ a.errorMsg != null ? (i(), d(e(m), {
732
+ onClick: n[12] || (n[12] = f(() => {
722
733
  }, ["stop"])),
723
734
  class: "text-warning",
724
735
  icon: "$alert-circle",
725
736
  key: "1",
726
- size: f.value,
737
+ size: g.value,
727
738
  title: a.errorMsg
728
- }, null, 8, ["size", "title"])) : v("", !0),
729
- e.canDelete && l(t).isDeletable.value(a) ? (i(), c(r, {
730
- onClick: m((h) => l(t).deleteItem(a), ["stop"]),
739
+ }, null, 8, ["size", "title"])) : c("", !0),
740
+ t.canDelete && e(l).isDeletable.value(a) ? (i(), d(e(m), {
741
+ onClick: f((y) => e(l).deleteItem(a), ["stop"]),
731
742
  class: "text-error",
732
- disabled: !l(P).canEdit(e.nav),
743
+ disabled: !e(E).canEdit(t.nav),
733
744
  icon: "$delete",
734
745
  key: "2",
735
746
  loading: a.loadingCount > 0,
736
- size: f.value,
747
+ size: g.value,
737
748
  variant: "text"
738
- }, null, 8, ["onClick", "disabled", "loading", "size"])) : v("", !0),
739
- e.canRestore && l(t).isRestorable.value(a) ? (i(), c(r, {
740
- onClick: m((h) => l(t).restoreItem(a), ["stop"]),
741
- disabled: !l(P).canEdit(e.nav),
749
+ }, null, 8, ["onClick", "disabled", "loading", "size"])) : c("", !0),
750
+ t.canRestore && e(l).isRestorable.value(a) ? (i(), d(e(m), {
751
+ onClick: f((y) => e(l).restoreItem(a), ["stop"]),
752
+ disabled: !e(E).canEdit(t.nav),
742
753
  key: "3",
743
754
  icon: "$eraser-variant",
744
755
  loading: a.loadingCount > 0,
745
- size: f.value,
756
+ size: g.value,
746
757
  variant: "text"
747
- }, null, 8, ["onClick", "disabled", "loading", "size"])) : v("", !0)
758
+ }, null, 8, ["onClick", "disabled", "loading", "size"])) : c("", !0)
748
759
  ]),
749
760
  _: 2
750
761
  }, 1024)
@@ -756,143 +767,143 @@ const Ge = {
756
767
  }
757
768
  ]), 1032, ["density", "ripple", "value", "onClick", "onMouseover"])
758
769
  ], !0),
759
- e.dividers ? (i(), c(ze, {
770
+ t.dividers ? (i(), d(e(De), {
760
771
  key: "d" + I.toString()
761
- })) : v("", !0)
772
+ })) : c("", !0)
762
773
  ], 64))), 128))
763
774
  ]),
764
775
  _: 2
765
776
  }, 1024),
766
- y(e.$slots, "bottomItem", {}, void 0, !0)
777
+ v(t.$slots, "bottomItem", {}, void 0, !0)
767
778
  ]),
768
779
  _: 2
769
- }, 1032, ["active-class", "class", "bg-color", "density", "lines", "mandatory", "selectable", "select-strategy", "style", "selected"])) : e.showTableOnly === !0 || !B ? (i(), c(Ce, {
780
+ }, 1032, ["active-class", "class", "bg-color", "density", "lines", "mandatory", "selectable", "select-strategy", "style", "selected"])) : t.showTableOnly === !0 || !C ? (i(), d(e(Le), {
770
781
  key: 2,
771
782
  class: "text-body-2 overflow-y-auto",
772
- density: e.density,
773
- "fixed-header": e.fixedHeader,
783
+ density: t.density,
784
+ "fixed-header": t.fixedHeader,
774
785
  hover: "",
775
- style: U(H.value)
786
+ style: U(M.value)
776
787
  }, {
777
788
  default: o(() => [
778
- R("thead", null, [
779
- R("tr", null, [
780
- (i(!0), p($, null, z(l(t).tableHeaders.value, (a) => (i(), p("th", {
789
+ K("thead", null, [
790
+ K("tr", null, [
791
+ (i(!0), p(k, null, b(e(l).tableHeaders.value, (a) => (i(), p("th", {
781
792
  key: a.value,
782
793
  class: F(`d-none d-${a.showSize ?? "sm"}-table-cell ${a.align == "end" ? "text-right" : void 0}`)
783
794
  }, [
784
- y(e.$slots, `${a.value}-header`, { options: a }, () => [
785
- G(X(a.title), 1)
795
+ v(t.$slots, `${a.value}-header`, { options: a }, () => [
796
+ G(Z(a.title), 1)
786
797
  ], !0)
787
798
  ], 2))), 128)),
788
- e.hideActions ? v("", !0) : (i(), p("th", Ye, " Actions "))
799
+ t.hideActions ? c("", !0) : (i(), p("th", Ye, " Actions "))
789
800
  ])
790
801
  ]),
791
- R("tbody", null, [
792
- u(V, {
802
+ K("tbody", null, [
803
+ r(h, {
793
804
  group: "",
794
805
  "hide-on-leave": ""
795
806
  }, {
796
807
  default: o(() => [
797
- (i(!0), p($, null, z(l(t).filteredItems.value, (a, I) => (i(), p("tr", {
808
+ (i(!0), p(k, null, b(e(l).filteredItems.value, (a, I) => (i(), p("tr", {
798
809
  key: `${a.id}${I}`,
799
- onClick: (h) => l(t).selectItem(a, e.variant)
810
+ onClick: (y) => e(l).selectItem(a, t.variant)
800
811
  }, [
801
- (i(!0), p($, null, z(l(t).tableHeaders.value, (h) => (i(), p("td", {
802
- key: "1" + h.value,
803
- class: F(`d-none d-${h.showSize ?? "sm"}-table-cell ${h.align == "end" ? "text-right" : void 0}`)
812
+ (i(!0), p(k, null, b(e(l).tableHeaders.value, (y) => (i(), p("td", {
813
+ key: "1" + y.value,
814
+ class: F(`d-none d-${y.showSize ?? "sm"}-table-cell ${y.align == "end" ? "text-right" : void 0}`)
804
815
  }, [
805
- y(e.$slots, h.value, {
816
+ v(t.$slots, y.value, {
806
817
  item: a,
807
- options: h
818
+ options: y
808
819
  }, () => [
809
- u(W, {
810
- option: h,
820
+ r(j, {
821
+ option: y,
811
822
  data: a
812
823
  }, null, 8, ["option", "data"])
813
824
  ], !0)
814
825
  ], 2))), 128)),
815
- e.hideActions ? v("", !0) : (i(), p("td", {
826
+ t.hideActions ? c("", !0) : (i(), p("td", {
816
827
  key: "itemActions" + a.id,
817
828
  class: "text-right"
818
829
  }, [
819
- u(oe, { "hide-on-leave": "" }, {
830
+ r(O, { "hide-on-leave": "" }, {
820
831
  default: o(() => [
821
- u(re, {
832
+ r(e(de), {
822
833
  "no-gutters": "",
823
- class: F([te.value ? "actionButtons" : null, "flex-nowrap"])
834
+ class: F([le.value ? "actionButtons" : null, "flex-nowrap"])
824
835
  }, {
825
836
  default: o(() => [
826
- u(ie),
827
- y(e.$slots, "itemActions", {
837
+ r(e(ce)),
838
+ v(t.$slots, "itemActions", {
828
839
  item: a,
829
- allItems: l(t).asyncItems.value,
830
- items: l(t).filteredItems.value,
831
- size: f.value,
832
- density: e.density,
833
- ui: l(t)
840
+ allItems: e(l).asyncItems.value,
841
+ items: e(l).filteredItems.value,
842
+ size: g.value,
843
+ density: t.density,
844
+ ui: e(l)
834
845
  }, void 0, !0),
835
- !q.value && l(t).isIntegratable.value(a) ? (i(), p("div", We, [
836
- u(Q, { "hide-on-leave": "" }, {
846
+ !Q.value && e(l).isIntegratable.value(a) ? (i(), p("div", We, [
847
+ r(N, { "hide-on-leave": "" }, {
837
848
  default: o(() => {
838
- var h, w, b, E;
849
+ var y, A, z, w;
839
850
  return [
840
- l(t).isIntegrated.value(a) ? (i(), p("div", je, [
841
- u(r, {
851
+ e(l).isIntegrated.value(a) ? (i(), p("div", je, [
852
+ r(e(m), {
842
853
  class: "text-success",
843
854
  icon: "$cloud-check",
844
- size: f.value,
845
- title: `Synced with ${(h = l(t).currentExternalParty.value) == null ? void 0 : h.party}`,
855
+ size: g.value,
856
+ title: `Synced with ${(y = e(l).currentExternalParty.value) == null ? void 0 : y.party}`,
846
857
  variant: "text"
847
858
  }, null, 8, ["size", "title"]),
848
- (w = l(t).currentExternalParty.value) != null && w.canUnlink ? (i(), c(r, {
859
+ (A = e(l).currentExternalParty.value) != null && A.canUnlink ? (i(), d(e(m), {
849
860
  key: 0,
850
- onClick: m((j) => l(t).unlinkFromExternalParty(a), ["stop"]),
861
+ onClick: f((J) => e(l).unlinkFromExternalParty(a), ["stop"]),
851
862
  class: "text-error",
852
863
  icon: "$cloud-remove",
853
- size: f.value,
854
- title: `Unlink from ${(b = l(t).currentExternalParty.value) == null ? void 0 : b.party}`,
864
+ size: g.value,
865
+ title: `Unlink from ${(z = e(l).currentExternalParty.value) == null ? void 0 : z.party}`,
855
866
  variant: "text"
856
- }, null, 8, ["onClick", "size", "title"])) : v("", !0)
857
- ])) : (i(), c(r, {
858
- onClick: m((j) => l(t).pushToExternalParty(a), ["stop"]),
867
+ }, null, 8, ["onClick", "size", "title"])) : c("", !0)
868
+ ])) : (i(), d(e(m), {
869
+ onClick: f((J) => e(l).pushToExternalParty(a), ["stop"]),
859
870
  icon: "$cloud-upload",
860
871
  key: "a2",
861
- size: f.value,
862
- title: `Send to ${(E = l(t).currentExternalParty.value) == null ? void 0 : E.party}`,
872
+ size: g.value,
873
+ title: `Send to ${(w = e(l).currentExternalParty.value) == null ? void 0 : w.party}`,
863
874
  variant: "text"
864
875
  }, null, 8, ["onClick", "size", "title"]))
865
876
  ];
866
877
  }),
867
878
  _: 2
868
879
  }, 1024)
869
- ])) : v("", !0),
870
- a.errorMsg != null ? (i(), c(r, {
871
- onClick: n[14] || (n[14] = m(() => {
880
+ ])) : c("", !0),
881
+ a.errorMsg != null ? (i(), d(e(m), {
882
+ onClick: n[14] || (n[14] = f(() => {
872
883
  }, ["stop"])),
873
884
  class: "text-warning",
874
885
  icon: "$alert-circle",
875
886
  key: "1",
876
- size: f.value,
887
+ size: g.value,
877
888
  title: a.errorMsg
878
- }, null, 8, ["size", "title"])) : v("", !0),
879
- e.canDelete && l(t).isDeletable.value(a) ? (i(), c(r, {
880
- onClick: m((h) => l(t).deleteItem(a), ["stop"]),
889
+ }, null, 8, ["size", "title"])) : c("", !0),
890
+ t.canDelete && e(l).isDeletable.value(a) ? (i(), d(e(m), {
891
+ onClick: f((y) => e(l).deleteItem(a), ["stop"]),
881
892
  class: "text-error",
882
- disabled: !l(P).canEdit(e.nav),
893
+ disabled: !e(E).canEdit(t.nav),
883
894
  icon: "$delete",
884
895
  key: "2",
885
- size: f.value,
896
+ size: g.value,
886
897
  variant: "text"
887
- }, null, 8, ["onClick", "disabled", "size"])) : v("", !0),
888
- e.canRestore && l(t).isRestorable.value(a) ? (i(), c(r, {
889
- onClick: m((h) => l(t).restoreItem(a), ["stop"]),
890
- disabled: !l(P).canEdit(e.nav),
898
+ }, null, 8, ["onClick", "disabled", "size"])) : c("", !0),
899
+ t.canRestore && e(l).isRestorable.value(a) ? (i(), d(e(m), {
900
+ onClick: f((y) => e(l).restoreItem(a), ["stop"]),
901
+ disabled: !e(E).canEdit(t.nav),
891
902
  key: "3",
892
903
  icon: "$eraser-variant",
893
- size: f.value,
904
+ size: g.value,
894
905
  variant: "text"
895
- }, null, 8, ["onClick", "disabled", "size"])) : v("", !0)
906
+ }, null, 8, ["onClick", "disabled", "size"])) : c("", !0)
896
907
  ]),
897
908
  _: 2
898
909
  }, 1032, ["class"])
@@ -907,29 +918,29 @@ const Ge = {
907
918
  ])
908
919
  ]),
909
920
  _: 3
910
- }, 8, ["density", "fixed-header", "style"])) : v("", !0) : (i(), p("div", {
921
+ }, 8, ["density", "fixed-header", "style"])) : c("", !0) : (i(), p("div", {
911
922
  key: 0,
912
- class: F(e.scrollY ? "overflow-y-auto" : ""),
913
- style: U(H.value)
923
+ class: F(t.scrollY ? "overflow-y-auto" : ""),
924
+ style: U(M.value)
914
925
  }, [
915
- y(e.$slots, "notFound", {
916
- ui: l(t),
917
- bladeData: d,
918
- refresh: l(t).refresh,
919
- size: e.size
926
+ v(t.$slots, "notFound", {
927
+ ui: e(l),
928
+ bladeData: u,
929
+ refresh: e(l).refresh,
930
+ size: t.size
920
931
  }, void 0, !0)
921
932
  ], 6)),
922
- y(e.$slots, "bottom", {
923
- size: e.size,
924
- allItems: l(t).asyncItems.value,
925
- items: l(t).filteredItems.value
933
+ v(t.$slots, "bottom", {
934
+ size: t.size,
935
+ allItems: e(l).asyncItems.value,
936
+ items: e(l).filteredItems.value
926
937
  }, void 0, !0)
927
938
  ], !0),
928
- l(de)(e.paginate) ? v("", !0) : (i(), p("div", Je, [
929
- u(Be, {
930
- modelValue: l(t).currentPage.value,
931
- "onUpdate:modelValue": n[15] || (n[15] = (a) => l(t).currentPage.value = a),
932
- length: l(t).totalPages.value
939
+ e(oe)(t.paginate) ? c("", !0) : (i(), p("div", Je, [
940
+ r(e(Oe), {
941
+ modelValue: e(l).currentPage.value,
942
+ "onUpdate:modelValue": n[15] || (n[15] = (a) => e(l).currentPage.value = a),
943
+ length: e(l).totalPages.value
933
944
  }, null, 8, ["modelValue", "length"])
934
945
  ]))
935
946
  ]),
@@ -939,5 +950,5 @@ const Ge = {
939
950
  }
940
951
  });
941
952
  export {
942
- st as default
953
+ ft as default
943
954
  };