Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
Material
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dmitriy Stepanets
Material
Commits
0d970724
Commit
0d970724
authored
Jul 23, 2017
by
Daniel Dahan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated files for Motion module and submodule distribution
parent
ff6ed795
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
1 additions
and
16 deletions
+1
-16
Frameworks/Motion
+1
-1
Material.xcodeproj/project.pbxproj
+0
-0
Sources/iOS/Button.swift
+0
-1
Sources/iOS/CollectionReusableView.swift
+0
-1
Sources/iOS/CollectionViewCell.swift
+0
-1
Sources/iOS/Divider.swift
+0
-1
Sources/iOS/Grid.swift
+0
-1
Sources/iOS/Layout.swift
+0
-1
Sources/iOS/Material+CALayer.swift
+0
-1
Sources/iOS/Material+MotionAnimation.swift
+0
-1
Sources/iOS/NavigationItem.swift
+0
-1
Sources/iOS/PageTabBarController.swift
+0
-1
Sources/iOS/PulseAnimation.swift
+0
-1
Sources/iOS/PulseView.swift
+0
-1
Sources/iOS/SnackbarController.swift
+0
-1
Sources/iOS/TableViewCell.swift
+0
-1
Sources/iOS/TabsController.swift
+0
-1
No files found.
Motion
@
2fd5d3b0
Subproject commit
0846f0c25d46da94c2ca4a27a6264a7a8a5437ab
Subproject commit
2fd5d3b0b0568f1ed0a14145cec9cd9d1eb5a020
Material.xcodeproj/project.pbxproj
View file @
0d970724
This diff is collapsed.
Click to expand it.
Sources/iOS/Button.swift
View file @
0d970724
...
@@ -29,7 +29,6 @@
...
@@ -29,7 +29,6 @@
*/
*/
import
UIKit
import
UIKit
import
Motion
open
class
Button
:
UIButton
,
Pulseable
,
PulseableLayer
{
open
class
Button
:
UIButton
,
Pulseable
,
PulseableLayer
{
/**
/**
...
...
Sources/iOS/CollectionReusableView.swift
View file @
0d970724
...
@@ -29,7 +29,6 @@
...
@@ -29,7 +29,6 @@
*/
*/
import
UIKit
import
UIKit
import
Motion
@objc(CollectionReusableView)
@objc(CollectionReusableView)
open
class
CollectionReusableView
:
UICollectionReusableView
,
Pulseable
,
PulseableLayer
{
open
class
CollectionReusableView
:
UICollectionReusableView
,
Pulseable
,
PulseableLayer
{
...
...
Sources/iOS/CollectionViewCell.swift
View file @
0d970724
...
@@ -29,7 +29,6 @@
...
@@ -29,7 +29,6 @@
*/
*/
import
UIKit
import
UIKit
import
Motion
@objc(CollectionViewCell)
@objc(CollectionViewCell)
open
class
CollectionViewCell
:
UICollectionViewCell
,
Pulseable
,
PulseableLayer
{
open
class
CollectionViewCell
:
UICollectionViewCell
,
Pulseable
,
PulseableLayer
{
...
...
Sources/iOS/Divider.swift
View file @
0d970724
...
@@ -29,7 +29,6 @@
...
@@ -29,7 +29,6 @@
*/
*/
import
UIKit
import
UIKit
import
Motion
@objc(DividerAlignment)
@objc(DividerAlignment)
public
enum
DividerAlignment
:
Int
{
public
enum
DividerAlignment
:
Int
{
...
...
Sources/iOS/Grid.swift
View file @
0d970724
...
@@ -29,7 +29,6 @@
...
@@ -29,7 +29,6 @@
*/
*/
import
UIKit
import
UIKit
import
Motion
@objc(GridAxisDirection)
@objc(GridAxisDirection)
public
enum
GridAxisDirection
:
Int
{
public
enum
GridAxisDirection
:
Int
{
...
...
Sources/iOS/Layout.swift
View file @
0d970724
...
@@ -29,7 +29,6 @@
...
@@ -29,7 +29,6 @@
*/
*/
import
UIKit
import
UIKit
import
Motion
public
class
Layout
{
public
class
Layout
{
/// Parent UIView context.
/// Parent UIView context.
...
...
Sources/iOS/Material+CALayer.swift
View file @
0d970724
...
@@ -29,7 +29,6 @@
...
@@ -29,7 +29,6 @@
*/
*/
import
UIKit
import
UIKit
import
Motion
fileprivate
class
MaterialLayer
{
fileprivate
class
MaterialLayer
{
/// A reference to the CALayer.
/// A reference to the CALayer.
...
...
Sources/iOS/Material+MotionAnimation.swift
View file @
0d970724
...
@@ -29,7 +29,6 @@
...
@@ -29,7 +29,6 @@
*/
*/
import
UIKit
import
UIKit
import
Motion
public
extension
MotionAnimation
{
public
extension
MotionAnimation
{
/**
/**
...
...
Sources/iOS/NavigationItem.swift
View file @
0d970724
...
@@ -29,7 +29,6 @@
...
@@ -29,7 +29,6 @@
*/
*/
import
UIKit
import
UIKit
import
Motion
/// A memory reference to the NavigationItem instance.
/// A memory reference to the NavigationItem instance.
fileprivate
var
NavigationItemKey
:
UInt8
=
0
fileprivate
var
NavigationItemKey
:
UInt8
=
0
...
...
Sources/iOS/PageTabBarController.swift
View file @
0d970724
...
@@ -29,7 +29,6 @@
...
@@ -29,7 +29,6 @@
*/
*/
import
UIKit
import
UIKit
import
Motion
/// A memory reference to the PageTabBarItem instance for UIViewController extensions.
/// A memory reference to the PageTabBarItem instance for UIViewController extensions.
fileprivate
var
PageTabBarItemKey
:
UInt8
=
0
fileprivate
var
PageTabBarItemKey
:
UInt8
=
0
...
...
Sources/iOS/PulseAnimation.swift
View file @
0d970724
...
@@ -29,7 +29,6 @@
...
@@ -29,7 +29,6 @@
*/
*/
import
UIKit
import
UIKit
import
Motion
@objc(PulseAnimation)
@objc(PulseAnimation)
public
enum
PulseAnimation
:
Int
{
public
enum
PulseAnimation
:
Int
{
...
...
Sources/iOS/PulseView.swift
View file @
0d970724
...
@@ -29,7 +29,6 @@
...
@@ -29,7 +29,6 @@
*/
*/
import
UIKit
import
UIKit
import
Motion
open
class
PulseView
:
View
,
Pulseable
,
PulseableLayer
{
open
class
PulseView
:
View
,
Pulseable
,
PulseableLayer
{
/// A Pulse reference.
/// A Pulse reference.
...
...
Sources/iOS/SnackbarController.swift
View file @
0d970724
...
@@ -29,7 +29,6 @@
...
@@ -29,7 +29,6 @@
*/
*/
import
UIKit
import
UIKit
import
Motion
@objc(SnackbarControllerDelegate)
@objc(SnackbarControllerDelegate)
public
protocol
SnackbarControllerDelegate
{
public
protocol
SnackbarControllerDelegate
{
...
...
Sources/iOS/TableViewCell.swift
View file @
0d970724
...
@@ -29,7 +29,6 @@
...
@@ -29,7 +29,6 @@
*/
*/
import
UIKit
import
UIKit
import
Motion
open
class
TableViewCell
:
UITableViewCell
,
Pulseable
,
PulseableLayer
{
open
class
TableViewCell
:
UITableViewCell
,
Pulseable
,
PulseableLayer
{
/**
/**
...
...
Sources/iOS/TabsController.swift
View file @
0d970724
...
@@ -29,7 +29,6 @@
...
@@ -29,7 +29,6 @@
*/
*/
import
UIKit
import
UIKit
import
Motion
/// A memory reference to the TabsBarItem instance for UIViewController extensions.
/// A memory reference to the TabsBarItem instance for UIViewController extensions.
fileprivate
var
TabsBarItemKey
:
UInt8
=
0
fileprivate
var
TabsBarItemKey
:
UInt8
=
0
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment