@fullcalendar/scrollgrid 5.11.3 → 6.0.0-beta.2
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/LICENSE.md +5 -5
- package/index.cjs +22 -0
- package/index.d.ts +7 -0
- package/index.global.js +860 -0
- package/index.global.min.js +6 -0
- package/index.js +14 -0
- package/internal.cjs +834 -0
- package/{main.d.ts → internal.d.ts} +4 -13
- package/internal.js +830 -0
- package/package.json +42 -18
- package/main.cjs.js +0 -983
- package/main.global.js +0 -1038
- package/main.global.min.js +0 -6
- package/main.js +0 -975
- package/main.js.map +0 -1
package/LICENSE.md
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
|
|
2
2
|
For complete licensing information, visit:
|
|
3
|
-
|
|
3
|
+
https://fullcalendar.io/scheduler/license
|
|
4
4
|
|
|
5
5
|
FullCalendar Scheduler is tri-licensed, meaning you must choose
|
|
6
6
|
one of three licenses to use. Here is a summary of those licenses:
|
|
7
7
|
|
|
8
8
|
- Commercial License
|
|
9
|
-
(a paid license,
|
|
10
|
-
|
|
9
|
+
(a paid license, intended for commercial use)
|
|
10
|
+
https://fullcalendar.io/scheduler/license-details
|
|
11
11
|
|
|
12
12
|
- Creative Commons Non-Commercial No-Derivatives
|
|
13
|
-
(
|
|
13
|
+
(intended for trial and non-commercial use)
|
|
14
14
|
https://creativecommons.org/licenses/by-nc-nd/4.0/
|
|
15
15
|
|
|
16
16
|
- GPLv3 License
|
|
17
|
-
(
|
|
17
|
+
(intended for open-source projects)
|
|
18
18
|
http://www.gnu.org/licenses/gpl-3.0.en.html
|
package/index.cjs
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var index_cjs = require('@fullcalendar/core/index.cjs');
|
|
6
|
+
var premiumCommonPlugin = require('@fullcalendar/premium-common/index.cjs');
|
|
7
|
+
var internalCommon = require('./internal.cjs');
|
|
8
|
+
require('@fullcalendar/core/internal.cjs');
|
|
9
|
+
require('@fullcalendar/core/preact.cjs');
|
|
10
|
+
|
|
11
|
+
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
12
|
+
|
|
13
|
+
var premiumCommonPlugin__default = /*#__PURE__*/_interopDefaultLegacy(premiumCommonPlugin);
|
|
14
|
+
|
|
15
|
+
var index = index_cjs.createPlugin({
|
|
16
|
+
name: '@fullcalendar/scrollgrid',
|
|
17
|
+
premiumReleaseDate: '2022-11-22',
|
|
18
|
+
deps: [premiumCommonPlugin__default["default"]],
|
|
19
|
+
scrollGridImpl: internalCommon.ScrollGrid,
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
exports["default"] = index;
|