bt-core-app 2.1.36 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_virtual/_commonjs-dynamic-modules.mjs +6 -0
- package/dist/_virtual/_commonjsHelpers.mjs +30 -0
- package/dist/_virtual/_plugin-vue_export-helper.mjs +9 -0
- package/dist/_virtual/index.mjs +4 -0
- package/dist/_virtual/localforage.mjs +4 -0
- package/dist/_virtual/luxon.mjs +6 -0
- package/dist/_virtual/matcher.mjs +4 -0
- package/dist/_virtual/parser.mjs +4 -0
- package/dist/bt-core/core/node_modules/@datasert/cronjs-matcher/dist/index.mjs +12 -0
- package/dist/bt-core/core/node_modules/@datasert/cronjs-matcher/dist/matcher.mjs +220 -0
- package/dist/bt-core/core/node_modules/@datasert/cronjs-parser/dist/parser.mjs +186 -0
- package/dist/bt-core/core/node_modules/@mdi/js/mdi.mjs +70 -0
- package/dist/bt-core/core/node_modules/@vuepic/vue-datepicker/dist/main.css.mjs +1 -0
- package/dist/bt-core/core/node_modules/@vuepic/vue-datepicker/dist/vue-datepicker.mjs +5210 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/addLeadingZeros.mjs +7 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/defaultOptions.mjs +7 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/format/formatters.mjs +517 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/format/lightFormatters.mjs +59 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/format/longFormatters.mjs +52 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.mjs +18 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/normalizeDates.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/normalizeInterval.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/_lib/protectedTokens.mjs +21 -0
- package/dist/bt-core/core/node_modules/date-fns/add.mjs +20 -0
- package/dist/bt-core/core/node_modules/date-fns/addDays.mjs +10 -0
- package/dist/bt-core/core/node_modules/date-fns/addHours.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/addMilliseconds.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/addMonths.mjs +21 -0
- package/dist/bt-core/core/node_modules/date-fns/addQuarters.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/addYears.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/compareAsc.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/constants.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/constructFrom.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/differenceInCalendarDays.mjs +16 -0
- package/dist/bt-core/core/node_modules/date-fns/differenceInCalendarYears.mjs +13 -0
- package/dist/bt-core/core/node_modules/date-fns/differenceInYears.mjs +17 -0
- package/dist/bt-core/core/node_modules/date-fns/eachDayOfInterval.mjs +20 -0
- package/dist/bt-core/core/node_modules/date-fns/eachQuarterOfInterval.mjs +21 -0
- package/dist/bt-core/core/node_modules/date-fns/endOfQuarter.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/endOfWeek.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/endOfYear.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/format.mjs +60 -0
- package/dist/bt-core/core/node_modules/date-fns/getDay.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/getDayOfYear.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/getDaysInMonth.mjs +10 -0
- package/dist/bt-core/core/node_modules/date-fns/getDefaultOptions.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/getHours.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/getISODay.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/getISOWeek.mjs +12 -0
- package/dist/bt-core/core/node_modules/date-fns/getISOWeekYear.mjs +15 -0
- package/dist/bt-core/core/node_modules/date-fns/getMinutes.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/getMonth.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/getQuarter.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/getSeconds.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/getWeek.mjs +12 -0
- package/dist/bt-core/core/node_modules/date-fns/getWeekYear.mjs +17 -0
- package/dist/bt-core/core/node_modules/date-fns/getYear.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/isAfter.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/isBefore.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/isDate.mjs +7 -0
- package/dist/bt-core/core/node_modules/date-fns/isEqual.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/isSameQuarter.mjs +14 -0
- package/dist/bt-core/core/node_modules/date-fns/isValid.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/_lib/buildFormatLongFn.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/_lib/buildLocalizeFn.mjs +18 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/_lib/buildMatchFn.mjs +31 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/_lib/buildMatchPatternFn.mjs +17 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/en-US/_lib/formatDistance.mjs +70 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/en-US/_lib/formatLong.mjs +33 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/en-US/_lib/formatRelative.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/en-US/_lib/localize.mjs +155 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/en-US/_lib/match.mjs +110 -0
- package/dist/bt-core/core/node_modules/date-fns/locale/en-US.mjs +21 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/Parser.mjs +22 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/Setter.mjs +41 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/constants.mjs +49 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/AMPMMidnightParser.mjs +49 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/AMPMParser.mjs +49 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/DateParser.mjs +61 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/DayOfYearParser.mjs +51 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/DayParser.mjs +45 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/DayPeriodParser.mjs +49 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/EraParser.mjs +30 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ExtendedYearParser.mjs +21 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/FractionOfSecondParser.mjs +22 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/Hour0To11Parser.mjs +32 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/Hour0to23Parser.mjs +32 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/Hour1To24Parser.mjs +33 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/Hour1to12Parser.mjs +33 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ISODayParser.mjs +99 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ISOTimezoneParser.mjs +48 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ISOTimezoneWithZParser.mjs +48 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ISOWeekParser.mjs +49 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ISOWeekYearParser.mjs +40 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/LocalDayParser.mjs +74 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/LocalWeekParser.mjs +48 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/LocalWeekYearParser.mjs +69 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/MinuteParser.mjs +32 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/MonthParser.mjs +71 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/QuarterParser.mjs +70 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/SecondParser.mjs +32 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/StandAloneLocalDayParser.mjs +74 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/StandAloneMonthParser.mjs +71 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/StandAloneQuarterParser.mjs +70 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/TimestampMillisecondsParser.mjs +22 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/TimestampSecondsParser.mjs +22 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/YearParser.mjs +49 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers.mjs +67 -0
- package/dist/bt-core/core/node_modules/date-fns/parse/_lib/utils.mjs +103 -0
- package/dist/bt-core/core/node_modules/date-fns/parse.mjs +90 -0
- package/dist/bt-core/core/node_modules/date-fns/set.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/setDay.mjs +12 -0
- package/dist/bt-core/core/node_modules/date-fns/setHours.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/setISODay.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/setISOWeek.mjs +10 -0
- package/dist/bt-core/core/node_modules/date-fns/setMilliseconds.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/setMinutes.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/setMonth.mjs +13 -0
- package/dist/bt-core/core/node_modules/date-fns/setSeconds.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/setWeek.mjs +10 -0
- package/dist/bt-core/core/node_modules/date-fns/setYear.mjs +10 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfDay.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfISOWeek.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfISOWeekYear.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfMonth.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfQuarter.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfWeek.mjs +11 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfWeekYear.mjs +13 -0
- package/dist/bt-core/core/node_modules/date-fns/startOfYear.mjs +9 -0
- package/dist/bt-core/core/node_modules/date-fns/sub.mjs +19 -0
- package/dist/bt-core/core/node_modules/date-fns/subDays.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/subMonths.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/subYears.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/toDate.mjs +8 -0
- package/dist/bt-core/core/node_modules/date-fns/transpose.mjs +18 -0
- package/dist/bt-core/core/node_modules/localforage/dist/localforage.mjs +1454 -0
- package/dist/bt-core/core/node_modules/luxon/src/datetime.mjs +1855 -0
- package/dist/bt-core/core/node_modules/luxon/src/duration.mjs +753 -0
- package/dist/bt-core/core/node_modules/luxon/src/errors.mjs +40 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/conversions.mjs +92 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/diff.mjs +36 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/digits.mjs +77 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/english.mjs +138 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/formats.mjs +150 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/formatter.mjs +258 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/invalid.mjs +11 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/locale.mjs +294 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/regexParser.mjs +202 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/tokenParser.mjs +329 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/util.mjs +220 -0
- package/dist/bt-core/core/node_modules/luxon/src/impl/zoneUtil.mjs +20 -0
- package/dist/bt-core/core/node_modules/luxon/src/info.mjs +180 -0
- package/dist/bt-core/core/node_modules/luxon/src/interval.mjs +481 -0
- package/dist/bt-core/core/node_modules/luxon/src/luxon.mjs +24 -0
- package/dist/bt-core/core/node_modules/luxon/src/settings.mjs +150 -0
- package/dist/bt-core/core/node_modules/luxon/src/zone.mjs +88 -0
- package/dist/bt-core/core/node_modules/luxon/src/zones/IANAZone.mjs +183 -0
- package/dist/bt-core/core/node_modules/luxon/src/zones/fixedOffsetZone.mjs +125 -0
- package/dist/bt-core/core/node_modules/luxon/src/zones/invalidZone.mjs +41 -0
- package/dist/bt-core/core/node_modules/luxon/src/zones/systemZone.mjs +47 -0
- package/dist/bt-core/core/node_modules/merge-images/dist/index.es2015.mjs +47 -0
- package/dist/bt-core/core/node_modules/signature_pad/dist/signature_pad.mjs +248 -0
- package/dist/bt-core/core/node_modules/thenby/thenBy.module.mjs +38 -0
- package/dist/bt-core/core/node_modules/vue-picture-cropper/lib/index.mjs +1643 -0
- package/dist/bt-core/core/node_modules/vue-signature-pad/dist/vue-signature-pad.esm.mjs +173 -0
- package/dist/bt-core/core/node_modules/vue-use-spring/dist/index.mjs +204 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/composables/defaults.mjs +61 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/composables/icons.mjs +82 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/iconsets/mdi-svg.mjs +74 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/util/colors.mjs +322 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/util/console.mjs +7 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/util/defineComponent.mjs +34 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/util/getCurrentInstance.mjs +10 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/util/helpers.mjs +44 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/util/injectSelf.mjs +12 -0
- package/dist/bt-core/core/node_modules/vuetify/lib/util/propsFactory.mjs +14 -0
- package/dist/components/BT-Assistant-Menu.vue.d.ts +19 -0
- package/dist/components/BT-Assistant-Menu.vue.mjs +464 -0
- package/dist/components/BT-Assistant-Menu.vue2.mjs +4 -0
- package/dist/components/BT-Avatar.vue.d.ts +16 -0
- package/dist/components/BT-Avatar.vue.mjs +41 -0
- package/dist/components/BT-Avatar.vue2.mjs +4 -0
- package/dist/components/BT-Background-Task.vue.d.ts +61 -0
- package/dist/components/BT-Background-Task.vue.mjs +89 -0
- package/dist/components/BT-Background-Task.vue2.mjs +4 -0
- package/dist/components/BT-Blade-Item.vue.d.ts +578 -0
- package/dist/components/BT-Blade-Item.vue.mjs +441 -0
- package/dist/components/BT-Blade-Item.vue2.mjs +4 -0
- package/dist/components/BT-Blade-Items.vue.d.ts +2358 -0
- package/dist/components/BT-Blade-Items.vue.mjs +7 -0
- package/dist/components/BT-Blade-Items.vue2.mjs +943 -0
- package/dist/components/BT-Blade-Items.vue3.mjs +1 -0
- package/dist/components/BT-Blade-Steps.vue.d.ts +1740 -0
- package/dist/components/BT-Blade-Steps.vue.mjs +7 -0
- package/dist/components/BT-Blade-Steps.vue2.mjs +1305 -0
- package/dist/components/BT-Blade-Steps.vue3.mjs +1 -0
- package/dist/components/BT-Blade.vue.d.ts +109 -0
- package/dist/components/BT-Blade.vue.mjs +268 -0
- package/dist/components/BT-Blade.vue2.mjs +4 -0
- package/dist/components/BT-Btn.vue.d.ts +47 -0
- package/dist/components/BT-Btn.vue.mjs +43 -0
- package/dist/components/BT-Btn.vue2.mjs +4 -0
- package/dist/components/BT-Camera-Overlay.vue.d.ts +57 -0
- package/dist/components/BT-Camera-Overlay.vue.mjs +173 -0
- package/dist/components/BT-Camera-Overlay.vue2.mjs +4 -0
- package/dist/components/BT-Col.vue.d.ts +49 -0
- package/dist/components/BT-Col.vue.mjs +33 -0
- package/dist/components/BT-Col.vue2.mjs +4 -0
- package/dist/components/BT-Color-Picker-Menu.vue.d.ts +23 -0
- package/dist/components/BT-Color-Picker-Menu.vue.mjs +63 -0
- package/dist/components/BT-Color-Picker-Menu.vue2.mjs +4 -0
- package/dist/components/BT-Cosmetics-Menu.vue.d.ts +14 -0
- package/dist/components/BT-Cosmetics-Menu.vue.mjs +211 -0
- package/dist/components/BT-Cosmetics-Menu.vue2.mjs +4 -0
- package/dist/components/BT-Cron-Span.vue.d.ts +21 -0
- package/dist/components/BT-Cron-Span.vue.mjs +66 -0
- package/dist/components/BT-Cron-Span.vue2.mjs +4 -0
- package/dist/components/BT-Cron.vue.d.ts +37 -0
- package/dist/components/BT-Cron.vue.mjs +538 -0
- package/dist/components/BT-Cron.vue2.mjs +4 -0
- package/dist/components/BT-Date-Select.vue.d.ts +46 -0
- package/dist/components/BT-Date-Select.vue.mjs +71 -0
- package/dist/components/BT-Date-Select.vue2.mjs +4 -0
- package/dist/components/BT-Date.vue.d.ts +53 -0
- package/dist/components/BT-Date.vue.mjs +55 -0
- package/dist/components/BT-Date.vue2.mjs +4 -0
- package/dist/components/BT-Demo-Profile-Select.vue.d.ts +17 -0
- package/dist/components/BT-Demo-Profile-Select.vue.mjs +52 -0
- package/dist/components/BT-Demo-Profile-Select.vue2.mjs +4 -0
- package/dist/components/BT-Dialog-Confirm.vue.d.ts +2 -0
- package/dist/components/BT-Dialog-Confirm.vue.mjs +63 -0
- package/dist/components/BT-Dialog-Confirm.vue2.mjs +4 -0
- package/dist/components/BT-Dialog-Date.vue.d.ts +2 -0
- package/dist/components/BT-Dialog-Date.vue.mjs +79 -0
- package/dist/components/BT-Dialog-Date.vue2.mjs +4 -0
- package/dist/components/BT-Dialog-Number.vue.d.ts +2 -0
- package/dist/components/BT-Dialog-Number.vue.mjs +178 -0
- package/dist/components/BT-Dialog-Number.vue2.mjs +4 -0
- package/dist/components/BT-Dialog-Select.vue.d.ts +2 -0
- package/dist/components/BT-Dialog-Select.vue.mjs +235 -0
- package/dist/components/BT-Dialog-Select.vue2.mjs +4 -0
- package/dist/components/BT-Divider.vue.d.ts +24 -0
- package/dist/components/BT-Divider.vue.mjs +31 -0
- package/dist/components/BT-Divider.vue2.mjs +4 -0
- package/dist/components/BT-Drag-Counter.vue.d.ts +114 -0
- package/dist/components/BT-Drag-Counter.vue.mjs +7 -0
- package/dist/components/BT-Drag-Counter.vue2.mjs +156 -0
- package/dist/components/BT-Drag-Counter.vue3.mjs +1 -0
- package/dist/components/BT-Entity.vue.d.ts +82 -0
- package/dist/components/BT-Entity.vue.mjs +172 -0
- package/dist/components/BT-Entity.vue2.mjs +4 -0
- package/dist/components/BT-Error.vue.d.ts +15 -0
- package/dist/components/BT-Error.vue.mjs +35 -0
- package/dist/components/BT-Error.vue2.mjs +4 -0
- package/dist/components/BT-Field-Checkbox.vue.d.ts +57 -0
- package/dist/components/BT-Field-Checkbox.vue.mjs +61 -0
- package/dist/components/BT-Field-Checkbox.vue2.mjs +4 -0
- package/dist/components/BT-Field-Date.vue.d.ts +69 -0
- package/dist/components/BT-Field-Date.vue.mjs +120 -0
- package/dist/components/BT-Field-Date.vue2.mjs +4 -0
- package/dist/components/BT-Field-Entity.vue.d.ts +48 -0
- package/dist/components/BT-Field-Entity.vue.mjs +55 -0
- package/dist/components/BT-Field-Entity.vue2.mjs +4 -0
- package/dist/components/BT-Field-Select-Simple.vue.d.ts +55 -0
- package/dist/components/BT-Field-Select-Simple.vue.mjs +52 -0
- package/dist/components/BT-Field-Select-Simple.vue2.mjs +4 -0
- package/dist/components/BT-Field-Select.vue.d.ts +70 -0
- package/dist/components/BT-Field-Select.vue.mjs +60 -0
- package/dist/components/BT-Field-Select.vue2.mjs +4 -0
- package/dist/components/BT-Field-String.vue.d.ts +57 -0
- package/dist/components/BT-Field-String.vue.mjs +87 -0
- package/dist/components/BT-Field-String.vue2.mjs +4 -0
- package/dist/components/BT-Field-Switch.vue.d.ts +51 -0
- package/dist/components/BT-Field-Switch.vue.mjs +64 -0
- package/dist/components/BT-Field-Switch.vue2.mjs +4 -0
- package/dist/components/BT-Field-Tags.vue.d.ts +53 -0
- package/dist/components/BT-Field-Tags.vue.mjs +80 -0
- package/dist/components/BT-Field-Tags.vue2.mjs +4 -0
- package/dist/components/BT-Field-Textarea.vue.d.ts +53 -0
- package/dist/components/BT-Field-Textarea.vue.mjs +66 -0
- package/dist/components/BT-Field-Textarea.vue2.mjs +4 -0
- package/dist/components/BT-Field-Trigger.vue.d.ts +113 -0
- package/dist/components/BT-Field-Trigger.vue.mjs +368 -0
- package/dist/components/BT-Field-Trigger.vue2.mjs +4 -0
- package/dist/components/BT-Field.vue.d.ts +49 -0
- package/dist/components/BT-Field.vue.mjs +59 -0
- package/dist/components/BT-Field.vue2.mjs +4 -0
- package/dist/components/BT-Form-Builder.vue.d.ts +74 -0
- package/dist/components/BT-Form-Builder.vue.mjs +762 -0
- package/dist/components/BT-Form-Builder.vue2.mjs +4 -0
- package/dist/components/BT-Form-Field.vue.d.ts +41 -0
- package/dist/components/BT-Form-Field.vue.mjs +186 -0
- package/dist/components/BT-Form-Field.vue2.mjs +4 -0
- package/dist/components/BT-Form.vue.d.ts +95 -0
- package/dist/components/BT-Form.vue.mjs +635 -0
- package/dist/components/BT-Form.vue2.mjs +4 -0
- package/dist/components/BT-Header-Option.vue.d.ts +18 -0
- package/dist/components/BT-Header-Option.vue.mjs +62 -0
- package/dist/components/BT-Header-Option.vue2.mjs +4 -0
- package/dist/components/BT-Image-Select.vue.d.ts +71 -0
- package/dist/components/BT-Image-Select.vue.mjs +219 -0
- package/dist/components/BT-Image-Select.vue2.mjs +4 -0
- package/dist/components/BT-Json.vue.d.ts +6 -0
- package/dist/components/BT-Json.vue.mjs +38 -0
- package/dist/components/BT-Json.vue2.mjs +1 -0
- package/dist/components/BT-Json.vue3.mjs +5 -0
- package/dist/components/BT-Loader.vue.d.ts +6 -0
- package/dist/components/BT-Loader.vue.mjs +37 -0
- package/dist/components/BT-Loader.vue2.mjs +4 -0
- package/dist/components/BT-Nav-Sidebar.vue.d.ts +25 -0
- package/dist/components/BT-Nav-Sidebar.vue.mjs +138 -0
- package/dist/components/BT-Nav-Sidebar.vue2.mjs +4 -0
- package/dist/components/BT-Number.vue.d.ts +23 -0
- package/dist/components/BT-Number.vue.mjs +7 -0
- package/dist/components/BT-Number.vue2.mjs +43 -0
- package/dist/components/BT-Number.vue3.mjs +1 -0
- package/dist/components/BT-Numpad.vue.d.ts +68 -0
- package/dist/components/BT-Numpad.vue.mjs +191 -0
- package/dist/components/BT-Numpad.vue2.mjs +4 -0
- package/dist/components/BT-Select-Inline.vue.d.ts +121 -0
- package/dist/components/BT-Select-Inline.vue.mjs +74 -0
- package/dist/components/BT-Select-Inline.vue2.mjs +24 -0
- package/dist/components/BT-Select-Inline.vue3.mjs +1 -0
- package/dist/components/BT-Select-List-Box.vue.d.ts +137 -0
- package/dist/components/BT-Select-List-Box.vue.mjs +414 -0
- package/dist/components/BT-Select-List-Box.vue2.mjs +4 -0
- package/dist/components/BT-Select-Simple.vue.d.ts +58 -0
- package/dist/components/BT-Select-Simple.vue.mjs +126 -0
- package/dist/components/BT-Select-Simple.vue2.mjs +4 -0
- package/dist/components/BT-Select.vue.d.ts +73 -0
- package/dist/components/BT-Select.vue.mjs +138 -0
- package/dist/components/BT-Select.vue2.mjs +4 -0
- package/dist/components/BT-Signature-Overlay.vue.d.ts +65 -0
- package/dist/components/BT-Signature-Overlay.vue.mjs +146 -0
- package/dist/components/BT-Signature-Overlay.vue2.mjs +4 -0
- package/dist/components/BT-Signature.vue.d.ts +70 -0
- package/dist/components/BT-Signature.vue.mjs +155 -0
- package/dist/components/BT-Signature.vue2.mjs +4 -0
- package/dist/components/BT-Slider.vue.d.ts +37 -0
- package/dist/components/BT-Slider.vue.mjs +126 -0
- package/dist/components/BT-Slider.vue2.mjs +4 -0
- package/dist/components/BT-Span.vue.d.ts +19 -0
- package/dist/components/BT-Span.vue.mjs +23 -0
- package/dist/components/BT-Span.vue2.mjs +4 -0
- package/dist/components/BT-Square-Check.vue.d.ts +104 -0
- package/dist/components/BT-Square-Check.vue.mjs +98 -0
- package/dist/components/BT-Square-Check.vue2.mjs +4 -0
- package/dist/components/BT-Status-Item.vue.d.ts +45 -0
- package/dist/components/BT-Status-Item.vue.mjs +51 -0
- package/dist/components/BT-Status-Item.vue2.mjs +4 -0
- package/dist/components/BT-Tags.vue.d.ts +19 -0
- package/dist/components/BT-Tags.vue.mjs +32 -0
- package/dist/components/BT-Tags.vue2.mjs +4 -0
- package/dist/components/BT-Tour.vue.d.ts +43 -0
- package/dist/components/BT-Tour.vue.mjs +78 -0
- package/dist/components/BT-Tour.vue2.mjs +4 -0
- package/dist/components.mjs +36 -0
- package/dist/composables/actions-local.d.ts +14 -0
- package/dist/composables/actions-local.mjs +26 -0
- package/dist/composables/actions-tracker.d.ts +36 -0
- package/dist/composables/actions-tracker.mjs +88 -0
- package/dist/composables/actions.d.ts +116 -0
- package/dist/composables/actions.mjs +272 -0
- package/dist/composables/api.d.ts +100 -0
- package/dist/composables/api.mjs +329 -0
- package/dist/composables/assistant.d.ts +38 -0
- package/dist/composables/assistant.mjs +70 -0
- package/dist/composables/auth.d.ts +94 -0
- package/dist/composables/auth.mjs +257 -0
- package/dist/composables/background-tasks.d.ts +31 -0
- package/dist/composables/background-tasks.mjs +79 -0
- package/dist/composables/blade-old.d.ts +1 -0
- package/dist/composables/blade.d.ts +91 -0
- package/dist/composables/blade.mjs +156 -0
- package/dist/composables/charts.d.ts +10 -0
- package/dist/composables/colorizer.d.ts +5 -0
- package/dist/composables/colorizer.mjs +27 -0
- package/dist/composables/component-config.d.ts +8 -0
- package/dist/composables/component-config.mjs +11 -0
- package/dist/composables/confirm.d.ts +1 -0
- package/dist/composables/confirm.mjs +11 -0
- package/dist/composables/cosmetics.d.ts +44 -0
- package/dist/composables/cosmetics.mjs +125 -0
- package/dist/composables/cron-adjustments.d.ts +63 -0
- package/dist/composables/cron-adjustments.mjs +106 -0
- package/dist/composables/cron.d.ts +72 -0
- package/dist/composables/cron.mjs +326 -0
- package/dist/composables/csv.d.ts +44 -0
- package/dist/composables/csv.mjs +163 -0
- package/dist/composables/dates.d.ts +22 -0
- package/dist/composables/dates.mjs +61 -0
- package/dist/composables/demo.d.ts +68 -0
- package/dist/composables/demo.mjs +173 -0
- package/dist/composables/dialog-items.d.ts +117 -0
- package/dist/composables/dialog-items.mjs +72 -0
- package/dist/composables/document-meta.d.ts +11 -0
- package/dist/composables/document-meta.mjs +20 -0
- package/dist/composables/draggable.d.ts +56 -0
- package/dist/composables/draggable.mjs +76 -0
- package/dist/composables/feedback.d.ts +24 -0
- package/dist/composables/feedback.mjs +32 -0
- package/dist/composables/filters.d.ts +27 -0
- package/dist/composables/filters.mjs +218 -0
- package/dist/composables/forage.d.ts +89 -0
- package/dist/composables/forage.mjs +37 -0
- package/dist/composables/forms.d.ts +104 -0
- package/dist/composables/forms.mjs +256 -0
- package/dist/composables/geo.d.ts +24 -0
- package/dist/composables/geo.mjs +95 -0
- package/dist/composables/graph-pro.d.ts +98 -0
- package/dist/composables/graph-pro.mjs +205 -0
- package/dist/composables/graphing.d.ts +1 -0
- package/dist/composables/heights.d.ts +24 -0
- package/dist/composables/heights.mjs +41 -0
- package/dist/composables/helpers.d.ts +114 -0
- package/dist/composables/helpers.mjs +512 -0
- package/dist/composables/icons.d.ts +3 -0
- package/dist/composables/icons.mjs +84 -0
- package/dist/composables/id.d.ts +8 -0
- package/dist/composables/id.mjs +32 -0
- package/dist/composables/item.d.ts +132 -0
- package/dist/composables/item.mjs +263 -0
- package/dist/composables/iterating.d.ts +1 -0
- package/dist/composables/list.d.ts +345 -0
- package/dist/composables/list.mjs +460 -0
- package/dist/composables/lists.d.ts +10 -0
- package/dist/composables/lists.mjs +31 -0
- package/dist/composables/menu.d.ts +35 -0
- package/dist/composables/menu.mjs +63 -0
- package/dist/composables/navigation.d.ts +123 -0
- package/dist/composables/navigation.mjs +157 -0
- package/dist/composables/nested.d.ts +3 -0
- package/dist/composables/nested.mjs +20 -0
- package/dist/composables/old-dialogs.d.ts +1 -0
- package/dist/composables/presets.d.ts +8 -0
- package/dist/composables/presets.mjs +16 -0
- package/dist/composables/pwa-old.d.ts +15 -0
- package/dist/composables/pwa.d.ts +26 -0
- package/dist/composables/pwa.mjs +80 -0
- package/dist/composables/resizable.d.ts +34 -0
- package/dist/composables/resizable.mjs +135 -0
- package/dist/composables/routing-old.d.ts +1 -0
- package/dist/composables/routing.d.ts +16 -0
- package/dist/composables/routing.mjs +112 -0
- package/dist/composables/rules.d.ts +13 -0
- package/dist/composables/rules.mjs +22 -0
- package/dist/composables/select.d.ts +78 -0
- package/dist/composables/select.mjs +129 -0
- package/dist/composables/settings.d.ts +6 -0
- package/dist/composables/settings.mjs +21 -0
- package/dist/composables/setup.d.ts +1 -0
- package/dist/composables/steps-old.d.ts +1 -0
- package/dist/composables/steps.d.ts +53 -0
- package/dist/composables/steps.mjs +39 -0
- package/dist/composables/stores.d.ts +258 -0
- package/dist/composables/stores.mjs +1257 -0
- package/dist/composables/sync.d.ts +33 -0
- package/dist/composables/track.d.ts +13 -0
- package/dist/composables/track.mjs +30 -0
- package/dist/composables/urls.d.ts +35 -0
- package/dist/composables/urls.mjs +66 -0
- package/dist/composables/vuetify.d.ts +85 -0
- package/dist/composables.mjs +237 -0
- package/dist/core.d.ts +48 -0
- package/dist/core.mjs +6 -0
- package/dist/core2.mjs +118 -0
- package/dist/index-components.d.ts +19 -0
- package/dist/index-composables.d.ts +75 -0
- package/dist/index-core.d.ts +3 -0
- package/dist/index.d.ts +96 -3036
- package/dist/index.mjs +275 -0
- package/dist/main.d.ts +1 -0
- package/dist/node_modules/bt-core-app/dist/bt-core-app.mjs +30372 -0
- package/dist/style.css +1 -5
- package/dist/types.d.ts +18 -0
- package/dist/types.mjs +7 -0
- package/package.json +4 -1
- package/dist/bt-core-app.js +0 -81355
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
interface FieldProps {
|
|
2
|
+
cols?: string | boolean;
|
|
3
|
+
horizontal?: boolean;
|
|
4
|
+
isEditing?: boolean;
|
|
5
|
+
isMobile?: boolean;
|
|
6
|
+
label: any;
|
|
7
|
+
lg?: string | boolean;
|
|
8
|
+
md?: string | boolean;
|
|
9
|
+
modelValue: any;
|
|
10
|
+
rules?: any;
|
|
11
|
+
sm?: string | boolean;
|
|
12
|
+
}
|
|
13
|
+
declare const _default: import('vue').DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
|
|
14
|
+
isEditing: undefined;
|
|
15
|
+
cols: string;
|
|
16
|
+
lg: boolean;
|
|
17
|
+
md: boolean;
|
|
18
|
+
sm: string;
|
|
19
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
20
|
+
"update:modelValue": (...args: any[]) => void;
|
|
21
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
|
|
22
|
+
isEditing: undefined;
|
|
23
|
+
cols: string;
|
|
24
|
+
lg: boolean;
|
|
25
|
+
md: boolean;
|
|
26
|
+
sm: string;
|
|
27
|
+
}>>> & Readonly<{
|
|
28
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
29
|
+
}>, {
|
|
30
|
+
isEditing: boolean;
|
|
31
|
+
sm: string | boolean;
|
|
32
|
+
cols: string | boolean;
|
|
33
|
+
lg: string | boolean;
|
|
34
|
+
md: string | boolean;
|
|
35
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
36
|
+
export default _default;
|
|
37
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
38
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
39
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
40
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
41
|
+
} : {
|
|
42
|
+
type: import('vue').PropType<T[K]>;
|
|
43
|
+
required: true;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
type __VLS_WithDefaults<P, D> = {
|
|
47
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
48
|
+
default: D[K];
|
|
49
|
+
}> : P[K];
|
|
50
|
+
};
|
|
51
|
+
type __VLS_Prettify<T> = {
|
|
52
|
+
[K in keyof T]: T[K];
|
|
53
|
+
} & {};
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { defineComponent as N, computed as l, inject as a, ref as v, resolveComponent as o, openBlock as u, createBlock as r, withCtx as d, unref as m, mergeProps as f, createVNode as $, createTextVNode as g, toDisplayString as _ } from "vue";
|
|
2
|
+
const x = /* @__PURE__ */ N({
|
|
3
|
+
inheritAttrs: !1,
|
|
4
|
+
__name: "BT-Field-Textarea",
|
|
5
|
+
props: {
|
|
6
|
+
cols: { type: [String, Boolean], default: "12" },
|
|
7
|
+
horizontal: { type: Boolean },
|
|
8
|
+
isEditing: { type: Boolean, default: void 0 },
|
|
9
|
+
isMobile: { type: Boolean },
|
|
10
|
+
label: {},
|
|
11
|
+
lg: { type: [String, Boolean], default: !1 },
|
|
12
|
+
md: { type: [String, Boolean], default: !1 },
|
|
13
|
+
modelValue: {},
|
|
14
|
+
rules: {},
|
|
15
|
+
sm: { type: [String, Boolean], default: "6" }
|
|
16
|
+
},
|
|
17
|
+
emits: ["update:modelValue"],
|
|
18
|
+
setup(b, { emit: y }) {
|
|
19
|
+
const e = b, V = y, n = l({
|
|
20
|
+
get() {
|
|
21
|
+
return e.modelValue;
|
|
22
|
+
},
|
|
23
|
+
set(t) {
|
|
24
|
+
V("update:modelValue", t);
|
|
25
|
+
}
|
|
26
|
+
}), B = a("isEditing", () => v(!1), !0), s = l(() => e.isEditing ?? B.value), i = a("isMobile", () => v(!1), !0), c = a("viewVariant", "underlined"), M = a("editVariant", "outlined"), S = l(() => e.isMobile ?? i.value ? !1 : e.lg), E = l(() => e.isMobile ?? i.value ? !1 : e.md), k = l(() => e.isMobile ?? i.value ? !1 : e.sm);
|
|
27
|
+
return (t, p) => {
|
|
28
|
+
const w = o("v-list-item-subtitle"), C = o("v-list-item"), I = o("v-textarea"), T = o("v-col");
|
|
29
|
+
return u(), r(T, {
|
|
30
|
+
lg: S.value,
|
|
31
|
+
md: E.value,
|
|
32
|
+
sm: k.value,
|
|
33
|
+
cols: t.cols
|
|
34
|
+
}, {
|
|
35
|
+
default: d(() => [
|
|
36
|
+
!s.value && m(c) == "list-item" ? (u(), r(C, f({
|
|
37
|
+
key: 0,
|
|
38
|
+
density: "compact"
|
|
39
|
+
}, t.$attrs), {
|
|
40
|
+
default: d(() => [
|
|
41
|
+
$(w, { class: "mb-2" }, {
|
|
42
|
+
default: d(() => [
|
|
43
|
+
g(_(t.label), 1)
|
|
44
|
+
]),
|
|
45
|
+
_: 1
|
|
46
|
+
}),
|
|
47
|
+
g(" " + _(n.value), 1)
|
|
48
|
+
]),
|
|
49
|
+
_: 1
|
|
50
|
+
}, 16)) : (u(), r(I, f({ key: 1 }, t.$attrs, {
|
|
51
|
+
label: t.label,
|
|
52
|
+
readonly: !s.value,
|
|
53
|
+
rules: t.rules,
|
|
54
|
+
variant: s.value ? m(M) : m(c),
|
|
55
|
+
modelValue: n.value,
|
|
56
|
+
"onUpdate:modelValue": p[0] || (p[0] = (h) => n.value = h)
|
|
57
|
+
}), null, 16, ["label", "readonly", "rules", "variant", "modelValue"]))
|
|
58
|
+
]),
|
|
59
|
+
_: 1
|
|
60
|
+
}, 8, ["lg", "md", "sm", "cols"]);
|
|
61
|
+
};
|
|
62
|
+
}
|
|
63
|
+
});
|
|
64
|
+
export {
|
|
65
|
+
x as default
|
|
66
|
+
};
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import { BladeDensity } from '../composables/blade.ts';
|
|
2
|
+
|
|
3
|
+
interface Option {
|
|
4
|
+
text?: string;
|
|
5
|
+
value?: string;
|
|
6
|
+
icon?: string;
|
|
7
|
+
}
|
|
8
|
+
interface FieldProps {
|
|
9
|
+
automation?: any;
|
|
10
|
+
cols?: string | boolean;
|
|
11
|
+
custom?: any;
|
|
12
|
+
density?: BladeDensity;
|
|
13
|
+
guide?: any;
|
|
14
|
+
displayStrategy?: 'responsive' | 'icons' | 'words' | 'both';
|
|
15
|
+
isEditing?: boolean;
|
|
16
|
+
isMobile?: boolean;
|
|
17
|
+
label: any;
|
|
18
|
+
lg?: string | boolean;
|
|
19
|
+
md?: string | boolean;
|
|
20
|
+
sm?: string | boolean;
|
|
21
|
+
options?: Option[];
|
|
22
|
+
trigger?: any;
|
|
23
|
+
useAutomation?: boolean;
|
|
24
|
+
useAutomationDaily?: boolean;
|
|
25
|
+
useAutomationLarge?: boolean;
|
|
26
|
+
useCustom?: boolean;
|
|
27
|
+
useCustomList?: boolean;
|
|
28
|
+
useGuide?: boolean;
|
|
29
|
+
useGuideList?: boolean;
|
|
30
|
+
useScheduledTrigger?: boolean;
|
|
31
|
+
useTrigger?: boolean;
|
|
32
|
+
useTriggerList?: boolean;
|
|
33
|
+
}
|
|
34
|
+
declare const _default: import('vue').DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
|
|
35
|
+
displayStrategy: string;
|
|
36
|
+
isEditing: undefined;
|
|
37
|
+
cols: string;
|
|
38
|
+
lg: boolean;
|
|
39
|
+
md: boolean;
|
|
40
|
+
sm: string;
|
|
41
|
+
useAutomation: boolean;
|
|
42
|
+
useAutomationDaily: boolean;
|
|
43
|
+
useAutomationLarge: boolean;
|
|
44
|
+
useCustom: boolean;
|
|
45
|
+
useCustomList: boolean;
|
|
46
|
+
useGuide: boolean;
|
|
47
|
+
useGuideList: boolean;
|
|
48
|
+
useScheduledTrigger: boolean;
|
|
49
|
+
useTrigger: boolean;
|
|
50
|
+
useTriggerList: boolean;
|
|
51
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
52
|
+
"update:automation": (...args: any[]) => void;
|
|
53
|
+
"update:custom": (...args: any[]) => void;
|
|
54
|
+
"update:guide": (...args: any[]) => void;
|
|
55
|
+
"update:trigger": (...args: any[]) => void;
|
|
56
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
|
|
57
|
+
displayStrategy: string;
|
|
58
|
+
isEditing: undefined;
|
|
59
|
+
cols: string;
|
|
60
|
+
lg: boolean;
|
|
61
|
+
md: boolean;
|
|
62
|
+
sm: string;
|
|
63
|
+
useAutomation: boolean;
|
|
64
|
+
useAutomationDaily: boolean;
|
|
65
|
+
useAutomationLarge: boolean;
|
|
66
|
+
useCustom: boolean;
|
|
67
|
+
useCustomList: boolean;
|
|
68
|
+
useGuide: boolean;
|
|
69
|
+
useGuideList: boolean;
|
|
70
|
+
useScheduledTrigger: boolean;
|
|
71
|
+
useTrigger: boolean;
|
|
72
|
+
useTriggerList: boolean;
|
|
73
|
+
}>>> & Readonly<{
|
|
74
|
+
"onUpdate:automation"?: ((...args: any[]) => any) | undefined;
|
|
75
|
+
"onUpdate:custom"?: ((...args: any[]) => any) | undefined;
|
|
76
|
+
"onUpdate:guide"?: ((...args: any[]) => any) | undefined;
|
|
77
|
+
"onUpdate:trigger"?: ((...args: any[]) => any) | undefined;
|
|
78
|
+
}>, {
|
|
79
|
+
isEditing: boolean;
|
|
80
|
+
sm: string | boolean;
|
|
81
|
+
cols: string | boolean;
|
|
82
|
+
lg: string | boolean;
|
|
83
|
+
md: string | boolean;
|
|
84
|
+
displayStrategy: "both" | "responsive" | "icons" | "words";
|
|
85
|
+
useAutomation: boolean;
|
|
86
|
+
useAutomationDaily: boolean;
|
|
87
|
+
useAutomationLarge: boolean;
|
|
88
|
+
useCustom: boolean;
|
|
89
|
+
useCustomList: boolean;
|
|
90
|
+
useGuide: boolean;
|
|
91
|
+
useGuideList: boolean;
|
|
92
|
+
useScheduledTrigger: boolean;
|
|
93
|
+
useTrigger: boolean;
|
|
94
|
+
useTriggerList: boolean;
|
|
95
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
96
|
+
export default _default;
|
|
97
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
98
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
99
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
100
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
101
|
+
} : {
|
|
102
|
+
type: import('vue').PropType<T[K]>;
|
|
103
|
+
required: true;
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
type __VLS_WithDefaults<P, D> = {
|
|
107
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
108
|
+
default: D[K];
|
|
109
|
+
}> : P[K];
|
|
110
|
+
};
|
|
111
|
+
type __VLS_Prettify<T> = {
|
|
112
|
+
[K in keyof T]: T[K];
|
|
113
|
+
} & {};
|
|
@@ -0,0 +1,368 @@
|
|
|
1
|
+
import { defineComponent as ee, inject as D, ref as _, computed as s, resolveComponent as m, openBlock as a, createBlock as d, withCtx as o, createVNode as n, mergeProps as k, unref as i, createTextVNode as L, toDisplayString as g, createCommentVNode as r, createElementBlock as x, Fragment as w, renderList as C } from "vue";
|
|
2
|
+
import { useDisplay as te } from "vuetify";
|
|
3
|
+
const le = {
|
|
4
|
+
key: 0,
|
|
5
|
+
class: "mx-1"
|
|
6
|
+
}, ue = {
|
|
7
|
+
key: 1,
|
|
8
|
+
class: "mx-1"
|
|
9
|
+
}, oe = {
|
|
10
|
+
key: 2,
|
|
11
|
+
class: "mx-1"
|
|
12
|
+
}, ne = {
|
|
13
|
+
key: 3,
|
|
14
|
+
class: "mx-1"
|
|
15
|
+
}, ie = /* @__PURE__ */ ee({
|
|
16
|
+
inheritAttrs: !1,
|
|
17
|
+
__name: "BT-Field-Trigger",
|
|
18
|
+
props: {
|
|
19
|
+
automation: {},
|
|
20
|
+
cols: { type: [String, Boolean], default: "12" },
|
|
21
|
+
custom: {},
|
|
22
|
+
density: {},
|
|
23
|
+
guide: {},
|
|
24
|
+
displayStrategy: { default: "responsive" },
|
|
25
|
+
isEditing: { type: Boolean, default: void 0 },
|
|
26
|
+
isMobile: { type: Boolean },
|
|
27
|
+
label: {},
|
|
28
|
+
lg: { type: [String, Boolean], default: !1 },
|
|
29
|
+
md: { type: [String, Boolean], default: !1 },
|
|
30
|
+
sm: { type: [String, Boolean], default: "6" },
|
|
31
|
+
options: {},
|
|
32
|
+
trigger: {},
|
|
33
|
+
useAutomation: { type: Boolean, default: !1 },
|
|
34
|
+
useAutomationDaily: { type: Boolean, default: !1 },
|
|
35
|
+
useAutomationLarge: { type: Boolean, default: !1 },
|
|
36
|
+
useCustom: { type: Boolean, default: !1 },
|
|
37
|
+
useCustomList: { type: Boolean, default: !1 },
|
|
38
|
+
useGuide: { type: Boolean, default: !1 },
|
|
39
|
+
useGuideList: { type: Boolean, default: !1 },
|
|
40
|
+
useScheduledTrigger: { type: Boolean, default: !1 },
|
|
41
|
+
useTrigger: { type: Boolean, default: !1 },
|
|
42
|
+
useTriggerList: { type: Boolean, default: !1 }
|
|
43
|
+
},
|
|
44
|
+
emits: ["update:automation", "update:custom", "update:guide", "update:trigger"],
|
|
45
|
+
setup(N, { emit: F }) {
|
|
46
|
+
const l = N, { xs: G } = te(), S = D("size", () => _("small"), !0), f = F, P = s(() => l.displayStrategy == "icons" || l.displayStrategy == "words" ? !1 : l.displayStrategy == "both" ? !0 : !G.value), Y = s(() => l.displayStrategy == "icons" ? !0 : l.displayStrategy == "both" || l.displayStrategy == "words" ? !1 : G.value);
|
|
47
|
+
let A = _([]), B = _(l.options ?? []), v = _([]), p = _([]);
|
|
48
|
+
l.useScheduledTrigger && (p.value = [
|
|
49
|
+
{ text: "Manual", value: "Manual", icon: "$account" },
|
|
50
|
+
{ text: "Auto", value: "Auto", icon: "$robot" },
|
|
51
|
+
{ text: "Scheduled", value: "Scheduled", icon: "$calendar" }
|
|
52
|
+
]), l.useTrigger && (p.value = [
|
|
53
|
+
{ text: "Manual", value: "Manual", icon: "$account" },
|
|
54
|
+
{ text: "Auto", value: "Auto", icon: "$robot" }
|
|
55
|
+
]), l.useGuide && (v.value = [
|
|
56
|
+
{ text: "Global", value: "Settings", icon: "$earth" },
|
|
57
|
+
{ text: "Individual", value: "Agreements", icon: "$account-circle-outline" }
|
|
58
|
+
]), l.useAutomation && (A.value = [
|
|
59
|
+
{ text: "Off", value: "Off" },
|
|
60
|
+
{ text: "Hourly", value: "Hourly" },
|
|
61
|
+
{ text: "3 Hourly", value: "EveryThreeHours" },
|
|
62
|
+
{ text: "12 Hourly", value: "EveryTwelveHours" },
|
|
63
|
+
{ text: "Daily", value: "Daily" },
|
|
64
|
+
{ text: "Weekly", value: "Weekly" }
|
|
65
|
+
]), l.useAutomationDaily && (A.value = [
|
|
66
|
+
{ text: "Off", value: "Off" },
|
|
67
|
+
{ text: "Daily", value: "Daily" }
|
|
68
|
+
]), l.useAutomationLarge && (A.value = [
|
|
69
|
+
{ text: "Off", value: "Off" },
|
|
70
|
+
{ text: "Daily", value: "Daily" },
|
|
71
|
+
{ text: "Weekly", value: "Weekly" },
|
|
72
|
+
{ text: "Monthly", value: "Monthly" },
|
|
73
|
+
{ text: "Yearly", value: "Yearly" }
|
|
74
|
+
]);
|
|
75
|
+
const O = s({
|
|
76
|
+
get() {
|
|
77
|
+
const e = l.automation != null ? A.value.find((t) => (t.value ?? t.text) == l.automation) : [];
|
|
78
|
+
return e ? [e] : [];
|
|
79
|
+
},
|
|
80
|
+
set(e) {
|
|
81
|
+
const t = (e == null ? void 0 : e.length) > 0 ? e[0] : void 0;
|
|
82
|
+
f("update:automation", (t == null ? void 0 : t.value) ?? (t == null ? void 0 : t.text) ?? null);
|
|
83
|
+
}
|
|
84
|
+
}), I = s({
|
|
85
|
+
get() {
|
|
86
|
+
return l.custom != null ? B.value.filter((e) => (e.value ?? e.text) == l.automation) : [];
|
|
87
|
+
},
|
|
88
|
+
set(e) {
|
|
89
|
+
const t = (e == null ? void 0 : e.length) > 0 ? e[0] : void 0;
|
|
90
|
+
f("update:custom", (t == null ? void 0 : t.value) ?? (t == null ? void 0 : t.text) ?? null);
|
|
91
|
+
}
|
|
92
|
+
}), h = s({
|
|
93
|
+
get() {
|
|
94
|
+
return l.custom != null ? B.value.findIndex((e) => (e.value ?? e.text) == l.custom) : null;
|
|
95
|
+
},
|
|
96
|
+
set(e) {
|
|
97
|
+
f("update:custom", e == null || e < 0 ? null : B.value[e].value ?? B.value[e].text);
|
|
98
|
+
}
|
|
99
|
+
}), E = s({
|
|
100
|
+
get() {
|
|
101
|
+
const e = l.guide != null ? v.value.find((t) => (t.value ?? t.text) == l.guide) : [];
|
|
102
|
+
return e ? [e] : [];
|
|
103
|
+
},
|
|
104
|
+
set(e) {
|
|
105
|
+
const t = (e == null ? void 0 : e.length) > 0 ? e[0] : void 0;
|
|
106
|
+
f("update:guide", (t == null ? void 0 : t.value) ?? (t == null ? void 0 : t.text) ?? null);
|
|
107
|
+
}
|
|
108
|
+
}), U = s({
|
|
109
|
+
get() {
|
|
110
|
+
return l.guide != null ? v.value.findIndex((e) => (e.value ?? e.text) == l.guide) : null;
|
|
111
|
+
},
|
|
112
|
+
set(e) {
|
|
113
|
+
f("update:guide", e == null || e < 0 ? null : v.value[e].value ?? v.value[e].text);
|
|
114
|
+
}
|
|
115
|
+
}), H = s({
|
|
116
|
+
get() {
|
|
117
|
+
const e = l.trigger != null ? p.value.find((t) => (t.value ?? t.text) == l.trigger) : [];
|
|
118
|
+
return e ? [e] : [];
|
|
119
|
+
},
|
|
120
|
+
set(e) {
|
|
121
|
+
const t = (e == null ? void 0 : e.length) > 0 ? e[0] : void 0;
|
|
122
|
+
f("update:trigger", (t == null ? void 0 : t.value) ?? (t == null ? void 0 : t.text) ?? null);
|
|
123
|
+
}
|
|
124
|
+
}), j = s({
|
|
125
|
+
get() {
|
|
126
|
+
return l.trigger != null ? p.value.findIndex((e) => (e.value ?? e.text) == l.trigger) : null;
|
|
127
|
+
},
|
|
128
|
+
set(e) {
|
|
129
|
+
f("update:trigger", e == null || e < 0 ? null : p.value[e].value ?? p.value[e].text);
|
|
130
|
+
}
|
|
131
|
+
}), q = D("isEditing", () => _(!1), !0), y = s(() => l.isEditing ?? q.value), M = D("isMobile", () => _(!1), !0), J = s(() => l.isMobile ?? M.value ? !1 : l.lg), K = s(() => l.isMobile ?? M.value ? !1 : l.md), Q = s(() => l.isMobile ?? M.value ? !1 : l.sm);
|
|
132
|
+
return (e, t) => {
|
|
133
|
+
const R = m("v-list-item-subtitle"), W = m("v-row"), X = m("v-list-item-title"), b = m("v-btn"), T = m("v-list"), $ = m("v-menu"), c = m("v-col"), z = m("v-btn-toggle"), Z = m("v-list-item");
|
|
134
|
+
return a(), d(c, {
|
|
135
|
+
lg: J.value,
|
|
136
|
+
md: K.value,
|
|
137
|
+
sm: Q.value,
|
|
138
|
+
cols: e.cols
|
|
139
|
+
}, {
|
|
140
|
+
default: o(() => [
|
|
141
|
+
n(Z, { density: "compact" }, {
|
|
142
|
+
append: o(() => [
|
|
143
|
+
n(W, { "no-gutters": "" }, {
|
|
144
|
+
default: o(() => [
|
|
145
|
+
e.useAutomation || e.useAutomationDaily || e.useAutomationLarge ? (a(), d(c, { key: 0 }, {
|
|
146
|
+
default: o(() => [
|
|
147
|
+
n($, null, {
|
|
148
|
+
activator: o(({ props: u }) => [
|
|
149
|
+
n(b, k(u, {
|
|
150
|
+
disabled: !y.value,
|
|
151
|
+
size: i(S),
|
|
152
|
+
"append-icon": "$menu-down",
|
|
153
|
+
title: "Automation"
|
|
154
|
+
}), {
|
|
155
|
+
default: o(() => [
|
|
156
|
+
L(g(e.automation ?? "select"), 1)
|
|
157
|
+
]),
|
|
158
|
+
_: 2
|
|
159
|
+
}, 1040, ["disabled", "size"])
|
|
160
|
+
]),
|
|
161
|
+
default: o(() => [
|
|
162
|
+
n(T, {
|
|
163
|
+
items: i(A),
|
|
164
|
+
"item-title": "text",
|
|
165
|
+
"return-object": "",
|
|
166
|
+
"select-strategy": "single-independent",
|
|
167
|
+
selected: O.value,
|
|
168
|
+
"onUpdate:selected": t[0] || (t[0] = (u) => O.value = u)
|
|
169
|
+
}, null, 8, ["items", "selected"])
|
|
170
|
+
]),
|
|
171
|
+
_: 1
|
|
172
|
+
})
|
|
173
|
+
]),
|
|
174
|
+
_: 1
|
|
175
|
+
})) : r("", !0),
|
|
176
|
+
e.useGuideList ? (a(), d(c, { key: 1 }, {
|
|
177
|
+
default: o(() => [
|
|
178
|
+
n($, null, {
|
|
179
|
+
activator: o(({ props: u }) => [
|
|
180
|
+
n(b, k(u, {
|
|
181
|
+
disabled: !y.value,
|
|
182
|
+
size: i(S),
|
|
183
|
+
"append-icon": "$menu-down",
|
|
184
|
+
title: "Guide"
|
|
185
|
+
}), {
|
|
186
|
+
default: o(() => [
|
|
187
|
+
L(g(e.guide ?? "select"), 1)
|
|
188
|
+
]),
|
|
189
|
+
_: 2
|
|
190
|
+
}, 1040, ["disabled", "size"])
|
|
191
|
+
]),
|
|
192
|
+
default: o(() => [
|
|
193
|
+
n(T, {
|
|
194
|
+
items: i(v),
|
|
195
|
+
"item-title": "text",
|
|
196
|
+
"return-object": "",
|
|
197
|
+
"select-strategy": "single-independent",
|
|
198
|
+
selected: E.value,
|
|
199
|
+
"onUpdate:selected": t[1] || (t[1] = (u) => E.value = u)
|
|
200
|
+
}, null, 8, ["items", "selected"])
|
|
201
|
+
]),
|
|
202
|
+
_: 1
|
|
203
|
+
})
|
|
204
|
+
]),
|
|
205
|
+
_: 1
|
|
206
|
+
})) : r("", !0),
|
|
207
|
+
e.useGuide ? (a(), d(c, { key: 2 }, {
|
|
208
|
+
default: o(() => [
|
|
209
|
+
n(z, k(e.$attrs, {
|
|
210
|
+
modelValue: U.value,
|
|
211
|
+
"onUpdate:modelValue": t[2] || (t[2] = (u) => U.value = u),
|
|
212
|
+
color: "primary",
|
|
213
|
+
disabled: !y.value,
|
|
214
|
+
title: "Guide"
|
|
215
|
+
}), {
|
|
216
|
+
default: o(() => [
|
|
217
|
+
(a(!0), x(w, null, C(i(v), (u, V) => (a(), d(b, {
|
|
218
|
+
key: V,
|
|
219
|
+
icon: u.icon,
|
|
220
|
+
size: i(S),
|
|
221
|
+
text: u.text
|
|
222
|
+
}, null, 8, ["icon", "size", "text"]))), 128))
|
|
223
|
+
]),
|
|
224
|
+
_: 1
|
|
225
|
+
}, 16, ["modelValue", "disabled"])
|
|
226
|
+
]),
|
|
227
|
+
_: 1
|
|
228
|
+
})) : r("", !0),
|
|
229
|
+
e.useTriggerList ? (a(), d(c, { key: 3 }, {
|
|
230
|
+
default: o(() => [
|
|
231
|
+
n($, null, {
|
|
232
|
+
activator: o(({ props: u }) => [
|
|
233
|
+
n(b, k(u, {
|
|
234
|
+
disabled: !y.value,
|
|
235
|
+
"append-icon": "$menu-down",
|
|
236
|
+
title: "Trigger"
|
|
237
|
+
}), {
|
|
238
|
+
default: o(() => [
|
|
239
|
+
L(g(e.trigger ?? "select"), 1)
|
|
240
|
+
]),
|
|
241
|
+
_: 2
|
|
242
|
+
}, 1040, ["disabled"])
|
|
243
|
+
]),
|
|
244
|
+
default: o(() => [
|
|
245
|
+
n(T, {
|
|
246
|
+
items: i(p),
|
|
247
|
+
"item-title": "text",
|
|
248
|
+
"return-object": "",
|
|
249
|
+
"select-strategy": "single-independent",
|
|
250
|
+
selected: H.value,
|
|
251
|
+
"onUpdate:selected": t[3] || (t[3] = (u) => H.value = u)
|
|
252
|
+
}, null, 8, ["items", "selected"])
|
|
253
|
+
]),
|
|
254
|
+
_: 1
|
|
255
|
+
})
|
|
256
|
+
]),
|
|
257
|
+
_: 1
|
|
258
|
+
})) : r("", !0),
|
|
259
|
+
e.useTrigger ? (a(), d(c, { key: 4 }, {
|
|
260
|
+
default: o(() => [
|
|
261
|
+
n(z, k(e.$attrs, {
|
|
262
|
+
modelValue: j.value,
|
|
263
|
+
"onUpdate:modelValue": t[4] || (t[4] = (u) => j.value = u),
|
|
264
|
+
color: "primary",
|
|
265
|
+
disabled: !y.value,
|
|
266
|
+
title: "Trigger"
|
|
267
|
+
}), {
|
|
268
|
+
default: o(() => [
|
|
269
|
+
(a(!0), x(w, null, C(i(p), (u, V) => (a(), d(b, {
|
|
270
|
+
icon: Y.value ? u.icon : void 0,
|
|
271
|
+
key: V,
|
|
272
|
+
"prepend-icon": P.value ? u.icon : void 0,
|
|
273
|
+
size: i(S),
|
|
274
|
+
text: u.text
|
|
275
|
+
}, null, 8, ["icon", "prepend-icon", "size", "text"]))), 128))
|
|
276
|
+
]),
|
|
277
|
+
_: 1
|
|
278
|
+
}, 16, ["modelValue", "disabled"])
|
|
279
|
+
]),
|
|
280
|
+
_: 1
|
|
281
|
+
})) : r("", !0),
|
|
282
|
+
e.useCustomList ? (a(), d(c, { key: 5 }, {
|
|
283
|
+
default: o(() => [
|
|
284
|
+
n($, null, {
|
|
285
|
+
activator: o(({ props: u }) => [
|
|
286
|
+
n(b, k(u, {
|
|
287
|
+
disabled: !y.value,
|
|
288
|
+
"append-icon": "$menu-down"
|
|
289
|
+
}), {
|
|
290
|
+
default: o(() => [
|
|
291
|
+
L(g(e.custom ?? "select"), 1)
|
|
292
|
+
]),
|
|
293
|
+
_: 2
|
|
294
|
+
}, 1040, ["disabled"])
|
|
295
|
+
]),
|
|
296
|
+
default: o(() => [
|
|
297
|
+
n(T, {
|
|
298
|
+
items: i(B),
|
|
299
|
+
"item-title": "text",
|
|
300
|
+
"return-object": "",
|
|
301
|
+
"select-strategy": "single-independent",
|
|
302
|
+
selected: I.value,
|
|
303
|
+
"onUpdate:selected": t[5] || (t[5] = (u) => I.value = u)
|
|
304
|
+
}, null, 8, ["items", "selected"])
|
|
305
|
+
]),
|
|
306
|
+
_: 1
|
|
307
|
+
})
|
|
308
|
+
]),
|
|
309
|
+
_: 1
|
|
310
|
+
})) : r("", !0),
|
|
311
|
+
e.useCustom ? (a(), d(c, { key: 6 }, {
|
|
312
|
+
default: o(() => [
|
|
313
|
+
n(z, k(e.$attrs, {
|
|
314
|
+
modelValue: h.value,
|
|
315
|
+
"onUpdate:modelValue": t[6] || (t[6] = (u) => h.value = u),
|
|
316
|
+
color: "primary",
|
|
317
|
+
disabled: !y.value
|
|
318
|
+
}), {
|
|
319
|
+
default: o(() => [
|
|
320
|
+
(a(!0), x(w, null, C(i(B), (u, V) => (a(), d(b, {
|
|
321
|
+
key: V,
|
|
322
|
+
icon: u.icon,
|
|
323
|
+
size: i(S),
|
|
324
|
+
text: u.text
|
|
325
|
+
}, null, 8, ["icon", "size", "text"]))), 128))
|
|
326
|
+
]),
|
|
327
|
+
_: 1
|
|
328
|
+
}, 16, ["modelValue", "disabled"])
|
|
329
|
+
]),
|
|
330
|
+
_: 1
|
|
331
|
+
})) : r("", !0)
|
|
332
|
+
]),
|
|
333
|
+
_: 1
|
|
334
|
+
})
|
|
335
|
+
]),
|
|
336
|
+
default: o(() => [
|
|
337
|
+
n(R, null, {
|
|
338
|
+
default: o(() => [
|
|
339
|
+
L(g(e.label), 1)
|
|
340
|
+
]),
|
|
341
|
+
_: 1
|
|
342
|
+
}),
|
|
343
|
+
n(X, null, {
|
|
344
|
+
default: o(() => [
|
|
345
|
+
n(W, { dense: "" }, {
|
|
346
|
+
default: o(() => [
|
|
347
|
+
e.useAutomation || e.useAutomationDaily || e.useAutomationLarge ? (a(), x("span", le, g(e.automation), 1)) : r("", !0),
|
|
348
|
+
e.useGuide || e.useGuideList ? (a(), x("span", ue, g(e.guide), 1)) : r("", !0),
|
|
349
|
+
e.useTrigger || e.useScheduledTrigger || e.useTriggerList ? (a(), x("span", oe, g(e.trigger), 1)) : r("", !0),
|
|
350
|
+
e.useCustom || e.useCustomList ? (a(), x("span", ne, g(e.custom), 1)) : r("", !0)
|
|
351
|
+
]),
|
|
352
|
+
_: 1
|
|
353
|
+
})
|
|
354
|
+
]),
|
|
355
|
+
_: 1
|
|
356
|
+
})
|
|
357
|
+
]),
|
|
358
|
+
_: 1
|
|
359
|
+
})
|
|
360
|
+
]),
|
|
361
|
+
_: 1
|
|
362
|
+
}, 8, ["lg", "md", "sm", "cols"]);
|
|
363
|
+
};
|
|
364
|
+
}
|
|
365
|
+
});
|
|
366
|
+
export {
|
|
367
|
+
ie as default
|
|
368
|
+
};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
interface FieldProps {
|
|
2
|
+
cols?: string | boolean;
|
|
3
|
+
customFilter?: any;
|
|
4
|
+
filter?: string;
|
|
5
|
+
format?: string;
|
|
6
|
+
isMobile?: boolean;
|
|
7
|
+
label: string;
|
|
8
|
+
lg?: string | boolean;
|
|
9
|
+
md?: string | boolean;
|
|
10
|
+
prefix?: string;
|
|
11
|
+
prependIcon?: string;
|
|
12
|
+
sm?: string | boolean;
|
|
13
|
+
suffix?: string;
|
|
14
|
+
value: any;
|
|
15
|
+
}
|
|
16
|
+
declare const _default: import('vue').DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
|
|
17
|
+
cols: string;
|
|
18
|
+
lg: boolean;
|
|
19
|
+
md: boolean;
|
|
20
|
+
sm: string;
|
|
21
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FieldProps>, {
|
|
22
|
+
cols: string;
|
|
23
|
+
lg: boolean;
|
|
24
|
+
md: boolean;
|
|
25
|
+
sm: string;
|
|
26
|
+
}>>> & Readonly<{}>, {
|
|
27
|
+
sm: string | boolean;
|
|
28
|
+
cols: string | boolean;
|
|
29
|
+
lg: string | boolean;
|
|
30
|
+
md: string | boolean;
|
|
31
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
32
|
+
export default _default;
|
|
33
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
34
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
35
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
36
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
37
|
+
} : {
|
|
38
|
+
type: import('vue').PropType<T[K]>;
|
|
39
|
+
required: true;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
type __VLS_WithDefaults<P, D> = {
|
|
43
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
44
|
+
default: D[K];
|
|
45
|
+
}> : P[K];
|
|
46
|
+
};
|
|
47
|
+
type __VLS_Prettify<T> = {
|
|
48
|
+
[K in keyof T]: T[K];
|
|
49
|
+
} & {};
|