-
Notifications
You must be signed in to change notification settings - Fork 947
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
Showing
37 changed files
with
1,741 additions
and
257 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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ load 'scripts/generated/icons.rb' | |
|
||
Pod::Spec.new do |s| | ||
s.name = "MaterialComponents" | ||
s.version = "10.0.0" | ||
s.version = "10.1.0" | ||
s.authors = { 'Apple platform engineering at Google' => '[email protected]' } | ||
s.summary = "A collection of stand-alone production-ready UI libraries focused on design details." | ||
s.homepage = "https://github.com/google/material-components-ios" | ||
|
@@ -38,6 +38,12 @@ Pod::Spec.new do |s| | |
# end | ||
# | ||
|
||
s.subspec "ActivityIndicator" do |ss| | ||
ss.public_header_files = "components/#{ss.base_name}/src/*.h" | ||
ss.source_files = "components/#{ss.base_name}/src/*.{h,m}", "components/#{ss.base_name}/src/private/*.{h,m}" | ||
ss.header_mappings_dir = "components/#{ss.base_name}/src/*" | ||
end | ||
|
||
s.subspec "AppBar" do |ss| | ||
ss.public_header_files = "components/#{ss.base_name}/src/*.h" | ||
ss.source_files = "components/#{ss.base_name}/src/*.{h,m}" | ||
|
@@ -80,6 +86,8 @@ Pod::Spec.new do |s| | |
ss.source_files = "components/#{ss.base_name}/src/*.{h,m}", "components/#{ss.base_name}/src/private/*.{h,m}" | ||
ss.header_mappings_dir = "components/#{ss.base_name}/src" | ||
|
||
ss.framework = "CoreGraphics", "QuartzCore" | ||
|
||
ss.dependency "MaterialComponents/CollectionLayoutAttributes" | ||
ss.dependency "MaterialComponents/Ink" | ||
ss.dependency "MaterialComponents/Typography" | ||
|
@@ -105,6 +113,8 @@ Pod::Spec.new do |s| | |
"Material#{ss.base_name}" => ["components/#{ss.base_name}/src/Material#{ss.base_name}.bundle/*"] | ||
} | ||
|
||
ss.framework = "CoreGraphics", "QuartzCore" | ||
|
||
ss.dependency "MaterialComponents/CollectionCells" | ||
ss.dependency "MaterialComponents/CollectionLayoutAttributes" | ||
ss.dependency "MaterialComponents/Ink" | ||
|
@@ -221,7 +231,7 @@ Pod::Spec.new do |s| | |
end | ||
|
||
s.subspec "private" do |pss| | ||
|
||
# Pull in icon dependencies | ||
# The implementation of this method is generated by running scripts/sync_icons.sh | ||
# and defined in scripts/generated/icons.rb | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "MaterialComponentsCatalog" | ||
s.version = "10.0.0" | ||
s.version = "10.1.0" | ||
s.authors = { 'Apple platform engineering at Google' => '[email protected]' } | ||
s.summary = "A collection of stand-alone production-ready UI libraries focused on design details." | ||
s.homepage = "https://github.com/google/material-components-ios" | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "MaterialComponentsUnitTests" | ||
s.version = "10.0.0" | ||
s.version = "10.1.0" | ||
s.authors = { 'Apple platform engineering at Google' => '[email protected]' } | ||
s.summary = "A collection of stand-alone production-ready UI libraries focused on design details." | ||
s.homepage = "https://github.com/google/material-components-ios" | ||
|
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
File renamed without changes.
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 |
---|---|---|
|
@@ -14,4 +14,4 @@ | |
limitations under the License. | ||
*/ | ||
|
||
#import "CBCNodeViewController.h" | ||
#import "CBCNodeListViewController.h" |
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.