fullcalendar 6.1.0 → 6.1.3
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.
- package/README.md +1 -0
- package/index.cjs +33 -0
- package/index.global.js +4886 -4877
- package/index.global.min.js +3 -3
- package/index.js +10 -33
- package/package.json +13 -12
- package/index.esm.js +0 -10
package/README.md
CHANGED
|
@@ -10,6 +10,7 @@ This `fullcalendar` package bundles these plugins:
|
|
|
10
10
|
- [@fullcalendar/daygrid](https://github.com/fullcalendar/fullcalendar/tree/main/packages/daygrid)
|
|
11
11
|
- [@fullcalendar/timegrid](https://github.com/fullcalendar/fullcalendar/tree/main/packages/timegrid)
|
|
12
12
|
- [@fullcalendar/list](https://github.com/fullcalendar/fullcalendar/tree/main/packages/list)
|
|
13
|
+
- [@fullcalendar/multimonth](https://github.com/fullcalendar/fullcalendar/tree/main/packages/multimonth)
|
|
13
14
|
|
|
14
15
|
## Usage with CDN or ZIP archive
|
|
15
16
|
|
package/index.cjs
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var index_cjs = require('@fullcalendar/core/index.cjs');
|
|
6
|
+
var interactionPlugin = require('@fullcalendar/interaction/index.cjs');
|
|
7
|
+
var dayGridPlugin = require('@fullcalendar/daygrid/index.cjs');
|
|
8
|
+
var timeGridPlugin = require('@fullcalendar/timegrid/index.cjs');
|
|
9
|
+
var listPlugin = require('@fullcalendar/list/index.cjs');
|
|
10
|
+
var multiMonthPlugin = require('@fullcalendar/multimonth/index.cjs');
|
|
11
|
+
|
|
12
|
+
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
13
|
+
|
|
14
|
+
var interactionPlugin__default = /*#__PURE__*/_interopDefaultLegacy(interactionPlugin);
|
|
15
|
+
var dayGridPlugin__default = /*#__PURE__*/_interopDefaultLegacy(dayGridPlugin);
|
|
16
|
+
var timeGridPlugin__default = /*#__PURE__*/_interopDefaultLegacy(timeGridPlugin);
|
|
17
|
+
var listPlugin__default = /*#__PURE__*/_interopDefaultLegacy(listPlugin);
|
|
18
|
+
var multiMonthPlugin__default = /*#__PURE__*/_interopDefaultLegacy(multiMonthPlugin);
|
|
19
|
+
|
|
20
|
+
index_cjs.globalPlugins.push(interactionPlugin__default["default"], dayGridPlugin__default["default"], timeGridPlugin__default["default"], listPlugin__default["default"], multiMonthPlugin__default["default"]);
|
|
21
|
+
|
|
22
|
+
Object.keys(index_cjs).forEach(function (k) {
|
|
23
|
+
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
24
|
+
enumerable: true,
|
|
25
|
+
get: function () { return index_cjs[k]; }
|
|
26
|
+
});
|
|
27
|
+
});
|
|
28
|
+
Object.keys(interactionPlugin).forEach(function (k) {
|
|
29
|
+
if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, {
|
|
30
|
+
enumerable: true,
|
|
31
|
+
get: function () { return interactionPlugin[k]; }
|
|
32
|
+
});
|
|
33
|
+
});
|