bt-core-app 2.1.36 → 2.2.0
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.
- package/dist/_virtual/_commonjs-dynamic-modules.mjs +6 -0
- package/dist/_virtual/_commonjsHelpers.mjs +30 -0
- package/dist/_virtual/_plugin-vue_export-helper.mjs +9 -0
- package/dist/_virtual/index.mjs +4 -0
- package/dist/_virtual/localforage.mjs +4 -0
- package/dist/_virtual/luxon.mjs +6 -0
- package/dist/_virtual/matcher.mjs +4 -0
- package/dist/_virtual/parser.mjs +4 -0
- package/dist/bt-core/core/node_modules/@datasert/cronjs-matcher/dist/index.mjs +12 -0
- package/dist/bt-core/core/node_modules/@datasert/cronjs-matcher/dist/matcher.mjs +220 -0
- package/dist/bt-core/core/node_modules/@datasert/cronjs-parser/dist/parser.mjs +186 -0
- package/dist/bt-core/core/node_modules/@mdi/js/mdi.mjs +70 -0
- package/dist/bt-core/core/node_modules/@vuepic/vue-datepicker/dist/main.css.mjs +1 -0
- package/dist/bt-core/core/node_modules/@vuepic/vue-datepicker/dist/vue-datepicker.mjs +5210 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/addLeadingZeros.mjs +7 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/defaultOptions.mjs +7 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/format/formatters.mjs +517 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/format/lightFormatters.mjs +59 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/format/longFormatters.mjs +52 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.mjs +18 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/normalizeDates.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/normalizeInterval.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/protectedTokens.mjs +21 -0
- package/dist/bt-core/core/node_modules/date-fns/add.mjs +20 -0
- package/dist/bt-core/core/node_modules/date-fns/addDays.mjs +10 -0
- package/dist/bt-core/core/node_modules/date-fns/addHours.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/addMilliseconds.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/addMonths.mjs +21 -0
- package/dist/bt-core/core/node_modules/date-fns/addQuarters.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/addYears.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/compareAsc.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/constants.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/constructFrom.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/differenceInCalendarDays.mjs +16 -0
- package/dist/bt-core/core/node_modules/date-fns/differenceInCalendarYears.mjs +13 -0
- package/dist/bt-core/core/node_modules/date-fns/differenceInYears.mjs +17 -0
- package/dist/bt-core/core/node_modules/date-fns/eachDayOfInterval.mjs +20 -0
- package/dist/bt-core/core/node_modules/date-fns/eachQuarterOfInterval.mjs +21 -0
- package/dist/bt-core/core/node_modules/date-fns/endOfQuarter.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/endOfWeek.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/endOfYear.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/format.mjs +60 -0
- package/dist/bt-core/core/node_modules/date-fns/getDay.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/getDayOfYear.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/getDaysInMonth.mjs +10 -0
- package/dist/bt-core/core/node_modules/date-fns/getDefaultOptions.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/getHours.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/getISODay.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/getISOWeek.mjs +12 -0
- package/dist/bt-core/core/node_modules/date-fns/getISOWeekYear.mjs +15 -0
- package/dist/bt-core/core/node_modules/date-fns/getMinutes.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/getMonth.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/getQuarter.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/getSeconds.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/getWeek.mjs +12 -0
- package/dist/bt-core/core/node_modules/date-fns/getWeekYear.mjs +17 -0
- package/dist/bt-core/core/node_modules/date-fns/getYear.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/isAfter.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/isBefore.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/isDate.mjs +7 -0
- package/dist/bt-core/core/node_modules/date-fns/isEqual.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/isSameQuarter.mjs +14 -0
- package/dist/bt-core/core/node_modules/date-fns/isValid.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/_lib/buildFormatLongFn.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/_lib/buildLocalizeFn.mjs +18 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/_lib/buildMatchFn.mjs +31 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/_lib/buildMatchPatternFn.mjs +17 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/en-US/_lib/formatDistance.mjs +70 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/en-US/_lib/formatLong.mjs +33 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/en-US/_lib/formatRelative.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/en-US/_lib/localize.mjs +155 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/en-US/_lib/match.mjs +110 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/en-US.mjs +21 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/Parser.mjs +22 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/Setter.mjs +41 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/constants.mjs +49 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/AMPMMidnightParser.mjs +49 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/AMPMParser.mjs +49 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/DateParser.mjs +61 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/DayOfYearParser.mjs +51 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/DayParser.mjs +45 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/DayPeriodParser.mjs +49 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/EraParser.mjs +30 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ExtendedYearParser.mjs +21 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/FractionOfSecondParser.mjs +22 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/Hour0To11Parser.mjs +32 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/Hour0to23Parser.mjs +32 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/Hour1To24Parser.mjs +33 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/Hour1to12Parser.mjs +33 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ISODayParser.mjs +99 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ISOTimezoneParser.mjs +48 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ISOTimezoneWithZParser.mjs +48 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ISOWeekParser.mjs +49 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ISOWeekYearParser.mjs +40 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/LocalDayParser.mjs +74 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/LocalWeekParser.mjs +48 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/LocalWeekYearParser.mjs +69 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/MinuteParser.mjs +32 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/MonthParser.mjs +71 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/QuarterParser.mjs +70 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/SecondParser.mjs +32 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/StandAloneLocalDayParser.mjs +74 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/StandAloneMonthParser.mjs +71 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/StandAloneQuarterParser.mjs +70 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/TimestampMillisecondsParser.mjs +22 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/TimestampSecondsParser.mjs +22 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/YearParser.mjs +49 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers.mjs +67 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/utils.mjs +103 -0
- package/dist/bt-core/core/node_modules/date-fns/parse.mjs +90 -0
- package/dist/bt-core/core/node_modules/date-fns/set.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/setDay.mjs +12 -0
- package/dist/bt-core/core/node_modules/date-fns/setHours.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/setISODay.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/setISOWeek.mjs +10 -0
- package/dist/bt-core/core/node_modules/date-fns/setMilliseconds.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/setMinutes.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/setMonth.mjs +13 -0
- package/dist/bt-core/core/node_modules/date-fns/setSeconds.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/setWeek.mjs +10 -0
- package/dist/bt-core/core/node_modules/date-fns/setYear.mjs +10 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfDay.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfISOWeek.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfISOWeekYear.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfMonth.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfQuarter.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfWeek.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfWeekYear.mjs +13 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfYear.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/sub.mjs +19 -0
- package/dist/bt-core/core/node_modules/date-fns/subDays.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/subMonths.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/subYears.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/toDate.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/transpose.mjs +18 -0
- package/dist/bt-core/core/node_modules/localforage/dist/localforage.mjs +1454 -0
- package/dist/bt-core/core/node_modules/luxon/src/datetime.mjs +1855 -0
- package/dist/bt-core/core/node_modules/luxon/src/duration.mjs +753 -0
- package/dist/bt-core/core/node_modules/luxon/src/errors.mjs +40 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/conversions.mjs +92 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/diff.mjs +36 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/digits.mjs +77 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/english.mjs +138 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/formats.mjs +150 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/formatter.mjs +258 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/invalid.mjs +11 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/locale.mjs +294 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/regexParser.mjs +202 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/tokenParser.mjs +329 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/util.mjs +220 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/zoneUtil.mjs +20 -0
- package/dist/bt-core/core/node_modules/luxon/src/info.mjs +180 -0
- package/dist/bt-core/core/node_modules/luxon/src/interval.mjs +481 -0
- package/dist/bt-core/core/node_modules/luxon/src/luxon.mjs +24 -0
- package/dist/bt-core/core/node_modules/luxon/src/settings.mjs +150 -0
- package/dist/bt-core/core/node_modules/luxon/src/zone.mjs +88 -0
- package/dist/bt-core/core/node_modules/luxon/src/zones/IANAZone.mjs +183 -0
- package/dist/bt-core/core/node_modules/luxon/src/zones/fixedOffsetZone.mjs +125 -0
- package/dist/bt-core/core/node_modules/luxon/src/zones/invalidZone.mjs +41 -0
- package/dist/bt-core/core/node_modules/luxon/src/zones/systemZone.mjs +47 -0
- package/dist/bt-core/core/node_modules/merge-images/dist/index.es2015.mjs +47 -0
- package/dist/bt-core/core/node_modules/signature_pad/dist/signature_pad.mjs +248 -0
- package/dist/bt-core/core/node_modules/thenby/thenBy.module.mjs +38 -0
- package/dist/bt-core/core/node_modules/vue-picture-cropper/lib/index.mjs +1643 -0
- package/dist/bt-core/core/node_modules/vue-signature-pad/dist/vue-signature-pad.esm.mjs +173 -0
- package/dist/bt-core/core/node_modules/vue-use-spring/dist/index.mjs +204 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/composables/defaults.mjs +61 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/composables/icons.mjs +82 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/iconsets/mdi-svg.mjs +74 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/util/colors.mjs +322 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/util/console.mjs +7 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/util/defineComponent.mjs +34 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/util/getCurrentInstance.mjs +10 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/util/helpers.mjs +44 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/util/injectSelf.mjs +12 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/util/propsFactory.mjs +14 -0
- package/dist/components/BT-Assistant-Menu.vue.d.ts +19 -0
- package/dist/components/BT-Assistant-Menu.vue.mjs +464 -0
- package/dist/components/BT-Assistant-Menu.vue2.mjs +4 -0
- package/dist/components/BT-Avatar.vue.d.ts +16 -0
- package/dist/components/BT-Avatar.vue.mjs +41 -0
- package/dist/components/BT-Avatar.vue2.mjs +4 -0
- package/dist/components/BT-Background-Task.vue.d.ts +61 -0
- package/dist/components/BT-Background-Task.vue.mjs +89 -0
- package/dist/components/BT-Background-Task.vue2.mjs +4 -0
- package/dist/components/BT-Blade-Item.vue.d.ts +578 -0
- package/dist/components/BT-Blade-Item.vue.mjs +441 -0
- package/dist/components/BT-Blade-Item.vue2.mjs +4 -0
- package/dist/components/BT-Blade-Items.vue.d.ts +2358 -0
- package/dist/components/BT-Blade-Items.vue.mjs +7 -0
- package/dist/components/BT-Blade-Items.vue2.mjs +943 -0
- package/dist/components/BT-Blade-Items.vue3.mjs +1 -0
- package/dist/components/BT-Blade-Steps.vue.d.ts +1740 -0
- package/dist/components/BT-Blade-Steps.vue.mjs +7 -0
- package/dist/components/BT-Blade-Steps.vue2.mjs +1305 -0
- package/dist/components/BT-Blade-Steps.vue3.mjs +1 -0
- package/dist/components/BT-Blade.vue.d.ts +109 -0
- package/dist/components/BT-Blade.vue.mjs +268 -0
- package/dist/components/BT-Blade.vue2.mjs +4 -0
- package/dist/components/BT-Btn.vue.d.ts +47 -0
- package/dist/components/BT-Btn.vue.mjs +43 -0
- package/dist/components/BT-Btn.vue2.mjs +4 -0
- package/dist/components/BT-Camera-Overlay.vue.d.ts +57 -0
- package/dist/components/BT-Camera-Overlay.vue.mjs +173 -0
- package/dist/components/BT-Camera-Overlay.vue2.mjs +4 -0
- package/dist/components/BT-Col.vue.d.ts +49 -0
- package/dist/components/BT-Col.vue.mjs +33 -0
- package/dist/components/BT-Col.vue2.mjs +4 -0
- package/dist/components/BT-Color-Picker-Menu.vue.d.ts +23 -0
- package/dist/components/BT-Color-Picker-Menu.vue.mjs +63 -0
- package/dist/components/BT-Color-Picker-Menu.vue2.mjs +4 -0
- package/dist/components/BT-Cosmetics-Menu.vue.d.ts +14 -0
- package/dist/components/BT-Cosmetics-Menu.vue.mjs +211 -0
- package/dist/components/BT-Cosmetics-Menu.vue2.mjs +4 -0
- package/dist/components/BT-Cron-Span.vue.d.ts +21 -0
- package/dist/components/BT-Cron-Span.vue.mjs +66 -0
- package/dist/components/BT-Cron-Span.vue2.mjs +4 -0
- package/dist/components/BT-Cron.vue.d.ts +37 -0
- package/dist/components/BT-Cron.vue.mjs +538 -0
- package/dist/components/BT-Cron.vue2.mjs +4 -0
- package/dist/components/BT-Date-Select.vue.d.ts +46 -0
- package/dist/components/BT-Date-Select.vue.mjs +71 -0
- package/dist/components/BT-Date-Select.vue2.mjs +4 -0
- package/dist/components/BT-Date.vue.d.ts +53 -0
- package/dist/components/BT-Date.vue.mjs +55 -0
- package/dist/components/BT-Date.vue2.mjs +4 -0
- package/dist/components/BT-Demo-Profile-Select.vue.d.ts +17 -0
- package/dist/components/BT-Demo-Profile-Select.vue.mjs +52 -0
- package/dist/components/BT-Demo-Profile-Select.vue2.mjs +4 -0
- package/dist/components/BT-Dialog-Confirm.vue.d.ts +2 -0
- package/dist/components/BT-Dialog-Confirm.vue.mjs +63 -0
- package/dist/components/BT-Dialog-Confirm.vue2.mjs +4 -0
- package/dist/components/BT-Dialog-Date.vue.d.ts +2 -0
- package/dist/components/BT-Dialog-Date.vue.mjs +79 -0
- package/dist/components/BT-Dialog-Date.vue2.mjs +4 -0
- package/dist/components/BT-Dialog-Number.vue.d.ts +2 -0
- package/dist/components/BT-Dialog-Number.vue.mjs +178 -0
- package/dist/components/BT-Dialog-Number.vue2.mjs +4 -0
- package/dist/components/BT-Dialog-Select.vue.d.ts +2 -0
- package/dist/components/BT-Dialog-Select.vue.mjs +235 -0
- package/dist/components/BT-Dialog-Select.vue2.mjs +4 -0
- package/dist/components/BT-Divider.vue.d.ts +24 -0
- package/dist/components/BT-Divider.vue.mjs +31 -0
- package/dist/components/BT-Divider.vue2.mjs +4 -0
- package/dist/components/BT-Drag-Counter.vue.d.ts +114 -0
- package/dist/components/BT-Drag-Counter.vue.mjs +7 -0
- package/dist/components/BT-Drag-Counter.vue2.mjs +156 -0
- package/dist/components/BT-Drag-Counter.vue3.mjs +1 -0
- package/dist/components/BT-Entity.vue.d.ts +82 -0
- package/dist/components/BT-Entity.vue.mjs +172 -0
- package/dist/components/BT-Entity.vue2.mjs +4 -0
- package/dist/components/BT-Error.vue.d.ts +15 -0
- package/dist/components/BT-Error.vue.mjs +35 -0
- package/dist/components/BT-Error.vue2.mjs +4 -0
- package/dist/components/BT-Field-Checkbox.vue.d.ts +57 -0
- package/dist/components/BT-Field-Checkbox.vue.mjs +61 -0
- package/dist/components/BT-Field-Checkbox.vue2.mjs +4 -0
- package/dist/components/BT-Field-Date.vue.d.ts +69 -0
- package/dist/components/BT-Field-Date.vue.mjs +120 -0
- package/dist/components/BT-Field-Date.vue2.mjs +4 -0
- package/dist/components/BT-Field-Entity.vue.d.ts +48 -0
- package/dist/components/BT-Field-Entity.vue.mjs +55 -0
- package/dist/components/BT-Field-Entity.vue2.mjs +4 -0
- package/dist/components/BT-Field-Select-Simple.vue.d.ts +55 -0
- package/dist/components/BT-Field-Select-Simple.vue.mjs +52 -0
- package/dist/components/BT-Field-Select-Simple.vue2.mjs +4 -0
- package/dist/components/BT-Field-Select.vue.d.ts +70 -0
- package/dist/components/BT-Field-Select.vue.mjs +60 -0
- package/dist/components/BT-Field-Select.vue2.mjs +4 -0
- package/dist/components/BT-Field-String.vue.d.ts +57 -0
- package/dist/components/BT-Field-String.vue.mjs +87 -0
- package/dist/components/BT-Field-String.vue2.mjs +4 -0
- package/dist/components/BT-Field-Switch.vue.d.ts +51 -0
- package/dist/components/BT-Field-Switch.vue.mjs +64 -0
- package/dist/components/BT-Field-Switch.vue2.mjs +4 -0
- package/dist/components/BT-Field-Tags.vue.d.ts +53 -0
- package/dist/components/BT-Field-Tags.vue.mjs +80 -0
- package/dist/components/BT-Field-Tags.vue2.mjs +4 -0
- package/dist/components/BT-Field-Textarea.vue.d.ts +53 -0
- package/dist/components/BT-Field-Textarea.vue.mjs +66 -0
- package/dist/components/BT-Field-Textarea.vue2.mjs +4 -0
- package/dist/components/BT-Field-Trigger.vue.d.ts +113 -0
- package/dist/components/BT-Field-Trigger.vue.mjs +368 -0
- package/dist/components/BT-Field-Trigger.vue2.mjs +4 -0
- package/dist/components/BT-Field.vue.d.ts +49 -0
- package/dist/components/BT-Field.vue.mjs +59 -0
- package/dist/components/BT-Field.vue2.mjs +4 -0
- package/dist/components/BT-Form-Builder.vue.d.ts +74 -0
- package/dist/components/BT-Form-Builder.vue.mjs +762 -0
- package/dist/components/BT-Form-Builder.vue2.mjs +4 -0
- package/dist/components/BT-Form-Field.vue.d.ts +41 -0
- package/dist/components/BT-Form-Field.vue.mjs +186 -0
- package/dist/components/BT-Form-Field.vue2.mjs +4 -0
- package/dist/components/BT-Form.vue.d.ts +95 -0
- package/dist/components/BT-Form.vue.mjs +635 -0
- package/dist/components/BT-Form.vue2.mjs +4 -0
- package/dist/components/BT-Header-Option.vue.d.ts +18 -0
- package/dist/components/BT-Header-Option.vue.mjs +62 -0
- package/dist/components/BT-Header-Option.vue2.mjs +4 -0
- package/dist/components/BT-Image-Select.vue.d.ts +71 -0
- package/dist/components/BT-Image-Select.vue.mjs +219 -0
- package/dist/components/BT-Image-Select.vue2.mjs +4 -0
- package/dist/components/BT-Json.vue.d.ts +6 -0
- package/dist/components/BT-Json.vue.mjs +38 -0
- package/dist/components/BT-Json.vue2.mjs +1 -0
- package/dist/components/BT-Json.vue3.mjs +5 -0
- package/dist/components/BT-Loader.vue.d.ts +6 -0
- package/dist/components/BT-Loader.vue.mjs +37 -0
- package/dist/components/BT-Loader.vue2.mjs +4 -0
- package/dist/components/BT-Nav-Sidebar.vue.d.ts +25 -0
- package/dist/components/BT-Nav-Sidebar.vue.mjs +138 -0
- package/dist/components/BT-Nav-Sidebar.vue2.mjs +4 -0
- package/dist/components/BT-Number.vue.d.ts +23 -0
- package/dist/components/BT-Number.vue.mjs +7 -0
- package/dist/components/BT-Number.vue2.mjs +43 -0
- package/dist/components/BT-Number.vue3.mjs +1 -0
- package/dist/components/BT-Numpad.vue.d.ts +68 -0
- package/dist/components/BT-Numpad.vue.mjs +191 -0
- package/dist/components/BT-Numpad.vue2.mjs +4 -0
- package/dist/components/BT-Select-Inline.vue.d.ts +121 -0
- package/dist/components/BT-Select-Inline.vue.mjs +74 -0
- package/dist/components/BT-Select-Inline.vue2.mjs +24 -0
- package/dist/components/BT-Select-Inline.vue3.mjs +1 -0
- package/dist/components/BT-Select-List-Box.vue.d.ts +137 -0
- package/dist/components/BT-Select-List-Box.vue.mjs +414 -0
- package/dist/components/BT-Select-List-Box.vue2.mjs +4 -0
- package/dist/components/BT-Select-Simple.vue.d.ts +58 -0
- package/dist/components/BT-Select-Simple.vue.mjs +126 -0
- package/dist/components/BT-Select-Simple.vue2.mjs +4 -0
- package/dist/components/BT-Select.vue.d.ts +73 -0
- package/dist/components/BT-Select.vue.mjs +138 -0
- package/dist/components/BT-Select.vue2.mjs +4 -0
- package/dist/components/BT-Signature-Overlay.vue.d.ts +65 -0
- package/dist/components/BT-Signature-Overlay.vue.mjs +146 -0
- package/dist/components/BT-Signature-Overlay.vue2.mjs +4 -0
- package/dist/components/BT-Signature.vue.d.ts +70 -0
- package/dist/components/BT-Signature.vue.mjs +155 -0
- package/dist/components/BT-Signature.vue2.mjs +4 -0
- package/dist/components/BT-Slider.vue.d.ts +37 -0
- package/dist/components/BT-Slider.vue.mjs +126 -0
- package/dist/components/BT-Slider.vue2.mjs +4 -0
- package/dist/components/BT-Span.vue.d.ts +19 -0
- package/dist/components/BT-Span.vue.mjs +23 -0
- package/dist/components/BT-Span.vue2.mjs +4 -0
- package/dist/components/BT-Square-Check.vue.d.ts +104 -0
- package/dist/components/BT-Square-Check.vue.mjs +98 -0
- package/dist/components/BT-Square-Check.vue2.mjs +4 -0
- package/dist/components/BT-Status-Item.vue.d.ts +45 -0
- package/dist/components/BT-Status-Item.vue.mjs +51 -0
- package/dist/components/BT-Status-Item.vue2.mjs +4 -0
- package/dist/components/BT-Tags.vue.d.ts +19 -0
- package/dist/components/BT-Tags.vue.mjs +32 -0
- package/dist/components/BT-Tags.vue2.mjs +4 -0
- package/dist/components/BT-Tour.vue.d.ts +43 -0
- package/dist/components/BT-Tour.vue.mjs +78 -0
- package/dist/components/BT-Tour.vue2.mjs +4 -0
- package/dist/components.mjs +36 -0
- package/dist/composables/actions-local.d.ts +14 -0
- package/dist/composables/actions-local.mjs +26 -0
- package/dist/composables/actions-tracker.d.ts +36 -0
- package/dist/composables/actions-tracker.mjs +88 -0
- package/dist/composables/actions.d.ts +116 -0
- package/dist/composables/actions.mjs +272 -0
- package/dist/composables/api.d.ts +100 -0
- package/dist/composables/api.mjs +329 -0
- package/dist/composables/assistant.d.ts +38 -0
- package/dist/composables/assistant.mjs +70 -0
- package/dist/composables/auth.d.ts +94 -0
- package/dist/composables/auth.mjs +257 -0
- package/dist/composables/background-tasks.d.ts +31 -0
- package/dist/composables/background-tasks.mjs +79 -0
- package/dist/composables/blade-old.d.ts +1 -0
- package/dist/composables/blade.d.ts +91 -0
- package/dist/composables/blade.mjs +156 -0
- package/dist/composables/charts.d.ts +10 -0
- package/dist/composables/colorizer.d.ts +5 -0
- package/dist/composables/colorizer.mjs +27 -0
- package/dist/composables/component-config.d.ts +8 -0
- package/dist/composables/component-config.mjs +11 -0
- package/dist/composables/confirm.d.ts +1 -0
- package/dist/composables/confirm.mjs +11 -0
- package/dist/composables/cosmetics.d.ts +44 -0
- package/dist/composables/cosmetics.mjs +125 -0
- package/dist/composables/cron-adjustments.d.ts +63 -0
- package/dist/composables/cron-adjustments.mjs +106 -0
- package/dist/composables/cron.d.ts +72 -0
- package/dist/composables/cron.mjs +326 -0
- package/dist/composables/csv.d.ts +44 -0
- package/dist/composables/csv.mjs +163 -0
- package/dist/composables/dates.d.ts +22 -0
- package/dist/composables/dates.mjs +61 -0
- package/dist/composables/demo.d.ts +68 -0
- package/dist/composables/demo.mjs +173 -0
- package/dist/composables/dialog-items.d.ts +117 -0
- package/dist/composables/dialog-items.mjs +72 -0
- package/dist/composables/document-meta.d.ts +11 -0
- package/dist/composables/document-meta.mjs +20 -0
- package/dist/composables/draggable.d.ts +56 -0
- package/dist/composables/draggable.mjs +76 -0
- package/dist/composables/feedback.d.ts +24 -0
- package/dist/composables/feedback.mjs +32 -0
- package/dist/composables/filters.d.ts +27 -0
- package/dist/composables/filters.mjs +218 -0
- package/dist/composables/forage.d.ts +89 -0
- package/dist/composables/forage.mjs +37 -0
- package/dist/composables/forms.d.ts +104 -0
- package/dist/composables/forms.mjs +256 -0
- package/dist/composables/geo.d.ts +24 -0
- package/dist/composables/geo.mjs +95 -0
- package/dist/composables/graph-pro.d.ts +98 -0
- package/dist/composables/graph-pro.mjs +205 -0
- package/dist/composables/graphing.d.ts +1 -0
- package/dist/composables/heights.d.ts +24 -0
- package/dist/composables/heights.mjs +41 -0
- package/dist/composables/helpers.d.ts +114 -0
- package/dist/composables/helpers.mjs +512 -0
- package/dist/composables/icons.d.ts +3 -0
- package/dist/composables/icons.mjs +84 -0
- package/dist/composables/id.d.ts +8 -0
- package/dist/composables/id.mjs +32 -0
- package/dist/composables/item.d.ts +132 -0
- package/dist/composables/item.mjs +263 -0
- package/dist/composables/iterating.d.ts +1 -0
- package/dist/composables/list.d.ts +345 -0
- package/dist/composables/list.mjs +460 -0
- package/dist/composables/lists.d.ts +10 -0
- package/dist/composables/lists.mjs +31 -0
- package/dist/composables/menu.d.ts +35 -0
- package/dist/composables/menu.mjs +63 -0
- package/dist/composables/navigation.d.ts +123 -0
- package/dist/composables/navigation.mjs +157 -0
- package/dist/composables/nested.d.ts +3 -0
- package/dist/composables/nested.mjs +20 -0
- package/dist/composables/old-dialogs.d.ts +1 -0
- package/dist/composables/presets.d.ts +8 -0
- package/dist/composables/presets.mjs +16 -0
- package/dist/composables/pwa-old.d.ts +15 -0
- package/dist/composables/pwa.d.ts +26 -0
- package/dist/composables/pwa.mjs +80 -0
- package/dist/composables/resizable.d.ts +34 -0
- package/dist/composables/resizable.mjs +135 -0
- package/dist/composables/routing-old.d.ts +1 -0
- package/dist/composables/routing.d.ts +16 -0
- package/dist/composables/routing.mjs +112 -0
- package/dist/composables/rules.d.ts +13 -0
- package/dist/composables/rules.mjs +22 -0
- package/dist/composables/select.d.ts +78 -0
- package/dist/composables/select.mjs +129 -0
- package/dist/composables/settings.d.ts +6 -0
- package/dist/composables/settings.mjs +21 -0
- package/dist/composables/setup.d.ts +1 -0
- package/dist/composables/steps-old.d.ts +1 -0
- package/dist/composables/steps.d.ts +53 -0
- package/dist/composables/steps.mjs +39 -0
- package/dist/composables/stores.d.ts +258 -0
- package/dist/composables/stores.mjs +1257 -0
- package/dist/composables/sync.d.ts +33 -0
- package/dist/composables/track.d.ts +13 -0
- package/dist/composables/track.mjs +30 -0
- package/dist/composables/urls.d.ts +35 -0
- package/dist/composables/urls.mjs +66 -0
- package/dist/composables/vuetify.d.ts +85 -0
- package/dist/composables.mjs +237 -0
- package/dist/core.d.ts +48 -0
- package/dist/core.mjs +6 -0
- package/dist/core2.mjs +118 -0
- package/dist/index-components.d.ts +19 -0
- package/dist/index-composables.d.ts +75 -0
- package/dist/index-core.d.ts +3 -0
- package/dist/index.d.ts +96 -3036
- package/dist/index.mjs +275 -0
- package/dist/main.d.ts +1 -0
- package/dist/node_modules/bt-core-app/dist/bt-core-app.mjs +30372 -0
- package/dist/style.css +1 -5
- package/dist/types.d.ts +18 -0
- package/dist/types.mjs +7 -0
- package/package.json +4 -1
- package/dist/bt-core-app.js +0 -81355
|
@@ -0,0 +1,762 @@
|
|
|
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";
|
|
7
|
+
const Ye = { key: 0 }, Ze = { key: 0 }, el = { class: "text-h6" }, ll = {
|
|
8
|
+
key: 0,
|
|
9
|
+
class: "text-caption"
|
|
10
|
+
}, ol = { class: "text-h6 ml-3" }, tl = { class: "mr-6" }, nl = ["onClick"], al = { class: "d-flex align-center" }, rl = {
|
|
11
|
+
style: { "min-height": "65px", "min-width": "64px" },
|
|
12
|
+
class: "ml-2"
|
|
13
|
+
}, sl = {
|
|
14
|
+
key: "2",
|
|
15
|
+
class: "d-flex align-center"
|
|
16
|
+
}, il = { class: "d-flex flex-column" }, dl = {
|
|
17
|
+
key: 0,
|
|
18
|
+
class: "mx-4"
|
|
19
|
+
}, ul = {
|
|
20
|
+
key: 1,
|
|
21
|
+
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 = {
|
|
23
|
+
key: 0,
|
|
24
|
+
class: "text-center"
|
|
25
|
+
}, $l = { class: "d-flex align-center py-1 mx-2" }, El = /* @__PURE__ */ Me({
|
|
26
|
+
__name: "BT-Form-Builder",
|
|
27
|
+
props: {
|
|
28
|
+
actualUsedHeight: {},
|
|
29
|
+
defaultTemplateName: {},
|
|
30
|
+
getBackgroundUrl: {},
|
|
31
|
+
getLogoUrl: {},
|
|
32
|
+
imgProps: {},
|
|
33
|
+
isEditing: { type: Boolean },
|
|
34
|
+
openToggle: { type: Boolean },
|
|
35
|
+
modelValue: {},
|
|
36
|
+
onGetSchema: {},
|
|
37
|
+
overrideSchema: {},
|
|
38
|
+
refreshToggle: { type: Boolean },
|
|
39
|
+
requiredProps: {},
|
|
40
|
+
requirementGroup: {},
|
|
41
|
+
templateGroup: {},
|
|
42
|
+
title: { default: "Form Builder" },
|
|
43
|
+
useSchemaStyles: { type: Boolean },
|
|
44
|
+
useTemplates: { type: Boolean }
|
|
45
|
+
},
|
|
46
|
+
emits: ["update:modelValue"],
|
|
47
|
+
setup(re, { emit: se }) {
|
|
48
|
+
const ie = se, b = re, B = H(!1), de = H({}), {
|
|
49
|
+
addFieldToSlide: ue,
|
|
50
|
+
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,
|
|
67
|
+
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);
|
|
79
|
+
}
|
|
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);
|
|
84
|
+
});
|
|
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(() => {
|
|
92
|
+
if (t.value != null) {
|
|
93
|
+
if (t.value.variant == "basic" || t.value.variant == "single-page")
|
|
94
|
+
return "text";
|
|
95
|
+
if (t.value.variant == "half-and-half")
|
|
96
|
+
return "tonal";
|
|
97
|
+
}
|
|
98
|
+
});
|
|
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);
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
function Te(i) {
|
|
106
|
+
me(i), L();
|
|
107
|
+
}
|
|
108
|
+
async function L() {
|
|
109
|
+
ie("update:modelValue", Ce.value), B.value = !1;
|
|
110
|
+
}
|
|
111
|
+
function Fe() {
|
|
112
|
+
B.value = !0;
|
|
113
|
+
}
|
|
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()));
|
|
116
|
+
}
|
|
117
|
+
return te(() => b.openToggle, () => {
|
|
118
|
+
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, {
|
|
127
|
+
fullscreen: "",
|
|
128
|
+
"retain-focus": !1,
|
|
129
|
+
transition: "dialog-bottom-transition",
|
|
130
|
+
modelValue: B.value,
|
|
131
|
+
"onUpdate:modelValue": l[18] || (l[18] = (n) => B.value = n)
|
|
132
|
+
}, {
|
|
133
|
+
default: a(() => [
|
|
134
|
+
o(S, null, {
|
|
135
|
+
default: a(() => [
|
|
136
|
+
o(le, {
|
|
137
|
+
class: "pa-0",
|
|
138
|
+
fluid: "",
|
|
139
|
+
style: I(Be.value)
|
|
140
|
+
}, {
|
|
141
|
+
default: a(() => [
|
|
142
|
+
o(T, { color: "primary" }, {
|
|
143
|
+
default: a(() => [
|
|
144
|
+
o(u, {
|
|
145
|
+
icon: "$close",
|
|
146
|
+
onClick: l[0] || (l[0] = (n) => B.value = !1)
|
|
147
|
+
}),
|
|
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, {
|
|
154
|
+
default: a(() => [
|
|
155
|
+
o(u, {
|
|
156
|
+
onClick: L,
|
|
157
|
+
text: "Done"
|
|
158
|
+
})
|
|
159
|
+
]),
|
|
160
|
+
_: 1
|
|
161
|
+
})
|
|
162
|
+
]),
|
|
163
|
+
_: 1
|
|
164
|
+
}),
|
|
165
|
+
o(S, {
|
|
166
|
+
class: "d-flex",
|
|
167
|
+
theme: e(t).theme
|
|
168
|
+
}, {
|
|
169
|
+
default: a(() => [
|
|
170
|
+
o(le, {
|
|
171
|
+
onClick: k(e(K), ["stop"]),
|
|
172
|
+
style: I([{ height: "calc(100vh - 64px)" }, `background-color: ${e(t).bgColor}`]),
|
|
173
|
+
class: "overflow-y-auto pa-0"
|
|
174
|
+
}, {
|
|
175
|
+
default: a(() => [
|
|
176
|
+
e(t).useLogoSrc && !e(J)(e(t).logoSrc) ? (s(), f(T, {
|
|
177
|
+
key: 0,
|
|
178
|
+
style: I(`background-color: ${e(t).bgColor}`)
|
|
179
|
+
}, {
|
|
180
|
+
default: a(() => [
|
|
181
|
+
y("div", ol, C(e(t).title), 1),
|
|
182
|
+
o(V),
|
|
183
|
+
y("div", tl, [
|
|
184
|
+
o(M, {
|
|
185
|
+
src: e(t).logoSrc
|
|
186
|
+
}, null, 8, ["src"])
|
|
187
|
+
])
|
|
188
|
+
]),
|
|
189
|
+
_: 1
|
|
190
|
+
}, 8, ["style"])) : v("", !0),
|
|
191
|
+
o(A, { "bg-color": "transparent" }, {
|
|
192
|
+
default: a(() => [
|
|
193
|
+
o(Re, {
|
|
194
|
+
group: "",
|
|
195
|
+
"hide-on-leave": ""
|
|
196
|
+
}, {
|
|
197
|
+
default: a(() => [
|
|
198
|
+
(s(!0), m(q, null, $(e(t).slides, (n, g) => j(i.$slots, `${n.name}-builder`, {
|
|
199
|
+
key: g,
|
|
200
|
+
slide: n
|
|
201
|
+
}, () => [
|
|
202
|
+
y("div", {
|
|
203
|
+
onClick: k((E) => e(xe)(n), ["stop"])
|
|
204
|
+
}, [
|
|
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],
|
|
209
|
+
ripple: !1,
|
|
210
|
+
variant: "outlined",
|
|
211
|
+
ref_for: !0
|
|
212
|
+
}, G), {
|
|
213
|
+
default: a(() => [
|
|
214
|
+
y("div", al, [
|
|
215
|
+
y("div", rl, [
|
|
216
|
+
o(ee, null, {
|
|
217
|
+
default: a(() => [
|
|
218
|
+
E ? (s(), m("div", sl, [
|
|
219
|
+
y("div", il, [
|
|
220
|
+
o(u, {
|
|
221
|
+
onClick: k((p) => e(Ve)(g), ["stop"]),
|
|
222
|
+
class: "ma-0 pa-0",
|
|
223
|
+
disabled: g == 0 || !i.isEditing,
|
|
224
|
+
icon: "$menu-up",
|
|
225
|
+
size: "x-small",
|
|
226
|
+
variant: "text"
|
|
227
|
+
}, null, 8, ["onClick", "disabled"]),
|
|
228
|
+
o(u, {
|
|
229
|
+
onClick: k((p) => e(be)(g), ["stop"]),
|
|
230
|
+
class: "ma-0 pa-0",
|
|
231
|
+
disabled: g >= e(t).slides.length - 1 || !i.isEditing,
|
|
232
|
+
icon: "$menu-down",
|
|
233
|
+
size: "x-small",
|
|
234
|
+
variant: "text"
|
|
235
|
+
}, null, 8, ["onClick", "disabled"])
|
|
236
|
+
]),
|
|
237
|
+
o(u, {
|
|
238
|
+
onClick: k((p) => e(t).slides.splice(g + 1, 0, e(ve)(n)), ["stop"]),
|
|
239
|
+
class: "ma-0 pa-0",
|
|
240
|
+
icon: "$content-duplicate",
|
|
241
|
+
size: "x-small",
|
|
242
|
+
title: "Duplicate",
|
|
243
|
+
variant: "text"
|
|
244
|
+
}, null, 8, ["onClick"])
|
|
245
|
+
])) : v("", !0)
|
|
246
|
+
]),
|
|
247
|
+
_: 2
|
|
248
|
+
}, 1024)
|
|
249
|
+
]),
|
|
250
|
+
o(Ee, null, {
|
|
251
|
+
default: a(() => [
|
|
252
|
+
U(C(n.name), 1)
|
|
253
|
+
]),
|
|
254
|
+
_: 2
|
|
255
|
+
}, 1024),
|
|
256
|
+
o(V),
|
|
257
|
+
o(Pe, null, {
|
|
258
|
+
default: a(() => [
|
|
259
|
+
(n == null ? void 0 : n.canDelete) !== !1 && E ? (s(), f(u, {
|
|
260
|
+
key: 0,
|
|
261
|
+
class: "ma-0 mr-2 pa-0 text-error",
|
|
262
|
+
onClick: k((p) => e(he)(n.name), ["stop"]),
|
|
263
|
+
icon: "$delete",
|
|
264
|
+
variant: "text"
|
|
265
|
+
}, null, 8, ["onClick"])) : v("", !0)
|
|
266
|
+
]),
|
|
267
|
+
_: 2
|
|
268
|
+
}, 1024)
|
|
269
|
+
]),
|
|
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,
|
|
279
|
+
isBuilding: "",
|
|
280
|
+
isSelected: e(d) === p,
|
|
281
|
+
variant: we.value
|
|
282
|
+
}, null, 8, ["onDuplicate", "onMovedown", "onMoveup", "onSelect", "field", "isSelected", "variant"]))
|
|
283
|
+
]))), 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({
|
|
289
|
+
class: "mx-auto",
|
|
290
|
+
color: e(t).ctlColor,
|
|
291
|
+
"prepend-icon": "$plus",
|
|
292
|
+
text: "Add Field",
|
|
293
|
+
ref_for: !0
|
|
294
|
+
}, p), null, 16, ["color"])
|
|
295
|
+
]),
|
|
296
|
+
default: a(() => [
|
|
297
|
+
o(S, { "max-width": "550" }, {
|
|
298
|
+
default: a(() => [
|
|
299
|
+
o(qe, { "no-gutters": "" }, {
|
|
300
|
+
default: a(() => [
|
|
301
|
+
(s(!0), m(q, null, $(e(Qe), (p, r) => (s(), f(ze, {
|
|
302
|
+
key: r,
|
|
303
|
+
cols: "6"
|
|
304
|
+
}, {
|
|
305
|
+
default: a(() => [
|
|
306
|
+
o(S, {
|
|
307
|
+
class: "ma-1",
|
|
308
|
+
onClick: k((N) => e(ue)(p, n), ["stop"]),
|
|
309
|
+
color: e(t).ctlColor,
|
|
310
|
+
"prepend-icon": p.icon,
|
|
311
|
+
subtitle: p.description,
|
|
312
|
+
title: p.label
|
|
313
|
+
}, null, 8, ["onClick", "color", "prepend-icon", "subtitle", "title"])
|
|
314
|
+
]),
|
|
315
|
+
_: 2
|
|
316
|
+
}, 1024))), 128))
|
|
317
|
+
]),
|
|
318
|
+
_: 2
|
|
319
|
+
}, 1024)
|
|
320
|
+
]),
|
|
321
|
+
_: 2
|
|
322
|
+
}, 1024)
|
|
323
|
+
]),
|
|
324
|
+
_: 2
|
|
325
|
+
}, 1024)
|
|
326
|
+
])) : v("", !0)
|
|
327
|
+
]),
|
|
328
|
+
_: 2
|
|
329
|
+
}, 1040, ["class"])
|
|
330
|
+
]),
|
|
331
|
+
_: 2
|
|
332
|
+
}, 1024)
|
|
333
|
+
], 8, nl)
|
|
334
|
+
])), 128))
|
|
335
|
+
]),
|
|
336
|
+
_: 3
|
|
337
|
+
})
|
|
338
|
+
]),
|
|
339
|
+
_: 3
|
|
340
|
+
}),
|
|
341
|
+
y("div", cl, [
|
|
342
|
+
o(u, {
|
|
343
|
+
onClick: k(e(ce), ["stop"]),
|
|
344
|
+
color: e(t).ctlColor,
|
|
345
|
+
"prepend-icon": "$card-plus-outline",
|
|
346
|
+
text: "Add Slide"
|
|
347
|
+
}, null, 8, ["onClick", "color"])
|
|
348
|
+
])
|
|
349
|
+
]),
|
|
350
|
+
_: 3
|
|
351
|
+
}, 8, ["onClick", "style"]),
|
|
352
|
+
o(S, {
|
|
353
|
+
class: "overflow-y-auto",
|
|
354
|
+
width: "400",
|
|
355
|
+
style: { height: "calc(100vh - 64px)" },
|
|
356
|
+
tile: ""
|
|
357
|
+
}, {
|
|
358
|
+
default: a(() => {
|
|
359
|
+
var n, g, E, G, p;
|
|
360
|
+
return [
|
|
361
|
+
o(T, null, {
|
|
362
|
+
default: a(() => [
|
|
363
|
+
e(_) != null || e(d) != null ? (s(), f(u, {
|
|
364
|
+
key: 0,
|
|
365
|
+
icon: "$close",
|
|
366
|
+
onClick: k(e(K), ["stop"])
|
|
367
|
+
}, null, 8, ["onClick"])) : (s(), f(De, {
|
|
368
|
+
key: 1,
|
|
369
|
+
class: "mx-3",
|
|
370
|
+
icon: "$cog"
|
|
371
|
+
})),
|
|
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"))
|
|
375
|
+
]),
|
|
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"))
|
|
378
|
+
])
|
|
379
|
+
]),
|
|
380
|
+
o(V),
|
|
381
|
+
o(w, null, {
|
|
382
|
+
default: a(() => {
|
|
383
|
+
var r;
|
|
384
|
+
return [
|
|
385
|
+
e(d) != null || e(_) != null ? (s(), f(u, {
|
|
386
|
+
key: 0,
|
|
387
|
+
disabled: ((r = e(_)) == null ? void 0 : r.canDelete) == !1,
|
|
388
|
+
class: "text-error",
|
|
389
|
+
onClick: k(e(Se), ["stop"]),
|
|
390
|
+
icon: "$delete"
|
|
391
|
+
}, null, 8, ["disabled", "onClick"])) : v("", !0)
|
|
392
|
+
];
|
|
393
|
+
}),
|
|
394
|
+
_: 1
|
|
395
|
+
})
|
|
396
|
+
]),
|
|
397
|
+
_: 1
|
|
398
|
+
}),
|
|
399
|
+
W.value.length > 0 ? (s(), f(S, {
|
|
400
|
+
key: 0,
|
|
401
|
+
subtitle: "This form requires fields with these properties:"
|
|
402
|
+
}, {
|
|
403
|
+
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)
|
|
407
|
+
]))), 256))
|
|
408
|
+
]),
|
|
409
|
+
_: 1
|
|
410
|
+
})) : v("", !0),
|
|
411
|
+
e(d) != null ? (s(), m("div", Vl, [
|
|
412
|
+
e(_e) ? (s(), f(h, {
|
|
413
|
+
key: 0,
|
|
414
|
+
"hide-details": "",
|
|
415
|
+
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, {
|
|
420
|
+
"auto-grow": "",
|
|
421
|
+
"hide-details": "",
|
|
422
|
+
label: "Description",
|
|
423
|
+
lines: "three",
|
|
424
|
+
modelValue: e(d).description,
|
|
425
|
+
"onUpdate:modelValue": l[2] || (l[2] = (r) => e(d).description = r)
|
|
426
|
+
}, null, 8, ["modelValue"]),
|
|
427
|
+
e(ge) ? (s(), f(h, {
|
|
428
|
+
key: 1,
|
|
429
|
+
"hide-details": "",
|
|
430
|
+
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, {
|
|
435
|
+
key: 2,
|
|
436
|
+
readonly: ((n = e(_)) == null ? void 0 : n.canEdit) == !1,
|
|
437
|
+
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, {
|
|
443
|
+
key: 3,
|
|
444
|
+
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, {
|
|
449
|
+
key: 4,
|
|
450
|
+
color: e(d).isRequired ? "primary" : void 0,
|
|
451
|
+
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,
|
|
459
|
+
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)
|
|
464
|
+
}, null, 8, ["color", "label", "readonly", "modelValue"]),
|
|
465
|
+
e(d).type == "button" ? (s(), f(z, {
|
|
466
|
+
key: 5,
|
|
467
|
+
color: e(d).isSubmitButton ? "primary" : void 0,
|
|
468
|
+
inset: "",
|
|
469
|
+
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,
|
|
477
|
+
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)
|
|
481
|
+
}, null, 8, ["canEdit", "readonly", "modelValue"])
|
|
482
|
+
])) : (s(), m("div", hl, [
|
|
483
|
+
o(h, {
|
|
484
|
+
disabled: "",
|
|
485
|
+
"hide-details": "",
|
|
486
|
+
label: "Version",
|
|
487
|
+
modelValue: e(t).version,
|
|
488
|
+
"onUpdate:modelValue": l[10] || (l[10] = (r) => e(t).version = r)
|
|
489
|
+
}, null, 8, ["modelValue"]),
|
|
490
|
+
o(h, {
|
|
491
|
+
"hide-details": "",
|
|
492
|
+
label: "Form Title",
|
|
493
|
+
modelValue: e(t).title,
|
|
494
|
+
"onUpdate:modelValue": l[11] || (l[11] = (r) => e(t).title = r)
|
|
495
|
+
}, null, 8, ["modelValue"]),
|
|
496
|
+
o(oe, {
|
|
497
|
+
"hide-details": "",
|
|
498
|
+
label: "Form Variant",
|
|
499
|
+
items: ["basic", "half-and-half", "single-page"],
|
|
500
|
+
modelValue: e(t).variant,
|
|
501
|
+
"onUpdate:modelValue": l[12] || (l[12] = (r) => e(t).variant = r)
|
|
502
|
+
}, null, 8, ["modelValue"]),
|
|
503
|
+
o(oe, {
|
|
504
|
+
"hide-details": "",
|
|
505
|
+
label: "Theme",
|
|
506
|
+
items: ["light", "dark"],
|
|
507
|
+
modelValue: e(t).theme,
|
|
508
|
+
"onUpdate:modelValue": l[13] || (l[13] = (r) => e(t).theme = r)
|
|
509
|
+
}, null, 8, ["modelValue"]),
|
|
510
|
+
o(z, {
|
|
511
|
+
color: e(t).useLogoSrc ? "primary" : void 0,
|
|
512
|
+
"hide-details": "",
|
|
513
|
+
inset: "",
|
|
514
|
+
label: "Show My Logo",
|
|
515
|
+
modelValue: e(t).useLogoSrc,
|
|
516
|
+
"onUpdate:modelValue": l[14] || (l[14] = (r) => e(t).useLogoSrc = r)
|
|
517
|
+
}, null, 8, ["color", "modelValue"]),
|
|
518
|
+
o(z, {
|
|
519
|
+
color: e(t).useBgSrc ? "primary" : void 0,
|
|
520
|
+
"hide-details": "",
|
|
521
|
+
inset: "",
|
|
522
|
+
label: "Use Background Image",
|
|
523
|
+
modelValue: e(t).useBgSrc,
|
|
524
|
+
"onUpdate:modelValue": l[15] || (l[15] = (r) => e(t).useBgSrc = r)
|
|
525
|
+
}, null, 8, ["color", "modelValue"]),
|
|
526
|
+
e(t).useBgSrc && i.imgProps != null ? (s(), f(F, {
|
|
527
|
+
key: 0,
|
|
528
|
+
class: "ml-2"
|
|
529
|
+
}, {
|
|
530
|
+
default: a(() => l[26] || (l[26] = [
|
|
531
|
+
U("Background Image")
|
|
532
|
+
])),
|
|
533
|
+
_: 1
|
|
534
|
+
})) : v("", !0),
|
|
535
|
+
o(ee, { "hide-on-leave": "" }, {
|
|
536
|
+
default: a(() => [
|
|
537
|
+
e(t).useBgSrc && i.imgProps != null ? (s(), m("div", Cl, [
|
|
538
|
+
o(Xe, x(i.imgProps, {
|
|
539
|
+
src: e(t).bgSrc
|
|
540
|
+
}), null, 16, ["src"])
|
|
541
|
+
])) : v("", !0)
|
|
542
|
+
]),
|
|
543
|
+
_: 1
|
|
544
|
+
}),
|
|
545
|
+
o(F, { class: "ml-2" }, {
|
|
546
|
+
default: a(() => l[27] || (l[27] = [
|
|
547
|
+
U("Background Color")
|
|
548
|
+
])),
|
|
549
|
+
_: 1
|
|
550
|
+
}),
|
|
551
|
+
o(R, {
|
|
552
|
+
width: "100%",
|
|
553
|
+
modelValue: e(t).bgColor,
|
|
554
|
+
"onUpdate:modelValue": l[16] || (l[16] = (r) => e(t).bgColor = r)
|
|
555
|
+
}, null, 8, ["modelValue"]),
|
|
556
|
+
o(F, { class: "ml-2" }, {
|
|
557
|
+
default: a(() => l[28] || (l[28] = [
|
|
558
|
+
U("Button Color")
|
|
559
|
+
])),
|
|
560
|
+
_: 1
|
|
561
|
+
}),
|
|
562
|
+
o(R, {
|
|
563
|
+
width: "100%",
|
|
564
|
+
modelValue: e(t).ctlColor,
|
|
565
|
+
"onUpdate:modelValue": l[17] || (l[17] = (r) => e(t).ctlColor = r)
|
|
566
|
+
}, null, 8, ["modelValue"])
|
|
567
|
+
]))
|
|
568
|
+
];
|
|
569
|
+
}),
|
|
570
|
+
_: 1
|
|
571
|
+
})
|
|
572
|
+
]),
|
|
573
|
+
_: 3
|
|
574
|
+
}, 8, ["theme"])
|
|
575
|
+
]),
|
|
576
|
+
_: 3
|
|
577
|
+
}, 8, ["style"])
|
|
578
|
+
]),
|
|
579
|
+
_: 3
|
|
580
|
+
})
|
|
581
|
+
]),
|
|
582
|
+
_: 3
|
|
583
|
+
}, 8, ["modelValue"]),
|
|
584
|
+
o(je, {
|
|
585
|
+
actualUsedHeight: i.actualUsedHeight,
|
|
586
|
+
canSubmit: !1,
|
|
587
|
+
data: de.value,
|
|
588
|
+
isEditing: "",
|
|
589
|
+
onGetSchema: i.onGetSchema,
|
|
590
|
+
overrideSchema: i.overrideSchema,
|
|
591
|
+
schema: e(t),
|
|
592
|
+
useSchemaStyles: i.useSchemaStyles
|
|
593
|
+
}, He({
|
|
594
|
+
"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({
|
|
599
|
+
color: e(t).ctlColor,
|
|
600
|
+
size: "x-small",
|
|
601
|
+
text: "Use Template"
|
|
602
|
+
}, n), null, 16, ["color"])
|
|
603
|
+
]),
|
|
604
|
+
default: a(() => [
|
|
605
|
+
o(A, { "min-width": "300" }, {
|
|
606
|
+
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
|
|
611
|
+
}, null, 8, ["onClick", "subtitle", "title"]))), 256))
|
|
612
|
+
]),
|
|
613
|
+
_: 1
|
|
614
|
+
})
|
|
615
|
+
]),
|
|
616
|
+
_: 1
|
|
617
|
+
})) : v("", !0),
|
|
618
|
+
o(P, null, {
|
|
619
|
+
activator: a(({ props: n }) => [
|
|
620
|
+
o(u, x({
|
|
621
|
+
color: e(t).ctlColor,
|
|
622
|
+
icon: "$view-carousel",
|
|
623
|
+
size: "x-small",
|
|
624
|
+
title: "Form Variant"
|
|
625
|
+
}, n), null, 16, ["color"])
|
|
626
|
+
]),
|
|
627
|
+
default: a(() => [
|
|
628
|
+
o(A, null, {
|
|
629
|
+
default: a(() => [
|
|
630
|
+
o(F, null, {
|
|
631
|
+
default: a(() => l[29] || (l[29] = [
|
|
632
|
+
U("Form Variant")
|
|
633
|
+
])),
|
|
634
|
+
_: 1
|
|
635
|
+
}),
|
|
636
|
+
o(D, {
|
|
637
|
+
onClick: l[19] || (l[19] = k((n) => e(t).variant = "basic", ["stop"])),
|
|
638
|
+
active: e(t).variant == "basic",
|
|
639
|
+
title: "Basic"
|
|
640
|
+
}, null, 8, ["active"]),
|
|
641
|
+
o(D, {
|
|
642
|
+
onClick: l[20] || (l[20] = k((n) => e(t).variant = "single-page", ["stop"])),
|
|
643
|
+
active: e(t).variant == "single-page",
|
|
644
|
+
title: "Single Page"
|
|
645
|
+
}, null, 8, ["active"]),
|
|
646
|
+
o(D, {
|
|
647
|
+
onClick: l[21] || (l[21] = k((n) => e(t).variant = "half-and-half", ["stop"])),
|
|
648
|
+
active: e(t).variant == "half-and-half",
|
|
649
|
+
title: "Half And Half"
|
|
650
|
+
}, null, 8, ["active"])
|
|
651
|
+
]),
|
|
652
|
+
_: 1
|
|
653
|
+
})
|
|
654
|
+
]),
|
|
655
|
+
_: 1
|
|
656
|
+
}),
|
|
657
|
+
o(P, { "close-on-content-click": !1 }, {
|
|
658
|
+
activator: a(({ props: n }) => [
|
|
659
|
+
o(u, x({
|
|
660
|
+
class: "ml-1",
|
|
661
|
+
color: e(t).ctlColor,
|
|
662
|
+
icon: "$format-color-fill",
|
|
663
|
+
size: "x-small",
|
|
664
|
+
title: "Background Color"
|
|
665
|
+
}, n), null, 16, ["color"])
|
|
666
|
+
]),
|
|
667
|
+
default: a(() => [
|
|
668
|
+
o(S, null, {
|
|
669
|
+
default: a(() => [
|
|
670
|
+
o(F, { class: "ml-2" }, {
|
|
671
|
+
default: a(() => l[30] || (l[30] = [
|
|
672
|
+
U("Background Color")
|
|
673
|
+
])),
|
|
674
|
+
_: 1
|
|
675
|
+
}),
|
|
676
|
+
o(R, {
|
|
677
|
+
"onUpdate:modelValue": [
|
|
678
|
+
L,
|
|
679
|
+
l[22] || (l[22] = (n) => e(t).bgColor = n)
|
|
680
|
+
],
|
|
681
|
+
width: "250",
|
|
682
|
+
modelValue: e(t).bgColor
|
|
683
|
+
}, null, 8, ["modelValue"])
|
|
684
|
+
]),
|
|
685
|
+
_: 1
|
|
686
|
+
})
|
|
687
|
+
]),
|
|
688
|
+
_: 1
|
|
689
|
+
}),
|
|
690
|
+
o(P, { "close-on-content-click": !1 }, {
|
|
691
|
+
activator: a(({ props: n }) => [
|
|
692
|
+
o(u, x({
|
|
693
|
+
class: "ml-1",
|
|
694
|
+
color: e(t).ctlColor,
|
|
695
|
+
icon: "$palette",
|
|
696
|
+
size: "x-small",
|
|
697
|
+
title: "Button Color"
|
|
698
|
+
}, n), null, 16, ["color"])
|
|
699
|
+
]),
|
|
700
|
+
default: a(() => [
|
|
701
|
+
o(S, null, {
|
|
702
|
+
default: a(() => [
|
|
703
|
+
o(F, { class: "ml-2" }, {
|
|
704
|
+
default: a(() => l[31] || (l[31] = [
|
|
705
|
+
U("Button Color")
|
|
706
|
+
])),
|
|
707
|
+
_: 1
|
|
708
|
+
}),
|
|
709
|
+
o(R, {
|
|
710
|
+
"onUpdate:modelValue": [
|
|
711
|
+
L,
|
|
712
|
+
l[23] || (l[23] = (n) => e(t).ctlColor = n)
|
|
713
|
+
],
|
|
714
|
+
width: "250",
|
|
715
|
+
modelValue: e(t).ctlColor
|
|
716
|
+
}, null, 8, ["modelValue"])
|
|
717
|
+
]),
|
|
718
|
+
_: 1
|
|
719
|
+
})
|
|
720
|
+
]),
|
|
721
|
+
_: 1
|
|
722
|
+
}),
|
|
723
|
+
o(u, {
|
|
724
|
+
onClick: l[24] || (l[24] = (n) => e(t).theme = e(t).theme == "light" ? "dark" : "light"),
|
|
725
|
+
class: "ml-1",
|
|
726
|
+
color: e(t).ctlColor,
|
|
727
|
+
icon: "$theme-light-dark",
|
|
728
|
+
size: "small"
|
|
729
|
+
}, null, 8, ["color"]),
|
|
730
|
+
o(u, {
|
|
731
|
+
onClick: Fe,
|
|
732
|
+
class: "ml-1",
|
|
733
|
+
color: e(t).ctlColor,
|
|
734
|
+
"prepend-icon": "$pencil",
|
|
735
|
+
size: "small",
|
|
736
|
+
text: "Edit",
|
|
737
|
+
title: "Edit Template"
|
|
738
|
+
}, null, 8, ["color"])
|
|
739
|
+
])
|
|
740
|
+
]),
|
|
741
|
+
_: 2
|
|
742
|
+
}, [
|
|
743
|
+
$(e(t).slides.flatMap((n) => n.fields), (n) => ({
|
|
744
|
+
name: `${n.prop}`,
|
|
745
|
+
fn: a((g) => [
|
|
746
|
+
j(i.$slots, n.prop, ne(ae(g)))
|
|
747
|
+
])
|
|
748
|
+
})),
|
|
749
|
+
$(e(t).slides, (n) => ({
|
|
750
|
+
name: `${n.name}`,
|
|
751
|
+
fn: a((g) => [
|
|
752
|
+
j(i.$slots, n.name, ne(ae(g)))
|
|
753
|
+
])
|
|
754
|
+
}))
|
|
755
|
+
]), 1032, ["actualUsedHeight", "data", "onGetSchema", "overrideSchema", "schema", "useSchemaStyles"])
|
|
756
|
+
])) : v("", !0);
|
|
757
|
+
};
|
|
758
|
+
}
|
|
759
|
+
});
|
|
760
|
+
export {
|
|
761
|
+
El as default
|
|
762
|
+
};
|