@zywave/zui-components-all 4.0.27 → 4.0.28-pre.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/CONTRIBUTING.md +17 -0
- package/README.md +1 -1
- package/package.json +10 -9
package/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Contributing
|
|
2
|
+
|
|
3
|
+
Every time a new component is created, it should be added to zui-components-all and zui-bundle.
|
|
4
|
+
|
|
5
|
+
## Adding a new component to the bundle
|
|
6
|
+
|
|
7
|
+
For your component to be recognized by zui-bundle, please add it to zui-components-all's `package.json` by running the following command from the root of ZUI:
|
|
8
|
+
|
|
9
|
+
```shell
|
|
10
|
+
npx lerna add @zywave/zui-new-component-name --scope=@zywave/zui-components-all
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### Add the new component to zui-bundle
|
|
14
|
+
|
|
15
|
+
Since zui-components-all is a dependency of zui-bundle, you simply need to manually add a line to import your new component package into `/packages/misc/zui-bundle/src/bundle.js`.
|
|
16
|
+
|
|
17
|
+
Also, add your component's FOUC styles into `/packages/misc/zui-bundle/src/css/zui-bundle.fouc.scss`.
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zywave/zui-components-all",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.28-pre.0",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@zywave/zui-base": "^4.1.18",
|
|
7
7
|
"@zywave/zui-breadcrumbs": "^4.0.16",
|
|
8
|
-
"@zywave/zui-button": "^4.0.
|
|
8
|
+
"@zywave/zui-button": "^4.0.24-pre.0",
|
|
9
9
|
"@zywave/zui-card": "^4.0.23",
|
|
10
10
|
"@zywave/zui-checkbox": "^4.0.23",
|
|
11
11
|
"@zywave/zui-dialog": "^4.0.24",
|
|
@@ -15,20 +15,21 @@
|
|
|
15
15
|
"@zywave/zui-icons": "^4.0.24",
|
|
16
16
|
"@zywave/zui-input": "^4.0.23",
|
|
17
17
|
"@zywave/zui-logo": "^4.0.24",
|
|
18
|
-
"@zywave/zui-multipicker": "^4.0.
|
|
19
|
-
"@zywave/zui-notifier": "^4.0.
|
|
18
|
+
"@zywave/zui-multipicker": "^4.0.24-pre.0",
|
|
19
|
+
"@zywave/zui-notifier": "^4.0.25-pre.0",
|
|
20
20
|
"@zywave/zui-pager": "^4.0.24",
|
|
21
21
|
"@zywave/zui-pages": "^4.0.14",
|
|
22
|
-
"@zywave/zui-picker": "^4.0.
|
|
22
|
+
"@zywave/zui-picker": "^4.0.24-pre.0",
|
|
23
23
|
"@zywave/zui-progress": "^4.0.4",
|
|
24
24
|
"@zywave/zui-radio": "^4.0.23",
|
|
25
|
-
"@zywave/zui-search": "^4.0.
|
|
26
|
-
"@zywave/zui-select": "^4.0.
|
|
27
|
-
"@zywave/zui-shell": "^4.2.
|
|
25
|
+
"@zywave/zui-search": "^4.0.26-pre.0",
|
|
26
|
+
"@zywave/zui-select": "^4.0.25-pre.0",
|
|
27
|
+
"@zywave/zui-shell": "^4.2.20-pre.0",
|
|
28
28
|
"@zywave/zui-slider": "^4.0.7",
|
|
29
29
|
"@zywave/zui-spinner": "^4.0.23",
|
|
30
30
|
"@zywave/zui-step-flow": "^4.0.24",
|
|
31
31
|
"@zywave/zui-svg": "^4.0.24",
|
|
32
|
+
"@zywave/zui-table": "^4.0.0-pre.1",
|
|
32
33
|
"@zywave/zui-tabs": "^4.0.17",
|
|
33
34
|
"@zywave/zui-toggle": "^4.0.23",
|
|
34
35
|
"@zywave/zui-tooltip": "^4.0.14",
|
|
@@ -40,5 +41,5 @@
|
|
|
40
41
|
"devDependencies": {
|
|
41
42
|
"cssnano": "^4.1.10"
|
|
42
43
|
},
|
|
43
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "94482dca5e86ed4d0b0850b10341d0de96700230"
|
|
44
45
|
}
|