-
Notifications
You must be signed in to change notification settings - Fork 943
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add stripe business accounts #980
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
dd33c4d
Add fields for company name and tax id
OtterleyW abe9733
Use radio buttons in PayoutDetailsForm
OtterleyW 1e5e70a
Separate PayoutDetailsForm to PayoutDetailsFormIndividual and PayoutD…
OtterleyW a3400f4
Create PayoutDetailsPersonalDetails subcomponent
OtterleyW 7dff833
Update PayoutDetailsAddress to contain section title
OtterleyW 338fb79
Create PayoutDetailsBankDetails subcomponent
OtterleyW a3b43ce
Update user.duck.js to support also business accounts
OtterleyW 1ba857c
Add country specific tax id field labels
OtterleyW 6319c77
Add personal address to company account if required
OtterleyW 9d8d211
Create IconAdd
OtterleyW 9c31f3e
Add additional owners to company account if required
OtterleyW 08eb9e3
Update IconClose so it can be used in smaller size
OtterleyW d0bc25f
Add new translation keys to fr.json
OtterleyW ea22f94
Synchronize white modal width
OtterleyW d22da25
Update changelog
OtterleyW File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@import '../../marketplace.css'; | ||
|
||
.root { | ||
fill: var(--marketplaceColor); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import IconAdd from './IconAdd'; | ||
|
||
export const Icon = { | ||
component: IconAdd, | ||
props: {}, | ||
group: 'icons', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import classNames from 'classnames'; | ||
|
||
import css from './IconAdd.css'; | ||
|
||
const IconAdd = props => { | ||
const { className, rootClassName } = props; | ||
const classes = classNames(rootClassName || css.root, className); | ||
|
||
return ( | ||
<svg className={classes} width="12" height="12" xmlns="http://www.w3.org/2000/svg"> | ||
<path | ||
d="M6.89 10.4V6.888h3.509a.889.889 0 1 0 0-1.779H6.89V1.6a.89.89 0 0 0-1.778 0v3.511h-3.51a.888.888 0 1 0 0 1.778h3.51v3.51a.889.889 0 1 0 1.778 0" | ||
fillRule="evenodd" | ||
/> | ||
</svg> | ||
); | ||
}; | ||
|
||
const { string } = PropTypes; | ||
|
||
IconAdd.defaultProps = { | ||
className: null, | ||
rootClassName: null, | ||
}; | ||
|
||
IconAdd.propTypes = { | ||
className: string, | ||
rootClassName: string, | ||
}; | ||
|
||
export default IconAdd; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,7 +62,7 @@ | |
padding-top: 40px; | ||
|
||
@media (--viewportMedium) { | ||
width: 571px; | ||
width: 604px; | ||
padding-top: 11px; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is OK but can be achieved with ternary too.