postcss-focus-within 9.0.0 → 9.0.1
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 +3 -3
- package/README.md +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# Changes to PostCSS Focus Within
|
|
2
2
|
|
|
3
|
-
### 9.0.
|
|
3
|
+
### 9.0.1
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
_October 23, 2024_
|
|
6
6
|
|
|
7
|
-
- Updated:
|
|
7
|
+
- Updated: `postcss-selector-parser`
|
|
8
8
|
|
|
9
9
|
[Full CHANGELOG](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-focus-within/CHANGELOG.md)
|
package/README.md
CHANGED
|
@@ -143,7 +143,7 @@ or
|
|
|
143
143
|
|
|
144
144
|
```html
|
|
145
145
|
<!-- When using a CDN url you will have to manually update the version number -->
|
|
146
|
-
<script src="https://unpkg.com/postcss-focus-within@9.0.
|
|
146
|
+
<script src="https://unpkg.com/postcss-focus-within@9.0.1/dist/browser-global.js"></script>
|
|
147
147
|
<script>focusWithinInit()</script>
|
|
148
148
|
```
|
|
149
149
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "postcss-focus-within",
|
|
3
3
|
"description": "Use the :focus-within pseudo-selector in CSS",
|
|
4
|
-
"version": "9.0.
|
|
4
|
+
"version": "9.0.1",
|
|
5
5
|
"contributors": [
|
|
6
6
|
{
|
|
7
7
|
"name": "Antonio Laguna",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"dist"
|
|
61
61
|
],
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"postcss-selector-parser": "^
|
|
63
|
+
"postcss-selector-parser": "^7.0.0"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
66
66
|
"postcss": "^8.4"
|