@ape-egg/vibe 3.0.1 → 3.0.2
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 -1
- package/package.json +1 -1
- package/vibe.css +8 -0
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Vibe
|
|
2
2
|
|
|
3
|
-
**Version 3.0.
|
|
3
|
+
**Version 3.0.2** — Runtime-first reactivity for plain HTML. Drop a script tag into any page and get reactive bindings, control flow, and URL-loaded components — no build step required. Compile later if you want; the compiler is a separate, optional package (`@ape-egg/vibe-compiler`).
|
|
4
4
|
|
|
5
5
|
## Security model & CSP
|
|
6
6
|
|
package/package.json
CHANGED
package/vibe.css
CHANGED
|
@@ -11,9 +11,17 @@
|
|
|
11
11
|
display: none;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
+
/* Animations too, not just transitions: visibility: hidden does not pause
|
|
15
|
+
* CSS animations — a covered element still animates and still fires
|
|
16
|
+
* animationend, reaching inline handlers before the module chain defines
|
|
17
|
+
* them. Suppressed under the cover, entrance animations instead play on
|
|
18
|
+
* reveal, matching what the user actually sees. */
|
|
19
|
+
[vibe-fouc],
|
|
20
|
+
.vibe-fouc,
|
|
14
21
|
[vibe-fouc] *,
|
|
15
22
|
.vibe-fouc * {
|
|
16
23
|
transition: none !important;
|
|
24
|
+
animation: none !important;
|
|
17
25
|
}
|
|
18
26
|
|
|
19
27
|
/* Vibe Dehydrate - Skip Reactive Processing
|