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,28 +1,48 @@
1
- import { defineComponent as Me, ref as H, computed as O, watch as te, onMounted as Ae, resolveComponent as c, unref as e, openBlock as s, createElementBlock as m, createVNode as o, withCtx as a, normalizeStyle as I, createElementVNode as y, toDisplayString as C, createCommentVNode as v, withModifiers as k, createBlock as f, Fragment as q, renderList as $, renderSlot as j, mergeProps as x, createTextVNode as U, createSlots as He, normalizeProps as ne, guardReactiveProps as ae } from "vue";
2
- import { isNullOrEmpty as J, isLengthyArray as Oe } from "../composables/helpers.mjs";
3
- import Ie from "./BT-Form-Field.vue.mjs";
4
- import je from "./BT-Form.vue.mjs";
5
- import { useForms as Je, useFormTemplates as Ke, Fields as Qe, useFormSource as We } from "../composables/forms.mjs";
6
- import Xe from "./BT-Image-Select.vue.mjs";
1
+ import { defineComponent as ze, ref as A, computed as O, watch as te, onMounted as Le, resolveComponent as E, unref as e, openBlock as i, createElementBlock as d, createVNode as o, withCtx as a, normalizeStyle as j, createElementVNode as V, toDisplayString as h, createCommentVNode as p, withModifiers as y, createBlock as c, Fragment as P, renderList as _, renderSlot as J, mergeProps as $, createTextVNode as x, createSlots as qe, normalizeProps as re, guardReactiveProps as ae } from "vue";
2
+ import { isNullOrEmpty as K, isLengthyArray as Re } from "../composables/helpers.mjs";
3
+ import De from "./BT-Form-Field.vue.mjs";
4
+ import Ge from "./BT-Form.vue.mjs";
5
+ import { useForms as Me, useFormTemplates as Ne, Fields as He, useFormSource as Ie } from "../composables/forms.mjs";
6
+ import Ae from "./BT-Image-Select.vue.mjs";
7
+ import { VToolbarItems as ne } from "../bt-core/core/node_modules/vuetify/lib/components/VToolbar/VToolbarItems.mjs";
8
+ import { VDialog as Oe } from "../bt-core/core/node_modules/vuetify/lib/components/VDialog/VDialog.mjs";
9
+ import { VCard as S } from "../bt-core/core/node_modules/vuetify/lib/components/VCard/VCard.mjs";
10
+ import { VContainer as ie } from "../bt-core/core/node_modules/vuetify/lib/components/VGrid/VContainer.mjs";
11
+ import { VToolbar as Q } from "../bt-core/core/node_modules/vuetify/lib/components/VToolbar/VToolbar.mjs";
12
+ import { VBtn as v } from "../bt-core/core/node_modules/vuetify/lib/components/VBtn/VBtn.mjs";
13
+ import { VSpacer as N } from "../bt-core/core/node_modules/vuetify/lib/components/VGrid/VSpacer.mjs";
14
+ import { VList as W } from "../bt-core/core/node_modules/vuetify/lib/components/VList/VList.mjs";
15
+ import { VHover as je } from "../bt-core/core/node_modules/vuetify/lib/components/VHover/VHover.mjs";
16
+ import { VCardTitle as Je } from "../bt-core/core/node_modules/vuetify/lib/components/VCard/VCardTitle.mjs";
17
+ import { VMenu as z } from "../bt-core/core/node_modules/vuetify/lib/components/VMenu/VMenu.mjs";
18
+ import { VRow as Ke } from "../bt-core/core/node_modules/vuetify/lib/components/VGrid/VRow.mjs";
19
+ import { VCol as Qe } from "../bt-core/core/node_modules/vuetify/lib/components/VGrid/VCol.mjs";
20
+ import { VIcon as We } from "../bt-core/core/node_modules/vuetify/lib/components/VIcon/VIcon.mjs";
21
+ import { VTextField as U } from "../bt-core/core/node_modules/vuetify/lib/components/VTextField/VTextField.mjs";
22
+ import { VTextarea as Xe } from "../bt-core/core/node_modules/vuetify/lib/components/VTextarea/VTextarea.mjs";
23
+ import { VSwitch as L } from "../bt-core/core/node_modules/vuetify/lib/components/VSwitch/VSwitch.mjs";
24
+ import { VListSubheader as w } from "../bt-core/core/node_modules/vuetify/lib/components/VList/VListSubheader.mjs";
25
+ import { VColorPicker as H } from "../bt-core/core/node_modules/vuetify/lib/components/VColorPicker/VColorPicker.mjs";
26
+ import { VListItem as I } from "../bt-core/core/node_modules/vuetify/lib/components/VList/VListItem.mjs";
7
27
  const Ye = { key: 0 }, Ze = { key: 0 }, el = { class: "text-h6" }, ll = {
8
28
  key: 0,
9
29
  class: "text-caption"
10
- }, ol = { class: "text-h6 ml-3" }, tl = { class: "mr-6" }, nl = ["onClick"], al = { class: "d-flex align-center" }, rl = {
30
+ }, ol = { class: "text-h6 ml-3" }, tl = { class: "mr-6" }, rl = ["onClick"], al = { class: "d-flex align-center" }, nl = {
11
31
  style: { "min-height": "65px", "min-width": "64px" },
12
32
  class: "ml-2"
13
- }, sl = {
33
+ }, il = {
14
34
  key: "2",
15
35
  class: "d-flex align-center"
16
- }, il = { class: "d-flex flex-column" }, dl = {
36
+ }, sl = { class: "d-flex flex-column" }, ul = {
17
37
  key: 0,
18
38
  class: "mx-4"
19
- }, ul = {
39
+ }, dl = {
20
40
  key: 1,
21
41
  class: "d-flex flex-align"
22
- }, cl = { class: "text-center ma-2" }, ml = { class: "text-h6" }, pl = { key: 0 }, vl = { key: 1 }, fl = { key: 2 }, _l = { class: "text-caption" }, gl = { key: 0 }, yl = { key: 1 }, kl = { key: 2 }, bl = { class: "ml-1" }, Vl = { key: 1 }, Sl = { key: 2 }, hl = { key: 3 }, Cl = {
42
+ }, ml = { class: "text-center ma-2" }, pl = { class: "text-h6" }, cl = { key: 0 }, fl = { key: 1 }, vl = { key: 2 }, gl = { class: "text-caption" }, Vl = { key: 0 }, yl = { key: 1 }, kl = { key: 2 }, bl = { class: "ml-1" }, Sl = { key: 1 }, Cl = { key: 2 }, hl = { key: 3 }, _l = {
23
43
  key: 0,
24
44
  class: "text-center"
25
- }, $l = { class: "d-flex align-center py-1 mx-2" }, El = /* @__PURE__ */ Me({
45
+ }, $l = { class: "d-flex align-center py-1 mx-2" }, Yl = /* @__PURE__ */ ze({
26
46
  __name: "BT-Form-Builder",
27
47
  props: {
28
48
  actualUsedHeight: {},
@@ -44,51 +64,51 @@ const Ye = { key: 0 }, Ze = { key: 0 }, el = { class: "text-h6" }, ll = {
44
64
  useTemplates: { type: Boolean }
45
65
  },
46
66
  emits: ["update:modelValue"],
47
- setup(re, { emit: se }) {
48
- const ie = se, b = re, B = H(!1), de = H({}), {
49
- addFieldToSlide: ue,
67
+ setup(se, { emit: ue }) {
68
+ const de = ue, k = se, B = A(!1), me = A({}), {
69
+ addFieldToSlide: pe,
50
70
  addSlide: ce,
51
- applyTemplate: me,
52
- clearCurrent: K,
53
- currentField: d,
54
- currentSlide: _,
55
- duplicateField: pe,
56
- duplicateSlide: ve,
57
- fieldPropRules: fe,
58
- isLabelType: _e,
59
- isPlaceholderType: ge,
60
- isPropType: ye,
61
- isRequiredType: ke,
62
- loadSchema: Q,
63
- moveSlideDown: be,
64
- moveSlideUp: Ve,
65
- removeCurrent: Se,
66
- removeSlide: he,
71
+ applyTemplate: fe,
72
+ clearCurrent: X,
73
+ currentField: u,
74
+ currentSlide: f,
75
+ duplicateField: ve,
76
+ duplicateSlide: ge,
77
+ fieldPropRules: Ve,
78
+ isLabelType: ye,
79
+ isPlaceholderType: ke,
80
+ isPropType: be,
81
+ isRequiredType: Se,
82
+ loadSchema: Y,
83
+ moveSlideDown: Ce,
84
+ moveSlideUp: he,
85
+ removeCurrent: _e,
86
+ removeSlide: $e,
67
87
  schema: t,
68
- schemaString: Ce,
69
- selectField: $e,
70
- selectSlide: xe
71
- } = Je({
72
- onGetSchema: b.onGetSchema
73
- }), Ue = We(), W = O(() => {
74
- var u;
75
- var i = b.requiredProps ?? [];
76
- if (b.requirementGroup != null) {
77
- var l = Ue.requirementSets.find((V) => V.group == b.requirementGroup);
78
- (l == null ? void 0 : l.props) != null && i.push(...l.props);
88
+ schemaString: xe,
89
+ selectField: Ue,
90
+ selectSlide: Be
91
+ } = Me({
92
+ onGetSchema: k.onGetSchema
93
+ }), Te = Ie(), Z = O(() => {
94
+ var b;
95
+ var s = k.requiredProps ?? [];
96
+ if (k.requirementGroup != null) {
97
+ var l = Te.requirementSets.find((C) => C.group == k.requirementGroup);
98
+ (l == null ? void 0 : l.props) != null && s.push(...l.props);
79
99
  }
80
- return (u = t.value) == null || u.slides.forEach((V) => {
81
- V.fields.forEach((w) => {
82
- var T = i.findIndex((M) => M == w.prop);
83
- T >= 0 && i.splice(T, 1);
100
+ return (b = t.value) == null || b.slides.forEach((C) => {
101
+ C.fields.forEach((F) => {
102
+ var R = s.findIndex((D) => D == F.prop);
103
+ R >= 0 && s.splice(R, 1);
84
104
  });
85
- }), i;
86
- }), X = H(b.useTemplates ? Ke(b.templateGroup) : void 0), Be = O(() => {
87
- var l, u;
88
- let i = (l = t.value) == null ? void 0 : l.bgSrc;
89
- if (((u = t.value) == null ? void 0 : u.useBgSrc) == !0 && i != null)
90
- return `background: url("${i}") no-repeat top center fixed; -webkit-background-size: cover; -moz-background-size: cover; background-size: cover; -o-background-size: cover; min-height: 100%;`;
91
- }), we = O(() => {
105
+ }), s;
106
+ }), ee = A(k.useTemplates ? Ne(k.templateGroup) : void 0), we = O(() => {
107
+ var l, b;
108
+ let s = (l = t.value) == null ? void 0 : l.bgSrc;
109
+ if (((b = t.value) == null ? void 0 : b.useBgSrc) == !0 && s != null)
110
+ return `background: url("${s}") no-repeat top center fixed; -webkit-background-size: cover; -moz-background-size: cover; background-size: cover; -o-background-size: cover; min-height: 100%;`;
111
+ }), Fe = O(() => {
92
112
  if (t.value != null) {
93
113
  if (t.value.variant == "basic" || t.value.variant == "single-page")
94
114
  return "text";
@@ -96,64 +116,64 @@ const Ye = { key: 0 }, Ze = { key: 0 }, el = { class: "text-h6" }, ll = {
96
116
  return "tonal";
97
117
  }
98
118
  });
99
- function Y(i, l, u) {
100
- if (!(l < 0 || l > u.fields.length - 1)) {
101
- var V = u.fields.findIndex((w) => w === i);
102
- u.fields.splice(V, 1), u.fields.splice(l, 0, i);
119
+ function le(s, l, b) {
120
+ if (!(l < 0 || l > b.fields.length - 1)) {
121
+ var C = b.fields.findIndex((F) => F === s);
122
+ b.fields.splice(C, 1), b.fields.splice(l, 0, s);
103
123
  }
104
124
  }
105
- function Te(i) {
106
- me(i), L();
125
+ function Ee(s) {
126
+ fe(s), q();
107
127
  }
108
- async function L() {
109
- ie("update:modelValue", Ce.value), B.value = !1;
128
+ async function q() {
129
+ de("update:modelValue", xe.value), B.value = !1;
110
130
  }
111
- function Fe() {
131
+ function Pe() {
112
132
  B.value = !0;
113
133
  }
114
- function Z(i) {
115
- i != null && (J(i.logoSrc) && b.getLogoUrl != null && (i.logoSrc = b.getLogoUrl()), J(i.bgSrc) && b.getBackgroundUrl != null && (i.bgSrc = b.getBackgroundUrl()));
134
+ function oe(s) {
135
+ s != null && (K(s.logoSrc) && k.getLogoUrl != null && (s.logoSrc = k.getLogoUrl()), K(s.bgSrc) && k.getBackgroundUrl != null && (s.bgSrc = k.getBackgroundUrl()));
116
136
  }
117
- return te(() => b.openToggle, () => {
137
+ return te(() => k.openToggle, () => {
118
138
  B.value = !0;
119
- }), te(() => b.modelValue, (i) => {
120
- Q(i), Z(t.value);
121
- }), Ae(() => {
122
- Q(b.modelValue), Z(t.value);
123
- }), (i, l) => {
124
- const u = c("v-btn"), V = c("v-spacer"), w = c("v-toolbar-items"), T = c("v-toolbar"), M = c("bt-avatar"), ee = c("v-slide-x-transition"), Ee = c("v-card-title"), Pe = c("v-slide-x-reverse-transition"), S = c("v-card"), ze = c("v-col"), qe = c("v-row"), P = c("v-menu"), Le = c("v-hover"), Re = c("v-slide-y-transition"), A = c("v-list"), le = c("v-container"), De = c("v-icon"), h = c("v-text-field"), Ge = c("v-textarea"), z = c("v-switch"), oe = c("v-select"), F = c("v-list-subheader"), R = c("v-color-picker"), Ne = c("v-dialog"), D = c("v-list-item");
125
- return e(t) != null ? (s(), m("div", Ye, [
126
- o(Ne, {
139
+ }), te(() => k.modelValue, (s) => {
140
+ Y(s), oe(t.value);
141
+ }), Le(() => {
142
+ Y(k.modelValue), oe(t.value);
143
+ }), (s, l) => {
144
+ const b = E("bt-avatar"), C = E("v-slide-x-transition"), F = E("v-slide-x-reverse-transition"), R = E("v-slide-y-transition"), D = E("v-select");
145
+ return e(t) != null ? (i(), d("div", Ye, [
146
+ o(e(Oe), {
127
147
  fullscreen: "",
128
148
  "retain-focus": !1,
129
149
  transition: "dialog-bottom-transition",
130
150
  modelValue: B.value,
131
- "onUpdate:modelValue": l[18] || (l[18] = (n) => B.value = n)
151
+ "onUpdate:modelValue": l[18] || (l[18] = (r) => B.value = r)
132
152
  }, {
133
153
  default: a(() => [
134
- o(S, null, {
154
+ o(e(S), null, {
135
155
  default: a(() => [
136
- o(le, {
156
+ o(e(ie), {
137
157
  class: "pa-0",
138
158
  fluid: "",
139
- style: I(Be.value)
159
+ style: j(we.value)
140
160
  }, {
141
161
  default: a(() => [
142
- o(T, { color: "primary" }, {
162
+ o(e(Q), { color: "primary" }, {
143
163
  default: a(() => [
144
- o(u, {
164
+ o(e(v), {
145
165
  icon: "$close",
146
- onClick: l[0] || (l[0] = (n) => B.value = !1)
166
+ onClick: l[0] || (l[0] = (r) => B.value = !1)
147
167
  }),
148
- i.title != null ? (s(), m("div", Ze, [
149
- y("div", el, C(i.title), 1),
150
- e(t).title != null ? (s(), m("div", ll, C(e(t).title), 1)) : v("", !0)
151
- ])) : v("", !0),
152
- o(V),
153
- o(w, null, {
168
+ s.title != null ? (i(), d("div", Ze, [
169
+ V("div", el, h(s.title), 1),
170
+ e(t).title != null ? (i(), d("div", ll, h(e(t).title), 1)) : p("", !0)
171
+ ])) : p("", !0),
172
+ o(e(N)),
173
+ o(e(ne), null, {
154
174
  default: a(() => [
155
- o(u, {
156
- onClick: L,
175
+ o(e(v), {
176
+ onClick: q,
157
177
  text: "Done"
158
178
  })
159
179
  ]),
@@ -162,154 +182,154 @@ const Ye = { key: 0 }, Ze = { key: 0 }, el = { class: "text-h6" }, ll = {
162
182
  ]),
163
183
  _: 1
164
184
  }),
165
- o(S, {
185
+ o(e(S), {
166
186
  class: "d-flex",
167
187
  theme: e(t).theme
168
188
  }, {
169
189
  default: a(() => [
170
- o(le, {
171
- onClick: k(e(K), ["stop"]),
172
- style: I([{ height: "calc(100vh - 64px)" }, `background-color: ${e(t).bgColor}`]),
190
+ o(e(ie), {
191
+ onClick: y(e(X), ["stop"]),
192
+ style: j([{ height: "calc(100vh - 64px)" }, `background-color: ${e(t).bgColor}`]),
173
193
  class: "overflow-y-auto pa-0"
174
194
  }, {
175
195
  default: a(() => [
176
- e(t).useLogoSrc && !e(J)(e(t).logoSrc) ? (s(), f(T, {
196
+ e(t).useLogoSrc && !e(K)(e(t).logoSrc) ? (i(), c(e(Q), {
177
197
  key: 0,
178
- style: I(`background-color: ${e(t).bgColor}`)
198
+ style: j(`background-color: ${e(t).bgColor}`)
179
199
  }, {
180
200
  default: a(() => [
181
- y("div", ol, C(e(t).title), 1),
182
- o(V),
183
- y("div", tl, [
184
- o(M, {
201
+ V("div", ol, h(e(t).title), 1),
202
+ o(e(N)),
203
+ V("div", tl, [
204
+ o(b, {
185
205
  src: e(t).logoSrc
186
206
  }, null, 8, ["src"])
187
207
  ])
188
208
  ]),
189
209
  _: 1
190
- }, 8, ["style"])) : v("", !0),
191
- o(A, { "bg-color": "transparent" }, {
210
+ }, 8, ["style"])) : p("", !0),
211
+ o(e(W), { "bg-color": "transparent" }, {
192
212
  default: a(() => [
193
- o(Re, {
213
+ o(R, {
194
214
  group: "",
195
215
  "hide-on-leave": ""
196
216
  }, {
197
217
  default: a(() => [
198
- (s(!0), m(q, null, $(e(t).slides, (n, g) => j(i.$slots, `${n.name}-builder`, {
218
+ (i(!0), d(P, null, _(e(t).slides, (r, g) => J(s.$slots, `${r.name}-builder`, {
199
219
  key: g,
200
- slide: n
220
+ slide: r
201
221
  }, () => [
202
- y("div", {
203
- onClick: k((E) => e(xe)(n), ["stop"])
222
+ V("div", {
223
+ onClick: y((T) => e(Be)(r), ["stop"])
204
224
  }, [
205
- o(Le, null, {
206
- default: a(({ isHovering: E, props: G }) => [
207
- o(S, x({
208
- class: ["mx-1 my-6 pt-2 pb-5", e(_) === n ? "text-primary" : void 0],
225
+ o(e(je), null, {
226
+ default: a(({ isHovering: T, props: G }) => [
227
+ o(e(S), $({
228
+ class: ["mx-1 my-6 pt-2 pb-5", e(f) === r ? "text-primary" : void 0],
209
229
  ripple: !1,
210
230
  variant: "outlined",
211
231
  ref_for: !0
212
232
  }, G), {
213
233
  default: a(() => [
214
- y("div", al, [
215
- y("div", rl, [
216
- o(ee, null, {
234
+ V("div", al, [
235
+ V("div", nl, [
236
+ o(C, null, {
217
237
  default: a(() => [
218
- E ? (s(), m("div", sl, [
219
- y("div", il, [
220
- o(u, {
221
- onClick: k((p) => e(Ve)(g), ["stop"]),
238
+ T ? (i(), d("div", il, [
239
+ V("div", sl, [
240
+ o(e(v), {
241
+ onClick: y((m) => e(he)(g), ["stop"]),
222
242
  class: "ma-0 pa-0",
223
- disabled: g == 0 || !i.isEditing,
243
+ disabled: g == 0 || !s.isEditing,
224
244
  icon: "$menu-up",
225
245
  size: "x-small",
226
246
  variant: "text"
227
247
  }, null, 8, ["onClick", "disabled"]),
228
- o(u, {
229
- onClick: k((p) => e(be)(g), ["stop"]),
248
+ o(e(v), {
249
+ onClick: y((m) => e(Ce)(g), ["stop"]),
230
250
  class: "ma-0 pa-0",
231
- disabled: g >= e(t).slides.length - 1 || !i.isEditing,
251
+ disabled: g >= e(t).slides.length - 1 || !s.isEditing,
232
252
  icon: "$menu-down",
233
253
  size: "x-small",
234
254
  variant: "text"
235
255
  }, null, 8, ["onClick", "disabled"])
236
256
  ]),
237
- o(u, {
238
- onClick: k((p) => e(t).slides.splice(g + 1, 0, e(ve)(n)), ["stop"]),
257
+ o(e(v), {
258
+ onClick: y((m) => e(t).slides.splice(g + 1, 0, e(ge)(r)), ["stop"]),
239
259
  class: "ma-0 pa-0",
240
260
  icon: "$content-duplicate",
241
261
  size: "x-small",
242
262
  title: "Duplicate",
243
263
  variant: "text"
244
264
  }, null, 8, ["onClick"])
245
- ])) : v("", !0)
265
+ ])) : p("", !0)
246
266
  ]),
247
267
  _: 2
248
268
  }, 1024)
249
269
  ]),
250
- o(Ee, null, {
270
+ o(e(Je), null, {
251
271
  default: a(() => [
252
- U(C(n.name), 1)
272
+ x(h(r.name), 1)
253
273
  ]),
254
274
  _: 2
255
275
  }, 1024),
256
- o(V),
257
- o(Pe, null, {
276
+ o(e(N)),
277
+ o(F, null, {
258
278
  default: a(() => [
259
- (n == null ? void 0 : n.canDelete) !== !1 && E ? (s(), f(u, {
279
+ (r == null ? void 0 : r.canDelete) !== !1 && T ? (i(), c(e(v), {
260
280
  key: 0,
261
281
  class: "ma-0 mr-2 pa-0 text-error",
262
- onClick: k((p) => e(he)(n.name), ["stop"]),
282
+ onClick: y((m) => e($e)(r.name), ["stop"]),
263
283
  icon: "$delete",
264
284
  variant: "text"
265
- }, null, 8, ["onClick"])) : v("", !0)
285
+ }, null, 8, ["onClick"])) : p("", !0)
266
286
  ]),
267
287
  _: 2
268
288
  }, 1024)
269
289
  ]),
270
- e(Oe)(n.fields) ? (s(), m("div", dl, [
271
- (s(!0), m(q, null, $(n.fields, (p, r) => (s(), m("div", null, [
272
- (s(), f(Ie, {
273
- key: `${r}${p.prop ?? ""}${p.type ?? ""}`,
274
- onDuplicate: (N) => n.fields.splice(r + 1, 0, e(pe)(p)),
275
- onMovedown: (N) => Y(p, r + 1, n),
276
- onMoveup: (N) => Y(p, r - 1, n),
277
- onSelect: (N) => e($e)(n, p),
278
- field: p,
290
+ e(Re)(r.fields) ? (i(), d("div", ul, [
291
+ (i(!0), d(P, null, _(r.fields, (m, n) => (i(), d("div", null, [
292
+ (i(), c(De, {
293
+ key: `${n}${m.prop ?? ""}${m.type ?? ""}`,
294
+ onDuplicate: (M) => r.fields.splice(n + 1, 0, e(ve)(m)),
295
+ onMovedown: (M) => le(m, n + 1, r),
296
+ onMoveup: (M) => le(m, n - 1, r),
297
+ onSelect: (M) => e(Ue)(r, m),
298
+ field: m,
279
299
  isBuilding: "",
280
- isSelected: e(d) === p,
281
- variant: we.value
300
+ isSelected: e(u) === m,
301
+ variant: Fe.value
282
302
  }, null, 8, ["onDuplicate", "onMovedown", "onMoveup", "onSelect", "field", "isSelected", "variant"]))
283
303
  ]))), 256))
284
- ])) : v("", !0),
285
- n.canEdit !== !1 ? (s(), m("div", ul, [
286
- o(P, { "z-index": "2500" }, {
287
- activator: a(({ props: p }) => [
288
- o(u, x({
304
+ ])) : p("", !0),
305
+ r.canEdit !== !1 ? (i(), d("div", dl, [
306
+ o(e(z), { "z-index": "2500" }, {
307
+ activator: a(({ props: m }) => [
308
+ o(e(v), $({
289
309
  class: "mx-auto",
290
310
  color: e(t).ctlColor,
291
311
  "prepend-icon": "$plus",
292
312
  text: "Add Field",
293
313
  ref_for: !0
294
- }, p), null, 16, ["color"])
314
+ }, m), null, 16, ["color"])
295
315
  ]),
296
316
  default: a(() => [
297
- o(S, { "max-width": "550" }, {
317
+ o(e(S), { "max-width": "550" }, {
298
318
  default: a(() => [
299
- o(qe, { "no-gutters": "" }, {
319
+ o(e(Ke), { "no-gutters": "" }, {
300
320
  default: a(() => [
301
- (s(!0), m(q, null, $(e(Qe), (p, r) => (s(), f(ze, {
302
- key: r,
321
+ (i(!0), d(P, null, _(e(He), (m, n) => (i(), c(e(Qe), {
322
+ key: n,
303
323
  cols: "6"
304
324
  }, {
305
325
  default: a(() => [
306
- o(S, {
326
+ o(e(S), {
307
327
  class: "ma-1",
308
- onClick: k((N) => e(ue)(p, n), ["stop"]),
328
+ onClick: y((M) => e(pe)(m, r), ["stop"]),
309
329
  color: e(t).ctlColor,
310
- "prepend-icon": p.icon,
311
- subtitle: p.description,
312
- title: p.label
330
+ "prepend-icon": m.icon,
331
+ subtitle: m.description,
332
+ title: m.label
313
333
  }, null, 8, ["onClick", "color", "prepend-icon", "subtitle", "title"])
314
334
  ]),
315
335
  _: 2
@@ -323,14 +343,14 @@ const Ye = { key: 0 }, Ze = { key: 0 }, el = { class: "text-h6" }, ll = {
323
343
  ]),
324
344
  _: 2
325
345
  }, 1024)
326
- ])) : v("", !0)
346
+ ])) : p("", !0)
327
347
  ]),
328
348
  _: 2
329
349
  }, 1040, ["class"])
330
350
  ]),
331
351
  _: 2
332
352
  }, 1024)
333
- ], 8, nl)
353
+ ], 8, rl)
334
354
  ])), 128))
335
355
  ]),
336
356
  _: 3
@@ -338,9 +358,9 @@ const Ye = { key: 0 }, Ze = { key: 0 }, el = { class: "text-h6" }, ll = {
338
358
  ]),
339
359
  _: 3
340
360
  }),
341
- y("div", cl, [
342
- o(u, {
343
- onClick: k(e(ce), ["stop"]),
361
+ V("div", ml, [
362
+ o(e(v), {
363
+ onClick: y(e(ce), ["stop"]),
344
364
  color: e(t).ctlColor,
345
365
  "prepend-icon": "$card-plus-outline",
346
366
  text: "Add Slide"
@@ -349,46 +369,46 @@ const Ye = { key: 0 }, Ze = { key: 0 }, el = { class: "text-h6" }, ll = {
349
369
  ]),
350
370
  _: 3
351
371
  }, 8, ["onClick", "style"]),
352
- o(S, {
372
+ o(e(S), {
353
373
  class: "overflow-y-auto",
354
374
  width: "400",
355
375
  style: { height: "calc(100vh - 64px)" },
356
376
  tile: ""
357
377
  }, {
358
378
  default: a(() => {
359
- var n, g, E, G, p;
379
+ var r, g, T, G, m;
360
380
  return [
361
- o(T, null, {
381
+ o(e(Q), null, {
362
382
  default: a(() => [
363
- e(_) != null || e(d) != null ? (s(), f(u, {
383
+ e(f) != null || e(u) != null ? (i(), c(e(v), {
364
384
  key: 0,
365
385
  icon: "$close",
366
- onClick: k(e(K), ["stop"])
367
- }, null, 8, ["onClick"])) : (s(), f(De, {
386
+ onClick: y(e(X), ["stop"])
387
+ }, null, 8, ["onClick"])) : (i(), c(e(We), {
368
388
  key: 1,
369
389
  class: "mx-3",
370
390
  icon: "$cog"
371
391
  })),
372
- y("div", null, [
373
- y("div", ml, [
374
- e(d) != null ? (s(), m("span", pl, "Field")) : e(_) != null ? (s(), m("span", vl, "Slide")) : (s(), m("span", fl, "Form"))
392
+ V("div", null, [
393
+ V("div", pl, [
394
+ e(u) != null ? (i(), d("span", cl, "Field")) : e(f) != null ? (i(), d("span", fl, "Slide")) : (i(), d("span", vl, "Form"))
375
395
  ]),
376
- y("div", _l, [
377
- e(d) != null ? (s(), m("span", gl, C(e(d).type), 1)) : e(_) != null ? (s(), m("span", yl, C(e(_).name), 1)) : (s(), m("span", kl, "Properties"))
396
+ V("div", gl, [
397
+ e(u) != null ? (i(), d("span", Vl, h(e(u).type), 1)) : e(f) != null ? (i(), d("span", yl, h(e(f).name), 1)) : (i(), d("span", kl, "Properties"))
378
398
  ])
379
399
  ]),
380
- o(V),
381
- o(w, null, {
400
+ o(e(N)),
401
+ o(e(ne), null, {
382
402
  default: a(() => {
383
- var r;
403
+ var n;
384
404
  return [
385
- e(d) != null || e(_) != null ? (s(), f(u, {
405
+ e(u) != null || e(f) != null ? (i(), c(e(v), {
386
406
  key: 0,
387
- disabled: ((r = e(_)) == null ? void 0 : r.canDelete) == !1,
407
+ disabled: ((n = e(f)) == null ? void 0 : n.canDelete) == !1,
388
408
  class: "text-error",
389
- onClick: k(e(Se), ["stop"]),
409
+ onClick: y(e(_e), ["stop"]),
390
410
  icon: "$delete"
391
- }, null, 8, ["disabled", "onClick"])) : v("", !0)
411
+ }, null, 8, ["disabled", "onClick"])) : p("", !0)
392
412
  ];
393
413
  }),
394
414
  _: 1
@@ -396,173 +416,173 @@ const Ye = { key: 0 }, Ze = { key: 0 }, el = { class: "text-h6" }, ll = {
396
416
  ]),
397
417
  _: 1
398
418
  }),
399
- W.value.length > 0 ? (s(), f(S, {
419
+ Z.value.length > 0 ? (i(), c(e(S), {
400
420
  key: 0,
401
421
  subtitle: "This form requires fields with these properties:"
402
422
  }, {
403
423
  text: a(() => [
404
- (s(!0), m(q, null, $(W.value, (r) => (s(), m("div", null, [
405
- l[25] || (l[25] = y("span", null, "Prop:", -1)),
406
- y("span", bl, C(r), 1)
424
+ (i(!0), d(P, null, _(Z.value, (n) => (i(), d("div", null, [
425
+ l[25] || (l[25] = V("span", null, "Prop:", -1)),
426
+ V("span", bl, h(n), 1)
407
427
  ]))), 256))
408
428
  ]),
409
429
  _: 1
410
- })) : v("", !0),
411
- e(d) != null ? (s(), m("div", Vl, [
412
- e(_e) ? (s(), f(h, {
430
+ })) : p("", !0),
431
+ e(u) != null ? (i(), d("div", Sl, [
432
+ e(ye) ? (i(), c(e(U), {
413
433
  key: 0,
414
434
  "hide-details": "",
415
435
  label: "Label",
416
- modelValue: e(d).label,
417
- "onUpdate:modelValue": l[1] || (l[1] = (r) => e(d).label = r)
418
- }, null, 8, ["modelValue"])) : v("", !0),
419
- o(Ge, {
436
+ modelValue: e(u).label,
437
+ "onUpdate:modelValue": l[1] || (l[1] = (n) => e(u).label = n)
438
+ }, null, 8, ["modelValue"])) : p("", !0),
439
+ o(e(Xe), {
420
440
  "auto-grow": "",
421
441
  "hide-details": "",
422
442
  label: "Description",
423
443
  lines: "three",
424
- modelValue: e(d).description,
425
- "onUpdate:modelValue": l[2] || (l[2] = (r) => e(d).description = r)
444
+ modelValue: e(u).description,
445
+ "onUpdate:modelValue": l[2] || (l[2] = (n) => e(u).description = n)
426
446
  }, null, 8, ["modelValue"]),
427
- e(ge) ? (s(), f(h, {
447
+ e(ke) ? (i(), c(e(U), {
428
448
  key: 1,
429
449
  "hide-details": "",
430
450
  label: "Placeholder",
431
- modelValue: e(d).placeholder,
432
- "onUpdate:modelValue": l[3] || (l[3] = (r) => e(d).placeholder = r)
433
- }, null, 8, ["modelValue"])) : v("", !0),
434
- e(ye) ? (s(), f(h, {
451
+ modelValue: e(u).placeholder,
452
+ "onUpdate:modelValue": l[3] || (l[3] = (n) => e(u).placeholder = n)
453
+ }, null, 8, ["modelValue"])) : p("", !0),
454
+ e(be) ? (i(), c(e(U), {
435
455
  key: 2,
436
- readonly: ((n = e(_)) == null ? void 0 : n.canEdit) == !1,
456
+ readonly: ((r = e(f)) == null ? void 0 : r.canEdit) == !1,
437
457
  label: "Field Property",
438
- rules: e(fe),
439
- modelValue: e(d).prop,
440
- "onUpdate:modelValue": l[4] || (l[4] = (r) => e(d).prop = r)
441
- }, null, 8, ["readonly", "rules", "modelValue"])) : v("", !0),
442
- e(d).type == "button" ? (s(), f(h, {
458
+ rules: e(Ve),
459
+ modelValue: e(u).prop,
460
+ "onUpdate:modelValue": l[4] || (l[4] = (n) => e(u).prop = n)
461
+ }, null, 8, ["readonly", "rules", "modelValue"])) : p("", !0),
462
+ e(u).type == "button" ? (i(), c(e(U), {
443
463
  key: 3,
444
464
  label: "URL to navigate to",
445
- modelValue: e(d).url,
446
- "onUpdate:modelValue": l[5] || (l[5] = (r) => e(d).url = r)
447
- }, null, 8, ["modelValue"])) : v("", !0),
448
- e(ke) ? (s(), f(z, {
465
+ modelValue: e(u).url,
466
+ "onUpdate:modelValue": l[5] || (l[5] = (n) => e(u).url = n)
467
+ }, null, 8, ["modelValue"])) : p("", !0),
468
+ e(Se) ? (i(), c(e(L), {
449
469
  key: 4,
450
- color: e(d).isRequired ? "primary" : void 0,
470
+ color: e(u).isRequired ? "primary" : void 0,
451
471
  inset: "",
452
- label: e(d).isRequired ? "Required" : "Not Required",
453
- readonly: ((g = e(_)) == null ? void 0 : g.canEdit) === !1,
454
- modelValue: e(d).isRequired,
455
- "onUpdate:modelValue": l[6] || (l[6] = (r) => e(d).isRequired = r)
456
- }, null, 8, ["color", "label", "readonly", "modelValue"])) : v("", !0),
457
- o(z, {
458
- color: e(d).remember ? "primary" : void 0,
472
+ label: e(u).isRequired ? "Required" : "Not Required",
473
+ readonly: ((g = e(f)) == null ? void 0 : g.canEdit) === !1,
474
+ modelValue: e(u).isRequired,
475
+ "onUpdate:modelValue": l[6] || (l[6] = (n) => e(u).isRequired = n)
476
+ }, null, 8, ["color", "label", "readonly", "modelValue"])) : p("", !0),
477
+ o(e(L), {
478
+ color: e(u).remember ? "primary" : void 0,
459
479
  inset: "",
460
- label: e(d).remember ? "Remember On Reset" : "Forget On Reset",
461
- readonly: ((E = e(_)) == null ? void 0 : E.canEdit) === !1,
462
- modelValue: e(d).remember,
463
- "onUpdate:modelValue": l[7] || (l[7] = (r) => e(d).remember = r)
480
+ label: e(u).remember ? "Remember On Reset" : "Forget On Reset",
481
+ readonly: ((T = e(f)) == null ? void 0 : T.canEdit) === !1,
482
+ modelValue: e(u).remember,
483
+ "onUpdate:modelValue": l[7] || (l[7] = (n) => e(u).remember = n)
464
484
  }, null, 8, ["color", "label", "readonly", "modelValue"]),
465
- e(d).type == "button" ? (s(), f(z, {
485
+ e(u).type == "button" ? (i(), c(e(L), {
466
486
  key: 5,
467
- color: e(d).isSubmitButton ? "primary" : void 0,
487
+ color: e(u).isSubmitButton ? "primary" : void 0,
468
488
  inset: "",
469
489
  label: "Submit On Click",
470
- readonly: ((G = e(_)) == null ? void 0 : G.canEdit) === !1,
471
- modelValue: e(d).isSubmitButton,
472
- "onUpdate:modelValue": l[8] || (l[8] = (r) => e(d).isSubmitButton = r)
473
- }, null, 8, ["color", "readonly", "modelValue"])) : v("", !0)
474
- ])) : e(_) != null ? (s(), m("div", Sl, [
475
- o(h, {
476
- canEdit: e(_).canEdit !== !1,
490
+ readonly: ((G = e(f)) == null ? void 0 : G.canEdit) === !1,
491
+ modelValue: e(u).isSubmitButton,
492
+ "onUpdate:modelValue": l[8] || (l[8] = (n) => e(u).isSubmitButton = n)
493
+ }, null, 8, ["color", "readonly", "modelValue"])) : p("", !0)
494
+ ])) : e(f) != null ? (i(), d("div", Cl, [
495
+ o(e(U), {
496
+ canEdit: e(f).canEdit !== !1,
477
497
  label: "Slide Name",
478
- readonly: ((p = e(_)) == null ? void 0 : p.canEdit) === !1,
479
- modelValue: e(_).name,
480
- "onUpdate:modelValue": l[9] || (l[9] = (r) => e(_).name = r)
498
+ readonly: ((m = e(f)) == null ? void 0 : m.canEdit) === !1,
499
+ modelValue: e(f).name,
500
+ "onUpdate:modelValue": l[9] || (l[9] = (n) => e(f).name = n)
481
501
  }, null, 8, ["canEdit", "readonly", "modelValue"])
482
- ])) : (s(), m("div", hl, [
483
- o(h, {
502
+ ])) : (i(), d("div", hl, [
503
+ o(e(U), {
484
504
  disabled: "",
485
505
  "hide-details": "",
486
506
  label: "Version",
487
507
  modelValue: e(t).version,
488
- "onUpdate:modelValue": l[10] || (l[10] = (r) => e(t).version = r)
508
+ "onUpdate:modelValue": l[10] || (l[10] = (n) => e(t).version = n)
489
509
  }, null, 8, ["modelValue"]),
490
- o(h, {
510
+ o(e(U), {
491
511
  "hide-details": "",
492
512
  label: "Form Title",
493
513
  modelValue: e(t).title,
494
- "onUpdate:modelValue": l[11] || (l[11] = (r) => e(t).title = r)
514
+ "onUpdate:modelValue": l[11] || (l[11] = (n) => e(t).title = n)
495
515
  }, null, 8, ["modelValue"]),
496
- o(oe, {
516
+ o(D, {
497
517
  "hide-details": "",
498
518
  label: "Form Variant",
499
519
  items: ["basic", "half-and-half", "single-page"],
500
520
  modelValue: e(t).variant,
501
- "onUpdate:modelValue": l[12] || (l[12] = (r) => e(t).variant = r)
521
+ "onUpdate:modelValue": l[12] || (l[12] = (n) => e(t).variant = n)
502
522
  }, null, 8, ["modelValue"]),
503
- o(oe, {
523
+ o(D, {
504
524
  "hide-details": "",
505
525
  label: "Theme",
506
526
  items: ["light", "dark"],
507
527
  modelValue: e(t).theme,
508
- "onUpdate:modelValue": l[13] || (l[13] = (r) => e(t).theme = r)
528
+ "onUpdate:modelValue": l[13] || (l[13] = (n) => e(t).theme = n)
509
529
  }, null, 8, ["modelValue"]),
510
- o(z, {
530
+ o(e(L), {
511
531
  color: e(t).useLogoSrc ? "primary" : void 0,
512
532
  "hide-details": "",
513
533
  inset: "",
514
534
  label: "Show My Logo",
515
535
  modelValue: e(t).useLogoSrc,
516
- "onUpdate:modelValue": l[14] || (l[14] = (r) => e(t).useLogoSrc = r)
536
+ "onUpdate:modelValue": l[14] || (l[14] = (n) => e(t).useLogoSrc = n)
517
537
  }, null, 8, ["color", "modelValue"]),
518
- o(z, {
538
+ o(e(L), {
519
539
  color: e(t).useBgSrc ? "primary" : void 0,
520
540
  "hide-details": "",
521
541
  inset: "",
522
542
  label: "Use Background Image",
523
543
  modelValue: e(t).useBgSrc,
524
- "onUpdate:modelValue": l[15] || (l[15] = (r) => e(t).useBgSrc = r)
544
+ "onUpdate:modelValue": l[15] || (l[15] = (n) => e(t).useBgSrc = n)
525
545
  }, null, 8, ["color", "modelValue"]),
526
- e(t).useBgSrc && i.imgProps != null ? (s(), f(F, {
546
+ e(t).useBgSrc && s.imgProps != null ? (i(), c(e(w), {
527
547
  key: 0,
528
548
  class: "ml-2"
529
549
  }, {
530
550
  default: a(() => l[26] || (l[26] = [
531
- U("Background Image")
551
+ x("Background Image")
532
552
  ])),
533
553
  _: 1
534
- })) : v("", !0),
535
- o(ee, { "hide-on-leave": "" }, {
554
+ })) : p("", !0),
555
+ o(C, { "hide-on-leave": "" }, {
536
556
  default: a(() => [
537
- e(t).useBgSrc && i.imgProps != null ? (s(), m("div", Cl, [
538
- o(Xe, x(i.imgProps, {
557
+ e(t).useBgSrc && s.imgProps != null ? (i(), d("div", _l, [
558
+ o(Ae, $(s.imgProps, {
539
559
  src: e(t).bgSrc
540
560
  }), null, 16, ["src"])
541
- ])) : v("", !0)
561
+ ])) : p("", !0)
542
562
  ]),
543
563
  _: 1
544
564
  }),
545
- o(F, { class: "ml-2" }, {
565
+ o(e(w), { class: "ml-2" }, {
546
566
  default: a(() => l[27] || (l[27] = [
547
- U("Background Color")
567
+ x("Background Color")
548
568
  ])),
549
569
  _: 1
550
570
  }),
551
- o(R, {
571
+ o(e(H), {
552
572
  width: "100%",
553
573
  modelValue: e(t).bgColor,
554
- "onUpdate:modelValue": l[16] || (l[16] = (r) => e(t).bgColor = r)
574
+ "onUpdate:modelValue": l[16] || (l[16] = (n) => e(t).bgColor = n)
555
575
  }, null, 8, ["modelValue"]),
556
- o(F, { class: "ml-2" }, {
576
+ o(e(w), { class: "ml-2" }, {
557
577
  default: a(() => l[28] || (l[28] = [
558
- U("Button Color")
578
+ x("Button Color")
559
579
  ])),
560
580
  _: 1
561
581
  }),
562
- o(R, {
582
+ o(e(H), {
563
583
  width: "100%",
564
584
  modelValue: e(t).ctlColor,
565
- "onUpdate:modelValue": l[17] || (l[17] = (r) => e(t).ctlColor = r)
585
+ "onUpdate:modelValue": l[17] || (l[17] = (n) => e(t).ctlColor = n)
566
586
  }, null, 8, ["modelValue"])
567
587
  ]))
568
588
  ];
@@ -581,70 +601,70 @@ const Ye = { key: 0 }, Ze = { key: 0 }, el = { class: "text-h6" }, ll = {
581
601
  ]),
582
602
  _: 3
583
603
  }, 8, ["modelValue"]),
584
- o(je, {
585
- actualUsedHeight: i.actualUsedHeight,
604
+ o(Ge, {
605
+ actualUsedHeight: s.actualUsedHeight,
586
606
  canSubmit: !1,
587
- data: de.value,
607
+ data: me.value,
588
608
  isEditing: "",
589
- onGetSchema: i.onGetSchema,
590
- overrideSchema: i.overrideSchema,
609
+ onGetSchema: s.onGetSchema,
610
+ overrideSchema: s.overrideSchema,
591
611
  schema: e(t),
592
- useSchemaStyles: i.useSchemaStyles
593
- }, He({
612
+ useSchemaStyles: s.useSchemaStyles
613
+ }, qe({
594
614
  "form-toolbar-right": a(() => [
595
- y("div", $l, [
596
- X.value != null ? (s(), f(P, { key: 0 }, {
597
- activator: a(({ props: n }) => [
598
- o(u, x({
615
+ V("div", $l, [
616
+ ee.value != null ? (i(), c(e(z), { key: 0 }, {
617
+ activator: a(({ props: r }) => [
618
+ o(e(v), $({
599
619
  color: e(t).ctlColor,
600
620
  size: "x-small",
601
621
  text: "Use Template"
602
- }, n), null, 16, ["color"])
622
+ }, r), null, 16, ["color"])
603
623
  ]),
604
624
  default: a(() => [
605
- o(A, { "min-width": "300" }, {
625
+ o(e(W), { "min-width": "300" }, {
606
626
  default: a(() => [
607
- (s(!0), m(q, null, $(X.value, (n) => (s(), f(D, {
608
- onClick: k((g) => Te(n), ["stop"]),
609
- subtitle: n.description,
610
- title: n.templateName
627
+ (i(!0), d(P, null, _(ee.value, (r) => (i(), c(e(I), {
628
+ onClick: y((g) => Ee(r), ["stop"]),
629
+ subtitle: r.description,
630
+ title: r.templateName
611
631
  }, null, 8, ["onClick", "subtitle", "title"]))), 256))
612
632
  ]),
613
633
  _: 1
614
634
  })
615
635
  ]),
616
636
  _: 1
617
- })) : v("", !0),
618
- o(P, null, {
619
- activator: a(({ props: n }) => [
620
- o(u, x({
637
+ })) : p("", !0),
638
+ o(e(z), null, {
639
+ activator: a(({ props: r }) => [
640
+ o(e(v), $({
621
641
  color: e(t).ctlColor,
622
642
  icon: "$view-carousel",
623
643
  size: "x-small",
624
644
  title: "Form Variant"
625
- }, n), null, 16, ["color"])
645
+ }, r), null, 16, ["color"])
626
646
  ]),
627
647
  default: a(() => [
628
- o(A, null, {
648
+ o(e(W), null, {
629
649
  default: a(() => [
630
- o(F, null, {
650
+ o(e(w), null, {
631
651
  default: a(() => l[29] || (l[29] = [
632
- U("Form Variant")
652
+ x("Form Variant")
633
653
  ])),
634
654
  _: 1
635
655
  }),
636
- o(D, {
637
- onClick: l[19] || (l[19] = k((n) => e(t).variant = "basic", ["stop"])),
656
+ o(e(I), {
657
+ onClick: l[19] || (l[19] = y((r) => e(t).variant = "basic", ["stop"])),
638
658
  active: e(t).variant == "basic",
639
659
  title: "Basic"
640
660
  }, null, 8, ["active"]),
641
- o(D, {
642
- onClick: l[20] || (l[20] = k((n) => e(t).variant = "single-page", ["stop"])),
661
+ o(e(I), {
662
+ onClick: l[20] || (l[20] = y((r) => e(t).variant = "single-page", ["stop"])),
643
663
  active: e(t).variant == "single-page",
644
664
  title: "Single Page"
645
665
  }, null, 8, ["active"]),
646
- o(D, {
647
- onClick: l[21] || (l[21] = k((n) => e(t).variant = "half-and-half", ["stop"])),
666
+ o(e(I), {
667
+ onClick: l[21] || (l[21] = y((r) => e(t).variant = "half-and-half", ["stop"])),
648
668
  active: e(t).variant == "half-and-half",
649
669
  title: "Half And Half"
650
670
  }, null, 8, ["active"])
@@ -654,29 +674,29 @@ const Ye = { key: 0 }, Ze = { key: 0 }, el = { class: "text-h6" }, ll = {
654
674
  ]),
655
675
  _: 1
656
676
  }),
657
- o(P, { "close-on-content-click": !1 }, {
658
- activator: a(({ props: n }) => [
659
- o(u, x({
677
+ o(e(z), { "close-on-content-click": !1 }, {
678
+ activator: a(({ props: r }) => [
679
+ o(e(v), $({
660
680
  class: "ml-1",
661
681
  color: e(t).ctlColor,
662
682
  icon: "$format-color-fill",
663
683
  size: "x-small",
664
684
  title: "Background Color"
665
- }, n), null, 16, ["color"])
685
+ }, r), null, 16, ["color"])
666
686
  ]),
667
687
  default: a(() => [
668
- o(S, null, {
688
+ o(e(S), null, {
669
689
  default: a(() => [
670
- o(F, { class: "ml-2" }, {
690
+ o(e(w), { class: "ml-2" }, {
671
691
  default: a(() => l[30] || (l[30] = [
672
- U("Background Color")
692
+ x("Background Color")
673
693
  ])),
674
694
  _: 1
675
695
  }),
676
- o(R, {
696
+ o(e(H), {
677
697
  "onUpdate:modelValue": [
678
- L,
679
- l[22] || (l[22] = (n) => e(t).bgColor = n)
698
+ q,
699
+ l[22] || (l[22] = (r) => e(t).bgColor = r)
680
700
  ],
681
701
  width: "250",
682
702
  modelValue: e(t).bgColor
@@ -687,29 +707,29 @@ const Ye = { key: 0 }, Ze = { key: 0 }, el = { class: "text-h6" }, ll = {
687
707
  ]),
688
708
  _: 1
689
709
  }),
690
- o(P, { "close-on-content-click": !1 }, {
691
- activator: a(({ props: n }) => [
692
- o(u, x({
710
+ o(e(z), { "close-on-content-click": !1 }, {
711
+ activator: a(({ props: r }) => [
712
+ o(e(v), $({
693
713
  class: "ml-1",
694
714
  color: e(t).ctlColor,
695
715
  icon: "$palette",
696
716
  size: "x-small",
697
717
  title: "Button Color"
698
- }, n), null, 16, ["color"])
718
+ }, r), null, 16, ["color"])
699
719
  ]),
700
720
  default: a(() => [
701
- o(S, null, {
721
+ o(e(S), null, {
702
722
  default: a(() => [
703
- o(F, { class: "ml-2" }, {
723
+ o(e(w), { class: "ml-2" }, {
704
724
  default: a(() => l[31] || (l[31] = [
705
- U("Button Color")
725
+ x("Button Color")
706
726
  ])),
707
727
  _: 1
708
728
  }),
709
- o(R, {
729
+ o(e(H), {
710
730
  "onUpdate:modelValue": [
711
- L,
712
- l[23] || (l[23] = (n) => e(t).ctlColor = n)
731
+ q,
732
+ l[23] || (l[23] = (r) => e(t).ctlColor = r)
713
733
  ],
714
734
  width: "250",
715
735
  modelValue: e(t).ctlColor
@@ -720,15 +740,15 @@ const Ye = { key: 0 }, Ze = { key: 0 }, el = { class: "text-h6" }, ll = {
720
740
  ]),
721
741
  _: 1
722
742
  }),
723
- o(u, {
724
- onClick: l[24] || (l[24] = (n) => e(t).theme = e(t).theme == "light" ? "dark" : "light"),
743
+ o(e(v), {
744
+ onClick: l[24] || (l[24] = (r) => e(t).theme = e(t).theme == "light" ? "dark" : "light"),
725
745
  class: "ml-1",
726
746
  color: e(t).ctlColor,
727
747
  icon: "$theme-light-dark",
728
748
  size: "small"
729
749
  }, null, 8, ["color"]),
730
- o(u, {
731
- onClick: Fe,
750
+ o(e(v), {
751
+ onClick: Pe,
732
752
  class: "ml-1",
733
753
  color: e(t).ctlColor,
734
754
  "prepend-icon": "$pencil",
@@ -740,23 +760,23 @@ const Ye = { key: 0 }, Ze = { key: 0 }, el = { class: "text-h6" }, ll = {
740
760
  ]),
741
761
  _: 2
742
762
  }, [
743
- $(e(t).slides.flatMap((n) => n.fields), (n) => ({
744
- name: `${n.prop}`,
763
+ _(e(t).slides.flatMap((r) => r.fields), (r) => ({
764
+ name: `${r.prop}`,
745
765
  fn: a((g) => [
746
- j(i.$slots, n.prop, ne(ae(g)))
766
+ J(s.$slots, r.prop, re(ae(g)))
747
767
  ])
748
768
  })),
749
- $(e(t).slides, (n) => ({
750
- name: `${n.name}`,
769
+ _(e(t).slides, (r) => ({
770
+ name: `${r.name}`,
751
771
  fn: a((g) => [
752
- j(i.$slots, n.name, ne(ae(g)))
772
+ J(s.$slots, r.name, re(ae(g)))
753
773
  ])
754
774
  }))
755
775
  ]), 1032, ["actualUsedHeight", "data", "onGetSchema", "overrideSchema", "schema", "useSchemaStyles"])
756
- ])) : v("", !0);
776
+ ])) : p("", !0);
757
777
  };
758
778
  }
759
779
  });
760
780
  export {
761
- El as default
781
+ Yl as default
762
782
  };