@abgov/react-components 4.0.0-alpha.103 → 4.0.0-alpha.104
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 +3 -4
- package/package.json +1 -1
- package/react-components.esm.js +167 -144
- package/react-components.umd.js +167 -144
package/README.md
CHANGED
|
@@ -5,9 +5,8 @@ This library contains react components from the Government of Alberta.
|
|
|
5
5
|
Add Dependencies
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm i @abgov/react-components
|
|
9
|
-
npm i @abgov/web-components
|
|
10
|
-
npm i @abgov/styles@alpha
|
|
8
|
+
npm i @abgov/react-components
|
|
9
|
+
npm i @abgov/web-components
|
|
11
10
|
```
|
|
12
11
|
|
|
13
12
|
Link ionicons in app/index.html
|
|
@@ -27,5 +26,5 @@ Add the following to the head element
|
|
|
27
26
|
Import the styles in the `src/index.css` file
|
|
28
27
|
|
|
29
28
|
```css
|
|
30
|
-
@import "@abgov/
|
|
29
|
+
@import "@abgov/web-components/index.css";
|
|
31
30
|
```
|
package/package.json
CHANGED