ada-ui 7.2.1 → 7.2.3
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/CHANGELOG.md +12 -0
- package/README.md +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# ada-ui
|
|
2
2
|
|
|
3
|
+
## 7.2.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 669b37f: Revert the background color on the html element (introduced in 7.2.2). Backgrounding html stops the body background from propagating to the document canvas, so body then paints in its own layer — over any `z-index: -1` element (e.g. a fixed canvas backdrop), hiding it completely. With body-only background the propagation covers the viewport (including overscroll) and negative-z layers stay visible.
|
|
8
|
+
|
|
9
|
+
## 7.2.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 351bdb9: Fixed missing background color on the html element, causing a color mismatch during overscroll/bounce
|
|
14
|
+
|
|
3
15
|
## 7.2.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ My sci-fi inspired UI components library. Still growing...
|
|
|
6
6
|
|
|
7
7
|
## CDN
|
|
8
8
|
|
|
9
|
-
https://cdn.jsdelivr.net/gh/tklepzig/Ada@7.2.
|
|
9
|
+
https://cdn.jsdelivr.net/gh/tklepzig/Ada@7.2.3/css/ada.css
|
|
10
10
|
|
|
11
11
|
The link points at the latest release. To pin a different one, swap the version
|
|
12
12
|
— see https://github.com/tklepzig/Ada/releases.
|
|
@@ -30,8 +30,8 @@ a theme alongside it. A theme is just a handful of custom properties on `:root`
|
|
|
30
30
|
|
|
31
31
|
Or via the CDN:
|
|
32
32
|
|
|
33
|
-
https://cdn.jsdelivr.net/gh/tklepzig/Ada@7.2.
|
|
34
|
-
https://cdn.jsdelivr.net/gh/tklepzig/Ada@7.2.
|
|
33
|
+
https://cdn.jsdelivr.net/gh/tklepzig/Ada@7.2.3/css/ada.css
|
|
34
|
+
https://cdn.jsdelivr.net/gh/tklepzig/Ada@7.2.3/css/ada.blue.css
|
|
35
35
|
|
|
36
36
|
With npm, import the base entry first and the theme second (same cascade rule
|
|
37
37
|
through your bundler):
|