@genesislcap/foundation-layout 14.160.1 → 14.161.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +21 -21
  2. package/package.json +12 -12
package/README.md CHANGED
@@ -3,8 +3,6 @@
3
3
  [![lerna](https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg)](https://lerna.js.org/)
4
4
  [![TypeScript](https://img.shields.io/badge/%3C%2F%3E-TypeScript-%230074c1.svg)](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
  ![Example output of the declarative API with the zero charts](./docs/img/foundation-layout-example.png)
43
41
 
44
- ## Set-up
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.160.1",
4
+ "version": "14.161.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.160.1",
31
- "@genesislcap/genx": "14.160.1",
32
- "@genesislcap/rollup-builder": "14.160.1",
33
- "@genesislcap/ts-builder": "14.160.1",
34
- "@genesislcap/uvu-playwright-builder": "14.160.1",
35
- "@genesislcap/vite-builder": "14.160.1",
36
- "@genesislcap/webpack-builder": "14.160.1",
30
+ "@genesislcap/foundation-testing": "14.161.0",
31
+ "@genesislcap/genx": "14.161.0",
32
+ "@genesislcap/rollup-builder": "14.161.0",
33
+ "@genesislcap/ts-builder": "14.161.0",
34
+ "@genesislcap/uvu-playwright-builder": "14.161.0",
35
+ "@genesislcap/vite-builder": "14.161.0",
36
+ "@genesislcap/webpack-builder": "14.161.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.160.1",
42
- "@genesislcap/foundation-logger": "14.160.1",
43
- "@genesislcap/foundation-utils": "14.160.1",
41
+ "@genesislcap/foundation-comms": "14.161.0",
42
+ "@genesislcap/foundation-logger": "14.161.0",
43
+ "@genesislcap/foundation-utils": "14.161.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": "598e3599570a21709dfdc8e47adf5c77e5feff80"
58
+ "gitHead": "75ef6861f287624c5efcee0f3ca24d1c167102d3"
59
59
  }