@schematichq/schematic-components 0.7.10 → 0.7.11
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 +6537 -2803
- package/dist/schematic-components.d.ts +37 -39
- package/dist/schematic-components.esm.js +6641 -2907
- package/package.json +21 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@schematichq/schematic-components",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.11",
|
|
4
4
|
"main": "dist/schematic-components.cjs.js",
|
|
5
5
|
"module": "dist/schematic-components.esm.js",
|
|
6
6
|
"types": "dist/schematic-components.d.ts",
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
"clean": "rm -rf dist",
|
|
26
26
|
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
27
27
|
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --fix",
|
|
28
|
-
"openapi": "./generate_openapi.sh",
|
|
28
|
+
"openapi": "./generate_openapi.sh -c ./src/api/config_checkoutexternal.yml && ./generate_openapi.sh -c ./src/api/config_componentspublic.yml",
|
|
29
29
|
"test": "jest --config jest.config.js",
|
|
30
30
|
"tsc": "npx tsc"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@stripe/stripe-js": "^7.
|
|
33
|
+
"@stripe/stripe-js": "^7.1.0",
|
|
34
34
|
"classnames": "^2.5.1",
|
|
35
|
-
"i18next": "^
|
|
35
|
+
"i18next": "^25.0.0",
|
|
36
36
|
"lodash": "^4.17.21",
|
|
37
37
|
"pako": "^2.1.0",
|
|
38
38
|
"pluralize": "^8.0.0",
|
|
@@ -42,25 +42,28 @@
|
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@craftjs/core": "^0.2.12",
|
|
45
|
-
"@
|
|
46
|
-
"@
|
|
47
|
-
"@
|
|
45
|
+
"@eslint/css": "^0.6.0",
|
|
46
|
+
"@eslint/js": "^9.24.0",
|
|
47
|
+
"@eslint/json": "^0.11.0",
|
|
48
|
+
"@eslint/markdown": "^6.3.0",
|
|
49
|
+
"@microsoft/api-extractor": "^7.52.3",
|
|
50
|
+
"@openapitools/openapi-generator-cli": "^2.19.0",
|
|
51
|
+
"@stripe/react-stripe-js": "^3.6.0",
|
|
48
52
|
"@types/jest": "^29.5.14",
|
|
49
53
|
"@types/lodash": "^4.17.16",
|
|
50
54
|
"@types/pako": "^2.0.3",
|
|
51
55
|
"@types/pluralize": "^0.0.33",
|
|
52
|
-
"@types/react": "^19.
|
|
53
|
-
"@types/react-dom": "^19.
|
|
54
|
-
"@types/uuid": "^10.0.0",
|
|
55
|
-
"@typescript-eslint/eslint-plugin": "^8.28.0",
|
|
56
|
-
"@typescript-eslint/parser": "^8.28.0",
|
|
56
|
+
"@types/react": "^19.1.2",
|
|
57
|
+
"@types/react-dom": "^19.1.2",
|
|
57
58
|
"esbuild": "^0.25.2",
|
|
58
59
|
"esbuild-jest": "^0.5.0",
|
|
59
|
-
"eslint": "^
|
|
60
|
+
"eslint": "^9.24.0",
|
|
61
|
+
"eslint-import-resolver-typescript": "^4.3.2",
|
|
60
62
|
"eslint-plugin-import": "^2.31.0",
|
|
61
|
-
"eslint-plugin-react": "^7.37.
|
|
62
|
-
"eslint-plugin-react-hooks": "^5.
|
|
63
|
+
"eslint-plugin-react": "^7.37.5",
|
|
64
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
63
65
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
66
|
+
"globals": "^16.0.0",
|
|
64
67
|
"jest": "^29.7.0",
|
|
65
68
|
"jest-environment-jsdom": "^29.7.0",
|
|
66
69
|
"jest-esbuild": "^0.3.0",
|
|
@@ -68,8 +71,9 @@
|
|
|
68
71
|
"prettier": "^3.5.3",
|
|
69
72
|
"react": "^19.1.0",
|
|
70
73
|
"react-dom": "^19.1.0",
|
|
71
|
-
"ts-jest": "^29.3.
|
|
72
|
-
"typescript": "^5.
|
|
74
|
+
"ts-jest": "^29.3.2",
|
|
75
|
+
"typescript": "^5.8.3",
|
|
76
|
+
"typescript-eslint": "^8.30.1"
|
|
73
77
|
},
|
|
74
78
|
"peerDependencies": {
|
|
75
79
|
"@stripe/react-stripe-js": ">=3",
|