xendit-components-web 0.0.16 → 0.0.18

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/CHANGELOG.md CHANGED
@@ -2,6 +2,22 @@
2
2
 
3
3
  No unreleased changes.
4
4
 
5
+ # 0.0.17
6
+
7
+ ### Notable
8
+
9
+ Simplified the QR action UI, added a custom branded layout for QRIS actions.
10
+
11
+ Improved the dropdown widget.
12
+
13
+ Improved the card simulation UI in test mode.
14
+
15
+ # 0.0.17
16
+
17
+ ### Bug Fixes
18
+
19
+ - Fixed typescript import resolution
20
+
5
21
  # 0.0.16
6
22
 
7
23
  ### Bug Fixes
package/README.md CHANGED
@@ -19,10 +19,10 @@ npm install xendit-components-web --save
19
19
  Or load it directly from our CDN:
20
20
 
21
21
  ```html
22
- <script src="https://assets.xendit.co/components/v0.0.16/index.umd.js"></script>
22
+ <script src="https://assets.xendit.co/components/v0.0.18/index.umd.js"></script>
23
23
  ```
24
24
 
25
- Our npm package includes TypeScript types. You also download the [.d.ts file](https://assets.xendit.co/components/v0.0.16/index.d.ts) directly.
25
+ Our npm package includes TypeScript types. You also download the [.d.ts file](https://assets.xendit.co/components/v0.0.18/index.d.ts) directly.
26
26
 
27
27
  ## Sessions
28
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xendit-components-web",
3
- "version": "0.0.16",
3
+ "version": "0.0.18",
4
4
  "description": "Xendit frontend payment components SDK",
5
5
  "type": "module",
6
6
  "author": "Xendit",
@@ -25,25 +25,19 @@
25
25
  ],
26
26
  "types": "./sdk/dist/index.d.ts",
27
27
  "exports": {
28
- "node": {
29
- "import": {
30
- "types": "./sdk/dist/index.d.ts",
31
- "default": "./sdk/dist/esm-external/index.mjs"
28
+ ".": {
29
+ "types": "./sdk/dist/index.d.ts",
30
+ "node": {
31
+ "import": "./sdk/dist/esm-external/index.mjs",
32
+ "require": "./sdk/dist/cjs/index.cjs"
32
33
  },
33
- "require": {
34
- "types": "./sdk/dist/index.d.ts",
35
- "default": "./sdk/dist/cjs/index.cjs"
36
- }
37
- },
38
- "browser": {
39
- "import": {
40
- "types": "./sdk/dist/index.d.ts",
41
- "default": "./sdk/dist/esm-bundled/index.mjs"
34
+ "browser": {
35
+ "import": "./sdk/dist/esm-bundled/index.mjs",
36
+ "require": "./sdk/dist/index.umd.js"
42
37
  },
43
- "require": {
44
- "types": "./sdk/dist/index.d.ts",
45
- "default": "./sdk/dist/index.umd.js"
46
- }
38
+ "import": "./sdk/dist/esm-bundled/index.mjs",
39
+ "require": "./sdk/dist/index.umd.js",
40
+ "default": "./sdk/dist/esm-bundled/index.mjs"
47
41
  }
48
42
  },
49
43
  "scripts": {