@fullcalendar/react
Advanced tools
Comparing version 6.0.0-beta.1 to 6.0.0-beta.2
MIT License | ||
Copyright (c) 2020 Adam Shaw | ||
Copyright (c) 2022 Adam Shaw | ||
@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining |
{ | ||
"name": "@fullcalendar/react", | ||
"version": "6.0.0-beta.1", | ||
"version": "6.0.0-beta.2", | ||
"title": "FullCalendar React Component", | ||
"description": "An official FullCalendar component for React", | ||
"description": "The official FullCalendar component for React", | ||
"keywords": [ | ||
@@ -17,32 +17,4 @@ "react", | ||
}, | ||
"main": "dist/main.cjs.js", | ||
"module": "dist/main.js", | ||
"types": "dist/main.d.ts", | ||
"files": [ | ||
"dist", | ||
"src" | ||
], | ||
"sideEffects": true, | ||
"scripts": { | ||
"build": "npm run tsc && npm run rollup:cjs", | ||
"watch": "npm run tsc && concurrently 'npm:tsc:watch' 'npm:rollup:cjs:watch'", | ||
"clean": "rm -rf dist tmp", | ||
"tsc": "tsc -p tsconfig.json", | ||
"tsc:watch": "tsc -p tsconfig.json --watch", | ||
"rollup:tests": "rollup -c rollup.tests.js", | ||
"rollup:tests:watch": "rollup -c rollup.tests.js --watch", | ||
"rollup:cjs": "rollup -c rollup.cjs.js", | ||
"rollup:cjs:watch": "rollup -c rollup.cjs.js --watch", | ||
"karma": "karma start karma.config.js --browsers ChromeHeadless --single-run --no-auto-watch", | ||
"karma:watch": "karma start karma.config.js", | ||
"test": "npm run rollup:tests && npm run karma", | ||
"test:watch": "npm run rollup:tests && concurrently 'npm:rollup:tests:watch' 'npm:karma:watch'", | ||
"lint": "eslint -c eslint.config.js tests --ext .js,.jsx --no-eslintrc", | ||
"ci": "./scripts/ci.sh" | ||
}, | ||
"dependencies": { | ||
"@fullcalendar/common": "6.0.0-beta.1", | ||
"tslib": "^2.1.0" | ||
}, | ||
"peerDependencies": { | ||
"@fullcalendar/core": "6.0.0-beta.2", | ||
"react": "^16.7.0 || ^17 || ^18", | ||
@@ -55,23 +27,18 @@ "react-dom": "^16.7.0 || ^17 || ^18" | ||
"@babel/preset-react": "^7.9.4", | ||
"@fullcalendar/daygrid": "6.0.0-beta.1", | ||
"@fullcalendar/core": "6.0.0-beta.2", | ||
"@fullcalendar/daygrid": "6.0.0-beta.2", | ||
"@rollup/plugin-babel": "^5.0.0", | ||
"@rollup/plugin-commonjs": "^12.0.0", | ||
"@rollup/plugin-json": "^4.0.3", | ||
"@rollup/plugin-node-resolve": "^7.1.3", | ||
"@rollup/plugin-replace": "^2.3.2", | ||
"@testing-library/react": "^13.3.0", | ||
"@rollup/plugin-node-resolve": "^14.0.1", | ||
"@rollup/plugin-replace": "^5.0.1", | ||
"@testing-library/react": "^13.4.0", | ||
"@types/react": "^16.9.55", | ||
"@types/react-dom": "^16.9.9", | ||
"@typescript-eslint/eslint-plugin": "^3.1.0", | ||
"@typescript-eslint/parser": "^3.1.0", | ||
"@typescript-eslint/eslint-plugin": "^5.40.0", | ||
"@typescript-eslint/parser": "^5.40.0", | ||
"babel-eslint": "^10.1.0", | ||
"concurrently": "^5.3.0", | ||
"eslint": "^7.2.0", | ||
"eslint-config-standard": "^14.1.1", | ||
"eslint-import-resolver-node": "^0.3.4", | ||
"eslint-plugin-import": "^2.21.1", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-promise": "^4.2.1", | ||
"eslint-plugin-react": "^7.20.0", | ||
"eslint-plugin-standard": "^4.0.1", | ||
"eslint": "^8.25.0", | ||
"eslint-plugin-react": "^7.31.10", | ||
"karma": "^6.3.2", | ||
@@ -82,9 +49,39 @@ "karma-chrome-launcher": "^3.1.0", | ||
"karma-spec-reporter": "^0.0.32", | ||
"react": "^18.0.0", | ||
"react-dom": "^18.0.0", | ||
"rollup": "^1.31.0", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"rollup": "^2.79.0", | ||
"rollup-plugin-postcss": "^2.0.3", | ||
"rollup-plugin-sourcemaps": "^0.6.3", | ||
"typescript": "^4.0.5" | ||
}, | ||
"type": "module", | ||
"main": "dist/index.cjs", | ||
"module": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"exports": { | ||
"./package.json": "./package.json", | ||
".": { | ||
"require": "./dist/index.cjs", | ||
"import": "./dist/index.js", | ||
"types": "./dist/index.d.ts" | ||
} | ||
}, | ||
"files": [ | ||
"dist", | ||
"src" | ||
], | ||
"scripts": { | ||
"lint": "eslint .", | ||
"build": "pnpm run tsc && pnpm run rollup && pnpm run meta", | ||
"dev": "pnpm run tsc && concurrently 'npm:tsc:dev' 'npm:rollup:dev'", | ||
"test": "karma start karma.config.cjs --browsers ChromeHeadless --single-run --no-auto-watch", | ||
"test:dev": "karma start karma.config.cjs", | ||
"clean": "rm -rf dist tests/dist", | ||
"ci": "pnpm run clean && pnpm run lint && pnpm run build && pnpm run test", | ||
"tsc": "tsc -p .", | ||
"tsc:dev": "tsc -p . --watch --preserveWatchOutput --pretty", | ||
"rollup": "rollup -c", | ||
"rollup:dev": "rollup -c --watch", | ||
"meta": "mkdir -p dist && cp README.md LICENSE.txt dist" | ||
} | ||
} |
# FullCalendar React Component [![Build Status](https://travis-ci.com/fullcalendar/fullcalendar-react.svg?branch=master)](https://travis-ci.com/fullcalendar/fullcalendar-react) | ||
An official FullCalendar component for React. | ||
This project provides an official React component for FullCalendar, with all the same setting. | ||
This is more than a mere "connector". It tells the core FullCalendar package to begin rendering with **React** virtual DOM nodes as opposed to the [Preact](https://preactjs.com/) nodes it normally uses, transforming FullCalendar into a "real" React component. You can learn a bit more [from this blog post](https://fullcalendar.io/blog/2020/05/react-ts-v5-beta) (more info to come). | ||
- [FullCalendar React Component Docs](https://fullcalendar.io/docs/react) | ||
- [Example Project](https://github.com/fullcalendar/fullcalendar-example-projects/tree/master/react) | ||
- [Example Project with TypeScript](https://github.com/fullcalendar/fullcalendar-example-projects/tree/master/react-typescript) | ||
- [Contributor Guide](CONTRIBUTORS.md) | ||
Installation: | ||
``` | ||
npm install @fullcalendar/core @fullcalendar/react | ||
``` |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
3
30
15
Yes
14836
10
203
1
+ Added@fullcalendar/core@6.0.0-beta.2(transitive)
+ Addedpreact@10.25.4(transitive)
- Removed@fullcalendar/common@6.0.0-beta.1
- Removedtslib@^2.1.0
- Removed@fullcalendar/common@6.0.0-beta.1(transitive)
- Removedtslib@2.8.1(transitive)