@voyantjs/checkout-ui 0.24.0 → 0.24.2
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/package.json +12 -12
- package/src/styles.css +11 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyantjs/checkout-ui",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.2",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"react": "^19.0.0",
|
|
30
30
|
"react-dom": "^19.0.0",
|
|
31
31
|
"sonner": "^2.0.0",
|
|
32
|
-
"@voyantjs/checkout": "0.24.
|
|
33
|
-
"@voyantjs/checkout-react": "0.24.
|
|
34
|
-
"@voyantjs/finance": "0.24.
|
|
35
|
-
"@voyantjs/finance-react": "0.24.
|
|
36
|
-
"@voyantjs/ui": "0.24.
|
|
32
|
+
"@voyantjs/checkout": "0.24.2",
|
|
33
|
+
"@voyantjs/checkout-react": "0.24.2",
|
|
34
|
+
"@voyantjs/finance": "0.24.2",
|
|
35
|
+
"@voyantjs/finance-react": "0.24.2",
|
|
36
|
+
"@voyantjs/ui": "0.24.2"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@tanstack/react-query": "^5.96.2",
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
"sonner": "^2.0.7",
|
|
46
46
|
"typescript": "^6.0.2",
|
|
47
47
|
"vitest": "^4.1.2",
|
|
48
|
-
"@voyantjs/checkout": "0.24.
|
|
49
|
-
"@voyantjs/checkout-react": "0.24.
|
|
50
|
-
"@voyantjs/finance": "0.24.
|
|
51
|
-
"@voyantjs/finance-react": "0.24.
|
|
52
|
-
"@voyantjs/ui": "0.24.
|
|
48
|
+
"@voyantjs/checkout": "0.24.2",
|
|
49
|
+
"@voyantjs/checkout-react": "0.24.2",
|
|
50
|
+
"@voyantjs/finance": "0.24.2",
|
|
51
|
+
"@voyantjs/finance-react": "0.24.2",
|
|
52
|
+
"@voyantjs/ui": "0.24.2",
|
|
53
53
|
"@voyantjs/voyant-typescript-config": "0.1.0"
|
|
54
54
|
},
|
|
55
55
|
"files": [
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
},
|
|
62
62
|
"scripts": {
|
|
63
63
|
"build": "tsc -p tsconfig.json",
|
|
64
|
-
"clean": "rm -rf dist",
|
|
64
|
+
"clean": "rm -rf dist tsconfig.tsbuildinfo",
|
|
65
65
|
"typecheck": "tsc --noEmit",
|
|
66
66
|
"lint": "biome check src/",
|
|
67
67
|
"test": "vitest run --passWithNoTests"
|
package/src/styles.css
CHANGED
|
@@ -1 +1,11 @@
|
|
|
1
|
-
/*
|
|
1
|
+
/* Tailwind v4 source-detection helper.
|
|
2
|
+
*
|
|
3
|
+
* Templates that consume this package should `@import` this CSS so Tailwind
|
|
4
|
+
* scans these component files for utility classes:
|
|
5
|
+
*
|
|
6
|
+
* @import "@voyantjs/checkout-ui/styles.css";
|
|
7
|
+
*
|
|
8
|
+
* Without it, classes that only appear inside this package (e.g. payment link
|
|
9
|
+
* landing utilities) won't be compiled into the final bundle.
|
|
10
|
+
*/
|
|
11
|
+
@source "./components/**/*.{ts,tsx}";
|