@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 CHANGED
@@ -1,18 +1,18 @@
1
1
 
2
2
  For complete licensing information, visit:
3
- http://fullcalendar.io/scheduler/license
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, meant for commercial use)
10
- http://fullcalendar.io/scheduler/license-details
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
- (meant for trial and non-commercial use)
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
- (meant for open-source projects)
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;
package/index.d.ts ADDED
@@ -0,0 +1,7 @@
1
+ import { PluginDef } from '@fullcalendar/core';
2
+ import '@fullcalendar/premium-common';
3
+
4
+ declare const _default: PluginDef;
5
+ //# sourceMappingURL=index.d.ts.map
6
+
7
+ export { _default as default };