chore(): remove MaterialButton

This commit is contained in:
Adam Bradley
2015-09-21 22:50:10 -05:00
parent cb165ec865
commit e6c620840b
3 changed files with 2 additions and 14 deletions

View File

@ -17,11 +17,6 @@ export * from 'ionic/components/text-input/text-input'
export * from 'ionic/components/text-input/label' export * from 'ionic/components/text-input/label'
export * from 'ionic/components/list/list' export * from 'ionic/components/list/list'
export * from 'ionic/components/show-hide-when/show-hide-when' export * from 'ionic/components/show-hide-when/show-hide-when'
// Material components/effects
export * from 'ionic/components/material/button'
export * from 'ionic/components/material/ripple'
export * from 'ionic/components/modal/modal' export * from 'ionic/components/modal/modal'
export * from 'ionic/components/nav/nav' export * from 'ionic/components/nav/nav'
export * from 'ionic/components/nav/nav-controller' export * from 'ionic/components/nav/nav-controller'

View File

@ -1,5 +1,4 @@
import {pointerCoord, hasPointerMoved, transitionEnd} from '../../util/dom'; import {pointerCoord, hasPointerMoved, transitionEnd} from '../../util/dom';
import * as ripple from './ripple';
import {Activator} from './activator'; import {Activator} from './activator';
import {RippleActivator} from './ripple'; import {RippleActivator} from './ripple';

View File

@ -16,9 +16,7 @@ import {
RadioGroup, RadioButton, SearchBar, RadioGroup, RadioButton, SearchBar,
Nav, NavbarTemplate, Navbar, NavPush, NavPop, NavRouter, Nav, NavbarTemplate, Navbar, NavPush, NavPop, NavRouter,
IdRef, IdRef,
ShowWhen, HideWhen, ShowWhen, HideWhen
MaterialButton
} from '../ionic'; } from '../ionic';
/** /**
@ -87,13 +85,9 @@ export const IonicDirectives = [
forwardRef(() => NavPop), forwardRef(() => NavPop),
forwardRef(() => NavRouter), forwardRef(() => NavRouter),
forwardRef(() => IdRef), forwardRef(() => IdRef),
//forwardRef(() => Ref),
forwardRef(() => ShowWhen), forwardRef(() => ShowWhen),
forwardRef(() => HideWhen), forwardRef(() => HideWhen)
// Material
forwardRef(() => MaterialButton)
]; ];
class IonicViewImpl extends View { class IonicViewImpl extends View {