7 Commits

Author SHA1 Message Date
0480fa3b50 feat(infiniteScroll): add infinite scroll
Closes #5415
2016-02-29 11:13:31 -06:00
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
6c73446628 feat(spinner): SVG spinners 2016-02-25 17:23:52 -06:00
c2cf3b0636 refactor(themes): adjusted scss structure for additional themes
Related #4967
2016-02-02 10:02:31 -06:00
c7f22681fd feat(scrollbars): webkit scrollbar styling for desktop 2016-01-28 20:05:11 -06:00
adce1e5225 fix(scroll): add pull to refresh Sass back to core component
references #5207
2016-01-26 18:33:29 -05:00
5b0c174939 component theme updates 2015-12-04 14:56:57 -06:00