-
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
344 changed files
with
14,134 additions
and
3,875 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
Large diffs are not rendered by default.
Oops, something went wrong.
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 = "4.0.1" | ||
s.version = "5.0.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" | ||
|
@@ -75,6 +75,44 @@ Pod::Spec.new do |s| | |
ss.dependency "MaterialComponents/Buttons" | ||
end | ||
|
||
s.subspec "CollectionCells" 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/*" | ||
|
||
ss.dependency "MaterialComponents/CollectionLayoutAttributes" | ||
ss.dependency "MaterialComponents/Ink" | ||
ss.dependency "MaterialComponents/Typography" | ||
ss.dependency "MaterialComponents/private/Icons/ic_check" | ||
ss.dependency "MaterialComponents/private/Icons/ic_check_circle" | ||
ss.dependency "MaterialComponents/private/Icons/ic_chevron_right" | ||
ss.dependency "MaterialComponents/private/Icons/ic_info" | ||
ss.dependency "MaterialComponents/private/Icons/ic_radio_button_unchecked" | ||
ss.dependency "MaterialComponents/private/Icons/ic_reorder" | ||
end | ||
|
||
s.subspec "CollectionLayoutAttributes" do |ss| | ||
ss.public_header_files = "components/#{ss.base_name}/src/*.h" | ||
ss.source_files = "components/#{ss.base_name}/src/*.{h,m}" | ||
ss.header_mappings_dir = "components/#{ss.base_name}/src/*" | ||
end | ||
|
||
s.subspec "Collections" 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/*" | ||
ss.resource_bundles = { | ||
"Material#{ss.base_name}" => ["components/#{ss.base_name}/src/Material#{ss.base_name}.bundle/*"] | ||
} | ||
|
||
ss.dependency "MaterialComponents/CollectionCells" | ||
ss.dependency "MaterialComponents/CollectionLayoutAttributes" | ||
ss.dependency "MaterialComponents/Ink" | ||
ss.dependency "MaterialComponents/ShadowElevations" | ||
ss.dependency "MaterialComponents/ShadowLayer" | ||
ss.dependency "MaterialComponents/Typography" | ||
end | ||
|
||
s.subspec "FlexibleHeader" 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}" | ||
|
@@ -133,12 +171,6 @@ Pod::Spec.new do |s| | |
ss.dependency "MaterialComponents/Typography" | ||
end | ||
|
||
s.subspec "ScrollViewDelegateMultiplexer" do |ss| | ||
ss.public_header_files = "components/#{ss.base_name}/src/*.h" | ||
ss.source_files = "components/#{ss.base_name}/src/*.{h,m}" | ||
ss.header_mappings_dir = "components/#{ss.base_name}/src/*" | ||
end | ||
|
||
s.subspec "ShadowElevations" do |ss| | ||
ss.public_header_files = "components/#{ss.base_name}/src/*.h" | ||
ss.source_files = "components/#{ss.base_name}/src/*.{h,m}" | ||
|
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 = "4.0.1" | ||
s.version = "5.0.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 = "4.0.1" | ||
s.version = "5.0.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
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
Oops, something went wrong.