@zerops/web-components 0.2.2 → 0.3.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 +14 -0
- package/chunks/{recipe-fetch-D2IpKMVr.js → app-CrO8M3t-.js} +3822 -4988
- package/chunks/{browser-CUhuh3a-.js → browser-CZljKQ_O.js} +1 -1
- package/chunks/recipe-fetch-9bf8nynf.js +1186 -0
- package/managed-service-diagram.d.ts +12 -0
- package/managed-service-diagram.js +3998 -0
- package/network-diagram.js +509 -484
- package/package.json +5 -1
- package/recipe-card.js +95 -94
- package/recipes/zerops-showcase.json +1 -1
package/README.md
CHANGED
|
@@ -142,6 +142,20 @@ el.recipeData = showcase;
|
|
|
142
142
|
|
|
143
143
|
The trace animation pauses off-viewport and respects `prefers-reduced-motion`.
|
|
144
144
|
|
|
145
|
+
## `<zerops-managed-service-diagram>`
|
|
146
|
+
|
|
147
|
+
The homepage's animated managed-services showcase — health checks, automatic failover, backups, and scaling panels. Fully static, no attributes:
|
|
148
|
+
|
|
149
|
+
```js
|
|
150
|
+
import '@zerops/web-components/managed-service-diagram';
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
```html
|
|
154
|
+
<zerops-managed-service-diagram></zerops-managed-service-diagram>
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
Animations start when the element scrolls into view.
|
|
158
|
+
|
|
145
159
|
## Known caveats
|
|
146
160
|
|
|
147
161
|
- The stylesheet includes a CSS-layered normalize that can nudge host-page base styles.
|