@genesislcap/foundation-progress-overlay 14.11.1 → 14.11.2-cem-manifest.1
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,7 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Granular
|
|
3
|
+
*/
|
|
1
4
|
declare function loadZeroDesignSystem(): Promise<any>;
|
|
2
5
|
type LoadRemotesOptions = {};
|
|
3
6
|
declare function loadRemotes(options: LoadRemotesOptions): Promise<{
|
|
4
7
|
ZeroDesignSystem: any;
|
|
5
8
|
}>;
|
|
9
|
+
/**
|
|
10
|
+
* Ensure tree shaking doesn't remove these
|
|
11
|
+
* Perhaps we keep these MFs style free, ie. they need to get wrapped to have style applied. Keeping it simple for now.
|
|
12
|
+
*/
|
|
6
13
|
export { LoadRemotesOptions, loadRemotes, loadZeroDesignSystem };
|
|
7
14
|
//# sourceMappingURL=components.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../../../src/components/components.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["../../../src/components/components.ts"],"names":[],"mappings":"AAqBA;;GAEG;AACH,iBAAe,oBAAoB,iBAWlC;AAED,KAAK,kBAAkB,GAAG,EAAE,CAAC;AAE7B,iBAAe,WAAW,CAAC,OAAO,EAAE,kBAAkB;;GAKrD;AAED;;;GAGG;AACH,OAAO,EAAE,kBAAkB,EAAE,WAAW,EAAE,oBAAoB,EAAE,CAAC"}
|
|
@@ -7,13 +7,22 @@ var ResourceType;
|
|
|
7
7
|
ResourceType["LOCAL"] = "LOCAL";
|
|
8
8
|
ResourceType["REMOTE"] = "REMOTE";
|
|
9
9
|
})(ResourceType || (ResourceType = {}));
|
|
10
|
+
/**
|
|
11
|
+
* TODO: Think about sharing import functions across micro frontends.
|
|
12
|
+
*/
|
|
10
13
|
function loadZeroFallback() {
|
|
11
|
-
return import(
|
|
14
|
+
return import(
|
|
15
|
+
/* webpackMode: "lazy" */
|
|
16
|
+
'@genesislcap/foundation-zero');
|
|
12
17
|
}
|
|
18
|
+
/**
|
|
19
|
+
* Granular
|
|
20
|
+
*/
|
|
13
21
|
function loadZeroDesignSystem() {
|
|
14
22
|
return __awaiter(this, void 0, void 0, function* () {
|
|
15
23
|
let type = ResourceType.REMOTE;
|
|
16
24
|
try {
|
|
25
|
+
// @ts-ignore
|
|
17
26
|
return yield import('foundationZero/ZeroDesignSystem');
|
|
18
27
|
}
|
|
19
28
|
catch (e) {
|
|
@@ -33,4 +42,8 @@ function loadRemotes(options) {
|
|
|
33
42
|
};
|
|
34
43
|
});
|
|
35
44
|
}
|
|
45
|
+
/**
|
|
46
|
+
* Ensure tree shaking doesn't remove these
|
|
47
|
+
* Perhaps we keep these MFs style free, ie. they need to get wrapped to have style applied. Keeping it simple for now.
|
|
48
|
+
*/
|
|
36
49
|
export { loadRemotes, loadZeroDesignSystem };
|
package/dist/esm/main/main.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-progress-overlay",
|
|
3
3
|
"description": "Genesis Foundation Progress Overlay",
|
|
4
|
-
"version": "14.11.1",
|
|
4
|
+
"version": "14.11.2-cem-manifest.1",
|
|
5
5
|
"license": "SEE LICENSE IN license.txt",
|
|
6
6
|
"main": "dist/tbd.js",
|
|
7
7
|
"config": {
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"build": "npm run clean && npm run build:tsc",
|
|
12
|
-
"build:tsc": "tsc -b ./tsconfig.
|
|
12
|
+
"build:tsc": "tsc -b ./tsconfig.json",
|
|
13
13
|
"build:webpack": "cross-env NODE_ENV=production webpack",
|
|
14
14
|
"build:webpack:make-federated-types": "make-federated-types",
|
|
15
15
|
"build:webpack:stats": "cross-env ANALYZE=1 npm run build:webpack",
|
|
16
16
|
"clean": "npm run clean:dist",
|
|
17
|
-
"clean:dist": "node ../../../../build/clean dist tsconfig.
|
|
17
|
+
"clean:dist": "node ../../../../build/clean dist tsconfig.tsbuildinfo",
|
|
18
18
|
"dev": "npm run dev:webpack",
|
|
19
19
|
"dev:webpack": "cross-env NODE_ENV=development webpack serve --open",
|
|
20
20
|
"dev:webpack:https": "npm run dev:webpack -- --https",
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
"webpack-merge": "^5.7.3"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@genesislcap/foundation-utils": "
|
|
63
|
-
"@genesislcap/foundation-zero": "
|
|
62
|
+
"@genesislcap/foundation-utils": "14.11.2-cem-manifest.1",
|
|
63
|
+
"@genesislcap/foundation-zero": "14.11.2-cem-manifest.1",
|
|
64
64
|
"@microsoft/fast-components": "^2.21.3",
|
|
65
65
|
"@microsoft/fast-element": "^1.7.0",
|
|
66
66
|
"tslib": "^2.3.1"
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"publishConfig": {
|
|
70
70
|
"access": "public"
|
|
71
71
|
},
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "ca9ba0f3663aadc11735cbc0ca2d188570ffe319"
|
|
73
73
|
}
|