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,173 @@
|
|
|
1
|
+
import { defineComponent as d, h as n } from "vue";
|
|
2
|
+
import h from "../../signature_pad/dist/signature_pad.mjs";
|
|
3
|
+
import r from "../../merge-images/dist/index.es2015.mjs";
|
|
4
|
+
const s = ["image/png", "image/jpeg", "image/svg+xml"], c = (e) => s.includes(e), m = {
|
|
5
|
+
dotSize: (0.5 + 2.5) / 2,
|
|
6
|
+
minWidth: 0.5,
|
|
7
|
+
maxWidth: 2.5,
|
|
8
|
+
throttle: 16,
|
|
9
|
+
minDistance: 5,
|
|
10
|
+
backgroundColor: "rgba(0,0,0,0)",
|
|
11
|
+
penColor: "black",
|
|
12
|
+
velocityFilterWeight: 0.7,
|
|
13
|
+
onBegin: () => {
|
|
14
|
+
},
|
|
15
|
+
onEnd: () => {
|
|
16
|
+
}
|
|
17
|
+
}, g = (e) => JSON.parse(JSON.stringify(e)), o = {
|
|
18
|
+
src: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=",
|
|
19
|
+
x: 0,
|
|
20
|
+
y: 0
|
|
21
|
+
};
|
|
22
|
+
var l = d({
|
|
23
|
+
name: "VueSignaturePad",
|
|
24
|
+
props: {
|
|
25
|
+
width: {
|
|
26
|
+
type: String,
|
|
27
|
+
default: "100%"
|
|
28
|
+
},
|
|
29
|
+
height: {
|
|
30
|
+
type: String,
|
|
31
|
+
default: "100%"
|
|
32
|
+
},
|
|
33
|
+
customStyle: {
|
|
34
|
+
type: Object,
|
|
35
|
+
default: () => ({})
|
|
36
|
+
},
|
|
37
|
+
options: {
|
|
38
|
+
type: Object,
|
|
39
|
+
default: () => ({})
|
|
40
|
+
},
|
|
41
|
+
images: {
|
|
42
|
+
type: Array,
|
|
43
|
+
default: () => []
|
|
44
|
+
},
|
|
45
|
+
scaleToDevicePixelRatio: {
|
|
46
|
+
type: Boolean,
|
|
47
|
+
default: () => !0
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
data: () => ({
|
|
51
|
+
signaturePad: {},
|
|
52
|
+
cacheImages: [],
|
|
53
|
+
signatureData: o,
|
|
54
|
+
onResizeHandler: null
|
|
55
|
+
}),
|
|
56
|
+
computed: {
|
|
57
|
+
propsImagesAndCustomImages() {
|
|
58
|
+
const e = g(this.images), t = g(this.cacheImages);
|
|
59
|
+
return [...e, ...t];
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
watch: {
|
|
63
|
+
options: function(e) {
|
|
64
|
+
Object.keys(e).forEach((t) => {
|
|
65
|
+
this.signaturePad[t] && (this.signaturePad[t] = e[t]);
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
mounted() {
|
|
70
|
+
const {
|
|
71
|
+
options: e
|
|
72
|
+
} = this, t = this.$refs.signaturePadCanvas, a = new h(t, {
|
|
73
|
+
...m,
|
|
74
|
+
...e
|
|
75
|
+
});
|
|
76
|
+
this.signaturePad = a, e.resizeHandler && (this.resizeCanvas = e.resizeHandler.bind(this)), this.onResizeHandler = this.resizeCanvas.bind(this), window.addEventListener("resize", this.onResizeHandler, !1), this.resizeCanvas();
|
|
77
|
+
},
|
|
78
|
+
beforeUnmount() {
|
|
79
|
+
this.onResizeHandler && window.removeEventListener("resize", this.onResizeHandler, !1);
|
|
80
|
+
},
|
|
81
|
+
methods: {
|
|
82
|
+
resizeCanvas() {
|
|
83
|
+
const e = this.$refs.signaturePadCanvas, t = this.signaturePad.toData(), a = this.scaleToDevicePixelRatio ? Math.max(window.devicePixelRatio || 1, 1) : 1;
|
|
84
|
+
e.width = e.offsetWidth * a, e.height = e.offsetHeight * a, e.getContext("2d").scale(a, a), this.signaturePad.clear(), this.signatureData = o, this.signaturePad.fromData(t);
|
|
85
|
+
},
|
|
86
|
+
saveSignature() {
|
|
87
|
+
let e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : s[0], t = arguments.length > 1 ? arguments[1] : void 0;
|
|
88
|
+
const {
|
|
89
|
+
signaturePad: a
|
|
90
|
+
} = this, i = {
|
|
91
|
+
isEmpty: !1,
|
|
92
|
+
data: void 0
|
|
93
|
+
};
|
|
94
|
+
if (!c(e)) {
|
|
95
|
+
const u = s.join(", ");
|
|
96
|
+
throw new Error(`The Image type is incorrect! We are support ${u} types.`);
|
|
97
|
+
}
|
|
98
|
+
return a.isEmpty() ? {
|
|
99
|
+
...i,
|
|
100
|
+
isEmpty: !0
|
|
101
|
+
} : (this.signatureData = a.toDataURL(e, t), {
|
|
102
|
+
...i,
|
|
103
|
+
data: this.signatureData
|
|
104
|
+
});
|
|
105
|
+
},
|
|
106
|
+
undoSignature() {
|
|
107
|
+
const {
|
|
108
|
+
signaturePad: e
|
|
109
|
+
} = this, t = e.toData();
|
|
110
|
+
if (t)
|
|
111
|
+
return e.fromData(t.slice(0, -1));
|
|
112
|
+
},
|
|
113
|
+
mergeImageAndSignature(e) {
|
|
114
|
+
return this.signatureData = e, r([...this.images, ...this.cacheImages, this.signatureData]);
|
|
115
|
+
},
|
|
116
|
+
addImages() {
|
|
117
|
+
let e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : [];
|
|
118
|
+
return this.cacheImages = [...this.cacheImages, ...e], r([...this.images, ...this.cacheImages, this.signatureData]);
|
|
119
|
+
},
|
|
120
|
+
fromDataURL(e) {
|
|
121
|
+
let t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, a = arguments.length > 2 ? arguments[2] : void 0;
|
|
122
|
+
return this.signaturePad.fromDataURL(e, t, a);
|
|
123
|
+
},
|
|
124
|
+
fromData(e) {
|
|
125
|
+
return this.signaturePad.fromData(e);
|
|
126
|
+
},
|
|
127
|
+
toData() {
|
|
128
|
+
return this.signaturePad.toData();
|
|
129
|
+
},
|
|
130
|
+
lockSignaturePad() {
|
|
131
|
+
return this.signaturePad.off();
|
|
132
|
+
},
|
|
133
|
+
openSignaturePad() {
|
|
134
|
+
return this.signaturePad.on();
|
|
135
|
+
},
|
|
136
|
+
isEmpty() {
|
|
137
|
+
return this.signaturePad.isEmpty();
|
|
138
|
+
},
|
|
139
|
+
getPropImagesAndCacheImages() {
|
|
140
|
+
return this.propsImagesAndCustomImages;
|
|
141
|
+
},
|
|
142
|
+
clearCacheImages() {
|
|
143
|
+
return this.cacheImages = [], this.cacheImages;
|
|
144
|
+
},
|
|
145
|
+
clearSignature() {
|
|
146
|
+
return this.signaturePad.clear();
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
render() {
|
|
150
|
+
const {
|
|
151
|
+
width: e,
|
|
152
|
+
height: t,
|
|
153
|
+
customStyle: a
|
|
154
|
+
} = this;
|
|
155
|
+
return n("div", {
|
|
156
|
+
style: {
|
|
157
|
+
width: e,
|
|
158
|
+
height: t,
|
|
159
|
+
...a
|
|
160
|
+
}
|
|
161
|
+
}, [n("canvas", {
|
|
162
|
+
style: {
|
|
163
|
+
width: e,
|
|
164
|
+
height: t
|
|
165
|
+
},
|
|
166
|
+
ref: "signaturePadCanvas"
|
|
167
|
+
})]);
|
|
168
|
+
}
|
|
169
|
+
});
|
|
170
|
+
l.__file = "src/components/VueSignaturePad.vue";
|
|
171
|
+
export {
|
|
172
|
+
l as VueSignaturePad
|
|
173
|
+
};
|
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
import { ref as k, isRef as _, toValue as x, watch as D, onScopeDispose as E, computed as F, reactive as S, defineComponent as $, onUpdated as B, toRaw as j, Fragment as O, getTransitionRawChildren as W, warn as G, createVNode as N } from "vue";
|
|
2
|
+
/*!
|
|
3
|
+
* vue-use-spring v0.3.3
|
|
4
|
+
* (c) 2020-2024 Eduardo San Martin Morote
|
|
5
|
+
* Released under the MIT License.
|
|
6
|
+
*/
|
|
7
|
+
const U = {
|
|
8
|
+
mass: 1,
|
|
9
|
+
tension: 170,
|
|
10
|
+
friction: 26,
|
|
11
|
+
precision: 0.01
|
|
12
|
+
}, T = typeof window < "u", q = T ? window.requestAnimationFrame.bind(window) : () => {
|
|
13
|
+
}, H = T ? window.cancelAnimationFrame.bind(window) : () => {
|
|
14
|
+
}, V = typeof performance < "u" ? performance.now.bind(performance) : Date.now.bind(Date), C = Array.isArray.bind(Array), g = [0, 0];
|
|
15
|
+
function A(e, a, c, n, t) {
|
|
16
|
+
const f = -t.tension * (a - n), d = -t.friction * c, i = (f + d) / (t.mass || 1), o = c + i * e, l = a + o * e, s = t.precision || 0.01;
|
|
17
|
+
return Math.abs(o) < s && Math.abs(l - n) < s ? (g[0] = n, g[1] = 0, g) : (g[0] = l, g[1] = o, g);
|
|
18
|
+
}
|
|
19
|
+
const w = 1e3 / 60;
|
|
20
|
+
function M(e, a) {
|
|
21
|
+
const c = C(e) ? [] : {}, n = C(e) ? [] : {};
|
|
22
|
+
for (const t in e)
|
|
23
|
+
c[t] = e[t], n[t] = a ? a[t] : 0;
|
|
24
|
+
return [c, n];
|
|
25
|
+
}
|
|
26
|
+
const z = () => {
|
|
27
|
+
};
|
|
28
|
+
function b(e, a = U, c = {}) {
|
|
29
|
+
const n = c.onRest || z, t = k(
|
|
30
|
+
_(e) ? e : x(e)
|
|
31
|
+
);
|
|
32
|
+
let f = !1, d = 0, i = 0, o;
|
|
33
|
+
D(
|
|
34
|
+
t,
|
|
35
|
+
(p, h) => {
|
|
36
|
+
f || (d = V(), i = 0, y());
|
|
37
|
+
},
|
|
38
|
+
{ deep: !0 }
|
|
39
|
+
);
|
|
40
|
+
const l = M(t.value, null), s = k(l[0]), r = k(l[1]);
|
|
41
|
+
let u = l[0], m = l[1];
|
|
42
|
+
if (T) {
|
|
43
|
+
d = V(), i = 0;
|
|
44
|
+
const p = M(
|
|
45
|
+
s.value,
|
|
46
|
+
r.value
|
|
47
|
+
);
|
|
48
|
+
u = p[0], m = p[1], y();
|
|
49
|
+
}
|
|
50
|
+
E(() => {
|
|
51
|
+
o && H(o);
|
|
52
|
+
});
|
|
53
|
+
function y() {
|
|
54
|
+
o = q(() => {
|
|
55
|
+
if (J(
|
|
56
|
+
s.value,
|
|
57
|
+
t.value,
|
|
58
|
+
r.value
|
|
59
|
+
)) {
|
|
60
|
+
f && n(), o = null, f = !1;
|
|
61
|
+
return;
|
|
62
|
+
}
|
|
63
|
+
f = !0;
|
|
64
|
+
const p = V(), h = p - d;
|
|
65
|
+
if (d = p, i += h, i > w * 10 && (i = 0), i === 0)
|
|
66
|
+
return o = null, y();
|
|
67
|
+
const P = (i - Math.floor(i / w) * w) / w, R = Math.floor(i / w);
|
|
68
|
+
K(
|
|
69
|
+
R,
|
|
70
|
+
P,
|
|
71
|
+
x(a),
|
|
72
|
+
x(t),
|
|
73
|
+
s.value,
|
|
74
|
+
r.value,
|
|
75
|
+
u,
|
|
76
|
+
m
|
|
77
|
+
), o = null, i -= R * w, y();
|
|
78
|
+
});
|
|
79
|
+
}
|
|
80
|
+
const v = C(t.value) ? [] : {};
|
|
81
|
+
for (const p in t.value)
|
|
82
|
+
v[p] = F({
|
|
83
|
+
// @ts-ignore
|
|
84
|
+
get: () => s.value[p],
|
|
85
|
+
// @ts-ignore
|
|
86
|
+
set: (h) => t.value[p] = h
|
|
87
|
+
});
|
|
88
|
+
return v.reset = (p) => {
|
|
89
|
+
Object.assign(s.value, p), Object.assign(t.value, p), f = !1, o = null;
|
|
90
|
+
}, S(v);
|
|
91
|
+
}
|
|
92
|
+
function J(e, a, c) {
|
|
93
|
+
for (const n in a)
|
|
94
|
+
if (c[n] !== 0 || e[n] !== a[n])
|
|
95
|
+
return !1;
|
|
96
|
+
return !0;
|
|
97
|
+
}
|
|
98
|
+
function K(e, a, c, n, t, f, d, i) {
|
|
99
|
+
for (const o in n) {
|
|
100
|
+
let l = d[o], s = i[o];
|
|
101
|
+
const r = n[o];
|
|
102
|
+
for (let y = 0; y < e; y++)
|
|
103
|
+
[l, s] = A(
|
|
104
|
+
w / 1e3,
|
|
105
|
+
l,
|
|
106
|
+
s,
|
|
107
|
+
r,
|
|
108
|
+
c
|
|
109
|
+
);
|
|
110
|
+
const [u, m] = A(
|
|
111
|
+
w / 1e3,
|
|
112
|
+
l,
|
|
113
|
+
s,
|
|
114
|
+
r,
|
|
115
|
+
c
|
|
116
|
+
);
|
|
117
|
+
t[o] = l + (u - l) * a, f[o] = s + (m - s) * a, d[o] = l, i[o] = s;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
const I = /* @__PURE__ */ new WeakMap(), L = /* @__PURE__ */ new WeakMap();
|
|
121
|
+
$({
|
|
122
|
+
name: "TransitionGroup",
|
|
123
|
+
props: {
|
|
124
|
+
config: Object,
|
|
125
|
+
tag: String
|
|
126
|
+
},
|
|
127
|
+
setup(e, { slots: a }) {
|
|
128
|
+
const c = b({ x: 0, y: 0 }), n = b({ x: 0, y: 0 }), t = b({ x: 0, y: 0 }), f = b({ x: 0, y: 0 }), d = {
|
|
129
|
+
Ipsum: c,
|
|
130
|
+
Lorem: n,
|
|
131
|
+
Dolor: t,
|
|
132
|
+
Sit: f
|
|
133
|
+
};
|
|
134
|
+
let i, o;
|
|
135
|
+
return window.pos2 = n, D(
|
|
136
|
+
() => n,
|
|
137
|
+
() => {
|
|
138
|
+
const l = "Lorem";
|
|
139
|
+
console.log("watch pos2");
|
|
140
|
+
const s = o.find((r) => r.key === l);
|
|
141
|
+
if (!s)
|
|
142
|
+
console.log("not found", l);
|
|
143
|
+
else {
|
|
144
|
+
const r = s.el.style, u = n.x, m = n.y;
|
|
145
|
+
console.log("watch Lorem", { dx: u, dy: m }), r.transform = r.webkitTransform = `translate(${u}px,${m}px)`;
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
{ deep: !0, flush: "post" }
|
|
149
|
+
), B(() => {
|
|
150
|
+
if (!i.length)
|
|
151
|
+
return;
|
|
152
|
+
i.forEach(Q);
|
|
153
|
+
const l = i.filter(
|
|
154
|
+
(s) => Y(s, d)
|
|
155
|
+
);
|
|
156
|
+
Z(), l.forEach((s) => {
|
|
157
|
+
const r = s.el;
|
|
158
|
+
setTimeout(() => {
|
|
159
|
+
n.x = 0, n.y = 0, console.log("moved", s.key);
|
|
160
|
+
}, 1e3);
|
|
161
|
+
const u = r._moveCb = (m) => {
|
|
162
|
+
m && m.target !== r || (!m || /transform$/.test(m.propertyName)) && (r.removeEventListener("transitionend", u), r._moveCb = null);
|
|
163
|
+
};
|
|
164
|
+
r.addEventListener("transitionend", u);
|
|
165
|
+
});
|
|
166
|
+
}), () => {
|
|
167
|
+
const s = j(e).tag || O;
|
|
168
|
+
i = o, o = a.default ? W(a.default()) : [];
|
|
169
|
+
for (let r = 0; r < o.length; r++)
|
|
170
|
+
o[r].key != null || __DEV__ && G("<TransitionGroup> children must be keyed.");
|
|
171
|
+
if (i)
|
|
172
|
+
for (let r = 0; r < i.length; r++) {
|
|
173
|
+
const u = i[r];
|
|
174
|
+
I.set(u, u.el.getBoundingClientRect()), console.log(
|
|
175
|
+
"saved before render",
|
|
176
|
+
u.key,
|
|
177
|
+
u.el.getBoundingClientRect()
|
|
178
|
+
);
|
|
179
|
+
}
|
|
180
|
+
return N(s, null, o);
|
|
181
|
+
};
|
|
182
|
+
}
|
|
183
|
+
});
|
|
184
|
+
function Q(e) {
|
|
185
|
+
L.set(e, e.el.getBoundingClientRect()), console.log(
|
|
186
|
+
"saved after render",
|
|
187
|
+
e.key,
|
|
188
|
+
e.el.getBoundingClientRect()
|
|
189
|
+
);
|
|
190
|
+
}
|
|
191
|
+
function Y(e, a) {
|
|
192
|
+
const c = I.get(e), n = L.get(e), t = c.left - n.left, f = c.top - n.top;
|
|
193
|
+
if (e.key === "Lorem" && pos2.reset({ x: t, y: f }), console.log("reset", e.key, { ...a[e.key] }), t || f) {
|
|
194
|
+
const d = e.el.style;
|
|
195
|
+
return d.transform = d.webkitTransform = `translate(${t}px,${f}px)`, d.transitionDuration = "0s", e;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
function Z() {
|
|
199
|
+
return document.body.offsetHeight;
|
|
200
|
+
}
|
|
201
|
+
export {
|
|
202
|
+
U as noWobble,
|
|
203
|
+
b as useSpring
|
|
204
|
+
};
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { inject as h, computed as v, shallowRef as w, watchEffect as _, provide as C } from "vue";
|
|
2
|
+
import { getCurrentInstance as E } from "../util/getCurrentInstance.mjs";
|
|
3
|
+
import { toKebabCase as S, mergeDeep as V } from "../util/helpers.mjs";
|
|
4
|
+
import { injectSelf as j } from "../util/injectSelf.mjs";
|
|
5
|
+
const f = Symbol.for("vuetify:defaults");
|
|
6
|
+
function x() {
|
|
7
|
+
const t = h(f);
|
|
8
|
+
if (!t)
|
|
9
|
+
throw new Error("[Vuetify] Could not find defaults instance");
|
|
10
|
+
return t;
|
|
11
|
+
}
|
|
12
|
+
function I(t, u) {
|
|
13
|
+
return t.props && (typeof t.props[u] < "u" || typeof t.props[S(u)] < "u");
|
|
14
|
+
}
|
|
15
|
+
function K() {
|
|
16
|
+
let t = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, u = arguments.length > 1 ? arguments[1] : void 0, a = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : x();
|
|
17
|
+
const o = E("useDefaults");
|
|
18
|
+
if (u = u ?? o.type.name ?? o.type.__name, !u)
|
|
19
|
+
throw new Error("[Vuetify] Could not determine component name");
|
|
20
|
+
const s = v(() => {
|
|
21
|
+
var e;
|
|
22
|
+
return (e = a.value) == null ? void 0 : e[t._as ?? u];
|
|
23
|
+
}), y = new Proxy(t, {
|
|
24
|
+
get(e, n) {
|
|
25
|
+
var c, d, p, g;
|
|
26
|
+
const r = Reflect.get(e, n);
|
|
27
|
+
if (n === "class" || n === "style")
|
|
28
|
+
return [(c = s.value) == null ? void 0 : c[n], r].filter((D) => D != null);
|
|
29
|
+
if (I(o.vnode, n))
|
|
30
|
+
return r;
|
|
31
|
+
const i = (d = s.value) == null ? void 0 : d[n];
|
|
32
|
+
if (i !== void 0)
|
|
33
|
+
return i;
|
|
34
|
+
const m = (g = (p = a.value) == null ? void 0 : p.global) == null ? void 0 : g[n];
|
|
35
|
+
return m !== void 0 ? m : r;
|
|
36
|
+
}
|
|
37
|
+
}), l = w();
|
|
38
|
+
_(() => {
|
|
39
|
+
if (s.value) {
|
|
40
|
+
const e = Object.entries(s.value).filter((n) => {
|
|
41
|
+
let [r] = n;
|
|
42
|
+
return r.startsWith(r[0].toUpperCase());
|
|
43
|
+
});
|
|
44
|
+
l.value = e.length ? Object.fromEntries(e) : void 0;
|
|
45
|
+
} else
|
|
46
|
+
l.value = void 0;
|
|
47
|
+
});
|
|
48
|
+
function b() {
|
|
49
|
+
const e = j(f, o);
|
|
50
|
+
C(f, v(() => l.value ? V((e == null ? void 0 : e.value) ?? {}, l.value) : e == null ? void 0 : e.value));
|
|
51
|
+
}
|
|
52
|
+
return {
|
|
53
|
+
props: y,
|
|
54
|
+
provideSubDefaults: b
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
export {
|
|
58
|
+
f as DefaultsSymbol,
|
|
59
|
+
x as injectDefaults,
|
|
60
|
+
K as internalUseDefaults
|
|
61
|
+
};
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { createVNode as r, mergeProps as u, createElementVNode as o, normalizeClass as s } from "vue";
|
|
2
|
+
import { genericComponent as m, defineComponent as c } from "../util/defineComponent.mjs";
|
|
3
|
+
import { propsFactory as g } from "../util/propsFactory.mjs";
|
|
4
|
+
const p = [String, Function, Object, Array], l = g({
|
|
5
|
+
icon: {
|
|
6
|
+
type: p
|
|
7
|
+
},
|
|
8
|
+
// Could not remove this and use makeTagProps, types complained because it is not required
|
|
9
|
+
tag: {
|
|
10
|
+
type: [String, Object, Function],
|
|
11
|
+
required: !0
|
|
12
|
+
}
|
|
13
|
+
}, "icon");
|
|
14
|
+
m()({
|
|
15
|
+
name: "VComponentIcon",
|
|
16
|
+
props: l(),
|
|
17
|
+
setup(n, a) {
|
|
18
|
+
let {
|
|
19
|
+
slots: t
|
|
20
|
+
} = a;
|
|
21
|
+
return () => {
|
|
22
|
+
const e = n.icon;
|
|
23
|
+
return r(n.tag, null, {
|
|
24
|
+
default: () => {
|
|
25
|
+
var i;
|
|
26
|
+
return [n.icon ? r(e, null, null) : (i = t.default) == null ? void 0 : i.call(t)];
|
|
27
|
+
}
|
|
28
|
+
});
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
const I = c({
|
|
33
|
+
name: "VSvgIcon",
|
|
34
|
+
inheritAttrs: !1,
|
|
35
|
+
props: l(),
|
|
36
|
+
setup(n, a) {
|
|
37
|
+
let {
|
|
38
|
+
attrs: t
|
|
39
|
+
} = a;
|
|
40
|
+
return () => r(n.tag, u(t, {
|
|
41
|
+
style: null
|
|
42
|
+
}), {
|
|
43
|
+
default: () => [o("svg", {
|
|
44
|
+
class: "v-icon__svg",
|
|
45
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
46
|
+
viewBox: "0 0 24 24",
|
|
47
|
+
role: "img",
|
|
48
|
+
"aria-hidden": "true"
|
|
49
|
+
}, [Array.isArray(n.icon) ? n.icon.map((e) => Array.isArray(e) ? o("path", {
|
|
50
|
+
d: e[0],
|
|
51
|
+
"fill-opacity": e[1]
|
|
52
|
+
}, null) : o("path", {
|
|
53
|
+
d: e
|
|
54
|
+
}, null)) : o("path", {
|
|
55
|
+
d: n.icon
|
|
56
|
+
}, null)])]
|
|
57
|
+
});
|
|
58
|
+
}
|
|
59
|
+
});
|
|
60
|
+
c({
|
|
61
|
+
name: "VLigatureIcon",
|
|
62
|
+
props: l(),
|
|
63
|
+
setup(n) {
|
|
64
|
+
return () => r(n.tag, null, {
|
|
65
|
+
default: () => [n.icon]
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
});
|
|
69
|
+
c({
|
|
70
|
+
name: "VClassIcon",
|
|
71
|
+
props: l(),
|
|
72
|
+
setup(n) {
|
|
73
|
+
return () => r(n.tag, {
|
|
74
|
+
class: s(n.icon)
|
|
75
|
+
}, null);
|
|
76
|
+
}
|
|
77
|
+
});
|
|
78
|
+
export {
|
|
79
|
+
p as IconValue,
|
|
80
|
+
I as VSvgIcon,
|
|
81
|
+
l as makeIconProps
|
|
82
|
+
};
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { VSvgIcon as L } from "../composables/icons.mjs";
|
|
2
|
+
const V = {
|
|
3
|
+
collapse: "svg:M7.41,15.41L12,10.83L16.59,15.41L18,14L12,8L6,14L7.41,15.41Z",
|
|
4
|
+
complete: "svg:M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z",
|
|
5
|
+
cancel: "svg:M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z",
|
|
6
|
+
close: "svg: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",
|
|
7
|
+
delete: "svg:M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z",
|
|
8
|
+
// delete (e.g. v-chip close)
|
|
9
|
+
clear: "svg:M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z",
|
|
10
|
+
success: "svg:M12,2C17.52,2 22,6.48 22,12C22,17.52 17.52,22 12,22C6.48,22 2,17.52 2,12C2,6.48 6.48,2 12,2M11,16.5L18,9.5L16.59,8.09L11,13.67L7.91,10.59L6.5,12L11,16.5Z",
|
|
11
|
+
info: "svg:M13,9H11V7H13M13,17H11V11H13M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2Z",
|
|
12
|
+
warning: "svg: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",
|
|
13
|
+
error: "svg:M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z",
|
|
14
|
+
prev: "svg:M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z",
|
|
15
|
+
next: "svg:M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z",
|
|
16
|
+
checkboxOn: "svg:M10,17L5,12L6.41,10.58L10,14.17L17.59,6.58L19,8M19,3H5C3.89,3 3,3.89 3,5V19C3,20.1 3.9,21 5,21H19C20.1,21 21,20.1 21,19V5C21,3.89 20.1,3 19,3Z",
|
|
17
|
+
checkboxOff: "svg:M19,3H5C3.89,3 3,3.89 3,5V19C3,20.1 3.9,21 5,21H19C20.1,21 21,20.1 21,19V5C21,3.89 20.1,3 19,3M19,5V19H5V5H19Z",
|
|
18
|
+
checkboxIndeterminate: "svg:M17,13H7V11H17M19,3H5C3.89,3 3,3.89 3,5V19C3,20.1 3.9,21 5,21H19C20.1,21 21,20.1 21,19V5C21,3.89 20.1,3 19,3Z",
|
|
19
|
+
delimiter: "svg:M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2Z",
|
|
20
|
+
// for carousel
|
|
21
|
+
sortAsc: "svg:M13,20H11V8L5.5,13.5L4.08,12.08L12,4.16L19.92,12.08L18.5,13.5L13,8V20Z",
|
|
22
|
+
sortDesc: "svg:M11,4H13V16L18.5,10.5L19.92,11.92L12,19.84L4.08,11.92L5.5,10.5L11,16V4Z",
|
|
23
|
+
expand: "svg:M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z",
|
|
24
|
+
menu: "svg:M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z",
|
|
25
|
+
subgroup: "svg:M7,10L12,15L17,10H7Z",
|
|
26
|
+
dropdown: "svg:M7,10L12,15L17,10H7Z",
|
|
27
|
+
radioOn: "svg:M12,20C7.58,20 4,16.42 4,12C4,7.58 7.58,4 12,4C16.42,4 20,7.58 20,12C20,16.42 16.42,20 12,20M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2M12,7C9.24,7 7,9.24 7,12C7,14.76 9.24,17 12,17C14.76,17 17,14.76 17,12C17,9.24 14.76,7 12,7Z",
|
|
28
|
+
radioOff: "svg:M12,20C7.58,20 4,16.42 4,12C4,7.58 7.58,4 12,4C16.42,4 20,7.58 20,12C20,16.42 16.42,20 12,20M12,2C6.48,2 2,6.48 2,12C2,17.52 6.48,22 12,22C17.52,22 22,17.52 22,12C22,6.48 17.52,2 12,2Z",
|
|
29
|
+
edit: "svg: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",
|
|
30
|
+
ratingEmpty: "svg:M12,15.39L8.24,17.66L9.23,13.38L5.91,10.5L10.29,10.13L12,6.09L13.71,10.13L18.09,10.5L14.77,13.38L15.76,17.66M22,9.24L14.81,8.63L12,2L9.19,8.63L2,9.24L7.45,13.97L5.82,21L12,17.27L18.18,21L16.54,13.97L22,9.24Z",
|
|
31
|
+
ratingFull: "svg:M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z",
|
|
32
|
+
ratingHalf: "svg:M12,15.4V6.1L13.71,10.13L18.09,10.5L14.77,13.39L15.76,17.67M22,9.24L14.81,8.63L12,2L9.19,8.63L2,9.24L7.45,13.97L5.82,21L12,17.27L18.18,21L16.54,13.97L22,9.24Z",
|
|
33
|
+
loading: "svg:M19,8L15,12H18C18,15.31 15.31,18 12,18C11,18 10.03,17.75 9.2,17.3L7.74,18.76C8.97,19.54 10.43,20 12,20C16.42,20 20,16.42 20,12H23M6,12C6,8.69 8.69,6 12,6C13,6 13.97,6.25 14.8,6.7L16.26,5.24C15.03,4.46 13.57,4 12,4C7.58,4 4,7.58 4,12H1L5,16L9,12",
|
|
34
|
+
first: "svg:M18.41,16.59L13.82,12L18.41,7.41L17,6L11,12L17,18L18.41,16.59M6,6H8V18H6V6Z",
|
|
35
|
+
last: "svg:M5.59,7.41L10.18,12L5.59,16.59L7,18L13,12L7,6L5.59,7.41M16,6H18V18H16V6Z",
|
|
36
|
+
unfold: "svg:M12,18.17L8.83,15L7.42,16.41L12,21L16.59,16.41L15.17,15M12,5.83L15.17,9L16.58,7.59L12,3L7.41,7.59L8.83,9L12,5.83Z",
|
|
37
|
+
file: "svg:M16.5,6V17.5C16.5,19.71 14.71,21.5 12.5,21.5C10.29,21.5 8.5,19.71 8.5,17.5V5C8.5,3.62 9.62,2.5 11,2.5C12.38,2.5 13.5,3.62 13.5,5V15.5C13.5,16.05 13.05,16.5 12.5,16.5C11.95,16.5 11.5,16.05 11.5,15.5V6H10V15.5C10,16.88 11.12,18 12.5,18C13.88,18 15,16.88 15,15.5V5C15,2.79 13.21,1 11,1C8.79,1 7,2.79 7,5V17.5C7,20.54 9.46,23 12.5,23C15.54,23 18,20.54 18,17.5V6H16.5Z",
|
|
38
|
+
plus: "svg:M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z",
|
|
39
|
+
minus: "svg:M19,13H5V11H19V13Z",
|
|
40
|
+
calendar: "svg:M19,19H5V8H19M16,1V3H8V1H6V3H5C3.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,3H18V1M17,12H12V17H17V12Z",
|
|
41
|
+
treeviewCollapse: "svg:M7,10L12,15L17,10H7Z",
|
|
42
|
+
treeviewExpand: "svg:M10,17L15,12L10,7V17Z",
|
|
43
|
+
tableGroupExpand: "svg:M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z",
|
|
44
|
+
tableGroupCollapse: "svg:M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z",
|
|
45
|
+
eyeDropper: "svg:M19.35,11.72L17.22,13.85L15.81,12.43L8.1,20.14L3.5,22L2,20.5L3.86,15.9L11.57,8.19L10.15,6.78L12.28,4.65L19.35,11.72M16.76,3C17.93,1.83 19.83,1.83 21,3C22.17,4.17 22.17,6.07 21,7.24L19.08,9.16L14.84,4.92L16.76,3M5.56,17.03L4.5,19.5L6.97,18.44L14.4,11L13,9.6L5.56,17.03Z",
|
|
46
|
+
upload: "svg:M11 20H6.5q-2.28 0-3.89-1.57Q1 16.85 1 14.58q0-1.95 1.17-3.48q1.18-1.53 3.08-1.95q.63-2.3 2.5-3.72Q9.63 4 12 4q2.93 0 4.96 2.04Q19 8.07 19 11q1.73.2 2.86 1.5q1.14 1.28 1.14 3q0 1.88-1.31 3.19T18.5 20H13v-7.15l1.6 1.55L16 13l-4-4l-4 4l1.4 1.4l1.6-1.55Z",
|
|
47
|
+
color: "svg:M17.5 12a1.5 1.5 0 0 1-1.5-1.5A1.5 1.5 0 0 1 17.5 9a1.5 1.5 0 0 1 1.5 1.5a1.5 1.5 0 0 1-1.5 1.5m-3-4A1.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 8m-5 0A1.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 8m-3 4A1.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-9 9a9 9 0 0 0 9 9a1.5 1.5 0 0 0 1.5-1.5c0-.39-.15-.74-.39-1c-.23-.27-.38-.62-.38-1a1.5 1.5 0 0 1 1.5-1.5H16a5 5 0 0 0 5-5c0-4.42-4.03-8-9-8",
|
|
48
|
+
command: "svg:M6,2A4,4 0 0,1 10,6V8H14V6A4,4 0 0,1 18,2A4,4 0 0,1 22,6A4,4 0 0,1 18,10H16V14H18A4,4 0 0,1 22,18A4,4 0 0,1 18,22A4,4 0 0,1 14,18V16H10V18A4,4 0 0,1 6,22A4,4 0 0,1 2,18A4,4 0 0,1 6,14H8V10H6A4,4 0 0,1 2,6A4,4 0 0,1 6,2M16,18A2,2 0 0,0 18,20A2,2 0 0,0 20,18A2,2 0 0,0 18,16H16V18M14,10H10V14H14V10M6,16A2,2 0 0,0 4,18A2,2 0 0,0 6,20A2,2 0 0,0 8,18V16H6M8,6A2,2 0 0,0 6,4A2,2 0 0,0 4,6A2,2 0 0,0 6,8H8V6M18,8A2,2 0 0,0 20,6A2,2 0 0,0 18,4A2,2 0 0,0 16,6V8H18Z",
|
|
49
|
+
ctrl: "svg:M19.78,11.78L18.36,13.19L12,6.83L5.64,13.19L4.22,11.78L12,4L19.78,11.78Z",
|
|
50
|
+
space: "svg:M3 15H5V19H19V15H21V19C21 20.1 20.1 21 19 21H5C3.9 21 3 20.1 3 19V15Z",
|
|
51
|
+
shift: "svg:M15 18v-6h2.17L12 6.83L6.83 12H9v6zM12 4l10 10h-5v6H7v-6H2z",
|
|
52
|
+
alt: "svg:M3 4h6.11l7.04 14H21v2h-6.12L7.84 6H3zm11 0h7v2h-7z",
|
|
53
|
+
enter: "svg:M19 7v4H5.83l3.58-3.59L8 6l-6 6l6 6l1.41-1.42L5.83 13H21V7z",
|
|
54
|
+
arrowup: "svg:M13 20h-2V8l-5.5 5.5l-1.42-1.42L12 4.16l7.92 7.92l-1.42 1.42L13 8z",
|
|
55
|
+
arrowdown: "svg:M11 4h2v12l5.5-5.5l1.42 1.42L12 19.84l-7.92-7.92L5.5 10.5L11 16z",
|
|
56
|
+
arrowleft: "svg:M20 11v2H8l5.5 5.5l-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5L8 11z",
|
|
57
|
+
arrowright: "svg:M4 11v2h12l-5.5 5.5l1.42 1.42L19.84 12l-7.92-7.92L10.5 5.5L16 11z",
|
|
58
|
+
backspace: "svg:M19 15.59L17.59 17L14 13.41L10.41 17L9 15.59L12.59 12L9 8.41L10.41 7L14 10.59L17.59 7L19 8.41L15.41 12zM22 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7c-.69 0-1.23-.36-1.59-.89L0 12l5.41-8.12C5.77 3.35 6.31 3 7 3zm0 2H7l-4.72 7L7 19h15z",
|
|
59
|
+
play: "svg:M8,5.14V19.14L19,12.14L8,5.14Z",
|
|
60
|
+
pause: "svg:M14,19H18V5H14M6,19H10V5H6V19Z",
|
|
61
|
+
fullscreen: "svg:M5,5H10V7H7V10H5V5M14,5H19V10H17V7H14V5M17,14H19V19H14V17H17V14M10,17V19H5V14H7V17H10Z",
|
|
62
|
+
fullscreenExit: "svg:M14,14H19V16H16V19H14V14M5,14H10V19H8V16H5V14M8,5H10V10H5V8H8V5M19,8V10H14V5H16V8H19Z",
|
|
63
|
+
volumeHigh: "svg:M14,3.23V5.29C16.89,6.15 19,8.83 19,12C19,15.17 16.89,17.84 14,18.7V20.77C18,19.86 21,16.28 21,12C21,7.72 18,4.14 14,3.23M16.5,12C16.5,10.23 15.5,8.71 14,7.97V16C15.5,15.29 16.5,13.76 16.5,12M3,9V15H7L12,20V4L7,9H3Z",
|
|
64
|
+
volumeMedium: "svg:M5,9V15H9L14,20V4L9,9M18.5,12C18.5,10.23 17.5,8.71 16,7.97V16C17.5,15.29 18.5,13.76 18.5,12Z",
|
|
65
|
+
volumeLow: "svg:M7,9V15H11L16,20V4L11,9H7Z",
|
|
66
|
+
volumeOff: "svg:M5.64,3.64L21.36,19.36L19.95,20.78L16,16.83V20L11,15H7V9H8.17L4.22,5.05L5.64,3.64M16,4V11.17L12.41,7.58L16,4Z",
|
|
67
|
+
search: "svg: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"
|
|
68
|
+
}, M = {
|
|
69
|
+
component: L
|
|
70
|
+
};
|
|
71
|
+
export {
|
|
72
|
+
V as aliases,
|
|
73
|
+
M as mdi
|
|
74
|
+
};
|