@fullcalendar/core 7.0.0-rc.3 → 7.0.1
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 +27 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# FullCalendar Core Types
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
📖 For many years, this package was the heart of FullCalendar. It played two roles:
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
1. **The Vanilla JS calendar itself** — if you wrote `import { Calendar } from '@fullcalendar/core'`, this is where it came from.
|
|
6
|
+
2. **The shared core** — the essential peer dependency installed alongside every connector (React, Angular, Vue), which instantiated a Vanilla JS calendar under the hood.
|
|
7
|
+
|
|
8
|
+
**That's no longer how FullCalendar works.** As of v7, the connectors are self-contained and no longer need this package, and the Vanilla JS calendar has moved to its own package. Today `@fullcalendar/core` exists only to share a few small TypeScript type definitions across projects. You generally won't install it directly. If you're moving an existing project forward, see the [**Upgrading from v6** guide](https://fullcalendar.io/docs/upgrading-from-v6).
|
|
9
|
+
|
|
10
|
+
## ➡️ Using the Vanilla JS calendar? It moved.
|
|
11
|
+
|
|
12
|
+
The plain-JavaScript build that used to live here is now the bare [**`fullcalendar`**](https://www.npmjs.com/package/fullcalendar) package:
|
|
13
|
+
|
|
14
|
+
```sh
|
|
15
|
+
npm install fullcalendar
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## 🔌 Using a framework connector? Start here
|
|
19
|
+
|
|
20
|
+
Pick the package for your framework:
|
|
21
|
+
|
|
22
|
+
| Framework | Package |
|
|
23
|
+
| --- | --- |
|
|
24
|
+
| Vanilla JS | [`fullcalendar`](https://www.npmjs.com/package/fullcalendar) |
|
|
25
|
+
| React | [`@fullcalendar/react`](https://www.npmjs.com/package/@fullcalendar/react) |
|
|
26
|
+
| Preact | [`@fullcalendar/preact`](https://www.npmjs.com/package/@fullcalendar/preact) |
|
|
27
|
+
| Vue 3 | [`@fullcalendar/vue3`](https://www.npmjs.com/package/@fullcalendar/vue3) |
|
|
28
|
+
| Angular | [`@fullcalendar/angular`](https://www.npmjs.com/package/@fullcalendar/angular) |
|
|
29
|
+
|
|
30
|
+
For docs, examples, and premium features, visit [fullcalendar.io](https://fullcalendar.io/).
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fullcalendar/core",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.1",
|
|
4
4
|
"title": "FullCalendar Core Types",
|
|
5
5
|
"description": "FullCalendar core types package",
|
|
6
6
|
"peerDependencies": {
|
|
7
|
-
"@full-ui/headless-calendar": "7.0.
|
|
8
|
-
"temporal-polyfill": "^0.
|
|
7
|
+
"@full-ui/headless-calendar": "7.0.1",
|
|
8
|
+
"temporal-polyfill": "^1.0.1"
|
|
9
9
|
},
|
|
10
10
|
"type": "module",
|
|
11
11
|
"keywords": [
|