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,9 +1,19 @@
1
- import { defineComponent as de, ref as R, computed as C, watch as Z, onMounted as ve, resolveComponent as p, openBlock as t, createBlock as u, normalizeStyle as k, withCtx as n, createVNode as l, unref as c, renderSlot as f, createElementBlock as v, Fragment as N, renderList as z, createElementVNode as b, toDisplayString as _, withModifiers as x, createCommentVNode as r } from "vue";
2
- import ee from "./BT-Form-Field.vue.mjs";
3
- import { isNullOrEmpty as H, isLengthyArray as le } from "../composables/helpers.mjs";
1
+ import { defineComponent as de, ref as J, computed as $, watch as X, onMounted as ve, resolveComponent as Y, openBlock as s, createBlock as d, unref as l, normalizeStyle as k, withCtx as n, createVNode as a, renderSlot as c, createElementBlock as v, Fragment as z, renderList as H, createElementVNode as y, toDisplayString as C, withModifiers as Z, createCommentVNode as i } from "vue";
2
+ import _ from "./BT-Form-Field.vue.mjs";
3
+ import { isNullOrEmpty as O, isLengthyArray as x } from "../composables/helpers.mjs";
4
4
  import { useResponsiveStyle as me } from "../composables/heights.mjs";
5
- import ae from "./BT-Loader.vue.mjs";
6
- import te from "./BT-Error.vue.mjs";
5
+ import ee from "./BT-Loader.vue.mjs";
6
+ import le from "./BT-Error.vue.mjs";
7
+ import { VContainer as D } from "../bt-core/core/node_modules/vuetify/lib/components/VGrid/VContainer.mjs";
8
+ import { VCard as ae } from "../bt-core/core/node_modules/vuetify/lib/components/VCard/VCard.mjs";
9
+ import { VWindow as oe } from "../bt-core/core/node_modules/vuetify/lib/components/VWindow/VWindow.mjs";
10
+ import { VWindowItem as q } from "../bt-core/core/node_modules/vuetify/lib/components/VWindow/VWindowItem.mjs";
11
+ import { VForm as te } from "../bt-core/core/node_modules/vuetify/lib/components/VForm/VForm.mjs";
12
+ import { VToolbar as P } from "../bt-core/core/node_modules/vuetify/lib/components/VToolbar/VToolbar.mjs";
13
+ import { VBtn as f } from "../bt-core/core/node_modules/vuetify/lib/components/VBtn/VBtn.mjs";
14
+ import { VSpacer as B } from "../bt-core/core/node_modules/vuetify/lib/components/VGrid/VSpacer.mjs";
15
+ import { VDivider as re } from "../bt-core/core/node_modules/vuetify/lib/components/VDivider/VDivider.mjs";
16
+ import { VCol as ne } from "../bt-core/core/node_modules/vuetify/lib/components/VGrid/VCol.mjs";
7
17
  const ce = { class: "text-h6 ml-3" }, fe = {
8
18
  key: 0,
9
19
  class: "d-flex justify-center mr-6"
@@ -22,22 +32,22 @@ const ce = { class: "text-h6 ml-3" }, fe = {
22
32
  }, $e = { class: "mx-4 text-no-wrap" }, Ce = {
23
33
  key: 0,
24
34
  class: "d-flex"
25
- }, _e = {
35
+ }, Be = {
26
36
  key: 1,
27
37
  class: "ma-4"
28
- }, we = {
38
+ }, Me = {
29
39
  key: 2,
30
40
  class: "text-error"
31
- }, Me = { class: "text-h6 ml-3" }, Be = {
41
+ }, Ee = { class: "text-h6 ml-3" }, we = {
32
42
  key: 0,
33
43
  class: "d-flex justify-center mr-6"
34
- }, Ee = { class: "d-flex align-center" }, Ne = {
44
+ }, Ve = { class: "d-flex align-center" }, Ne = {
35
45
  key: 0,
36
46
  class: "text-error"
37
47
  }, ze = { class: "text-h6 ml-3" }, He = {
38
48
  key: 0,
39
49
  class: "d-flex justify-center mr-6"
40
- }, Re = /* @__PURE__ */ de({
50
+ }, Qe = /* @__PURE__ */ de({
41
51
  __name: "BT-Form",
42
52
  props: {
43
53
  actualUsedHeight: { default: 0 },
@@ -58,209 +68,209 @@ const ce = { class: "text-h6 ml-3" }, fe = {
58
68
  variant: {}
59
69
  },
60
70
  setup(ie) {
61
- const o = ie, O = R(), ue = C(() => JSON.stringify(o.data)), F = C(() => ue.value != O.value), { style: j } = me({
71
+ const o = ie, T = J(), ue = $(() => JSON.stringify(o.data)), F = $(() => ue.value != T.value), { style: j } = me({
62
72
  getUsedHeight() {
63
- var e = 64 + o.actualUsedHeight + (U.value == "half-and-half" ? 0 : 32);
73
+ var e = 64 + o.actualUsedHeight + (R.value == "half-and-half" ? 0 : 32);
64
74
  return e;
65
75
  },
66
76
  overflow: !0
67
- }), U = C(() => o.variant ?? o.schema.variant ?? "basic"), s = R(0), w = R(), B = R(!1), M = R(), L = C(() => o.isEditing && !B.value), g = C(() => {
68
- var a;
77
+ }), R = $(() => o.variant ?? o.schema.variant ?? "basic"), r = J(0), M = J(), w = J(!1), E = J(), L = $(() => o.isEditing && !w.value), g = $(() => {
78
+ var t;
69
79
  if (!o.useSchemaStyles)
70
80
  return;
71
- let e = ((a = o.overrideSchema) == null ? void 0 : a.logoSrc) ?? o.schema.logoSrc;
72
- return H(e) ? void 0 : e;
73
- }), I = C(() => {
74
- var a;
81
+ let e = ((t = o.overrideSchema) == null ? void 0 : t.logoSrc) ?? o.schema.logoSrc;
82
+ return O(e) ? void 0 : e;
83
+ }), I = $(() => {
84
+ var t;
75
85
  if (!o.useSchemaStyles)
76
86
  return;
77
- let e = ((a = o.overrideSchema) == null ? void 0 : a.bgSrc) ?? o.schema.bgSrc;
78
- if (!H(e))
87
+ let e = ((t = o.overrideSchema) == null ? void 0 : t.bgSrc) ?? o.schema.bgSrc;
88
+ if (!O(e))
79
89
  return `background: url("${e}") no-repeat top center fixed; -webkit-background-size: cover; -moz-background-size: cover; background-size: cover; -o-background-size: cover; min-height: 100%;`;
80
90
  });
81
- var G = C(() => {
82
- var a;
91
+ var W = $(() => {
92
+ var t;
83
93
  if (o.useSchemaStyles) {
84
- var e = ((a = o.overrideSchema) == null ? void 0 : a.bgColor) ?? o.schema.bgColor;
85
- if (!H(e))
94
+ var e = ((t = o.overrideSchema) == null ? void 0 : t.bgColor) ?? o.schema.bgColor;
95
+ if (!O(e))
86
96
  return `background-color: ${e};`;
87
97
  }
88
- }), K = C(() => {
89
- var a;
98
+ }), G = $(() => {
99
+ var t;
90
100
  if (o.useSchemaStyles) {
91
- var e = ((a = o.overrideSchema) == null ? void 0 : a.theme) ?? o.schema.theme;
92
- return H(e) ? void 0 : e;
101
+ var e = ((t = o.overrideSchema) == null ? void 0 : t.theme) ?? o.schema.theme;
102
+ return O(e) ? void 0 : e;
93
103
  }
94
- }), D = C(() => {
95
- var a;
104
+ }), U = $(() => {
105
+ var t;
96
106
  if (o.useSchemaStyles) {
97
- var e = ((a = o.overrideSchema) == null ? void 0 : a.ctlColor) ?? o.schema.ctlColor;
98
- return H(e) ? void 0 : e;
107
+ var e = ((t = o.overrideSchema) == null ? void 0 : t.ctlColor) ?? o.schema.ctlColor;
108
+ return O(e) ? void 0 : e;
99
109
  }
100
110
  });
101
- async function Q() {
102
- M.value = "Saving Progress", w.value = o.onSaveAsync != null ? await o.onSaveAsync() : void 0, M.value = void 0, O.value = JSON.stringify(o.data);
111
+ async function K() {
112
+ E.value = "Saving Progress", M.value = o.onSaveAsync != null ? await o.onSaveAsync() : void 0, E.value = void 0, T.value = JSON.stringify(o.data);
103
113
  }
104
- async function W() {
105
- M.value = "Submitting", w.value = o.onSubmitAsync != null ? await o.onSubmitAsync() : void 0, M.value = void 0, w.value == null && (s.value++, B.value = !0);
114
+ async function Q() {
115
+ E.value = "Submitting", M.value = o.onSubmitAsync != null ? await o.onSubmitAsync() : void 0, E.value = void 0, M.value == null && (r.value++, w.value = !0);
106
116
  }
107
- function oe(e) {
117
+ function se(e) {
108
118
  if (o.data != null) {
109
- var a = Object.keys(o.data), d = e ? o.schema.slides.flatMap((h) => h.fields.filter((S) => !!S.remember && S.prop != null).map((S) => S.prop)) : [];
110
- console.log(a), console.log(d), console.log(o.schema), a.forEach((h) => {
111
- d.some((S) => S == h) || (console.log(h), o.data[h] = void 0);
119
+ var t = Object.keys(o.data), V = e ? o.schema.slides.flatMap((p) => p.fields.filter((b) => !!b.remember && b.prop != null).map((b) => b.prop)) : [];
120
+ console.log(t), console.log(V), console.log(o.schema), t.forEach((p) => {
121
+ V.some((b) => b == p) || (console.log(p), o.data[p] = void 0);
112
122
  });
113
123
  }
114
- console.log(o.data), B.value = !1, s.value = 0, O.value = JSON.stringify(o.data), w.value = void 0;
124
+ console.log(o.data), w.value = !1, r.value = 0, T.value = JSON.stringify(o.data), M.value = void 0;
115
125
  }
116
- return Z(() => o.resetRememberToggle, () => {
117
- console.log("reseting with memory"), oe(!0);
118
- }), Z(() => o.resetToggle, () => {
119
- console.log("reseting"), oe(!1);
120
- }), Z(() => o.data, (e) => {
121
- O.value = JSON.stringify(e);
126
+ return X(() => o.resetRememberToggle, () => {
127
+ console.log("reseting with memory"), se(!0);
128
+ }), X(() => o.resetToggle, () => {
129
+ console.log("reseting"), se(!1);
130
+ }), X(() => o.data, (e) => {
131
+ T.value = JSON.stringify(e);
122
132
  }, { deep: !1 }), ve(() => {
123
- O.value = JSON.stringify(o.data);
124
- }), (e, a) => {
125
- const d = p("v-btn"), h = p("v-spacer"), S = p("v-slide-x-transition"), T = p("bt-avatar"), A = p("v-toolbar"), q = p("v-slide-y-reverse-transition"), X = p("v-form"), V = p("v-window-item"), se = p("v-window"), Y = p("v-card"), J = p("v-container"), ne = p("v-divider"), re = p("v-col");
126
- return e.schema != null && U.value == "basic" ? (t(), u(J, {
133
+ T.value = JSON.stringify(o.data);
134
+ }), (e, t) => {
135
+ const V = Y("v-slide-x-transition"), p = Y("bt-avatar"), b = Y("v-slide-y-reverse-transition");
136
+ return e.schema != null && R.value == "basic" ? (s(), d(l(D), {
127
137
  key: 0,
128
138
  class: "ma-0 pa-0",
129
139
  fluid: "",
130
140
  style: k(I.value)
131
141
  }, {
132
142
  default: n(() => [
133
- l(J, { class: "ma-0 pa-0" }, {
143
+ a(l(D), { class: "ma-0 pa-0" }, {
134
144
  default: n(() => [
135
- l(Y, {
145
+ a(l(ae), {
136
146
  class: "mx-100",
137
147
  "max-width": "900",
138
- style: k(c(G)),
139
- theme: c(K)
148
+ style: k(l(W)),
149
+ theme: l(G)
140
150
  }, {
141
151
  default: n(() => [
142
- f(e.$slots, "top"),
143
- l(se, {
144
- modelValue: s.value,
145
- "onUpdate:modelValue": a[5] || (a[5] = (m) => s.value = m)
152
+ c(e.$slots, "top"),
153
+ a(l(oe), {
154
+ modelValue: r.value,
155
+ "onUpdate:modelValue": t[5] || (t[5] = (m) => r.value = m)
146
156
  }, {
147
157
  default: n(() => [
148
- (t(!0), v(N, null, z(e.schema.slides, (m, E) => (t(), u(V, { key: E }, {
158
+ (s(!0), v(z, null, H(e.schema.slides, (m, N) => (s(), d(l(q), { key: N }, {
149
159
  default: n(() => [
150
- l(X, null, {
151
- default: n(({ errors: y, isValid: $ }) => [
152
- e.hideHeader !== !0 ? (t(), u(A, {
160
+ a(l(te), null, {
161
+ default: n(({ errors: h, isValid: S }) => [
162
+ e.hideHeader !== !0 ? (s(), d(l(P), {
153
163
  key: 0,
154
164
  color: "transparent"
155
165
  }, {
156
166
  default: n(() => [
157
- f(e.$slots, "form-toolbar", {}, () => [
158
- f(e.$slots, "form-toolbar-left", { schema: e.schema }),
159
- l(d, {
167
+ c(e.$slots, "form-toolbar", {}, () => [
168
+ c(e.$slots, "form-toolbar-left", { schema: e.schema }),
169
+ a(l(f), {
160
170
  icon: "$chevron-left",
161
- onClick: a[0] || (a[0] = (i) => s.value--),
162
- disabled: s.value == 0,
171
+ onClick: t[0] || (t[0] = (u) => r.value--),
172
+ disabled: r.value == 0,
163
173
  variant: "text"
164
174
  }, null, 8, ["disabled"]),
165
- l(d, {
175
+ a(l(f), {
166
176
  icon: "$chevron-right",
167
- onClick: a[1] || (a[1] = (i) => s.value++),
168
- disabled: !$.value || s.value >= e.schema.slides.length - 1,
177
+ onClick: t[1] || (t[1] = (u) => r.value++),
178
+ disabled: !S.value || r.value >= e.schema.slides.length - 1,
169
179
  variant: "text"
170
180
  }, null, 8, ["disabled"]),
171
- b("div", ce, _(e.label ?? e.schema.title), 1),
172
- l(h),
173
- f(e.$slots, "form-toolbar-right", { schema: e.schema }),
174
- l(S, null, {
181
+ y("div", ce, C(e.label ?? e.schema.title), 1),
182
+ a(l(B)),
183
+ c(e.$slots, "form-toolbar-right", { schema: e.schema }),
184
+ a(V, null, {
175
185
  default: n(() => [
176
- F.value && e.canSaveProgress !== !1 ? (t(), u(d, {
186
+ F.value && e.canSaveProgress !== !1 ? (s(), d(l(f), {
177
187
  key: 0,
178
- onClick: x(Q, ["stop"]),
188
+ onClick: Z(K, ["stop"]),
179
189
  class: "mr-4",
180
190
  "prepend-icon": "$content-save",
181
191
  size: "small",
182
192
  text: "Save",
183
193
  variant: "outlined"
184
- })) : r("", !0)
194
+ })) : i("", !0)
185
195
  ]),
186
196
  _: 1
187
197
  }),
188
- g.value != null ? (t(), v("div", fe, [
189
- g.value != null ? (t(), u(T, {
198
+ g.value != null ? (s(), v("div", fe, [
199
+ g.value != null ? (s(), d(p, {
190
200
  key: 0,
191
201
  src: g.value
192
- }, null, 8, ["src"])) : r("", !0)
193
- ])) : r("", !0)
202
+ }, null, 8, ["src"])) : i("", !0)
203
+ ])) : i("", !0)
194
204
  ])
195
205
  ]),
196
206
  _: 2
197
- }, 1024)) : r("", !0),
198
- b("div", {
199
- style: k(e.useScroll ? c(j) : void 0)
207
+ }, 1024)) : i("", !0),
208
+ y("div", {
209
+ style: k(e.useScroll ? l(j) : void 0)
200
210
  }, [
201
- l(te, { errorMsg: w.value }, null, 8, ["errorMsg"]),
202
- l(ae, { loadingMsg: M.value }, null, 8, ["loadingMsg"]),
203
- f(e.$slots, m.name, {
211
+ a(le, { errorMsg: M.value }, null, 8, ["errorMsg"]),
212
+ a(ee, { loadingMsg: E.value }, null, 8, ["loadingMsg"]),
213
+ c(e.$slots, m.name, {
204
214
  data: e.data,
205
215
  slide: m
206
216
  }, () => [
207
- (t(!0), v(N, null, z(m.fields, (i, P) => (t(), v("div", { key: P }, [
208
- f(e.$slots, i.prop, {
217
+ (s(!0), v(z, null, H(m.fields, (u, A) => (s(), v("div", { key: A }, [
218
+ c(e.$slots, u.prop, {
209
219
  data: e.data,
210
- field: i,
220
+ field: u,
211
221
  variant: "text"
212
222
  }, () => [
213
- l(ee, {
223
+ a(_, {
214
224
  data: e.data,
215
- field: i,
225
+ field: u,
216
226
  isEditing: L.value,
217
227
  variant: "text"
218
228
  }, null, 8, ["data", "field", "isEditing"])
219
229
  ])
220
230
  ]))), 128))
221
231
  ]),
222
- b("div", ge, [
223
- l(q, {
232
+ y("div", ge, [
233
+ a(b, {
224
234
  group: "",
225
235
  "hide-on-leave": ""
226
236
  }, {
227
237
  default: n(() => [
228
- s.value != 0 ? (t(), u(d, {
229
- onClick: a[2] || (a[2] = (i) => s.value--),
238
+ r.value != 0 ? (s(), d(l(f), {
239
+ onClick: t[2] || (t[2] = (u) => r.value--),
230
240
  class: "ma-4",
231
- color: c(D),
241
+ color: l(U),
232
242
  key: "1",
233
243
  text: "Back"
234
- }, null, 8, ["color"])) : r("", !0)
244
+ }, null, 8, ["color"])) : i("", !0)
235
245
  ]),
236
246
  _: 1
237
247
  }),
238
- l(h),
239
- l(q, {
248
+ a(l(B)),
249
+ a(b, {
240
250
  group: "",
241
251
  "hide-on-leave": ""
242
252
  }, {
243
253
  default: n(() => [
244
- s.value < e.schema.slides.length - 1 ? (t(), u(d, {
245
- onClick: a[3] || (a[3] = (i) => s.value++),
254
+ r.value < e.schema.slides.length - 1 ? (s(), d(l(f), {
255
+ onClick: t[3] || (t[3] = (u) => r.value++),
246
256
  class: "ma-4",
247
- color: c(D),
248
- disabled: m.fields.filter((i) => !!i.isRequired).length > 0 && !$.value,
257
+ color: l(U),
258
+ disabled: m.fields.filter((u) => !!u.isRequired).length > 0 && !S.value,
249
259
  key: "1",
250
260
  text: "Next"
251
- }, null, 8, ["color", "disabled"])) : e.isEditing && e.canSubmit && !B.value && s.value >= e.schema.slides.length - 1 ? (t(), u(d, {
252
- onClick: W,
261
+ }, null, 8, ["color", "disabled"])) : e.isEditing && e.canSubmit && !w.value && r.value >= e.schema.slides.length - 1 ? (s(), d(l(f), {
262
+ onClick: Q,
253
263
  class: "ma-4",
254
- color: c(D),
255
- disabled: m.fields.filter((i) => !!i.isRequired).length > 0 && !$.value,
264
+ color: l(U),
265
+ disabled: m.fields.filter((u) => !!u.isRequired).length > 0 && !S.value,
256
266
  key: "2",
257
267
  text: "Submit"
258
- }, null, 8, ["color", "disabled"])) : r("", !0)
268
+ }, null, 8, ["color", "disabled"])) : i("", !0)
259
269
  ]),
260
270
  _: 2
261
271
  }, 1024)
262
272
  ]),
263
- c(le)(y) ? (t(), v("div", he, _(y), 1)) : r("", !0)
273
+ l(x)(h) ? (s(), v("div", he, C(h), 1)) : i("", !0)
264
274
  ], 4)
265
275
  ]),
266
276
  _: 2
@@ -268,32 +278,32 @@ const ce = { class: "text-h6 ml-3" }, fe = {
268
278
  ]),
269
279
  _: 2
270
280
  }, 1024))), 128)),
271
- l(V, null, {
281
+ a(l(q), null, {
272
282
  default: n(() => [
273
- e.hideHeader !== !0 ? (t(), u(A, {
283
+ e.hideHeader !== !0 ? (s(), d(l(P), {
274
284
  key: 0,
275
285
  color: "transparent"
276
286
  }, {
277
287
  default: n(() => [
278
- l(d, {
288
+ a(l(f), {
279
289
  icon: "$chevron-left",
280
- onClick: a[4] || (a[4] = (m) => s.value--),
281
- disabled: s.value == 0,
290
+ onClick: t[4] || (t[4] = (m) => r.value--),
291
+ disabled: r.value == 0,
282
292
  variant: "text"
283
293
  }, null, 8, ["disabled"]),
284
- b("div", ye, _(e.label ?? e.schema.title), 1),
285
- l(h),
286
- g.value != null ? (t(), v("div", pe, [
287
- g.value != null ? (t(), u(T, {
294
+ y("div", ye, C(e.label ?? e.schema.title), 1),
295
+ a(l(B)),
296
+ g.value != null ? (s(), v("div", pe, [
297
+ g.value != null ? (s(), d(p, {
288
298
  key: 0,
289
299
  src: g.value
290
- }, null, 8, ["src"])) : r("", !0)
291
- ])) : r("", !0)
300
+ }, null, 8, ["src"])) : i("", !0)
301
+ ])) : i("", !0)
292
302
  ]),
293
303
  _: 1
294
- })) : r("", !0),
295
- b("div", {
296
- style: k(e.useScroll ? c(j) : void 0),
304
+ })) : i("", !0),
305
+ y("div", {
306
+ style: k(e.useScroll ? l(j) : void 0),
297
307
  class: "d-flex flex-column align-center justify-center"
298
308
  }, " Done! Thankyou. ", 4)
299
309
  ]),
@@ -310,95 +320,95 @@ const ce = { class: "text-h6 ml-3" }, fe = {
310
320
  })
311
321
  ]),
312
322
  _: 3
313
- }, 8, ["style"])) : e.schema != null && U.value == "single-page" ? (t(), u(J, {
323
+ }, 8, ["style"])) : e.schema != null && R.value == "single-page" ? (s(), d(l(D), {
314
324
  key: 1,
315
325
  class: "ma-0 pa-0",
316
326
  fluid: "",
317
327
  style: k(I.value)
318
328
  }, {
319
329
  default: n(() => [
320
- l(J, { class: "ma-0 pa-0" }, {
330
+ a(l(D), { class: "ma-0 pa-0" }, {
321
331
  default: n(() => [
322
- l(X, null, {
323
- default: n(({ errors: m, isValid: E }) => [
324
- l(Y, {
332
+ a(l(te), null, {
333
+ default: n(({ errors: m, isValid: N }) => [
334
+ a(l(ae), {
325
335
  class: "mx-100",
326
336
  "max-width": "900",
327
- style: k(c(G)),
328
- theme: c(K)
337
+ style: k(l(W)),
338
+ theme: l(G)
329
339
  }, {
330
340
  default: n(() => [
331
- f(e.$slots, "top"),
332
- e.hideHeader !== !0 ? (t(), u(A, {
341
+ c(e.$slots, "top"),
342
+ e.hideHeader !== !0 ? (s(), d(l(P), {
333
343
  key: 0,
334
344
  color: "transparent"
335
345
  }, {
336
346
  default: n(() => [
337
- f(e.$slots, "form-toolbar", {}, () => [
338
- f(e.$slots, "form-toolbar-left"),
339
- l(d, {
347
+ c(e.$slots, "form-toolbar", {}, () => [
348
+ c(e.$slots, "form-toolbar-left"),
349
+ a(l(f), {
340
350
  icon: "$chevron-left",
341
- onClick: a[6] || (a[6] = (y) => s.value--),
342
- disabled: s.value == 0,
351
+ onClick: t[6] || (t[6] = (h) => r.value--),
352
+ disabled: r.value == 0,
343
353
  variant: "text"
344
354
  }, null, 8, ["disabled"]),
345
- l(d, {
355
+ a(l(f), {
346
356
  icon: "$chevron-right",
347
- onClick: a[7] || (a[7] = (y) => s.value++),
348
- disabled: !E.value || s.value >= e.schema.slides.length - 1,
357
+ onClick: t[7] || (t[7] = (h) => r.value++),
358
+ disabled: !N.value || r.value >= e.schema.slides.length - 1,
349
359
  variant: "text"
350
360
  }, null, 8, ["disabled"]),
351
- b("div", be, _(e.label ?? e.schema.title), 1),
352
- l(h),
353
- f(e.$slots, "form-toolbar-right"),
354
- l(S, null, {
361
+ y("div", be, C(e.label ?? e.schema.title), 1),
362
+ a(l(B)),
363
+ c(e.$slots, "form-toolbar-right"),
364
+ a(V, null, {
355
365
  default: n(() => [
356
- F.value && e.canSaveProgress !== !1 ? (t(), u(d, {
366
+ F.value && e.canSaveProgress !== !1 ? (s(), d(l(f), {
357
367
  key: 0,
358
- onClick: x(Q, ["stop"]),
368
+ onClick: Z(K, ["stop"]),
359
369
  class: "mr-4",
360
370
  "prepend-icon": "$content-save",
361
371
  size: "small",
362
372
  text: "Save",
363
373
  variant: "outlined"
364
- })) : r("", !0)
374
+ })) : i("", !0)
365
375
  ]),
366
376
  _: 1
367
377
  }),
368
- g.value != null ? (t(), v("div", ke, [
369
- g.value != null ? (t(), u(T, {
378
+ g.value != null ? (s(), v("div", ke, [
379
+ g.value != null ? (s(), d(p, {
370
380
  key: 0,
371
381
  src: g.value
372
- }, null, 8, ["src"])) : r("", !0)
373
- ])) : r("", !0)
382
+ }, null, 8, ["src"])) : i("", !0)
383
+ ])) : i("", !0)
374
384
  ])
375
385
  ]),
376
386
  _: 2
377
- }, 1024)) : r("", !0),
378
- b("div", {
379
- style: k(e.useScroll ? c(j) : void 0)
387
+ }, 1024)) : i("", !0),
388
+ y("div", {
389
+ style: k(e.useScroll ? l(j) : void 0)
380
390
  }, [
381
- l(te, { errorMsg: w.value }, null, 8, ["errorMsg"]),
382
- l(ae, { loadingMsg: M.value }, null, 8, ["loadingMsg"]),
383
- (t(!0), v(N, null, z(e.schema.slides, (y, $) => (t(), v("div", { key: $ }, [
384
- c(H)(y.name) ? r("", !0) : (t(), v("div", Se, [
385
- l(ne, { style: { "max-width": "50px" } }),
386
- b("div", $e, _(y.name), 1),
387
- l(ne)
391
+ a(le, { errorMsg: M.value }, null, 8, ["errorMsg"]),
392
+ a(ee, { loadingMsg: E.value }, null, 8, ["loadingMsg"]),
393
+ (s(!0), v(z, null, H(e.schema.slides, (h, S) => (s(), v("div", { key: S }, [
394
+ l(O)(h.name) ? i("", !0) : (s(), v("div", Se, [
395
+ a(l(re), { style: { "max-width": "50px" } }),
396
+ y("div", $e, C(h.name), 1),
397
+ a(l(re))
388
398
  ])),
389
- f(e.$slots, y.name, {
399
+ c(e.$slots, h.name, {
390
400
  data: e.data,
391
- slide: y
401
+ slide: h
392
402
  }, () => [
393
- (t(!0), v(N, null, z(y.fields, (i, P) => (t(), v("div", { key: P }, [
394
- f(e.$slots, i.prop, {
403
+ (s(!0), v(z, null, H(h.fields, (u, A) => (s(), v("div", { key: A }, [
404
+ c(e.$slots, u.prop, {
395
405
  data: e.data,
396
- field: i,
406
+ field: u,
397
407
  variant: "text"
398
408
  }, () => [
399
- l(ee, {
409
+ a(_, {
400
410
  data: e.data,
401
- field: i,
411
+ field: u,
402
412
  isEditing: L.value,
403
413
  variant: "text"
404
414
  }, null, 8, ["data", "field", "isEditing"])
@@ -406,18 +416,18 @@ const ce = { class: "text-h6 ml-3" }, fe = {
406
416
  ]))), 128))
407
417
  ])
408
418
  ]))), 128)),
409
- e.isEditing && e.canSubmit ? (t(), v("div", Ce, [
410
- l(h),
411
- B.value ? (t(), v("div", _e, " Done. Thankyou! ")) : (t(), u(d, {
419
+ e.isEditing && e.canSubmit ? (s(), v("div", Ce, [
420
+ a(l(B)),
421
+ w.value ? (s(), v("div", Be, " Done. Thankyou! ")) : (s(), d(l(f), {
412
422
  key: 0,
413
- onClick: W,
423
+ onClick: Q,
414
424
  class: "ma-4",
415
- color: c(D),
416
- disabled: !E.value,
425
+ color: l(U),
426
+ disabled: !N.value,
417
427
  text: "Submit"
418
428
  }, null, 8, ["color", "disabled"])),
419
- c(le)(m) ? (t(), v("div", we, _(m), 1)) : r("", !0)
420
- ])) : r("", !0)
429
+ l(x)(m) ? (s(), v("div", Me, C(m), 1)) : i("", !0)
430
+ ])) : i("", !0)
421
431
  ], 4)
422
432
  ]),
423
433
  _: 2
@@ -430,148 +440,148 @@ const ce = { class: "text-h6 ml-3" }, fe = {
430
440
  })
431
441
  ]),
432
442
  _: 3
433
- }, 8, ["style"])) : e.schema != null && U.value == "half-and-half" ? (t(), u(J, {
443
+ }, 8, ["style"])) : e.schema != null && R.value == "half-and-half" ? (s(), d(l(D), {
434
444
  key: 2,
435
445
  class: "pa-0 ma-0",
436
446
  fluid: "",
437
447
  style: k(I.value)
438
448
  }, {
439
449
  default: n(() => [
440
- l(re, {
450
+ a(l(ne), {
441
451
  class: "pa-0",
442
452
  cols: "12",
443
453
  md: "6"
444
454
  }, {
445
455
  default: n(() => [
446
- l(Y, {
456
+ a(l(ae), {
447
457
  class: "w-100",
448
- style: k(c(G)),
458
+ style: k(l(W)),
449
459
  tile: "",
450
- theme: c(K)
460
+ theme: l(G)
451
461
  }, {
452
462
  default: n(() => [
453
- f(e.$slots, "top"),
454
- l(se, {
455
- modelValue: s.value,
456
- "onUpdate:modelValue": a[13] || (a[13] = (m) => s.value = m)
463
+ c(e.$slots, "top"),
464
+ a(l(oe), {
465
+ modelValue: r.value,
466
+ "onUpdate:modelValue": t[13] || (t[13] = (m) => r.value = m)
457
467
  }, {
458
468
  default: n(() => [
459
- (t(!0), v(N, null, z(e.schema.slides, (m, E) => (t(), u(V, { key: E }, {
469
+ (s(!0), v(z, null, H(e.schema.slides, (m, N) => (s(), d(l(q), { key: N }, {
460
470
  default: n(() => [
461
- l(X, null, {
462
- default: n(({ errors: y, isValid: $ }) => [
463
- e.hideHeader !== !0 ? (t(), u(A, {
471
+ a(l(te), null, {
472
+ default: n(({ errors: h, isValid: S }) => [
473
+ e.hideHeader !== !0 ? (s(), d(l(P), {
464
474
  key: 0,
465
475
  color: "transparent"
466
476
  }, {
467
477
  default: n(() => [
468
- f(e.$slots, "form-toolbar", {}, () => [
469
- f(e.$slots, "form-toolbar-left"),
470
- l(d, {
478
+ c(e.$slots, "form-toolbar", {}, () => [
479
+ c(e.$slots, "form-toolbar-left"),
480
+ a(l(f), {
471
481
  icon: "$chevron-left",
472
- onClick: a[8] || (a[8] = (i) => s.value--),
473
- disabled: s.value == 0,
482
+ onClick: t[8] || (t[8] = (u) => r.value--),
483
+ disabled: r.value == 0,
474
484
  variant: "text"
475
485
  }, null, 8, ["disabled"]),
476
- l(d, {
486
+ a(l(f), {
477
487
  icon: "$chevron-right",
478
- onClick: a[9] || (a[9] = (i) => s.value++),
479
- disabled: !$.value || s.value >= e.schema.slides.length - 1,
488
+ onClick: t[9] || (t[9] = (u) => r.value++),
489
+ disabled: !S.value || r.value >= e.schema.slides.length - 1,
480
490
  variant: "text"
481
491
  }, null, 8, ["disabled"]),
482
- b("div", Me, _(e.label ?? e.schema.title), 1),
483
- l(h),
484
- f(e.$slots, "form-toolbar-right"),
485
- l(S, null, {
492
+ y("div", Ee, C(e.label ?? e.schema.title), 1),
493
+ a(l(B)),
494
+ c(e.$slots, "form-toolbar-right"),
495
+ a(V, null, {
486
496
  default: n(() => [
487
- F.value && e.canSaveProgress !== !1 ? (t(), u(d, {
497
+ F.value && e.canSaveProgress !== !1 ? (s(), d(l(f), {
488
498
  key: 0,
489
- onClick: x(Q, ["stop"]),
499
+ onClick: Z(K, ["stop"]),
490
500
  class: "mr-4",
491
501
  "prepend-icon": "$content-save",
492
502
  size: "small",
493
503
  text: "Save",
494
504
  variant: "outlined"
495
- })) : r("", !0)
505
+ })) : i("", !0)
496
506
  ]),
497
507
  _: 1
498
508
  }),
499
- g.value != null ? (t(), v("div", Be, [
500
- g.value != null ? (t(), u(T, {
509
+ g.value != null ? (s(), v("div", we, [
510
+ g.value != null ? (s(), d(p, {
501
511
  key: 0,
502
512
  src: g.value
503
- }, null, 8, ["src"])) : r("", !0)
504
- ])) : r("", !0)
513
+ }, null, 8, ["src"])) : i("", !0)
514
+ ])) : i("", !0)
505
515
  ])
506
516
  ]),
507
517
  _: 2
508
- }, 1024)) : r("", !0),
509
- b("div", {
510
- style: k(e.useScroll ? c(j) : void 0)
518
+ }, 1024)) : i("", !0),
519
+ y("div", {
520
+ style: k(e.useScroll ? l(j) : void 0)
511
521
  }, [
512
- l(te, { errorMsg: w.value }, null, 8, ["errorMsg"]),
513
- l(re, {
522
+ a(le, { errorMsg: M.value }, null, 8, ["errorMsg"]),
523
+ a(l(ne), {
514
524
  class: "pa-0 mx-auto",
515
525
  cols: "12"
516
526
  }, {
517
527
  default: n(() => [
518
- f(e.$slots, m.name, {
528
+ c(e.$slots, m.name, {
519
529
  data: e.data,
520
530
  slide: m
521
531
  }, () => [
522
- (t(!0), v(N, null, z(m.fields, (i, P) => (t(), v("div", { key: P }, [
523
- f(e.$slots, i.prop, {
532
+ (s(!0), v(z, null, H(m.fields, (u, A) => (s(), v("div", { key: A }, [
533
+ c(e.$slots, u.prop, {
524
534
  data: e.data,
525
- field: i,
535
+ field: u,
526
536
  variant: "tonal"
527
537
  }, () => [
528
- l(ee, {
538
+ a(_, {
529
539
  data: e.data,
530
- field: i,
540
+ field: u,
531
541
  isEditing: L.value,
532
542
  variant: "tonal"
533
543
  }, null, 8, ["data", "field", "isEditing"])
534
544
  ])
535
545
  ]))), 128))
536
546
  ]),
537
- b("div", Ee, [
538
- l(q, {
547
+ y("div", Ve, [
548
+ a(b, {
539
549
  group: "",
540
550
  "hide-on-leave": ""
541
551
  }, {
542
552
  default: n(() => [
543
- s.value != 0 ? (t(), u(d, {
544
- onClick: a[10] || (a[10] = (i) => s.value--),
553
+ r.value != 0 ? (s(), d(l(f), {
554
+ onClick: t[10] || (t[10] = (u) => r.value--),
545
555
  class: "ma-4",
546
556
  key: "1",
547
557
  text: "Back"
548
- })) : r("", !0)
558
+ })) : i("", !0)
549
559
  ]),
550
560
  _: 1
551
561
  }),
552
- l(h),
553
- l(q, {
562
+ a(l(B)),
563
+ a(b, {
554
564
  group: "",
555
565
  "hide-on-leave": ""
556
566
  }, {
557
567
  default: n(() => [
558
- s.value < e.schema.slides.length - 1 ? (t(), u(d, {
559
- onClick: a[11] || (a[11] = (i) => s.value++),
568
+ r.value < e.schema.slides.length - 1 ? (s(), d(l(f), {
569
+ onClick: t[11] || (t[11] = (u) => r.value++),
560
570
  class: "ma-4",
561
- disabled: m.fields.filter((i) => !!i.isRequired).length > 0 && !$.value,
571
+ disabled: m.fields.filter((u) => !!u.isRequired).length > 0 && !S.value,
562
572
  key: "1",
563
573
  text: "Next"
564
- }, null, 8, ["disabled"])) : e.isEditing && e.canSubmit && !B.value && s.value >= e.schema.slides.length - 1 ? (t(), u(d, {
565
- onClick: W,
574
+ }, null, 8, ["disabled"])) : e.isEditing && e.canSubmit && !w.value && r.value >= e.schema.slides.length - 1 ? (s(), d(l(f), {
575
+ onClick: Q,
566
576
  class: "ma-4",
567
- disabled: m.fields.filter((i) => !!i.isRequired).length > 0 && !$.value,
577
+ disabled: m.fields.filter((u) => !!u.isRequired).length > 0 && !S.value,
568
578
  key: "2",
569
579
  text: "Submit"
570
- }, null, 8, ["disabled"])) : r("", !0)
580
+ }, null, 8, ["disabled"])) : i("", !0)
571
581
  ]),
572
582
  _: 2
573
583
  }, 1024),
574
- c(le)(y) ? (t(), v("div", Ne, _(y), 1)) : r("", !0)
584
+ l(x)(h) ? (s(), v("div", Ne, C(h), 1)) : i("", !0)
575
585
  ])
576
586
  ]),
577
587
  _: 2
@@ -583,32 +593,32 @@ const ce = { class: "text-h6 ml-3" }, fe = {
583
593
  ]),
584
594
  _: 2
585
595
  }, 1024))), 128)),
586
- l(V, null, {
596
+ a(l(q), null, {
587
597
  default: n(() => [
588
- e.hideHeader !== !0 ? (t(), u(A, {
598
+ e.hideHeader !== !0 ? (s(), d(l(P), {
589
599
  key: 0,
590
600
  color: "transparent"
591
601
  }, {
592
602
  default: n(() => [
593
- l(d, {
603
+ a(l(f), {
594
604
  icon: "$chevron-left",
595
- onClick: a[12] || (a[12] = (m) => s.value--),
596
- disabled: s.value == 0,
605
+ onClick: t[12] || (t[12] = (m) => r.value--),
606
+ disabled: r.value == 0,
597
607
  variant: "text"
598
608
  }, null, 8, ["disabled"]),
599
- b("div", ze, _(e.label ?? e.schema.title), 1),
600
- l(h),
601
- g.value != null ? (t(), v("div", He, [
602
- g.value != null ? (t(), u(T, {
609
+ y("div", ze, C(e.label ?? e.schema.title), 1),
610
+ a(l(B)),
611
+ g.value != null ? (s(), v("div", He, [
612
+ g.value != null ? (s(), d(p, {
603
613
  key: 0,
604
614
  src: g.value
605
- }, null, 8, ["src"])) : r("", !0)
606
- ])) : r("", !0)
615
+ }, null, 8, ["src"])) : i("", !0)
616
+ ])) : i("", !0)
607
617
  ]),
608
618
  _: 1
609
- })) : r("", !0),
610
- b("div", {
611
- style: k(e.useScroll ? c(j) : void 0),
619
+ })) : i("", !0),
620
+ y("div", {
621
+ style: k(e.useScroll ? l(j) : void 0),
612
622
  class: "d-flex flex-column align-center justify-center"
613
623
  }, " Done! Thankyou. ", 4)
614
624
  ]),
@@ -623,13 +633,13 @@ const ce = { class: "text-h6 ml-3" }, fe = {
623
633
  ]),
624
634
  _: 3
625
635
  }),
626
- l(ae, { loadingMsg: M.value }, null, 8, ["loadingMsg"])
636
+ a(ee, { loadingMsg: E.value }, null, 8, ["loadingMsg"])
627
637
  ]),
628
638
  _: 3
629
- }, 8, ["style"])) : r("", !0);
639
+ }, 8, ["style"])) : i("", !0);
630
640
  };
631
641
  }
632
642
  });
633
643
  export {
634
- Re as default
644
+ Qe as default
635
645
  };