react-beauty-calendar 0.1.0 → 1.0.0
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 +4 -9
- package/package.json +19 -8
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<p align="center">
|
|
2
2
|
<a href="/">
|
|
3
|
-
<img src="public/logo.png" alt="
|
|
3
|
+
<img src="public/logo.png" alt="RBC logo" width="200" />
|
|
4
4
|
</a>
|
|
5
5
|
</p>
|
|
6
6
|
|
|
@@ -32,18 +32,13 @@ With the need to implement an efficient scheduling system, I decided to create a
|
|
|
32
32
|
- **Open Source**: MIT licensed, free forever
|
|
33
33
|
- Storybook available.
|
|
34
34
|
|
|
35
|
-
|
|
36
|
-
<!-- ## Installation
|
|
37
|
-
Install @RBC/react in your project with your package manager of choice:
|
|
35
|
+
## Installation
|
|
38
36
|
|
|
39
|
-
|
|
40
|
-
npm install @RBC/react
|
|
41
|
-
```
|
|
37
|
+
Install react-beauty-calendar in your project with your package manager of choice:
|
|
42
38
|
|
|
43
39
|
```sh
|
|
44
|
-
|
|
40
|
+
npm i react-beauty-calendar
|
|
45
41
|
```
|
|
46
|
-
-->
|
|
47
42
|
|
|
48
43
|
## Running the App
|
|
49
44
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-beauty-calendar",
|
|
3
|
+
"author": "Diego Kennedy Guimarães Barros",
|
|
4
|
+
"description": "React Library inspired by Google Calendar and Outlook.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/Dikendev/react-beauty-calendar"
|
|
8
|
+
},
|
|
3
9
|
"license": "MIT",
|
|
4
10
|
"private": false,
|
|
5
|
-
"version": "
|
|
11
|
+
"version": "1.0.0",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"react",
|
|
14
|
+
"component",
|
|
15
|
+
"calendar",
|
|
16
|
+
"outlook",
|
|
17
|
+
"google",
|
|
18
|
+
"appointment",
|
|
19
|
+
"booking"
|
|
20
|
+
],
|
|
6
21
|
"type": "module",
|
|
7
22
|
"main": "dist/react-beauty-calendar.js",
|
|
8
23
|
"types": "dist/main.d.ts",
|
|
@@ -14,13 +29,14 @@
|
|
|
14
29
|
],
|
|
15
30
|
"scripts": {
|
|
16
31
|
"dev": "vite",
|
|
17
|
-
"
|
|
32
|
+
"biome": "npx biome ci .",
|
|
18
33
|
"preview": "vite preview",
|
|
19
34
|
"prepare": "husky",
|
|
20
35
|
"build": "tsc -b && vite build",
|
|
21
36
|
"storybook": "storybook dev -p 6006",
|
|
22
37
|
"build-storybook": "storybook build",
|
|
23
|
-
"
|
|
38
|
+
"prepublish": "rm -rf ./dist && npm run build",
|
|
39
|
+
"test": ""
|
|
24
40
|
},
|
|
25
41
|
"dependencies": {
|
|
26
42
|
"@dnd-kit/core": "^6.3.1",
|
|
@@ -89,11 +105,6 @@
|
|
|
89
105
|
"vite": "^6.2.0",
|
|
90
106
|
"vitest": "^3.0.9"
|
|
91
107
|
},
|
|
92
|
-
"peerDependencies": {
|
|
93
|
-
"react": ">=17.0.2",
|
|
94
|
-
"react-dom": ">=17.0.2",
|
|
95
|
-
"prop-types": ">=15.7.2"
|
|
96
|
-
},
|
|
97
108
|
"eslintConfig": {
|
|
98
109
|
"extends": [
|
|
99
110
|
"plugin:storybook/recommended"
|