fullcalendar
Advanced tools
Comparing version 6.0.2 to 6.0.3
39
index.js
@@ -1,10 +0,31 @@ | ||
import { globalPlugins } from '@fullcalendar/core/index.js'; | ||
export * from '@fullcalendar/core/index.js'; | ||
import interactionPlugin__default from '@fullcalendar/interaction/index.js'; | ||
export * from '@fullcalendar/interaction/index.js'; | ||
import dayGridPlugin from '@fullcalendar/daygrid/index.js'; | ||
import timeGridPlugin from '@fullcalendar/timegrid/index.js'; | ||
import listPlugin from '@fullcalendar/list/index.js'; | ||
'use strict'; | ||
globalPlugins.push(interactionPlugin__default, dayGridPlugin, timeGridPlugin, listPlugin); | ||
//# sourceMappingURL=index.js.map | ||
Object.defineProperty(exports, '__esModule', { value: true }); | ||
var core = require('@fullcalendar/core'); | ||
var interactionPlugin = require('@fullcalendar/interaction'); | ||
var dayGridPlugin = require('@fullcalendar/daygrid'); | ||
var timeGridPlugin = require('@fullcalendar/timegrid'); | ||
var listPlugin = require('@fullcalendar/list'); | ||
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; } | ||
var interactionPlugin__default = /*#__PURE__*/_interopDefaultLegacy(interactionPlugin); | ||
var dayGridPlugin__default = /*#__PURE__*/_interopDefaultLegacy(dayGridPlugin); | ||
var timeGridPlugin__default = /*#__PURE__*/_interopDefaultLegacy(timeGridPlugin); | ||
var listPlugin__default = /*#__PURE__*/_interopDefaultLegacy(listPlugin); | ||
core.globalPlugins.push(interactionPlugin__default["default"], dayGridPlugin__default["default"], timeGridPlugin__default["default"], listPlugin__default["default"]); | ||
Object.keys(core).forEach(function (k) { | ||
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, { | ||
enumerable: true, | ||
get: function () { return core[k]; } | ||
}); | ||
}); | ||
Object.keys(interactionPlugin).forEach(function (k) { | ||
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, { | ||
enumerable: true, | ||
get: function () { return interactionPlugin[k]; } | ||
}); | ||
}); |
{ | ||
"name": "fullcalendar", | ||
"version": "6.0.2", | ||
"version": "6.0.3", | ||
"title": "FullCalendar Standard Bundle", | ||
@@ -8,7 +8,7 @@ "description": "Easily render a full-sized drag & drop calendar with a combination of standard plugins", | ||
"dependencies": { | ||
"@fullcalendar/core": "~6.0.2", | ||
"@fullcalendar/daygrid": "~6.0.2", | ||
"@fullcalendar/interaction": "~6.0.2", | ||
"@fullcalendar/list": "~6.0.2", | ||
"@fullcalendar/timegrid": "~6.0.2" | ||
"@fullcalendar/core": "~6.0.3", | ||
"@fullcalendar/daygrid": "~6.0.3", | ||
"@fullcalendar/interaction": "~6.0.3", | ||
"@fullcalendar/list": "~6.0.3", | ||
"@fullcalendar/timegrid": "~6.0.3" | ||
}, | ||
@@ -35,5 +35,5 @@ "type": "module", | ||
"copyright": "2022 Adam Shaw", | ||
"main": "./index.cjs", | ||
"module": "./index.js", | ||
"types": "./index.d.ts", | ||
"main": "./index.js", | ||
"module": "./index.esm.js", | ||
"unpkg": "./index.global.min.js", | ||
@@ -43,10 +43,8 @@ "jsdelivr": "./index.global.min.js", | ||
"./package.json": "./package.json", | ||
"./index.cjs": "./index.cjs", | ||
"./index.js": "./index.js", | ||
".": { | ||
"types": "./index.d.ts", | ||
"require": "./index.cjs", | ||
"import": "./index.js" | ||
"require": "./index.js", | ||
"import": "./index.esm.js" | ||
} | ||
} | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
14113
934274
8
Updated@fullcalendar/core@~6.0.3
Updated@fullcalendar/daygrid@~6.0.3
Updated@fullcalendar/list@~6.0.3