bt-core-app 2.1.37 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (478) hide show
  1. package/dist/_virtual/_commonjs-dynamic-modules.mjs +6 -0
  2. package/dist/_virtual/_commonjsHelpers.mjs +30 -0
  3. package/dist/_virtual/_plugin-vue_export-helper.mjs +9 -0
  4. package/dist/_virtual/index.mjs +4 -0
  5. package/dist/_virtual/localforage.mjs +4 -0
  6. package/dist/_virtual/luxon.mjs +6 -0
  7. package/dist/_virtual/matcher.mjs +4 -0
  8. package/dist/_virtual/parser.mjs +4 -0
  9. package/dist/bt-core/core/node_modules/@datasert/cronjs-matcher/dist/index.mjs +12 -0
  10. package/dist/bt-core/core/node_modules/@datasert/cronjs-matcher/dist/matcher.mjs +220 -0
  11. package/dist/bt-core/core/node_modules/@datasert/cronjs-parser/dist/parser.mjs +186 -0
  12. package/dist/bt-core/core/node_modules/@mdi/js/mdi.mjs +70 -0
  13. package/dist/bt-core/core/node_modules/@vuepic/vue-datepicker/dist/main.css.mjs +1 -0
  14. package/dist/bt-core/core/node_modules/@vuepic/vue-datepicker/dist/vue-datepicker.mjs +5210 -0
  15. package/dist/bt-core/core/node_modules/date-fns/_lib/addLeadingZeros.mjs +7 -0
  16. package/dist/bt-core/core/node_modules/date-fns/_lib/defaultOptions.mjs +7 -0
  17. package/dist/bt-core/core/node_modules/date-fns/_lib/format/formatters.mjs +517 -0
  18. package/dist/bt-core/core/node_modules/date-fns/_lib/format/lightFormatters.mjs +59 -0
  19. package/dist/bt-core/core/node_modules/date-fns/_lib/format/longFormatters.mjs +52 -0
  20. package/dist/bt-core/core/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.mjs +18 -0
  21. package/dist/bt-core/core/node_modules/date-fns/_lib/normalizeDates.mjs +11 -0
  22. package/dist/bt-core/core/node_modules/date-fns/_lib/normalizeInterval.mjs +8 -0
  23. package/dist/bt-core/core/node_modules/date-fns/_lib/protectedTokens.mjs +21 -0
  24. package/dist/bt-core/core/node_modules/date-fns/add.mjs +20 -0
  25. package/dist/bt-core/core/node_modules/date-fns/addDays.mjs +10 -0
  26. package/dist/bt-core/core/node_modules/date-fns/addHours.mjs +9 -0
  27. package/dist/bt-core/core/node_modules/date-fns/addMilliseconds.mjs +9 -0
  28. package/dist/bt-core/core/node_modules/date-fns/addMonths.mjs +21 -0
  29. package/dist/bt-core/core/node_modules/date-fns/addQuarters.mjs +8 -0
  30. package/dist/bt-core/core/node_modules/date-fns/addYears.mjs +8 -0
  31. package/dist/bt-core/core/node_modules/date-fns/compareAsc.mjs +9 -0
  32. package/dist/bt-core/core/node_modules/date-fns/constants.mjs +9 -0
  33. package/dist/bt-core/core/node_modules/date-fns/constructFrom.mjs +8 -0
  34. package/dist/bt-core/core/node_modules/date-fns/differenceInCalendarDays.mjs +16 -0
  35. package/dist/bt-core/core/node_modules/date-fns/differenceInCalendarYears.mjs +13 -0
  36. package/dist/bt-core/core/node_modules/date-fns/differenceInYears.mjs +17 -0
  37. package/dist/bt-core/core/node_modules/date-fns/eachDayOfInterval.mjs +20 -0
  38. package/dist/bt-core/core/node_modules/date-fns/eachQuarterOfInterval.mjs +21 -0
  39. package/dist/bt-core/core/node_modules/date-fns/endOfQuarter.mjs +9 -0
  40. package/dist/bt-core/core/node_modules/date-fns/endOfWeek.mjs +11 -0
  41. package/dist/bt-core/core/node_modules/date-fns/endOfYear.mjs +9 -0
  42. package/dist/bt-core/core/node_modules/date-fns/format.mjs +60 -0
  43. package/dist/bt-core/core/node_modules/date-fns/getDay.mjs +8 -0
  44. package/dist/bt-core/core/node_modules/date-fns/getDayOfYear.mjs +11 -0
  45. package/dist/bt-core/core/node_modules/date-fns/getDaysInMonth.mjs +10 -0
  46. package/dist/bt-core/core/node_modules/date-fns/getDefaultOptions.mjs +8 -0
  47. package/dist/bt-core/core/node_modules/date-fns/getHours.mjs +8 -0
  48. package/dist/bt-core/core/node_modules/date-fns/getISODay.mjs +9 -0
  49. package/dist/bt-core/core/node_modules/date-fns/getISOWeek.mjs +12 -0
  50. package/dist/bt-core/core/node_modules/date-fns/getISOWeekYear.mjs +15 -0
  51. package/dist/bt-core/core/node_modules/date-fns/getMinutes.mjs +8 -0
  52. package/dist/bt-core/core/node_modules/date-fns/getMonth.mjs +8 -0
  53. package/dist/bt-core/core/node_modules/date-fns/getQuarter.mjs +9 -0
  54. package/dist/bt-core/core/node_modules/date-fns/getSeconds.mjs +8 -0
  55. package/dist/bt-core/core/node_modules/date-fns/getWeek.mjs +12 -0
  56. package/dist/bt-core/core/node_modules/date-fns/getWeekYear.mjs +17 -0
  57. package/dist/bt-core/core/node_modules/date-fns/getYear.mjs +8 -0
  58. package/dist/bt-core/core/node_modules/date-fns/isAfter.mjs +8 -0
  59. package/dist/bt-core/core/node_modules/date-fns/isBefore.mjs +8 -0
  60. package/dist/bt-core/core/node_modules/date-fns/isDate.mjs +7 -0
  61. package/dist/bt-core/core/node_modules/date-fns/isEqual.mjs +8 -0
  62. package/dist/bt-core/core/node_modules/date-fns/isSameQuarter.mjs +14 -0
  63. package/dist/bt-core/core/node_modules/date-fns/isValid.mjs +9 -0
  64. package/dist/bt-core/core/node_modules/date-fns/locale/_lib/buildFormatLongFn.mjs +9 -0
  65. package/dist/bt-core/core/node_modules/date-fns/locale/_lib/buildLocalizeFn.mjs +18 -0
  66. package/dist/bt-core/core/node_modules/date-fns/locale/_lib/buildMatchFn.mjs +31 -0
  67. package/dist/bt-core/core/node_modules/date-fns/locale/_lib/buildMatchPatternFn.mjs +17 -0
  68. package/dist/bt-core/core/node_modules/date-fns/locale/en-US/_lib/formatDistance.mjs +70 -0
  69. package/dist/bt-core/core/node_modules/date-fns/locale/en-US/_lib/formatLong.mjs +33 -0
  70. package/dist/bt-core/core/node_modules/date-fns/locale/en-US/_lib/formatRelative.mjs +11 -0
  71. package/dist/bt-core/core/node_modules/date-fns/locale/en-US/_lib/localize.mjs +155 -0
  72. package/dist/bt-core/core/node_modules/date-fns/locale/en-US/_lib/match.mjs +110 -0
  73. package/dist/bt-core/core/node_modules/date-fns/locale/en-US.mjs +21 -0
  74. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/Parser.mjs +22 -0
  75. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/Setter.mjs +41 -0
  76. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/constants.mjs +49 -0
  77. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/AMPMMidnightParser.mjs +49 -0
  78. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/AMPMParser.mjs +49 -0
  79. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/DateParser.mjs +61 -0
  80. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/DayOfYearParser.mjs +51 -0
  81. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/DayParser.mjs +45 -0
  82. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/DayPeriodParser.mjs +49 -0
  83. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/EraParser.mjs +30 -0
  84. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ExtendedYearParser.mjs +21 -0
  85. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/FractionOfSecondParser.mjs +22 -0
  86. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/Hour0To11Parser.mjs +32 -0
  87. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/Hour0to23Parser.mjs +32 -0
  88. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/Hour1To24Parser.mjs +33 -0
  89. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/Hour1to12Parser.mjs +33 -0
  90. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ISODayParser.mjs +99 -0
  91. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ISOTimezoneParser.mjs +48 -0
  92. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ISOTimezoneWithZParser.mjs +48 -0
  93. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ISOWeekParser.mjs +49 -0
  94. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/ISOWeekYearParser.mjs +40 -0
  95. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/LocalDayParser.mjs +74 -0
  96. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/LocalWeekParser.mjs +48 -0
  97. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/LocalWeekYearParser.mjs +69 -0
  98. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/MinuteParser.mjs +32 -0
  99. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/MonthParser.mjs +71 -0
  100. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/QuarterParser.mjs +70 -0
  101. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/SecondParser.mjs +32 -0
  102. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/StandAloneLocalDayParser.mjs +74 -0
  103. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/StandAloneMonthParser.mjs +71 -0
  104. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/StandAloneQuarterParser.mjs +70 -0
  105. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/TimestampMillisecondsParser.mjs +22 -0
  106. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/TimestampSecondsParser.mjs +22 -0
  107. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers/YearParser.mjs +49 -0
  108. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/parsers.mjs +67 -0
  109. package/dist/bt-core/core/node_modules/date-fns/parse/_lib/utils.mjs +103 -0
  110. package/dist/bt-core/core/node_modules/date-fns/parse.mjs +90 -0
  111. package/dist/bt-core/core/node_modules/date-fns/set.mjs +11 -0
  112. package/dist/bt-core/core/node_modules/date-fns/setDay.mjs +12 -0
  113. package/dist/bt-core/core/node_modules/date-fns/setHours.mjs +9 -0
  114. package/dist/bt-core/core/node_modules/date-fns/setISODay.mjs +11 -0
  115. package/dist/bt-core/core/node_modules/date-fns/setISOWeek.mjs +10 -0
  116. package/dist/bt-core/core/node_modules/date-fns/setMilliseconds.mjs +9 -0
  117. package/dist/bt-core/core/node_modules/date-fns/setMinutes.mjs +9 -0
  118. package/dist/bt-core/core/node_modules/date-fns/setMonth.mjs +13 -0
  119. package/dist/bt-core/core/node_modules/date-fns/setSeconds.mjs +9 -0
  120. package/dist/bt-core/core/node_modules/date-fns/setWeek.mjs +10 -0
  121. package/dist/bt-core/core/node_modules/date-fns/setYear.mjs +10 -0
  122. package/dist/bt-core/core/node_modules/date-fns/startOfDay.mjs +9 -0
  123. package/dist/bt-core/core/node_modules/date-fns/startOfISOWeek.mjs +8 -0
  124. package/dist/bt-core/core/node_modules/date-fns/startOfISOWeekYear.mjs +11 -0
  125. package/dist/bt-core/core/node_modules/date-fns/startOfMonth.mjs +9 -0
  126. package/dist/bt-core/core/node_modules/date-fns/startOfQuarter.mjs +9 -0
  127. package/dist/bt-core/core/node_modules/date-fns/startOfWeek.mjs +11 -0
  128. package/dist/bt-core/core/node_modules/date-fns/startOfWeekYear.mjs +13 -0
  129. package/dist/bt-core/core/node_modules/date-fns/startOfYear.mjs +9 -0
  130. package/dist/bt-core/core/node_modules/date-fns/sub.mjs +19 -0
  131. package/dist/bt-core/core/node_modules/date-fns/subDays.mjs +8 -0
  132. package/dist/bt-core/core/node_modules/date-fns/subMonths.mjs +8 -0
  133. package/dist/bt-core/core/node_modules/date-fns/subYears.mjs +8 -0
  134. package/dist/bt-core/core/node_modules/date-fns/toDate.mjs +8 -0
  135. package/dist/bt-core/core/node_modules/date-fns/transpose.mjs +18 -0
  136. package/dist/bt-core/core/node_modules/localforage/dist/localforage.mjs +1454 -0
  137. package/dist/bt-core/core/node_modules/luxon/src/datetime.mjs +1855 -0
  138. package/dist/bt-core/core/node_modules/luxon/src/duration.mjs +753 -0
  139. package/dist/bt-core/core/node_modules/luxon/src/errors.mjs +40 -0
  140. package/dist/bt-core/core/node_modules/luxon/src/impl/conversions.mjs +92 -0
  141. package/dist/bt-core/core/node_modules/luxon/src/impl/diff.mjs +36 -0
  142. package/dist/bt-core/core/node_modules/luxon/src/impl/digits.mjs +77 -0
  143. package/dist/bt-core/core/node_modules/luxon/src/impl/english.mjs +138 -0
  144. package/dist/bt-core/core/node_modules/luxon/src/impl/formats.mjs +150 -0
  145. package/dist/bt-core/core/node_modules/luxon/src/impl/formatter.mjs +258 -0
  146. package/dist/bt-core/core/node_modules/luxon/src/impl/invalid.mjs +11 -0
  147. package/dist/bt-core/core/node_modules/luxon/src/impl/locale.mjs +294 -0
  148. package/dist/bt-core/core/node_modules/luxon/src/impl/regexParser.mjs +202 -0
  149. package/dist/bt-core/core/node_modules/luxon/src/impl/tokenParser.mjs +329 -0
  150. package/dist/bt-core/core/node_modules/luxon/src/impl/util.mjs +220 -0
  151. package/dist/bt-core/core/node_modules/luxon/src/impl/zoneUtil.mjs +20 -0
  152. package/dist/bt-core/core/node_modules/luxon/src/info.mjs +180 -0
  153. package/dist/bt-core/core/node_modules/luxon/src/interval.mjs +481 -0
  154. package/dist/bt-core/core/node_modules/luxon/src/luxon.mjs +24 -0
  155. package/dist/bt-core/core/node_modules/luxon/src/settings.mjs +150 -0
  156. package/dist/bt-core/core/node_modules/luxon/src/zone.mjs +88 -0
  157. package/dist/bt-core/core/node_modules/luxon/src/zones/IANAZone.mjs +183 -0
  158. package/dist/bt-core/core/node_modules/luxon/src/zones/fixedOffsetZone.mjs +125 -0
  159. package/dist/bt-core/core/node_modules/luxon/src/zones/invalidZone.mjs +41 -0
  160. package/dist/bt-core/core/node_modules/luxon/src/zones/systemZone.mjs +47 -0
  161. package/dist/bt-core/core/node_modules/merge-images/dist/index.es2015.mjs +47 -0
  162. package/dist/bt-core/core/node_modules/signature_pad/dist/signature_pad.mjs +248 -0
  163. package/dist/bt-core/core/node_modules/thenby/thenBy.module.mjs +38 -0
  164. package/dist/bt-core/core/node_modules/vue-picture-cropper/lib/index.mjs +1643 -0
  165. package/dist/bt-core/core/node_modules/vue-signature-pad/dist/vue-signature-pad.esm.mjs +173 -0
  166. package/dist/bt-core/core/node_modules/vue-use-spring/dist/index.mjs +204 -0
  167. package/dist/bt-core/core/node_modules/vuetify/lib/composables/defaults.mjs +61 -0
  168. package/dist/bt-core/core/node_modules/vuetify/lib/composables/icons.mjs +82 -0
  169. package/dist/bt-core/core/node_modules/vuetify/lib/iconsets/mdi-svg.mjs +74 -0
  170. package/dist/bt-core/core/node_modules/vuetify/lib/util/colors.mjs +322 -0
  171. package/dist/bt-core/core/node_modules/vuetify/lib/util/console.mjs +7 -0
  172. package/dist/bt-core/core/node_modules/vuetify/lib/util/defineComponent.mjs +34 -0
  173. package/dist/bt-core/core/node_modules/vuetify/lib/util/getCurrentInstance.mjs +10 -0
  174. package/dist/bt-core/core/node_modules/vuetify/lib/util/helpers.mjs +44 -0
  175. package/dist/bt-core/core/node_modules/vuetify/lib/util/injectSelf.mjs +12 -0
  176. package/dist/bt-core/core/node_modules/vuetify/lib/util/propsFactory.mjs +14 -0
  177. package/dist/components/BT-Assistant-Menu.vue.d.ts +19 -0
  178. package/dist/components/BT-Assistant-Menu.vue.mjs +464 -0
  179. package/dist/components/BT-Assistant-Menu.vue2.mjs +4 -0
  180. package/dist/components/BT-Avatar.vue.d.ts +16 -0
  181. package/dist/components/BT-Avatar.vue.mjs +41 -0
  182. package/dist/components/BT-Avatar.vue2.mjs +4 -0
  183. package/dist/components/BT-Background-Task.vue.d.ts +61 -0
  184. package/dist/components/BT-Background-Task.vue.mjs +89 -0
  185. package/dist/components/BT-Background-Task.vue2.mjs +4 -0
  186. package/dist/components/BT-Blade-Item.vue.d.ts +578 -0
  187. package/dist/components/BT-Blade-Item.vue.mjs +441 -0
  188. package/dist/components/BT-Blade-Item.vue2.mjs +4 -0
  189. package/dist/components/BT-Blade-Items.vue.d.ts +2358 -0
  190. package/dist/components/BT-Blade-Items.vue.mjs +7 -0
  191. package/dist/components/BT-Blade-Items.vue2.mjs +943 -0
  192. package/dist/components/BT-Blade-Items.vue3.mjs +1 -0
  193. package/dist/components/BT-Blade-Steps.vue.d.ts +1740 -0
  194. package/dist/components/BT-Blade-Steps.vue.mjs +7 -0
  195. package/dist/components/BT-Blade-Steps.vue2.mjs +1305 -0
  196. package/dist/components/BT-Blade-Steps.vue3.mjs +1 -0
  197. package/dist/components/BT-Blade.vue.d.ts +109 -0
  198. package/dist/components/BT-Blade.vue.mjs +268 -0
  199. package/dist/components/BT-Blade.vue2.mjs +4 -0
  200. package/dist/components/BT-Btn.vue.d.ts +47 -0
  201. package/dist/components/BT-Btn.vue.mjs +43 -0
  202. package/dist/components/BT-Btn.vue2.mjs +4 -0
  203. package/dist/components/BT-Camera-Overlay.vue.d.ts +57 -0
  204. package/dist/components/BT-Camera-Overlay.vue.mjs +173 -0
  205. package/dist/components/BT-Camera-Overlay.vue2.mjs +4 -0
  206. package/dist/components/BT-Col.vue.d.ts +49 -0
  207. package/dist/components/BT-Col.vue.mjs +33 -0
  208. package/dist/components/BT-Col.vue2.mjs +4 -0
  209. package/dist/components/BT-Color-Picker-Menu.vue.d.ts +23 -0
  210. package/dist/components/BT-Color-Picker-Menu.vue.mjs +63 -0
  211. package/dist/components/BT-Color-Picker-Menu.vue2.mjs +4 -0
  212. package/dist/components/BT-Cosmetics-Menu.vue.d.ts +14 -0
  213. package/dist/components/BT-Cosmetics-Menu.vue.mjs +211 -0
  214. package/dist/components/BT-Cosmetics-Menu.vue2.mjs +4 -0
  215. package/dist/components/BT-Cron-Span.vue.d.ts +21 -0
  216. package/dist/components/BT-Cron-Span.vue.mjs +66 -0
  217. package/dist/components/BT-Cron-Span.vue2.mjs +4 -0
  218. package/dist/components/BT-Cron.vue.d.ts +37 -0
  219. package/dist/components/BT-Cron.vue.mjs +538 -0
  220. package/dist/components/BT-Cron.vue2.mjs +4 -0
  221. package/dist/components/BT-Date-Select.vue.d.ts +46 -0
  222. package/dist/components/BT-Date-Select.vue.mjs +71 -0
  223. package/dist/components/BT-Date-Select.vue2.mjs +4 -0
  224. package/dist/components/BT-Date.vue.d.ts +53 -0
  225. package/dist/components/BT-Date.vue.mjs +55 -0
  226. package/dist/components/BT-Date.vue2.mjs +4 -0
  227. package/dist/components/BT-Demo-Profile-Select.vue.d.ts +17 -0
  228. package/dist/components/BT-Demo-Profile-Select.vue.mjs +52 -0
  229. package/dist/components/BT-Demo-Profile-Select.vue2.mjs +4 -0
  230. package/dist/components/BT-Dialog-Confirm.vue.d.ts +2 -0
  231. package/dist/components/BT-Dialog-Confirm.vue.mjs +63 -0
  232. package/dist/components/BT-Dialog-Confirm.vue2.mjs +4 -0
  233. package/dist/components/BT-Dialog-Date.vue.d.ts +2 -0
  234. package/dist/components/BT-Dialog-Date.vue.mjs +79 -0
  235. package/dist/components/BT-Dialog-Date.vue2.mjs +4 -0
  236. package/dist/components/BT-Dialog-Number.vue.d.ts +2 -0
  237. package/dist/components/BT-Dialog-Number.vue.mjs +178 -0
  238. package/dist/components/BT-Dialog-Number.vue2.mjs +4 -0
  239. package/dist/components/BT-Dialog-Select.vue.d.ts +2 -0
  240. package/dist/components/BT-Dialog-Select.vue.mjs +235 -0
  241. package/dist/components/BT-Dialog-Select.vue2.mjs +4 -0
  242. package/dist/components/BT-Divider.vue.d.ts +24 -0
  243. package/dist/components/BT-Divider.vue.mjs +31 -0
  244. package/dist/components/BT-Divider.vue2.mjs +4 -0
  245. package/dist/components/BT-Drag-Counter.vue.d.ts +114 -0
  246. package/dist/components/BT-Drag-Counter.vue.mjs +7 -0
  247. package/dist/components/BT-Drag-Counter.vue2.mjs +156 -0
  248. package/dist/components/BT-Drag-Counter.vue3.mjs +1 -0
  249. package/dist/components/BT-Entity.vue.d.ts +82 -0
  250. package/dist/components/BT-Entity.vue.mjs +172 -0
  251. package/dist/components/BT-Entity.vue2.mjs +4 -0
  252. package/dist/components/BT-Error.vue.d.ts +15 -0
  253. package/dist/components/BT-Error.vue.mjs +35 -0
  254. package/dist/components/BT-Error.vue2.mjs +4 -0
  255. package/dist/components/BT-Field-Checkbox.vue.d.ts +57 -0
  256. package/dist/components/BT-Field-Checkbox.vue.mjs +61 -0
  257. package/dist/components/BT-Field-Checkbox.vue2.mjs +4 -0
  258. package/dist/components/BT-Field-Date.vue.d.ts +69 -0
  259. package/dist/components/BT-Field-Date.vue.mjs +120 -0
  260. package/dist/components/BT-Field-Date.vue2.mjs +4 -0
  261. package/dist/components/BT-Field-Entity.vue.d.ts +48 -0
  262. package/dist/components/BT-Field-Entity.vue.mjs +55 -0
  263. package/dist/components/BT-Field-Entity.vue2.mjs +4 -0
  264. package/dist/components/BT-Field-Select-Simple.vue.d.ts +55 -0
  265. package/dist/components/BT-Field-Select-Simple.vue.mjs +52 -0
  266. package/dist/components/BT-Field-Select-Simple.vue2.mjs +4 -0
  267. package/dist/components/BT-Field-Select.vue.d.ts +70 -0
  268. package/dist/components/BT-Field-Select.vue.mjs +60 -0
  269. package/dist/components/BT-Field-Select.vue2.mjs +4 -0
  270. package/dist/components/BT-Field-String.vue.d.ts +57 -0
  271. package/dist/components/BT-Field-String.vue.mjs +87 -0
  272. package/dist/components/BT-Field-String.vue2.mjs +4 -0
  273. package/dist/components/BT-Field-Switch.vue.d.ts +51 -0
  274. package/dist/components/BT-Field-Switch.vue.mjs +64 -0
  275. package/dist/components/BT-Field-Switch.vue2.mjs +4 -0
  276. package/dist/components/BT-Field-Tags.vue.d.ts +53 -0
  277. package/dist/components/BT-Field-Tags.vue.mjs +80 -0
  278. package/dist/components/BT-Field-Tags.vue2.mjs +4 -0
  279. package/dist/components/BT-Field-Textarea.vue.d.ts +53 -0
  280. package/dist/components/BT-Field-Textarea.vue.mjs +66 -0
  281. package/dist/components/BT-Field-Textarea.vue2.mjs +4 -0
  282. package/dist/components/BT-Field-Trigger.vue.d.ts +113 -0
  283. package/dist/components/BT-Field-Trigger.vue.mjs +368 -0
  284. package/dist/components/BT-Field-Trigger.vue2.mjs +4 -0
  285. package/dist/components/BT-Field.vue.d.ts +49 -0
  286. package/dist/components/BT-Field.vue.mjs +59 -0
  287. package/dist/components/BT-Field.vue2.mjs +4 -0
  288. package/dist/components/BT-Form-Builder.vue.d.ts +74 -0
  289. package/dist/components/BT-Form-Builder.vue.mjs +762 -0
  290. package/dist/components/BT-Form-Builder.vue2.mjs +4 -0
  291. package/dist/components/BT-Form-Field.vue.d.ts +41 -0
  292. package/dist/components/BT-Form-Field.vue.mjs +186 -0
  293. package/dist/components/BT-Form-Field.vue2.mjs +4 -0
  294. package/dist/components/BT-Form.vue.d.ts +95 -0
  295. package/dist/components/BT-Form.vue.mjs +635 -0
  296. package/dist/components/BT-Form.vue2.mjs +4 -0
  297. package/dist/components/BT-Header-Option.vue.d.ts +18 -0
  298. package/dist/components/BT-Header-Option.vue.mjs +62 -0
  299. package/dist/components/BT-Header-Option.vue2.mjs +4 -0
  300. package/dist/components/BT-Image-Select.vue.d.ts +71 -0
  301. package/dist/components/BT-Image-Select.vue.mjs +219 -0
  302. package/dist/components/BT-Image-Select.vue2.mjs +4 -0
  303. package/dist/components/BT-Json.vue.d.ts +6 -0
  304. package/dist/components/BT-Json.vue.mjs +38 -0
  305. package/dist/components/BT-Json.vue2.mjs +1 -0
  306. package/dist/components/BT-Json.vue3.mjs +5 -0
  307. package/dist/components/BT-Loader.vue.d.ts +6 -0
  308. package/dist/components/BT-Loader.vue.mjs +37 -0
  309. package/dist/components/BT-Loader.vue2.mjs +4 -0
  310. package/dist/components/BT-Nav-Sidebar.vue.d.ts +25 -0
  311. package/dist/components/BT-Nav-Sidebar.vue.mjs +138 -0
  312. package/dist/components/BT-Nav-Sidebar.vue2.mjs +4 -0
  313. package/dist/components/BT-Number.vue.d.ts +23 -0
  314. package/dist/components/BT-Number.vue.mjs +7 -0
  315. package/dist/components/BT-Number.vue2.mjs +43 -0
  316. package/dist/components/BT-Number.vue3.mjs +1 -0
  317. package/dist/components/BT-Numpad.vue.d.ts +68 -0
  318. package/dist/components/BT-Numpad.vue.mjs +191 -0
  319. package/dist/components/BT-Numpad.vue2.mjs +4 -0
  320. package/dist/components/BT-Select-Inline.vue.d.ts +121 -0
  321. package/dist/components/BT-Select-Inline.vue.mjs +74 -0
  322. package/dist/components/BT-Select-Inline.vue2.mjs +24 -0
  323. package/dist/components/BT-Select-Inline.vue3.mjs +1 -0
  324. package/dist/components/BT-Select-List-Box.vue.d.ts +137 -0
  325. package/dist/components/BT-Select-List-Box.vue.mjs +414 -0
  326. package/dist/components/BT-Select-List-Box.vue2.mjs +4 -0
  327. package/dist/components/BT-Select-Simple.vue.d.ts +58 -0
  328. package/dist/components/BT-Select-Simple.vue.mjs +126 -0
  329. package/dist/components/BT-Select-Simple.vue2.mjs +4 -0
  330. package/dist/components/BT-Select.vue.d.ts +73 -0
  331. package/dist/components/BT-Select.vue.mjs +138 -0
  332. package/dist/components/BT-Select.vue2.mjs +4 -0
  333. package/dist/components/BT-Signature-Overlay.vue.d.ts +65 -0
  334. package/dist/components/BT-Signature-Overlay.vue.mjs +146 -0
  335. package/dist/components/BT-Signature-Overlay.vue2.mjs +4 -0
  336. package/dist/components/BT-Signature.vue.d.ts +70 -0
  337. package/dist/components/BT-Signature.vue.mjs +155 -0
  338. package/dist/components/BT-Signature.vue2.mjs +4 -0
  339. package/dist/components/BT-Slider.vue.d.ts +37 -0
  340. package/dist/components/BT-Slider.vue.mjs +126 -0
  341. package/dist/components/BT-Slider.vue2.mjs +4 -0
  342. package/dist/components/BT-Span.vue.d.ts +19 -0
  343. package/dist/components/BT-Span.vue.mjs +23 -0
  344. package/dist/components/BT-Span.vue2.mjs +4 -0
  345. package/dist/components/BT-Square-Check.vue.d.ts +104 -0
  346. package/dist/components/BT-Square-Check.vue.mjs +98 -0
  347. package/dist/components/BT-Square-Check.vue2.mjs +4 -0
  348. package/dist/components/BT-Status-Item.vue.d.ts +45 -0
  349. package/dist/components/BT-Status-Item.vue.mjs +51 -0
  350. package/dist/components/BT-Status-Item.vue2.mjs +4 -0
  351. package/dist/components/BT-Tags.vue.d.ts +19 -0
  352. package/dist/components/BT-Tags.vue.mjs +32 -0
  353. package/dist/components/BT-Tags.vue2.mjs +4 -0
  354. package/dist/components/BT-Tour.vue.d.ts +43 -0
  355. package/dist/components/BT-Tour.vue.mjs +78 -0
  356. package/dist/components/BT-Tour.vue2.mjs +4 -0
  357. package/dist/components.mjs +36 -0
  358. package/dist/composables/actions-local.d.ts +14 -0
  359. package/dist/composables/actions-local.mjs +26 -0
  360. package/dist/composables/actions-tracker.d.ts +36 -0
  361. package/dist/composables/actions-tracker.mjs +88 -0
  362. package/dist/composables/actions.d.ts +116 -0
  363. package/dist/composables/actions.mjs +272 -0
  364. package/dist/composables/api.d.ts +100 -0
  365. package/dist/composables/api.mjs +329 -0
  366. package/dist/composables/assistant.d.ts +38 -0
  367. package/dist/composables/assistant.mjs +70 -0
  368. package/dist/composables/auth.d.ts +94 -0
  369. package/dist/composables/auth.mjs +257 -0
  370. package/dist/composables/background-tasks.d.ts +31 -0
  371. package/dist/composables/background-tasks.mjs +79 -0
  372. package/dist/composables/blade-old.d.ts +1 -0
  373. package/dist/composables/blade.d.ts +91 -0
  374. package/dist/composables/blade.mjs +156 -0
  375. package/dist/composables/charts.d.ts +10 -0
  376. package/dist/composables/colorizer.d.ts +5 -0
  377. package/dist/composables/colorizer.mjs +27 -0
  378. package/dist/composables/component-config.d.ts +8 -0
  379. package/dist/composables/component-config.mjs +11 -0
  380. package/dist/composables/confirm.d.ts +1 -0
  381. package/dist/composables/confirm.mjs +11 -0
  382. package/dist/composables/cosmetics.d.ts +44 -0
  383. package/dist/composables/cosmetics.mjs +125 -0
  384. package/dist/composables/cron-adjustments.d.ts +63 -0
  385. package/dist/composables/cron-adjustments.mjs +106 -0
  386. package/dist/composables/cron.d.ts +72 -0
  387. package/dist/composables/cron.mjs +326 -0
  388. package/dist/composables/csv.d.ts +44 -0
  389. package/dist/composables/csv.mjs +163 -0
  390. package/dist/composables/dates.d.ts +22 -0
  391. package/dist/composables/dates.mjs +61 -0
  392. package/dist/composables/demo.d.ts +68 -0
  393. package/dist/composables/demo.mjs +173 -0
  394. package/dist/composables/dialog-items.d.ts +117 -0
  395. package/dist/composables/dialog-items.mjs +72 -0
  396. package/dist/composables/document-meta.d.ts +11 -0
  397. package/dist/composables/document-meta.mjs +20 -0
  398. package/dist/composables/draggable.d.ts +56 -0
  399. package/dist/composables/draggable.mjs +76 -0
  400. package/dist/composables/feedback.d.ts +24 -0
  401. package/dist/composables/feedback.mjs +32 -0
  402. package/dist/composables/filters.d.ts +27 -0
  403. package/dist/composables/filters.mjs +218 -0
  404. package/dist/composables/forage.d.ts +89 -0
  405. package/dist/composables/forage.mjs +37 -0
  406. package/dist/composables/forms.d.ts +104 -0
  407. package/dist/composables/forms.mjs +256 -0
  408. package/dist/composables/geo.d.ts +24 -0
  409. package/dist/composables/geo.mjs +95 -0
  410. package/dist/composables/graph-pro.d.ts +98 -0
  411. package/dist/composables/graph-pro.mjs +205 -0
  412. package/dist/composables/graphing.d.ts +1 -0
  413. package/dist/composables/heights.d.ts +24 -0
  414. package/dist/composables/heights.mjs +41 -0
  415. package/dist/composables/helpers.d.ts +114 -0
  416. package/dist/composables/helpers.mjs +512 -0
  417. package/dist/composables/icons.d.ts +3 -0
  418. package/dist/composables/icons.mjs +84 -0
  419. package/dist/composables/id.d.ts +8 -0
  420. package/dist/composables/id.mjs +32 -0
  421. package/dist/composables/item.d.ts +132 -0
  422. package/dist/composables/item.mjs +263 -0
  423. package/dist/composables/iterating.d.ts +1 -0
  424. package/dist/composables/list.d.ts +345 -0
  425. package/dist/composables/list.mjs +460 -0
  426. package/dist/composables/lists.d.ts +10 -0
  427. package/dist/composables/lists.mjs +31 -0
  428. package/dist/composables/menu.d.ts +35 -0
  429. package/dist/composables/menu.mjs +63 -0
  430. package/dist/composables/navigation.d.ts +123 -0
  431. package/dist/composables/navigation.mjs +157 -0
  432. package/dist/composables/nested.d.ts +3 -0
  433. package/dist/composables/nested.mjs +20 -0
  434. package/dist/composables/old-dialogs.d.ts +1 -0
  435. package/dist/composables/presets.d.ts +8 -0
  436. package/dist/composables/presets.mjs +16 -0
  437. package/dist/composables/pwa-old.d.ts +15 -0
  438. package/dist/composables/pwa.d.ts +26 -0
  439. package/dist/composables/pwa.mjs +80 -0
  440. package/dist/composables/resizable.d.ts +34 -0
  441. package/dist/composables/resizable.mjs +135 -0
  442. package/dist/composables/routing-old.d.ts +1 -0
  443. package/dist/composables/routing.d.ts +16 -0
  444. package/dist/composables/routing.mjs +112 -0
  445. package/dist/composables/rules.d.ts +13 -0
  446. package/dist/composables/rules.mjs +22 -0
  447. package/dist/composables/select.d.ts +78 -0
  448. package/dist/composables/select.mjs +129 -0
  449. package/dist/composables/settings.d.ts +6 -0
  450. package/dist/composables/settings.mjs +21 -0
  451. package/dist/composables/setup.d.ts +1 -0
  452. package/dist/composables/steps-old.d.ts +1 -0
  453. package/dist/composables/steps.d.ts +53 -0
  454. package/dist/composables/steps.mjs +39 -0
  455. package/dist/composables/stores.d.ts +258 -0
  456. package/dist/composables/stores.mjs +1257 -0
  457. package/dist/composables/sync.d.ts +33 -0
  458. package/dist/composables/track.d.ts +13 -0
  459. package/dist/composables/track.mjs +30 -0
  460. package/dist/composables/urls.d.ts +35 -0
  461. package/dist/composables/urls.mjs +66 -0
  462. package/dist/composables/vuetify.d.ts +85 -0
  463. package/dist/composables.mjs +237 -0
  464. package/dist/core.d.ts +48 -0
  465. package/dist/core.mjs +6 -0
  466. package/dist/core2.mjs +118 -0
  467. package/dist/index-components.d.ts +19 -0
  468. package/dist/index-composables.d.ts +75 -0
  469. package/dist/index-core.d.ts +3 -0
  470. package/dist/index.d.ts +96 -3036
  471. package/dist/index.mjs +275 -0
  472. package/dist/main.d.ts +1 -0
  473. package/dist/node_modules/bt-core-app/dist/bt-core-app.mjs +30372 -0
  474. package/dist/style.css +1 -5
  475. package/dist/types.d.ts +18 -0
  476. package/dist/types.mjs +7 -0
  477. package/package.json +4 -1
  478. package/dist/bt-core-app.js +0 -81355
