reactive-bulma 1.0.0 → 1.2.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 +5 -5
- package/dist/cjs/index.js +2846 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/cjs/types/components/Button/Button.d.ts +6 -0
- package/dist/cjs/types/components/Button/index.d.ts +1 -0
- package/dist/cjs/types/components/index.d.ts +2 -0
- package/dist/cjs/types/index.d.ts +1 -0
- package/dist/esm/index.js +2844 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/types/components/Button/Button.d.ts +6 -0
- package/dist/esm/types/components/Button/index.d.ts +1 -0
- package/dist/esm/types/components/index.d.ts +2 -0
- package/dist/esm/types/index.d.ts +1 -0
- package/dist/index.d.ts +8 -0
- package/package.json +12 -1
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@ Component library based on React, typescript and bulma
|
|
|
3
3
|
|
|
4
4
|
## What do I need?
|
|
5
5
|
Before cloning this repo, I recommend installing the following software:
|
|
6
|
-
- [Node](https://nodejs.org/en/download/) >=
|
|
6
|
+
- [Node](https://nodejs.org/en/download/) >=18 to install packages
|
|
7
7
|
|
|
8
8
|
## Setup
|
|
9
9
|
After cloning the repo, install the node packages in the project's root file.
|
|
@@ -14,7 +14,7 @@ npm install
|
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
## How to run it
|
|
17
|
-
To run it's storybook (until `
|
|
17
|
+
To run it's storybook (until `v1.1.0`, it will have an example button only)
|
|
18
18
|
```sh
|
|
19
19
|
npm start
|
|
20
20
|
```
|
|
@@ -24,9 +24,9 @@ npm run build
|
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
## Find out more
|
|
27
|
-
| [Project Status](https://github.com/users/NicolasOmar/projects/3) |
|
|
28
|
-
| :--- |
|
|
29
|
-
| Project board for project status tracking
|
|
27
|
+
| [Project Status](https://github.com/users/NicolasOmar/projects/3) | [Storybook site](https://my-pets-storybook.netlify.app/) | [Npm Package](https://www.npmjs.com/package/reactive-bulma)
|
|
28
|
+
| :--- | :--- | :--- |
|
|
29
|
+
| Project board for project status tracking | Site dedicated to show and test all the created components | Public package site in npm
|
|
30
30
|
|
|
31
31
|
## License
|
|
32
32
|
**MIT**
|