@csstools/css-calc 1.1.1 → 1.1.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 +17 -5
- package/package.json +12 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,20 +1,32 @@
|
|
|
1
1
|
# Changes to CSS Calc
|
|
2
2
|
|
|
3
|
-
### 1.1.
|
|
3
|
+
### 1.1.2
|
|
4
|
+
|
|
5
|
+
_July 3, 2023_
|
|
6
|
+
|
|
7
|
+
- Updated [`@csstools/css-parser-algorithms`](/packages/css-parser-algorithms) to [`2.3.0`](/packages/css-parser-algorithms/CHANGELOG.md#230) (minor)
|
|
8
|
+
|
|
9
|
+
### 1.1.1
|
|
10
|
+
|
|
11
|
+
_April 10, 2023_
|
|
4
12
|
|
|
5
13
|
- Updated `@csstools/css-tokenizer` to `2.1.1` (patch)
|
|
6
14
|
- Updated `@csstools/css-parser-algorithms` to `2.1.1` (patch)
|
|
7
15
|
|
|
16
|
+
### 1.1.0
|
|
8
17
|
|
|
9
|
-
|
|
10
|
-
### 1.1.0 (April 10, 2023)
|
|
18
|
+
_April 10, 2023_
|
|
11
19
|
|
|
12
20
|
- Expose the list of supported math functions.
|
|
13
21
|
|
|
14
|
-
### 1.0.1
|
|
22
|
+
### 1.0.1
|
|
23
|
+
|
|
24
|
+
_March 25, 2023_
|
|
15
25
|
|
|
16
26
|
- Improve case insensitive string matching.
|
|
17
27
|
|
|
18
|
-
### 1.0.0
|
|
28
|
+
### 1.0.0
|
|
29
|
+
|
|
30
|
+
_February 21, 2023_
|
|
19
31
|
|
|
20
32
|
- Initial version
|
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": "1.1.
|
|
4
|
+
"version": "1.1.2",
|
|
5
5
|
"contributors": [
|
|
6
6
|
{
|
|
7
7
|
"name": "Antonio Laguna",
|
|
@@ -14,10 +14,16 @@
|
|
|
14
14
|
}
|
|
15
15
|
],
|
|
16
16
|
"license": "MIT",
|
|
17
|
-
"funding":
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
17
|
+
"funding": [
|
|
18
|
+
{
|
|
19
|
+
"type": "github",
|
|
20
|
+
"url": "https://github.com/sponsors/csstools"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"type": "opencollective",
|
|
24
|
+
"url": "https://opencollective.com/csstools"
|
|
25
|
+
}
|
|
26
|
+
],
|
|
21
27
|
"engines": {
|
|
22
28
|
"node": "^14 || ^16 || >=18"
|
|
23
29
|
},
|
|
@@ -39,7 +45,7 @@
|
|
|
39
45
|
"dist"
|
|
40
46
|
],
|
|
41
47
|
"peerDependencies": {
|
|
42
|
-
"@csstools/css-parser-algorithms": "^2.
|
|
48
|
+
"@csstools/css-parser-algorithms": "^2.3.0",
|
|
43
49
|
"@csstools/css-tokenizer": "^2.1.1"
|
|
44
50
|
},
|
|
45
51
|
"scripts": {
|