css-blank-pseudo 7.0.0 → 7.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 CSS Blank Pseudo
2
2
 
3
- ### 7.0.0
3
+ ### 7.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/css-blank-pseudo/CHANGELOG.md)
package/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # PostCSS Blank Pseudo [<img src="https://postcss.github.io/postcss/logo.svg" alt="PostCSS Logo" width="90" height="90" align="right">][PostCSS]
2
2
 
3
- ```bash
4
- npm install css-blank-pseudo --save-dev
5
- ```
3
+ `npm install css-blank-pseudo --save-dev`
6
4
 
7
5
  [PostCSS Blank Pseudo] lets you style form elements when they are empty, following
8
6
  the [Selectors Level 4] specification.
@@ -138,7 +136,7 @@ or
138
136
 
139
137
  ```html
140
138
  <!-- When using a CDN url you will have to manually update the version number -->
141
- <script src="https://unpkg.com/css-blank-pseudo@7.0.0/dist/browser-global.js"></script>
139
+ <script src="https://unpkg.com/css-blank-pseudo@7.0.1/dist/browser-global.js"></script>
142
140
  <script>cssBlankPseudoInit()</script>
143
141
  ```
144
142
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "css-blank-pseudo",
3
3
  "description": "Style form elements when they are empty",
4
- "version": "7.0.0",
4
+ "version": "7.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"