@genesislcap/foundation-layout 14.184.0 → 14.185.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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"layout-item.d.ts","sourceRoot":"","sources":["../../../src/main/layout-item.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"layout-item.d.ts","sourceRoot":"","sources":["../../../src/main/layout-item.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC/D,OAAO,EACL,aAAa,EAEb,eAAe,EACf,kBAAkB,EAEnB,MAAM,UAAU,CAAC;AAIlB;;;;;;;;GAQG;AACH,qBAAa,oBAAqB,SAAQ,iBAAkB,YAAW,eAAe;IACpF;;;;;OAKG;IACG,KAAK,EAAE,MAAM,CAAC;IAEpB;;;;OAIG;IACwB,QAAQ,EAAE,OAAO,CAAS;IAErD;;;OAGG;IACG,IAAI,EAAE,MAAM,CAAC;IAEnB;;;;;;;;OAQG;IACG,YAAY,EAAE,MAAM,CAAC;IAE3B,gBAAgB;IAChB,CAAC,aAAa,CAAC,SAAmB;IAElC,gBAAgB;IAChB,OAAO,CAAC,eAAe,CAAY;IAEnC,gBAAgB;IAChB,iBAAiB,IAAI,IAAI;IAyBzB,gBAAgB;IAChB,OAAO,CAAC,wBAAwB;IAIhC,gBAAgB;IAChB,mBAAmB,IAAI,IAAI;IAI3B,gBAAgB;IAChB,wBAAwB,CAAC,MAAM,EAAE,kBAAkB,GAAG,MAAM;CAG7D;AAED;;;;;;;;;GASG;AACH,eAAO,MAAM,oBAAoB;;;;;;+BAG/B,CAAC"}
|
package/dist/dts/utils/misc.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { FoundationLayout, FoundationLayoutRegion } from '../main';
|
|
2
|
-
import { LayoutRegionType } from './types';
|
|
1
|
+
import type { FoundationLayout, FoundationLayoutRegion } from '../main';
|
|
2
|
+
import type { LayoutRegionType } from './types';
|
|
3
3
|
/**
|
|
4
4
|
* Returns an array of values of the array a which are missing in b
|
|
5
5
|
* An empty array is returned if every value of a is in b
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"misc.d.ts","sourceRoot":"","sources":["../../../src/utils/misc.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"misc.d.ts","sourceRoot":"","sources":["../../../src/utils/misc.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAC;AAGxE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAEhD;;;;GAIG;AACH,wBAAgB,oBAAoB,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,CAAC,EAAE,CAE3D;AAED,gBAAgB;AAChB,wBAAgB,wBAAwB,IAAI,gBAAgB,GAAG,sBAAsB,CAYpF;AAED,gBAAgB;AAChB,MAAM,MAAM,mBAAmB,GAAG,KAAK,GAAG,QAAQ,GAAG,OAAO,CAAC;AAC7D,gBAAgB;AAChB,eAAO,MAAM,cAAc,MAAO,gBAAgB,KAAG,mBAOpD,CAAC"}
|
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.185.0",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
7
7
|
"types": "dist/foundation-layout.d.ts",
|
|
@@ -15,8 +15,10 @@
|
|
|
15
15
|
"build": "genx build -b ts",
|
|
16
16
|
"build:webpack": "genx build",
|
|
17
17
|
"build:webpack:stats": "genx analyze",
|
|
18
|
+
"circular": "npx -y madge --extensions ts --circular ./src",
|
|
18
19
|
"clean": "rimraf dist tsconfig.tsbuildinfo",
|
|
19
20
|
"dev": "genx dev -b webpack",
|
|
21
|
+
"dev:tsc": "genx dev -b ts",
|
|
20
22
|
"serve": "genx serve",
|
|
21
23
|
"test": "genx test",
|
|
22
24
|
"test:coverage": "genx test --coverage",
|
|
@@ -26,21 +28,28 @@
|
|
|
26
28
|
"test:unit:watch": "genx test --watch",
|
|
27
29
|
"test:debug": "genx test --debug"
|
|
28
30
|
},
|
|
31
|
+
"madge": {
|
|
32
|
+
"detectiveOptions": {
|
|
33
|
+
"ts": {
|
|
34
|
+
"skipTypeImports": true
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
29
38
|
"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.
|
|
37
|
-
"rimraf": "^
|
|
39
|
+
"@genesislcap/foundation-testing": "14.185.0",
|
|
40
|
+
"@genesislcap/genx": "14.185.0",
|
|
41
|
+
"@genesislcap/rollup-builder": "14.185.0",
|
|
42
|
+
"@genesislcap/ts-builder": "14.185.0",
|
|
43
|
+
"@genesislcap/uvu-playwright-builder": "14.185.0",
|
|
44
|
+
"@genesislcap/vite-builder": "14.185.0",
|
|
45
|
+
"@genesislcap/webpack-builder": "14.185.0",
|
|
46
|
+
"rimraf": "^5.0.0"
|
|
38
47
|
},
|
|
39
48
|
"dependencies": {
|
|
40
49
|
"@genesis-community/golden-layout": "^2.11.0",
|
|
41
|
-
"@genesislcap/foundation-comms": "14.
|
|
42
|
-
"@genesislcap/foundation-logger": "14.
|
|
43
|
-
"@genesislcap/foundation-utils": "14.
|
|
50
|
+
"@genesislcap/foundation-comms": "14.185.0",
|
|
51
|
+
"@genesislcap/foundation-logger": "14.185.0",
|
|
52
|
+
"@genesislcap/foundation-utils": "14.185.0",
|
|
44
53
|
"@microsoft/fast-components": "^2.30.6",
|
|
45
54
|
"@microsoft/fast-element": "^1.12.0",
|
|
46
55
|
"@microsoft/fast-foundation": "^2.49.4",
|
|
@@ -55,5 +64,5 @@
|
|
|
55
64
|
"access": "public"
|
|
56
65
|
},
|
|
57
66
|
"customElements": "dist/custom-elements.json",
|
|
58
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "839487e6a0b1168d0ad6bf32c9e3a50504c775a0"
|
|
59
68
|
}
|