2505 Commits

Author SHA1 Message Date
5fb1e08347 fix(toolbar): add a min-width to the toolbar content so that it won't overlap buttons
fixes #5657
2016-03-01 12:59:29 -05:00
5ca2a55f14 docs(refresher): update API docs for refresher and demo
references #5207
2016-03-01 12:08:01 -05:00
ce8eb5ba3b docs(demos): add infinite scroll demo
references driftyco/ionic-site#453
2016-02-29 18:44:09 -05:00
cd723898b7 docs(tabs): update tabs demo to include colors and badges
references driftyco/ionic-site#453
2016-02-29 18:43:43 -05:00
17c2fe52b9 docs(content): update content functions to private 2016-02-29 16:30:16 -05:00
29d3bb1fcb refactor(infinite-scroll): rename the elements to include the word scroll
update API docs & rename endLoading function to complete.

references #5415
2016-02-29 15:49:41 -05:00
1bb51c2e26 chore(refresher): rename "endRefreshing" to "complete" 2016-02-29 14:44:15 -06:00
fd5c4092bf chore(refresher): update config variable names 2016-02-29 13:51:42 -06:00
20fd2c3b8b chore(refresher): add warning for required ion-refresher-content 2016-02-29 13:43:35 -06:00
d39f21f410 test(refresher): fix refresher unit tests 2016-02-29 13:27:47 -06:00
fdb311d397 chore(virtualScroll): remove virtualScroll until refactor complete 2016-02-29 13:02:18 -06:00
ea884ded6d fix(refresher): get scrollTop from the scroll element to prevent refreshing when dragging up
fixes #5207
2016-02-29 13:48:39 -05:00
4c93eb06a9 refactor(label): move label css to the correct scss files
references #5651
2016-02-29 12:24:42 -05:00
0480fa3b50 feat(infiniteScroll): add infinite scroll
Closes #5415
2016-02-29 11:13:31 -06:00
406a709aa1 Update modal.ts
Need to import ViewController for modal as well.
2016-02-27 21:20:15 -08:00
66af6ff3a0 test(actionsheet): open modal from actionsheet 2016-02-27 20:51:00 -06:00
05a0da480a Update input.ts
Fix <ion-label of the Website's ion-item
2016-02-27 18:12:33 -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
d5ebf3ff5e refactor(alert): remove duplicated styles from imports
closes #5624
2016-02-26 16:57:55 -05:00
8cfebe1386 refactor(tabs): remove tabbarIcons and add tabbarLayout which accepts different values
BREAKING CHANGES: `tabbarIcons` has been replaced with `tabbarLayout`
with the following values: `icon-top`, `icon-left`, `icon-right`,
`icon-bottom`, `icon-hide`, `title-hide`.

closes #5625
2016-02-26 16:44:32 -05:00
cb8afc58ca Merge branch 'pr/5615' into 2.0 2016-02-25 18:37:06 -05:00
a0f0004012 refactor(searchbar): add class to searchbar when hideCancel is passed
only hide the search icon when hideCancel isn’t passed
2016-02-25 18:36:12 -05:00
6c73446628 feat(spinner): SVG spinners 2016-02-25 17:23:52 -06:00
21d4cef543 (search-bar) Hide cancle button for android
Hide cancle button for android as well...
Added `hideCancelButton` to example. This helps a lot for guys coming from ng1 as I tried snake-case way too long.
2016-02-25 23:52:22 +01:00
96d35ffbe7 docs(menuTypes): make private from dgeni 2016-02-24 14:12:06 -05:00
41f2f888a3 chore(ionitron): wake up ionitron! 2016-02-23 19:04:09 -06:00
53fd11c49f chore(ionitron): wake up ionitron! 2016-02-23 18:55:05 -06:00
f7c8658993 docs(sqlStorage): string error in query example 2016-02-23 13:44:35 -03:00
ec4b5ce974 docs(config): update docs 2016-02-23 11:05:13 -05:00
e622e72e5f chore(animation): end animations when fallback applies 2016-02-23 09:32:22 -06:00
d0a3872628 docs(navbar): add doc for hideBackButton 2016-02-23 09:47:04 -05:00
0cb080c924 chore(karma): update Ionic imports
Closes https://github.com/driftyco/ionic/issues/5566.
2016-02-23 07:35:02 -06:00
4524e5ad7d fix(animation): ensure final inline styles applied when fallback runs
Closes #5484
2016-02-22 21:05:56 -06:00
c883a2ae91 chore(): update Ionic imports in tests 2016-02-22 17:45:17 -06:00
b53d70710e feat(input): default autocomplete/autocorrect=off, fix autofocus
Related: #5480
2016-02-22 15:00:54 -06:00
1cfca53f9d chore(npm): publish package as 'ionic-angular'
BREAKING CHANGE: imports from the framework were:
```
  import {Platform} from 'ionic-framework/ionic';
```
and are now:
```
  import {Platform} from 'ionic-angular';
```
2016-02-22 13:25:55 -06:00
cc1dff2ceb Update id.ts 2016-02-22 10:34:13 +00:00
548b7d52d1 chore(animation): clearAsync on destroy, reset tmr each clear 2016-02-21 21:47:52 -06:00
ea5172527b chore(gesture): null hammer on unlisten 2016-02-21 21:35:24 -06:00
ed85ab9863 test(nav): create nav memory test 2016-02-21 21:30:10 -06:00
f00abb7ad7 chore(animation): only clear async when async used 2016-02-21 21:29:35 -06:00
1324362cc6 chore(util): do not global window/document variables 2016-02-21 21:25:46 -06:00
b62725c8ce chore(animation): pass instance to onFinish callbacks 2016-02-21 13:52:25 -06:00
3c8daa0781 feat(prodMode): set isProd() when prodMode set in @App config 2016-02-21 13:01:31 -06:00
5302d63b54 chore(animation): fix ele querySelectorAll 2016-02-21 12:26:47 -06:00
7c27bcf6eb chore(animation): add more types 2016-02-21 10:54:44 -06:00
4cae151d47 fix(overlay): do not dom cache views before overlays
Closes #5483
2016-02-21 00:03:58 -06:00
4fabadecb7 fix(nav): immediately stop if view removed before trans finished 2016-02-20 22:43:17 -06:00
22ec46403a chore(radio): add more types 2016-02-20 22:04:15 -06:00
730cccdc97 feat(toggle): add change event
Related #5513
2016-02-20 21:59:43 -06:00