@thecb/components 3.1.3 → 3.1.4-beta.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/dist/cb-components.esm.js +23576 -0
- package/dist/cb-components.js +94714 -0
- package/dist/index.cjs.js +1 -8
- package/dist/index.esm.js +36084 -0
- package/package.json +1 -1
- package/src/components/molecules/payment-form-card/PaymentFormCard.js +0 -16
- package/.tool-versions +0 -1
package/package.json
CHANGED
|
@@ -108,22 +108,6 @@ const PaymentFormCard = ({
|
|
|
108
108
|
/>
|
|
109
109
|
</Box>
|
|
110
110
|
)}
|
|
111
|
-
{!!fees?.value && (
|
|
112
|
-
<Alert
|
|
113
|
-
heading="Processing Fee"
|
|
114
|
-
text={`There is a processing fee of ${
|
|
115
|
-
fees.type === "FLAT"
|
|
116
|
-
? `${displayCurrency(fees.value)}`
|
|
117
|
-
: `${fees.value * 100}%`
|
|
118
|
-
} ${ifElse(
|
|
119
|
-
isNil,
|
|
120
|
-
always(""),
|
|
121
|
-
a => `with a minimum of ${displayCurrency(a)} `
|
|
122
|
-
)(fees.minimumInCents)} on all card payments.`}
|
|
123
|
-
variant="info"
|
|
124
|
-
showQuitLink={false}
|
|
125
|
-
/>
|
|
126
|
-
)}
|
|
127
111
|
</FormInputColumn>
|
|
128
112
|
</FormContainer>
|
|
129
113
|
);
|
package/.tool-versions
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
nodejs 10.13.0
|