@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.
Files changed (28) hide show
  1. package/README.md +8 -0
  2. package/dist/App.vue.d.ts +1 -1
  3. package/dist/coinflow-vue.js +8245 -9983
  4. package/dist/coinflow-vue.umd.cjs +12 -22
  5. package/dist/components/CoinflowIframe.vue.d.ts +6 -6
  6. package/dist/components/CoinflowPurchase.vue.d.ts +68 -3
  7. package/dist/components/CoinflowPurchaseProtection.vue.d.ts +3 -3
  8. package/dist/components/CoinflowWithdraw.vue.d.ts +65 -8
  9. package/dist/components/card-form/CoinflowCardNumberInput.vue.d.ts +4 -4
  10. package/dist/components/card-form/CoinflowCardNumberOnlyInput.vue.d.ts +4 -4
  11. package/dist/components/card-form/CoinflowCvvInput.vue.d.ts +1 -1
  12. package/dist/components/card-form/CoinflowCvvOnlyInput.vue.d.ts +4 -4
  13. package/dist/components/card-form/useCardformIframe.d.ts +20 -3
  14. package/dist/components/mobile-wallet/ApplePayOverlay.vue.d.ts +12 -0
  15. package/dist/components/mobile-wallet/CoinflowApplePayButton.vue.d.ts +6 -10
  16. package/dist/components/mobile-wallet/CoinflowGooglePayButton.vue.d.ts +6 -10
  17. package/dist/components/mobile-wallet/GooglePayOverlay.vue.d.ts +12 -0
  18. package/dist/components/mobile-wallet/MobileWalletButton.vue.d.ts +39 -9
  19. package/dist/lib/common/CoinflowLibMessageHandlers.d.ts +2 -1
  20. package/dist/lib/common/CoinflowTypes.d.ts +19 -6
  21. package/dist/lib/common/CoinflowUtils.d.ts +7 -1
  22. package/dist/testing/CardFormTest.vue.d.ts +1 -1
  23. package/dist/testing/MobileWalletButtonTest.vue.d.ts +1 -1
  24. package/dist/testing/PurchaseTest.vue.d.ts +1 -1
  25. package/dist/testing/SavedCardFormTest.vue.d.ts +1 -1
  26. package/dist/testing/WithdrawTest.vue.d.ts +1 -1
  27. package/dist/testing/YouPay.vue.d.ts +2 -0
  28. 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').ExtractPropTypes<{}>>, {}, {}>;
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;