@coinflowlabs/vue 1.11.0 → 1.12.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 +10 -0
- package/dist/coinflow-vue.js +5288 -5195
- package/dist/coinflow-vue.umd.cjs +11 -11
- package/dist/components/card-form/CoinflowCardFormV2.vue.d.ts +38 -0
- package/dist/index.d.ts +75 -1
- package/dist/lib/common/CoinflowTypes.d.ts +6 -0
- package/dist/lib/common/types/Subtotal.d.ts +10 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Coinflow Vue
|
|
2
2
|
|
|
3
|
+
## Changelog
|
|
4
|
+
|
|
5
|
+
### 1.12.0
|
|
6
|
+
|
|
7
|
+
- New `CoinflowCardForm` component with variant support (`card-form`, `card-number-form`, `cvv-form`) — simple card inputs with a single `tokenize()` call and full theme support
|
|
8
|
+
- Theme options: `font`, `fontSize`, `background`, `textColor`, `showCardIcon`, `cardNumberPlaceholder`, `cvvPlaceholder`, `expirationPlaceholder`
|
|
9
|
+
- `showCardIcon`: display the detected card brand (Visa, Mastercard, etc.) inline with the card number input
|
|
10
|
+
- Improved browser autocomplete support for card fields
|
|
11
|
+
- Improved security for iframe communication
|
|
12
|
+
|
|
3
13
|
## Withdraw
|
|
4
14
|
|
|
5
15
|
Props:
|