@genesislcap/foundation-layout 14.160.1 → 14.162.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 +21 -21
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -3,8 +3,6 @@
|
|
|
3
3
|
[](https://lerna.js.org/)
|
|
4
4
|
[](https://www.typescriptlang.org/)
|
|
5
5
|
|
|
6
|
-
### [API Docs](./docs/api/index.md)
|
|
7
|
-
|
|
8
6
|
## Declarative HTML API
|
|
9
7
|
|
|
10
8
|
The following example shows the usage of the declarative API with `zero-charts` and the output that it produces.
|
|
@@ -41,25 +39,7 @@ The following example shows the usage of the declarative API with `zero-charts`
|
|
|
41
39
|
|
|
42
40
|

|
|
43
41
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
### Basic install
|
|
47
|
-
|
|
48
|
-
To enable this module in your application, follow the steps below.
|
|
49
|
-
|
|
50
|
-
1. Add `@genesislcap/foundation-layout` 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](../../../web/basics/package-json-basics/) page.
|
|
51
|
-
|
|
52
|
-
```javascript
|
|
53
|
-
{
|
|
54
|
-
...
|
|
55
|
-
"dependencies": {
|
|
56
|
-
"@genesislcap/foundation-layout": "latest"
|
|
57
|
-
},
|
|
58
|
-
...
|
|
59
|
-
}
|
|
60
|
-
```
|
|
61
|
-
|
|
62
|
-
2. Register the layout with the design system. This is probably in a file called **components.ts**, located where you call `.register()` on the design system.
|
|
42
|
+
1. Register the layout with the design system. This is probably in a file called **components.ts**, located where you call `.register()` on the design system.
|
|
63
43
|
|
|
64
44
|
```javascript
|
|
65
45
|
FoundationDesignSystem: registerFoundationDesignSystem().register(
|
|
@@ -1272,6 +1252,26 @@ The issue occurs during step four - the clone from `cloneNode` doesn't have the
|
|
|
1272
1252
|
|
|
1273
1253
|
>>\* It initialises after the timeout specified by the `reload-buffer` attribute if using the declarative HTML API, or if steps `3` and `4` occur during calls to `registerItem` and `addItem` respectively.
|
|
1274
1254
|
|
|
1255
|
+
## Installation
|
|
1256
|
+
|
|
1257
|
+
To enable this module in your application, follow the steps below.
|
|
1258
|
+
|
|
1259
|
+
1. Add `@genesislcap/foundation-layout` 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.
|
|
1260
|
+
|
|
1261
|
+
```json
|
|
1262
|
+
{
|
|
1263
|
+
...
|
|
1264
|
+
"dependencies": {
|
|
1265
|
+
...
|
|
1266
|
+
"@genesislcap/foundation-layout": "latest"
|
|
1267
|
+
...
|
|
1268
|
+
},
|
|
1269
|
+
...
|
|
1270
|
+
}
|
|
1271
|
+
```
|
|
1272
|
+
|
|
1273
|
+
## [API Docs](./docs/api/index.md)
|
|
1274
|
+
|
|
1275
1275
|
## License
|
|
1276
1276
|
|
|
1277
1277
|
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.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-layout",
|
|
3
3
|
"description": "Genesis Foundation UI App Layout",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.162.0",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
7
7
|
"types": "dist/foundation-layout.d.ts",
|
|
@@ -27,20 +27,20 @@
|
|
|
27
27
|
"test:debug": "genx test --debug"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@genesislcap/foundation-testing": "14.
|
|
31
|
-
"@genesislcap/genx": "14.
|
|
32
|
-
"@genesislcap/rollup-builder": "14.
|
|
33
|
-
"@genesislcap/ts-builder": "14.
|
|
34
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
35
|
-
"@genesislcap/vite-builder": "14.
|
|
36
|
-
"@genesislcap/webpack-builder": "14.
|
|
30
|
+
"@genesislcap/foundation-testing": "14.162.0",
|
|
31
|
+
"@genesislcap/genx": "14.162.0",
|
|
32
|
+
"@genesislcap/rollup-builder": "14.162.0",
|
|
33
|
+
"@genesislcap/ts-builder": "14.162.0",
|
|
34
|
+
"@genesislcap/uvu-playwright-builder": "14.162.0",
|
|
35
|
+
"@genesislcap/vite-builder": "14.162.0",
|
|
36
|
+
"@genesislcap/webpack-builder": "14.162.0",
|
|
37
37
|
"rimraf": "^3.0.2"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@genesis-community/golden-layout": "^2.11.0",
|
|
41
|
-
"@genesislcap/foundation-comms": "14.
|
|
42
|
-
"@genesislcap/foundation-logger": "14.
|
|
43
|
-
"@genesislcap/foundation-utils": "14.
|
|
41
|
+
"@genesislcap/foundation-comms": "14.162.0",
|
|
42
|
+
"@genesislcap/foundation-logger": "14.162.0",
|
|
43
|
+
"@genesislcap/foundation-utils": "14.162.0",
|
|
44
44
|
"@microsoft/fast-components": "^2.30.6",
|
|
45
45
|
"@microsoft/fast-element": "^1.12.0",
|
|
46
46
|
"@microsoft/fast-foundation": "^2.49.4",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"access": "public"
|
|
56
56
|
},
|
|
57
57
|
"customElements": "dist/custom-elements.json",
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "874e7ee403e4cfab01c6fb2542ae3264c7202831"
|
|
59
59
|
}
|