@cutting/svg 4.47.0 → 4.49.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.
@@ -1,6 +1,6 @@
1
- @cutting/svg:build: cache hit, replaying output 56e7838f2f792826
1
+ @cutting/svg:build: cache hit, replaying output ccc3a2017cfccd64
2
2
  @cutting/svg:build:
3
- @cutting/svg:build: > @cutting/svg@4.47.0 build /home/runner/work/cuttingedge/cuttingedge/packages/svg
3
+ @cutting/svg:build: > @cutting/svg@4.49.0 build /home/runner/work/cuttingedge/cuttingedge/packages/svg
4
4
  @cutting/svg:build: > NODE_ENV=production devtools rollup
5
5
  @cutting/svg:build:
6
6
  @cutting/svg:build: DEBUG using tsconfig.dist.json
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # @cutting/svg
2
2
 
3
+ ## 4.49.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 3c3e166a: replace flex with css grid for main layouts
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [3c3e166a]
12
+ - @cutting/react-abortable-fetch@0.32.0
13
+ - @cutting/use-get-parent-size@1.23.0
14
+ - @cutting/util@4.54.0
15
+
16
+ ## 4.48.0
17
+
18
+ ### Minor Changes
19
+
20
+ - 6d9b0d40: remove @vanilla-extract/babel-plugin
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies [6d9b0d40]
25
+ - @cutting/react-abortable-fetch@0.31.0
26
+ - @cutting/use-get-parent-size@1.22.0
27
+ - @cutting/util@4.54.0
28
+
3
29
  ## 4.47.0
4
30
 
5
31
  ### Minor Changes
@@ -1,7 +1,6 @@
1
1
  import { globalStyle, style } from '@vanilla-extract/css';
2
2
 
3
3
  export const container = style({
4
- border: '10px solid yellow',
5
4
  background: 'grey',
6
5
  color: 'white',
7
6
  overflow: 'hidden',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cutting/svg",
3
- "version": "4.47.0",
3
+ "version": "4.49.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/dagda1/cuttingedge.git"
@@ -11,30 +11,29 @@
11
11
  "types": "dist/esm/index.d.ts",
12
12
  "license": "MIT",
13
13
  "dependencies": {
14
- "@cutting/react-abortable-fetch": "0.30.0",
15
- "@cutting/use-get-parent-size": "1.21.0",
16
- "@cutting/util": "4.53.0",
14
+ "@cutting/react-abortable-fetch": "0.32.0",
15
+ "@cutting/use-get-parent-size": "1.23.0",
16
+ "@cutting/util": "4.54.0",
17
17
  "classnames": "^2.3.2",
18
18
  "resize-observer-polyfill": "^1.5.1"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@babel/runtime": "7.19.0",
22
- "@cutting/component-library": "5.28.0",
23
- "@cutting/devtools": "4.58.0",
22
+ "@cutting/component-library": "5.30.0",
23
+ "@cutting/devtools": "4.59.0",
24
24
  "@cutting/eslint-config": "4.41.0",
25
25
  "@cutting/tsconfig": "4.38.0",
26
- "@cutting/useful-types": "4.37.0",
26
+ "@cutting/useful-types": "4.38.0",
27
27
  "@testing-library/react": "^13.4.0",
28
- "@types/react": "18.0.20",
28
+ "@types/react": "18.0.21",
29
29
  "@types/react-dom": "18.0.6",
30
- "@vanilla-extract/babel-plugin": "1.2.0",
31
- "@vanilla-extract/css": "^1.9.0",
30
+ "@vanilla-extract/css": "^1.9.1",
32
31
  "@vanilla-extract/sprinkles": "1.5.0",
33
32
  "assert-ts": "0.3.4",
34
- "eslint": "8.23.1",
33
+ "eslint": "8.24.0",
35
34
  "react": "18.2.0",
36
35
  "react-dom": "18.2.0",
37
- "typescript": "4.8.3"
36
+ "typescript": "4.8.4"
38
37
  },
39
38
  "peerDependencies": {
40
39
  "react": ">= 18.x.x",
@@ -53,11 +52,6 @@
53
52
  ]
54
53
  }
55
54
  },
56
- "lint-staged": {
57
- "*.js": "eslint ./src/**/*.{js} --fix",
58
- "*.ts": "eslint ./src/**/*.{ts} --fix",
59
- "*.tsx": "eslint ./src/**/*.{tsx} --fix"
60
- },
61
55
  "scripts": {
62
56
  "build": "NODE_ENV=production devtools rollup",
63
57
  "lint": "eslint ./src/**/*.{ts,tsx} --fix",
package/vite.config.ts CHANGED
@@ -14,7 +14,7 @@ export default defineConfig({
14
14
  vanillaExtractPlugin(),
15
15
  react({
16
16
  babel: {
17
- plugins: ['@vanilla-extract/babel-plugin'],
17
+ plugins: [],
18
18
  },
19
19
  }),
20
20
  ],