@csstools/css-calc 2.0.1 → 2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +4 -6
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,12 +1,10 @@
1
1
  # Changes to CSS Calc
2
2
 
3
- ### 2.0.1
3
+ ### 2.0.2
4
4
 
5
- _August 18, 2024_
5
+ _October 10, 2024_
6
6
 
7
- - Add `rawPercentages` option to indicate that percentage values do not resolve against external values.
8
- - Skip some calculations for values with percentages as those only have a known positive or negative value in a browser context.
9
- - Updated [`@csstools/css-tokenizer`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer) to [`3.0.1`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer/CHANGELOG.md#301) (patch)
10
- - Updated [`@csstools/css-parser-algorithms`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms) to [`3.0.1`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms/CHANGELOG.md#301) (patch)
7
+ - Updated [`@csstools/css-tokenizer`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer) to [`3.0.2`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer/CHANGELOG.md#302) (patch)
8
+ - Updated [`@csstools/css-parser-algorithms`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms) to [`3.0.2`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms/CHANGELOG.md#302) (patch)
11
9
 
12
10
  [Full CHANGELOG](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc/CHANGELOG.md)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@csstools/css-calc",
3
3
  "description": "Solve CSS math expressions",
4
- "version": "2.0.1",
4
+ "version": "2.0.2",
5
5
  "contributors": [
6
6
  {
7
7
  "name": "Antonio Laguna",
@@ -48,8 +48,8 @@
48
48
  "dist"
49
49
  ],
50
50
  "peerDependencies": {
51
- "@csstools/css-parser-algorithms": "^3.0.1",
52
- "@csstools/css-tokenizer": "^3.0.1"
51
+ "@csstools/css-parser-algorithms": "^3.0.2",
52
+ "@csstools/css-tokenizer": "^3.0.2"
53
53
  },
54
54
  "scripts": {},
55
55
  "homepage": "https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc#readme",