react-beauty-calendar 1.0.2 → 1.0.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/dist/build/assets/react-beauty-calendar.css +1 -1
- package/dist/build/main.cjs.js +55 -70
- package/dist/build/main.es.js +8778 -9106
- package/package.json +17 -10
package/package.json
CHANGED
|
@@ -4,11 +4,14 @@
|
|
|
4
4
|
"description": "React Library inspired by Google Calendar and Outlook.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "git+https://github.com/Dikendev/react-beauty-calendar"
|
|
7
|
+
"url": "git+https://github.com/Dikendev/react-beauty-calendar.git"
|
|
8
|
+
},
|
|
9
|
+
"bugs": {
|
|
10
|
+
"url": "https://github.com/Dikendev/react-beauty-calendar/issues"
|
|
8
11
|
},
|
|
9
12
|
"license": "MIT",
|
|
10
13
|
"private": false,
|
|
11
|
-
"version": "1.0.
|
|
14
|
+
"version": "1.0.4",
|
|
12
15
|
"keywords": [
|
|
13
16
|
"react",
|
|
14
17
|
"component",
|
|
@@ -19,10 +22,8 @@
|
|
|
19
22
|
"booking"
|
|
20
23
|
],
|
|
21
24
|
"type": "module",
|
|
22
|
-
"main": "dist/
|
|
23
|
-
"
|
|
24
|
-
"exports": "./dist/main.js",
|
|
25
|
-
"module": "./dist/main.js",
|
|
25
|
+
"main": "dist/build/main.cjs.js",
|
|
26
|
+
"module": "dist/build/main.es.js",
|
|
26
27
|
"files": [
|
|
27
28
|
"dist",
|
|
28
29
|
"README.md"
|
|
@@ -60,8 +61,6 @@
|
|
|
60
61
|
"date-fns": "^4.1.0",
|
|
61
62
|
"dayjs": "^1.11.13",
|
|
62
63
|
"lucide-react": "^0.483.0",
|
|
63
|
-
"react": "^19.0.0",
|
|
64
|
-
"react-dom": "^19.0.0",
|
|
65
64
|
"react-resizable": "^3.0.5",
|
|
66
65
|
"react-router": "^7.4.0",
|
|
67
66
|
"tailwind-merge": "^3.0.2",
|
|
@@ -92,6 +91,7 @@
|
|
|
92
91
|
"@vitejs/plugin-react": "^4.3.4",
|
|
93
92
|
"@vitest/browser": "^3.0.9",
|
|
94
93
|
"@vitest/coverage-v8": "^3.0.9",
|
|
94
|
+
"chromatic": "^11.27.0",
|
|
95
95
|
"eslint": "^9.21.0",
|
|
96
96
|
"eslint-plugin-react-hooks": "^5.1.0",
|
|
97
97
|
"eslint-plugin-react-refresh": "^0.4.19",
|
|
@@ -103,7 +103,10 @@
|
|
|
103
103
|
"typescript": "~5.7.2",
|
|
104
104
|
"typescript-eslint": "^8.24.1",
|
|
105
105
|
"vite": "^6.2.0",
|
|
106
|
-
"
|
|
106
|
+
"vite-plugin-dts": "^4.5.3",
|
|
107
|
+
"vitest": "^3.0.9",
|
|
108
|
+
"react": "^19.0.0",
|
|
109
|
+
"react-dom": "^19.0.0"
|
|
107
110
|
},
|
|
108
111
|
"eslintConfig": {
|
|
109
112
|
"extends": [
|
|
@@ -112,5 +115,9 @@
|
|
|
112
115
|
},
|
|
113
116
|
"sideEffects": [
|
|
114
117
|
"**/*.css"
|
|
115
|
-
]
|
|
118
|
+
],
|
|
119
|
+
"peerDependencies": {
|
|
120
|
+
"react": ">=18.0.0 <20.0.0",
|
|
121
|
+
"react-dom": ">=18.0.0 <20.0.0"
|
|
122
|
+
}
|
|
116
123
|
}
|