impact-ui 0.1.14 → 0.1.16
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 -2
- package/dist/avatar~xUzumpwv.svg +9 -0
- package/dist/error~ilVgTQBJ.svg +3 -0
- package/dist/home-disabled~QJrTaDXz.svg +3 -0
- package/dist/home-primary~eDtuJqft.svg +3 -0
- package/dist/home-secondary~UwsNJnOa.svg +3 -0
- package/dist/home-white~dYfNYyQZ.svg +3 -0
- package/dist/index.js +317 -42
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +299 -33
- package/dist/index.modern.js.map +1 -1
- package/dist/info~mklxCoQJ.svg +3 -0
- package/dist/notification-close~cTWnqbeV.svg +3 -0
- package/dist/success~jvzflZSL.svg +3 -0
- package/dist/warning~efleniph.svg +3 -0
- package/package.json +9 -13
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# impact-ui
|
|
2
2
|
|
|
3
|
-
> Impact
|
|
3
|
+
> Impact Analytics UI library
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/impact-ui) [](https://standardjs.com)
|
|
6
6
|
|
|
@@ -10,13 +10,24 @@
|
|
|
10
10
|
npm install --save impact-ui
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
+
## Start, Build and Publish
|
|
14
|
+
|
|
15
|
+
`npm run start:docs // Start docs`
|
|
16
|
+
|
|
17
|
+
`npm run build // Build lib`
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
// Upgrade versin in package.json
|
|
21
|
+
npm login
|
|
22
|
+
npm publish
|
|
23
|
+
```
|
|
24
|
+
|
|
13
25
|
## Usage
|
|
14
26
|
|
|
15
27
|
```jsx
|
|
16
28
|
import React, { Component } from 'react'
|
|
17
29
|
|
|
18
30
|
import MyComponent from 'impact-ui'
|
|
19
|
-
import 'impact-ui/dist/index.css'
|
|
20
31
|
|
|
21
32
|
class Example extends Component {
|
|
22
33
|
render() {
|