-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
46cd4e1
commit 84d9f13
Showing
50 changed files
with
2,612 additions
and
254 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.DS_Store |
Binary file not shown.
Binary file not shown.
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
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,39 @@ | ||
// | ||
// ADYInfoAppearance.h | ||
// Adyen3DS2 | ||
// | ||
// Copyright © 2018 Adyen. All rights reserved. | ||
// | ||
|
||
#import <Adyen3DS2/ADYAppearance.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/** | ||
Contains properties to customize the appearance of info items. | ||
*/ | ||
@interface ADYInfoAppearance : ADYAppearance | ||
|
||
/** | ||
The font in which heading text is displayed. | ||
*/ | ||
@property (nonatomic, strong, readwrite) UIFont *headingFont; | ||
|
||
/** | ||
The color in which heading text is displayed. | ||
*/ | ||
@property (nonatomic, strong, readwrite) UIColor *headingTextColor; | ||
|
||
/** | ||
The tint color of the item's selection indicator (the chevron). | ||
*/ | ||
@property (nonatomic, strong, readwrite) UIColor *selectionIndicatorTintColor; | ||
|
||
/** | ||
The color of the info item's border. | ||
*/ | ||
@property (nonatomic, strong, readwrite) UIColor *borderColor; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
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,34 @@ | ||
// | ||
// ADYSelectAppearance.h | ||
// Adyen3DS2 | ||
// | ||
// Copyright © 2018 Adyen. All rights reserved. | ||
// | ||
|
||
#import <Adyen3DS2/ADYAppearance.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/** | ||
Contains properties to customize the appearance of select controls. | ||
*/ | ||
@interface ADYSelectAppearance : ADYAppearance | ||
|
||
/** | ||
The color of the select control's borders. | ||
*/ | ||
@property (nonatomic, strong, readwrite) UIColor *borderColor; | ||
|
||
/** | ||
The color of a select control item's background when it's highlighted. | ||
*/ | ||
@property (nonatomic, strong, readwrite) UIColor *highlightedBackgroundColor; | ||
|
||
/** | ||
The tint color of the select control item's selection indicator. | ||
*/ | ||
@property (nonatomic, strong, readwrite) UIColor *selectionIndicatorTintColor; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
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.