Commit Graph

4684 Commits

Author SHA1 Message Date
Brandy Carney
1fe1c1e291 feat(content): add a resize function to recalculate the content size
this should be called when dynamically displaying/hiding headers,
footers, or tabs.

references #7131
2016-06-30 16:32:45 -04:00
mhartington
cd6ad23ef3 docs(viewController, picker, popover, toast, gestures, utils): update docs 2016-06-30 15:50:26 -04:00
mhartington
fbe6f82c89 docs(alert, loading, modal): update docs 2016-06-30 15:02:19 -04:00
mhartington
df07682407 docs(alertController, navController): update docs 2016-06-30 13:46:09 -04:00
Adam Bradley
686c262c4c feat(footer): apply shadow on MD footer and tabbar bottom 2016-06-30 11:57:09 -05:00
Adam Bradley
845a516375 fix(activator): do not activate elements while scrolling
Closes #7141
2016-06-30 10:36:03 -05:00
Adam Bradley
0cb093e394 fix(animation): fix easing timing function
Closes #7130
2016-06-30 09:53:09 -05:00
Manu Mtz.-Almeida
267aa32f5a perf(animation): using will-change when using progressStep() 2016-06-30 08:17:17 -05:00
Manu Mtz.-Almeida
4e88f89161 fix(button): outline buttons do not have hairline borders in iOS 2016-06-30 08:13:18 -05:00
Adam Bradley
3b1d3b926e chore(viewcontroller): change onDismiss to private 2016-06-30 08:12:00 -05:00
Manu Mtz.-Almeida
ec99bfd019 feat(viewcontroller): add onWillDismiss callback
Fixed #6702
2016-06-30 08:06:19 -05:00
Adam Bradley
1c882b31a5 style(input): update import syntax 2016-06-29 22:42:22 -05:00
Adam Bradley
1f4b3e2cf0 feat(tabbar): apply shadow on MD tabbar top 2016-06-29 22:06:18 -05:00
Adam Bradley
0d8c947409 refactor(content): rename adjustedTop to contentTop
Closes #7112
2016-06-29 21:51:11 -05:00
Adam Bradley
7f83445b59 chore(contributing): update contributing guidelines 2016-06-29 21:34:42 -05:00
Adam Bradley
2d19308a52 fix(tabs): fix preloadTabs null element reference
Closes #7109
2016-06-29 21:15:33 -05:00
Adam Bradley
55a5e83020 fix(nav): fix menuCtrl reference in swipe back 2016-06-29 21:12:22 -05:00
Víctor Oliva
76619cf4d0 feat(select): add disabled status in select options 2016-06-29 20:01:03 -05:00
Manu Mtz.-Almeida
d993a1bfd8 fix(reorder): reorder can be used with any element 2016-06-30 01:14:21 +02:00
Brandy Carney
5119b57496 docs(segment): clean up docs on segment, update demo
the demo has been changed to show multiple segments in use, instead of
a lot of segments thrown on the page.

