@schematichq/schematic-components 2.10.3 → 2.12.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/dist/schematic-components.cjs.js +4111 -2620
- package/dist/schematic-components.d.ts +412 -12
- package/dist/schematic-components.esm.js +3937 -2446
- package/package.json +14 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@schematichq/schematic-components",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.12.0",
|
|
4
4
|
"main": "dist/schematic-components.cjs.js",
|
|
5
5
|
"module": "dist/schematic-components.esm.js",
|
|
6
6
|
"types": "dist/schematic-components.d.ts",
|
|
@@ -33,13 +33,13 @@
|
|
|
33
33
|
"test:demo": "../scripts/test-components.sh"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@schematichq/schematic-icons": "^0.
|
|
37
|
-
"@stripe/stripe-js": "^9.
|
|
38
|
-
"i18next": "^26.0
|
|
36
|
+
"@schematichq/schematic-icons": "^0.6.0",
|
|
37
|
+
"@stripe/stripe-js": "^9.6.0",
|
|
38
|
+
"i18next": "^26.2.0",
|
|
39
39
|
"lodash": "^4.18.1",
|
|
40
40
|
"pako": "^2.1.0",
|
|
41
41
|
"react-i18next": "16.1.6",
|
|
42
|
-
"styled-components": "6.4.1",
|
|
42
|
+
"styled-components": "^6.4.1",
|
|
43
43
|
"uuid": "^14.0.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"@eslint/markdown": "^8.0.1",
|
|
49
49
|
"@microsoft/api-extractor": "^7.58.7",
|
|
50
50
|
"@openapitools/openapi-generator-cli": "^2.32.0",
|
|
51
|
-
"@stripe/react-stripe-js": "^6.
|
|
52
|
-
"@swc/core": "^1.15.
|
|
51
|
+
"@stripe/react-stripe-js": "^6.4.0",
|
|
52
|
+
"@swc/core": "^1.15.33",
|
|
53
53
|
"@testing-library/dom": "^10.4.1",
|
|
54
54
|
"@testing-library/jest-dom": "^6.9.1",
|
|
55
55
|
"@testing-library/react": "^16.3.2",
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"@types/pako": "^2.0.4",
|
|
58
58
|
"@types/react": "^19.2.14",
|
|
59
59
|
"@types/react-dom": "^19.2.3",
|
|
60
|
-
"@vitest/browser": "^4.1.
|
|
60
|
+
"@vitest/browser": "^4.1.6",
|
|
61
61
|
"esbuild": "^0.28.0",
|
|
62
|
-
"eslint": "^10.
|
|
62
|
+
"eslint": "^10.4.0",
|
|
63
63
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
64
64
|
"eslint-plugin-import-x": "^4.16.2",
|
|
65
65
|
"eslint-plugin-react": "^7.37.5",
|
|
@@ -67,13 +67,13 @@
|
|
|
67
67
|
"globals": "^17.6.0",
|
|
68
68
|
"happy-dom": "^20.9.0",
|
|
69
69
|
"jsdom": "^29.1.1",
|
|
70
|
-
"msw": "^2.14.
|
|
70
|
+
"msw": "^2.14.6",
|
|
71
71
|
"prettier": "^3.8.3",
|
|
72
|
-
"react": "^19.2.
|
|
73
|
-
"react-dom": "^19.2.
|
|
72
|
+
"react": "^19.2.6",
|
|
73
|
+
"react-dom": "^19.2.6",
|
|
74
74
|
"typescript": "^6.0.3",
|
|
75
|
-
"typescript-eslint": "^8.59.
|
|
76
|
-
"vitest": "^4.1.
|
|
75
|
+
"typescript-eslint": "^8.59.4",
|
|
76
|
+
"vitest": "^4.1.6"
|
|
77
77
|
},
|
|
78
78
|
"peerDependencies": {
|
|
79
79
|
"@stripe/react-stripe-js": ">=3",
|
|
@@ -81,8 +81,6 @@
|
|
|
81
81
|
"react-dom": ">=18"
|
|
82
82
|
},
|
|
83
83
|
"resolutions": {
|
|
84
|
-
"axios": ">=1.15.0",
|
|
85
|
-
"basic-ftp": ">=5.2.0",
|
|
86
84
|
"minimatch": ">=3.1.3",
|
|
87
85
|
"rollup": ">=4.59.0",
|
|
88
86
|
"undici": ">=7.24.0"
|