bt-core-app 2.1.37 → 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,43 @@
|
|
|
1
|
+
import { defineComponent as d, computed as i, resolveComponent as p, openBlock as c, createBlock as f, mergeProps as V, unref as x } from "vue";
|
|
2
|
+
import { useTheme as g } from "vuetify";
|
|
3
|
+
const B = /* @__PURE__ */ d({
|
|
4
|
+
inheritAttrs: !1,
|
|
5
|
+
__name: "BT-Number",
|
|
6
|
+
props: {
|
|
7
|
+
negate: { type: Boolean },
|
|
8
|
+
min: {},
|
|
9
|
+
max: {},
|
|
10
|
+
onSelect: { type: Function },
|
|
11
|
+
modelValue: {},
|
|
12
|
+
textCenter: { type: Boolean }
|
|
13
|
+
},
|
|
14
|
+
emits: ["update:modelValue"],
|
|
15
|
+
setup(o, { emit: r }) {
|
|
16
|
+
const m = g(), e = o, u = r, l = i({
|
|
17
|
+
get() {
|
|
18
|
+
return e.modelValue != null && e.negate ? 0 - e.modelValue : e.modelValue;
|
|
19
|
+
},
|
|
20
|
+
set(t) {
|
|
21
|
+
if (!(e.min != null && t != null && t < e.min) && !(e.max != null && t != null && t > e.max)) {
|
|
22
|
+
var n = t != null && e.negate ? 0 - t : t;
|
|
23
|
+
u("update:modelValue", n), e.onSelect && e.onSelect(n);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
return (t, n) => {
|
|
28
|
+
const a = p("v-text-field");
|
|
29
|
+
return c(), f(a, V({
|
|
30
|
+
class: { "centered-input": t.textCenter },
|
|
31
|
+
dark: x(m).global.current.value.dark,
|
|
32
|
+
type: "number"
|
|
33
|
+
}, t.$attrs, {
|
|
34
|
+
modelValue: l.value,
|
|
35
|
+
"onUpdate:modelValue": n[0] || (n[0] = (s) => l.value = s),
|
|
36
|
+
modelModifiers: { number: !0 }
|
|
37
|
+
}), null, 16, ["class", "dark", "modelValue"]);
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
});
|
|
41
|
+
export {
|
|
42
|
+
B as default
|
|
43
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
interface NumpadProps {
|
|
2
|
+
buttonClass?: string;
|
|
3
|
+
buttonHeight?: string;
|
|
4
|
+
canNegate?: boolean;
|
|
5
|
+
clearOnOk?: boolean;
|
|
6
|
+
currentValue?: number;
|
|
7
|
+
disableTextField?: boolean;
|
|
8
|
+
modelValue?: number;
|
|
9
|
+
showAddRemove?: boolean;
|
|
10
|
+
showDecimal?: boolean;
|
|
11
|
+
showOk?: boolean;
|
|
12
|
+
showNegative?: boolean;
|
|
13
|
+
startingValue?: number;
|
|
14
|
+
}
|
|
15
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<NumpadProps>, {
|
|
16
|
+
buttonHeight: string;
|
|
17
|
+
showAddRemove: boolean;
|
|
18
|
+
showDecimal: boolean;
|
|
19
|
+
showOk: boolean;
|
|
20
|
+
showNegative: boolean;
|
|
21
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
22
|
+
change: (...args: any[]) => void;
|
|
23
|
+
"update:modelValue": (...args: any[]) => void;
|
|
24
|
+
"update:currentValue": (...args: any[]) => void;
|
|
25
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<NumpadProps>, {
|
|
26
|
+
buttonHeight: string;
|
|
27
|
+
showAddRemove: boolean;
|
|
28
|
+
showDecimal: boolean;
|
|
29
|
+
showOk: boolean;
|
|
30
|
+
showNegative: boolean;
|
|
31
|
+
}>>> & Readonly<{
|
|
32
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
33
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
34
|
+
"onUpdate:currentValue"?: ((...args: any[]) => any) | undefined;
|
|
35
|
+
}>, {
|
|
36
|
+
buttonHeight: string;
|
|
37
|
+
showAddRemove: boolean;
|
|
38
|
+
showDecimal: boolean;
|
|
39
|
+
showOk: boolean;
|
|
40
|
+
showNegative: boolean;
|
|
41
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
42
|
+
display?(_: {
|
|
43
|
+
value: string;
|
|
44
|
+
}): any;
|
|
45
|
+
}>;
|
|
46
|
+
export default _default;
|
|
47
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
48
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
49
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
50
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
51
|
+
} : {
|
|
52
|
+
type: import('vue').PropType<T[K]>;
|
|
53
|
+
required: true;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
type __VLS_WithDefaults<P, D> = {
|
|
57
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
58
|
+
default: D[K];
|
|
59
|
+
}> : P[K];
|
|
60
|
+
};
|
|
61
|
+
type __VLS_Prettify<T> = {
|
|
62
|
+
[K in keyof T]: T[K];
|
|
63
|
+
} & {};
|
|
64
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
65
|
+
new (): {
|
|
66
|
+
$slots: S;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
import { defineComponent as E, ref as C, computed as p, watch as N, resolveComponent as c, openBlock as d, createBlock as v, withCtx as o, renderSlot as z, createVNode as s, createElementBlock as I, Fragment as M, renderList as U, normalizeClass as f, createCommentVNode as g, createTextVNode as y } from "vue";
|
|
2
|
+
const q = /* @__PURE__ */ E({
|
|
3
|
+
__name: "BT-Numpad",
|
|
4
|
+
props: {
|
|
5
|
+
buttonClass: {},
|
|
6
|
+
buttonHeight: { default: "75" },
|
|
7
|
+
canNegate: { type: Boolean },
|
|
8
|
+
clearOnOk: { type: Boolean },
|
|
9
|
+
currentValue: {},
|
|
10
|
+
disableTextField: { type: Boolean },
|
|
11
|
+
modelValue: {},
|
|
12
|
+
showAddRemove: { type: Boolean, default: !1 },
|
|
13
|
+
showDecimal: { type: Boolean, default: !1 },
|
|
14
|
+
showOk: { type: Boolean, default: !1 },
|
|
15
|
+
showNegative: { type: Boolean, default: !1 },
|
|
16
|
+
startingValue: {}
|
|
17
|
+
},
|
|
18
|
+
emits: ["change", "update:modelValue", "update:currentValue"],
|
|
19
|
+
setup(B, { emit: O }) {
|
|
20
|
+
var b, k;
|
|
21
|
+
const a = B, m = O, l = C(""), _ = p(() => l.value != null && l.value.length > 0 && !Number.isNaN(l.value)), n = p(() => {
|
|
22
|
+
const e = a.showDecimal == !1 ? Number.parseInt(l.value) : Number.parseFloat(l.value);
|
|
23
|
+
return isNaN(e) ? void 0 : e;
|
|
24
|
+
}), $ = C(4), S = p(() => {
|
|
25
|
+
const e = [
|
|
26
|
+
{ cols: 4, num: 1 },
|
|
27
|
+
{ cols: 4, num: 2 },
|
|
28
|
+
{ cols: 4, num: 3 },
|
|
29
|
+
{ cols: 4, num: 4 },
|
|
30
|
+
{ cols: 4, num: 5 },
|
|
31
|
+
{ cols: 4, num: 6 },
|
|
32
|
+
{ cols: 4, num: 7 },
|
|
33
|
+
{ cols: 4, num: 8 },
|
|
34
|
+
{ cols: 4, num: 9 }
|
|
35
|
+
], t = [{ cols: "auto", num: void 0, icon: "$backspace" }];
|
|
36
|
+
a.showNegative && t.push({ cols: "auto", num: "-" }), a.showDecimal && t.push({ cols: "auto", num: "." }), t.push({ cols: "4", num: 0 });
|
|
37
|
+
let h = t.length;
|
|
38
|
+
a.showOk !== !1 && h++;
|
|
39
|
+
const u = Math.floor(12 / h);
|
|
40
|
+
return $.value = u, t.forEach((r) => {
|
|
41
|
+
r.cols = u;
|
|
42
|
+
}), e.push(...t), e;
|
|
43
|
+
});
|
|
44
|
+
function T(e) {
|
|
45
|
+
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), m("update:currentValue", n.value);
|
|
46
|
+
}
|
|
47
|
+
function A() {
|
|
48
|
+
n.value != null && (m("change", n.value), a.clearOnOk == !0 && (l.value = ""));
|
|
49
|
+
}
|
|
50
|
+
function H() {
|
|
51
|
+
n.value != null && (m("change", 0 - n.value), a.clearOnOk == !0 && (l.value = ""));
|
|
52
|
+
}
|
|
53
|
+
function R(e) {
|
|
54
|
+
if (n.value != null) {
|
|
55
|
+
const t = e ? n.value : 0 - n.value;
|
|
56
|
+
m("change", t), m("update:modelValue", t), a.clearOnOk == !0 && (l.value = "");
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
return N(() => a.modelValue, (e) => {
|
|
60
|
+
l.value = (e == null ? void 0 : e.toString()) ?? "";
|
|
61
|
+
}), N(() => a.startingValue, (e) => {
|
|
62
|
+
l.value = (e == null ? void 0 : e.toString()) ?? "";
|
|
63
|
+
}), l.value = ((b = a.modelValue) == null ? void 0 : b.toString()) ?? ((k = a.startingValue) == null ? void 0 : k.toString()) ?? "", (e, t) => {
|
|
64
|
+
const h = c("v-text-field"), u = c("v-btn"), r = c("v-col"), x = c("v-slide-x-transition"), w = c("v-row"), D = c("v-slide-y-reverse-transition"), F = c("v-container");
|
|
65
|
+
return d(), v(F, { class: "ma-0 pa-0 mt-3" }, {
|
|
66
|
+
default: o(() => [
|
|
67
|
+
z(e.$slots, "display", { value: l.value }, () => [
|
|
68
|
+
s(h, {
|
|
69
|
+
color: "transparent",
|
|
70
|
+
disabled: e.disableTextField,
|
|
71
|
+
"hide-details": "",
|
|
72
|
+
tile: "",
|
|
73
|
+
modelValue: l.value,
|
|
74
|
+
"onUpdate:modelValue": t[0] || (t[0] = (i) => l.value = i)
|
|
75
|
+
}, null, 8, ["disabled", "modelValue"])
|
|
76
|
+
]),
|
|
77
|
+
s(w, { class: "ma-0 pa-0" }, {
|
|
78
|
+
default: o(() => [
|
|
79
|
+
(d(!0), I(M, null, U(S.value, (i, L) => (d(), v(r, {
|
|
80
|
+
class: "ma-0 pa-0",
|
|
81
|
+
cols: i.cols,
|
|
82
|
+
key: L
|
|
83
|
+
}, {
|
|
84
|
+
default: o(() => {
|
|
85
|
+
var V;
|
|
86
|
+
return [
|
|
87
|
+
s(u, {
|
|
88
|
+
onClick: (W) => T(i.num),
|
|
89
|
+
class: f(["text-h6", e.buttonClass]),
|
|
90
|
+
color: "transparent",
|
|
91
|
+
height: e.buttonHeight,
|
|
92
|
+
icon: i.icon,
|
|
93
|
+
text: ((V = i.num) == null ? void 0 : V.toString()) ?? i.text,
|
|
94
|
+
tile: "",
|
|
95
|
+
width: "100%"
|
|
96
|
+
}, null, 8, ["onClick", "class", "height", "icon", "text"])
|
|
97
|
+
];
|
|
98
|
+
}),
|
|
99
|
+
_: 2
|
|
100
|
+
}, 1032, ["cols"]))), 128)),
|
|
101
|
+
e.showOk ? (d(), v(r, {
|
|
102
|
+
key: 0,
|
|
103
|
+
class: "ma-0 pa-0"
|
|
104
|
+
}, {
|
|
105
|
+
default: o(() => [
|
|
106
|
+
s(x, { "hide-on-leave": "" }, {
|
|
107
|
+
default: o(() => [
|
|
108
|
+
_.value ? (d(), v(u, {
|
|
109
|
+
key: 0,
|
|
110
|
+
class: f(["text-h6", e.buttonClass]),
|
|
111
|
+
color: "transparent",
|
|
112
|
+
disabled: e.showAddRemove,
|
|
113
|
+
height: e.buttonHeight,
|
|
114
|
+
icon: "$check",
|
|
115
|
+
tile: "",
|
|
116
|
+
onClick: t[1] || (t[1] = () => R(!0)),
|
|
117
|
+
width: "100%"
|
|
118
|
+
}, null, 8, ["class", "disabled", "height"])) : g("", !0)
|
|
119
|
+
]),
|
|
120
|
+
_: 1
|
|
121
|
+
})
|
|
122
|
+
]),
|
|
123
|
+
_: 1
|
|
124
|
+
})) : g("", !0)
|
|
125
|
+
]),
|
|
126
|
+
_: 1
|
|
127
|
+
}),
|
|
128
|
+
s(D, { "hide-on-leave": "" }, {
|
|
129
|
+
default: o(() => [
|
|
130
|
+
_.value && e.showAddRemove ? (d(), v(w, {
|
|
131
|
+
key: 0,
|
|
132
|
+
class: "ma-0 pa-0"
|
|
133
|
+
}, {
|
|
134
|
+
default: o(() => [
|
|
135
|
+
s(r, {
|
|
136
|
+
cols: "6",
|
|
137
|
+
class: "ma-0 pa-0"
|
|
138
|
+
}, {
|
|
139
|
+
default: o(() => [
|
|
140
|
+
s(u, {
|
|
141
|
+
onClick: H,
|
|
142
|
+
class: f(["text-h6", e.buttonClass]),
|
|
143
|
+
color: "error",
|
|
144
|
+
height: e.buttonHeight,
|
|
145
|
+
tile: "",
|
|
146
|
+
width: "100%"
|
|
147
|
+
}, {
|
|
148
|
+
default: o(() => t[2] || (t[2] = [
|
|
149
|
+
y("Remove")
|
|
150
|
+
])),
|
|
151
|
+
_: 1
|
|
152
|
+
}, 8, ["class", "height"])
|
|
153
|
+
]),
|
|
154
|
+
_: 1
|
|
155
|
+
}),
|
|
156
|
+
s(r, {
|
|
157
|
+
cols: "6",
|
|
158
|
+
class: "ma-0 pa-0"
|
|
159
|
+
}, {
|
|
160
|
+
default: o(() => [
|
|
161
|
+
s(u, {
|
|
162
|
+
onClick: A,
|
|
163
|
+
class: f(["text-h6", e.buttonClass]),
|
|
164
|
+
color: "success",
|
|
165
|
+
height: e.buttonHeight,
|
|
166
|
+
tile: "",
|
|
167
|
+
width: "100%"
|
|
168
|
+
}, {
|
|
169
|
+
default: o(() => t[3] || (t[3] = [
|
|
170
|
+
y("Add")
|
|
171
|
+
])),
|
|
172
|
+
_: 1
|
|
173
|
+
}, 8, ["class", "height"])
|
|
174
|
+
]),
|
|
175
|
+
_: 1
|
|
176
|
+
})
|
|
177
|
+
]),
|
|
178
|
+
_: 1
|
|
179
|
+
})) : g("", !0)
|
|
180
|
+
]),
|
|
181
|
+
_: 1
|
|
182
|
+
})
|
|
183
|
+
]),
|
|
184
|
+
_: 3
|
|
185
|
+
});
|
|
186
|
+
};
|
|
187
|
+
}
|
|
188
|
+
});
|
|
189
|
+
export {
|
|
190
|
+
q as default
|
|
191
|
+
};
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
menuProps: {
|
|
3
|
+
type: ObjectConstructor;
|
|
4
|
+
default: () => {
|
|
5
|
+
maxHeight: string;
|
|
6
|
+
};
|
|
7
|
+
};
|
|
8
|
+
chipProps: {
|
|
9
|
+
type: ObjectConstructor;
|
|
10
|
+
default: () => void;
|
|
11
|
+
};
|
|
12
|
+
modelValue: {
|
|
13
|
+
type: import("vue").PropType<any>;
|
|
14
|
+
};
|
|
15
|
+
selection: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
};
|
|
18
|
+
clearable: {
|
|
19
|
+
type: BooleanConstructor;
|
|
20
|
+
default: boolean;
|
|
21
|
+
};
|
|
22
|
+
items: {
|
|
23
|
+
type: import("vue").PropType<any[]>;
|
|
24
|
+
default: () => never[];
|
|
25
|
+
};
|
|
26
|
+
multiple: {
|
|
27
|
+
type: BooleanConstructor;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
30
|
+
cols: {
|
|
31
|
+
type: NumberConstructor;
|
|
32
|
+
default: number;
|
|
33
|
+
};
|
|
34
|
+
itemText: {
|
|
35
|
+
type: import("vue").PropType<string | ((item: any) => string)>;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
itemValue: {
|
|
39
|
+
type: import("vue").PropType<string | ((item: any) => any)>;
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
42
|
+
disabled: {
|
|
43
|
+
type: BooleanConstructor;
|
|
44
|
+
default: boolean;
|
|
45
|
+
};
|
|
46
|
+
}>, {
|
|
47
|
+
select: (item: any) => void;
|
|
48
|
+
selected: import("vue").Ref<any, any>;
|
|
49
|
+
selectedStr: import("vue").Ref<string, string>;
|
|
50
|
+
itemRows: any[][];
|
|
51
|
+
setItems: (items: any[]) => void;
|
|
52
|
+
setValues: (values: any) => void;
|
|
53
|
+
isEmpty: import("vue").ComputedRef<boolean>;
|
|
54
|
+
has: (item: any) => boolean;
|
|
55
|
+
values: Set<any>;
|
|
56
|
+
add: (item: any) => void;
|
|
57
|
+
toggle: (item: any) => void;
|
|
58
|
+
remove: (item: any) => void;
|
|
59
|
+
clear: () => void;
|
|
60
|
+
updated: import("vue").Ref<number, number>;
|
|
61
|
+
equals: (items: any[]) => boolean;
|
|
62
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:model-value")[], "change" | "update:model-value", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
63
|
+
menuProps: {
|
|
64
|
+
type: ObjectConstructor;
|
|
65
|
+
default: () => {
|
|
66
|
+
maxHeight: string;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
chipProps: {
|
|
70
|
+
type: ObjectConstructor;
|
|
71
|
+
default: () => void;
|
|
72
|
+
};
|
|
73
|
+
modelValue: {
|
|
74
|
+
type: import("vue").PropType<any>;
|
|
75
|
+
};
|
|
76
|
+
selection: {
|
|
77
|
+
type: StringConstructor;
|
|
78
|
+
};
|
|
79
|
+
clearable: {
|
|
80
|
+
type: BooleanConstructor;
|
|
81
|
+
default: boolean;
|
|
82
|
+
};
|
|
83
|
+
items: {
|
|
84
|
+
type: import("vue").PropType<any[]>;
|
|
85
|
+
default: () => never[];
|
|
86
|
+
};
|
|
87
|
+
multiple: {
|
|
88
|
+
type: BooleanConstructor;
|
|
89
|
+
default: boolean;
|
|
90
|
+
};
|
|
91
|
+
cols: {
|
|
92
|
+
type: NumberConstructor;
|
|
93
|
+
default: number;
|
|
94
|
+
};
|
|
95
|
+
itemText: {
|
|
96
|
+
type: import("vue").PropType<string | ((item: any) => string)>;
|
|
97
|
+
default: string;
|
|
98
|
+
};
|
|
99
|
+
itemValue: {
|
|
100
|
+
type: import("vue").PropType<string | ((item: any) => any)>;
|
|
101
|
+
default: string;
|
|
102
|
+
};
|
|
103
|
+
disabled: {
|
|
104
|
+
type: BooleanConstructor;
|
|
105
|
+
default: boolean;
|
|
106
|
+
};
|
|
107
|
+
}>> & Readonly<{
|
|
108
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
109
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
110
|
+
}>, {
|
|
111
|
+
items: any[];
|
|
112
|
+
multiple: boolean;
|
|
113
|
+
itemText: string | ((item: any) => string);
|
|
114
|
+
itemValue: string | ((item: any) => any);
|
|
115
|
+
disabled: boolean;
|
|
116
|
+
clearable: boolean;
|
|
117
|
+
cols: number;
|
|
118
|
+
menuProps: Record<string, any>;
|
|
119
|
+
chipProps: Record<string, any>;
|
|
120
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
121
|
+
export default _default;
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import b from "./BT-Select-Inline.vue2.mjs";
|
|
2
|
+
import { resolveComponent as o, openBlock as n, createBlock as l, mergeProps as p, withCtx as t, withModifiers as B, createCommentVNode as _, createVNode as r, createTextVNode as d, toDisplayString as v, createElementBlock as N, Fragment as P, renderList as S } from "vue";
|
|
3
|
+
import "./BT-Select-Inline.vue3.mjs";
|
|
4
|
+
import V from "../_virtual/_plugin-vue_export-helper.mjs";
|
|
5
|
+
function z(e, i, s, E, T, D) {
|
|
6
|
+
const a = o("v-icon"), u = o("v-list-item"), f = o("v-col"), k = o("v-row"), h = o("v-virtual-scroll"), w = o("v-card"), y = o("v-menu"), C = o("v-chip");
|
|
7
|
+
return n(), l(C, p(s.chipProps, { disabled: e.disabled }), {
|
|
8
|
+
append: t(() => [
|
|
9
|
+
e.clearable && !e.isEmpty ? (n(), l(a, {
|
|
10
|
+
key: 0,
|
|
11
|
+
size: "small",
|
|
12
|
+
icon: "$close",
|
|
13
|
+
onClick: i[0] || (i[0] = B((m) => e.clear(), ["stop"]))
|
|
14
|
+
})) : _("", !0),
|
|
15
|
+
r(a, {
|
|
16
|
+
size: "small",
|
|
17
|
+
icon: "$chevron-down"
|
|
18
|
+
})
|
|
19
|
+
]),
|
|
20
|
+
default: t(() => [
|
|
21
|
+
d(" " + v(e.selection ?? e.selectedStr) + " ", 1),
|
|
22
|
+
r(y, p({ activator: "parent" }, s.menuProps, {
|
|
23
|
+
"close-on-content-click": !e.multiple
|
|
24
|
+
}), {
|
|
25
|
+
default: t(() => [
|
|
26
|
+
r(w, null, {
|
|
27
|
+
default: t(() => [
|
|
28
|
+
r(h, {
|
|
29
|
+
class: "pa-0 ma-0",
|
|
30
|
+
height: 170,
|
|
31
|
+
items: e.itemRows
|
|
32
|
+
}, {
|
|
33
|
+
default: t(({ index: m, item: $ }) => [
|
|
34
|
+
(n(), l(k, {
|
|
35
|
+
key: m,
|
|
36
|
+
"no-gutters": ""
|
|
37
|
+
}, {
|
|
38
|
+
default: t(() => [
|
|
39
|
+
(n(!0), N(P, null, S($, (c, g) => (n(), l(f, { key: g }, {
|
|
40
|
+
default: t(() => [
|
|
41
|
+
c ? (n(), l(u, {
|
|
42
|
+
key: 0,
|
|
43
|
+
class: "vcron-v-item",
|
|
44
|
+
onClick: (F) => e.select(c),
|
|
45
|
+
active: e.has(c)
|
|
46
|
+
}, {
|
|
47
|
+
default: t(() => [
|
|
48
|
+
d(v(c.text), 1)
|
|
49
|
+
]),
|
|
50
|
+
_: 2
|
|
51
|
+
}, 1032, ["onClick", "active"])) : _("", !0)
|
|
52
|
+
]),
|
|
53
|
+
_: 2
|
|
54
|
+
}, 1024))), 128))
|
|
55
|
+
]),
|
|
56
|
+
_: 2
|
|
57
|
+
}, 1024))
|
|
58
|
+
]),
|
|
59
|
+
_: 1
|
|
60
|
+
}, 8, ["items"])
|
|
61
|
+
]),
|
|
62
|
+
_: 1
|
|
63
|
+
})
|
|
64
|
+
]),
|
|
65
|
+
_: 1
|
|
66
|
+
}, 16, ["close-on-content-click"])
|
|
67
|
+
]),
|
|
68
|
+
_: 1
|
|
69
|
+
}, 16, ["disabled"]);
|
|
70
|
+
}
|
|
71
|
+
const q = /* @__PURE__ */ V(b, [["render", z]]);
|
|
72
|
+
export {
|
|
73
|
+
q as default
|
|
74
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { selectProps as s, setupSelect as a } from "../composables/select.mjs";
|
|
2
|
+
const r = {
|
|
3
|
+
inheritAttrs: !1,
|
|
4
|
+
name: "CustomSelect",
|
|
5
|
+
props: {
|
|
6
|
+
...s(),
|
|
7
|
+
menuProps: {
|
|
8
|
+
type: Object,
|
|
9
|
+
default: () => ({ maxHeight: "300px" })
|
|
10
|
+
},
|
|
11
|
+
chipProps: {
|
|
12
|
+
type: Object,
|
|
13
|
+
default: () => {
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
emits: ["update:model-value", "change"],
|
|
18
|
+
setup(e, t) {
|
|
19
|
+
return a(e, () => e.modelValue, t);
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
r as default
|
|
24
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import { ListProps } from '../composables/list.ts';
|
|
2
|
+
|
|
3
|
+
interface SelectProps extends ListProps<any, any, any> {
|
|
4
|
+
alwaysOpen?: boolean;
|
|
5
|
+
canRefresh?: boolean;
|
|
6
|
+
canSearch?: boolean;
|
|
7
|
+
canSelectNone?: boolean;
|
|
8
|
+
colClass?: string;
|
|
9
|
+
cols?: string | boolean;
|
|
10
|
+
density?: 'compact' | 'comfortable' | 'default';
|
|
11
|
+
height?: string;
|
|
12
|
+
hideDividers?: boolean;
|
|
13
|
+
isMobile?: boolean;
|
|
14
|
+
isEditing?: boolean;
|
|
15
|
+
isSelecting?: boolean;
|
|
16
|
+
items?: [];
|
|
17
|
+
itemSubtext?: string;
|
|
18
|
+
itemText?: string;
|
|
19
|
+
itemValue?: string;
|
|
20
|
+
label?: string;
|
|
21
|
+
lg?: string | boolean;
|
|
22
|
+
maxHeight?: string | number;
|
|
23
|
+
modelValue?: any;
|
|
24
|
+
md?: string | boolean;
|
|
25
|
+
nav?: string;
|
|
26
|
+
placeholder?: string;
|
|
27
|
+
prependIcon?: string;
|
|
28
|
+
showSettings?: boolean;
|
|
29
|
+
sm?: string | boolean;
|
|
30
|
+
subtextFilter?: string;
|
|
31
|
+
subtextFunction?: Function;
|
|
32
|
+
textFilter?: string;
|
|
33
|
+
textFunction?: Function;
|
|
34
|
+
transparent?: boolean;
|
|
35
|
+
useVirtualScroller?: boolean;
|
|
36
|
+
}
|
|
37
|
+
declare function openList(): void;
|
|
38
|
+
declare function selectItem(item: any): void;
|
|
39
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SelectProps>, {
|
|
40
|
+
canRefresh: boolean;
|
|
41
|
+
density: string;
|
|
42
|
+
eager: boolean;
|
|
43
|
+
height: undefined;
|
|
44
|
+
isEditing: undefined;
|
|
45
|
+
maxHeight: undefined;
|
|
46
|
+
sortOrder: string;
|
|
47
|
+
cols: string;
|
|
48
|
+
lg: boolean;
|
|
49
|
+
md: boolean;
|
|
50
|
+
sm: string;
|
|
51
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
52
|
+
"update:modelValue": (item: any) => void;
|
|
53
|
+
change: (item: any) => void;
|
|
54
|
+
deleted: (item: any) => void;
|
|
55
|
+
fetched: (item: any) => void;
|
|
56
|
+
input: (item: any) => void;
|
|
57
|
+
select: (item: any) => void;
|
|
58
|
+
confirm: (item: any) => void;
|
|
59
|
+
"mouse-over-item": (item: any) => void;
|
|
60
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SelectProps>, {
|
|
61
|
+
canRefresh: boolean;
|
|
62
|
+
density: string;
|
|
63
|
+
eager: boolean;
|
|
64
|
+
height: undefined;
|
|
65
|
+
isEditing: undefined;
|
|
66
|
+
maxHeight: undefined;
|
|
67
|
+
sortOrder: string;
|
|
68
|
+
cols: string;
|
|
69
|
+
lg: boolean;
|
|
70
|
+
md: boolean;
|
|
71
|
+
sm: string;
|
|
72
|
+
}>>> & Readonly<{
|
|
73
|
+
onInput?: ((item: any) => any) | undefined;
|
|
74
|
+
onSelect?: ((item: any) => any) | undefined;
|
|
75
|
+
onChange?: ((item: any) => any) | undefined;
|
|
76
|
+
onDeleted?: ((item: any) => any) | undefined;
|
|
77
|
+
onFetched?: ((item: any) => any) | undefined;
|
|
78
|
+
onConfirm?: ((item: any) => any) | undefined;
|
|
79
|
+
"onMouse-over-item"?: ((item: any) => any) | undefined;
|
|
80
|
+
"onUpdate:modelValue"?: ((item: any) => any) | undefined;
|
|
81
|
+
}>, {
|
|
82
|
+
height: string;
|
|
83
|
+
eager: boolean;
|
|
84
|
+
density: "default" | "comfortable" | "compact";
|
|
85
|
+
maxHeight: string | number;
|
|
86
|
+
isEditing: boolean;
|
|
87
|
+
sm: string | boolean;
|
|
88
|
+
cols: string | boolean;
|
|
89
|
+
lg: string | boolean;
|
|
90
|
+
md: string | boolean;
|
|
91
|
+
canRefresh: boolean;
|
|
92
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
93
|
+
actions?(_: {}): any;
|
|
94
|
+
actionsRight?(_: {}): any;
|
|
95
|
+
settings?(_: {}): any;
|
|
96
|
+
item?(_: {
|
|
97
|
+
item: any;
|
|
98
|
+
index: number;
|
|
99
|
+
size: string;
|
|
100
|
+
isActive: boolean;
|
|
101
|
+
selectItem: typeof selectItem;
|
|
102
|
+
}): any;
|
|
103
|
+
default?(_: {
|
|
104
|
+
item: any;
|
|
105
|
+
index: number;
|
|
106
|
+
size: string;
|
|
107
|
+
}): any;
|
|
108
|
+
topItem?(_: {}): any;
|
|
109
|
+
bottomItem?(_: {}): any;
|
|
110
|
+
selected?(_: {
|
|
111
|
+
item: any;
|
|
112
|
+
open: typeof openList;
|
|
113
|
+
}): any;
|
|
114
|
+
}>;
|
|
115
|
+
export default _default;
|
|
116
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
117
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
118
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
119
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
120
|
+
} : {
|
|
121
|
+
type: import('vue').PropType<T[K]>;
|
|
122
|
+
required: true;
|
|
123
|
+
};
|
|
124
|
+
};
|
|
125
|
+
type __VLS_WithDefaults<P, D> = {
|
|
126
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
127
|
+
default: D[K];
|
|
128
|
+
}> : P[K];
|
|
129
|
+
};
|
|
130
|
+
type __VLS_Prettify<T> = {
|
|
131
|
+
[K in keyof T]: T[K];
|
|
132
|
+
} & {};
|
|
133
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
134
|
+
new (): {
|
|
135
|
+
$slots: S;
|
|
136
|
+
};
|
|
137
|
+
};
|