@coinflowlabs/vue 1.17.0 → 1.18.0
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 +4 -0
- package/dist/coinflow-vue.css +1 -0
- package/dist/coinflow-vue.js +7327 -7048
- package/dist/coinflow-vue.umd.cjs +20 -14
- package/dist/components/card-form/CoinflowCardFormV2.vue.d.ts +5 -4
- package/dist/index.d.ts +4 -3
- package/dist/lib/common/card-form/cardEntryLayout.d.ts +88 -0
- package/dist/lib/common/card-form/cardFormSkeleton.d.ts +104 -0
- package/dist/lib/common/index.d.ts +2 -0
- package/dist/testing/CardFormV2Test.vue.d.ts +8 -6
- package/dist/testing/SingleTest.vue.d.ts +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -58,6 +58,10 @@ Props:
|
|
|
58
58
|
|
|
59
59
|
# Changelog
|
|
60
60
|
|
|
61
|
+
## 1.18.0
|
|
62
|
+
|
|
63
|
+
- Added loading states to the `CoinflowCardForm`, `CoinflowCardNumberInput`, `CoinflowCvvOnlyInput` components
|
|
64
|
+
|
|
61
65
|
## 1.15.0
|
|
62
66
|
|
|
63
67
|
- Added `cardBackground` to `MerchantTheme` to control the inner card-entry surface independently of the outer canvas `background`
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@keyframes coinflow-card-form-skeleton-pulse{0%,to{opacity:1}50%{opacity:.4}}
|