flintn-checkout 0.0.4 → 0.0.6

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +11 -4
package/README.md CHANGED
@@ -168,8 +168,8 @@ interface FormStyles {
168
168
  errorMessageColor?: string;
169
169
  buttonColor?: string;
170
170
  buttonHoverColor?: string;
171
- buttonBorderRadius?: string
172
- buttonText?: string
171
+ buttonBorderRadius?: string;
172
+ buttonText?: string;
173
173
  }
174
174
  ```
175
175
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flintn-checkout",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "description": "FlintN Payment SDK — drop-in iframe checkout for card payments and wallets with localization and theming.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -23,7 +23,9 @@
23
23
  ],
24
24
  "author": "FlintN (https://flintn.com), support@flintn.com",
25
25
  "homepage": "https://tutorvue-group.gitbook.io/flintn-docs",
26
- "repository": { "url": "https://github.com" },
26
+ "repository": {
27
+ "url": "https://github.com"
28
+ },
27
29
  "exports": {
28
30
  ".": {
29
31
  "import": "./dist/index.mjs",
@@ -36,7 +38,10 @@
36
38
  "types": "./dist/react.d.ts"
37
39
  }
38
40
  },
39
- "files": ["dist"],
41
+ "files": [
42
+ "dist",
43
+ "README.md"
44
+ ],
40
45
  "scripts": {
41
46
  "build": "tsup",
42
47
  "dev": "tsup --watch",
@@ -46,7 +51,9 @@
46
51
  "react": ">=17.0.0"
47
52
  },
48
53
  "peerDependenciesMeta": {
49
- "react": { "optional": true }
54
+ "react": {
55
+ "optional": true
56
+ }
50
57
  },
51
58
  "devDependencies": {
52
59
  "@types/react": "^19.0.0",