xendit-components-web 0.0.11 → 0.0.12
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 +11 -3
- package/README.md +2 -2
- package/package.json +1 -1
- package/sdk/dist/index.esm.js +1 -1
- package/sdk/dist/index.umd.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
No unreleased changes.
|
|
4
4
|
|
|
5
|
+
# 0.0.12
|
|
6
|
+
|
|
7
|
+
### Bug fixes
|
|
8
|
+
|
|
9
|
+
- Fixed a bug where the credit card expiry field would not insert a slash if the user pasted the expiry date without a slash.
|
|
10
|
+
- Fixed poor UX when typing a slash in the credit card expiry field.
|
|
11
|
+
- Allow card expiry up to 2099
|
|
12
|
+
|
|
5
13
|
# 0.0.11
|
|
6
14
|
|
|
7
15
|
### Notable
|
|
@@ -12,20 +20,20 @@ Added new public method `pollImmediately` to immediently check for updates.
|
|
|
12
20
|
|
|
13
21
|
Changed the layout of the default action container.
|
|
14
22
|
|
|
15
|
-
|
|
23
|
+
### Bug fixes
|
|
16
24
|
|
|
17
25
|
- Fixed UX bugs in the dropdown widget.
|
|
18
26
|
- Prevent auto-updating the phone number country code if the user already typed a phone number.
|
|
19
27
|
|
|
20
28
|
# 0.0.10
|
|
21
29
|
|
|
22
|
-
|
|
30
|
+
### Bug fixes
|
|
23
31
|
|
|
24
32
|
Fixed npm publish.
|
|
25
33
|
|
|
26
34
|
# 0.0.9
|
|
27
35
|
|
|
28
|
-
|
|
36
|
+
### Bug fixes
|
|
29
37
|
|
|
30
38
|
Missing `.d.ts` file is restored.
|
|
31
39
|
|
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.
|
|
22
|
+
<script src="https://assets.xendit.co/components/v0.0.12/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.
|
|
25
|
+
Our npm package includes TypeScript types. You also download the [.d.ts file](https://assets.xendit.co/components/v0.0.12/index.d.ts) directly.
|
|
26
26
|
|
|
27
27
|
## Sessions
|
|
28
28
|
|