postcss-double-position-gradients 6.0.0 → 6.0.2
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 -5
- package/README.md +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
# Changes to PostCSS Double Position Gradients
|
|
2
2
|
|
|
3
|
-
### 6.0.
|
|
3
|
+
### 6.0.2
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
_May 27, 2025_
|
|
6
6
|
|
|
7
|
-
- Updated
|
|
8
|
-
- Updated [`@csstools/utilities`](https://github.com/csstools/postcss-plugins/tree/main/packages/utilities) to [`2.0.0`](https://github.com/csstools/postcss-plugins/tree/main/packages/utilities/CHANGELOG.md#200) (major)
|
|
9
|
-
- Updated [`@csstools/postcss-progressive-custom-properties`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-progressive-custom-properties) to [`4.0.0`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-progressive-custom-properties/CHANGELOG.md#400) (major)
|
|
7
|
+
- Updated [`@csstools/postcss-progressive-custom-properties`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-progressive-custom-properties) to [`4.1.0`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-progressive-custom-properties/CHANGELOG.md#410) (minor)
|
|
10
8
|
|
|
11
9
|
[Full CHANGELOG](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-double-position-gradients/CHANGELOG.md)
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
[PostCSS Double Position Gradients] lets you use double-position gradients in
|
|
10
10
|
CSS, following the [CSS Image Values and Replaced Content] specification.
|
|
11
11
|
|
|
12
|
-
```
|
|
12
|
+
```css
|
|
13
13
|
.linear-gradient {
|
|
14
14
|
background-image: linear-gradient(90deg, black 25% 50%, blue 50% 75%);
|
|
15
15
|
}
|
|
@@ -107,7 +107,7 @@ is wrapped with `@supports` when used in Custom Properties. By default, it is en
|
|
|
107
107
|
postcssDoublePositionGradients({ enableProgressiveCustomProperties: false })
|
|
108
108
|
```
|
|
109
109
|
|
|
110
|
-
```
|
|
110
|
+
```css
|
|
111
111
|
:root {
|
|
112
112
|
--a-gradient: linear-gradient(90deg, black 25% 50%, blue 50% 75%);
|
|
113
113
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "postcss-double-position-gradients",
|
|
3
3
|
"description": "Use double-position gradients in CSS",
|
|
4
|
-
"version": "6.0.
|
|
4
|
+
"version": "6.0.2",
|
|
5
5
|
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
|
|
6
6
|
"license": "MIT-0",
|
|
7
7
|
"funding": [
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"dist"
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@csstools/postcss-progressive-custom-properties": "^4.
|
|
41
|
+
"@csstools/postcss-progressive-custom-properties": "^4.1.0",
|
|
42
42
|
"@csstools/utilities": "^2.0.0",
|
|
43
43
|
"postcss-value-parser": "^4.2.0"
|
|
44
44
|
},
|