@iroco/ui 0.9.2 → 0.11.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/lib/check.scss +2 -0
- package/lib/index.js +2543 -2354
- package/lib/index.min.js +222 -222
- package/lib/index.mjs +2541 -2352
- package/lib/index.mjs.css +83 -80
- package/lib/loader.scss +0 -1
- package/package.json +2 -3
- package/scss/containers.scss +2 -2
- package/src/Button.svelte +5 -1
- package/src/SideBar.svelte +0 -1
package/README.md
CHANGED
|
@@ -11,13 +11,13 @@ See the [Documentation](https://iroco-co.github.io/iroco-ui/)
|
|
|
11
11
|
To install dependencies :
|
|
12
12
|
|
|
13
13
|
```shell
|
|
14
|
-
~/src/iroco-ui$
|
|
14
|
+
~/src/iroco-ui$ npm ci
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
Building :
|
|
18
18
|
|
|
19
19
|
```shell
|
|
20
|
-
~/src/iroco-ui$
|
|
20
|
+
~/src/iroco-ui$ npm run build
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
# documentation
|
|
@@ -25,7 +25,7 @@ Building :
|
|
|
25
25
|
The docs directory contains the documentation app deployed on github pages. To install dependencies :
|
|
26
26
|
|
|
27
27
|
```shell
|
|
28
|
-
~/src/iroco-ui/docs$
|
|
28
|
+
~/src/iroco-ui/docs$ npm ci
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
You can add/update components documentation into `docs/src/pages/components` and update the left menu in `docs/src/includes/sidebar.md`.
|
|
@@ -38,11 +38,11 @@ When you have to work on the CSS for components, you can have hot reloading. To
|
|
|
38
38
|
And in the same time launch the dev server for docs :
|
|
39
39
|
|
|
40
40
|
```shell
|
|
41
|
-
~/src/iroco-ui/docs$
|
|
41
|
+
~/src/iroco-ui/docs$ npm run dev
|
|
42
42
|
```
|
|
43
43
|
|
|
44
44
|
To build the documentation (in docs) :
|
|
45
45
|
|
|
46
46
|
```shell
|
|
47
|
-
~/src/iroco-ui/docs$
|
|
47
|
+
~/src/iroco-ui/docs$ npm run build
|
|
48
48
|
```
|