@@ -0,0 +1,173 @@
1
+ import { defineComponent as F, ref as i, computed as $, watch as O, onUnmounted as P, resolveComponent as m, openBlock as a, createElementBlock as w, createBlock as f, mergeProps as A, withModifiers as R, createCommentVNode as p, createVNode as r, withCtx as y, normalizeStyle as W, renderSlot as q, createElementVNode as D } from "vue";
2
+ import { isLengthyArray as G } from "../composables/helpers.mjs";
3
+ const J = ["src"], X = /* @__PURE__ */ F({
4
+ __name: "BT-Camera-Overlay",
5
+ props: {
6
+ color: {},
7
+ fullscreen: { type: Boolean, default: !0 },
8
+ hideButton: { type: Boolean, default: !1 },
9
+ openToggle: { type: Boolean },
10
+ usedHeight: { default: 0 }
11
+ },
12
+ emits: ["cancel", "change", "close", "open", "update:modelValue"],
13
+ setup(b, { emit: E }) {
14
+ const s = E, h = b, c = i(null), x = i("environment"), u = i(!0), g = i(), n = i(null), _ = i([]), L = $(() => h.fullscreen == !0 ? `height: calc(100vh - ${h.usedHeight}px); width: 100%;` : ""), l = i(), v = i(!1), z = $(() => u.value ? !0 : l.value == null ? g.value == null : u.value);
15
+ O(() => h.openToggle, async () => {
16
+ await k();
17
+ });
18
+ function d() {
19
+ var t;
20
+ const e = (t = g.value) == null ? void 0 : t.getVideoTracks();
21
+ G(e) && (e == null || e.forEach((o) => o.stop()));
22
+ }
23
+ async function C(e) {
24
+ n.value != null && (x.value = e, g.value = await navigator.mediaDevices.getUserMedia({
25
+ video: { facingMode: e }
26
+ }), n.value.srcObject = g.value, await n.value.play());
27
+ }
28
+ async function M() {
29
+ u.value = !0, d(), await C(x.value == "environment" ? "user" : "environment"), u.value = !1;
30
+ }
31
+ function S() {
32
+ if (n.value == null || c.value == null)
33
+ return;
34
+ c.value.width = n.value.videoWidth, c.value.height = n.value.videoHeight;
35
+ let e = c.value.getContext("2d");
36
+ e != null && (e.save(), e.drawImage(n.value, 0, 0), e.restore(), l.value = c.value.toDataURL("image/png"), d());
37
+ }
38
+ function T() {
39
+ d(), s("update:modelValue", l.value), s("change", l.value), s("close"), v.value = !1;
40
+ }
41
+ function U() {
42
+ d(), s("cancel"), s("close"), v.value = !1;
43
+ }
44
+ async function k() {
45
+ u.value = !0, v.value = !0, l.value = void 0;
46
+ const e = await navigator.mediaDevices.enumerateDevices();
47
+ _.value = e.filter((t) => t.kind === "videoinput"), await C(_.value.length == 1 ? "user" : "environment"), s("open"), u.value = !1;
48
+ }
49
+ return P(() => {
50
+ d();
51
+ }), (e, t) => {
52
+ const o = m("v-btn"), j = m("v-slide-x-reverse-transition"), B = m("v-card"), H = m("v-slide-x-transition"), I = m("v-progress-circular"), V = m("v-overlay");
53
+ return a(), w("div", null, [
54
+ !e.hideButton && !v.value ? (a(), f(o, A({
55
+ key: 0,
56
+ onClick: R(k, ["stop"])
57
+ }, e.$attrs), null, 16)) : p("", !0),
58
+ r(V, {
59
+ "onClick:outside": t[0] || (t[0] = () => d()),
60
+ modelValue: v.value,
61
+ "onUpdate:modelValue": t[1] || (t[1] = (N) => v.value = N),
62
+ "z-index": "1001"
63
+ }, {
64
+ default: y(() => [
65
+ r(B, {
66
+ class: "pa-0 ma-0 d-flex align-center justify-center",
67
+ color: e.color,
68
+ style: W(L.value)
69
+ }, {
70
+ default: y(() => [
71
+ q(e.$slots, "top"),
72
+ D("canvas", {
73
+ style: { display: "none" },
74
+ ref_key: "canva",
75
+ ref: c
76
+ }, null, 512),
77
+ r(B, {
78
+ class: "d-flex flex-column align-center justify-center",
79
+ color: "primary",
80
+ style: { position: "fixed", opacity: "0.75", right: "0" },
81
+ width: "60"
82
+ }, {
83
+ default: y(() => [
84
+ r(j, {
85
+ "hide-on-leave": "",
86
+ group: ""
87
+ }, {
88
+ default: y(() => [
89
+ l.value == null ? (a(), f(o, {
90
+ class: "my-3",
91
+ onClick: U,
92
+ icon: "$close",
93
+ key: "1",
94
+ variant: "tonal"
95
+ })) : p("", !0),
96
+ l.value != null ? (a(), f(o, {
97
+ class: "my-3",
98
+ onClick: k,
99
+ icon: "$close",
100
+ key: "2",
101
+ variant: "tonal"
102
+ })) : p("", !0),
103
+ l.value == null ? (a(), f(o, {
104
+ class: "text-error my-3",
105
+ onClick: S,
106
+ icon: "$circle",
107
+ key: "3",
108
+ variant: "tonal"
109
+ })) : p("", !0),
110
+ l.value != null ? (a(), f(o, {
111
+ class: "my-3",
112
+ onClick: T,
113
+ icon: "$check",
114
+ key: "4",
115
+ variant: "tonal"
116
+ })) : p("", !0),
117
+ l.value == null ? (a(), f(o, {
118
+ key: 4,
119
+ class: "my-3",
120
+ onClick: M,
121
+ disabled: u.value || _.value.length < 2,
122
+ icon: "$camera-flip",
123
+ variant: "tonal"
124
+ }, null, 8, ["disabled"])) : p("", !0)
125
+ ]),
126
+ _: 1
127
+ })
128
+ ]),
129
+ _: 1
130
+ }),
131
+ r(H, null, {
132
+ default: y(() => [
133
+ l.value == null ? (a(), w("video", {
134
+ key: 0,
135
+ ref_key: "videoEl",
136
+ ref: n,
137
+ style: { height: "100vh", width: "100vw" }
138
+ }, null, 512)) : (a(), w("img", {
139
+ key: 1,
140
+ cover: "",
141
+ src: l.value,
142
+ style: { "max-height": "100vh", "max-width": "100vw" }
143
+ }, null, 8, J))
144
+ ]),
145
+ _: 1
146
+ }),
147
+ r(V, {
148
+ value: z.value,
149
+ class: "text-center",
150
+ "z-index": "1002"
151
+ }, {
152
+ default: y(() => [
153
+ r(I, {
154
+ indeterminate: "",
155
+ size: "32"
156
+ }),
157
+ t[2] || (t[2] = D("p", null, "Loading Image", -1))
158
+ ]),
159
+ _: 1
160
+ }, 8, ["value"])
161
+ ]),
162
+ _: 3
163
+ }, 8, ["color", "style"])
164
+ ]),
165
+ _: 3
166
+ }, 8, ["modelValue"])
167
+ ]);
168
+ };
169
+ }
170
+ });
171
+ export {
172
+ X as default
173
+ };
@@ -0,0 +1,4 @@
1
+ import f from "./BT-Camera-Overlay.vue.mjs";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1,49 @@
1
+ interface ColProps {
2
+ cols?: string | boolean;
3
+ isMobile?: boolean;
4
+ lg?: string | boolean;
5
+ md?: string | boolean;
6
+ sm?: string | boolean;
7
+ noGutters?: boolean;
8
+ }
9
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ColProps>, {
10
+ cols: string;
11
+ lg: boolean;
12
+ md: boolean;
13
+ sm: string;
14
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ColProps>, {
15
+ cols: string;
16
+ lg: boolean;
17
+ md: boolean;
18
+ sm: string;
19
+ }>>> & Readonly<{}>, {
20
+ sm: string | boolean;
21
+ cols: string | boolean;
22
+ lg: string | boolean;
23
+ md: string | boolean;
24
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
25
+ default?(_: {}): any;
26
+ }>;
27
+ export default _default;
28
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
29
+ type __VLS_TypePropsToRuntimeProps<T> = {
30
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
31
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
32
+ } : {
33
+ type: import('vue').PropType<T[K]>;
34
+ required: true;
35
+ };
36
+ };
37
+ type __VLS_WithDefaults<P, D> = {
38
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
39
+ default: D[K];
40
+ }> : P[K];
41
+ };
42
+ type __VLS_Prettify<T> = {
43
+ [K in keyof T]: T[K];
44
+ } & {};
45
+ type __VLS_WithTemplateSlots<T, S> = T & {
46
+ new (): {
47
+ $slots: S;
48
+ };
49
+ };
@@ -0,0 +1,33 @@
1
+ import { defineComponent as r, inject as i, ref as u, computed as s, resolveComponent as p, openBlock as f, createBlock as d, normalizeClass as g, withCtx as v, renderSlot as B } from "vue";
2
+ const b = /* @__PURE__ */ r({
3
+ __name: "BT-Col",
4
+ props: {
5
+ cols: { type: [String, Boolean], default: "12" },
6
+ isMobile: { type: Boolean },
7
+ lg: { type: [String, Boolean], default: !1 },
8
+ md: { type: [String, Boolean], default: !1 },
9
+ sm: { type: [String, Boolean], default: "6" },
10
+ noGutters: { type: Boolean }
11
+ },
12
+ setup(t) {
13
+ const e = t, o = i("isMobile", () => u(!1), !0), a = s(() => e.isMobile ?? o.value ? !1 : e.lg), n = s(() => e.isMobile ?? o.value ? !1 : e.md), c = s(() => e.isMobile ?? o.value ? !1 : e.sm);
14
+ return (l, M) => {
15
+ const m = p("v-col");
16
+ return f(), d(m, {
17
+ lg: a.value,
18
+ md: n.value,
19
+ sm: c.value,
20
+ cols: l.cols,
21
+ class: g(l.noGutters ? "px-0" : "")
22
+ }, {
23
+ default: v(() => [
24
+ B(l.$slots, "default")
25
+ ]),
26
+ _: 3
27
+ }, 8, ["lg", "md", "sm", "cols", "class"]);
28
+ };
29
+ }
30
+ });
31
+ export {
32
+ b as default
33
+ };
@@ -0,0 +1,4 @@
1
+ import f from "./BT-Col.vue.mjs";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1,23 @@
1
+ interface PickerProps {
2
+ color?: string;
3
+ hideButton?: boolean;
4
+ modelValue?: any;
5
+ openToggle?: boolean;
6
+ }
7
+ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<PickerProps>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
+ change: (...args: any[]) => void;
9
+ "update:modelValue": (...args: any[]) => void;
10
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<PickerProps>>> & Readonly<{
11
+ onChange?: ((...args: any[]) => any) | undefined;
12
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
13
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
14
+ export default _default;
15
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
16
+ type __VLS_TypePropsToRuntimeProps<T> = {
17
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
18
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
19
+ } : {
20
+ type: import('vue').PropType<T[K]>;
21
+ required: true;
22
+ };
23
+ };
@@ -0,0 +1,63 @@
1
+ import { defineComponent as y, ref as s, watch as d, resolveComponent as n, openBlock as v, createBlock as i, withCtx as t, mergeProps as T, createCommentVNode as w, createVNode as c, createTextVNode as N } from "vue";
2
+ const h = /* @__PURE__ */ y({
3
+ __name: "BT-Color-Picker-Menu",
4
+ props: {
5
+ color: {},
6
+ hideButton: { type: Boolean },
7
+ modelValue: {},
8
+ openToggle: { type: Boolean }
9
+ },
10
+ emits: ["update:modelValue", "change"],
11
+ setup(_, { emit: V }) {
12
+ const u = _, p = V, o = s(u.color), r = s(!1);
13
+ d(() => u.modelValue, (a) => {
14
+ o.value = a;
15
+ }), d(() => u.openToggle, () => {
16
+ r.value = !0;
17
+ });
18
+ function f() {
19
+ p("update:modelValue", o.value), p("change", o.value);
20
+ }
21
+ return (a, e) => {
22
+ const m = n("v-btn"), k = n("v-color-picker"), g = n("v-spacer"), B = n("v-card"), C = n("v-menu");
23
+ return v(), i(C, {
24
+ "close-on-content-click": !1,
25
+ modelValue: r.value,
26
+ "onUpdate:modelValue": e[1] || (e[1] = (l) => r.value = l)
27
+ }, {
28
+ activator: t(({ props: l }) => [
29
+ a.hideButton ? w("", !0) : (v(), i(m, T({
30
+ key: 0,
31
+ color: a.color,
32
+ icon: "",
33
+ size: "small"
34
+ }, l), null, 16, ["color"]))
35
+ ]),
36
+ default: t(() => [
37
+ c(B, null, {
38
+ default: t(() => [
39
+ c(k, {
40
+ modelValue: o.value,
41
+ "onUpdate:modelValue": e[0] || (e[0] = (l) => o.value = l)
42
+ }, null, 8, ["modelValue"])
43
+ ]),
44
+ actions: t(() => [
45
+ c(g),
46
+ c(m, { onClick: f }, {
47
+ default: t(() => e[2] || (e[2] = [
48
+ N("Apply")
49
+ ])),
50
+ _: 1
51
+ })
52
+ ]),
53
+ _: 1
54
+ })
55
+ ]),
56
+ _: 1
57
+ }, 8, ["modelValue"]);
58
+ };
59
+ }
60
+ });
61
+ export {
62
+ h as default
63
+ };
@@ -0,0 +1,4 @@
1
+ import f from "./BT-Color-Picker-Menu.vue.mjs";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1,14 @@
1
+ interface MenuProps {
2
+ size?: string;
3
+ }
4
+ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<MenuProps>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<MenuProps>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
5
+ export default _default;
6
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
7
+ type __VLS_TypePropsToRuntimeProps<T> = {
8
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
9
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
10
+ } : {
11
+ type: import('vue').PropType<T[K]>;
12
+ required: true;
13
+ };
14
+ };
@@ -0,0 +1,211 @@
1
+ import { defineComponent as N, computed as S, resolveComponent as a, openBlock as u, createBlock as p, withCtx as n, createVNode as o, mergeProps as w, createElementVNode as L, createTextVNode as b, unref as d, createCommentVNode as f, createElementBlock as U, Fragment as D, renderList as E } from "vue";
2
+ import e from "../bt-core/core/node_modules/vuetify/lib/util/colors.mjs";
3
+ import { useTheme as M } from "vuetify";
4
+ import k from "./BT-Color-Picker-Menu.vue.mjs";
5
+ import { useCosmetics as P } from "../composables/cosmetics.mjs";
6
+ const A = { class: "d-flex pr-2" }, I = /* @__PURE__ */ N({
7
+ __name: "BT-Cosmetics-Menu",
8
+ props: {
9
+ size: {}
10
+ },
11
+ setup(F) {
12
+ const g = [
13
+ {
14
+ primary: "#192233",
15
+ secondary: "#192233",
16
+ accent: "#7fcbf7"
17
+ },
18
+ {
19
+ primary: e.pink.darken2,
20
+ secondary: e.pink.base,
21
+ accent: e.pink.base
22
+ },
23
+ {
24
+ primary: e.purple.darken2,
25
+ secondary: e.purple.base,
26
+ accent: e.purple.base
27
+ },
28
+ {
29
+ primary: e.indigo.darken2,
30
+ secondary: e.indigo.base,
31
+ accent: e.indigo.base
32
+ },
33
+ {
34
+ primary: e.teal.darken2,
35
+ secondary: e.teal.base,
36
+ accent: e.teal.base
37
+ },
38
+ {
39
+ primary: e.green.darken2,
40
+ secondary: e.green.base,
41
+ accent: e.green.base
42
+ },
43
+ {
44
+ primary: e.lightGreen.darken2,
45
+ secondary: e.lightGreen.base,
46
+ accent: e.lightGreen.base
47
+ },
48
+ {
49
+ primary: e.orange.darken2,
50
+ secondary: e.orange.base,
51
+ accent: e.orange.base
52
+ },
53
+ {
54
+ primary: e.blueGrey.darken2,
55
+ secondary: e.blueGrey.base,
56
+ accent: e.blueGrey.base
57
+ },
58
+ {
59
+ primary: e.red.darken2,
60
+ secondary: e.red.base,
61
+ accent: e.red.base
62
+ }
63
+ ], C = M(), s = P(), l = S(() => C.current.value.dark ? s.state.value.dark : s.state.value.light);
64
+ function V(c) {
65
+ l.value != null && (l.value.primary = c.primary, l.value.secondary = c.secondary, l.value.accent = c.accent, s.resetCosmetics(!1));
66
+ }
67
+ return (c, t) => {
68
+ const i = a("v-btn"), v = a("v-list-subheader"), x = a("v-spacer"), m = a("v-list-item"), y = a("v-divider"), _ = a("v-col"), G = a("v-row"), T = a("v-card"), z = a("v-list"), $ = a("v-menu");
69
+ return u(), p($, { "close-on-content-click": !1 }, {
70
+ activator: n(({ props: r }) => [
71
+ o(i, w({
72
+ icon: "$theme-light-dark",
73
+ size: c.size,
74
+ title: "Colors & Styles"
75
+ }, r, { variant: "text" }), null, 16, ["size"])
76
+ ]),
77
+ default: n(() => [
78
+ o(z, {
79
+ density: "compact",
80
+ "max-height": "450px"
81
+ }, {
82
+ default: n(() => [
83
+ L("div", A, [
84
+ o(v, { class: "d-flex" }, {
85
+ default: n(() => t[8] || (t[8] = [
86
+ b("Styles & Colors")
87
+ ])),
88
+ _: 1
89
+ }),
90
+ o(x),
91
+ o(i, {
92
+ onClick: t[0] || (t[0] = (r) => d(s).resetCosmetics(!0)),
93
+ size: "small",
94
+ text: "Reset"
95
+ })
96
+ ]),
97
+ o(m, {
98
+ onClick: t[1] || (t[1] = () => d(s).toggleLightDark()),
99
+ "prepend-icon": "$theme-light-dark",
100
+ title: "Toggle Light/Dark Mode"
101
+ }),
102
+ o(y, { class: "my-1" }),
103
+ o(v, null, {
104
+ default: n(() => t[9] || (t[9] = [
105
+ b("Custom")
106
+ ])),
107
+ _: 1
108
+ }),
109
+ l.value != null ? (u(), p(m, {
110
+ key: 0,
111
+ subtitle: l.value.primary,
112
+ title: "Primary Color"
113
+ }, {
114
+ append: n(() => [
115
+ o(k, {
116
+ onChange: t[2] || (t[2] = () => d(s).resetCosmetics(!1)),
117
+ color: l.value.primary,
118
+ modelValue: l.value.primary,
119
+ "onUpdate:modelValue": t[3] || (t[3] = (r) => l.value.primary = r)
120
+ }, null, 8, ["color", "modelValue"])
121
+ ]),
122
+ _: 1
123
+ }, 8, ["subtitle"])) : f("", !0),
124
+ l.value != null ? (u(), p(m, {
125
+ key: 1,
126
+ subtitle: l.value.secondary,
127
+ title: "Secondary Color"
128
+ }, {
129
+ append: n(() => [
130
+ o(k, {
131
+ onChange: t[4] || (t[4] = () => d(s).resetCosmetics(!1)),
132
+ color: l.value.secondary,
133
+ modelValue: l.value.secondary,
134
+ "onUpdate:modelValue": t[5] || (t[5] = (r) => l.value.secondary = r)
135
+ }, null, 8, ["color", "modelValue"])
136
+ ]),
137
+ _: 1
138
+ }, 8, ["subtitle"])) : f("", !0),
139
+ l.value != null ? (u(), p(m, {
140
+ key: 2,
141
+ subtitle: l.value.accent,
142
+ title: "Accent Color"
143
+ }, {
144
+ append: n(() => [
145
+ o(k, {
146
+ onChange: t[6] || (t[6] = () => d(s).resetCosmetics(!1)),
147
+ color: l.value.accent,
148
+ modelValue: l.value.accent,
149
+ "onUpdate:modelValue": t[7] || (t[7] = (r) => l.value.accent = r)
150
+ }, null, 8, ["color", "modelValue"])
151
+ ]),
152
+ _: 1
153
+ }, 8, ["subtitle"])) : f("", !0),
154
+ o(y, { class: "my-1" }),
155
+ o(v, null, {
156
+ default: n(() => t[10] || (t[10] = [
157
+ b("Templates")
158
+ ])),
159
+ _: 1
160
+ }),
161
+ o(T, null, {
162
+ default: n(() => [
163
+ (u(), U(D, null, E(g, (r, B) => o(G, {
164
+ dense: "",
165
+ key: B,
166
+ onClick: (O) => V(r)
167
+ }, {
168
+ default: n(() => [
169
+ o(_, { cols: "4" }, {
170
+ default: n(() => [
171
+ o(i, {
172
+ color: r.primary
173
+ }, null, 8, ["color"])
174
+ ]),
175
+ _: 2
176
+ }, 1024),
177
+ o(_, { cols: "4" }, {
178
+ default: n(() => [
179
+ o(i, {
180
+ color: r.secondary
181
+ }, null, 8, ["color"])
182
+ ]),
183
+ _: 2
184
+ }, 1024),
185
+ o(_, { cols: "4" }, {
186
+ default: n(() => [
187
+ o(i, {
188
+ color: r.accent
189
+ }, null, 8, ["color"])
190
+ ]),
191
+ _: 2
192
+ }, 1024),
193
+ o(y, { class: "my-1" })
194
+ ]),
195
+ _: 2
196
+ }, 1032, ["onClick"])), 64))
197
+ ]),
198
+ _: 1
199
+ })
200
+ ]),
201
+ _: 1
202
+ })
203
+ ]),
204
+ _: 1
205
+ });
206
+ };
207
+ }
208
+ });
209
+ export {
210
+ I as default
211
+ };
@@ -0,0 +1,4 @@
1
+ import f from "./BT-Cosmetics-Menu.vue.mjs";
2
+ export {
3
+ f as default
4
+ };
@@ -0,0 +1,21 @@
1
+ interface CronProps {
2
+ defaultExpression?: string;
3
+ firstPrefix?: string;
4
+ secondPrefix?: string;
5
+ label?: string;
6
+ modelValue?: any;
7
+ /**defaults to minutes */
8
+ useLeadTimeLeft?: boolean;
9
+ leadFormat?: 'minutes' | 'hours' | 'days';
10
+ }
11
+ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<CronProps>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<CronProps>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
12
+ export default _default;
13
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
14
+ type __VLS_TypePropsToRuntimeProps<T> = {
15
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
16
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
17
+ } : {
18
+ type: import('vue').PropType<T[K]>;
19
+ required: true;
20
+ };
21
+ };