Skip to content

Commit eee10ae

Browse files
committed
rollback/blackout of D85: Add MDCButton
1 parent 6182b64 commit eee10ae

32 files changed

+7
-2402
lines changed

Catalog.xcworkspace/contents.xcworkspacedata

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build_tests/CocoapodsObjCApp/Podfile.lock

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
PODS:
22
- material-components-ios (0.1.0):
3-
- material-components-ios/Buttons (= 0.1.0)
43
- material-components-ios/Ink (= 0.1.0)
54
- material-components-ios/PageControl (= 0.1.0)
65
- material-components-ios/private (= 0.1.0)
@@ -10,11 +9,6 @@ PODS:
109
- material-components-ios/Slider (= 0.1.0)
1110
- material-components-ios/SpritedAnimationView (= 0.1.0)
1211
- material-components-ios/Typography (= 0.1.0)
13-
- material-components-ios/Buttons (0.1.0):
14-
- material-components-ios/Ink
15-
- material-components-ios/ShadowElevations
16-
- material-components-ios/ShadowLayer
17-
- material-components-ios/Typography
1812
- material-components-ios/Ink (0.1.0)
1913
- material-components-ios/PageControl (0.1.0)
2014
- material-components-ios/private (0.1.0):
@@ -40,6 +34,6 @@ EXTERNAL SOURCES:
4034
:path: ../../
4135

4236
SPEC CHECKSUMS:
43-
material-components-ios: 6cf6a59e466857e0c2caef944a9f26e78806050c
37+
material-components-ios: 90b3d23cebcb2913875bbab015605ebe103b5ab1
4438

4539
COCOAPODS: 0.39.0

build_tests/CocoapodsSwiftApp/Podfile.lock

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
PODS:
22
- material-components-ios (0.1.0):
3-
- material-components-ios/Buttons (= 0.1.0)
43
- material-components-ios/Ink (= 0.1.0)
54
- material-components-ios/PageControl (= 0.1.0)
65
- material-components-ios/private (= 0.1.0)
@@ -10,11 +9,6 @@ PODS:
109
- material-components-ios/Slider (= 0.1.0)
1110
- material-components-ios/SpritedAnimationView (= 0.1.0)
1211
- material-components-ios/Typography (= 0.1.0)
13-
- material-components-ios/Buttons (0.1.0):
14-
- material-components-ios/Ink
15-
- material-components-ios/ShadowElevations
16-
- material-components-ios/ShadowLayer
17-
- material-components-ios/Typography
1812
- material-components-ios/Ink (0.1.0)
1913
- material-components-ios/PageControl (0.1.0)
2014
- material-components-ios/private (0.1.0):
@@ -40,6 +34,6 @@ EXTERNAL SOURCES:
4034
:path: ../../
4135

4236
SPEC CHECKSUMS:
43-
material-components-ios: 6cf6a59e466857e0c2caef944a9f26e78806050c
37+
material-components-ios: 90b3d23cebcb2913875bbab015605ebe103b5ab1
4438

4539
COCOAPODS: 0.39.0

build_tests/classes/objective_c/MDCBuildTestViewController.m

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,21 @@
1616

1717
#import "MDCBuildTestViewController.h"
1818

19-
#import <MaterialButtons.h>
20-
#import <MaterialInk.h>
2119
#import <MaterialPageControl.h>
2220
#import <MaterialSlider.h>
2321
#import <MaterialScrollViewDelegateMultiplexer.h>
24-
#import <MaterialShadowElevations.h>
2522
#import <MaterialShadowLayer.h>
2623
#import <MaterialSpritedAnimationView.h>
2724
#import <MaterialTypography.h>
25+
#import <MaterialInk.h>
2826

2927
@implementation MDCBuildTestViewController
3028

3129
- (void)viewDidLoad {
3230
[super viewDidLoad];
3331
self.view.backgroundColor = [UIColor whiteColor];
3432

35-
// Testing build and linking so all we need to do is touch the component objects.
33+
// Testing build and linking so all we need to do is touch the component objects.
3634
#pragma mark Slider
3735

3836
MDCSlider *slider = [[MDCSlider alloc] initWithFrame:CGRectMake(0, 0, 100, 27)];
@@ -47,12 +45,12 @@ - (void)viewDidLoad {
4745
#pragma mark Ink
4846

4947
NSAssert([[MDCInkTouchController alloc] initWithView:self.view],
50-
@"Expecting to find a valid object for MDCInkTouchController.");
48+
@"Expecting to find a valid object for MDCInkTouchController.");
5149

5250
#pragma mark ScrollViewDelegateMultiplexer
5351

5452
NSAssert([[MDCScrollViewDelegateMultiplexer alloc] init],
55-
@"Expecting to find a valid object for MDCScrollViewDelegateMultiplexer.");
53+
@"Expecting to find a valid object for slider.");
5654

5755
#pragma mark ShadowLayer
5856

@@ -61,7 +59,7 @@ - (void)viewDidLoad {
6159
#pragma mark SpritedAnimation
6260

6361
NSAssert([[MDCSpritedAnimationView alloc] init],
64-
@"Expecting to find a valid object for MDCSpritedAnimationView.");
62+
@"Expecting to find a valid object for MDCSpritedAnimationView.");
6563

6664
#pragma mark PageControl
6765

@@ -71,9 +69,6 @@ - (void)viewDidLoad {
7169
pageControl.center = CGPointMake(100, 145);
7270
NSAssert(pageControl, @"Expecting to find a valid object for MDCPageControl.");
7371

74-
#pragma mark Buttons
75-
76-
NSAssert([[MDCButton alloc] init], @"Expecting to find a valid object for MDCButton.");
7772
}
7873

7974
@end

build_tests/classes/swift/MDCBuildTestViewController.swift

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,5 @@ class MDCBuildTestViewController: UIViewController {
5454
pageControl.center = CGPointMake(100, 145);
5555
assert(pageControl.isKindOfClass(MDCPageControl), "Expecting to find a valid object for MDCSpritedAnimationView");
5656

57-
// MARK: Buttons
58-
assert(MDCButton.init().isKindOfClass(MDCButton), "Expecting to find a valid object for MDCButton");
59-
6057
}
6158
}

components/Buttons/.jazzy.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)