@genesislcap/foundation-layout 14.101.2 → 14.101.4-alpha-0f9aa4a.0
Sign up to get free protection for your applications and to get access to all the features.
@@ -912,6 +912,7 @@
|
|
912
912
|
"type": {
|
913
913
|
"text": "LayoutRegionType"
|
914
914
|
},
|
915
|
+
"default": "layoutRegionValue[0]",
|
915
916
|
"description": "Defines the LayoutRegionType| type of the region.\nDefaults to `horizontal`.",
|
916
917
|
"privacy": "public"
|
917
918
|
},
|
@@ -1041,7 +1042,11 @@
|
|
1041
1042
|
"type": {
|
1042
1043
|
"text": "LayoutRegionType"
|
1043
1044
|
},
|
1045
|
+
"default": "defaultLayoutType",
|
1044
1046
|
"description": "Defines the LayoutRegionType| type of the region.\nDefaults to `horizontal`.",
|
1047
|
+
"resolveInitializer": {
|
1048
|
+
"module": "src/main/layout-region.ts"
|
1049
|
+
},
|
1045
1050
|
"fieldName": "type"
|
1046
1051
|
}
|
1047
1052
|
],
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"layout-region.d.ts","sourceRoot":"","sources":["../../../src/main/layout-region.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,cAAc,EACf,MAAM,kCAAkC,CAAC;AAE1C,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC/D,OAAO,EACL,aAAa,EAEb,eAAe,EACf,gBAAgB,EAGhB,kBAAkB,EAEnB,MAAM,UAAU,CAAC;AAOlB;;;;;;;;GAQG;AACH,qBAAa,sBAAuB,SAAQ,iBAAkB,YAAW,eAAe;IACtF;;;OAGG;IACG,IAAI,EAAE,MAAM,CAAC;IAEnB;;;;OAIG;IACG,IAAI,EAAE,gBAAgB,
|
1
|
+
{"version":3,"file":"layout-region.d.ts","sourceRoot":"","sources":["../../../src/main/layout-region.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,cAAc,EACf,MAAM,kCAAkC,CAAC;AAE1C,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC/D,OAAO,EACL,aAAa,EAEb,eAAe,EACf,gBAAgB,EAGhB,kBAAkB,EAEnB,MAAM,UAAU,CAAC;AAOlB;;;;;;;;GAQG;AACH,qBAAa,sBAAuB,SAAQ,iBAAkB,YAAW,eAAe;IACtF;;;OAGG;IACG,IAAI,EAAE,MAAM,CAAC;IAEnB;;;;OAIG;IACG,IAAI,EAAE,gBAAgB,CAAqB;IAEjD,gBAAgB;IAChB,CAAC,aAAa,CAAC,EAAE,gBAAgB,CAAgB;IAEjD;;;;OAIG;IACH,OAAO,CAAC,YAAY,CAA0C;IAE9D,gBAAgB;IAChB,iBAAiB,IAAI,IAAI;IAUzB;;;OAGG;IACH,OAAO,CAAC,iBAAiB;IAMzB;;;OAGG;IACH,OAAO,CAAC,qBAAqB;IAS7B,gBAAgB;IAChB,OAAO,CAAC,wBAAwB;IAIhC,gBAAgB;IAChB,gBAAgB,CAAC,CAAC,SAAS,cAAc,EAAE,IAAI,EAAE,CAAC,GAAG,CAAC;IAKtD,gBAAgB;IAChB,mBAAmB,IAAI,IAAI;IAI3B,gBAAgB;IAChB,wBAAwB,CAAC,MAAM,EAAE,kBAAkB,GAAG,MAAM;CAG7D;AAED;;;;;;;;;GASG;AACH,eAAO,MAAM,sBAAsB;;;;;;iCAGjC,CAAC"}
|
@@ -17,6 +17,12 @@ const defaultLayoutType = layoutRegionValue[0];
|
|
17
17
|
export class FoundationLayoutRegion extends FoundationElement {
|
18
18
|
constructor() {
|
19
19
|
super(...arguments);
|
20
|
+
/**
|
21
|
+
* Defines the {@link LayoutRegionType | type} of the region.
|
22
|
+
* Defaults to `horizontal`.
|
23
|
+
* @public
|
24
|
+
*/
|
25
|
+
this.type = defaultLayoutType;
|
20
26
|
/** @internal */
|
21
27
|
this[_a] = 'horizontal';
|
22
28
|
}
|
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.101.
|
4
|
+
"version": "14.101.4-alpha-0f9aa4a.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.101.
|
31
|
-
"@genesislcap/genx": "14.101.
|
30
|
+
"@genesislcap/foundation-testing": "14.101.4-alpha-0f9aa4a.0",
|
31
|
+
"@genesislcap/genx": "14.101.4-alpha-0f9aa4a.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.101.
|
37
|
-
"@genesislcap/foundation-logger": "14.101.
|
38
|
-
"@genesislcap/foundation-utils": "14.101.
|
36
|
+
"@genesislcap/foundation-comms": "14.101.4-alpha-0f9aa4a.0",
|
37
|
+
"@genesislcap/foundation-logger": "14.101.4-alpha-0f9aa4a.0",
|
38
|
+
"@genesislcap/foundation-utils": "14.101.4-alpha-0f9aa4a.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": "261ece30fcbd939c32af8035a843e248846fbed3"
|
54
54
|
}
|