@zerops/web-components 0.2.2 → 0.4.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 +26 -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/index-RTjd7i0F.js +2968 -0
- package/chunks/recipe-fetch-9bf8nynf.js +1186 -0
- package/containers-cards.d.ts +12 -0
- package/containers-cards.js +872 -0
- package/managed-service-diagram.d.ts +12 -0
- package/managed-service-diagram.js +1050 -0
- package/network-diagram.js +509 -484
- package/package.json +9 -1
- package/recipe-card.js +95 -94
- package/recipes/zerops-showcase.json +1 -1
package/README.md
CHANGED
|
@@ -142,6 +142,32 @@ 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
|
+
|
|
159
|
+
## `<zerops-containers-cards>`
|
|
160
|
+
|
|
161
|
+
The System Containers comparison — App Containers / System Containers / Full VMs cards with the `zerops.yaml` terminal. Fully static, no attributes:
|
|
162
|
+
|
|
163
|
+
```js
|
|
164
|
+
import '@zerops/web-components/containers-cards';
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
```html
|
|
168
|
+
<zerops-containers-cards></zerops-containers-cards>
|
|
169
|
+
```
|
|
170
|
+
|
|
145
171
|
## Known caveats
|
|
146
172
|
|
|
147
173
|
- The stylesheet includes a CSS-layered normalize that can nudge host-page base styles.
|