@seamlessdocs/payment-modals 1.0.39 → 1.0.41
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/build/payment-modals.js +10 -10
- package/package.json +1 -1
- package/src/Components/ACHPaymentModal/Form/Form.module.css +7 -3
- package/src/Components/ACHPaymentModal/Form/index.jsx +2 -2
- package/src/Components/SelectPaymentModal/index.jsx +2 -2
- package/.idea/PaymentModals.iml +0 -8
- package/.idea/codeStyles/Project.xml +0 -44
- package/.idea/codeStyles/codeStyleConfig.xml +0 -5
- package/.idea/inspectionProfiles/Project_Default.xml +0 -6
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/vcs.xml +0 -6
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.firstNameContainer{
|
|
1
|
+
.firstNameContainer {
|
|
2
2
|
width: 100%;
|
|
3
3
|
margin-right: 7px;
|
|
4
4
|
}
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
margin-right: 7px;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
.
|
|
36
|
+
.inputsContainer {
|
|
37
37
|
display: flex;
|
|
38
38
|
|
|
39
39
|
margin-bottom: 13px;
|
|
@@ -79,11 +79,15 @@
|
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
@media (max-width: 600px) {
|
|
82
|
-
.
|
|
82
|
+
.inputsContainer {
|
|
83
83
|
flex-direction: column;
|
|
84
84
|
}
|
|
85
85
|
|
|
86
86
|
.routingNumberContainer {
|
|
87
87
|
margin: 0 0 13px;
|
|
88
88
|
}
|
|
89
|
+
|
|
90
|
+
.firstNameContainer {
|
|
91
|
+
margin: 0 0 13px;
|
|
92
|
+
}
|
|
89
93
|
}
|
|
@@ -121,7 +121,7 @@ const ACHForm = ({ onPay }) => {
|
|
|
121
121
|
>
|
|
122
122
|
{({ isValid, submitCount, setFieldValue, setFieldTouched }) => (
|
|
123
123
|
<Form>
|
|
124
|
-
<div className={styles.
|
|
124
|
+
<div className={styles.inputsContainer}>
|
|
125
125
|
<div className={styles.firstNameContainer}>
|
|
126
126
|
<FieldContainer name="firstName" label="First Name">
|
|
127
127
|
{field => <input className={styles.input} type="text" {...field} />}
|
|
@@ -133,7 +133,7 @@ const ACHForm = ({ onPay }) => {
|
|
|
133
133
|
</FieldContainer>
|
|
134
134
|
</div>
|
|
135
135
|
</div>
|
|
136
|
-
<div className={styles.
|
|
136
|
+
<div className={styles.inputsContainer}>
|
|
137
137
|
<div className={styles.routingNumberContainer}>
|
|
138
138
|
<FieldContainer name="routingNumber" label="Routing #">
|
|
139
139
|
{field => <input className={styles.input} type="text" {...field} />}
|
|
@@ -43,7 +43,7 @@ const SelectPaymentModal = ({
|
|
|
43
43
|
</div>
|
|
44
44
|
<div className={styles.paymentTypeLabel}>Bank Account</div>
|
|
45
45
|
<p className={styles.paymentValue}>
|
|
46
|
-
{
|
|
46
|
+
{isBankAccountFeeEnable && (
|
|
47
47
|
<>
|
|
48
48
|
<currency>$</currency>
|
|
49
49
|
<money>{Number(bankAccountValue).toFixed(2)}</money>
|
|
@@ -64,7 +64,7 @@ const SelectPaymentModal = ({
|
|
|
64
64
|
<img className={styles.creditCardIcon} src={creditCard} alt="credit card logo" />
|
|
65
65
|
<div className={styles.paymentTypeLabel}>Credit Card</div>
|
|
66
66
|
<p className={styles.paymentValue}>
|
|
67
|
-
{
|
|
67
|
+
{isCreditCardFeeEnable && (
|
|
68
68
|
<>
|
|
69
69
|
<currency>$</currency>
|
|
70
70
|
<money>{Number(creditCardValue).toFixed(2)}</money>
|
package/.idea/PaymentModals.iml
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module type="WEB_MODULE" version="4">
|
|
3
|
-
<component name="NewModuleRootManager">
|
|
4
|
-
<content url="file://$MODULE_DIR$" />
|
|
5
|
-
<orderEntry type="inheritedJdk" />
|
|
6
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
|
7
|
-
</component>
|
|
8
|
-
</module>
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
<component name="ProjectCodeStyleConfiguration">
|
|
2
|
-
<code_scheme name="Project" version="173">
|
|
3
|
-
<JSCodeStyleSettings version="0">
|
|
4
|
-
<option name="FORCE_SEMICOLON_STYLE" value="true" />
|
|
5
|
-
<option name="SPACE_BEFORE_FUNCTION_LEFT_PARENTH" value="false" />
|
|
6
|
-
<option name="USE_DOUBLE_QUOTES" value="false" />
|
|
7
|
-
<option name="FORCE_QUOTE_STYlE" value="true" />
|
|
8
|
-
<option name="ENFORCE_TRAILING_COMMA" value="Remove" />
|
|
9
|
-
<option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
|
|
10
|
-
<option name="SPACES_WITHIN_IMPORTS" value="true" />
|
|
11
|
-
<option name="IMPORT_PREFER_ABSOLUTE_PATH" value="TRUE" />
|
|
12
|
-
</JSCodeStyleSettings>
|
|
13
|
-
<TypeScriptCodeStyleSettings version="0">
|
|
14
|
-
<option name="FORCE_SEMICOLON_STYLE" value="true" />
|
|
15
|
-
<option name="SPACE_BEFORE_FUNCTION_LEFT_PARENTH" value="false" />
|
|
16
|
-
<option name="USE_DOUBLE_QUOTES" value="false" />
|
|
17
|
-
<option name="FORCE_QUOTE_STYlE" value="true" />
|
|
18
|
-
<option name="ENFORCE_TRAILING_COMMA" value="Remove" />
|
|
19
|
-
<option name="SPACES_WITHIN_OBJECT_LITERAL_BRACES" value="true" />
|
|
20
|
-
<option name="SPACES_WITHIN_IMPORTS" value="true" />
|
|
21
|
-
</TypeScriptCodeStyleSettings>
|
|
22
|
-
<codeStyleSettings language="JavaScript">
|
|
23
|
-
<option name="SOFT_MARGINS" value="100" />
|
|
24
|
-
<indentOptions>
|
|
25
|
-
<option name="INDENT_SIZE" value="2" />
|
|
26
|
-
<option name="CONTINUATION_INDENT_SIZE" value="2" />
|
|
27
|
-
<option name="TAB_SIZE" value="2" />
|
|
28
|
-
</indentOptions>
|
|
29
|
-
</codeStyleSettings>
|
|
30
|
-
<codeStyleSettings language="SCSS">
|
|
31
|
-
<indentOptions>
|
|
32
|
-
<option name="INDENT_SIZE" value="4" />
|
|
33
|
-
</indentOptions>
|
|
34
|
-
</codeStyleSettings>
|
|
35
|
-
<codeStyleSettings language="TypeScript">
|
|
36
|
-
<option name="SOFT_MARGINS" value="100" />
|
|
37
|
-
<indentOptions>
|
|
38
|
-
<option name="INDENT_SIZE" value="2" />
|
|
39
|
-
<option name="CONTINUATION_INDENT_SIZE" value="2" />
|
|
40
|
-
<option name="TAB_SIZE" value="2" />
|
|
41
|
-
</indentOptions>
|
|
42
|
-
</codeStyleSettings>
|
|
43
|
-
</code_scheme>
|
|
44
|
-
</component>
|
package/.idea/misc.xml
DELETED
package/.idea/modules.xml
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="ProjectModuleManager">
|
|
4
|
-
<modules>
|
|
5
|
-
<module fileurl="file://$PROJECT_DIR$/.idea/PaymentModals.iml" filepath="$PROJECT_DIR$/.idea/PaymentModals.iml" />
|
|
6
|
-
</modules>
|
|
7
|
-
</component>
|
|
8
|
-
</project>
|