19 Commits

Author SHA1 Message Date
91df5f97ee refactor(refresher): allow refresher content customization
Breaking Change:

## Refresher:

- `<ion-refresher>` now takes a child `<ion-refresher-content>`
component.
- Custom refresh content components can now be replaced for Ionic's
default refresher content.
- Properties `pullingIcon`, `pullingText` and `refreshingText` have
been moved to the `<ion-refresher-content>` component.
- `spinner` property has been renamed to `refreshingSpinner` and now
goes on the `<ion-refresher-content>` component.
- `refreshingIcon` property is no longer an input, but instead
`refreshingSpinner` should be used.

Was:

```
<ion-refresher (refresh)="doRefresh($event)"
pullingIcon="arrow-dropdown">
</ion-refresher>
```

Now:

```
<ion-refresher (refresh)="doRefresh($event)">
  <ion-refresher-content
pullingIcon="arrow-dropdown"></ion-refresher-content>
</ion-refresher>
```
2016-02-27 17:33:59 -06:00
6eb0146660 fix(tabs): fix md tab highlight 2016-01-20 21:55:06 -06:00
1afac16250 chore(): add types 2016-01-12 15:56:09 -06:00
88aad3f880 refactor(decorators): remove ConfigComponent 2016-01-11 22:51:54 -06:00
d464d5cb1c remove angular2/angular2 imports 2015-12-10 16:41:57 -06:00
0270be3305 fix blocking TS errors 2015-12-10 16:39:56 -06:00
30b88d746b chore(): add ng prefix to lifecycle interfaces 2015-12-08 21:38:26 -06:00
4c53a4b554 chore(): rename IonicConfig to Config 2015-10-16 11:53:11 -05:00
9bc09300df chore(): rename properties to inputs, events to outputs 2015-10-06 16:28:32 -05:00
5b0eda5be1 refactor(config): get/set/settings and unit tests 2015-10-02 15:23:08 -05:00
63398f3450 feat(md): tab ripple and highlight line 2015-09-28 23:36:48 -05:00
abff83a206 toolbar refactor wip 2015-09-16 00:42:22 -05:00
8fbf53e1b7 rename Platform to IonicPlatform
Make IonicPlatform an injectable. Closes #99
2015-09-13 00:39:19 -05:00
b31ab1b0be feat(aside): reveal/overlay aside using Animation 2015-09-10 20:54:40 -05:00
dc7b04fbd4 remove onIonInit
Closes #77
2015-09-05 23:09:21 -05:00
cdf631dcaf .ios and .md body class css structure 2015-09-04 23:54:00 -05:00
dc003e0a89 fix overlays 2015-08-01 22:27:37 -05:00
40fc77b0b6 App annotation/mode attribute 2015-07-08 14:05:37 -05:00
1ae3113386 let there be typescript 2015-07-03 13:19:30 -05:00