@coinflowlabs/vue 0.2.6 → 0.2.8
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 +8 -0
- package/dist/App.vue.d.ts +1 -1
- package/dist/coinflow-vue.js +8245 -9983
- package/dist/coinflow-vue.umd.cjs +12 -22
- package/dist/components/CoinflowIframe.vue.d.ts +6 -6
- package/dist/components/CoinflowPurchase.vue.d.ts +68 -3
- package/dist/components/CoinflowPurchaseProtection.vue.d.ts +3 -3
- package/dist/components/CoinflowWithdraw.vue.d.ts +65 -8
- package/dist/components/card-form/CoinflowCardNumberInput.vue.d.ts +4 -4
- package/dist/components/card-form/CoinflowCardNumberOnlyInput.vue.d.ts +4 -4
- package/dist/components/card-form/CoinflowCvvInput.vue.d.ts +1 -1
- package/dist/components/card-form/CoinflowCvvOnlyInput.vue.d.ts +4 -4
- package/dist/components/card-form/useCardformIframe.d.ts +20 -3
- package/dist/components/mobile-wallet/ApplePayOverlay.vue.d.ts +12 -0
- package/dist/components/mobile-wallet/CoinflowApplePayButton.vue.d.ts +6 -10
- package/dist/components/mobile-wallet/CoinflowGooglePayButton.vue.d.ts +6 -10
- package/dist/components/mobile-wallet/GooglePayOverlay.vue.d.ts +12 -0
- package/dist/components/mobile-wallet/MobileWalletButton.vue.d.ts +39 -9
- package/dist/lib/common/CoinflowLibMessageHandlers.d.ts +2 -1
- package/dist/lib/common/CoinflowTypes.d.ts +19 -6
- package/dist/lib/common/CoinflowUtils.d.ts +7 -1
- package/dist/testing/CardFormTest.vue.d.ts +1 -1
- package/dist/testing/MobileWalletButtonTest.vue.d.ts +1 -1
- package/dist/testing/PurchaseTest.vue.d.ts +1 -1
- package/dist/testing/SavedCardFormTest.vue.d.ts +1 -1
- package/dist/testing/WithdrawTest.vue.d.ts +1 -1
- package/dist/testing/YouPay.vue.d.ts +2 -0
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -47,6 +47,14 @@ Props:
|
|
|
47
47
|
|
|
48
48
|
# Changelog
|
|
49
49
|
|
|
50
|
+
## 0.2.8
|
|
51
|
+
|
|
52
|
+
- Added `onError` callback to Apple Pay and Google Pay buttons
|
|
53
|
+
|
|
54
|
+
## 0.2.7
|
|
55
|
+
|
|
56
|
+
- Added overlay to digital wallet buttons to make the loading time 0
|
|
57
|
+
|
|
50
58
|
## 0.2.6
|
|
51
59
|
|
|
52
60
|
- Fixed `CoinflowCvvOnlyInput` issues
|
package/dist/App.vue.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
2
|
export default _default;
|