@fullcalendar/list 6.0.0-beta.2 → 6.0.0-beta.4
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 +1 -1
- package/index.global.js +1 -1
- package/index.global.min.js +1 -1
- package/internal-common.d.ts +2 -2
- package/package.json +9 -9
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=
|
|
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
package/index.global.min.js
CHANGED
package/internal-common.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ViewApi } from '@fullcalendar/core';
|
|
2
|
-
import { MountArg, DateComponent, ViewProps, Seg, DateMarker, EventStore, EventUiHash, DateRange
|
|
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.
|
|
3
|
+
"version": "6.0.0-beta.4",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"calendar",
|
|
6
6
|
"event",
|
|
@@ -26,29 +26,29 @@
|
|
|
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.
|
|
29
|
+
"@fullcalendar/core": "6.0.0-beta.4"
|
|
30
30
|
},
|
|
31
31
|
"main": "./index.cjs",
|
|
32
32
|
"module": "./index.js",
|
|
33
33
|
"types": "./index.d.ts",
|
|
34
34
|
"unpkg": "./index.global.min.js",
|
|
35
|
-
"
|
|
35
|
+
"jsdelivr": "./index.global.min.js",
|
|
36
36
|
"exports": {
|
|
37
37
|
"./package.json": "./package.json",
|
|
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
|
-
"
|
|
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
|
}
|