bt-core-app 2.1.36 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_virtual/_commonjs-dynamic-modules.mjs +6 -0
- package/dist/_virtual/_commonjsHelpers.mjs +30 -0
- package/dist/_virtual/_plugin-vue_export-helper.mjs +9 -0
- package/dist/_virtual/index.mjs +4 -0
- package/dist/_virtual/localforage.mjs +4 -0
- package/dist/_virtual/luxon.mjs +6 -0
- package/dist/_virtual/matcher.mjs +4 -0
- package/dist/_virtual/parser.mjs +4 -0
- package/dist/bt-core/core/node_modules/@datasert/cronjs-matcher/dist/index.mjs +12 -0
- package/dist/bt-core/core/node_modules/@datasert/cronjs-matcher/dist/matcher.mjs +220 -0
- package/dist/bt-core/core/node_modules/@datasert/cronjs-parser/dist/parser.mjs +186 -0
- package/dist/bt-core/core/node_modules/@mdi/js/mdi.mjs +70 -0
- package/dist/bt-core/core/node_modules/@vuepic/vue-datepicker/dist/main.css.mjs +1 -0
- package/dist/bt-core/core/node_modules/@vuepic/vue-datepicker/dist/vue-datepicker.mjs +5210 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/addLeadingZeros.mjs +7 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/defaultOptions.mjs +7 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/format/formatters.mjs +517 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/format/lightFormatters.mjs +59 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/format/longFormatters.mjs +52 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.mjs +18 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/normalizeDates.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/normalizeInterval.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/protectedTokens.mjs +21 -0
- package/dist/bt-core/core/node_modules/date-fns/add.mjs +20 -0
- package/dist/bt-core/core/node_modules/date-fns/addDays.mjs +10 -0
- package/dist/bt-core/core/node_modules/date-fns/addHours.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/addMilliseconds.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/addMonths.mjs +21 -0
- package/dist/bt-core/core/node_modules/date-fns/addQuarters.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/addYears.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/compareAsc.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/constants.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/constructFrom.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/differenceInCalendarDays.mjs +16 -0
- package/dist/bt-core/core/node_modules/date-fns/differenceInCalendarYears.mjs +13 -0
- package/dist/bt-core/core/node_modules/date-fns/differenceInYears.mjs +17 -0
- package/dist/bt-core/core/node_modules/date-fns/eachDayOfInterval.mjs +20 -0
- package/dist/bt-core/core/node_modules/date-fns/eachQuarterOfInterval.mjs +21 -0
- package/dist/bt-core/core/node_modules/date-fns/endOfQuarter.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/endOfWeek.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/endOfYear.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/format.mjs +60 -0
- package/dist/bt-core/core/node_modules/date-fns/getDay.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/getDayOfYear.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/getDaysInMonth.mjs +10 -0
- package/dist/bt-core/core/node_modules/date-fns/getDefaultOptions.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/getHours.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/getISODay.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/getISOWeek.mjs +12 -0
- package/dist/bt-core/core/node_modules/date-fns/getISOWeekYear.mjs +15 -0
- package/dist/bt-core/core/node_modules/date-fns/getMinutes.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/getMonth.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/getQuarter.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/getSeconds.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/getWeek.mjs +12 -0
- package/dist/bt-core/core/node_modules/date-fns/getWeekYear.mjs +17 -0
- package/dist/bt-core/core/node_modules/date-fns/getYear.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/isAfter.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/isBefore.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/isDate.mjs +7 -0
- package/dist/bt-core/core/node_modules/date-fns/isEqual.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/isSameQuarter.mjs +14 -0
- package/dist/bt-core/core/node_modules/date-fns/isValid.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/_lib/buildFormatLongFn.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/_lib/buildLocalizeFn.mjs +18 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/_lib/buildMatchFn.mjs +31 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/_lib/buildMatchPatternFn.mjs +17 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/en-US/_lib/formatDistance.mjs +70 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/en-US/_lib/formatLong.mjs +33 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/en-US/_lib/formatRelative.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/en-US/_lib/localize.mjs +155 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/en-US/_lib/match.mjs +110 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/en-US.mjs +21 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/Parser.mjs +22 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/Setter.mjs +41 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/constants.mjs +49 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/AMPMMidnightParser.mjs +49 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/AMPMParser.mjs +49 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/DateParser.mjs +61 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/DayOfYearParser.mjs +51 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/DayParser.mjs +45 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/DayPeriodParser.mjs +49 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/EraParser.mjs +30 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ExtendedYearParser.mjs +21 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/FractionOfSecondParser.mjs +22 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/Hour0To11Parser.mjs +32 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/Hour0to23Parser.mjs +32 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/Hour1To24Parser.mjs +33 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/Hour1to12Parser.mjs +33 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ISODayParser.mjs +99 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ISOTimezoneParser.mjs +48 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ISOTimezoneWithZParser.mjs +48 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ISOWeekParser.mjs +49 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ISOWeekYearParser.mjs +40 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/LocalDayParser.mjs +74 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/LocalWeekParser.mjs +48 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/LocalWeekYearParser.mjs +69 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/MinuteParser.mjs +32 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/MonthParser.mjs +71 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/QuarterParser.mjs +70 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/SecondParser.mjs +32 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/StandAloneLocalDayParser.mjs +74 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/StandAloneMonthParser.mjs +71 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/StandAloneQuarterParser.mjs +70 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/TimestampMillisecondsParser.mjs +22 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/TimestampSecondsParser.mjs +22 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/YearParser.mjs +49 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers.mjs +67 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/utils.mjs +103 -0
- package/dist/bt-core/core/node_modules/date-fns/parse.mjs +90 -0
- package/dist/bt-core/core/node_modules/date-fns/set.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/setDay.mjs +12 -0
- package/dist/bt-core/core/node_modules/date-fns/setHours.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/setISODay.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/setISOWeek.mjs +10 -0
- package/dist/bt-core/core/node_modules/date-fns/setMilliseconds.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/setMinutes.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/setMonth.mjs +13 -0
- package/dist/bt-core/core/node_modules/date-fns/setSeconds.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/setWeek.mjs +10 -0
- package/dist/bt-core/core/node_modules/date-fns/setYear.mjs +10 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfDay.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfISOWeek.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfISOWeekYear.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfMonth.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfQuarter.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfWeek.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfWeekYear.mjs +13 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfYear.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/sub.mjs +19 -0
- package/dist/bt-core/core/node_modules/date-fns/subDays.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/subMonths.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/subYears.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/toDate.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/transpose.mjs +18 -0
- package/dist/bt-core/core/node_modules/localforage/dist/localforage.mjs +1454 -0
- package/dist/bt-core/core/node_modules/luxon/src/datetime.mjs +1855 -0
- package/dist/bt-core/core/node_modules/luxon/src/duration.mjs +753 -0
- package/dist/bt-core/core/node_modules/luxon/src/errors.mjs +40 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/conversions.mjs +92 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/diff.mjs +36 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/digits.mjs +77 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/english.mjs +138 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/formats.mjs +150 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/formatter.mjs +258 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/invalid.mjs +11 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/locale.mjs +294 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/regexParser.mjs +202 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/tokenParser.mjs +329 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/util.mjs +220 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/zoneUtil.mjs +20 -0
- package/dist/bt-core/core/node_modules/luxon/src/info.mjs +180 -0
- package/dist/bt-core/core/node_modules/luxon/src/interval.mjs +481 -0
- package/dist/bt-core/core/node_modules/luxon/src/luxon.mjs +24 -0
- package/dist/bt-core/core/node_modules/luxon/src/settings.mjs +150 -0
- package/dist/bt-core/core/node_modules/luxon/src/zone.mjs +88 -0
- package/dist/bt-core/core/node_modules/luxon/src/zones/IANAZone.mjs +183 -0
- package/dist/bt-core/core/node_modules/luxon/src/zones/fixedOffsetZone.mjs +125 -0
- package/dist/bt-core/core/node_modules/luxon/src/zones/invalidZone.mjs +41 -0
- package/dist/bt-core/core/node_modules/luxon/src/zones/systemZone.mjs +47 -0
- package/dist/bt-core/core/node_modules/merge-images/dist/index.es2015.mjs +47 -0
- package/dist/bt-core/core/node_modules/signature_pad/dist/signature_pad.mjs +248 -0
- package/dist/bt-core/core/node_modules/thenby/thenBy.module.mjs +38 -0
- package/dist/bt-core/core/node_modules/vue-picture-cropper/lib/index.mjs +1643 -0
- package/dist/bt-core/core/node_modules/vue-signature-pad/dist/vue-signature-pad.esm.mjs +173 -0
- package/dist/bt-core/core/node_modules/vue-use-spring/dist/index.mjs +204 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/composables/defaults.mjs +61 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/composables/icons.mjs +82 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/iconsets/mdi-svg.mjs +74 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/util/colors.mjs +322 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/util/console.mjs +7 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/util/defineComponent.mjs +34 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/util/getCurrentInstance.mjs +10 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/util/helpers.mjs +44 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/util/injectSelf.mjs +12 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/util/propsFactory.mjs +14 -0
- package/dist/components/BT-Assistant-Menu.vue.d.ts +19 -0
- package/dist/components/BT-Assistant-Menu.vue.mjs +464 -0
- package/dist/components/BT-Assistant-Menu.vue2.mjs +4 -0
- package/dist/components/BT-Avatar.vue.d.ts +16 -0
- package/dist/components/BT-Avatar.vue.mjs +41 -0
- package/dist/components/BT-Avatar.vue2.mjs +4 -0
- package/dist/components/BT-Background-Task.vue.d.ts +61 -0
- package/dist/components/BT-Background-Task.vue.mjs +89 -0
- package/dist/components/BT-Background-Task.vue2.mjs +4 -0
- package/dist/components/BT-Blade-Item.vue.d.ts +578 -0
- package/dist/components/BT-Blade-Item.vue.mjs +441 -0
- package/dist/components/BT-Blade-Item.vue2.mjs +4 -0
- package/dist/components/BT-Blade-Items.vue.d.ts +2358 -0
- package/dist/components/BT-Blade-Items.vue.mjs +7 -0
- package/dist/components/BT-Blade-Items.vue2.mjs +943 -0
- package/dist/components/BT-Blade-Items.vue3.mjs +1 -0
- package/dist/components/BT-Blade-Steps.vue.d.ts +1740 -0
- package/dist/components/BT-Blade-Steps.vue.mjs +7 -0
- package/dist/components/BT-Blade-Steps.vue2.mjs +1305 -0
- package/dist/components/BT-Blade-Steps.vue3.mjs +1 -0
- package/dist/components/BT-Blade.vue.d.ts +109 -0
- package/dist/components/BT-Blade.vue.mjs +268 -0
- package/dist/components/BT-Blade.vue2.mjs +4 -0
- package/dist/components/BT-Btn.vue.d.ts +47 -0
- package/dist/components/BT-Btn.vue.mjs +43 -0
- package/dist/components/BT-Btn.vue2.mjs +4 -0
- package/dist/components/BT-Camera-Overlay.vue.d.ts +57 -0
- package/dist/components/BT-Camera-Overlay.vue.mjs +173 -0
- package/dist/components/BT-Camera-Overlay.vue2.mjs +4 -0
- package/dist/components/BT-Col.vue.d.ts +49 -0
- package/dist/components/BT-Col.vue.mjs +33 -0
- package/dist/components/BT-Col.vue2.mjs +4 -0
- package/dist/components/BT-Color-Picker-Menu.vue.d.ts +23 -0
- package/dist/components/BT-Color-Picker-Menu.vue.mjs +63 -0
- package/dist/components/BT-Color-Picker-Menu.vue2.mjs +4 -0
- package/dist/components/BT-Cosmetics-Menu.vue.d.ts +14 -0
- package/dist/components/BT-Cosmetics-Menu.vue.mjs +211 -0
- package/dist/components/BT-Cosmetics-Menu.vue2.mjs +4 -0
- package/dist/components/BT-Cron-Span.vue.d.ts +21 -0
- package/dist/components/BT-Cron-Span.vue.mjs +66 -0
- package/dist/components/BT-Cron-Span.vue2.mjs +4 -0
- package/dist/components/BT-Cron.vue.d.ts +37 -0
- package/dist/components/BT-Cron.vue.mjs +538 -0
- package/dist/components/BT-Cron.vue2.mjs +4 -0
- package/dist/components/BT-Date-Select.vue.d.ts +46 -0
- package/dist/components/BT-Date-Select.vue.mjs +71 -0
- package/dist/components/BT-Date-Select.vue2.mjs +4 -0
- package/dist/components/BT-Date.vue.d.ts +53 -0
- package/dist/components/BT-Date.vue.mjs +55 -0
- package/dist/components/BT-Date.vue2.mjs +4 -0
- package/dist/components/BT-Demo-Profile-Select.vue.d.ts +17 -0
- package/dist/components/BT-Demo-Profile-Select.vue.mjs +52 -0
- package/dist/components/BT-Demo-Profile-Select.vue2.mjs +4 -0
- package/dist/components/BT-Dialog-Confirm.vue.d.ts +2 -0
- package/dist/components/BT-Dialog-Confirm.vue.mjs +63 -0
- package/dist/components/BT-Dialog-Confirm.vue2.mjs +4 -0
- package/dist/components/BT-Dialog-Date.vue.d.ts +2 -0
- package/dist/components/BT-Dialog-Date.vue.mjs +79 -0
- package/dist/components/BT-Dialog-Date.vue2.mjs +4 -0
- package/dist/components/BT-Dialog-Number.vue.d.ts +2 -0
- package/dist/components/BT-Dialog-Number.vue.mjs +178 -0
- package/dist/components/BT-Dialog-Number.vue2.mjs +4 -0
- package/dist/components/BT-Dialog-Select.vue.d.ts +2 -0
- package/dist/components/BT-Dialog-Select.vue.mjs +235 -0
- package/dist/components/BT-Dialog-Select.vue2.mjs +4 -0
- package/dist/components/BT-Divider.vue.d.ts +24 -0
- package/dist/components/BT-Divider.vue.mjs +31 -0
- package/dist/components/BT-Divider.vue2.mjs +4 -0
- package/dist/components/BT-Drag-Counter.vue.d.ts +114 -0
- package/dist/components/BT-Drag-Counter.vue.mjs +7 -0
- package/dist/components/BT-Drag-Counter.vue2.mjs +156 -0
- package/dist/components/BT-Drag-Counter.vue3.mjs +1 -0
- package/dist/components/BT-Entity.vue.d.ts +82 -0
- package/dist/components/BT-Entity.vue.mjs +172 -0
- package/dist/components/BT-Entity.vue2.mjs +4 -0
- package/dist/components/BT-Error.vue.d.ts +15 -0
- package/dist/components/BT-Error.vue.mjs +35 -0
- package/dist/components/BT-Error.vue2.mjs +4 -0
- package/dist/components/BT-Field-Checkbox.vue.d.ts +57 -0
- package/dist/components/BT-Field-Checkbox.vue.mjs +61 -0
- package/dist/components/BT-Field-Checkbox.vue2.mjs +4 -0
- package/dist/components/BT-Field-Date.vue.d.ts +69 -0
- package/dist/components/BT-Field-Date.vue.mjs +120 -0
- package/dist/components/BT-Field-Date.vue2.mjs +4 -0
- package/dist/components/BT-Field-Entity.vue.d.ts +48 -0
- package/dist/components/BT-Field-Entity.vue.mjs +55 -0
- package/dist/components/BT-Field-Entity.vue2.mjs +4 -0
- package/dist/components/BT-Field-Select-Simple.vue.d.ts +55 -0
- package/dist/components/BT-Field-Select-Simple.vue.mjs +52 -0
- package/dist/components/BT-Field-Select-Simple.vue2.mjs +4 -0
- package/dist/components/BT-Field-Select.vue.d.ts +70 -0
- package/dist/components/BT-Field-Select.vue.mjs +60 -0
- package/dist/components/BT-Field-Select.vue2.mjs +4 -0
- package/dist/components/BT-Field-String.vue.d.ts +57 -0
- package/dist/components/BT-Field-String.vue.mjs +87 -0
- package/dist/components/BT-Field-String.vue2.mjs +4 -0
- package/dist/components/BT-Field-Switch.vue.d.ts +51 -0
- package/dist/components/BT-Field-Switch.vue.mjs +64 -0
- package/dist/components/BT-Field-Switch.vue2.mjs +4 -0
- package/dist/components/BT-Field-Tags.vue.d.ts +53 -0
- package/dist/components/BT-Field-Tags.vue.mjs +80 -0
- package/dist/components/BT-Field-Tags.vue2.mjs +4 -0
- package/dist/components/BT-Field-Textarea.vue.d.ts +53 -0
- package/dist/components/BT-Field-Textarea.vue.mjs +66 -0
- package/dist/components/BT-Field-Textarea.vue2.mjs +4 -0
- package/dist/components/BT-Field-Trigger.vue.d.ts +113 -0
- package/dist/components/BT-Field-Trigger.vue.mjs +368 -0
- package/dist/components/BT-Field-Trigger.vue2.mjs +4 -0
- package/dist/components/BT-Field.vue.d.ts +49 -0
- package/dist/components/BT-Field.vue.mjs +59 -0
- package/dist/components/BT-Field.vue2.mjs +4 -0
- package/dist/components/BT-Form-Builder.vue.d.ts +74 -0
- package/dist/components/BT-Form-Builder.vue.mjs +762 -0
- package/dist/components/BT-Form-Builder.vue2.mjs +4 -0
- package/dist/components/BT-Form-Field.vue.d.ts +41 -0
- package/dist/components/BT-Form-Field.vue.mjs +186 -0
- package/dist/components/BT-Form-Field.vue2.mjs +4 -0
- package/dist/components/BT-Form.vue.d.ts +95 -0
- package/dist/components/BT-Form.vue.mjs +635 -0
- package/dist/components/BT-Form.vue2.mjs +4 -0
- package/dist/components/BT-Header-Option.vue.d.ts +18 -0
- package/dist/components/BT-Header-Option.vue.mjs +62 -0
- package/dist/components/BT-Header-Option.vue2.mjs +4 -0
- package/dist/components/BT-Image-Select.vue.d.ts +71 -0
- package/dist/components/BT-Image-Select.vue.mjs +219 -0
- package/dist/components/BT-Image-Select.vue2.mjs +4 -0
- package/dist/components/BT-Json.vue.d.ts +6 -0
- package/dist/components/BT-Json.vue.mjs +38 -0
- package/dist/components/BT-Json.vue2.mjs +1 -0
- package/dist/components/BT-Json.vue3.mjs +5 -0
- package/dist/components/BT-Loader.vue.d.ts +6 -0
- package/dist/components/BT-Loader.vue.mjs +37 -0
- package/dist/components/BT-Loader.vue2.mjs +4 -0
- package/dist/components/BT-Nav-Sidebar.vue.d.ts +25 -0
- package/dist/components/BT-Nav-Sidebar.vue.mjs +138 -0
- package/dist/components/BT-Nav-Sidebar.vue2.mjs +4 -0
- package/dist/components/BT-Number.vue.d.ts +23 -0
- package/dist/components/BT-Number.vue.mjs +7 -0
- package/dist/components/BT-Number.vue2.mjs +43 -0
- package/dist/components/BT-Number.vue3.mjs +1 -0
- package/dist/components/BT-Numpad.vue.d.ts +68 -0
- package/dist/components/BT-Numpad.vue.mjs +191 -0
- package/dist/components/BT-Numpad.vue2.mjs +4 -0
- package/dist/components/BT-Select-Inline.vue.d.ts +121 -0
- package/dist/components/BT-Select-Inline.vue.mjs +74 -0
- package/dist/components/BT-Select-Inline.vue2.mjs +24 -0
- package/dist/components/BT-Select-Inline.vue3.mjs +1 -0
- package/dist/components/BT-Select-List-Box.vue.d.ts +137 -0
- package/dist/components/BT-Select-List-Box.vue.mjs +414 -0
- package/dist/components/BT-Select-List-Box.vue2.mjs +4 -0
- package/dist/components/BT-Select-Simple.vue.d.ts +58 -0
- package/dist/components/BT-Select-Simple.vue.mjs +126 -0
- package/dist/components/BT-Select-Simple.vue2.mjs +4 -0
- package/dist/components/BT-Select.vue.d.ts +73 -0
- package/dist/components/BT-Select.vue.mjs +138 -0
- package/dist/components/BT-Select.vue2.mjs +4 -0
- package/dist/components/BT-Signature-Overlay.vue.d.ts +65 -0
- package/dist/components/BT-Signature-Overlay.vue.mjs +146 -0
- package/dist/components/BT-Signature-Overlay.vue2.mjs +4 -0
- package/dist/components/BT-Signature.vue.d.ts +70 -0
- package/dist/components/BT-Signature.vue.mjs +155 -0
- package/dist/components/BT-Signature.vue2.mjs +4 -0
- package/dist/components/BT-Slider.vue.d.ts +37 -0
- package/dist/components/BT-Slider.vue.mjs +126 -0
- package/dist/components/BT-Slider.vue2.mjs +4 -0
- package/dist/components/BT-Span.vue.d.ts +19 -0
- package/dist/components/BT-Span.vue.mjs +23 -0
- package/dist/components/BT-Span.vue2.mjs +4 -0
- package/dist/components/BT-Square-Check.vue.d.ts +104 -0
- package/dist/components/BT-Square-Check.vue.mjs +98 -0
- package/dist/components/BT-Square-Check.vue2.mjs +4 -0
- package/dist/components/BT-Status-Item.vue.d.ts +45 -0
- package/dist/components/BT-Status-Item.vue.mjs +51 -0
- package/dist/components/BT-Status-Item.vue2.mjs +4 -0
- package/dist/components/BT-Tags.vue.d.ts +19 -0
- package/dist/components/BT-Tags.vue.mjs +32 -0
- package/dist/components/BT-Tags.vue2.mjs +4 -0
- package/dist/components/BT-Tour.vue.d.ts +43 -0
- package/dist/components/BT-Tour.vue.mjs +78 -0
- package/dist/components/BT-Tour.vue2.mjs +4 -0
- package/dist/components.mjs +36 -0
- package/dist/composables/actions-local.d.ts +14 -0
- package/dist/composables/actions-local.mjs +26 -0
- package/dist/composables/actions-tracker.d.ts +36 -0
- package/dist/composables/actions-tracker.mjs +88 -0
- package/dist/composables/actions.d.ts +116 -0
- package/dist/composables/actions.mjs +272 -0
- package/dist/composables/api.d.ts +100 -0
- package/dist/composables/api.mjs +329 -0
- package/dist/composables/assistant.d.ts +38 -0
- package/dist/composables/assistant.mjs +70 -0
- package/dist/composables/auth.d.ts +94 -0
- package/dist/composables/auth.mjs +257 -0
- package/dist/composables/background-tasks.d.ts +31 -0
- package/dist/composables/background-tasks.mjs +79 -0
- package/dist/composables/blade-old.d.ts +1 -0
- package/dist/composables/blade.d.ts +91 -0
- package/dist/composables/blade.mjs +156 -0
- package/dist/composables/charts.d.ts +10 -0
- package/dist/composables/colorizer.d.ts +5 -0
- package/dist/composables/colorizer.mjs +27 -0
- package/dist/composables/component-config.d.ts +8 -0
- package/dist/composables/component-config.mjs +11 -0
- package/dist/composables/confirm.d.ts +1 -0
- package/dist/composables/confirm.mjs +11 -0
- package/dist/composables/cosmetics.d.ts +44 -0
- package/dist/composables/cosmetics.mjs +125 -0
- package/dist/composables/cron-adjustments.d.ts +63 -0
- package/dist/composables/cron-adjustments.mjs +106 -0
- package/dist/composables/cron.d.ts +72 -0
- package/dist/composables/cron.mjs +326 -0
- package/dist/composables/csv.d.ts +44 -0
- package/dist/composables/csv.mjs +163 -0
- package/dist/composables/dates.d.ts +22 -0
- package/dist/composables/dates.mjs +61 -0
- package/dist/composables/demo.d.ts +68 -0
- package/dist/composables/demo.mjs +173 -0
- package/dist/composables/dialog-items.d.ts +117 -0
- package/dist/composables/dialog-items.mjs +72 -0
- package/dist/composables/document-meta.d.ts +11 -0
- package/dist/composables/document-meta.mjs +20 -0
- package/dist/composables/draggable.d.ts +56 -0
- package/dist/composables/draggable.mjs +76 -0
- package/dist/composables/feedback.d.ts +24 -0
- package/dist/composables/feedback.mjs +32 -0
- package/dist/composables/filters.d.ts +27 -0
- package/dist/composables/filters.mjs +218 -0
- package/dist/composables/forage.d.ts +89 -0
- package/dist/composables/forage.mjs +37 -0
- package/dist/composables/forms.d.ts +104 -0
- package/dist/composables/forms.mjs +256 -0
- package/dist/composables/geo.d.ts +24 -0
- package/dist/composables/geo.mjs +95 -0
- package/dist/composables/graph-pro.d.ts +98 -0
- package/dist/composables/graph-pro.mjs +205 -0
- package/dist/composables/graphing.d.ts +1 -0
- package/dist/composables/heights.d.ts +24 -0
- package/dist/composables/heights.mjs +41 -0
- package/dist/composables/helpers.d.ts +114 -0
- package/dist/composables/helpers.mjs +512 -0
- package/dist/composables/icons.d.ts +3 -0
- package/dist/composables/icons.mjs +84 -0
- package/dist/composables/id.d.ts +8 -0
- package/dist/composables/id.mjs +32 -0
- package/dist/composables/item.d.ts +132 -0
- package/dist/composables/item.mjs +263 -0
- package/dist/composables/iterating.d.ts +1 -0
- package/dist/composables/list.d.ts +345 -0
- package/dist/composables/list.mjs +460 -0
- package/dist/composables/lists.d.ts +10 -0
- package/dist/composables/lists.mjs +31 -0
- package/dist/composables/menu.d.ts +35 -0
- package/dist/composables/menu.mjs +63 -0
- package/dist/composables/navigation.d.ts +123 -0
- package/dist/composables/navigation.mjs +157 -0
- package/dist/composables/nested.d.ts +3 -0
- package/dist/composables/nested.mjs +20 -0
- package/dist/composables/old-dialogs.d.ts +1 -0
- package/dist/composables/presets.d.ts +8 -0
- package/dist/composables/presets.mjs +16 -0
- package/dist/composables/pwa-old.d.ts +15 -0
- package/dist/composables/pwa.d.ts +26 -0
- package/dist/composables/pwa.mjs +80 -0
- package/dist/composables/resizable.d.ts +34 -0
- package/dist/composables/resizable.mjs +135 -0
- package/dist/composables/routing-old.d.ts +1 -0
- package/dist/composables/routing.d.ts +16 -0
- package/dist/composables/routing.mjs +112 -0
- package/dist/composables/rules.d.ts +13 -0
- package/dist/composables/rules.mjs +22 -0
- package/dist/composables/select.d.ts +78 -0
- package/dist/composables/select.mjs +129 -0
- package/dist/composables/settings.d.ts +6 -0
- package/dist/composables/settings.mjs +21 -0
- package/dist/composables/setup.d.ts +1 -0
- package/dist/composables/steps-old.d.ts +1 -0
- package/dist/composables/steps.d.ts +53 -0
- package/dist/composables/steps.mjs +39 -0
- package/dist/composables/stores.d.ts +258 -0
- package/dist/composables/stores.mjs +1257 -0
- package/dist/composables/sync.d.ts +33 -0
- package/dist/composables/track.d.ts +13 -0
- package/dist/composables/track.mjs +30 -0
- package/dist/composables/urls.d.ts +35 -0
- package/dist/composables/urls.mjs +66 -0
- package/dist/composables/vuetify.d.ts +85 -0
- package/dist/composables.mjs +237 -0
- package/dist/core.d.ts +48 -0
- package/dist/core.mjs +6 -0
- package/dist/core2.mjs +118 -0
- package/dist/index-components.d.ts +19 -0
- package/dist/index-composables.d.ts +75 -0
- package/dist/index-core.d.ts +3 -0
- package/dist/index.d.ts +96 -3036
- package/dist/index.mjs +275 -0
- package/dist/main.d.ts +1 -0
- package/dist/node_modules/bt-core-app/dist/bt-core-app.mjs +30372 -0
- package/dist/style.css +1 -5
- package/dist/types.d.ts +18 -0
- package/dist/types.mjs +7 -0
- package/package.json +4 -1
- package/dist/bt-core-app.js +0 -81355
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { FieldVariant } from '../types.ts';
|
|
2
|
+
|
|
3
|
+
interface FieldProps {
|
|
4
|
+
canSelectNone?: boolean;
|
|
5
|
+
dateFrom?: string;
|
|
6
|
+
density?: any;
|
|
7
|
+
fieldVariant?: FieldVariant;
|
|
8
|
+
format?: string;
|
|
9
|
+
fromNow?: boolean;
|
|
10
|
+
ignoreMinDate?: boolean;
|
|
11
|
+
label?: string;
|
|
12
|
+
modelValue: any;
|
|
13
|
+
useTime?: boolean;
|
|
14
|
+
}
|
|
15
|
+
declare const _default: import('vue').DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
|
|
16
|
+
format: string;
|
|
17
|
+
fromNow: boolean;
|
|
18
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
|
+
"update:modelValue": (...args: any[]) => void;
|
|
20
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
|
|
21
|
+
format: string;
|
|
22
|
+
fromNow: boolean;
|
|
23
|
+
}>>> & Readonly<{
|
|
24
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
25
|
+
}>, {
|
|
26
|
+
format: string;
|
|
27
|
+
fromNow: boolean;
|
|
28
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
29
|
+
export default _default;
|
|
30
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
31
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
32
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
33
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
34
|
+
} : {
|
|
35
|
+
type: import('vue').PropType<T[K]>;
|
|
36
|
+
required: true;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
type __VLS_WithDefaults<P, D> = {
|
|
40
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
41
|
+
default: D[K];
|
|
42
|
+
}> : P[K];
|
|
43
|
+
};
|
|
44
|
+
type __VLS_Prettify<T> = {
|
|
45
|
+
[K in keyof T]: T[K];
|
|
46
|
+
} & {};
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { defineComponent as D, computed as d, ref as N, resolveComponent as p, openBlock as S, createBlock as C, withCtx as s, createVNode as f, mergeProps as c, unref as a } from "vue";
|
|
2
|
+
import $ from "../bt-core/core/node_modules/@vuepic/vue-datepicker/dist/vue-datepicker.mjs";
|
|
3
|
+
import "../bt-core/core/node_modules/@vuepic/vue-datepicker/dist/main.css.mjs";
|
|
4
|
+
import { useAuth as h } from "../composables/auth.mjs";
|
|
5
|
+
import { useDates as w } from "../composables/dates.mjs";
|
|
6
|
+
import { useTheme as z } from "vuetify";
|
|
7
|
+
const I = /* @__PURE__ */ D({
|
|
8
|
+
inheritAttrs: !1,
|
|
9
|
+
__name: "BT-Date-Select",
|
|
10
|
+
props: {
|
|
11
|
+
canSelectNone: { type: Boolean },
|
|
12
|
+
dateFrom: {},
|
|
13
|
+
density: {},
|
|
14
|
+
fieldVariant: {},
|
|
15
|
+
format: { default: "ccc dd/LL/yyyy" },
|
|
16
|
+
fromNow: { type: Boolean, default: !1 },
|
|
17
|
+
ignoreMinDate: { type: Boolean },
|
|
18
|
+
label: {},
|
|
19
|
+
modelValue: {},
|
|
20
|
+
useTime: { type: Boolean }
|
|
21
|
+
},
|
|
22
|
+
emits: ["update:modelValue"],
|
|
23
|
+
setup(v, { emit: V }) {
|
|
24
|
+
const y = z(), t = v, k = V, { btString: b, tzString: i } = w(), g = h(), o = d({
|
|
25
|
+
get() {
|
|
26
|
+
return t.modelValue == "0001-01-01T00:00:00" && t.ignoreMinDate ? b() : t.modelValue;
|
|
27
|
+
},
|
|
28
|
+
set(e) {
|
|
29
|
+
k("update:modelValue", e == null ? e : `${e.split(".")[0]}Z`);
|
|
30
|
+
}
|
|
31
|
+
}), r = d(() => t.modelValue ? i(t.modelValue, t.format) : void 0), m = N();
|
|
32
|
+
return t.dateFrom != null ? m.value = t.dateFrom : t.fromNow && (m.value = i()), (e, l) => {
|
|
33
|
+
const B = p("v-text-field"), T = p("v-menu");
|
|
34
|
+
return S(), C(T, { "open-delay": "5" }, {
|
|
35
|
+
activator: s(({ props: n }) => [
|
|
36
|
+
f(B, c({
|
|
37
|
+
"append-inner-icon": e.canSelectNone && o.value != null && o.value.length > 0 ? "$close" : void 0,
|
|
38
|
+
"onClick:appendInner": l[0] || (l[0] = (u) => o.value = void 0),
|
|
39
|
+
density: e.density
|
|
40
|
+
}, n, {
|
|
41
|
+
"hide-details": "",
|
|
42
|
+
label: e.label,
|
|
43
|
+
readonly: "",
|
|
44
|
+
variant: e.fieldVariant,
|
|
45
|
+
modelValue: r.value,
|
|
46
|
+
"onUpdate:modelValue": l[1] || (l[1] = (u) => r.value = u)
|
|
47
|
+
}), null, 16, ["append-inner-icon", "density", "label", "variant", "modelValue"])
|
|
48
|
+
]),
|
|
49
|
+
default: s(() => [
|
|
50
|
+
f(a($), c({
|
|
51
|
+
"auto-apply": "",
|
|
52
|
+
dark: a(y).global.current.value.dark,
|
|
53
|
+
"enable-time-picker": e.useTime,
|
|
54
|
+
inline: "",
|
|
55
|
+
"is-24": !1,
|
|
56
|
+
"time-picker-inline": e.useTime,
|
|
57
|
+
timezone: a(g).timeZone.value,
|
|
58
|
+
utc: ""
|
|
59
|
+
}, e.$attrs, {
|
|
60
|
+
modelValue: o.value,
|
|
61
|
+
"onUpdate:modelValue": l[2] || (l[2] = (n) => o.value = n)
|
|
62
|
+
}), null, 16, ["dark", "enable-time-picker", "time-picker-inline", "timezone", "modelValue"])
|
|
63
|
+
]),
|
|
64
|
+
_: 1
|
|
65
|
+
});
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
});
|
|
69
|
+
export {
|
|
70
|
+
I as default
|
|
71
|
+
};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
|
|
2
|
+
interface FieldProps {
|
|
3
|
+
date?: any;
|
|
4
|
+
dateFrom?: string;
|
|
5
|
+
dateRules?: Function | unknown[];
|
|
6
|
+
format?: string;
|
|
7
|
+
fromNow?: boolean;
|
|
8
|
+
horizontal?: boolean;
|
|
9
|
+
ignoreMinDate?: boolean;
|
|
10
|
+
modelValue?: any;
|
|
11
|
+
multi?: boolean;
|
|
12
|
+
onSelect?: (item: any) => void;
|
|
13
|
+
range?: boolean;
|
|
14
|
+
useTime?: boolean;
|
|
15
|
+
}
|
|
16
|
+
declare const _default: import('vue').DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
|
|
17
|
+
format: string;
|
|
18
|
+
fromNow: boolean;
|
|
19
|
+
multi: boolean;
|
|
20
|
+
range: boolean;
|
|
21
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
22
|
+
"update:modelValue": (...args: any[]) => void;
|
|
23
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
|
|
24
|
+
format: string;
|
|
25
|
+
fromNow: boolean;
|
|
26
|
+
multi: boolean;
|
|
27
|
+
range: boolean;
|
|
28
|
+
}>>> & Readonly<{
|
|
29
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
30
|
+
}>, {
|
|
31
|
+
format: string;
|
|
32
|
+
multi: boolean;
|
|
33
|
+
fromNow: boolean;
|
|
34
|
+
range: boolean;
|
|
35
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
36
|
+
export default _default;
|
|
37
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
38
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
39
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
40
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
41
|
+
} : {
|
|
42
|
+
type: import('vue').PropType<T[K]>;
|
|
43
|
+
required: true;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
type __VLS_WithDefaults<P, D> = {
|
|
47
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
48
|
+
default: D[K];
|
|
49
|
+
}> : P[K];
|
|
50
|
+
};
|
|
51
|
+
type __VLS_Prettify<T> = {
|
|
52
|
+
[K in keyof T]: T[K];
|
|
53
|
+
} & {};
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { defineComponent as y, computed as n, openBlock as g, createBlock as k, unref as l, mergeProps as B } from "vue";
|
|
2
|
+
import V from "../bt-core/core/node_modules/@vuepic/vue-datepicker/dist/vue-datepicker.mjs";
|
|
3
|
+
import "../bt-core/core/node_modules/@vuepic/vue-datepicker/dist/main.css.mjs";
|
|
4
|
+
import { useDates as T } from "../composables/dates.mjs";
|
|
5
|
+
import { useAuth as h } from "../composables/auth.mjs";
|
|
6
|
+
import { useTheme as D } from "vuetify";
|
|
7
|
+
const $ = /* @__PURE__ */ y({
|
|
8
|
+
inheritAttrs: !1,
|
|
9
|
+
__name: "BT-Date",
|
|
10
|
+
props: {
|
|
11
|
+
date: {},
|
|
12
|
+
dateFrom: {},
|
|
13
|
+
dateRules: {},
|
|
14
|
+
format: { default: "ccc dd/LL/yyyy" },
|
|
15
|
+
fromNow: { type: Boolean, default: !1 },
|
|
16
|
+
horizontal: { type: Boolean },
|
|
17
|
+
ignoreMinDate: { type: Boolean },
|
|
18
|
+
modelValue: {},
|
|
19
|
+
multi: { type: Boolean, default: !1 },
|
|
20
|
+
onSelect: {},
|
|
21
|
+
range: { type: Boolean, default: !1 },
|
|
22
|
+
useTime: { type: Boolean }
|
|
23
|
+
},
|
|
24
|
+
emits: ["update:modelValue"],
|
|
25
|
+
setup(i, { emit: m }) {
|
|
26
|
+
const u = D(), t = i, s = m, p = h(), { btString: d, getToday: f } = T(), c = n(() => t.dateFrom ?? (t.fromNow ? f() : void 0)), r = n({
|
|
27
|
+
get() {
|
|
28
|
+
return t.modelValue == "0001-01-01T00:00:00" && t.ignoreMinDate ? d() : t.modelValue;
|
|
29
|
+
},
|
|
30
|
+
set(e) {
|
|
31
|
+
var o;
|
|
32
|
+
(t.range == !0 || t.multi == !0) && Array.isArray(e) ? o = e.map((a) => `${a.split(".")[0]}Z`) : o = e == null ? e : `${e.split(".")[0]}Z`, s("update:modelValue", o), t.onSelect && t.onSelect(o);
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
return (e, o) => (g(), k(l(V), B({
|
|
36
|
+
"auto-apply": "",
|
|
37
|
+
dark: l(u).global.current.value.dark,
|
|
38
|
+
"enable-time-picker": e.useTime,
|
|
39
|
+
inline: "",
|
|
40
|
+
"is-24": !1,
|
|
41
|
+
"min-date": c.value,
|
|
42
|
+
"multi-dates": e.multi,
|
|
43
|
+
range: e.range,
|
|
44
|
+
"time-picker-inline": e.useTime,
|
|
45
|
+
timezone: l(p).timeZone.value,
|
|
46
|
+
utc: ""
|
|
47
|
+
}, e.$attrs, {
|
|
48
|
+
modelValue: r.value,
|
|
49
|
+
"onUpdate:modelValue": o[0] || (o[0] = (a) => r.value = a)
|
|
50
|
+
}), null, 16, ["dark", "enable-time-picker", "min-date", "multi-dates", "range", "time-picker-inline", "timezone", "modelValue"]));
|
|
51
|
+
}
|
|
52
|
+
});
|
|
53
|
+
export {
|
|
54
|
+
$ as default
|
|
55
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
to?: string | undefined;
|
|
3
|
+
toggleShow: boolean;
|
|
4
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
5
|
+
to?: string | undefined;
|
|
6
|
+
toggleShow: boolean;
|
|
7
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8
|
+
export default _default;
|
|
9
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
10
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
11
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
12
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
13
|
+
} : {
|
|
14
|
+
type: import('vue').PropType<T[K]>;
|
|
15
|
+
required: true;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { defineComponent as k, ref as w, computed as x, watch as B, resolveComponent as l, openBlock as a, createBlock as m, withCtx as r, createVNode as p, createElementBlock as C, Fragment as D, renderList as P } from "vue";
|
|
2
|
+
import { useRouter as S } from "vue-router";
|
|
3
|
+
import { useDemo as V } from "../composables/demo.mjs";
|
|
4
|
+
const R = /* @__PURE__ */ k({
|
|
5
|
+
__name: "BT-Demo-Profile-Select",
|
|
6
|
+
props: {
|
|
7
|
+
to: {},
|
|
8
|
+
toggleShow: { type: Boolean }
|
|
9
|
+
},
|
|
10
|
+
setup(d) {
|
|
11
|
+
const n = d, t = w(!1), { getProfiles: s, startDemo: v } = V(), f = x(() => s != null ? s() ?? [] : []), c = S();
|
|
12
|
+
function _(o) {
|
|
13
|
+
v(o.id), o.navigateTo != null ? c.push({ name: o.navigateTo }) : n.to != null && c.push({ name: n.to });
|
|
14
|
+
}
|
|
15
|
+
return B(() => n.toggleShow, () => {
|
|
16
|
+
t.value = !t.value;
|
|
17
|
+
}), (o, i) => {
|
|
18
|
+
const u = l("v-card"), g = l("v-list"), h = l("v-dialog");
|
|
19
|
+
return a(), m(h, {
|
|
20
|
+
modelValue: t.value,
|
|
21
|
+
"onUpdate:modelValue": i[0] || (i[0] = (e) => t.value = e),
|
|
22
|
+
"max-width": "400"
|
|
23
|
+
}, {
|
|
24
|
+
default: r(() => [
|
|
25
|
+
p(u, { title: "Demo Profiles" }, {
|
|
26
|
+
default: r(() => [
|
|
27
|
+
p(g, { class: "pa-0" }, {
|
|
28
|
+
default: r(() => [
|
|
29
|
+
(a(!0), C(D, null, P(f.value, (e) => (a(), m(u, {
|
|
30
|
+
key: e.id,
|
|
31
|
+
class: "ma-1",
|
|
32
|
+
onClick: (T) => _(e),
|
|
33
|
+
"prepend-avatar": e.profileAvatarURL,
|
|
34
|
+
"prepend-icon": e.profileIcon,
|
|
35
|
+
text: e.description,
|
|
36
|
+
title: e.profileName
|
|
37
|
+
}, null, 8, ["onClick", "prepend-avatar", "prepend-icon", "text", "title"]))), 128))
|
|
38
|
+
]),
|
|
39
|
+
_: 1
|
|
40
|
+
})
|
|
41
|
+
]),
|
|
42
|
+
_: 1
|
|
43
|
+
})
|
|
44
|
+
]),
|
|
45
|
+
_: 1
|
|
46
|
+
}, 8, ["modelValue"]);
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
});
|
|
50
|
+
export {
|
|
51
|
+
R as default
|
|
52
|
+
};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { defineComponent as g, ref as c, onUnmounted as C, resolveComponent as u, openBlock as s, createBlock as D, withCtx as f, createVNode as n } from "vue";
|
|
2
|
+
import { registerDialog as T } from "../composables/dialog-items.mjs";
|
|
3
|
+
const w = /* @__PURE__ */ g({
|
|
4
|
+
__name: "BT-Dialog-Confirm",
|
|
5
|
+
setup(b) {
|
|
6
|
+
const a = c(!1), t = c({});
|
|
7
|
+
let r;
|
|
8
|
+
const i = T({
|
|
9
|
+
dialogType: "confirm",
|
|
10
|
+
open: (e, l) => {
|
|
11
|
+
e.height ?? (e.height = "65vh"), e.maxWidth ?? (e.maxWidth = "350px"), e.cancelText ?? (e.cancelText = "Cancel"), e.confirmText ?? (e.confirmText = "Confirm"), e.text ?? (e.text = "Are you sure?"), t.value = e, a.value = !0, r = l;
|
|
12
|
+
}
|
|
13
|
+
});
|
|
14
|
+
function d() {
|
|
15
|
+
r != null && r({
|
|
16
|
+
isCancelled: !1,
|
|
17
|
+
isConfirmed: !0,
|
|
18
|
+
isError: !1
|
|
19
|
+
}), a.value = !1;
|
|
20
|
+
}
|
|
21
|
+
function v() {
|
|
22
|
+
r != null && r({
|
|
23
|
+
isCancelled: !0,
|
|
24
|
+
isConfirmed: !1,
|
|
25
|
+
isError: !1
|
|
26
|
+
}), a.value = !1;
|
|
27
|
+
}
|
|
28
|
+
return C(() => {
|
|
29
|
+
i();
|
|
30
|
+
}), (e, l) => {
|
|
31
|
+
const m = u("v-btn"), x = u("v-card"), o = u("v-dialog");
|
|
32
|
+
return s(), D(o, {
|
|
33
|
+
"max-width": t.value.maxWidth,
|
|
34
|
+
modelValue: a.value,
|
|
35
|
+
"onUpdate:modelValue": l[2] || (l[2] = (_) => a.value = _)
|
|
36
|
+
}, {
|
|
37
|
+
default: f(() => [
|
|
38
|
+
n(x, {
|
|
39
|
+
subtitle: t.value.subtitle,
|
|
40
|
+
text: t.value.text,
|
|
41
|
+
title: t.value.title
|
|
42
|
+
}, {
|
|
43
|
+
actions: f(() => [
|
|
44
|
+
n(m, {
|
|
45
|
+
onClick: l[0] || (l[0] = () => v()),
|
|
46
|
+
text: t.value.cancelText
|
|
47
|
+
}, null, 8, ["text"]),
|
|
48
|
+
n(m, {
|
|
49
|
+
onClick: l[1] || (l[1] = () => d()),
|
|
50
|
+
text: t.value.confirmText
|
|
51
|
+
}, null, 8, ["text"])
|
|
52
|
+
]),
|
|
53
|
+
_: 1
|
|
54
|
+
}, 8, ["subtitle", "text", "title"])
|
|
55
|
+
]),
|
|
56
|
+
_: 1
|
|
57
|
+
}, 8, ["max-width", "modelValue"]);
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
});
|
|
61
|
+
export {
|
|
62
|
+
w as default
|
|
63
|
+
};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { defineComponent as D, ref as v, onUnmounted as C, resolveComponent as m, openBlock as T, createBlock as b, withCtx as f, createVNode as n } from "vue";
|
|
2
|
+
import { registerDialog as w } from "../composables/dialog-items.mjs";
|
|
3
|
+
const k = /* @__PURE__ */ D({
|
|
4
|
+
__name: "BT-Dialog-Date",
|
|
5
|
+
setup(V) {
|
|
6
|
+
const t = v(!1), l = v({}), u = v();
|
|
7
|
+
let r;
|
|
8
|
+
const o = w({
|
|
9
|
+
dialogType: "date",
|
|
10
|
+
open: (e, a) => {
|
|
11
|
+
e.format ?? (e.format = "ccc dd/LL/yyyy"), e.height ?? (e.height = "65vh"), e.maxWidth ?? (e.maxWidth = "300px"), e.cancelText ?? (e.cancelText = "Cancel"), e.confirmText ?? (e.confirmText = "Confirm"), e.range ?? (e.range = !1), l.value = e, t.value = !0, r = a, u.value = e.startingDate;
|
|
12
|
+
}
|
|
13
|
+
});
|
|
14
|
+
function i() {
|
|
15
|
+
r != null && r({
|
|
16
|
+
isCancelled: !1,
|
|
17
|
+
isConfirmed: !0,
|
|
18
|
+
isError: !1,
|
|
19
|
+
result: u.value
|
|
20
|
+
// dateOptions.value.range !== false ? (isArrayOfLength(mSelected.value, 0) ? undefined : mSelected.value) : mSelected.value //(isLengthyArray(mSelected.value) ? mSelected.value[0] : undefined)
|
|
21
|
+
}), t.value = !1;
|
|
22
|
+
}
|
|
23
|
+
function g() {
|
|
24
|
+
r != null && r({
|
|
25
|
+
isCancelled: !0,
|
|
26
|
+
isConfirmed: !1,
|
|
27
|
+
isError: !1
|
|
28
|
+
}), t.value = !1;
|
|
29
|
+
}
|
|
30
|
+
return C(() => {
|
|
31
|
+
o();
|
|
32
|
+
}), (e, a) => {
|
|
33
|
+
const x = m("bt-date"), c = m("v-btn"), s = m("v-card"), _ = m("v-dialog");
|
|
34
|
+
return T(), b(_, {
|
|
35
|
+
"max-width": l.value.maxWidth,
|
|
36
|
+
modelValue: t.value,
|
|
37
|
+
"onUpdate:modelValue": a[3] || (a[3] = (d) => t.value = d)
|
|
38
|
+
}, {
|
|
39
|
+
default: f(() => [
|
|
40
|
+
n(s, {
|
|
41
|
+
subtitle: l.value.subtitle,
|
|
42
|
+
text: l.value.text,
|
|
43
|
+
title: l.value.title
|
|
44
|
+
}, {
|
|
45
|
+
default: f(() => [
|
|
46
|
+
n(x, {
|
|
47
|
+
dateFrom: l.value.dateFrom,
|
|
48
|
+
dateRules: l.value.dateRules,
|
|
49
|
+
format: l.value.format,
|
|
50
|
+
fromNow: l.value.fromNow,
|
|
51
|
+
horizontal: l.value.horizontal,
|
|
52
|
+
range: l.value.range,
|
|
53
|
+
startingDate: l.value.startingDate,
|
|
54
|
+
useTime: l.value.useTime,
|
|
55
|
+
modelValue: u.value,
|
|
56
|
+
"onUpdate:modelValue": a[0] || (a[0] = (d) => u.value = d)
|
|
57
|
+
}, null, 8, ["dateFrom", "dateRules", "format", "fromNow", "horizontal", "range", "startingDate", "useTime", "modelValue"])
|
|
58
|
+
]),
|
|
59
|
+
actions: f(() => [
|
|
60
|
+
n(c, {
|
|
61
|
+
onClick: a[1] || (a[1] = () => g()),
|
|
62
|
+
text: l.value.cancelText
|
|
63
|
+
}, null, 8, ["text"]),
|
|
64
|
+
n(c, {
|
|
65
|
+
onClick: a[2] || (a[2] = () => i()),
|
|
66
|
+
text: l.value.confirmText
|
|
67
|
+
}, null, 8, ["text"])
|
|
68
|
+
]),
|
|
69
|
+
_: 1
|
|
70
|
+
}, 8, ["subtitle", "text", "title"])
|
|
71
|
+
]),
|
|
72
|
+
_: 1
|
|
73
|
+
}, 8, ["max-width", "modelValue"]);
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
});
|
|
77
|
+
export {
|
|
78
|
+
k as default
|
|
79
|
+
};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
import { defineComponent as z, ref as f, computed as h, onUnmounted as A, resolveComponent as c, openBlock as o, createBlock as C, withCtx as i, createElementVNode as I, toDisplayString as w, createVNode as v, createElementBlock as j, Fragment as q, renderList as G, normalizeClass as J, createCommentVNode as K } from "vue";
|
|
2
|
+
import { isNullOrEmpty as T, isLengthyArray as M } from "../composables/helpers.mjs";
|
|
3
|
+
import { registerDialog as V } from "../composables/dialog-items.mjs";
|
|
4
|
+
const P = {
|
|
5
|
+
class: "text-h4 text-center py-4",
|
|
6
|
+
style: { height: "75px" }
|
|
7
|
+
}, ee = /* @__PURE__ */ z({
|
|
8
|
+
__name: "BT-Dialog-Number",
|
|
9
|
+
setup(Q) {
|
|
10
|
+
const m = f(!1), t = f({}), u = f({}), n = f("number"), l = f(""), d = f(""), E = h(() => l.value != null && l.value.length > 0 && !Number.isNaN(l.value)), $ = h(() => {
|
|
11
|
+
var e;
|
|
12
|
+
if (T(d.value))
|
|
13
|
+
return !1;
|
|
14
|
+
if (M(u.value.rules)) {
|
|
15
|
+
let a;
|
|
16
|
+
if ((e = u.value.rules) == null || e.forEach((r) => {
|
|
17
|
+
let b = r(d.value);
|
|
18
|
+
typeof b == "string" && (a = b);
|
|
19
|
+
}), a != null)
|
|
20
|
+
return !1;
|
|
21
|
+
}
|
|
22
|
+
return !0;
|
|
23
|
+
}), O = h(() => {
|
|
24
|
+
const e = t.value.showDecimal == !1 ? Number.parseInt(l.value) : Number.parseFloat(l.value);
|
|
25
|
+
return isNaN(e) ? void 0 : e;
|
|
26
|
+
}), W = h(() => [
|
|
27
|
+
{ cols: 4, num: 1 },
|
|
28
|
+
{ cols: 4, num: 2 },
|
|
29
|
+
{ cols: 4, num: 3 },
|
|
30
|
+
{ cols: 4, num: 4 },
|
|
31
|
+
{ cols: 4, num: 5 },
|
|
32
|
+
{ cols: 4, num: 6 },
|
|
33
|
+
{ cols: 4, num: 7 },
|
|
34
|
+
{ cols: 4, num: 8 },
|
|
35
|
+
{ cols: 4, num: 9 },
|
|
36
|
+
{ cols: 4, num: void 0, icon: "$backspace", disabled: T(l.value) },
|
|
37
|
+
{ cols: 4, num: 0 },
|
|
38
|
+
{ cols: 2, num: "-", disabled: t.value.showNegative == !1 },
|
|
39
|
+
{ cols: 2, num: ".", disabled: t.value.showDecimal == !1 }
|
|
40
|
+
]);
|
|
41
|
+
let x, g;
|
|
42
|
+
const B = V({
|
|
43
|
+
dialogType: "number",
|
|
44
|
+
open: (e, a) => {
|
|
45
|
+
var r;
|
|
46
|
+
e.buttonClass ?? (e.buttonClass = "text-h6"), e.buttonHeight ?? (e.buttonHeight = "75"), e.height ?? (e.height = "65vh"), e.maxWidth ?? (e.maxWidth = "350px"), e.cancelText ?? (e.cancelText = "Cancel"), e.confirmText ?? (e.confirmText = "Confirm"), e.showDecimal ?? (e.showDecimal = !1), e.showNegative ?? (e.showNegative = !1), t.value = e, n.value = "number", l.value = ((r = e.startValue) == null ? void 0 : r.toString()) ?? "", m.value = !0, x = a;
|
|
47
|
+
}
|
|
48
|
+
}), L = V({
|
|
49
|
+
dialogType: "string",
|
|
50
|
+
open: (e, a) => {
|
|
51
|
+
e.height ?? (e.height = "65vh"), e.maxWidth ?? (e.maxWidth = "350px"), e.cancelText ?? (e.cancelText = "Cancel"), e.confirmText ?? (e.confirmText = "Confirm"), u.value = e, n.value = "string", d.value = e.startValue ?? "", m.value = !0, g = a;
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
function _() {
|
|
55
|
+
n.value == "number" ? x != null && x({
|
|
56
|
+
isCancelled: !1,
|
|
57
|
+
isConfirmed: !0,
|
|
58
|
+
isError: !1,
|
|
59
|
+
result: O.value
|
|
60
|
+
//result: listOptions.value.selectMode == 'single' ? (isArrayOfLength(mSelected.value, 0) ? undefined : mSelected.value) : mSelected.value
|
|
61
|
+
}) : n.value == "string" && g != null && g({
|
|
62
|
+
isCancelled: !1,
|
|
63
|
+
isConfirmed: !0,
|
|
64
|
+
isError: !1,
|
|
65
|
+
result: d.value
|
|
66
|
+
}), m.value = !1;
|
|
67
|
+
}
|
|
68
|
+
function D() {
|
|
69
|
+
n.value == "number" ? x != null && x({
|
|
70
|
+
isCancelled: !0,
|
|
71
|
+
isConfirmed: !1,
|
|
72
|
+
isError: !1
|
|
73
|
+
}) : n.value == "string" && g != null && g({
|
|
74
|
+
isCancelled: !0,
|
|
75
|
+
isConfirmed: !1,
|
|
76
|
+
isError: !1
|
|
77
|
+
}), m.value = !1;
|
|
78
|
+
}
|
|
79
|
+
function S(e) {
|
|
80
|
+
e != null ? e == "-" ? l.value.startsWith("-") ? l.value = l.value.substring(1) : l.value = `${e}${l.value}` : e == "." && l.value.includes(".") || (l.value = `${l.value ?? ""}${e}`) : l.value.length == 1 ? l.value = "" : l.value = l.value.substring(0, l.value.length - 1);
|
|
81
|
+
}
|
|
82
|
+
return A(() => {
|
|
83
|
+
B(), L();
|
|
84
|
+
}), (e, a) => {
|
|
85
|
+
const r = c("v-btn"), b = c("v-col"), U = c("v-row"), N = c("v-spacer"), k = c("v-card"), F = c("v-text-field"), H = c("v-dialog");
|
|
86
|
+
return o(), C(H, {
|
|
87
|
+
"max-width": n.value == "number" ? t.value.maxWidth : u.value.maxWidth,
|
|
88
|
+
modelValue: m.value,
|
|
89
|
+
"onUpdate:modelValue": a[5] || (a[5] = (s) => m.value = s)
|
|
90
|
+
}, {
|
|
91
|
+
default: i(() => [
|
|
92
|
+
n.value == "number" ? (o(), C(k, {
|
|
93
|
+
key: 0,
|
|
94
|
+
subtitle: t.value.subtitle,
|
|
95
|
+
text: t.value.text,
|
|
96
|
+
title: t.value.title
|
|
97
|
+
}, {
|
|
98
|
+
default: i(() => [
|
|
99
|
+
I("div", P, w(t.value.prefix) + w(l.value), 1),
|
|
100
|
+
v(U, { class: "ma-0 pa-0 mb-4" }, {
|
|
101
|
+
default: i(() => [
|
|
102
|
+
(o(!0), j(q, null, G(W.value, (s, R) => (o(), C(b, {
|
|
103
|
+
class: "ma-0 pa-0",
|
|
104
|
+
cols: s.cols,
|
|
105
|
+
key: R
|
|
106
|
+
}, {
|
|
107
|
+
default: i(() => {
|
|
108
|
+
var y;
|
|
109
|
+
return [
|
|
110
|
+
v(r, {
|
|
111
|
+
onClick: (X) => S(s.num),
|
|
112
|
+
class: J(t.value.buttonClass),
|
|
113
|
+
disabled: s.disabled,
|
|
114
|
+
height: t.value.buttonHeight,
|
|
115
|
+
icon: s.icon,
|
|
116
|
+
text: ((y = s.num) == null ? void 0 : y.toString()) ?? s.text,
|
|
117
|
+
tile: "",
|
|
118
|
+
width: "100%"
|
|
119
|
+
}, null, 8, ["onClick", "class", "disabled", "height", "icon", "text"])
|
|
120
|
+
];
|
|
121
|
+
}),
|
|
122
|
+
_: 2
|
|
123
|
+
}, 1032, ["cols"]))), 128))
|
|
124
|
+
]),
|
|
125
|
+
_: 1
|
|
126
|
+
})
|
|
127
|
+
]),
|
|
128
|
+
actions: i(() => [
|
|
129
|
+
v(r, {
|
|
130
|
+
onClick: a[0] || (a[0] = () => D()),
|
|
131
|
+
text: t.value.cancelText
|
|
132
|
+
}, null, 8, ["text"]),
|
|
133
|
+
v(N),
|
|
134
|
+
v(r, {
|
|
135
|
+
onClick: a[1] || (a[1] = () => _()),
|
|
136
|
+
disabled: !E.value,
|
|
137
|
+
text: t.value.confirmText
|
|
138
|
+
}, null, 8, ["disabled", "text"])
|
|
139
|
+
]),
|
|
140
|
+
_: 1
|
|
141
|
+
}, 8, ["subtitle", "text", "title"])) : n.value == "string" ? (o(), C(k, {
|
|
142
|
+
key: 1,
|
|
143
|
+
subtitle: u.value.subtitle,
|
|
144
|
+
text: u.value.text,
|
|
145
|
+
title: u.value.title
|
|
146
|
+
}, {
|
|
147
|
+
default: i(() => [
|
|
148
|
+
v(F, {
|
|
149
|
+
modelValue: d.value,
|
|
150
|
+
"onUpdate:modelValue": a[2] || (a[2] = (s) => d.value = s),
|
|
151
|
+
label: u.value.label,
|
|
152
|
+
placeholder: u.value.placeholder,
|
|
153
|
+
rules: u.value.rules
|
|
154
|
+
}, null, 8, ["modelValue", "label", "placeholder", "rules"])
|
|
155
|
+
]),
|
|
156
|
+
actions: i(() => [
|
|
157
|
+
v(r, {
|
|
158
|
+
onClick: a[3] || (a[3] = () => D()),
|
|
159
|
+
text: u.value.cancelText
|
|
160
|
+
}, null, 8, ["text"]),
|
|
161
|
+
v(N),
|
|
162
|
+
v(r, {
|
|
163
|
+
onClick: a[4] || (a[4] = () => _()),
|
|
164
|
+
disabled: !$.value,
|
|
165
|
+
text: u.value.confirmText
|
|
166
|
+
}, null, 8, ["disabled", "text"])
|
|
167
|
+
]),
|
|
168
|
+
_: 1
|
|
169
|
+
}, 8, ["subtitle", "text", "title"])) : K("", !0)
|
|
170
|
+
]),
|
|
171
|
+
_: 1
|
|
172
|
+
}, 8, ["max-width", "modelValue"]);
|
|
173
|
+
};
|
|
174
|
+
}
|
|
175
|
+
});
|
|
176
|
+
export {
|
|
177
|
+
ee as default
|
|
178
|
+
};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|