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,414 @@
|
|
|
1
|
+
import { defineComponent as ne, ref as k, inject as I, computed as v, resolveComponent as a, openBlock as s, createBlock as r, normalizeClass as oe, withCtx as o, createElementVNode as T, renderSlot as d, createVNode as u, createTextVNode as m, mergeProps as E, unref as i, createCommentVNode as p, toDisplayString as g, createElementBlock as L, Fragment as O, renderList as se } from "vue";
|
|
2
|
+
import { useList as ie } from "../composables/list.mjs";
|
|
3
|
+
import { useFilters as ae } from "../composables/filters.mjs";
|
|
4
|
+
import { nestedValue as H, isLengthyArray as re } from "../composables/helpers.mjs";
|
|
5
|
+
const ue = { class: "d-flex align-center" }, de = { class: "d-flex align-center" }, ge = /* @__PURE__ */ ne({
|
|
6
|
+
inheritAttrs: !1,
|
|
7
|
+
__name: "BT-Select-List-Box",
|
|
8
|
+
props: {
|
|
9
|
+
alwaysOpen: { type: Boolean },
|
|
10
|
+
canRefresh: { type: Boolean, default: !0 },
|
|
11
|
+
canSearch: { type: Boolean },
|
|
12
|
+
canSelectNone: { type: Boolean },
|
|
13
|
+
colClass: {},
|
|
14
|
+
cols: { type: [String, Boolean], default: "12" },
|
|
15
|
+
density: { default: "default" },
|
|
16
|
+
height: { default: void 0 },
|
|
17
|
+
hideDividers: { type: Boolean },
|
|
18
|
+
isMobile: { type: Boolean },
|
|
19
|
+
isEditing: { type: Boolean, default: void 0 },
|
|
20
|
+
isSelecting: { type: Boolean },
|
|
21
|
+
items: {},
|
|
22
|
+
itemSubtext: {},
|
|
23
|
+
itemText: {},
|
|
24
|
+
itemValue: {},
|
|
25
|
+
label: {},
|
|
26
|
+
lg: { type: [String, Boolean], default: !1 },
|
|
27
|
+
maxHeight: { default: void 0 },
|
|
28
|
+
modelValue: {},
|
|
29
|
+
md: { type: [String, Boolean], default: !1 },
|
|
30
|
+
nav: {},
|
|
31
|
+
placeholder: {},
|
|
32
|
+
prependIcon: {},
|
|
33
|
+
showSettings: { type: Boolean },
|
|
34
|
+
sm: { type: [String, Boolean], default: "6" },
|
|
35
|
+
subtextFilter: {},
|
|
36
|
+
subtextFunction: {},
|
|
37
|
+
textFilter: {},
|
|
38
|
+
textFunction: {},
|
|
39
|
+
transparent: { type: Boolean },
|
|
40
|
+
useVirtualScroller: { type: Boolean },
|
|
41
|
+
addBladeName: {},
|
|
42
|
+
additionalUrl: {},
|
|
43
|
+
bladeGroup: {},
|
|
44
|
+
bladeName: {},
|
|
45
|
+
bladeStartShowing: { type: Boolean },
|
|
46
|
+
canSelect: { type: Boolean },
|
|
47
|
+
canUnselect: { type: Boolean },
|
|
48
|
+
closeBladeNames: {},
|
|
49
|
+
confirmOnDelete: { type: Boolean },
|
|
50
|
+
customFilters: {},
|
|
51
|
+
dateFrom: {},
|
|
52
|
+
dateTo: {},
|
|
53
|
+
defaultFilters: {},
|
|
54
|
+
eager: { type: Boolean, default: !0 },
|
|
55
|
+
errorMsg: {},
|
|
56
|
+
filterToggle: { type: Boolean },
|
|
57
|
+
headers: {},
|
|
58
|
+
hideActions: { type: Boolean },
|
|
59
|
+
idSelector: {},
|
|
60
|
+
ignoreID: { type: Boolean },
|
|
61
|
+
inactiveProp: {},
|
|
62
|
+
isSingle: { type: Boolean },
|
|
63
|
+
itemBladeName: {},
|
|
64
|
+
itemID: {},
|
|
65
|
+
itemsPerPage: {},
|
|
66
|
+
keyStrategy: {},
|
|
67
|
+
loadingMsg: {},
|
|
68
|
+
localFilters: {},
|
|
69
|
+
localOnly: { type: Boolean },
|
|
70
|
+
navType: {},
|
|
71
|
+
onCanDelete: {},
|
|
72
|
+
onCanDeleteAsync: {},
|
|
73
|
+
onCanIntegrate: {},
|
|
74
|
+
onCanRestore: {},
|
|
75
|
+
onCanRestoreAsync: {},
|
|
76
|
+
onCanSave: {},
|
|
77
|
+
onCanSaveAsync: {},
|
|
78
|
+
onCanSelectItem: {},
|
|
79
|
+
onDeleteAsync: {},
|
|
80
|
+
onDeleteSuccessAsync: {},
|
|
81
|
+
onError: {},
|
|
82
|
+
onFilter: {},
|
|
83
|
+
onFinished: {},
|
|
84
|
+
onGetAsync: {},
|
|
85
|
+
onGetSingleAsync: {},
|
|
86
|
+
onGetSaveAsync: {},
|
|
87
|
+
onGetSingleSuccessAsync: {},
|
|
88
|
+
onGetSuccessAsync: {},
|
|
89
|
+
onRestoreAsync: {},
|
|
90
|
+
onRestoreSuccessAsync: {},
|
|
91
|
+
onSaveAsync: {},
|
|
92
|
+
onSaveSuccessAsync: {},
|
|
93
|
+
onSelectItem: {},
|
|
94
|
+
onSyncAsync: {},
|
|
95
|
+
onUpdateAsyncItem: {},
|
|
96
|
+
paginate: {},
|
|
97
|
+
params: {},
|
|
98
|
+
proxyID: {},
|
|
99
|
+
proxyKey: {},
|
|
100
|
+
refreshOnChange: { type: Boolean },
|
|
101
|
+
queryParams: {},
|
|
102
|
+
refreshLiteToggle: { type: Boolean },
|
|
103
|
+
refreshToggle: { type: Boolean },
|
|
104
|
+
searchKey: {},
|
|
105
|
+
searchProps: {},
|
|
106
|
+
searchStr: {},
|
|
107
|
+
selectProps: {},
|
|
108
|
+
sortDirection: {},
|
|
109
|
+
sortProp: {},
|
|
110
|
+
startEditing: { type: Boolean },
|
|
111
|
+
startShowingInactive: { type: Boolean },
|
|
112
|
+
startShowingSearch: { type: Boolean },
|
|
113
|
+
storeMode: {},
|
|
114
|
+
storageMode: {},
|
|
115
|
+
trackSearchQuery: { type: Boolean },
|
|
116
|
+
useBladeSrc: { type: Boolean },
|
|
117
|
+
useRouteSrc: { type: Boolean },
|
|
118
|
+
variant: {}
|
|
119
|
+
},
|
|
120
|
+
emits: ["update:modelValue", "change", "deleted", "fetched", "input", "select", "confirm", "mouse-over-item"],
|
|
121
|
+
setup(G, { emit: U }) {
|
|
122
|
+
const F = U, l = G, y = k((l.alwaysOpen || l.isSelecting) ?? !1), f = I("size", () => k("small"), !0), j = I("isEditing", () => k(!1), !0), K = v(() => l.isEditing ?? j.value), c = ie(l, F, {
|
|
123
|
+
// useBladeSrc: false,
|
|
124
|
+
// useRouteSrc: false
|
|
125
|
+
}), D = ae(), M = v(() => (e) => {
|
|
126
|
+
let t = l.subtextFunction != null ? l.subtextFunction(e) : e;
|
|
127
|
+
return t = l.itemSubtext != null ? H(t, l.itemSubtext) : t, l.subtextFilter != null ? D.findFilter(l.subtextFilter)(t) : t;
|
|
128
|
+
}), C = v(() => (e) => {
|
|
129
|
+
let t = l.textFunction != null ? l.textFunction(e) : e;
|
|
130
|
+
return t = l.itemText != null ? H(t, l.itemText) : t, l.textFilter != null ? D.findFilter(l.textFilter)(t) : t;
|
|
131
|
+
}), B = v(() => (e) => (l.itemValue ? e[l.itemValue] : e) == l.modelValue);
|
|
132
|
+
function N() {
|
|
133
|
+
K.value && (y.value = !0);
|
|
134
|
+
}
|
|
135
|
+
function S(e) {
|
|
136
|
+
if (y.value = !1, e != null || l.canSelectNone) {
|
|
137
|
+
let t = e;
|
|
138
|
+
e != null && l.itemValue != null && (t = e[l.itemValue]), F("update:modelValue", t), F("change", t);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
const z = v(() => {
|
|
142
|
+
const e = l.itemValue ?? "id";
|
|
143
|
+
return l.modelValue != null && c.asyncItems.value != null ? c.asyncItems.value.find((t) => t[e] == l.modelValue) : null;
|
|
144
|
+
}), V = I("isMobile", () => k(!1), !0), q = v(() => l.isMobile ?? V.value ? !1 : l.lg), x = v(() => l.isMobile ?? V.value ? !1 : l.md), Q = v(() => l.isMobile ?? V.value ? !1 : l.sm);
|
|
145
|
+
return (e, t) => {
|
|
146
|
+
const P = a("v-icon"), $ = a("v-btn"), A = a("v-list"), R = a("v-menu"), h = a("v-list-item"), J = a("v-text-field"), _ = a("v-list-item-title"), w = a("v-list-item-subtitle"), W = a("v-virtual-scroll"), X = a("v-divider"), Y = a("v-slide-x-transition"), Z = a("v-slide-y-transition"), ee = a("v-progress-circular"), te = a("v-overlay"), le = a("v-col");
|
|
147
|
+
return s(), r(le, {
|
|
148
|
+
class: oe(e.colClass),
|
|
149
|
+
lg: q.value,
|
|
150
|
+
md: x.value,
|
|
151
|
+
sm: Q.value,
|
|
152
|
+
cols: e.cols
|
|
153
|
+
}, {
|
|
154
|
+
default: o(() => [
|
|
155
|
+
!e.alwaysOpen && y.value ? (s(), r(h, {
|
|
156
|
+
key: 0,
|
|
157
|
+
onClick: t[0] || (t[0] = (n) => y.value = !1),
|
|
158
|
+
density: e.density,
|
|
159
|
+
subtitle: e.label
|
|
160
|
+
}, {
|
|
161
|
+
append: o(() => [
|
|
162
|
+
T("div", ue, [
|
|
163
|
+
d(e.$slots, "actions"),
|
|
164
|
+
u(P, null, {
|
|
165
|
+
default: o(() => t[6] || (t[6] = [
|
|
166
|
+
m("$chevron-up")
|
|
167
|
+
])),
|
|
168
|
+
_: 1
|
|
169
|
+
}),
|
|
170
|
+
d(e.$slots, "actionsRight"),
|
|
171
|
+
e.showSettings ? (s(), r(R, {
|
|
172
|
+
key: 0,
|
|
173
|
+
"offset-y": "",
|
|
174
|
+
"close-on-content-click": !1
|
|
175
|
+
}, {
|
|
176
|
+
activator: o(({ props: n }) => [
|
|
177
|
+
u($, E({
|
|
178
|
+
icon: "$cog",
|
|
179
|
+
size: i(f),
|
|
180
|
+
title: "Settings"
|
|
181
|
+
}, n), null, 16, ["size"])
|
|
182
|
+
]),
|
|
183
|
+
default: o(() => [
|
|
184
|
+
u(A, null, {
|
|
185
|
+
default: o(() => [
|
|
186
|
+
d(e.$slots, "settings")
|
|
187
|
+
]),
|
|
188
|
+
_: 3
|
|
189
|
+
})
|
|
190
|
+
]),
|
|
191
|
+
_: 3
|
|
192
|
+
})) : p("", !0)
|
|
193
|
+
])
|
|
194
|
+
]),
|
|
195
|
+
_: 3
|
|
196
|
+
}, 8, ["density", "subtitle"])) : p("", !0),
|
|
197
|
+
u(Z, {
|
|
198
|
+
"hide-on-leave": "",
|
|
199
|
+
group: ""
|
|
200
|
+
}, {
|
|
201
|
+
default: o(() => [
|
|
202
|
+
(e.alwaysOpen || y.value) && i(re)(e.searchProps) ? (s(), r(J, {
|
|
203
|
+
"onClick:prependInner": t[2] || (t[2] = (n) => i(c).searchString.value = void 0),
|
|
204
|
+
"hide-details": "",
|
|
205
|
+
key: "1",
|
|
206
|
+
placeholder: "Search",
|
|
207
|
+
"prepend-inner-icon": i(c).searchString.value != null ? "$close" : void 0,
|
|
208
|
+
modelValue: i(c).searchString.value,
|
|
209
|
+
"onUpdate:modelValue": t[3] || (t[3] = (n) => i(c).searchString.value = n)
|
|
210
|
+
}, {
|
|
211
|
+
"append-inner": o(() => [
|
|
212
|
+
e.canRefresh ? (s(), r($, {
|
|
213
|
+
key: 0,
|
|
214
|
+
onClick: t[1] || (t[1] = (n) => i(c).refresh({ deepRefresh: !0 })),
|
|
215
|
+
icon: "$refresh",
|
|
216
|
+
size: i(f),
|
|
217
|
+
variant: "text"
|
|
218
|
+
}, null, 8, ["size"])) : p("", !0)
|
|
219
|
+
]),
|
|
220
|
+
_: 1
|
|
221
|
+
}, 8, ["prepend-inner-icon", "modelValue"])) : p("", !0),
|
|
222
|
+
(e.alwaysOpen || y.value) && e.useVirtualScroller ? (s(), r(W, {
|
|
223
|
+
height: e.height,
|
|
224
|
+
"item-height": "50",
|
|
225
|
+
items: i(c).filteredItems.value,
|
|
226
|
+
key: "2",
|
|
227
|
+
maxHeight: e.maxHeight
|
|
228
|
+
}, {
|
|
229
|
+
default: o(({ item: n }) => [
|
|
230
|
+
d(e.$slots, "item", {
|
|
231
|
+
item: n,
|
|
232
|
+
selectItem: S(n),
|
|
233
|
+
active: B.value(n)
|
|
234
|
+
}, () => [
|
|
235
|
+
u(h, {
|
|
236
|
+
onClick: (b) => S(n),
|
|
237
|
+
active: B.value(n),
|
|
238
|
+
color: "primary",
|
|
239
|
+
density: e.density
|
|
240
|
+
}, {
|
|
241
|
+
default: o(() => [
|
|
242
|
+
d(e.$slots, "default", { item: n }, () => [
|
|
243
|
+
e.itemText != null || e.textFilter != null || e.textFunction != null ? (s(), r(_, { key: 0 }, {
|
|
244
|
+
default: o(() => [
|
|
245
|
+
m(g(C.value(n)), 1)
|
|
246
|
+
]),
|
|
247
|
+
_: 2
|
|
248
|
+
}, 1024)) : p("", !0),
|
|
249
|
+
e.itemSubtext != null || e.subtextFilter != null || e.subtextFunction != null ? (s(), r(w, { key: 1 }, {
|
|
250
|
+
default: o(() => [
|
|
251
|
+
m(g(M.value(n)), 1)
|
|
252
|
+
]),
|
|
253
|
+
_: 2
|
|
254
|
+
}, 1024)) : p("", !0)
|
|
255
|
+
])
|
|
256
|
+
]),
|
|
257
|
+
_: 2
|
|
258
|
+
}, 1032, ["onClick", "active", "density"])
|
|
259
|
+
])
|
|
260
|
+
]),
|
|
261
|
+
_: 3
|
|
262
|
+
}, 8, ["height", "items", "maxHeight"])) : e.alwaysOpen || y.value ? (s(), r(A, {
|
|
263
|
+
"bg-color": e.transparent ? "transparent" : void 0,
|
|
264
|
+
height: e.height,
|
|
265
|
+
maxHeight: e.maxHeight,
|
|
266
|
+
key: "3",
|
|
267
|
+
width: "100%"
|
|
268
|
+
}, {
|
|
269
|
+
default: o(() => [
|
|
270
|
+
d(e.$slots, "topItem"),
|
|
271
|
+
e.canSelectNone ? (s(), r(h, {
|
|
272
|
+
key: "-1",
|
|
273
|
+
density: e.density,
|
|
274
|
+
onClick: t[4] || (t[4] = (n) => S(null)),
|
|
275
|
+
subtitle: "(Select None)"
|
|
276
|
+
}, null, 8, ["density"])) : p("", !0),
|
|
277
|
+
u(Y, {
|
|
278
|
+
group: "",
|
|
279
|
+
"hide-on-leave": ""
|
|
280
|
+
}, {
|
|
281
|
+
default: o(() => [
|
|
282
|
+
(s(!0), L(O, null, se(i(c).filteredItems.value, (n, b) => (s(), L(O, {
|
|
283
|
+
key: `${n.id ?? b}-list-item`
|
|
284
|
+
}, [
|
|
285
|
+
d(e.$slots, "item", {
|
|
286
|
+
item: n,
|
|
287
|
+
index: b,
|
|
288
|
+
size: i(f),
|
|
289
|
+
isActive: B.value(n),
|
|
290
|
+
selectItem: S
|
|
291
|
+
}, () => [
|
|
292
|
+
u(h, {
|
|
293
|
+
active: B.value(n),
|
|
294
|
+
density: e.density,
|
|
295
|
+
"prepend-icon": e.prependIcon,
|
|
296
|
+
value: n,
|
|
297
|
+
onClick: (ce) => S(n)
|
|
298
|
+
}, {
|
|
299
|
+
default: o(() => [
|
|
300
|
+
d(e.$slots, "default", {
|
|
301
|
+
item: n,
|
|
302
|
+
index: b,
|
|
303
|
+
size: i(f)
|
|
304
|
+
}, () => [
|
|
305
|
+
e.itemText != null || e.textFilter != null || e.textFunction != null ? (s(), r(_, { key: 0 }, {
|
|
306
|
+
default: o(() => [
|
|
307
|
+
m(g(C.value(n)), 1)
|
|
308
|
+
]),
|
|
309
|
+
_: 2
|
|
310
|
+
}, 1024)) : p("", !0),
|
|
311
|
+
e.itemSubtext != null || e.subtextFilter != null || e.subtextFunction != null ? (s(), r(w, { key: 1 }, {
|
|
312
|
+
default: o(() => [
|
|
313
|
+
m(g(M.value(n)), 1)
|
|
314
|
+
]),
|
|
315
|
+
_: 2
|
|
316
|
+
}, 1024)) : p("", !0)
|
|
317
|
+
])
|
|
318
|
+
]),
|
|
319
|
+
_: 2
|
|
320
|
+
}, 1032, ["active", "density", "prepend-icon", "value", "onClick"])
|
|
321
|
+
]),
|
|
322
|
+
e.hideDividers !== !0 ? (s(), r(X, { key: 0 })) : p("", !0)
|
|
323
|
+
], 64))), 128))
|
|
324
|
+
]),
|
|
325
|
+
_: 3
|
|
326
|
+
}),
|
|
327
|
+
d(e.$slots, "bottomItem")
|
|
328
|
+
]),
|
|
329
|
+
_: 3
|
|
330
|
+
}, 8, ["bg-color", "height", "maxHeight"])) : d(e.$slots, "selected", {
|
|
331
|
+
key: 3,
|
|
332
|
+
item: z.value,
|
|
333
|
+
open: N
|
|
334
|
+
}, () => [
|
|
335
|
+
u(h, {
|
|
336
|
+
onClick: N,
|
|
337
|
+
density: e.density,
|
|
338
|
+
key: "4"
|
|
339
|
+
}, {
|
|
340
|
+
default: o(() => [
|
|
341
|
+
e.label != null ? (s(), r(w, { key: 0 }, {
|
|
342
|
+
default: o(() => [
|
|
343
|
+
m(g(e.label), 1)
|
|
344
|
+
]),
|
|
345
|
+
_: 1
|
|
346
|
+
})) : p("", !0),
|
|
347
|
+
u(_, null, {
|
|
348
|
+
default: o(() => [
|
|
349
|
+
m(g(C.value(z.value) ?? e.placeholder), 1)
|
|
350
|
+
]),
|
|
351
|
+
_: 1
|
|
352
|
+
})
|
|
353
|
+
]),
|
|
354
|
+
append: o(() => [
|
|
355
|
+
T("div", de, [
|
|
356
|
+
d(e.$slots, "actions"),
|
|
357
|
+
u(P, null, {
|
|
358
|
+
default: o(() => t[7] || (t[7] = [
|
|
359
|
+
m("$chevron-down")
|
|
360
|
+
])),
|
|
361
|
+
_: 1
|
|
362
|
+
}),
|
|
363
|
+
d(e.$slots, "actionsRight"),
|
|
364
|
+
e.showSettings ? (s(), r(R, {
|
|
365
|
+
key: 0,
|
|
366
|
+
"offset-y": "",
|
|
367
|
+
"close-on-content-click": !1
|
|
368
|
+
}, {
|
|
369
|
+
activator: o(({ props: n }) => [
|
|
370
|
+
u($, E({ icon: "" }, n, {
|
|
371
|
+
size: i(f),
|
|
372
|
+
title: "Settings"
|
|
373
|
+
}), null, 16, ["size"])
|
|
374
|
+
]),
|
|
375
|
+
default: o(() => [
|
|
376
|
+
u(A, null, {
|
|
377
|
+
default: o(() => [
|
|
378
|
+
d(e.$slots, "settings")
|
|
379
|
+
]),
|
|
380
|
+
_: 3
|
|
381
|
+
})
|
|
382
|
+
]),
|
|
383
|
+
_: 3
|
|
384
|
+
})) : p("", !0)
|
|
385
|
+
])
|
|
386
|
+
]),
|
|
387
|
+
_: 3
|
|
388
|
+
}, 8, ["density"])
|
|
389
|
+
])
|
|
390
|
+
]),
|
|
391
|
+
_: 3
|
|
392
|
+
}),
|
|
393
|
+
u(te, {
|
|
394
|
+
modelValue: i(c).isLoading.value,
|
|
395
|
+
"onUpdate:modelValue": t[5] || (t[5] = (n) => i(c).isLoading.value = n),
|
|
396
|
+
class: "align-center justify-center text-center",
|
|
397
|
+
contained: "",
|
|
398
|
+
persistent: ""
|
|
399
|
+
}, {
|
|
400
|
+
default: o(() => [
|
|
401
|
+
u(ee, { indeterminate: "" }),
|
|
402
|
+
T("p", null, g(i(c).loadingMsg.value), 1)
|
|
403
|
+
]),
|
|
404
|
+
_: 1
|
|
405
|
+
}, 8, ["modelValue"])
|
|
406
|
+
]),
|
|
407
|
+
_: 3
|
|
408
|
+
}, 8, ["class", "lg", "md", "sm", "cols"]);
|
|
409
|
+
};
|
|
410
|
+
}
|
|
411
|
+
});
|
|
412
|
+
export {
|
|
413
|
+
ge as default
|
|
414
|
+
};
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { ListProps } from '../composables/list.ts';
|
|
2
|
+
import { FieldVariant } from '../types.ts';
|
|
3
|
+
|
|
4
|
+
interface SelectProps extends ListProps<any, any, any> {
|
|
5
|
+
additionalUrl?: string;
|
|
6
|
+
canRefresh?: boolean;
|
|
7
|
+
canSelectNone?: boolean;
|
|
8
|
+
fieldVariant?: FieldVariant;
|
|
9
|
+
items?: any[];
|
|
10
|
+
itemText?: string;
|
|
11
|
+
itemValue?: string;
|
|
12
|
+
multiple?: boolean;
|
|
13
|
+
nav?: string;
|
|
14
|
+
required?: boolean;
|
|
15
|
+
rules?: any;
|
|
16
|
+
textFilter?: string;
|
|
17
|
+
}
|
|
18
|
+
declare const _default: import('vue').DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SelectProps>, {
|
|
19
|
+
eager: boolean;
|
|
20
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
|
+
change: (item: any) => void;
|
|
22
|
+
deleted: (item: any) => void;
|
|
23
|
+
fetched: (item: any) => void;
|
|
24
|
+
input: (item: any) => void;
|
|
25
|
+
select: (item: any) => void;
|
|
26
|
+
confirm: (item: any) => void;
|
|
27
|
+
"mouse-over-item": (item: any) => void;
|
|
28
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SelectProps>, {
|
|
29
|
+
eager: boolean;
|
|
30
|
+
}>>> & Readonly<{
|
|
31
|
+
onInput?: ((item: any) => any) | undefined;
|
|
32
|
+
onSelect?: ((item: any) => any) | undefined;
|
|
33
|
+
onChange?: ((item: any) => any) | undefined;
|
|
34
|
+
onDeleted?: ((item: any) => any) | undefined;
|
|
35
|
+
onFetched?: ((item: any) => any) | undefined;
|
|
36
|
+
onConfirm?: ((item: any) => any) | undefined;
|
|
37
|
+
"onMouse-over-item"?: ((item: any) => any) | undefined;
|
|
38
|
+
}>, {
|
|
39
|
+
eager: boolean;
|
|
40
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
41
|
+
export default _default;
|
|
42
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
43
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
44
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
45
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
46
|
+
} : {
|
|
47
|
+
type: import('vue').PropType<T[K]>;
|
|
48
|
+
required: true;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
type __VLS_WithDefaults<P, D> = {
|
|
52
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
53
|
+
default: D[K];
|
|
54
|
+
}> : P[K];
|
|
55
|
+
};
|
|
56
|
+
type __VLS_Prettify<T> = {
|
|
57
|
+
[K in keyof T]: T[K];
|
|
58
|
+
} & {};
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import { defineComponent as d, computed as u, resolveComponent as y, openBlock as v, createBlock as S, mergeProps as g, unref as o } from "vue";
|
|
2
|
+
import { useList as B } from "../composables/list.mjs";
|
|
3
|
+
import { useNavigation as f } from "../composables/navigation.mjs";
|
|
4
|
+
import { TestRequired as h } from "../composables/rules.mjs";
|
|
5
|
+
const D = /* @__PURE__ */ d({
|
|
6
|
+
__name: "BT-Select-Simple",
|
|
7
|
+
props: {
|
|
8
|
+
additionalUrl: {},
|
|
9
|
+
canRefresh: { type: Boolean },
|
|
10
|
+
canSelectNone: { type: Boolean },
|
|
11
|
+
fieldVariant: {},
|
|
12
|
+
items: {},
|
|
13
|
+
itemText: {},
|
|
14
|
+
itemValue: {},
|
|
15
|
+
multiple: { type: Boolean },
|
|
16
|
+
nav: {},
|
|
17
|
+
required: { type: Boolean },
|
|
18
|
+
rules: {},
|
|
19
|
+
textFilter: {},
|
|
20
|
+
addBladeName: {},
|
|
21
|
+
bladeGroup: {},
|
|
22
|
+
bladeName: {},
|
|
23
|
+
bladeStartShowing: { type: Boolean },
|
|
24
|
+
canSelect: { type: Boolean },
|
|
25
|
+
canUnselect: { type: Boolean },
|
|
26
|
+
closeBladeNames: {},
|
|
27
|
+
confirmOnDelete: { type: Boolean },
|
|
28
|
+
customFilters: {},
|
|
29
|
+
dateFrom: {},
|
|
30
|
+
dateTo: {},
|
|
31
|
+
defaultFilters: {},
|
|
32
|
+
eager: { type: Boolean, default: !0 },
|
|
33
|
+
errorMsg: {},
|
|
34
|
+
filterToggle: { type: Boolean },
|
|
35
|
+
headers: {},
|
|
36
|
+
hideActions: { type: Boolean },
|
|
37
|
+
idSelector: {},
|
|
38
|
+
ignoreID: { type: Boolean },
|
|
39
|
+
inactiveProp: {},
|
|
40
|
+
isSingle: { type: Boolean },
|
|
41
|
+
itemBladeName: {},
|
|
42
|
+
itemID: {},
|
|
43
|
+
itemsPerPage: {},
|
|
44
|
+
keyStrategy: {},
|
|
45
|
+
loadingMsg: {},
|
|
46
|
+
localFilters: {},
|
|
47
|
+
localOnly: { type: Boolean },
|
|
48
|
+
navType: {},
|
|
49
|
+
onCanDelete: {},
|
|
50
|
+
onCanDeleteAsync: {},
|
|
51
|
+
onCanIntegrate: {},
|
|
52
|
+
onCanRestore: {},
|
|
53
|
+
onCanRestoreAsync: {},
|
|
54
|
+
onCanSave: {},
|
|
55
|
+
onCanSaveAsync: {},
|
|
56
|
+
onCanSelectItem: {},
|
|
57
|
+
onDeleteAsync: {},
|
|
58
|
+
onDeleteSuccessAsync: {},
|
|
59
|
+
onError: {},
|
|
60
|
+
onFilter: {},
|
|
61
|
+
onFinished: {},
|
|
62
|
+
onGetAsync: {},
|
|
63
|
+
onGetSingleAsync: {},
|
|
64
|
+
onGetSaveAsync: {},
|
|
65
|
+
onGetSingleSuccessAsync: {},
|
|
66
|
+
onGetSuccessAsync: {},
|
|
67
|
+
onRestoreAsync: {},
|
|
68
|
+
onRestoreSuccessAsync: {},
|
|
69
|
+
onSaveAsync: {},
|
|
70
|
+
onSaveSuccessAsync: {},
|
|
71
|
+
onSelectItem: {},
|
|
72
|
+
onSyncAsync: {},
|
|
73
|
+
onUpdateAsyncItem: {},
|
|
74
|
+
paginate: {},
|
|
75
|
+
params: {},
|
|
76
|
+
proxyID: {},
|
|
77
|
+
proxyKey: {},
|
|
78
|
+
refreshOnChange: { type: Boolean },
|
|
79
|
+
queryParams: {},
|
|
80
|
+
refreshLiteToggle: { type: Boolean },
|
|
81
|
+
refreshToggle: { type: Boolean },
|
|
82
|
+
searchKey: {},
|
|
83
|
+
searchProps: {},
|
|
84
|
+
searchStr: {},
|
|
85
|
+
selectProps: {},
|
|
86
|
+
sortDirection: {},
|
|
87
|
+
sortProp: {},
|
|
88
|
+
startEditing: { type: Boolean },
|
|
89
|
+
startShowingInactive: { type: Boolean },
|
|
90
|
+
startShowingSearch: { type: Boolean },
|
|
91
|
+
storeMode: {},
|
|
92
|
+
storageMode: {},
|
|
93
|
+
trackSearchQuery: { type: Boolean },
|
|
94
|
+
useBladeSrc: { type: Boolean },
|
|
95
|
+
useRouteSrc: { type: Boolean },
|
|
96
|
+
variant: {}
|
|
97
|
+
},
|
|
98
|
+
emits: ["change", "deleted", "fetched", "input", "select", "confirm", "mouse-over-item"],
|
|
99
|
+
setup(r, { emit: s }) {
|
|
100
|
+
const i = s, c = f(), t = r, p = t.itemText ?? (t.nav != null ? c.findItemText(t.nav) : void 0) ?? void 0, n = B(t, i), a = u(() => {
|
|
101
|
+
var e = [
|
|
102
|
+
...t.rules ?? []
|
|
103
|
+
];
|
|
104
|
+
return t.required && e.push(h), e.length > 0 ? e : void 0;
|
|
105
|
+
});
|
|
106
|
+
return (e, l) => {
|
|
107
|
+
const m = y("v-select");
|
|
108
|
+
return v(), S(m, g({
|
|
109
|
+
"append-icon": e.canRefresh ? "$refresh" : void 0,
|
|
110
|
+
clearable: e.canSelectNone,
|
|
111
|
+
"onClick:appendIcon": l[0] || (l[0] = (A) => o(n).refresh({ deepRefresh: !0 })),
|
|
112
|
+
"hide-details": a.value == null,
|
|
113
|
+
items: o(n).filteredItems.value,
|
|
114
|
+
"item-title": o(p),
|
|
115
|
+
"item-value": e.itemValue,
|
|
116
|
+
loading: o(n).isLoading.value,
|
|
117
|
+
multiple: e.multiple,
|
|
118
|
+
rules: a.value,
|
|
119
|
+
variant: e.fieldVariant
|
|
120
|
+
}, e.$attrs), null, 16, ["append-icon", "clearable", "hide-details", "items", "item-title", "item-value", "loading", "multiple", "rules", "variant"]);
|
|
121
|
+
};
|
|
122
|
+
}
|
|
123
|
+
});
|
|
124
|
+
export {
|
|
125
|
+
D as default
|
|
126
|
+
};
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { ListProps } from '../composables/list.ts';
|
|
2
|
+
import { FieldVariant } from '../types.ts';
|
|
3
|
+
|
|
4
|
+
interface SelectProps extends ListProps<any, any, any> {
|
|
5
|
+
additionalUrl?: string;
|
|
6
|
+
canRefresh?: boolean;
|
|
7
|
+
canSelectNone?: boolean;
|
|
8
|
+
fieldVariant?: FieldVariant;
|
|
9
|
+
items?: any[];
|
|
10
|
+
itemText?: string;
|
|
11
|
+
itemValue?: string;
|
|
12
|
+
multiple?: boolean;
|
|
13
|
+
nav?: string;
|
|
14
|
+
required?: boolean;
|
|
15
|
+
rules?: any;
|
|
16
|
+
textFilter?: string;
|
|
17
|
+
}
|
|
18
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SelectProps>, {
|
|
19
|
+
eager: boolean;
|
|
20
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
|
+
change: (item: any) => void;
|
|
22
|
+
deleted: (item: any) => void;
|
|
23
|
+
fetched: (item: any) => void;
|
|
24
|
+
input: (item: any) => void;
|
|
25
|
+
select: (item: any) => void;
|
|
26
|
+
confirm: (item: any) => void;
|
|
27
|
+
"mouse-over-item": (item: any) => void;
|
|
28
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<SelectProps>, {
|
|
29
|
+
eager: boolean;
|
|
30
|
+
}>>> & Readonly<{
|
|
31
|
+
onInput?: ((item: any) => any) | undefined;
|
|
32
|
+
onSelect?: ((item: any) => any) | undefined;
|
|
33
|
+
onChange?: ((item: any) => any) | undefined;
|
|
34
|
+
onDeleted?: ((item: any) => any) | undefined;
|
|
35
|
+
onFetched?: ((item: any) => any) | undefined;
|
|
36
|
+
onConfirm?: ((item: any) => any) | undefined;
|
|
37
|
+
"onMouse-over-item"?: ((item: any) => any) | undefined;
|
|
38
|
+
}>, {
|
|
39
|
+
eager: boolean;
|
|
40
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
|
41
|
+
item?(_: {
|
|
42
|
+
item: import('vuetify/lib/composables/list-items.mjs').ListItem<any>;
|
|
43
|
+
index: number;
|
|
44
|
+
props: Record<string, unknown>;
|
|
45
|
+
}): any;
|
|
46
|
+
selection?(_: {
|
|
47
|
+
item: import('vuetify/lib/composables/list-items.mjs').ListItem<any>;
|
|
48
|
+
index: number;
|
|
49
|
+
}): any;
|
|
50
|
+
}>;
|
|
51
|
+
export default _default;
|
|
52
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
53
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
54
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
55
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
56
|
+
} : {
|
|
57
|
+
type: import('vue').PropType<T[K]>;
|
|
58
|
+
required: true;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
type __VLS_WithDefaults<P, D> = {
|
|
62
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
63
|
+
default: D[K];
|
|
64
|
+
}> : P[K];
|
|
65
|
+
};
|
|
66
|
+
type __VLS_Prettify<T> = {
|
|
67
|
+
[K in keyof T]: T[K];
|
|
68
|
+
} & {};
|
|
69
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
70
|
+
new (): {
|
|
71
|
+
$slots: S;
|
|
72
|
+
};
|
|
73
|
+
};
|