Bump Fullcalendar from 6.1.20 to 7.0.0 amd convert existing code to comply with 7.0, also make calendar more printable

This commit is contained in:
johnnyq
2026-06-24 14:22:56 -04:00
parent bd310d1e5d
commit ceec38d3f1
230 changed files with 28224 additions and 36482 deletions

View File

@@ -1,35 +0,0 @@
/*!
FullCalendar Moment Timezone Plugin v6.1.20
Docs & License: https://fullcalendar.io/docs/moment-timezone-plugin
(c) 2024 Adam Shaw
*/
FullCalendar.MomentTimezone = (function (exports, core, moment, internal) {
'use strict';
function _interopDefault (e) { return e && e.__esModule ? e : { 'default': e }; }
var moment__default = /*#__PURE__*/_interopDefault(moment);
class MomentNamedTimeZone extends internal.NamedTimeZoneImpl {
offsetForArray(a) {
return moment__default["default"].tz(a, this.timeZoneName).utcOffset();
}
timestampToArray(ms) {
return moment__default["default"].tz(ms, this.timeZoneName).toArray();
}
}
var plugin = core.createPlugin({
name: '@fullcalendar/moment-timezone',
namedTimeZonedImpl: MomentNamedTimeZone,
});
core.globalPlugins.push(plugin);
exports["default"] = plugin;
Object.defineProperty(exports, '__esModule', { value: true });
return exports;
})({}, FullCalendar, moment, FullCalendar.Internal);