@genesislcap/foundation-zero 14.160.0 → 14.161.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 +22 -1
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -11,9 +11,30 @@ For the purpose of this POC, Zero is our first design system. In simplistic term
|
|
|
11
11
|
[](https://lerna.js.org/)
|
|
12
12
|
[](https://www.typescriptlang.org/)
|
|
13
13
|
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
|
|
17
|
+
To enable this module in your application, follow the steps below.
|
|
18
|
+
|
|
19
|
+
1. Add `@genesislcap/foundation-zero` as a dependency in your `package.json` file. Whenever you change the dependencies of your project, ensure you run the `$ npm run bootstrap` command again. You can find more information in the [package.json basics](https://learn.genesis.global/secure/web/basics/package-json-basics/) page.
|
|
20
|
+
|
|
21
|
+
```json
|
|
22
|
+
{
|
|
23
|
+
...
|
|
24
|
+
"dependencies": {
|
|
25
|
+
...
|
|
26
|
+
"@genesislcap/foundation-zero": "latest"
|
|
27
|
+
...
|
|
28
|
+
},
|
|
29
|
+
...
|
|
30
|
+
}
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## [API Docs](./docs/api/index.md)
|
|
34
|
+
|
|
14
35
|
## License
|
|
15
36
|
|
|
16
|
-
Note: this project provides front
|
|
37
|
+
Note: this project provides front-end dependencies and uses licensed components listed in the next section; thus, licenses for those components are required during development. Contact [Genesis Global](https://genesis.global/contact-us/) for more details.
|
|
17
38
|
|
|
18
39
|
### Licensed components
|
|
19
40
|
Genesis low-code platform
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-zero",
|
|
3
3
|
"description": "Genesis Foundation Zero Design System",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.161.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -67,12 +67,12 @@
|
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@genesiscommunitysuccess/analyzer-import-alias-plugin": "^4.0.0",
|
|
70
|
-
"@genesislcap/genx": "14.
|
|
71
|
-
"@genesislcap/rollup-builder": "14.
|
|
72
|
-
"@genesislcap/ts-builder": "14.
|
|
73
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
74
|
-
"@genesislcap/vite-builder": "14.
|
|
75
|
-
"@genesislcap/webpack-builder": "14.
|
|
70
|
+
"@genesislcap/genx": "14.161.0",
|
|
71
|
+
"@genesislcap/rollup-builder": "14.161.0",
|
|
72
|
+
"@genesislcap/ts-builder": "14.161.0",
|
|
73
|
+
"@genesislcap/uvu-playwright-builder": "14.161.0",
|
|
74
|
+
"@genesislcap/vite-builder": "14.161.0",
|
|
75
|
+
"@genesislcap/webpack-builder": "14.161.0",
|
|
76
76
|
"@storybook/addon-coverage": "^1.0.1",
|
|
77
77
|
"@storybook/addon-essentials": "^8.0.0",
|
|
78
78
|
"@storybook/addon-links": "^8.0.0",
|
|
@@ -89,10 +89,10 @@
|
|
|
89
89
|
"storybook": "^8.0.0"
|
|
90
90
|
},
|
|
91
91
|
"dependencies": {
|
|
92
|
-
"@genesislcap/foundation-comms": "14.
|
|
93
|
-
"@genesislcap/foundation-logger": "14.
|
|
94
|
-
"@genesislcap/foundation-ui": "14.
|
|
95
|
-
"@genesislcap/foundation-utils": "14.
|
|
92
|
+
"@genesislcap/foundation-comms": "14.161.0",
|
|
93
|
+
"@genesislcap/foundation-logger": "14.161.0",
|
|
94
|
+
"@genesislcap/foundation-ui": "14.161.0",
|
|
95
|
+
"@genesislcap/foundation-utils": "14.161.0",
|
|
96
96
|
"@microsoft/fast-colors": "^5.3.1",
|
|
97
97
|
"@microsoft/fast-components": "^2.30.6",
|
|
98
98
|
"@microsoft/fast-element": "^1.12.0",
|
|
@@ -109,5 +109,5 @@
|
|
|
109
109
|
"access": "public"
|
|
110
110
|
},
|
|
111
111
|
"customElements": "dist/custom-elements.json",
|
|
112
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "75ef6861f287624c5efcee0f3ca24d1c167102d3"
|
|
113
113
|
}
|