@schematichq/schematic-components 2.2.0 → 2.3.1
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/README.md +52 -0
- package/dist/schematic-components.cjs.js +696 -200
- package/dist/schematic-components.d.ts +923 -412
- package/dist/schematic-components.esm.js +735 -239
- package/package.json +19 -26
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@schematichq/schematic-components",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"main": "dist/schematic-components.cjs.js",
|
|
5
5
|
"module": "dist/schematic-components.esm.js",
|
|
6
6
|
"types": "dist/schematic-components.d.ts",
|
|
@@ -27,13 +27,14 @@
|
|
|
27
27
|
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
28
28
|
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --fix",
|
|
29
29
|
"openapi": "./generate_openapi.sh -c ./src/api/config_checkoutexternal.yml && ./generate_openapi.sh -c ./src/api/config_componentspublic.yml",
|
|
30
|
-
"test": "
|
|
30
|
+
"test": "./test.sh",
|
|
31
|
+
"test:watch": "vitest",
|
|
31
32
|
"tsc": "npx tsc",
|
|
32
33
|
"test:demo": "../scripts/test-components.sh"
|
|
33
34
|
},
|
|
34
35
|
"dependencies": {
|
|
35
36
|
"@schematichq/schematic-icons": "^0.5.2",
|
|
36
|
-
"@stripe/stripe-js": "^8.
|
|
37
|
+
"@stripe/stripe-js": "^8.4.0",
|
|
37
38
|
"lodash": "^4.17.21",
|
|
38
39
|
"pako": "^2.1.0",
|
|
39
40
|
"styled-components": "^6.1.19",
|
|
@@ -43,41 +44,36 @@
|
|
|
43
44
|
"@eslint/js": "^9.39.1",
|
|
44
45
|
"@eslint/json": "^0.14.0",
|
|
45
46
|
"@eslint/markdown": "^7.5.1",
|
|
46
|
-
"@
|
|
47
|
-
"@
|
|
48
|
-
"@openapitools/openapi-generator-cli": "^2.25.0",
|
|
47
|
+
"@microsoft/api-extractor": "^7.55.0",
|
|
48
|
+
"@openapitools/openapi-generator-cli": "^2.25.1",
|
|
49
49
|
"@stripe/react-stripe-js": "^5.3.0",
|
|
50
|
-
"@swc/core": "^1.15.
|
|
51
|
-
"@swc/jest": "^0.2.39",
|
|
52
|
-
"@swc/plugin-styled-components": "^11.0.0",
|
|
50
|
+
"@swc/core": "^1.15.2",
|
|
53
51
|
"@testing-library/dom": "^10.4.1",
|
|
54
52
|
"@testing-library/jest-dom": "^6.9.1",
|
|
55
53
|
"@testing-library/react": "^16.3.0",
|
|
56
|
-
"@types/jest": "^30.0.0",
|
|
57
54
|
"@types/lodash": "^4.17.20",
|
|
58
55
|
"@types/pako": "^2.0.4",
|
|
59
|
-
"@types/react": "^19.2.
|
|
60
|
-
"@types/react-dom": "^19.2.
|
|
56
|
+
"@types/react": "^19.2.6",
|
|
57
|
+
"@types/react-dom": "^19.2.3",
|
|
58
|
+
"@vitest/browser": "^4.0.10",
|
|
61
59
|
"esbuild": "^0.27.0",
|
|
62
60
|
"eslint": "^9.39.1",
|
|
63
61
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
64
62
|
"eslint-plugin-import": "^2.32.0",
|
|
65
|
-
"eslint-plugin-jest": "^29.1.0",
|
|
66
63
|
"eslint-plugin-react": "^7.37.5",
|
|
67
|
-
"eslint-plugin-react-hooks": "^7.0.
|
|
64
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
68
65
|
"globals": "^16.5.0",
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"jest-styled-components": "^7.2.0",
|
|
74
|
-
"msw": "2.11.6",
|
|
66
|
+
"happy-dom": "^20.0.10",
|
|
67
|
+
"i18next": "^25.6.2",
|
|
68
|
+
"jsdom": "^27.2.0",
|
|
69
|
+
"msw": "^2.12.2",
|
|
75
70
|
"prettier": "^3.6.2",
|
|
76
71
|
"react": "^19.2.0",
|
|
77
72
|
"react-dom": "^19.2.0",
|
|
78
|
-
"react-i18next": "^16.
|
|
73
|
+
"react-i18next": "^16.3.3",
|
|
79
74
|
"typescript": "^5.9.3",
|
|
80
|
-
"typescript-eslint": "^8.
|
|
75
|
+
"typescript-eslint": "^8.47.0",
|
|
76
|
+
"vitest": "^4.0.10"
|
|
81
77
|
},
|
|
82
78
|
"peerDependencies": {
|
|
83
79
|
"@stripe/react-stripe-js": ">=3",
|
|
@@ -88,9 +84,6 @@
|
|
|
88
84
|
},
|
|
89
85
|
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
|
|
90
86
|
"msw": {
|
|
91
|
-
"workerDirectory": [
|
|
92
|
-
"",
|
|
93
|
-
"src/test"
|
|
94
|
-
]
|
|
87
|
+
"workerDirectory": ["", "src/test"]
|
|
95
88
|
}
|
|
96
89
|
}
|