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 CHANGED
@@ -1,9 +1,9 @@
1
1
  # Changes to PostCSS Focus Within
2
2
 
3
- ### 9.0.0
3
+ ### 9.0.1
4
4
 
5
- _August 3, 2024_
5
+ _October 23, 2024_
6
6
 
7
- - Updated: Support for Node v18+ (major).
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.0/dist/browser-global.js"></script>
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.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": "^6.1.0"
63
+ "postcss-selector-parser": "^7.0.0"
64
64
  },
65
65
  "peerDependencies": {
66
66
  "postcss": "^8.4"