@fullcalendar/list 6.0.0-beta.2 → 6.0.0-beta.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/index.d.ts CHANGED
@@ -19,7 +19,7 @@ declare module '@fullcalendar/core/internal' {
19
19
  interface BaseOptionRefiners extends ExtraOptionRefiners {
20
20
  }
21
21
  }
22
- //# sourceMappingURL=augment.d.ts.map
22
+ //# sourceMappingURL=ambient.d.ts.map
23
23
 
24
24
  declare const _default: PluginDef;
25
25
  //# sourceMappingURL=index.d.ts.map
package/index.global.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- FullCalendar List View Plugin v6.0.0-beta.2
2
+ FullCalendar List View Plugin v6.0.0-beta.3
3
3
  Docs & License: https://fullcalendar.io/
4
4
  (c) 2022 Adam Shaw
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- FullCalendar List View Plugin v6.0.0-beta.2
2
+ FullCalendar List View Plugin v6.0.0-beta.3
3
3
  Docs & License: https://fullcalendar.io/
4
4
  (c) 2022 Adam Shaw
5
5
  */
@@ -1,5 +1,5 @@
1
- import { ViewApi } from '@fullcalendar/core';
2
- import { MountArg, DateComponent, ViewProps, Seg, DateMarker, EventStore, EventUiHash, DateRange, EventRenderRange } from '@fullcalendar/core/internal';
1
+ import { ViewApi, EventRenderRange } from '@fullcalendar/core';
2
+ import { MountArg, DateComponent, ViewProps, Seg, DateMarker, EventStore, EventUiHash, DateRange } from '@fullcalendar/core/internal';
3
3
  import { createElement } from '@fullcalendar/core/preact';
4
4
 
5
5
  interface NoEventsContentArg {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fullcalendar/list",
3
- "version": "6.0.0-beta.2",
3
+ "version": "6.0.0-beta.3",
4
4
  "keywords": [
5
5
  "calendar",
6
6
  "event",
@@ -26,7 +26,7 @@
26
26
  "title": "FullCalendar List View Plugin",
27
27
  "description": "View your events as a bulleted list",
28
28
  "peerDependencies": {
29
- "@fullcalendar/core": "6.0.0-beta.2"
29
+ "@fullcalendar/core": "6.0.0-beta.3"
30
30
  },
31
31
  "main": "./index.cjs",
32
32
  "module": "./index.js",
@@ -38,17 +38,17 @@
38
38
  "./index.cjs": "./index.cjs",
39
39
  "./index.js": "./index.js",
40
40
  ".": {
41
- "require": "./index.cjs",
42
- "import": "./index.js",
43
41
  "types": "./index.d.ts",
44
- "default": "./index.global.js"
42
+ "require": "./index.cjs",
43
+ "import": "./index.js"
45
44
  },
46
45
  "./internal.cjs": "./internal.cjs",
47
46
  "./internal.js": "./internal.js",
48
47
  "./internal": {
48
+ "types": "./internal.d.ts",
49
49
  "require": "./internal.cjs",
50
- "import": "./internal.js",
51
- "types": "./internal.d.ts"
50
+ "import": "./internal.js"
52
51
  }
53
- }
52
+ },
53
+ "sideEffects": false
54
54
  }