fixes driftyco/ionic-site#658
2016-06-29 17:16:02 -04:00
mhartington
d5959f4c44 docs(itemSliding): cleanup private methods 2016-06-29 15:33:41 -04:00
Manu Mtz.-Almeida
73580727ac fix(bootstrap): tapclick is injected, probably (#7128) 2016-06-29 15:27:22 -04:00
Adam Bradley
b0a1151a0f chore(readme): update npm readme 2016-06-29 14:02:41 -05:00
Brandy Carney
aad8f966a5 docs(demos): change the dot in item-reorder 2016-06-29 14:50:24 -04:00
Adam Bradley
9c896f59bc chore(package): generate dist package.json from root package.json
Closes #6854
2016-06-29 13:44:36 -05:00
Brandy Carney
1cad300622 docs(demo): update item reorder demo to use a playlist 2016-06-29 14:35:42 -04:00
Brandy Carney
204c517e2a docs(item-reorder): modify docs for item reorder
also added the header to the reorder test.
2016-06-29 14:02:52 -04:00
Brandy Carney
2fc83c40d3 refactor(item): rename indices to indexes 2016-06-29 14:02:52 -04:00
Adam Bradley
37c53ac07c style(scss): fix scss lint errors 2016-06-29 11:44:51 -05:00
Brandy Carney
1c2acc0c6a test(content): add tests for content pages without header/footers 2016-06-29 12:31:54 -04:00
Adam Bradley
6fa2faffba feat(header): apply shadow on MD headers 2016-06-29 11:26:38 -05:00
Manu Mtz.-Almeida
08f22fb82b docs(reorder): adds docs and demo for reorder directive 2016-06-29 17:35:33 +02:00
Adam Bradley
b615c60478 fix(loading): fix loading overlay during app init
Closes #6209
2016-06-29 00:27:50 -05:00
Adam Bradley
3fb58d95c3 demo(overlay): use injectable overlay controllers 2016-06-28 20:46:43 -05:00
Manu Mtz.-Almeida
7aa559aec2 fix(item): sliding item is closed when tapped
closes #7094
2016-06-29 02:30:16 +02:00
Adam Bradley
4fff262684 fix(datetime): format seconds token
Closes #6951
2016-06-28 16:40:42 -05:00
Adam Bradley
3cd31c3d17 fix(menu): fix content going under header
Closes #7084
2016-06-28 16:22:39 -05:00
Adam Bradley
4980659bd6 test(overlay): use injectable overlay controllers 2016-06-28 15:20:42 -05:00
Adam Bradley
215c6d846c refactor(overlays): inject overlay providers
BREAKING CHANGES:

- Overlay components, such as Alert or Modals, should now be created
using its injected provider.
- Overlays now have the `present()` method on the overlay’s instance,
rather than using `nav.present(overlayInstance)`.
- All overlays now present on top of all app content, to include menus.
- Below is an example of the change to `Alert`, but the pattern is the
same for all overlays: ActionSheet, Loading, Modal, Picker, Popover,
Toast

WAS:

```
import { NavController, Alert } from ‘ionic-angular’;

constructor(private nav: NavController) {
}

doAlert() {
  let alert = Alert.create({
    title: 'Alert',
  });
  this.nav.present(alert);
}
```

NOW:

```
import { AlertController } from ‘ionic-angular’;

constructor(private alertCtrl: AlertController) {
}

doAlert() {
  let alert = this.alertCtrl.create({
    title: 'Alert'
  });
  alert.present();
}
```
2016-06-28 15:18:09 -05:00
Adam Bradley
2fe42ed63e chore(): clean up unused references 2016-06-28 11:28:25 -05:00
Edd Hannay
721b2bc4f0 demos(loading): update demo to beta10 2016-06-28 09:42:05 -05:00
Brandy Carney
29dd8da3b4 chore(changelog): fix npm install to use beta 10 instead of nightly 2016-06-28 10:31:10 -04:00
Manu Mtz.-Almeida
5c804450c4 feat(ion-content): iOS only scroll bounce 2016-06-27 22:26:48 -05:00
Perry Govier
d458b1ec90 chore(ci): kicking the tires 2016-06-27 16:22:37 -05:00
Brandy Carney
e9226178dc chore(ionic): release beta.10 2016-06-27 15:40:44 -04:00
Manu Mtz.-Almeida
89564f1c7e feat(feature-detect): detect if backdrop-filter is supported
Currently `backdrop-filter` is only supported by Safari and it allows web developers to implement awesome background blur effects like a native iOS app
v2.0.0-beta.10
2016-06-27 13:42:55 -05:00
Brandy Carney
400957517d fix(item): inherit overflow and text-overflow from the parent item in a paragraph 2016-06-27 14:40:12 -04:00
Manu Mtz.-Almeida
b1b7bb806a test(picker): fixes return data 2016-06-27 20:04:51 +02:00
Manu Mtz.-Almeida
b8551defd5 fix(picker): adds align to the PickerColumn interface 2016-06-27 20:04:51 +02:00
Manu Mtz.-Almeida
2303c16fee fix(item): sliding item works with and without borders
closes #7081
2016-06-27 20:04:51 +02:00