Update more frontend deps.

This commit is contained in:
Buster "Silver Eagle" Neece 2022-03-17 19:04:46 -05:00
parent 0837ed5b0a
commit 4903cb5b23
No known key found for this signature in database
GPG Key ID: 9FC8B9E008872109
3 changed files with 961 additions and 346 deletions

File diff suppressed because it is too large Load Diff

View File

@ -14,10 +14,10 @@
"@flowjs/flow.js": "^2.14.1",
"@fullcalendar/core": "^5.9.0",
"@fullcalendar/daygrid": "^5.9.0",
"@fullcalendar/luxon": "^5.9.0",
"@fullcalendar/luxon2": "^5.10.2",
"@fullcalendar/timegrid": "^5.9.0",
"@fullcalendar/vue": "^5.9.0",
"axios": "^0.24",
"axios": "^0",
"bootstrap": "^4.6.0",
"bootstrap-notify": "^3.1.3",
"bootstrap-vue": "^2.21.2",
@ -45,7 +45,7 @@
"leaflet": "^1.7.1",
"leaflet.fullscreen": "^2",
"lodash": "^4.17.21",
"luxon": "^1.28.0",
"luxon": "^2",
"material-icons": "^1",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
@ -55,7 +55,7 @@
"roboto-fontface": "^0.10.0",
"sass": "^1.39.2",
"sass-loader": "^12.2",
"store": "^1.3.20",
"store": "^2",
"sweetalert2": "^11",
"vue": "^2.6.14",
"vue-axios": "^3.3.6",
@ -69,7 +69,7 @@
"vuedraggable": "^2.24.1",
"vuelidate": "^0.7.6",
"vuex": "^3.6.2",
"wavesurfer.js": "^5",
"wavesurfer.js": "^6",
"webpack": "^5.52.1",
"webpack-assets-manifest": "^5",
"webpack-cli": "^4.8.0",

View File

@ -6,7 +6,7 @@
import '@fullcalendar/core/vdom';
import FullCalendar from '@fullcalendar/vue';
import allLocales from '@fullcalendar/core/locales-all';
import luxonPlugin from '@fullcalendar/luxon';
import luxon2Plugin from '@fullcalendar/luxon2';
import timeGridPlugin from '@fullcalendar/timegrid';
export default {
@ -21,7 +21,7 @@ export default {
calendarOptions: {
locale: App.locale_short,
locales: allLocales,
plugins: [luxonPlugin, timeGridPlugin],
plugins: [luxon2Plugin, timeGridPlugin],
initialView: 'timeGridWeek',
timeZone: this.stationTimeZone,
themeSystem: 'bootstrap',