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,66 @@
|
|
|
1
|
+
import { defineComponent as W, computed as k, watch as _, openBlock as i, createElementBlock as u, toDisplayString as o, createCommentVNode as v, createElementVNode as p } from "vue";
|
|
2
|
+
import { useCron as C, hourOptions as D, weekdayOptions as c, weekOptions as P } from "../composables/cron.mjs";
|
|
3
|
+
const V = {
|
|
4
|
+
key: 0,
|
|
5
|
+
class: "text-subtitle-1 text-grey"
|
|
6
|
+
}, L = { key: 0 }, S = { key: 1 }, B = { key: 0 }, I = /* @__PURE__ */ W({
|
|
7
|
+
__name: "BT-Cron-Span",
|
|
8
|
+
props: {
|
|
9
|
+
defaultExpression: {},
|
|
10
|
+
firstPrefix: {},
|
|
11
|
+
secondPrefix: {},
|
|
12
|
+
label: {},
|
|
13
|
+
modelValue: {},
|
|
14
|
+
useLeadTimeLeft: { type: Boolean },
|
|
15
|
+
leadFormat: {}
|
|
16
|
+
},
|
|
17
|
+
setup(b) {
|
|
18
|
+
const y = b, l = C({
|
|
19
|
+
...y,
|
|
20
|
+
value: y.modelValue
|
|
21
|
+
}), w = k(() => {
|
|
22
|
+
var n, f, d;
|
|
23
|
+
let e = "", s = D.find((r) => r.value == l.hour.value);
|
|
24
|
+
return s != null && (e = `${e}${s.text} `), l.regularity.value == "Daily" ? e = `${e} every day` : l.regularity.value == "Weekly" ? (e = `${e} every `, (n = l.weekdays.value) == null || n.forEach((r) => {
|
|
25
|
+
var t = c.find((a) => a.value == r);
|
|
26
|
+
t != null && (e = `${e} ${t.text},`);
|
|
27
|
+
}), e.endsWith(",") && (e = e.substring(0, e.length - 1))) : l.regularity.value == "Monthly" ? (e = `${e} every `, (f = l.weeks.value) == null || f.forEach((r) => {
|
|
28
|
+
console.log(r);
|
|
29
|
+
var t = P.find((a) => a.value == r);
|
|
30
|
+
t != null && (e = `${e} ${t.text},`);
|
|
31
|
+
}), e.endsWith(",") && (e = e.substring(0, e.length - 1)), (d = l.weekdays.value) == null || d.forEach((r) => {
|
|
32
|
+
var t = c.find((a) => a.value == r);
|
|
33
|
+
t != null && (e = `${e} ${t.text},`);
|
|
34
|
+
}), e.endsWith(",") && (e = e.substring(0, e.length - 1))) : e = "Custom - Unknown", e;
|
|
35
|
+
}), x = k(() => {
|
|
36
|
+
var $;
|
|
37
|
+
let e = "";
|
|
38
|
+
var s = l.hour.value ?? "0.0", n = s.split(".");
|
|
39
|
+
let f = Number.parseInt(n[0]), d = Number.parseInt(n[1]), t = f * 60 + d + l.leadTimeLeft.value, a = Math.floor(t / 1440);
|
|
40
|
+
t = t - a * 1440;
|
|
41
|
+
let h = Math.floor(t / 60);
|
|
42
|
+
return t = t - h * 60, l.regularity.value == "Daily" ? a == 1 ? e = `${e} the next day` : a > 1 ? e = `${e} ${a} days later` : h > 0 ? e = `${e} ${h} hours later` : t > 0 ? e = `${e} ${t} minutes later` : e = `${e} immediately` : l.regularity.value == "Weekly" || l.regularity.value == "Monthly" ? a == 0 ? e = " the same day" : (e = ` ${a} day${a == 1 ? "" : "s"} later (`, ($ = l.weekdays.value) == null || $.forEach((E) => {
|
|
43
|
+
for (var m = Number.parseInt(E) + a; m > 6; )
|
|
44
|
+
m -= 7;
|
|
45
|
+
var M = m.toString(), g = c.find((N) => N.value == M);
|
|
46
|
+
g != null && (e = `${e}${g.text}, `);
|
|
47
|
+
}), e.endsWith(", ") && (e = e.substring(0, e.length - 2)), e = e + ")") : e = "Custom - Unknown", e;
|
|
48
|
+
});
|
|
49
|
+
return _(() => y.modelValue, (e) => {
|
|
50
|
+
l.unpack(e);
|
|
51
|
+
}), (e, s) => (i(), u("div", null, [
|
|
52
|
+
e.label != null ? (i(), u("div", V, o(e.label), 1)) : v("", !0),
|
|
53
|
+
p("div", null, [
|
|
54
|
+
e.firstPrefix != null ? (i(), u("span", L, o(e.firstPrefix), 1)) : v("", !0),
|
|
55
|
+
p("span", null, o(w.value), 1)
|
|
56
|
+
]),
|
|
57
|
+
e.useLeadTimeLeft ? (i(), u("div", S, [
|
|
58
|
+
e.secondPrefix != null ? (i(), u("span", B, o(e.secondPrefix), 1)) : v("", !0),
|
|
59
|
+
p("span", null, o(x.value), 1)
|
|
60
|
+
])) : v("", !0)
|
|
61
|
+
]));
|
|
62
|
+
}
|
|
63
|
+
});
|
|
64
|
+
export {
|
|
65
|
+
I as default
|
|
66
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
interface CronProps {
|
|
2
|
+
adjustments?: string;
|
|
3
|
+
adjustmentFutureLimit?: number;
|
|
4
|
+
adjustmentLeftLabel?: string;
|
|
5
|
+
adjustmentRightLabel?: string;
|
|
6
|
+
chipProps?: any;
|
|
7
|
+
defaultExpression?: string;
|
|
8
|
+
firstPrefix?: string;
|
|
9
|
+
secondPrefix?: string;
|
|
10
|
+
hideCron?: boolean;
|
|
11
|
+
inline?: boolean;
|
|
12
|
+
label?: string;
|
|
13
|
+
modelValue?: any;
|
|
14
|
+
replacementLabel?: string;
|
|
15
|
+
/**defaults to minutes */
|
|
16
|
+
useAdjustments?: boolean;
|
|
17
|
+
useLeadTimeInHours?: boolean;
|
|
18
|
+
useLeadTimeLeft?: boolean;
|
|
19
|
+
useLeadTimeRight?: boolean;
|
|
20
|
+
}
|
|
21
|
+
declare const _default: import('vue').DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<CronProps>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
22
|
+
"update:modelValue": (...args: any[]) => void;
|
|
23
|
+
"update:adjustments": (...args: any[]) => void;
|
|
24
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<CronProps>>> & Readonly<{
|
|
25
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
26
|
+
"onUpdate:adjustments"?: ((...args: any[]) => any) | undefined;
|
|
27
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
28
|
+
export default _default;
|
|
29
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
30
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
31
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
32
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
33
|
+
} : {
|
|
34
|
+
type: import('vue').PropType<T[K]>;
|
|
35
|
+
required: true;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
@@ -0,0 +1,538 @@
|
|
|
1
|
+
import { defineComponent as ne, ref as R, computed as ae, watch as oe, resolveComponent as r, openBlock as o, createBlock as m, withCtx as t, createVNode as e, createElementBlock as c, createTextVNode as y, toDisplayString as v, unref as n, createCommentVNode as d, createElementVNode as _, mergeProps as z, Fragment as N, renderList as ue, normalizeClass as se } from "vue";
|
|
2
|
+
import { useCron as ie, regularityOptions as F, hourOptions as de, weekOptions as re, weekdayOptions as me } from "../composables/cron.mjs";
|
|
3
|
+
import { useCronAdjustments as pe } from "../composables/cron-adjustments.mjs";
|
|
4
|
+
import D from "./BT-Select-Inline.vue.mjs";
|
|
5
|
+
const ve = {
|
|
6
|
+
key: 0,
|
|
7
|
+
class: "d-flex align-center"
|
|
8
|
+
}, fe = { key: 0 }, ce = { class: "d-flex align-center" }, _e = {
|
|
9
|
+
key: 0,
|
|
10
|
+
class: "text-caption text-grey"
|
|
11
|
+
}, ge = { class: "text-caption text-grey" }, ye = { key: 0 }, ke = { key: 1 }, xe = { key: 0 }, Ve = { key: "0" }, he = { class: "text-caption text-grey" }, Ce = {
|
|
12
|
+
class: "text-error",
|
|
13
|
+
key: "1"
|
|
14
|
+
}, Le = { key: "2" }, De = { class: "text-caption text-grey" }, Te = { key: "3" }, Ae = { class: "text-caption text-grey" }, be = { class: "d-flex flex-column" }, we = { class: "text-caption" }, Be = /* @__PURE__ */ ne({
|
|
15
|
+
__name: "BT-Cron",
|
|
16
|
+
props: {
|
|
17
|
+
adjustments: {},
|
|
18
|
+
adjustmentFutureLimit: {},
|
|
19
|
+
adjustmentLeftLabel: {},
|
|
20
|
+
adjustmentRightLabel: {},
|
|
21
|
+
chipProps: {},
|
|
22
|
+
defaultExpression: {},
|
|
23
|
+
firstPrefix: {},
|
|
24
|
+
secondPrefix: {},
|
|
25
|
+
hideCron: { type: Boolean },
|
|
26
|
+
inline: { type: Boolean },
|
|
27
|
+
label: {},
|
|
28
|
+
modelValue: {},
|
|
29
|
+
replacementLabel: {},
|
|
30
|
+
useAdjustments: { type: Boolean },
|
|
31
|
+
useLeadTimeInHours: { type: Boolean },
|
|
32
|
+
useLeadTimeLeft: { type: Boolean },
|
|
33
|
+
useLeadTimeRight: { type: Boolean }
|
|
34
|
+
},
|
|
35
|
+
emits: ["update:modelValue", "update:adjustments"],
|
|
36
|
+
setup(M, { emit: O }) {
|
|
37
|
+
const V = M, U = O, A = R(!1), $ = ae(() => `${g.filteredAdjustments.value.length} Adjustment${g.filteredAdjustments.value.length == 1 ? "" : "s"}`), f = R(void 0), T = R(!1), s = ie({
|
|
38
|
+
...V,
|
|
39
|
+
value: V.modelValue
|
|
40
|
+
}), g = pe({
|
|
41
|
+
adjustmentString: V.adjustments,
|
|
42
|
+
cronExpression: s.cronExpression.value,
|
|
43
|
+
futureLimit: V.adjustmentFutureLimit ?? 2
|
|
44
|
+
});
|
|
45
|
+
function I() {
|
|
46
|
+
A.value = !1, U("update:adjustments", g.stringify());
|
|
47
|
+
}
|
|
48
|
+
function W() {
|
|
49
|
+
f.value && g.applyAdjustment(f.value), T.value = !1;
|
|
50
|
+
}
|
|
51
|
+
function H(a) {
|
|
52
|
+
f.value = {
|
|
53
|
+
dateTrigger: a.dateTrigger,
|
|
54
|
+
replacingDate: a.replacingDate,
|
|
55
|
+
leadTimeLeft: 0,
|
|
56
|
+
leadTimeRight: 0,
|
|
57
|
+
leadLeftDate: a.leadLeftDate,
|
|
58
|
+
leadRightDate: a.leadRightDate
|
|
59
|
+
}, T.value = !0;
|
|
60
|
+
}
|
|
61
|
+
function q(a) {
|
|
62
|
+
a || (s.applyRawExpression(), x());
|
|
63
|
+
}
|
|
64
|
+
function x() {
|
|
65
|
+
U("update:modelValue", s.pack());
|
|
66
|
+
}
|
|
67
|
+
return oe(() => V.modelValue, (a) => {
|
|
68
|
+
s.unpack(a);
|
|
69
|
+
}), (a, l) => {
|
|
70
|
+
const h = r("v-list-subheader"), p = r("v-col"), G = r("bt-field-string"), J = r("bt-number"), C = r("v-slide-y-transition"), b = r("v-row"), k = r("v-btn"), w = r("v-spacer"), K = r("v-card-title"), Q = r("v-slide-y-reverse-transition"), L = r("bt-span"), X = r("v-slide-x-transition"), Y = r("v-list-item"), Z = r("v-divider"), ee = r("v-list"), B = r("v-card-actions"), E = r("v-card"), P = r("v-dialog"), j = r("bt-date"), te = r("v-container"), le = r("v-card-text");
|
|
71
|
+
return o(), m(b, { class: "align-center ml-2" }, {
|
|
72
|
+
default: t(() => [
|
|
73
|
+
e(C, {
|
|
74
|
+
"hide-on-leave": "",
|
|
75
|
+
group: ""
|
|
76
|
+
}, {
|
|
77
|
+
default: t(() => [
|
|
78
|
+
a.label != null ? (o(), m(p, {
|
|
79
|
+
cols: "12",
|
|
80
|
+
key: "1.1"
|
|
81
|
+
}, {
|
|
82
|
+
default: t(() => [
|
|
83
|
+
a.inline ? (o(), c("div", ve, [
|
|
84
|
+
e(h, null, {
|
|
85
|
+
default: t(() => [
|
|
86
|
+
y(v(a.label), 1)
|
|
87
|
+
]),
|
|
88
|
+
_: 1
|
|
89
|
+
}),
|
|
90
|
+
e(D, {
|
|
91
|
+
onChange: x,
|
|
92
|
+
items: n(F),
|
|
93
|
+
modelValue: n(s).regularity.value,
|
|
94
|
+
"onUpdate:modelValue": l[0] || (l[0] = (i) => n(s).regularity.value = i)
|
|
95
|
+
}, null, 8, ["items", "modelValue"])
|
|
96
|
+
])) : (o(), m(h, { key: 1 }, {
|
|
97
|
+
default: t(() => [
|
|
98
|
+
y(v(a.label), 1)
|
|
99
|
+
]),
|
|
100
|
+
_: 1
|
|
101
|
+
}))
|
|
102
|
+
]),
|
|
103
|
+
_: 1
|
|
104
|
+
})) : d("", !0),
|
|
105
|
+
a.firstPrefix != null ? (o(), m(p, {
|
|
106
|
+
key: "1.5",
|
|
107
|
+
cols: "auto"
|
|
108
|
+
}, {
|
|
109
|
+
default: t(() => [
|
|
110
|
+
y(v(a.firstPrefix), 1)
|
|
111
|
+
]),
|
|
112
|
+
_: 1
|
|
113
|
+
})) : d("", !0),
|
|
114
|
+
a.inline ? d("", !0) : (o(), m(p, {
|
|
115
|
+
class: "flex-grow-0",
|
|
116
|
+
key: "2"
|
|
117
|
+
}, {
|
|
118
|
+
default: t(() => [
|
|
119
|
+
e(D, {
|
|
120
|
+
onChange: x,
|
|
121
|
+
items: n(F),
|
|
122
|
+
modelValue: n(s).regularity.value,
|
|
123
|
+
"onUpdate:modelValue": l[1] || (l[1] = (i) => n(s).regularity.value = i)
|
|
124
|
+
}, null, 8, ["items", "modelValue"])
|
|
125
|
+
]),
|
|
126
|
+
_: 1
|
|
127
|
+
})),
|
|
128
|
+
n(s).regularity.value == "Custom" ? (o(), m(p, { key: "3" }, {
|
|
129
|
+
default: t(() => [
|
|
130
|
+
e(G, {
|
|
131
|
+
isEditing: "",
|
|
132
|
+
"onUpdate:focused": q,
|
|
133
|
+
modelValue: n(s).rawExpression.value,
|
|
134
|
+
"onUpdate:modelValue": l[2] || (l[2] = (i) => n(s).rawExpression.value = i)
|
|
135
|
+
}, null, 8, ["modelValue"])
|
|
136
|
+
]),
|
|
137
|
+
_: 1
|
|
138
|
+
})) : d("", !0),
|
|
139
|
+
a.inline ? d("", !0) : (o(), m(p, {
|
|
140
|
+
class: "flex-grow-0",
|
|
141
|
+
key: "4"
|
|
142
|
+
}, {
|
|
143
|
+
default: t(() => l[13] || (l[13] = [
|
|
144
|
+
y("at")
|
|
145
|
+
])),
|
|
146
|
+
_: 1
|
|
147
|
+
})),
|
|
148
|
+
n(s).regularity.value != "Custom" ? (o(), m(p, {
|
|
149
|
+
class: "flex-grow-0",
|
|
150
|
+
key: "5"
|
|
151
|
+
}, {
|
|
152
|
+
default: t(() => [
|
|
153
|
+
e(D, {
|
|
154
|
+
onChange: x,
|
|
155
|
+
items: n(de),
|
|
156
|
+
modelValue: n(s).hour.value,
|
|
157
|
+
"onUpdate:modelValue": l[3] || (l[3] = (i) => n(s).hour.value = i)
|
|
158
|
+
}, null, 8, ["items", "modelValue"])
|
|
159
|
+
]),
|
|
160
|
+
_: 1
|
|
161
|
+
})) : d("", !0),
|
|
162
|
+
n(s).regularity.value == "Monthly" || n(s).regularity.value == "Weekly" ? (o(), m(p, {
|
|
163
|
+
class: "flex-grow-0",
|
|
164
|
+
key: "6"
|
|
165
|
+
}, {
|
|
166
|
+
default: t(() => l[14] || (l[14] = [
|
|
167
|
+
y(" on ")
|
|
168
|
+
])),
|
|
169
|
+
_: 1
|
|
170
|
+
})) : d("", !0),
|
|
171
|
+
n(s).regularity.value == "Monthly" ? (o(), m(p, {
|
|
172
|
+
class: "flex-grow-0",
|
|
173
|
+
key: "7"
|
|
174
|
+
}, {
|
|
175
|
+
default: t(() => [
|
|
176
|
+
e(D, {
|
|
177
|
+
onChange: x,
|
|
178
|
+
items: n(re),
|
|
179
|
+
multiple: "",
|
|
180
|
+
modelValue: n(s).weeks.value,
|
|
181
|
+
"onUpdate:modelValue": l[4] || (l[4] = (i) => n(s).weeks.value = i)
|
|
182
|
+
}, null, 8, ["items", "modelValue"])
|
|
183
|
+
]),
|
|
184
|
+
_: 1
|
|
185
|
+
})) : d("", !0),
|
|
186
|
+
n(s).regularity.value == "Monthly" || n(s).regularity.value == "Weekly" ? (o(), m(p, {
|
|
187
|
+
class: "flex-grow-0",
|
|
188
|
+
key: "8"
|
|
189
|
+
}, {
|
|
190
|
+
default: t(() => [
|
|
191
|
+
e(D, {
|
|
192
|
+
onChange: x,
|
|
193
|
+
items: n(me),
|
|
194
|
+
multiple: "",
|
|
195
|
+
modelValue: n(s).weekdays.value,
|
|
196
|
+
"onUpdate:modelValue": l[5] || (l[5] = (i) => n(s).weekdays.value = i)
|
|
197
|
+
}, null, 8, ["items", "modelValue"])
|
|
198
|
+
]),
|
|
199
|
+
_: 1
|
|
200
|
+
})) : d("", !0),
|
|
201
|
+
a.useLeadTimeLeft ? (o(), m(p, {
|
|
202
|
+
cols: "12",
|
|
203
|
+
key: "9"
|
|
204
|
+
}, {
|
|
205
|
+
default: t(() => [
|
|
206
|
+
e(b, { class: "align-center" }, {
|
|
207
|
+
default: t(() => [
|
|
208
|
+
e(C, {
|
|
209
|
+
"hide-on-leave": "",
|
|
210
|
+
group: ""
|
|
211
|
+
}, {
|
|
212
|
+
default: t(() => [
|
|
213
|
+
a.secondPrefix != null ? (o(), m(p, {
|
|
214
|
+
key: "1",
|
|
215
|
+
cols: "auto"
|
|
216
|
+
}, {
|
|
217
|
+
default: t(() => [
|
|
218
|
+
y(v(a.secondPrefix), 1)
|
|
219
|
+
]),
|
|
220
|
+
_: 1
|
|
221
|
+
})) : d("", !0),
|
|
222
|
+
e(p, {
|
|
223
|
+
class: "mx-3 my-0 pa-0 text-center",
|
|
224
|
+
cols: "auto",
|
|
225
|
+
key: "2"
|
|
226
|
+
}, {
|
|
227
|
+
default: t(() => [
|
|
228
|
+
e(J, {
|
|
229
|
+
onChange: x,
|
|
230
|
+
"hide-details": "",
|
|
231
|
+
textCenter: "",
|
|
232
|
+
variant: "underlined",
|
|
233
|
+
width: "70",
|
|
234
|
+
modelValue: n(s).leadTimeLeft.value,
|
|
235
|
+
"onUpdate:modelValue": l[6] || (l[6] = (i) => n(s).leadTimeLeft.value = i),
|
|
236
|
+
modelModifiers: { number: !0 }
|
|
237
|
+
}, null, 8, ["modelValue"])
|
|
238
|
+
]),
|
|
239
|
+
_: 1
|
|
240
|
+
}),
|
|
241
|
+
e(p, {
|
|
242
|
+
cols: "auto",
|
|
243
|
+
key: "3"
|
|
244
|
+
}, {
|
|
245
|
+
default: t(() => [
|
|
246
|
+
_("span", null, v(a.useLeadTimeInHours ? "hour" : "minute"), 1),
|
|
247
|
+
n(s).leadTimeLeft.value != 1 ? (o(), c("span", fe, "s")) : d("", !0),
|
|
248
|
+
l[15] || (l[15] = _("span", { class: "ml-1" }, "later", -1))
|
|
249
|
+
]),
|
|
250
|
+
_: 1
|
|
251
|
+
})
|
|
252
|
+
]),
|
|
253
|
+
_: 1
|
|
254
|
+
})
|
|
255
|
+
]),
|
|
256
|
+
_: 1
|
|
257
|
+
})
|
|
258
|
+
]),
|
|
259
|
+
_: 1
|
|
260
|
+
})) : d("", !0),
|
|
261
|
+
a.useAdjustments ? (o(), m(p, {
|
|
262
|
+
key: 10,
|
|
263
|
+
cols: "12"
|
|
264
|
+
}, {
|
|
265
|
+
default: t(() => [
|
|
266
|
+
e(P, {
|
|
267
|
+
modelValue: A.value,
|
|
268
|
+
"onUpdate:modelValue": l[8] || (l[8] = (i) => A.value = i),
|
|
269
|
+
persistent: "",
|
|
270
|
+
"max-width": "450"
|
|
271
|
+
}, {
|
|
272
|
+
activator: t(({ props: i }) => [
|
|
273
|
+
e(k, z({
|
|
274
|
+
"append-icon": "$pencil",
|
|
275
|
+
onClick: l[7] || (l[7] = (u) => n(g).unpack(n(g).adjustmentsString.value, n(s).cronExpression.value)),
|
|
276
|
+
class: "text-caption mt-3"
|
|
277
|
+
}, i, {
|
|
278
|
+
size: "small",
|
|
279
|
+
text: $.value
|
|
280
|
+
}), null, 16, ["text"])
|
|
281
|
+
]),
|
|
282
|
+
default: t(({ isActive: i }) => [
|
|
283
|
+
e(E, null, {
|
|
284
|
+
default: t(() => [
|
|
285
|
+
e(K, null, {
|
|
286
|
+
default: t(() => [
|
|
287
|
+
_("div", ce, [
|
|
288
|
+
_("span", null, v($.value), 1),
|
|
289
|
+
e(w),
|
|
290
|
+
a.hideCron ? d("", !0) : (o(), c("span", _e, v(n(s).cronExpression.value), 1))
|
|
291
|
+
])
|
|
292
|
+
]),
|
|
293
|
+
_: 1
|
|
294
|
+
}),
|
|
295
|
+
e(ee, { "max-height": "400" }, {
|
|
296
|
+
default: t(() => [
|
|
297
|
+
e(C, {
|
|
298
|
+
"hide-on-leave": "",
|
|
299
|
+
group: ""
|
|
300
|
+
}, {
|
|
301
|
+
default: t(() => [
|
|
302
|
+
(o(!0), c(N, null, ue(n(g).adjustments.value, (u) => (o(), c(N, {
|
|
303
|
+
key: u.dateTrigger
|
|
304
|
+
}, [
|
|
305
|
+
e(Y, { lines: "two" }, {
|
|
306
|
+
title: t(() => [
|
|
307
|
+
_("div", ge, [
|
|
308
|
+
e(Q, { "hide-on-leave": "" }, {
|
|
309
|
+
default: t(() => [
|
|
310
|
+
u.isAdjusting ? (o(), c("span", ye, "Was " + v(a.firstPrefix), 1)) : (o(), c("span", ke, v(a.firstPrefix), 1))
|
|
311
|
+
]),
|
|
312
|
+
_: 2
|
|
313
|
+
}, 1024)
|
|
314
|
+
]),
|
|
315
|
+
e(L, {
|
|
316
|
+
class: se(u.isAdjusting ? "text-decoration-line-through" : ""),
|
|
317
|
+
filter: "toDayShortDateAndTime",
|
|
318
|
+
value: u.dateTrigger
|
|
319
|
+
}, null, 8, ["class", "value"]),
|
|
320
|
+
e(X, { "hide-on-leave": "" }, {
|
|
321
|
+
default: t(() => [
|
|
322
|
+
u.isAdjusting ? (o(), c("div", xe, [
|
|
323
|
+
e(C, {
|
|
324
|
+
"hide-on-leave": "",
|
|
325
|
+
group: ""
|
|
326
|
+
}, {
|
|
327
|
+
default: t(() => [
|
|
328
|
+
u.replacingDate != null ? (o(), c("div", Ve, [
|
|
329
|
+
_("div", he, "Now " + v(a.firstPrefix), 1),
|
|
330
|
+
e(L, {
|
|
331
|
+
filter: "toDayShortDateAndTime",
|
|
332
|
+
value: u.replacingDate
|
|
333
|
+
}, null, 8, ["value"])
|
|
334
|
+
])) : (o(), c("div", Ce, "(Cancelled)")),
|
|
335
|
+
u.replacingDate != null && (u.leadTimeLeft > 0 || u.leadLeftDate != null) ? (o(), c("div", Le, [
|
|
336
|
+
_("div", De, v(a.adjustmentLeftLabel), 1),
|
|
337
|
+
e(L, {
|
|
338
|
+
filter: "toDayShortDateAndTime",
|
|
339
|
+
value: u.leadLeftDate
|
|
340
|
+
}, null, 8, ["value"])
|
|
341
|
+
])) : d("", !0),
|
|
342
|
+
u.replacingDate != null && (u.leadTimeRight > 0 || u.leadRightDate != null) ? (o(), c("div", Te, [
|
|
343
|
+
_("div", Ae, v(a.adjustmentRightLabel), 1),
|
|
344
|
+
e(L, {
|
|
345
|
+
filter: "toDayShortDateAndTime",
|
|
346
|
+
value: u.leadRightDate
|
|
347
|
+
}, null, 8, ["value"])
|
|
348
|
+
])) : d("", !0)
|
|
349
|
+
]),
|
|
350
|
+
_: 2
|
|
351
|
+
}, 1024)
|
|
352
|
+
])) : d("", !0)
|
|
353
|
+
]),
|
|
354
|
+
_: 2
|
|
355
|
+
}, 1024)
|
|
356
|
+
]),
|
|
357
|
+
append: t(() => [
|
|
358
|
+
_("div", be, [
|
|
359
|
+
e(C, {
|
|
360
|
+
"hide-on-leave": "",
|
|
361
|
+
group: ""
|
|
362
|
+
}, {
|
|
363
|
+
default: t(() => [
|
|
364
|
+
u.isAdjusting ? (o(), m(k, {
|
|
365
|
+
onClick: (S) => n(g).undoAdjustment(u),
|
|
366
|
+
key: "1",
|
|
367
|
+
"prepend-icon": "$undo",
|
|
368
|
+
size: "x-small",
|
|
369
|
+
text: "Undo",
|
|
370
|
+
title: "Remove Adjustment"
|
|
371
|
+
}, null, 8, ["onClick"])) : d("", !0),
|
|
372
|
+
u.isAdjusting ? d("", !0) : (o(), m(k, {
|
|
373
|
+
onClick: (S) => n(g).cancelAdjustment(u),
|
|
374
|
+
class: "text-error my-1",
|
|
375
|
+
key: "2",
|
|
376
|
+
"prepend-icon": "$cancel",
|
|
377
|
+
size: "x-small",
|
|
378
|
+
text: "Cancel"
|
|
379
|
+
}, null, 8, ["onClick"])),
|
|
380
|
+
u.isAdjusting ? d("", !0) : (o(), m(k, z({
|
|
381
|
+
onClick: (S) => H(u),
|
|
382
|
+
class: "text-warning my-1",
|
|
383
|
+
key: "3",
|
|
384
|
+
"prepend-icon": "$calendar-edit",
|
|
385
|
+
size: "x-small",
|
|
386
|
+
text: "Adjust",
|
|
387
|
+
ref_for: !0
|
|
388
|
+
}, V), null, 16, ["onClick"]))
|
|
389
|
+
]),
|
|
390
|
+
_: 2
|
|
391
|
+
}, 1024)
|
|
392
|
+
])
|
|
393
|
+
]),
|
|
394
|
+
_: 2
|
|
395
|
+
}, 1024),
|
|
396
|
+
e(Z)
|
|
397
|
+
], 64))), 128))
|
|
398
|
+
]),
|
|
399
|
+
_: 1
|
|
400
|
+
})
|
|
401
|
+
]),
|
|
402
|
+
_: 1
|
|
403
|
+
}),
|
|
404
|
+
e(B, null, {
|
|
405
|
+
default: t(() => [
|
|
406
|
+
e(k, {
|
|
407
|
+
onClick: (u) => i.value = !1,
|
|
408
|
+
text: "Cancel"
|
|
409
|
+
}, null, 8, ["onClick"]),
|
|
410
|
+
e(w),
|
|
411
|
+
e(k, {
|
|
412
|
+
onClick: I,
|
|
413
|
+
"prepend-icon": "$content-save",
|
|
414
|
+
text: "Save"
|
|
415
|
+
})
|
|
416
|
+
]),
|
|
417
|
+
_: 2
|
|
418
|
+
}, 1024)
|
|
419
|
+
]),
|
|
420
|
+
_: 2
|
|
421
|
+
}, 1024)
|
|
422
|
+
]),
|
|
423
|
+
_: 1
|
|
424
|
+
}, 8, ["modelValue"]),
|
|
425
|
+
e(P, {
|
|
426
|
+
modelValue: T.value,
|
|
427
|
+
"onUpdate:modelValue": l[12] || (l[12] = (i) => T.value = i),
|
|
428
|
+
persistent: "",
|
|
429
|
+
width: "auto"
|
|
430
|
+
}, {
|
|
431
|
+
default: t(({ isActive: i }) => [
|
|
432
|
+
f.value != null ? (o(), m(E, {
|
|
433
|
+
key: 0,
|
|
434
|
+
class: "text-center"
|
|
435
|
+
}, {
|
|
436
|
+
default: t(() => [
|
|
437
|
+
l[16] || (l[16] = _("div", { class: "text-h6" }, "Adjusting", -1)),
|
|
438
|
+
_("div", null, [
|
|
439
|
+
e(L, {
|
|
440
|
+
value: f.value.dateTrigger,
|
|
441
|
+
filter: "toDayShortDateAndTime"
|
|
442
|
+
}, null, 8, ["value"])
|
|
443
|
+
]),
|
|
444
|
+
e(te, null, {
|
|
445
|
+
default: t(() => [
|
|
446
|
+
e(b, null, {
|
|
447
|
+
default: t(() => [
|
|
448
|
+
e(p, null, {
|
|
449
|
+
default: t(() => [
|
|
450
|
+
e(h, null, {
|
|
451
|
+
default: t(() => [
|
|
452
|
+
y(v(a.replacementLabel), 1)
|
|
453
|
+
]),
|
|
454
|
+
_: 1
|
|
455
|
+
}),
|
|
456
|
+
_("div", we, v(f.value.replacingDate), 1),
|
|
457
|
+
e(j, {
|
|
458
|
+
useTime: "",
|
|
459
|
+
modelValue: f.value.replacingDate,
|
|
460
|
+
"onUpdate:modelValue": l[9] || (l[9] = (u) => f.value.replacingDate = u)
|
|
461
|
+
}, null, 8, ["modelValue"])
|
|
462
|
+
]),
|
|
463
|
+
_: 1
|
|
464
|
+
}),
|
|
465
|
+
a.useLeadTimeLeft ? (o(), m(p, { key: 0 }, {
|
|
466
|
+
default: t(() => [
|
|
467
|
+
e(h, null, {
|
|
468
|
+
default: t(() => [
|
|
469
|
+
y(v(a.adjustmentLeftLabel), 1)
|
|
470
|
+
]),
|
|
471
|
+
_: 1
|
|
472
|
+
}),
|
|
473
|
+
e(j, {
|
|
474
|
+
useTime: "",
|
|
475
|
+
modelValue: f.value.leadLeftDate,
|
|
476
|
+
"onUpdate:modelValue": l[10] || (l[10] = (u) => f.value.leadLeftDate = u)
|
|
477
|
+
}, null, 8, ["modelValue"])
|
|
478
|
+
]),
|
|
479
|
+
_: 1
|
|
480
|
+
})) : d("", !0),
|
|
481
|
+
a.useLeadTimeRight ? (o(), m(p, { key: 1 }, {
|
|
482
|
+
default: t(() => [
|
|
483
|
+
e(h, null, {
|
|
484
|
+
default: t(() => [
|
|
485
|
+
y(v(a.adjustmentRightLabel), 1)
|
|
486
|
+
]),
|
|
487
|
+
_: 1
|
|
488
|
+
}),
|
|
489
|
+
e(j, {
|
|
490
|
+
useTime: "",
|
|
491
|
+
modelValue: f.value.leadRightDate,
|
|
492
|
+
"onUpdate:modelValue": l[11] || (l[11] = (u) => f.value.leadRightDate = u)
|
|
493
|
+
}, null, 8, ["modelValue"])
|
|
494
|
+
]),
|
|
495
|
+
_: 1
|
|
496
|
+
})) : d("", !0)
|
|
497
|
+
]),
|
|
498
|
+
_: 1
|
|
499
|
+
})
|
|
500
|
+
]),
|
|
501
|
+
_: 1
|
|
502
|
+
}),
|
|
503
|
+
e(le),
|
|
504
|
+
e(B, null, {
|
|
505
|
+
default: t(() => [
|
|
506
|
+
e(k, {
|
|
507
|
+
onClick: (u) => i.value = !1,
|
|
508
|
+
text: "Cancel"
|
|
509
|
+
}, null, 8, ["onClick"]),
|
|
510
|
+
e(w),
|
|
511
|
+
e(k, {
|
|
512
|
+
onClick: W,
|
|
513
|
+
text: "Done"
|
|
514
|
+
})
|
|
515
|
+
]),
|
|
516
|
+
_: 2
|
|
517
|
+
}, 1024)
|
|
518
|
+
]),
|
|
519
|
+
_: 2
|
|
520
|
+
}, 1024)) : d("", !0)
|
|
521
|
+
]),
|
|
522
|
+
_: 1
|
|
523
|
+
}, 8, ["modelValue"])
|
|
524
|
+
]),
|
|
525
|
+
_: 1
|
|
526
|
+
})) : d("", !0)
|
|
527
|
+
]),
|
|
528
|
+
_: 1
|
|
529
|
+
})
|
|
530
|
+
]),
|
|
531
|
+
_: 1
|
|
532
|
+
});
|
|
533
|
+
};
|
|
534
|
+
}
|
|
535
|
+
});
|
|
536
|
+
export {
|
|
537
|
+
Be as default
|
|
538
|
+
};
|