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