@cutting/svg 4.62.0 → 4.63.0
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/.turbo/turbo-build.log +1 -4
- package/CHANGELOG.md +21 -0
- package/package.json +11 -11
- package/vite.config.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @cutting/svg
|
|
2
2
|
|
|
3
|
+
## 4.63.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- c702763: upgrade @visx to 4
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [c702763]
|
|
12
|
+
- @cutting/use-get-parent-size@2.10.0
|
|
13
|
+
|
|
14
|
+
## 4.62.1
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 88e84cb: add changeset for patch version bump to update react and related dependencies across all packages
|
|
19
|
+
- Updated dependencies [88e84cb]
|
|
20
|
+
- @cutting/use-get-parent-size@2.9.1
|
|
21
|
+
- @cutting/assert@0.6.1
|
|
22
|
+
- @cutting/util@4.65.1
|
|
23
|
+
|
|
3
24
|
## 4.62.0
|
|
4
25
|
|
|
5
26
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cutting/svg",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.63.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/dagda1/cuttingedge.git"
|
|
@@ -11,27 +11,27 @@
|
|
|
11
11
|
"types": "dist/esm/index.d.ts",
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@cutting/assert": "0.6.
|
|
15
|
-
"@cutting/use-get-parent-size": "2.
|
|
16
|
-
"@cutting/util": "4.65.
|
|
14
|
+
"@cutting/assert": "0.6.1",
|
|
15
|
+
"@cutting/use-get-parent-size": "2.10.0",
|
|
16
|
+
"@cutting/util": "4.65.1"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@testing-library/dom": "10.4.1",
|
|
20
20
|
"@testing-library/react": "16.3.2",
|
|
21
21
|
"@testing-library/user-event": "14.6.1",
|
|
22
|
-
"@visx/scale": "
|
|
22
|
+
"@visx/scale": "4.0.0",
|
|
23
23
|
"classnames": "2.5.1",
|
|
24
24
|
"d3-scale": "4.0.2",
|
|
25
|
-
"react": "19.2.
|
|
26
|
-
"react-dom": "19.2.
|
|
27
|
-
"@cutting/component-library": "5.
|
|
25
|
+
"react": "19.2.7",
|
|
26
|
+
"react-dom": "19.2.7",
|
|
27
|
+
"@cutting/component-library": "5.51.0"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@visx/scale": "
|
|
30
|
+
"@visx/scale": "4.0.0",
|
|
31
31
|
"classnames": "2.5.1",
|
|
32
32
|
"d3-scale": "4.0.2",
|
|
33
|
-
"react": "19.2.
|
|
34
|
-
"react-dom": "19.2.
|
|
33
|
+
"react": "19.2.7",
|
|
34
|
+
"react-dom": "19.2.7"
|
|
35
35
|
},
|
|
36
36
|
"volta": {
|
|
37
37
|
"extends": "../../package.json"
|
package/vite.config.ts
CHANGED