impact-ui 3.0.27-beta → 3.1.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 +13 -24
- package/dist/index.js +17 -1019
- package/dist/index.js.map +1 -1
- package/package.json +17 -9
package/README.md
CHANGED
|
@@ -7,39 +7,28 @@
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install
|
|
10
|
+
npm install impact-ui --save
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
## Start, Build and Publish
|
|
14
|
-
|
|
15
|
-
`npm run start // Start docs`
|
|
16
|
-
|
|
17
|
-
`npm run build:lib // Build lib`
|
|
18
|
-
|
|
19
|
-
```
|
|
20
|
-
// Upgrade versin in package.json
|
|
21
|
-
npm login
|
|
22
|
-
npm publish
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
## Generate component
|
|
26
|
-
|
|
27
|
-
`npm run generate-component -- <component-name>`
|
|
28
|
-
|
|
29
13
|
## Usage
|
|
30
14
|
|
|
31
15
|
```jsx
|
|
32
|
-
import React
|
|
33
|
-
|
|
34
|
-
import MyComponent from "impact-ui";
|
|
16
|
+
import React from 'react'
|
|
17
|
+
import { MyComponent } from 'impact-ui'
|
|
35
18
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
return <MyComponent />;
|
|
39
|
-
}
|
|
19
|
+
const Example = () => {
|
|
20
|
+
return <MyComponent />
|
|
40
21
|
}
|
|
41
22
|
```
|
|
42
23
|
|
|
24
|
+
## Documentation & Demo
|
|
25
|
+
|
|
26
|
+
Explore our [Documentation and interactive Demo page](https://impact-ui-v3.iaproducts.ai/?path=/docs/getting-started--docs) to gain a comprehensive understanding of the various components available in our framework. This resource serves as a valuable guide for developers and users alike, detailing the features, functionalities, and best practices for utilizing the components effectively.
|
|
27
|
+
|
|
43
28
|
## License
|
|
44
29
|
|
|
45
30
|
MIT © [](https://github.com/)
|
|
31
|
+
|
|
32
|
+
## Keywords
|
|
33
|
+
|
|
34
|
+
design-system react react-component impact-ui
|