react-calendar-datetime 2.0.4 → 2.0.6
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 +8 -4
- package/package.json +5 -5
- /package/dist/{index.js → index.mjs} +0 -0
package/README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
[](https://www.npmjs.com/package/react-calendar-datetime)
|
|
2
|
+
[](https://react.dev/)
|
|
2
3
|
[](https://www.npmjs.com/package/react-calendar-datetime)
|
|
3
4
|
[](https://bundlephobia.com/package/react-calendar-datetime)
|
|
4
5
|
[](https://github.com/kirilinsky/react-calendar-datetime/blob/main/LICENSE)
|
|
@@ -7,13 +8,16 @@
|
|
|
7
8
|
|
|
8
9
|
---
|
|
9
10
|
|
|
10
|
-
📅 Date and **
|
|
11
|
+
📅 Modern **Date** and **Time** picker with built-in presets and customizable themes.
|
|
12
|
+
|
|
13
|
+
[**Live Demo**](https://react-calendar-datetime.vercel.app/?story=components--calendar--base)
|
|
11
14
|
|
|
12
|
-
[Demo](https://react-calendar-datetime.vercel.app/?story=components--calendar--base)
|
|
13
15
|
[](https://react-calendar-datetime.vercel.app/?story=components--calendar--base)
|
|
14
16
|
|
|
15
|
-
<img src="https://i.ibb.co/rGGX6sSj/image.png" alt="
|
|
16
|
-
|
|
17
|
+
<img src="https://i.ibb.co/rGGX6sSj/image.png" alt="Time Picker" width="45%"/>
|
|
18
|
+
# Time picker
|
|
19
|
+
<img src="https://i.ibb.co/DPZWq2Tn/image.png" alt="Dark Theme" width="45%" >
|
|
20
|
+
# Themes
|
|
17
21
|
|
|
18
22
|
---
|
|
19
23
|
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-calendar-datetime",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6",
|
|
4
4
|
"description": "React date and time calendar component (with presets and locale)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
|
-
"module": "./dist/index.
|
|
7
|
+
"module": "./dist/index.mjs",
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
11
|
-
"import": "./dist/index.
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
12
|
"require": "./dist/index.cjs"
|
|
13
13
|
},
|
|
14
14
|
"./style.css": "./dist/index.css"
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"clean": "rm -rf dist"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"react": "^19.
|
|
37
|
-
"react-dom": "^19.
|
|
36
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
37
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@ladle/react": "^5.1.1",
|
|
File without changes
|