@pautena/react-design-system 0.4.0 → 0.4.2

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/LICENCE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014 Call-Em-All
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -2,10 +2,44 @@
2
2
 
3
3
  **WORK IN PROGRESS**
4
4
 
5
- ![WIP](https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Ftse2.mm.bing.net%2Fth%3Fid%3DOIP.V0ck8qwYE6GRienn9nKiFAAAAA%26pid%3DApi&f=1)
5
+ <img src="src/stories/assets/work-in-progress.jpg" width="200" height="180"/>
6
6
 
7
7
  My custom design system on top of [MUI](https://mui.com/material-ui/), with a bunch of components to be able to fast prototype new pages and products
8
8
 
9
- ## Storybook
9
+ ## Installation
10
10
 
11
- Use Storybook to navigate and interact with the available components. Available [here](https://pautena.com/react-design-system)
11
+ This project is available as an [npm package](https://www.npmjs.com/package/@pautena/react-design-system).
12
+
13
+ npm:
14
+
15
+ ```bash
16
+ npm install @pautena/react-design-system @emotion/react @emotion/styled @mui/icons-material @mui/lab @mui/material @mui/x-data-grid react-dom react-router-dom
17
+ ```
18
+
19
+ yarn:
20
+
21
+ ```bash
22
+ npm install @pautena/react-design-system @emotion/react @emotion/styled @mui/icons-material @mui/lab @mui/material @mui/x-data-grid react-dom react-router-dom
23
+ ```
24
+
25
+ Now you are going to be able to import the components and use it in your React project.
26
+
27
+ ```javascript
28
+ import { AppBarWithDrawerLayout } from "@pautena/react-design-system";
29
+ ```
30
+
31
+ ## Documentation
32
+
33
+ If you want to know more about the components and the layouts availables in this project check our [documentation](https://pautena.com/react-design-system)
34
+
35
+ ## Contributing
36
+
37
+ Read the [contribution guide](/CONTRIBUTING.md) to learn about our development process, how to propose bug fixes and improvements, and how to build and test your changes.
38
+
39
+ ## Issues and features
40
+
41
+ If you found a bug or you have an idea for a new component, feel free to [open an issue](https://github.com/pautena/react-design-system/issues/new) explaining the bug or the new component that you would like to have.
42
+
43
+ ## Licence
44
+
45
+ This project is licensed under the terms of the [MIT license](/LICENSE).