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,6 @@
|
|
|
1
|
+
function r(o) {
|
|
2
|
+
throw new Error('Could not dynamically require "' + o + '". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.');
|
|
3
|
+
}
|
|
4
|
+
export {
|
|
5
|
+
r as commonjsRequire
|
|
6
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
var u = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {};
|
|
2
|
+
function f(e) {
|
|
3
|
+
return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e.default : e;
|
|
4
|
+
}
|
|
5
|
+
function l(e) {
|
|
6
|
+
if (e.__esModule)
|
|
7
|
+
return e;
|
|
8
|
+
var r = e.default;
|
|
9
|
+
if (typeof r == "function") {
|
|
10
|
+
var t = function o() {
|
|
11
|
+
return this instanceof o ? Reflect.construct(r, arguments, this.constructor) : r.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
t.prototype = r.prototype;
|
|
14
|
+
} else
|
|
15
|
+
t = {};
|
|
16
|
+
return Object.defineProperty(t, "__esModule", { value: !0 }), Object.keys(e).forEach(function(o) {
|
|
17
|
+
var n = Object.getOwnPropertyDescriptor(e, o);
|
|
18
|
+
Object.defineProperty(t, o, n.get ? n : {
|
|
19
|
+
enumerable: !0,
|
|
20
|
+
get: function() {
|
|
21
|
+
return e[o];
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
}), t;
|
|
25
|
+
}
|
|
26
|
+
export {
|
|
27
|
+
u as commonjsGlobal,
|
|
28
|
+
l as getAugmentedNamespace,
|
|
29
|
+
f as getDefaultExportFromCjs
|
|
30
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __exports as r } from "../../../../../../_virtual/index.mjs";
|
|
2
|
+
import "./matcher.mjs";
|
|
3
|
+
import { __exports as u } from "../../../../../../_virtual/matcher.mjs";
|
|
4
|
+
(function(e) {
|
|
5
|
+
Object.defineProperty(e, "__esModule", { value: !0 }), e.isTimeMatches = e.getFutureMatches = void 0;
|
|
6
|
+
var t = u;
|
|
7
|
+
Object.defineProperty(e, "getFutureMatches", { enumerable: !0, get: function() {
|
|
8
|
+
return t.getFutureMatches;
|
|
9
|
+
} }), Object.defineProperty(e, "isTimeMatches", { enumerable: !0, get: function() {
|
|
10
|
+
return t.isTimeMatches;
|
|
11
|
+
} });
|
|
12
|
+
})(r);
|
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
import { __exports as h } from "../../../../../../_virtual/matcher.mjs";
|
|
2
|
+
import N from "../../../../../../_virtual/luxon.mjs";
|
|
3
|
+
import "../../cronjs-parser/dist/parser.mjs";
|
|
4
|
+
import { __exports as R } from "../../../../../../_virtual/parser.mjs";
|
|
5
|
+
Object.defineProperty(h, "__esModule", { value: !0 });
|
|
6
|
+
h.isTimeMatches = h.getFutureMatches = void 0;
|
|
7
|
+
const k = N, p = R, V = 1e5, z = 0, F = 1, M = 5, A = 6, E = "Etc/UTC", U = ["second", "minute", "hour", "day_of_month", "month", "year", "day_of_week"], x = U.reverse(), Y = ["second", "minute", "hour", "month", "year"], b = Y.reverse();
|
|
8
|
+
function O(n) {
|
|
9
|
+
if (!n)
|
|
10
|
+
return n;
|
|
11
|
+
let e;
|
|
12
|
+
const t = Array.isArray(n) ? [] : {};
|
|
13
|
+
for (const o in n)
|
|
14
|
+
e = n[o], t[o] = typeof e == "object" ? O(e) : e;
|
|
15
|
+
return t;
|
|
16
|
+
}
|
|
17
|
+
function v(n, e = (t) => t) {
|
|
18
|
+
const t = /* @__PURE__ */ new Set(), o = [];
|
|
19
|
+
return n.forEach((s) => {
|
|
20
|
+
const a = e(s);
|
|
21
|
+
t.has(a) || (t.add(a), o.push(s));
|
|
22
|
+
}), o;
|
|
23
|
+
}
|
|
24
|
+
function L(n) {
|
|
25
|
+
return n.sort((e, t) => e - t), n;
|
|
26
|
+
}
|
|
27
|
+
function i(n) {
|
|
28
|
+
const e = n.weekday;
|
|
29
|
+
return e === 7 ? 0 : e;
|
|
30
|
+
}
|
|
31
|
+
function l(n, e, t) {
|
|
32
|
+
const o = [];
|
|
33
|
+
if (t == 0)
|
|
34
|
+
o.push(n);
|
|
35
|
+
else
|
|
36
|
+
for (let s = n; s <= e; s += t)
|
|
37
|
+
o.push(s);
|
|
38
|
+
return o;
|
|
39
|
+
}
|
|
40
|
+
function y(n) {
|
|
41
|
+
return !n || n.length === 0;
|
|
42
|
+
}
|
|
43
|
+
function D(n, e, t) {
|
|
44
|
+
const o = [];
|
|
45
|
+
return n.expressions.forEach((s) => {
|
|
46
|
+
o.push(...Z(s, e, t));
|
|
47
|
+
}), o.length === 0 ? o : L(v(o));
|
|
48
|
+
}
|
|
49
|
+
function Z(n, e, t) {
|
|
50
|
+
const o = n[e];
|
|
51
|
+
if (o.omit)
|
|
52
|
+
return e === "second" ? [0] : [];
|
|
53
|
+
if (e === "day_of_week") {
|
|
54
|
+
const r = p.FIELD_INFO.day_of_month;
|
|
55
|
+
return l(r.min, r.max, 1);
|
|
56
|
+
}
|
|
57
|
+
const s = p.FIELD_INFO[e], a = o.all || o.lastDay || o.lastWeekday || !y(o.lastDays) || !y(o.nearestWeekdays) || !y(o.nthDays), f = [...o.values || []];
|
|
58
|
+
if (a) {
|
|
59
|
+
const r = e == "year" ? t : s.min;
|
|
60
|
+
return f.push(...l(r, s.max, 1)), f;
|
|
61
|
+
}
|
|
62
|
+
return o.ranges && o.ranges.forEach((r) => {
|
|
63
|
+
f.push(...l(r.from, r.to, 1));
|
|
64
|
+
}), o.steps && o.steps.forEach((r) => {
|
|
65
|
+
f.push(...l(r.from, r.to, r.step));
|
|
66
|
+
}), o.steps && o.steps.forEach((r) => {
|
|
67
|
+
f.push(...l(r.from, r.to, r.step));
|
|
68
|
+
}), f;
|
|
69
|
+
}
|
|
70
|
+
function $(n, e) {
|
|
71
|
+
const t = {};
|
|
72
|
+
for (const o of x)
|
|
73
|
+
o === "day_of_week" || o === "day_of_month" || (t[o] = {
|
|
74
|
+
values: D(n, o, e)
|
|
75
|
+
});
|
|
76
|
+
return t.day_of_month = {
|
|
77
|
+
values: L(v([...D(n, "day_of_month", e), ...D(n, "day_of_week", e)]))
|
|
78
|
+
}, t;
|
|
79
|
+
}
|
|
80
|
+
function P(n, e) {
|
|
81
|
+
const t = n[e];
|
|
82
|
+
t.steps && (t.values = t.values || [], t.steps.forEach((o) => {
|
|
83
|
+
t.values.push(...l(o.from, o.to, o.step));
|
|
84
|
+
}), delete t.steps);
|
|
85
|
+
}
|
|
86
|
+
function W(n) {
|
|
87
|
+
for (const e of n.expressions) {
|
|
88
|
+
!e.day_of_month.omit && !e.day_of_week.omit && (!e.day_of_month.all && e.day_of_week.all && (delete e.day_of_week.all, e.day_of_week.omit = !0), e.day_of_month.all && !e.day_of_week.all && !e.day_of_week.omit && (delete e.day_of_month.all, e.day_of_month.omit = !0));
|
|
89
|
+
for (const t of x)
|
|
90
|
+
P(e, t);
|
|
91
|
+
}
|
|
92
|
+
return n;
|
|
93
|
+
}
|
|
94
|
+
function d(n, e) {
|
|
95
|
+
return n.set(e);
|
|
96
|
+
}
|
|
97
|
+
function* T(n, e) {
|
|
98
|
+
const t = $(n, e.year), o = e.toMillis();
|
|
99
|
+
let s = e, a = !1;
|
|
100
|
+
for (const f of t.year.values)
|
|
101
|
+
if (!(f < e.year)) {
|
|
102
|
+
s = d(s, { year: f });
|
|
103
|
+
for (const r of t.month.values)
|
|
104
|
+
if (!(f === e.year && r < e.month)) {
|
|
105
|
+
s = d(s, { month: r });
|
|
106
|
+
for (const c of t.day_of_month.values)
|
|
107
|
+
if (!(f === e.year && r === e.month && c < e.day) && !(c > s.daysInMonth)) {
|
|
108
|
+
s = d(s, { day: c });
|
|
109
|
+
for (const _ of t.hour.values)
|
|
110
|
+
if (!(f === e.year && r === e.month && c === e.day && _ < e.hour)) {
|
|
111
|
+
s = d(s, { hour: _ });
|
|
112
|
+
for (const m of t.minute.values) {
|
|
113
|
+
s = d(s, { minute: m });
|
|
114
|
+
for (const u of t.second.values)
|
|
115
|
+
s = d(s, { second: u }), a || s.toMillis() >= o && (a = !0), a && (yield s);
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
function g(n, e) {
|
|
123
|
+
let t = n.endOf("month");
|
|
124
|
+
const o = t.day;
|
|
125
|
+
if (e === void 0)
|
|
126
|
+
return o;
|
|
127
|
+
for (; i(t) !== e; )
|
|
128
|
+
t = t.plus({ day: -1 });
|
|
129
|
+
return t.day;
|
|
130
|
+
}
|
|
131
|
+
function q(n) {
|
|
132
|
+
const e = n.endOf("month"), t = i(e);
|
|
133
|
+
return t >= F && t <= M ? e.day : g(n, M);
|
|
134
|
+
}
|
|
135
|
+
function B(n, e) {
|
|
136
|
+
const t = [];
|
|
137
|
+
for (let o = 1; o < 31; o++) {
|
|
138
|
+
const s = n.set({ day: o });
|
|
139
|
+
if (s.month != n.month)
|
|
140
|
+
break;
|
|
141
|
+
i(s) === e && t.push(s.day);
|
|
142
|
+
}
|
|
143
|
+
return t;
|
|
144
|
+
}
|
|
145
|
+
function X(n) {
|
|
146
|
+
const e = i(n);
|
|
147
|
+
return e >= F && e <= M;
|
|
148
|
+
}
|
|
149
|
+
function w(n, e) {
|
|
150
|
+
return i(n) === e;
|
|
151
|
+
}
|
|
152
|
+
function G(n, e) {
|
|
153
|
+
return n.daysInMonth < e && (e = n.daysInMonth), n.set({ day: e });
|
|
154
|
+
}
|
|
155
|
+
function H(n, e) {
|
|
156
|
+
if (!X(n))
|
|
157
|
+
return !1;
|
|
158
|
+
const t = G(n, e);
|
|
159
|
+
return n.day === t.day ? !0 : w(t, A) ? t.day === 1 ? n.day === 3 : t.day - 1 == n.day : w(t, z) ? t.day === n.daysInMonth ? n.day === n.daysInMonth - 2 : t.day + 1 == n.day : !1;
|
|
160
|
+
}
|
|
161
|
+
function J(n, e, t) {
|
|
162
|
+
return t >= n && t <= e;
|
|
163
|
+
}
|
|
164
|
+
function I(n, e, t) {
|
|
165
|
+
const o = n[e];
|
|
166
|
+
return !o || o.all ? !0 : o.omit ? e === "second" : !!(o.values && o.values.includes(t) || o.ranges && o.ranges.find((s) => J(s.from, s.to, t)));
|
|
167
|
+
}
|
|
168
|
+
function K(n, e, t) {
|
|
169
|
+
const o = n[e];
|
|
170
|
+
return o.omit ? !1 : o.lastWeekday && t.day === q(t) || o.lastDay && t.day === g(t) || !y(o.nearestWeekdays) && o.nearestWeekdays.find((s) => H(t, s)) !== void 0 ? !0 : I(n, e, t.day);
|
|
171
|
+
}
|
|
172
|
+
function Q(n, e, t) {
|
|
173
|
+
const o = n[e];
|
|
174
|
+
return o.omit ? !1 : o.lastDay && i(t) === A || !y(o.lastDays) && o.lastDays.find((s) => t.day === g(t, s)) !== void 0 || !y(o.nthDays) && o.nthDays.find((s) => {
|
|
175
|
+
const a = B(t, s.day_of_week);
|
|
176
|
+
return a.length >= s.instance && a[s.instance - 1] === t.day;
|
|
177
|
+
}) !== void 0 ? !0 : I(n, e, i(t));
|
|
178
|
+
}
|
|
179
|
+
function j(n, e) {
|
|
180
|
+
for (const t of b)
|
|
181
|
+
if (!I(n, t, e[t]))
|
|
182
|
+
return !1;
|
|
183
|
+
return K(n, "day_of_month", e) || Q(n, "day_of_week", e);
|
|
184
|
+
}
|
|
185
|
+
function C(n, e) {
|
|
186
|
+
return n.expressions.find((t) => j(t, e)) !== void 0;
|
|
187
|
+
}
|
|
188
|
+
function ee(n, e) {
|
|
189
|
+
return e.formatInTimezone ? n.toISO({ suppressMilliseconds: !0 }) : `${n.setZone(E).toISO({ suppressMilliseconds: !0, includeOffset: !1 })}Z`;
|
|
190
|
+
}
|
|
191
|
+
function ne(n, e = {}) {
|
|
192
|
+
const t = { zone: e.timezone || E }, o = k.DateTime.fromISO(e.startAt ? e.startAt : (/* @__PURE__ */ new Date()).toISOString(), t).set({
|
|
193
|
+
millisecond: 0
|
|
194
|
+
}), s = e.endAt ? k.DateTime.fromISO(e.endAt, t) : void 0, a = e.matchCount || 5, f = [], r = W(typeof n == "string" ? (0, p.parse)(n, e) : O(n)), c = T(r, o), _ = e.maxLoopCount || V;
|
|
195
|
+
let m = 0;
|
|
196
|
+
for (; m < _; ) {
|
|
197
|
+
m++;
|
|
198
|
+
const u = c.next().value;
|
|
199
|
+
if (!u || s && u.toMillis() >= s.toMillis())
|
|
200
|
+
break;
|
|
201
|
+
if (!(u.toMillis() < o.toMillis())) {
|
|
202
|
+
if (C(r, u)) {
|
|
203
|
+
const S = ee(u, e);
|
|
204
|
+
(e.matchValidator ? e.matchValidator(S) : !0) && f.push(S);
|
|
205
|
+
}
|
|
206
|
+
if (f.length >= a)
|
|
207
|
+
break;
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
return f;
|
|
211
|
+
}
|
|
212
|
+
h.getFutureMatches = ne;
|
|
213
|
+
function te(n, e, t) {
|
|
214
|
+
const o = W(typeof n == "string" ? (0, p.parse)(n) : O(n)), s = k.DateTime.fromISO(e, { zone: t || E });
|
|
215
|
+
return C(o, s);
|
|
216
|
+
}
|
|
217
|
+
h.isTimeMatches = te;
|
|
218
|
+
export {
|
|
219
|
+
h as default
|
|
220
|
+
};
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
import { __exports as C } from "../../../../../../_virtual/parser.mjs";
|
|
2
|
+
(function(l) {
|
|
3
|
+
Object.defineProperty(l, "__esModule", { value: !0 }), l.parse = l.FIELD_INFO = void 0;
|
|
4
|
+
const _ = "l", w = "w", L = "lw", I = "?", p = "#", y = "*", h = "-", g = "/", b = {
|
|
5
|
+
"@yearly": "0 0 1 1 ?",
|
|
6
|
+
"@monthly": "0 0 1 * ?",
|
|
7
|
+
"@weekly": "0 0 ? * 0",
|
|
8
|
+
"@daily": "0 0 * * ?",
|
|
9
|
+
"@hourly": "0 * * * ?"
|
|
10
|
+
};
|
|
11
|
+
l.FIELD_INFO = {
|
|
12
|
+
second: { min: 0, max: 59 },
|
|
13
|
+
minute: { min: 0, max: 59 },
|
|
14
|
+
hour: { min: 0, max: 23 },
|
|
15
|
+
day_of_month: { min: 1, max: 31 },
|
|
16
|
+
month: {
|
|
17
|
+
min: 1,
|
|
18
|
+
max: 12,
|
|
19
|
+
alias: {
|
|
20
|
+
jan: 1,
|
|
21
|
+
feb: 2,
|
|
22
|
+
mar: 3,
|
|
23
|
+
apr: 4,
|
|
24
|
+
may: 5,
|
|
25
|
+
jun: 6,
|
|
26
|
+
jul: 7,
|
|
27
|
+
aug: 8,
|
|
28
|
+
sep: 9,
|
|
29
|
+
oct: 10,
|
|
30
|
+
nov: 11,
|
|
31
|
+
dec: 12
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
day_of_week: {
|
|
35
|
+
min: 0,
|
|
36
|
+
max: 7,
|
|
37
|
+
alias: {
|
|
38
|
+
7: 0,
|
|
39
|
+
sun: 0,
|
|
40
|
+
mon: 1,
|
|
41
|
+
tue: 2,
|
|
42
|
+
wed: 3,
|
|
43
|
+
thu: 4,
|
|
44
|
+
fri: 5,
|
|
45
|
+
sat: 6
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
year: { min: 1970, max: 2099 }
|
|
49
|
+
};
|
|
50
|
+
const $ = ["second", "minute", "hour", "day_of_month", "month", "day_of_week", "year"];
|
|
51
|
+
function E(t) {
|
|
52
|
+
return t && t.toString() === "true";
|
|
53
|
+
}
|
|
54
|
+
function v(t, n = (e) => e) {
|
|
55
|
+
const e = /* @__PURE__ */ new Set(), a = [];
|
|
56
|
+
return t.forEach((o) => {
|
|
57
|
+
const s = n(o);
|
|
58
|
+
e.has(s) || (e.add(s), a.push(o));
|
|
59
|
+
}), a;
|
|
60
|
+
}
|
|
61
|
+
function k(t, n) {
|
|
62
|
+
return v(t.split(n).map((e) => e.trim()).filter((e) => e));
|
|
63
|
+
}
|
|
64
|
+
function i(t, n) {
|
|
65
|
+
return new Error(`Invalid cron expression [${t}]. ${n}`);
|
|
66
|
+
}
|
|
67
|
+
function F(t, n, e) {
|
|
68
|
+
if (e = e.toLowerCase().trim(), e === y)
|
|
69
|
+
return { all: !0 };
|
|
70
|
+
if (e === I)
|
|
71
|
+
return S(t, n, e);
|
|
72
|
+
const a = k(e, ","), o = {};
|
|
73
|
+
for (const s of a)
|
|
74
|
+
s && (s.indexOf(g) >= 0 ? (o.steps = o.steps || [], o.steps.push(V(t, n, s))) : s.indexOf(h) >= 0 ? (o.ranges = o.ranges || [], o.ranges.push(q(t, n, s))) : s.indexOf(p) >= 0 ? (o.nthDays = o.nthDays || [], o.nthDays.push(O(t, n, s))) : s === _ ? o.lastDay = D(t, n, s) : s === L ? o.lastWeekday = N(t, n, s) : n === "day_of_month" && s.indexOf(w) >= 0 ? (o.nearestWeekdays = o.nearestWeekdays || [], o.nearestWeekdays.push(W(t, n, s))) : n === "day_of_week" && s.endsWith(_) ? (o.lastDays = o.lastDays || [], o.lastDays.push(R(t, n, s))) : (o.values = o.values || [], o.values.push(A(t, n, s))));
|
|
75
|
+
return o.values && (o.values = v(o.values)), o;
|
|
76
|
+
}
|
|
77
|
+
function D(t, n, e) {
|
|
78
|
+
if (n === "day_of_week" || n === "day_of_month")
|
|
79
|
+
return !0;
|
|
80
|
+
throw i(t, `Invalid value for [${e}] for field [${n}]. It can be used only for [day_of_month or day_of_week] fields.`);
|
|
81
|
+
}
|
|
82
|
+
function S(t, n, e) {
|
|
83
|
+
if (n === "day_of_week" || n === "day_of_month")
|
|
84
|
+
return { omit: !0 };
|
|
85
|
+
throw i(t, `Invalid Value [${e}] for field [${n}]. It can be specified only for [day_of_month or day_of_week] fields.`);
|
|
86
|
+
}
|
|
87
|
+
function N(t, n, e) {
|
|
88
|
+
if (n === "day_of_month")
|
|
89
|
+
return !0;
|
|
90
|
+
throw i(t, `Invalid value for [${e}] for field [${n}]. It can be used only for [day_of_month] fields.`);
|
|
91
|
+
}
|
|
92
|
+
function A(t, n, e) {
|
|
93
|
+
const a = u(t, n, e), o = l.FIELD_INFO[n];
|
|
94
|
+
if (a < o.min)
|
|
95
|
+
throw i(t, `Value [${e}] out of range for field [${n}]. It must be greater than or equals to [${o.min}].`);
|
|
96
|
+
if (o.max && a > o.max)
|
|
97
|
+
throw i(t, `Value [${e}] out of range for field [${n}]. It must be less than or equals to [${o.max}].`);
|
|
98
|
+
return a;
|
|
99
|
+
}
|
|
100
|
+
function V(t, n, e) {
|
|
101
|
+
const a = e.split(g);
|
|
102
|
+
if (a.length != 2)
|
|
103
|
+
throw i(t, `Invalid step range [${e}] for field [${n}]. Expected exactly 2 values separated by a / but got [${a.length}] values.`);
|
|
104
|
+
const o = l.FIELD_INFO[n], s = a[0].indexOf(h) >= 0 ? a[0].split(h) : [a[0]], r = s[0] === y ? o.min : u(t, n, c(n, s[0])), m = s.length > 1 ? u(t, n, c(n, s[1])) : o.max, d = u(t, n, c(n, a[1]));
|
|
105
|
+
if (r < o.min)
|
|
106
|
+
throw i(t, `Invalid step range [${e}] for field [${n}]. From value [${r}] out of range. It must be greater than or equals to [${o.min}]`);
|
|
107
|
+
if (m > o.max)
|
|
108
|
+
throw i(t, `Invalid step range [${e}] for field [${n}]. To value [${m}] out of range. It must be less than or equals to [${o.max}]`);
|
|
109
|
+
if (d > o.max)
|
|
110
|
+
throw i(t, `Invalid step range [${e}] for field [${n}]. Step value [${e}] out of range. It must be less than or equals to [${o.max}]`);
|
|
111
|
+
return { from: r, to: m, step: d };
|
|
112
|
+
}
|
|
113
|
+
function O(t, n, e) {
|
|
114
|
+
if (n !== "day_of_week")
|
|
115
|
+
throw i(t, `Invalid value [${e}] for field [${n}]. Nth day can be used only in [day_of_week] field.`);
|
|
116
|
+
const a = e.split(p);
|
|
117
|
+
if (a.length !== 2)
|
|
118
|
+
throw i(t, `Invalid nth day value [${e}] for field [${n}]. It must be in [day_of_week#instance] format.`);
|
|
119
|
+
const o = u(t, n, a[0]), s = u(t, void 0, a[1]);
|
|
120
|
+
if (s < 1 || s > 5)
|
|
121
|
+
throw i(t, `Invalid Day of Week instance value [${s}] for field [${n}]. It must be between 1 and 5.`);
|
|
122
|
+
return {
|
|
123
|
+
day_of_week: o,
|
|
124
|
+
instance: s
|
|
125
|
+
};
|
|
126
|
+
}
|
|
127
|
+
function W(t, n, e) {
|
|
128
|
+
if (n !== "day_of_month")
|
|
129
|
+
throw i(t, `Invalid value [${e}] for field [${n}]. Nearest weekday can be used only in [day_of_month] field.`);
|
|
130
|
+
return u(t, n, e.split(w)[0]);
|
|
131
|
+
}
|
|
132
|
+
function R(t, n, e) {
|
|
133
|
+
return u(t, n, e.split(_)[0]);
|
|
134
|
+
}
|
|
135
|
+
function q(t, n, e) {
|
|
136
|
+
const a = e.split(h);
|
|
137
|
+
if (a.length != 2)
|
|
138
|
+
throw i(t, `Invalid range [${e}] for field [${n}]. Range should have two values separated by a - but got [${a.length}] values.`);
|
|
139
|
+
const o = u(t, n, c(n, a[0]));
|
|
140
|
+
let s = u(t, n, c(n, a[1]));
|
|
141
|
+
if (n == "day_of_week" && s === 0 && (s = 7), o >= s)
|
|
142
|
+
throw i(t, `Invalid range [${e}] for field [${n}]. From value must be less than to value.`);
|
|
143
|
+
const r = l.FIELD_INFO[n];
|
|
144
|
+
if (o < r.min || s > r.max)
|
|
145
|
+
throw i(t, `Invalid range [${e}] for field [${n}]. From or to value is out of allowed min/max values. Allowed values are between [${r.min}-${r.max}].`);
|
|
146
|
+
return { from: o, to: s };
|
|
147
|
+
}
|
|
148
|
+
function u(t, n, e) {
|
|
149
|
+
const a = parseInt(c(n, e), 10);
|
|
150
|
+
if (Number.isNaN(a))
|
|
151
|
+
throw i(t, `Invalid numeric value [${e}] in field [${n}].`);
|
|
152
|
+
return a;
|
|
153
|
+
}
|
|
154
|
+
function c(t, n) {
|
|
155
|
+
if (!t)
|
|
156
|
+
return n;
|
|
157
|
+
const a = (l.FIELD_INFO[t].alias || {})[n];
|
|
158
|
+
return a === void 0 ? n : a.toString();
|
|
159
|
+
}
|
|
160
|
+
function P(t, n) {
|
|
161
|
+
if (!t)
|
|
162
|
+
throw new Error("Cron expression cannot be blank");
|
|
163
|
+
let e = t, a = n.hasSeconds;
|
|
164
|
+
b[e] && (e = b[t], a = !1);
|
|
165
|
+
const o = a ? 5 : 4, s = a ? 7 : 6, r = e.split(/\s+/).map((f) => f.trim()).filter((f) => f);
|
|
166
|
+
if (r.length < o || r.length > s)
|
|
167
|
+
throw new Error(`Invalid cron expression [${t}]. Expected [${o} to ${s}] fields but found [${r.length}] fields.`);
|
|
168
|
+
a || r.unshift("0"), r.length === 5 && r.push(I), r.length === 6 && r.push(y);
|
|
169
|
+
const m = {};
|
|
170
|
+
for (let f = 0; f < $.length; f++)
|
|
171
|
+
m[$[f]] = r[f];
|
|
172
|
+
const d = {};
|
|
173
|
+
for (const f of $)
|
|
174
|
+
f === "second" && !a ? d[f] = { omit: !0 } : d[f] = F(t, f, m[f]);
|
|
175
|
+
return d;
|
|
176
|
+
}
|
|
177
|
+
function j(t, n = {}) {
|
|
178
|
+
if (!t)
|
|
179
|
+
throw new Error("Cron expression cannot be blank");
|
|
180
|
+
return n.hasSeconds = E(n.hasSeconds), {
|
|
181
|
+
pattern: t,
|
|
182
|
+
expressions: k(t, "|").map((a) => P(a, n))
|
|
183
|
+
};
|
|
184
|
+
}
|
|
185
|
+
l.parse = j;
|
|
186
|
+
})(C);
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
var L = "M12,4A4,4 0 0,1 16,8A4,4 0 0,1 12,12A4,4 0 0,1 8,8A4,4 0 0,1 12,4M12,14C16.42,14 20,15.79 20,18V20H4V18C4,15.79 7.58,14 12,14Z", C = "M13,13H11V7H13M13,17H11V15H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z", H = "M20 21H4V10H6V19H18V10H20V21M3 3H21V9H3V3M9.5 11H14.5C14.78 11 15 11.22 15 11.5V13H9V11.5C9 11.22 9.22 11 9.5 11M5 5V7H19V5H5Z", V = "M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z", M = "M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z", A = "M22,3H7C6.31,3 5.77,3.35 5.41,3.88L0,12L5.41,20.11C5.77,20.64 6.31,21 7,21H22A2,2 0 0,0 24,19V5A2,2 0 0,0 22,3M19,15.59L17.59,17L14,13.41L10.41,17L9,15.59L12.59,12L9,8.41L10.41,7L14,10.59L17.59,7L19,8.41L15.41,12", i = "M18.1 15.3C18 15.4 17.8 15.5 17.7 15.6L15.3 16L17 19.6C17.2 20 17 20.4 16.6 20.6L13.8 21.9C13.7 22 13.6 22 13.5 22C13.2 22 12.9 21.8 12.8 21.6L11.2 18L9.3 19.5C9.2 19.6 9 19.7 8.8 19.7C8.4 19.7 8 19.4 8 18.9V7.5C8 7 8.3 6.7 8.8 6.7C9 6.7 9.2 6.8 9.3 6.9L18 14.3C18.3 14.5 18.4 15 18.1 15.3M6 12H4V4H20V12H18.4L20.6 13.9C21.4 13.6 21.9 12.9 21.9 12V4C21.9 2.9 21 2 19.9 2H4C2.9 2 2 2.9 2 4V12C2 13.1 2.9 14 4 14H6V12Z", r = "M19,3H18V1H16V3H8V1H6V3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H10V19H5V8H19V9H21V5A2,2 0 0,0 19,3M21.7,13.35L20.7,14.35L18.65,12.35L19.65,11.35C19.85,11.14 20.19,11.13 20.42,11.35L21.7,12.63C21.89,12.83 21.89,13.15 21.7,13.35M12,18.94L18.07,12.88L20.12,14.88L14.06,21H12V18.94Z", a = "M20 5H17L15 3H9L7 5H4C2.9 5 2 5.9 2 7V19C2 20.11 2.9 21 4 21H20C21.11 21 22 20.11 22 19V7C22 5.9 21.11 5 20 5M5 12H7.1C7.65 9.29 10.29 7.55 13 8.1C13.76 8.25 14.43 8.59 15 9L13.56 10.45C13.11 10.17 12.58 10 12 10C10.74 10 9.6 10.8 9.18 12H11L8 15L5 12M16.91 14C16.36 16.71 13.72 18.45 11 17.9C10.25 17.74 9.58 17.41 9 17L10.44 15.55C10.9 15.83 11.43 16 12 16C13.27 16 14.41 15.2 14.83 14H13L16 11L19 14H16.91Z", e = "M12 2C17.5 2 22 6.5 22 12S17.5 22 12 22 2 17.5 2 12 6.5 2 12 2M12 4C10.1 4 8.4 4.6 7.1 5.7L18.3 16.9C19.3 15.5 20 13.8 20 12C20 7.6 16.4 4 12 4M16.9 18.3L5.7 7.1C4.6 8.4 4 10.1 4 12C4 16.4 7.6 20 12 20C13.9 20 15.6 19.4 16.9 18.3Z", d = "M21 15V18H24V20H21V23H19V20H16V18H19V15H21M14 18H3V6H19V13H21V6C21 4.89 20.11 4 19 4H3C1.9 4 1 4.89 1 6V18C1 19.11 1.9 20 3 20H14V18Z", m = "M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z", v = "M10,17L5,12L6.41,10.58L10,14.17L17.59,6.58L19,8M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3Z", Z = "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", t = "M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z", n = "M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z", o = "M7.41,15.41L12,10.83L16.59,15.41L18,14L12,8L6,14L7.41,15.41Z", l = "M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z", u = "M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z", c = "M13 19C13 19.34 13.04 19.67 13.09 20H6.5C5 20 3.69 19.5 2.61 18.43C1.54 17.38 1 16.09 1 14.58C1 13.28 1.39 12.12 2.17 11.1S4 9.43 5.25 9.15C5.67 7.62 6.5 6.38 7.75 5.43S10.42 4 12 4C13.95 4 15.6 4.68 16.96 6.04C18.32 7.4 19 9.05 19 11C20.15 11.13 21.1 11.63 21.86 12.5C22.37 13.07 22.7 13.71 22.86 14.42C21.82 13.54 20.5 13 19 13C15.69 13 13 15.69 13 19M17.75 19.43L16.16 17.84L15 19L17.75 22L22.5 17.25L21.34 15.84L17.75 19.43Z", h = "M13 19C13 19.34 13.04 19.67 13.09 20H6.5C5 20 3.69 19.5 2.61 18.43C1.54 17.38 1 16.09 1 14.58C1 13.28 1.39 12.12 2.17 11.1S4 9.43 5.25 9.15C5.67 7.62 6.5 6.38 7.75 5.43S10.42 4 12 4C13.95 4 15.6 4.68 16.96 6.04C18.32 7.4 19 9.05 19 11C20.15 11.13 21.1 11.63 21.86 12.5C22.37 13.07 22.7 13.71 22.86 14.42C21.82 13.54 20.5 13 19 13C15.69 13 13 15.69 13 19M21.12 15.46L19 17.59L16.88 15.47L15.47 16.88L17.59 19L15.47 21.12L16.88 22.54L19 20.41L21.12 22.54L22.54 21.12L20.41 19L22.54 16.88L21.12 15.46Z", S = "M13 17.5C13 18.39 13.18 19.23 13.5 20H6.5C5 20 3.69 19.5 2.61 18.43C1.54 17.38 1 16.09 1 14.58C1 13.28 1.39 12.12 2.17 11.1S4 9.43 5.25 9.15C5.67 7.62 6.5 6.38 7.75 5.43S10.42 4 12 4C13.95 4 15.6 4.68 16.96 6.04C18.32 7.4 19 9.05 19 11C19.04 11 19.07 11 19.1 11C15.7 11.23 13 14.05 13 17.5M19 13.5V12L16.75 14.25L19 16.5V15C20.38 15 21.5 16.12 21.5 17.5C21.5 17.9 21.41 18.28 21.24 18.62L22.33 19.71C22.75 19.08 23 18.32 23 17.5C23 15.29 21.21 13.5 19 13.5M19 20C17.62 20 16.5 18.88 16.5 17.5C16.5 17.1 16.59 16.72 16.76 16.38L15.67 15.29C15.25 15.92 15 16.68 15 17.5C15 19.71 16.79 21.5 19 21.5V23L21.25 20.75L19 18.5V20Z", p = "M11 20H6.5Q4.22 20 2.61 18.43 1 16.85 1 14.58 1 12.63 2.17 11.1 3.35 9.57 5.25 9.15 5.88 6.85 7.75 5.43 9.63 4 12 4 14.93 4 16.96 6.04 19 8.07 19 11 20.73 11.2 21.86 12.5 23 13.78 23 15.5 23 17.38 21.69 18.69 20.38 20 18.5 20H13V12.85L14.6 14.4L16 13L12 9L8 13L9.4 14.4L11 12.85Z", s = "M12,15.5A3.5,3.5 0 0,1 8.5,12A3.5,3.5 0 0,1 12,8.5A3.5,3.5 0 0,1 15.5,12A3.5,3.5 0 0,1 12,15.5M19.43,12.97C19.47,12.65 19.5,12.33 19.5,12C19.5,11.67 19.47,11.34 19.43,11L21.54,9.37C21.73,9.22 21.78,8.95 21.66,8.73L19.66,5.27C19.54,5.05 19.27,4.96 19.05,5.05L16.56,6.05C16.04,5.66 15.5,5.32 14.87,5.07L14.5,2.42C14.46,2.18 14.25,2 14,2H10C9.75,2 9.54,2.18 9.5,2.42L9.13,5.07C8.5,5.32 7.96,5.66 7.44,6.05L4.95,5.05C4.73,4.96 4.46,5.05 4.34,5.27L2.34,8.73C2.21,8.95 2.27,9.22 2.46,9.37L4.57,11C4.53,11.34 4.5,11.67 4.5,12C4.5,12.33 4.53,12.65 4.57,12.97L2.46,14.63C2.27,14.78 2.21,15.05 2.34,15.27L4.34,18.73C4.46,18.95 4.73,19.03 4.95,18.95L7.44,17.94C7.96,18.34 8.5,18.68 9.13,18.93L9.5,21.58C9.54,21.82 9.75,22 10,22H14C14.25,22 14.46,21.82 14.5,21.58L14.87,18.93C15.5,18.67 16.04,18.34 16.56,17.94L19.05,18.95C19.27,19.03 19.54,18.95 19.66,18.73L21.66,15.27C21.78,15.05 21.73,14.78 21.54,14.63L19.43,12.97Z", g = "M20 2H4C2.9 2 2 2.9 2 4V16C2 17.1 2.9 18 4 18H8V21C8 21.6 8.4 22 9 22H9.5C9.7 22 10 21.9 10.2 21.7L13.9 18H20C21.1 18 22 17.1 22 16V4C22 2.9 21.1 2 20 2M11 13H7V8.8L8.3 6H10.3L8.9 9H11V13M17 13H13V8.8L14.3 6H16.3L14.9 9H17V13Z", w = "M11,17H4A2,2 0 0,1 2,15V3A2,2 0 0,1 4,1H16V3H4V15H11V13L15,16L11,19V17M19,21V7H8V13H6V7A2,2 0 0,1 8,5H19A2,2 0 0,1 21,7V21A2,2 0 0,1 19,23H8A2,2 0 0,1 6,21V19H8V21H19Z", D = "M15,9H5V5H15M12,19A3,3 0 0,1 9,16A3,3 0 0,1 12,13A3,3 0 0,1 15,16A3,3 0 0,1 12,19M17,3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V7L17,3Z", O = "M21,16.5C21,16.88 20.79,17.21 20.47,17.38L12.57,21.82C12.41,21.94 12.21,22 12,22C11.79,22 11.59,21.94 11.43,21.82L3.53,17.38C3.21,17.21 3,16.88 3,16.5V7.5C3,7.12 3.21,6.79 3.53,6.62L11.43,2.18C11.59,2.06 11.79,2 12,2C12.21,2 12.41,2.06 12.57,2.18L20.47,6.62C20.79,6.79 21,7.12 21,7.5V16.5M12,4.15L6.04,7.5L12,10.85L17.96,7.5L12,4.15M5,15.91L11,19.29V12.58L5,9.21V15.91M19,15.91V9.21L13,12.58V19.29L19,15.91Z", F = "M12,14A2,2 0 0,1 14,16A2,2 0 0,1 12,18A2,2 0 0,1 10,16A2,2 0 0,1 12,14M23.46,8.86L21.87,15.75L15,14.16L18.8,11.78C17.39,9.5 14.87,8 12,8C8.05,8 4.77,10.86 4.12,14.63L2.15,14.28C2.96,9.58 7.06,6 12,6C15.58,6 18.73,7.89 20.5,10.72L23.46,8.86Z", P = "M19,4H15.5L14.5,3H9.5L8.5,4H5V6H19M6,19A2,2 0 0,0 8,21H16A2,2 0 0,0 18,19V7H6V19Z", f = "M22.67,12L18.18,16.5L15.67,14L17.65,12L15.67,10.04L18.18,7.53L22.67,12M12,1.33L16.47,5.82L13.96,8.33L12,6.35L10,8.33L7.5,5.82L12,1.33M12,22.67L7.53,18.18L10.04,15.67L12,17.65L14,15.67L16.5,18.18L12,22.67M1.33,12L5.82,7.5L8.33,10L6.35,12L8.33,13.96L5.82,16.47L1.33,12M12,10A2,2 0 0,1 14,12A2,2 0 0,1 12,14A2,2 0 0,1 10,12A2,2 0 0,1 12,10Z", k = "M20,8L12,13L4,8V6L12,11L20,6M20,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V6C22,4.89 21.1,4 20,4Z", x = "M16.24,3.56L21.19,8.5C21.97,9.29 21.97,10.55 21.19,11.34L12,20.53C10.44,22.09 7.91,22.09 6.34,20.53L2.81,17C2.03,16.21 2.03,14.95 2.81,14.16L13.41,3.56C14.2,2.78 15.46,2.78 16.24,3.56M4.22,15.58L7.76,19.11C8.54,19.9 9.8,19.9 10.59,19.11L14.12,15.58L9.17,10.63L4.22,15.58Z", R = "M15.14,3C14.63,3 14.12,3.2 13.73,3.59L2.59,14.73C1.81,15.5 1.81,16.77 2.59,17.56L5.03,20H12.69L21.41,11.27C22.2,10.5 22.2,9.23 21.41,8.44L16.56,3.59C16.17,3.2 15.65,3 15.14,3M17,18L15,20H22V18", b = "M14 2H6C4.9 2 4 2.9 4 4V20C4 21.1 4.9 22 6 22H18C19.1 22 20 21.1 20 20V8L14 2M15 16L13 20H10L12 16H9V11H15V16M13 9V3.5L18.5 9H13Z", B = "M14 2H6C4.9 2 4 2.9 4 4V20C4 21.1 4.9 22 6 22H18C19.1 22 20 21.1 20 20V8L14 2M18 20H6V4H13V9H18V20M10 19L12 15H9V10H15V15L13 19H10", E = "M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M18,20H6V4H13V9H18V20Z", U = "M14,12V19.88C14.04,20.18 13.94,20.5 13.71,20.71C13.32,21.1 12.69,21.1 12.3,20.71L10.29,18.7C10.06,18.47 9.96,18.16 10,17.87V12H9.97L4.21,4.62C3.87,4.19 3.95,3.56 4.38,3.22C4.57,3.08 4.78,3 5,3V3H19V3C19.22,3 19.43,3.08 19.62,3.22C20.05,3.56 20.13,4.19 19.79,4.62L14.03,12H14Z", y = "M17.81,4.47C17.73,4.47 17.65,4.45 17.58,4.41C15.66,3.42 14,3 12,3C10.03,3 8.15,3.47 6.44,4.41C6.2,4.54 5.9,4.45 5.76,4.21C5.63,3.97 5.72,3.66 5.96,3.53C7.82,2.5 9.86,2 12,2C14.14,2 16,2.47 18.04,3.5C18.29,3.65 18.38,3.95 18.25,4.19C18.16,4.37 18,4.47 17.81,4.47M3.5,9.72C3.4,9.72 3.3,9.69 3.21,9.63C3,9.47 2.93,9.16 3.09,8.93C4.08,7.53 5.34,6.43 6.84,5.66C10,4.04 14,4.03 17.15,5.65C18.65,6.42 19.91,7.5 20.9,8.9C21.06,9.12 21,9.44 20.78,9.6C20.55,9.76 20.24,9.71 20.08,9.5C19.18,8.22 18.04,7.23 16.69,6.54C13.82,5.07 10.15,5.07 7.29,6.55C5.93,7.25 4.79,8.25 3.89,9.5C3.81,9.65 3.66,9.72 3.5,9.72M9.75,21.79C9.62,21.79 9.5,21.74 9.4,21.64C8.53,20.77 8.06,20.21 7.39,19C6.7,17.77 6.34,16.27 6.34,14.66C6.34,11.69 8.88,9.27 12,9.27C15.12,9.27 17.66,11.69 17.66,14.66A0.5,0.5 0 0,1 17.16,15.16A0.5,0.5 0 0,1 16.66,14.66C16.66,12.24 14.57,10.27 12,10.27C9.43,10.27 7.34,12.24 7.34,14.66C7.34,16.1 7.66,17.43 8.27,18.5C8.91,19.66 9.35,20.15 10.12,20.93C10.31,21.13 10.31,21.44 10.12,21.64C10,21.74 9.88,21.79 9.75,21.79M16.92,19.94C15.73,19.94 14.68,19.64 13.82,19.05C12.33,18.04 11.44,16.4 11.44,14.66A0.5,0.5 0 0,1 11.94,14.16A0.5,0.5 0 0,1 12.44,14.66C12.44,16.07 13.16,17.4 14.38,18.22C15.09,18.7 15.92,18.93 16.92,18.93C17.16,18.93 17.56,18.9 17.96,18.83C18.23,18.78 18.5,18.96 18.54,19.24C18.59,19.5 18.41,19.77 18.13,19.82C17.56,19.93 17.06,19.94 16.92,19.94M14.91,22C14.87,22 14.82,22 14.78,22C13.19,21.54 12.15,20.95 11.06,19.88C9.66,18.5 8.89,16.64 8.89,14.66C8.89,13.04 10.27,11.72 11.97,11.72C13.67,11.72 15.05,13.04 15.05,14.66C15.05,15.73 16,16.6 17.13,16.6C18.28,16.6 19.21,15.73 19.21,14.66C19.21,10.89 15.96,7.83 11.96,7.83C9.12,7.83 6.5,9.41 5.35,11.86C4.96,12.67 4.76,13.62 4.76,14.66C4.76,15.44 4.83,16.67 5.43,18.27C5.53,18.53 5.4,18.82 5.14,18.91C4.88,19 4.59,18.87 4.5,18.62C4,17.31 3.77,16 3.77,14.66C3.77,13.46 4,12.37 4.45,11.42C5.78,8.63 8.73,6.82 11.96,6.82C16.5,6.82 20.21,10.33 20.21,14.65C20.21,16.27 18.83,17.59 17.13,17.59C15.43,17.59 14.05,16.27 14.05,14.65C14.05,13.58 13.12,12.71 11.97,12.71C10.82,12.71 9.89,13.58 9.89,14.65C9.89,16.36 10.55,17.96 11.76,19.16C12.71,20.1 13.62,20.62 15.03,21C15.3,21.08 15.45,21.36 15.38,21.62C15.33,21.85 15.12,22 14.91,22Z", z = "M19,11.5C19,11.5 17,13.67 17,15A2,2 0 0,0 19,17A2,2 0 0,0 21,15C21,13.67 19,11.5 19,11.5M5.21,10L10,5.21L14.79,10M16.56,8.94L7.62,0L6.21,1.41L8.59,3.79L3.44,8.94C2.85,9.5 2.85,10.47 3.44,11.06L8.94,16.56C9.23,16.85 9.62,17 10,17C10.38,17 10.77,16.85 11.06,16.56L16.56,11.06C17.15,10.47 17.15,9.5 16.56,8.94Z", I = "M11,18H13V16H11V18M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,20C7.59,20 4,16.41 4,12C4,7.59 7.59,4 12,4C16.41,4 20,7.59 20,12C20,16.41 16.41,20 12,20M12,6A4,4 0 0,0 8,10H10A2,2 0 0,1 12,8A2,2 0 0,1 14,10C14,12 11,11.75 11,15H13C13,12.75 16,12.5 16,10A4,4 0 0,0 12,6Z", N = "M13,9H11V7H13M13,17H11V11H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z", Q = "M19 3H5C3.9 3 3 3.9 3 5V19C3 20.1 3.9 21 5 21H19C20.1 21 21 20.1 21 19V5C21 3.9 20.1 3 19 3M7 7H9V9H7V7M7 11H9V13H7V11M7 15H9V17H7V15M17 17H11V15H17V17M17 13H11V11H17V13M17 9H11V7H17V9Z", T = "M17 7L15.59 8.41L18.17 11H8V13H18.17L15.59 15.58L17 17L22 12M4 5H12V3H4C2.9 3 2 3.9 2 5V19C2 20.1 2.9 21 4 21H12V19H4V5Z", W = "M9.5,3A6.5,6.5 0 0,1 16,9.5C16,11.11 15.41,12.59 14.44,13.73L14.71,14H15.5L20.5,19L19,20.5L14,15.5V14.71L13.73,14.44C12.59,15.41 11.11,16 9.5,16A6.5,6.5 0 0,1 3,9.5A6.5,6.5 0 0,1 9.5,3M9.5,5C7,5 5,7 5,9.5C5,12 7,14 9.5,14C12,14 14,12 14,9.5C14,7 12,5 9.5,5Z", Y = "M7,10L12,15L17,10H7Z", j = "M7,15L12,10L17,15H7Z", q = "M1.88,0.46L0.46,1.88L5.59,7H2V9H9V2H7V5.59M11,7V9H21V15H23V9A2,2 0 0,0 21,7M7,11V21A2,2 0 0,0 9,23H15V21H9V11M15.88,14.46L14.46,15.88L19.6,21H17V23H23V17H21V19.59", G = "M4,17V9H2V7H6V17H4M22,15C22,16.11 21.1,17 20,17H16V15H20V13H18V11H20V9H16V7H20A2,2 0 0,1 22,9V10.5A1.5,1.5 0 0,1 20.5,12A1.5,1.5 0 0,1 22,13.5V15M14,15V17H8V13C8,11.89 8.9,11 10,11H12V9H8V7H12A2,2 0 0,1 14,9V11C14,12.11 13.1,13 12,13H10V15H14Z", J = "M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z", K = "M17.5,12A1.5,1.5 0 0,1 16,10.5A1.5,1.5 0 0,1 17.5,9A1.5,1.5 0 0,1 19,10.5A1.5,1.5 0 0,1 17.5,12M14.5,8A1.5,1.5 0 0,1 13,6.5A1.5,1.5 0 0,1 14.5,5A1.5,1.5 0 0,1 16,6.5A1.5,1.5 0 0,1 14.5,8M9.5,8A1.5,1.5 0 0,1 8,6.5A1.5,1.5 0 0,1 9.5,5A1.5,1.5 0 0,1 11,6.5A1.5,1.5 0 0,1 9.5,8M6.5,12A1.5,1.5 0 0,1 5,10.5A1.5,1.5 0 0,1 6.5,9A1.5,1.5 0 0,1 8,10.5A1.5,1.5 0 0,1 6.5,12M12,3A9,9 0 0,0 3,12A9,9 0 0,0 12,21A1.5,1.5 0 0,0 13.5,19.5C13.5,19.11 13.35,18.76 13.11,18.5C12.88,18.23 12.73,17.88 12.73,17.5A1.5,1.5 0 0,1 14.23,16H16A5,5 0 0,0 21,11C21,6.58 16.97,3 12,3Z", X = "M14.53 1.45L13.45 2.53L15.05 4.13C15.27 4.38 15.38 4.67 15.38 5S15.27 5.64 15.05 5.86L11.5 9.47L12.5 10.55L16.13 6.94C16.66 6.35 16.92 5.7 16.92 5C16.92 4.3 16.66 3.64 16.13 3.05L14.53 1.45M10.55 3.47L9.47 4.55L10.08 5.11C10.3 5.33 10.41 5.63 10.41 6S10.3 6.67 10.08 6.89L9.47 7.45L10.55 8.53L11.11 7.92C11.64 7.33 11.91 6.69 11.91 6C11.91 5.28 11.64 4.63 11.11 4.03L10.55 3.47M21 5.06C20.31 5.06 19.67 5.33 19.08 5.86L13.45 11.5L14.53 12.5L20.11 6.94C20.36 6.69 20.66 6.56 21 6.56S21.64 6.69 21.89 6.94L22.5 7.55L23.53 6.47L22.97 5.86C22.38 5.33 21.72 5.06 21 5.06M7 8L2 22L16 17L7 8M19 11.06C18.3 11.06 17.66 11.33 17.06 11.86L15.47 13.45L16.55 14.53L18.14 12.94C18.39 12.69 18.67 12.56 19 12.56C19.33 12.56 19.63 12.69 19.88 12.94L21.5 14.53L22.55 13.5L20.95 11.86C20.36 11.33 19.7 11.06 19 11.06Z", _ = "M20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18,2.9 17.35,2.9 16.96,3.29L15.12,5.12L18.87,8.87M3,17.25V21H6.75L17.81,9.93L14.06,6.18L3,17.25Z", $ = "M18.66,2C18.4,2 18.16,2.09 17.97,2.28L16.13,4.13L19.88,7.88L21.72,6.03C22.11,5.64 22.11,5 21.72,4.63L19.38,2.28C19.18,2.09 18.91,2 18.66,2M3.28,4L2,5.28L8.5,11.75L4,16.25V20H7.75L12.25,15.5L18.72,22L20,20.72L13.5,14.25L9.75,10.5L3.28,4M15.06,5.19L11.03,9.22L14.78,12.97L18.81,8.94L15.06,5.19Z", L1 = "M6.62,10.79C8.06,13.62 10.38,15.94 13.21,17.38L15.41,15.18C15.69,14.9 16.08,14.82 16.43,14.93C17.55,15.3 18.75,15.5 20,15.5A1,1 0 0,1 21,16.5V20A1,1 0 0,1 20,21A17,17 0 0,1 3,4A1,1 0 0,1 4,3H7.5A1,1 0 0,1 8.5,4C8.5,5.25 8.7,6.45 9.07,7.57C9.18,7.92 9.1,8.31 8.82,8.59L6.62,10.79Z", C1 = "M18,3H6V7H18M19,12A1,1 0 0,1 18,11A1,1 0 0,1 19,10A1,1 0 0,1 20,11A1,1 0 0,1 19,12M16,19H8V14H16M19,8H5A3,3 0 0,0 2,11V17H6V21H18V17H22V11A3,3 0 0,0 19,8Z", H1 = "M17.65,6.35C16.2,4.9 14.21,4 12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20C15.73,20 18.84,17.45 19.73,14H17.65C16.83,16.33 14.61,18 12,18A6,6 0 0,1 6,12A6,6 0 0,1 12,6C13.66,6 15.14,6.69 16.22,7.78L13,11H20V4L17.65,6.35Z", V1 = "M12,4C14.1,4 16.1,4.8 17.6,6.3C20.7,9.4 20.7,14.5 17.6,17.6C15.8,19.5 13.3,20.2 10.9,19.9L11.4,17.9C13.1,18.1 14.9,17.5 16.2,16.2C18.5,13.9 18.5,10.1 16.2,7.7C15.1,6.6 13.5,6 12,6V10.6L7,5.6L12,0.6V4M6.3,17.6C3.7,15 3.3,11 5.1,7.9L6.6,9.4C5.5,11.6 5.9,14.4 7.8,16.2C8.3,16.7 8.9,17.1 9.6,17.4L9,19.4C8,19 7.1,18.4 6.3,17.6Z", M1 = "M2,21L23,12L2,3V10L17,12L2,14V21Z", A1 = "M14,17H7V15H14M17,13H7V11H17M17,9H7V7H17M19,3H5C3.89,3 3,3.89 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5C21,3.89 20.1,3 19,3Z", i1 = "M7.5,2C5.71,3.15 4.5,5.18 4.5,7.5C4.5,9.82 5.71,11.85 7.53,13C4.46,13 2,10.54 2,7.5A5.5,5.5 0 0,1 7.5,2M19.07,3.5L20.5,4.93L4.93,20.5L3.5,19.07L19.07,3.5M12.89,5.93L11.41,5L9.97,6L10.39,4.3L9,3.24L10.75,3.12L11.33,1.47L12,3.1L13.73,3.13L12.38,4.26L12.89,5.93M9.59,9.54L8.43,8.81L7.31,9.59L7.65,8.27L6.56,7.44L7.92,7.35L8.37,6.06L8.88,7.33L10.24,7.36L9.19,8.23L9.59,9.54M19,13.5A5.5,5.5 0 0,1 13.5,19C12.28,19 11.15,18.6 10.24,17.93L17.93,10.24C18.6,11.15 19,12.28 19,13.5M14.6,20.08L17.37,18.93L17.13,22.28L14.6,20.08M18.93,17.38L20.08,14.61L22.28,17.15L18.93,17.38M20.08,12.42L18.94,9.64L22.28,9.88L20.08,12.42M9.63,18.93L12.4,20.08L9.87,22.27L9.63,18.93Z", r1 = "M12.5,8C9.85,8 7.45,9 5.6,10.6L2,7V16H11L7.38,12.38C8.77,11.22 10.54,10.5 12.5,10.5C16.04,10.5 19.05,12.81 20.1,16L22.47,15.22C21.08,11.03 17.15,8 12.5,8Z", a1 = "M18,6V17H22V6M2,17H6V6H2M7,19H17V4H7V19Z", e1 = "M16,5V18H21V5M4,18H9V5H4M10,18H15V5H10V18Z", d1 = "M9,5V9H21V5M9,19H21V15H9M9,14H21V10H9M4,9H8V5H4M4,19H8V15H4M4,14H8V10H4V14Z", m1 = "M4,4H20V20H4V4M6,8V18H18V8H6Z", v1 = "M10,15L15.19,12L10,9V15M21.56,7.17C21.69,7.64 21.78,8.27 21.84,9.07C21.91,9.87 21.94,10.56 21.94,11.16L22,12C22,14.19 21.84,15.8 21.56,16.83C21.31,17.73 20.73,18.31 19.83,18.56C19.36,18.69 18.5,18.78 17.18,18.84C15.88,18.91 14.69,18.94 13.59,18.94L12,19C7.81,19 5.2,18.84 4.17,18.56C3.27,18.31 2.69,17.73 2.44,16.83C2.31,16.36 2.22,15.73 2.16,14.93C2.09,14.13 2.06,13.44 2.06,12.84L2,12C2,9.81 2.16,8.2 2.44,7.17C2.69,6.27 3.27,5.69 4.17,5.44C4.64,5.31 5.5,5.22 6.82,5.16C8.12,5.09 9.31,5.06 10.41,5.06L12,5C16.19,5 18.8,5.16 19.83,5.44C20.73,5.69 21.31,6.27 21.56,7.17Z";
|
|
2
|
+
export {
|
|
3
|
+
L as mdiAccount,
|
|
4
|
+
C as mdiAlertCircle,
|
|
5
|
+
H as mdiArchiveOutline,
|
|
6
|
+
V as mdiArrowLeft,
|
|
7
|
+
M as mdiArrowRight,
|
|
8
|
+
A as mdiBackspace,
|
|
9
|
+
i as mdiButtonCursor,
|
|
10
|
+
r as mdiCalendarEdit,
|
|
11
|
+
a as mdiCameraFlip,
|
|
12
|
+
e as mdiCancel,
|
|
13
|
+
d as mdiCardPlusOutline,
|
|
14
|
+
m as mdiCheck,
|
|
15
|
+
v as mdiCheckboxMarked,
|
|
16
|
+
Z as mdiChevronDown,
|
|
17
|
+
t as mdiChevronLeft,
|
|
18
|
+
n as mdiChevronRight,
|
|
19
|
+
o as mdiChevronUp,
|
|
20
|
+
l as mdiCircle,
|
|
21
|
+
u as mdiClose,
|
|
22
|
+
c as mdiCloudCheck,
|
|
23
|
+
h as mdiCloudRemove,
|
|
24
|
+
S as mdiCloudSync,
|
|
25
|
+
p as mdiCloudUpload,
|
|
26
|
+
s as mdiCog,
|
|
27
|
+
g as mdiCommentQuote,
|
|
28
|
+
w as mdiContentDuplicate,
|
|
29
|
+
D as mdiContentSave,
|
|
30
|
+
O as mdiCubeOutline,
|
|
31
|
+
F as mdiDebugStepOver,
|
|
32
|
+
P as mdiDelete,
|
|
33
|
+
f as mdiDragVariant,
|
|
34
|
+
k as mdiEmail,
|
|
35
|
+
x as mdiEraser,
|
|
36
|
+
R as mdiEraserVariant,
|
|
37
|
+
b as mdiFileDelimited,
|
|
38
|
+
B as mdiFileDelimitedOutline,
|
|
39
|
+
E as mdiFileOutline,
|
|
40
|
+
U as mdiFilter,
|
|
41
|
+
y as mdiFingerprint,
|
|
42
|
+
z as mdiFormatColorFill,
|
|
43
|
+
I as mdiHelpCircleOutline,
|
|
44
|
+
N as mdiInformation,
|
|
45
|
+
Q as mdiListBox,
|
|
46
|
+
T as mdiLogout,
|
|
47
|
+
W as mdiMagnify,
|
|
48
|
+
Y as mdiMenuDown,
|
|
49
|
+
j as mdiMenuUp,
|
|
50
|
+
q as mdiMoveResizeVariant,
|
|
51
|
+
G as mdiNumeric,
|
|
52
|
+
J as mdiOpenInNew,
|
|
53
|
+
K as mdiPalette,
|
|
54
|
+
X as mdiPartyPopper,
|
|
55
|
+
_ as mdiPencil,
|
|
56
|
+
$ as mdiPencilOff,
|
|
57
|
+
L1 as mdiPhone,
|
|
58
|
+
C1 as mdiPrinter,
|
|
59
|
+
H1 as mdiRefresh,
|
|
60
|
+
V1 as mdiRestart,
|
|
61
|
+
M1 as mdiSend,
|
|
62
|
+
A1 as mdiTextBox,
|
|
63
|
+
i1 as mdiThemeLightDark,
|
|
64
|
+
r1 as mdiUndo,
|
|
65
|
+
a1 as mdiViewCarousel,
|
|
66
|
+
e1 as mdiViewColumn,
|
|
67
|
+
d1 as mdiViewList,
|
|
68
|
+
m1 as mdiWindowMaximize,
|
|
69
|
+
v1 as mdiYoutube
|
|
70
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|