fullcalendar
Advanced tools
Comparing version 6.1.0 to 6.1.1
41
index.js
@@ -1,33 +0,10 @@ | ||
'use strict'; | ||
import { globalPlugins } from '@fullcalendar/core'; | ||
export * from '@fullcalendar/core'; | ||
import interactionPlugin__default from '@fullcalendar/interaction'; | ||
export * from '@fullcalendar/interaction'; | ||
import dayGridPlugin from '@fullcalendar/daygrid'; | ||
import timeGridPlugin from '@fullcalendar/timegrid'; | ||
import listPlugin from '@fullcalendar/list'; | ||
import multiMonthPlugin from '@fullcalendar/multimonth'; | ||
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'); | ||
var multiMonthPlugin = require('@fullcalendar/multimonth'); | ||
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); | ||
var multiMonthPlugin__default = /*#__PURE__*/_interopDefaultLegacy(multiMonthPlugin); | ||
core.globalPlugins.push(interactionPlugin__default["default"], dayGridPlugin__default["default"], timeGridPlugin__default["default"], listPlugin__default["default"], multiMonthPlugin__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]; } | ||
}); | ||
}); | ||
globalPlugins.push(interactionPlugin__default, dayGridPlugin, timeGridPlugin, listPlugin, multiMonthPlugin); |
{ | ||
"name": "fullcalendar", | ||
"version": "6.1.0", | ||
"version": "6.1.1", | ||
"title": "FullCalendar Standard Bundle", | ||
@@ -8,8 +8,8 @@ "description": "Easily render a full-sized drag & drop calendar with a combination of standard plugins", | ||
"dependencies": { | ||
"@fullcalendar/core": "~6.1.0", | ||
"@fullcalendar/daygrid": "~6.1.0", | ||
"@fullcalendar/interaction": "~6.1.0", | ||
"@fullcalendar/list": "~6.1.0", | ||
"@fullcalendar/multimonth": "~6.1.0", | ||
"@fullcalendar/timegrid": "~6.1.0" | ||
"@fullcalendar/core": "~6.1.1", | ||
"@fullcalendar/daygrid": "~6.1.1", | ||
"@fullcalendar/interaction": "~6.1.1", | ||
"@fullcalendar/list": "~6.1.1", | ||
"@fullcalendar/multimonth": "~6.1.1", | ||
"@fullcalendar/timegrid": "~6.1.1" | ||
}, | ||
@@ -35,6 +35,6 @@ "type": "module", | ||
}, | ||
"copyright": "2022 Adam Shaw", | ||
"copyright": "2023 Adam Shaw", | ||
"types": "./index.d.ts", | ||
"main": "./index.js", | ||
"module": "./index.esm.js", | ||
"main": "./index.cjs", | ||
"module": "./index.js", | ||
"unpkg": "./index.global.min.js", | ||
@@ -44,8 +44,9 @@ "jsdelivr": "./index.global.min.js", | ||
"./package.json": "./package.json", | ||
"./index.cjs": "./index.cjs", | ||
".": { | ||
"types": "./index.d.ts", | ||
"require": "./index.js", | ||
"import": "./index.esm.js" | ||
"require": "./index.cjs", | ||
"import": "./index.js" | ||
} | ||
} | ||
} |
@@ -13,2 +13,3 @@ | ||
- [@fullcalendar/list](https://github.com/fullcalendar/fullcalendar/tree/main/packages/list) | ||
- [@fullcalendar/multimonth](https://github.com/fullcalendar/fullcalendar/tree/main/packages/multimonth) | ||
@@ -15,0 +16,0 @@ ## Usage with CDN or ZIP archive |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
972340
59