@zerops/web-components 0.1.0 → 0.2.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 +1 -0
- package/chunks/{browser-CRtUYvv5.js → browser-CUhuh3a-.js} +1 -1
- package/chunks/custom-icons-Bw6Z3FPe.js +1532 -0
- package/chunks/{recipe-fetch-BEQGCaPU.js → recipe-fetch-D2IpKMVr.js} +589 -697
- package/network-diagram.d.ts +7 -0
- package/network-diagram.js +544 -526
- package/package.json +1 -1
- package/recipe-card.js +1 -1
- package/recipes/zerops-showcase.json +1 -1
package/network-diagram.d.ts
CHANGED
|
@@ -16,6 +16,13 @@ export interface ZeropsNetworkDiagramElement extends HTMLElement {
|
|
|
16
16
|
* Default: 'highly-available-production'.
|
|
17
17
|
*/
|
|
18
18
|
environment: string;
|
|
19
|
+
/**
|
|
20
|
+
* Project-core rendering. 'auto' (default) derives it from the drawn
|
|
21
|
+
* environment's core service — HA cores render the full serious
|
|
22
|
+
* infrastructure (ctrl/stats/logger + L7), non-HA cores render the
|
|
23
|
+
* combined lightweight node. 'lightweight'/'serious' force a mode.
|
|
24
|
+
*/
|
|
25
|
+
mode: 'auto' | 'lightweight' | 'serious';
|
|
19
26
|
/** Public API origin. Default: https://api.zerops.io */
|
|
20
27
|
apiBase: string;
|
|
21
28
|
}
|