@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.
- package/README.md +26 -27
- 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
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
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.
|
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.
|
31
|
-
"@genesislcap/genx": "14.
|
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.
|
37
|
-
"@genesislcap/foundation-logger": "14.
|
38
|
-
"@genesislcap/foundation-utils": "14.
|
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": "
|
53
|
+
"gitHead": "66629088a1ce30f4e56479756ad1e78a8152142f"
|
54
54
|
}
|