@genesislcap/foundation-layout 14.111.1-alpha-68aaf00.0 → 14.112.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.
Files changed (2) hide show
  1. package/README.md +26 -27
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -10,33 +10,32 @@
10
10
  The following example shows the usage of the declarative API with `zero-charts` and the output that it produces.
11
11
  ```html
12
12
  <foundation-layout ${ref('analyticsLayout')}>
13
- <foundation-layout-region>
14
- <foundation-layout-region type="horizontal">
15
- <foundation-layout-item title="Static Data Bar" registration="bar" closable>
16
- <foundation-g2plot-chart
17
- type="bar"
18
- :config=${(x) => x.barConfig}
19
- :data=${(x) => x.barData}
20
- ></foundation-g2plot-chart>
21
- </foundation-layout-item>
22
- <foundation-layout-region type="vertical">
23
- <foundation-layout-item title="Static Data Stock" registration="stock" closable>
24
- <foundation-g2plot-chart
25
- type="stock"
26
- :config=${(x) => x.stockConfiguration}
27
- :data=${(x) => x.stockData}
28
- ></foundation-g2plot-chart>
29
- </foundation-layout-item>
30
- <foundation-layout-item title="Static Data Rose" registration="rose" closable>
31
- <foundation-g2plot-chart
32
- type="rose"
33
- :config=${(x) => x.roseConfig}
34
- :data=${(x) => x.roseData}
35
- :legendParser=${(x) => x.roseLegendParser()}
36
- ></foundation-g2plot-chart>
37
- </foundation-layout-item>
38
- </foundation-layout-region>
39
- </foundation-layout-region>
13
+ <foundation-layout-region type="horizontal">
14
+ <foundation-layout-item title="Static Data Bar" registration="bar" closable>
15
+ <foundation-g2plot-chart
16
+ type="bar"
17
+ :config=${(x) => x.barConfig}
18
+ :data=${(x) => x.barData}
19
+ ></foundation-g2plot-chart>
20
+ </foundation-layout-item>
21
+ <foundation-layout-region type="vertical">
22
+ <foundation-layout-item title="Static Data Stock" registration="stock" closable>
23
+ <foundation-g2plot-chart
24
+ type="stock"
25
+ :config=${(x) => x.stockConfiguration}
26
+ :data=${(x) => x.stockData}
27
+ ></foundation-g2plot-chart>
28
+ </foundation-layout-item>
29
+ <foundation-layout-item title="Static Data Rose" registration="rose" closable>
30
+ <foundation-g2plot-chart
31
+ type="rose"
32
+ :config=${(x) => x.roseConfig}
33
+ :data=${(x) => x.roseData}
34
+ :legendParser=${(x) => x.roseLegendParser()}
35
+ ></foundation-g2plot-chart>
36
+ </foundation-layout-item>
37
+ </foundation-layout-region>
38
+ </foundation-layout-region>
40
39
  </foundation-layout>
41
40
  ```
42
41
 
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.111.1-alpha-68aaf00.0",
4
+ "version": "14.112.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,15 +27,15 @@
27
27
  "test:debug": "genx test --debug"
28
28
  },
29
29
  "devDependencies": {
30
- "@genesislcap/foundation-testing": "14.111.1-alpha-68aaf00.0",
31
- "@genesislcap/genx": "14.111.1-alpha-68aaf00.0",
30
+ "@genesislcap/foundation-testing": "14.112.0",
31
+ "@genesislcap/genx": "14.112.0",
32
32
  "rimraf": "^3.0.2"
33
33
  },
34
34
  "dependencies": {
35
35
  "@genesis-community/golden-layout": "^2.11.0",
36
- "@genesislcap/foundation-comms": "14.111.1-alpha-68aaf00.0",
37
- "@genesislcap/foundation-logger": "14.111.1-alpha-68aaf00.0",
38
- "@genesislcap/foundation-utils": "14.111.1-alpha-68aaf00.0",
36
+ "@genesislcap/foundation-comms": "14.112.0",
37
+ "@genesislcap/foundation-logger": "14.112.0",
38
+ "@genesislcap/foundation-utils": "14.112.0",
39
39
  "@microsoft/fast-components": "^2.21.3",
40
40
  "@microsoft/fast-element": "^1.7.0",
41
41
  "@microsoft/fast-foundation": "^2.33.2",
@@ -50,5 +50,5 @@
50
50
  "access": "public"
51
51
  },
52
52
  "customElements": "dist/custom-elements.json",
53
- "gitHead": "f0470fd221605dbea52d5db42eb83bb0cc4eae7d"
53
+ "gitHead": "66629088a1ce30f4e56479756ad1e78a8152142f"
54
54
  }