css-has-pseudo 6.0.3 → 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 +9 -10
- package/README.md +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,22 +1,21 @@
|
|
|
1
1
|
# Changes to CSS Has Pseudo
|
|
2
2
|
|
|
3
|
-
### 6.0.
|
|
3
|
+
### 6.0.5
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
_May 13, 2024_
|
|
6
6
|
|
|
7
|
-
- Updated [`@csstools/selector-specificity`](https://github.com/csstools/postcss-plugins/tree/main/packages/selector-specificity) to [`3.
|
|
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
8
|
|
|
9
|
-
### 6.0.
|
|
9
|
+
### 6.0.4
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
_May 11, 2024_
|
|
12
12
|
|
|
13
|
-
- Updated [`@csstools/selector-specificity`](https://github.com/csstools/postcss-plugins/tree/main/packages/selector-specificity) to [`3.0
|
|
13
|
+
- Updated [`@csstools/selector-specificity`](https://github.com/csstools/postcss-plugins/tree/main/packages/selector-specificity) to [`3.1.0`](https://github.com/csstools/postcss-plugins/tree/main/packages/selector-specificity/CHANGELOG.md#310) (minor)
|
|
14
14
|
|
|
15
|
-
### 6.0.
|
|
15
|
+
### 6.0.3
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
_March 31, 2024_
|
|
18
18
|
|
|
19
|
-
-
|
|
20
|
-
- Updated [`@csstools/selector-specificity`](https://github.com/csstools/postcss-plugins/tree/main/packages/selector-specificity) to [`3.0.1`](https://github.com/csstools/postcss-plugins/tree/main/packages/selector-specificity/CHANGELOG.md#301) (patch)
|
|
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)
|
|
21
20
|
|
|
22
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.
|
|
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.
|
|
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
|
+
"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.
|
|
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
|
},
|