-
Notifications
You must be signed in to change notification settings - Fork 35
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
Removed Buttons colors for V2 #243
Conversation
@@ -14,7 +14,7 @@ class PayPalCreditButton_Tests: XCTestCase { | |||
let sut = PayPalCreditButton() | |||
XCTAssertEqual(sut.edges, PaymentButtonEdges.softEdges) | |||
XCTAssertEqual(sut.size, PaymentButtonSize.collapsed) | |||
XCTAssertEqual(sut.color, PaymentButtonColor.darkBlue) | |||
XCTAssertEqual(sut.color, PaymentButtonColor.white) |
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.
Just confirming, should white or gold be the default color?
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.
Good point, I just checked Figma and gold is the recommended/default color. Will make that update :)
@stechiu does this enum embedded in PayPalButton need updating?
|
Missed this one, thanks! |
It looks like we will also need to clean up the demo app with these changes. See:
|
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.
Beside the feedback from the rest of the team, it LGTM!!!
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.
LGTM
Reason for changes
We will remove the deprecated colors in V2
Summary of changes
.black
,.silver
,.blue
, and.darkBlue
as per QL button redesign requirementsChecklist
Authors