@genesislcap/foundation-ui 14.167.2 → 14.167.3-alpha-b40d1e5.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/dist/custom-elements.json +1949 -1376
- package/dist/dts/base-components.d.ts +8 -7
- package/dist/dts/base-components.d.ts.map +1 -1
- package/dist/dts/error-boundary/error-boundary.d.ts +3 -0
- package/dist/dts/error-boundary/error-boundary.d.ts.map +1 -1
- package/dist/dts/index.d.ts +1 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/dts/notification-listener/notification-listener.d.ts +3 -0
- package/dist/dts/notification-listener/notification-listener.d.ts.map +1 -1
- package/dist/dts/overlays/index.d.ts +2 -0
- package/dist/dts/overlays/index.d.ts.map +1 -0
- package/dist/dts/overlays/system-health/index.d.ts +2 -0
- package/dist/dts/overlays/system-health/index.d.ts.map +1 -0
- package/dist/dts/overlays/system-health/system-health-overlay.d.ts +131 -0
- package/dist/dts/overlays/system-health/system-health-overlay.d.ts.map +1 -0
- package/dist/dts/overlays/system-health/types.d.ts +22 -0
- package/dist/dts/overlays/system-health/types.d.ts.map +1 -0
- package/dist/dts/utils/base-datasource.d.ts.map +1 -1
- package/dist/dts/utils/logger.d.ts +2 -0
- package/dist/dts/utils/logger.d.ts.map +1 -1
- package/dist/esm/base-components.js +7 -5
- package/dist/esm/error-boundary/error-boundary.js +18 -2
- package/dist/esm/index.js +1 -0
- package/dist/esm/notification-listener/notification-listener.js +18 -2
- package/dist/esm/overlays/index.js +1 -0
- package/dist/esm/overlays/system-health/index.js +1 -0
- package/dist/esm/overlays/system-health/system-health-overlay.js +756 -0
- package/dist/esm/overlays/system-health/types.js +8 -0
- package/dist/esm/utils/base-datasource.js +10 -0
- package/dist/esm/utils/logger.js +2 -1
- package/package.json +15 -15
|
@@ -53,8 +53,18 @@ export class BaseDatasource extends FoundationElement {
|
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
55
|
disconnectedCallback() {
|
|
56
|
+
var _a, _b;
|
|
56
57
|
super.disconnectedCallback();
|
|
57
58
|
this.clearData();
|
|
59
|
+
/**
|
|
60
|
+
* Attempt to clean up after ourselves.
|
|
61
|
+
*/
|
|
62
|
+
(_a = this.dataSub) === null || _a === void 0 ? void 0 : _a.unsubscribe();
|
|
63
|
+
(_b = this.update) === null || _b === void 0 ? void 0 : _b.unsubscribe();
|
|
64
|
+
delete this.dataSub;
|
|
65
|
+
delete this.update;
|
|
66
|
+
this.datasource.destroy();
|
|
67
|
+
delete this.datasource;
|
|
58
68
|
}
|
|
59
69
|
// Genesis Specific
|
|
60
70
|
reset() {
|
package/dist/esm/utils/logger.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-ui",
|
|
3
3
|
"description": "Genesis Foundation UI",
|
|
4
|
-
"version": "14.167.
|
|
4
|
+
"version": "14.167.3-alpha-b40d1e5.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -74,13 +74,13 @@
|
|
|
74
74
|
"test:debug": "genx test --debug"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"@genesislcap/foundation-testing": "14.167.
|
|
78
|
-
"@genesislcap/genx": "14.167.
|
|
79
|
-
"@genesislcap/rollup-builder": "14.167.
|
|
80
|
-
"@genesislcap/ts-builder": "14.167.
|
|
81
|
-
"@genesislcap/uvu-playwright-builder": "14.167.
|
|
82
|
-
"@genesislcap/vite-builder": "14.167.
|
|
83
|
-
"@genesislcap/webpack-builder": "14.167.
|
|
77
|
+
"@genesislcap/foundation-testing": "14.167.3-alpha-b40d1e5.0",
|
|
78
|
+
"@genesislcap/genx": "14.167.3-alpha-b40d1e5.0",
|
|
79
|
+
"@genesislcap/rollup-builder": "14.167.3-alpha-b40d1e5.0",
|
|
80
|
+
"@genesislcap/ts-builder": "14.167.3-alpha-b40d1e5.0",
|
|
81
|
+
"@genesislcap/uvu-playwright-builder": "14.167.3-alpha-b40d1e5.0",
|
|
82
|
+
"@genesislcap/vite-builder": "14.167.3-alpha-b40d1e5.0",
|
|
83
|
+
"@genesislcap/webpack-builder": "14.167.3-alpha-b40d1e5.0",
|
|
84
84
|
"copyfiles": "^2.4.1",
|
|
85
85
|
"rimraf": "^3.0.2",
|
|
86
86
|
"rxjs": "^7.5.4"
|
|
@@ -91,12 +91,12 @@
|
|
|
91
91
|
"@fortawesome/free-regular-svg-icons": "^6.2.1",
|
|
92
92
|
"@fortawesome/free-solid-svg-icons": "^6.2.1",
|
|
93
93
|
"@genesiscommunitysuccess/analyzer-import-alias-plugin": "^4.0.0",
|
|
94
|
-
"@genesislcap/foundation-comms": "14.167.
|
|
95
|
-
"@genesislcap/foundation-criteria": "14.167.
|
|
96
|
-
"@genesislcap/foundation-errors": "14.167.
|
|
97
|
-
"@genesislcap/foundation-logger": "14.167.
|
|
98
|
-
"@genesislcap/foundation-notifications": "14.167.
|
|
99
|
-
"@genesislcap/foundation-utils": "14.167.
|
|
94
|
+
"@genesislcap/foundation-comms": "14.167.3-alpha-b40d1e5.0",
|
|
95
|
+
"@genesislcap/foundation-criteria": "14.167.3-alpha-b40d1e5.0",
|
|
96
|
+
"@genesislcap/foundation-errors": "14.167.3-alpha-b40d1e5.0",
|
|
97
|
+
"@genesislcap/foundation-logger": "14.167.3-alpha-b40d1e5.0",
|
|
98
|
+
"@genesislcap/foundation-notifications": "14.167.3-alpha-b40d1e5.0",
|
|
99
|
+
"@genesislcap/foundation-utils": "14.167.3-alpha-b40d1e5.0",
|
|
100
100
|
"@microsoft/fast-colors": "^5.3.1",
|
|
101
101
|
"@microsoft/fast-components": "^2.30.6",
|
|
102
102
|
"@microsoft/fast-element": "^1.12.0",
|
|
@@ -118,5 +118,5 @@
|
|
|
118
118
|
"access": "public"
|
|
119
119
|
},
|
|
120
120
|
"customElements": "dist/custom-elements.json",
|
|
121
|
-
"gitHead": "
|
|
121
|
+
"gitHead": "806560f0199c3a212a734ecf090d18484b7627bf"
|
|
122
122
|
}
|