css-has-pseudo 6.0.4 → 6.0.5

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,5 +1,11 @@
1
1
  # Changes to CSS Has Pseudo
2
2
 
3
+ ### 6.0.5
4
+
5
+ _May 13, 2024_
6
+
7
+ - Updated [`@csstools/selector-specificity`](https://github.com/csstools/postcss-plugins/tree/main/packages/selector-specificity) to [`3.1.1`](https://github.com/csstools/postcss-plugins/tree/main/packages/selector-specificity/CHANGELOG.md#311) (patch)
8
+
3
9
  ### 6.0.4
4
10
 
5
11
  _May 11, 2024_
@@ -12,10 +18,4 @@ _March 31, 2024_
12
18
 
13
19
  - Updated [`@csstools/selector-specificity`](https://github.com/csstools/postcss-plugins/tree/main/packages/selector-specificity) to [`3.0.3`](https://github.com/csstools/postcss-plugins/tree/main/packages/selector-specificity/CHANGELOG.md#303) (patch)
14
20
 
15
- ### 6.0.2
16
-
17
- _February 19, 2024_
18
-
19
- - Updated [`@csstools/selector-specificity`](https://github.com/csstools/postcss-plugins/tree/main/packages/selector-specificity) to [`3.0.2`](https://github.com/csstools/postcss-plugins/tree/main/packages/selector-specificity/CHANGELOG.md#302) (patch)
20
-
21
21
  [Full CHANGELOG](https://github.com/csstools/postcss-plugins/tree/main/plugins/css-has-pseudo/CHANGELOG.md)
package/README.md CHANGED
@@ -166,12 +166,12 @@ or
166
166
 
167
167
  ```html
168
168
  <!-- When using a CDN url you will have to manually update the version number -->
169
- <script src="https://unpkg.com/css-has-pseudo@6.0.4/dist/browser-global.js"></script>
169
+ <script src="https://unpkg.com/css-has-pseudo@6.0.5/dist/browser-global.js"></script>
170
170
  <script>cssHasPseudo(document)</script>
171
171
  ```
172
172
 
173
173
  > [!TIP]
174
- > Please use a versioned url, like this : `https://unpkg.com/css-has-pseudo@6.0.4/dist/browser-global.js`
174
+ > Please use a versioned url, like this : `https://unpkg.com/css-has-pseudo@6.0.5/dist/browser-global.js`
175
175
  > Without the version, you might unexpectedly get a new major version of the library with breaking changes.
176
176
 
177
177
  [PostCSS Has Pseudo] works in all major browsers, including
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "css-has-pseudo",
3
3
  "description": "Style elements relative to other elements in CSS",
4
- "version": "6.0.4",
4
+ "version": "6.0.5",
5
5
  "contributors": [
6
6
  {
7
7
  "name": "Antonio Laguna",
@@ -60,7 +60,7 @@
60
60
  "dist"
61
61
  ],
62
62
  "dependencies": {
63
- "@csstools/selector-specificity": "^3.1.0",
63
+ "@csstools/selector-specificity": "^3.1.1",
64
64
  "postcss-selector-parser": "^6.0.13",
65
65
  "postcss-value-parser": "^4.2.0"
66
66
  },