@coinflowlabs/vue 0.2.3 → 0.2.5

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 (31) hide show
  1. package/README.md +9 -1
  2. package/dist/App.vue.d.ts +2 -0
  3. package/dist/coinflow-vue.js +7414 -6924
  4. package/dist/coinflow-vue.umd.cjs +12 -12
  5. package/dist/components/CoinflowIframe.vue.d.ts +6 -6
  6. package/dist/components/CoinflowPurchase.vue.d.ts +112 -113
  7. package/dist/components/CoinflowPurchaseProtection.vue.d.ts +5 -9
  8. package/dist/components/CoinflowWithdraw.vue.d.ts +90 -91
  9. package/dist/components/card-form/CoinflowCardNumberInput.vue.d.ts +7 -36
  10. package/dist/components/card-form/CoinflowCardNumberOnlyInput.vue.d.ts +7 -36
  11. package/dist/components/card-form/CoinflowCardOnlyInput.vue.d.ts +17 -0
  12. package/dist/components/card-form/CoinflowCvvInput.vue.d.ts +2 -4
  13. package/dist/components/card-form/useCardformIframe.d.ts +9 -10
  14. package/dist/components/mobile-wallet/CoinflowApplePayButton.vue.d.ts +7 -226
  15. package/dist/components/mobile-wallet/CoinflowGooglePayButton.vue.d.ts +7 -226
  16. package/dist/components/mobile-wallet/MobileWalletButton.vue.d.ts +5 -200
  17. package/dist/index.d.ts +9 -10
  18. package/dist/lib/common/CoinflowTypes.d.ts +6 -2
  19. package/dist/lib/common/CoinflowUtils.d.ts +6 -1
  20. package/dist/lib/common/SolanaPeerDeps.d.ts +1 -1
  21. package/dist/lib/common/card-form/TokenEx.d.ts +50 -2
  22. package/dist/lib/common/card-form/tokenexHelpers.d.ts +17 -32
  23. package/dist/lib/common/index.d.ts +0 -1
  24. package/dist/main.d.ts +1 -0
  25. package/dist/testing/CardFormTest.vue.d.ts +2 -0
  26. package/dist/testing/MobileWalletButtonTest.vue.d.ts +2 -0
  27. package/dist/testing/PurchaseTest.vue.d.ts +2 -0
  28. package/dist/testing/SavedCardFormTest.vue.d.ts +2 -0
  29. package/dist/testing/WithdrawTest.vue.d.ts +2 -0
  30. package/package.json +18 -14
  31. package/dist/lib/common/card-form/cardFormTypes.d.ts +0 -46
package/README.md CHANGED
@@ -47,7 +47,15 @@ Props:
47
47
 
48
48
  # Changelog
49
49
 
50
- # 0.2.3
50
+ ## 0.2.5
51
+
52
+ - Added `getWalletFromEmail` function to `CoinflowUtils`
53
+
54
+ ## 0.2.4
55
+
56
+ - Added placeholder CSS to card form elements
57
+
58
+ ## 0.2.3
51
59
 
52
60
  - Custom fonts for card elements
53
61
 
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;