c18335e946
refactor(lifecycle): lifecycle methods prefixed w/ ionView
...
BREAKING CHANGES:
- Lifecycle method prefixes have changed to `ionView`
- `onPageLoaded` renamed to `ionViewLoaded`
- `onPageWillEnter` renamed to `ionViewWillEnter`
- `onPageDidEnter` renamed to `ionViewDidEnter`
- `onPageWillLeave` renamed to `ionViewWillLeave`
- `onPageDidLeave` renamed to `ionViewDidLeave`
- `onPageWillUnload` renamed to `ionViewWillUnload`
- `onPageDidUnload` renamed to `ionViewDidUnload`
2016-06-01 12:06:15 -05:00
21753a88fe
feat(range): add styling for range-left/range-right md and wp
...
references #5422
2016-06-01 10:59:11 -04:00
484dfdb2f0
chore: fix linter errors
2016-06-01 10:44:14 -04:00
272daf2993
fix(datetime): fix ISO format when w/out timezone data
...
Closes #6608
2016-06-01 09:40:45 -05:00
c1ad804be8
fix(datetime): clear out existing datetime data
...
Closes #6614
2016-06-01 08:56:04 -05:00
f7b1f373d3
fix(infiniteScroll): ensure infinite doesn't fire when already loading
2016-05-31 22:07:37 -05:00
d57833c81b
fix(ripple): do not activate ripple if pointer moved
2016-05-31 21:53:39 -05:00
f4f6f7b2b8
chore(NavRegistry): update to work with ionicBootstrap
2016-05-31 21:21:07 -05:00
11448dcd0c
chore(tslint): fix noImplicitAny errors
2016-05-31 21:07:17 -05:00
fc819dd9c4
feat(range): add ability to add labels to the left/right of range
...
using `range-left` and `range-right` inside of `ion-range` will place
the element to the left or right of the range.
references #5422
2016-05-31 20:11:09 -04:00
03f4511635
chore(tslint): fix noImplicitAny errors
2016-05-31 18:40:29 -05:00
f14e2dc04b
chore(): fix conflicts
...
# Conflicts:
# src/config/bootstrap.ts
2016-05-31 18:13:33 -05:00
9cc127dc1c
chore(tabs): update subpages to work w/ @Component
2016-05-31 18:12:38 -05:00
3b02ffbcdc
chore(tsconfig): set noImplicitAny
2016-05-31 18:56:30 -04:00
d7a6980112
chore: fix linter errororororors
2016-05-31 18:51:21 -04:00
e9d0c4569f
Merge branch 'ion-range' into 2.0
2016-05-31 18:47:58 -04:00
5f8b0130cb
chore(TapClick): update TapClick to work w/ ionicBootstrap
2016-05-31 17:38:44 -05:00
5117660f2e
Merge pull request #6596 from rapropos/implicitany
...
type return for Swiper slide functions
2016-05-31 18:03:15 -04:00
170cf8c409
fix(picker): safari fired pointerEnd() twice ( #6708 )
...
closes #6704
2016-05-31 16:36:59 -05:00
6e3859a657
docs(alert): add clarification about input options
...
Added clarifications about the `placeholder` and `label` input options, related to: https://forum.ionicframework.com/t/alerts-property-label-not-work/53335 .
2016-05-31 16:30:34 -05:00
b59e5afe22
chore(range): emit ionChange on range
2016-05-31 16:24:13 -05:00
f7cf378042
docs(range): add API docs for range
...
references #5422
2016-05-31 17:09:07 -04:00
8a920a24a5
Merge branch 'bootstrap-refactor' into 2.0
2016-05-31 15:50:21 -05:00
774ab83637
demos(bootstrap): update to use ionicBootstrap
2016-05-31 15:49:56 -05:00
6e9087534d
test(bootstrap): update to use ionicBootstrap
2016-05-31 15:49:12 -05:00
94e938d6b3
docs(bootstrap): update to use ionicBootstrap
2016-05-31 15:47:16 -05:00
e5522d2de8
chore(generators): remove use of custom decorators
2016-05-31 15:42:54 -05:00
73635f3939
refactor(bootstrap): use ionicBootstrap() to bootstrap
...
BREAKING CHANGES:
- Ionic's custom decorators have been removed.
- `@App` and `@Page` should be replaced with `@Component`.
- `IonicApp` has been renamed to `App`.
- `ionicBootstrap` is required to bootstrap the app.
- Config is now the 3rd parameter in `ionicBootstrap(rootComponent,
providers, config)`.
- Property `prodMode` is now a config option, enabling or disabling
production mode.
2016-05-31 15:42:06 -05:00
061af93b3c
fix(range): update the styling for all modes
...
references #5422
2016-05-31 16:11:47 -04:00
d24b080cb7
fix(range): fix styling on range, add demo
...
references #5422
2016-05-31 14:37:43 -04:00
f239b72be4
Merge branch '2.0' into ion-range
2016-05-31 13:42:11 -04:00
6bd91f02a3
fix(popover): position MD popover on top of element clicked
...
fixes #6683
2016-05-31 13:40:36 -04:00
c897c344cc
Merge branch 'pr/6655' into 2.0
2016-05-31 12:27:27 -04:00
1b9fafeb49
test(slides): add test to toggle the last slide with ngIf
...
references #6651
2016-05-31 12:26:56 -04:00
d563aa65a3
refactor(events): rename all Ionic events to start with ion
...
BREAKING CHANGES:
Renamed all Ionic events to start with `ion`. The following events were
renamed:
- **Checkbox**
- `change` -> `ionChange`
- **DateTime**
- `change` -> `ionChange`
- `cancel` -> `ionCancel`
- **InfiniteScroll**
- `infinite` -> `ionInfinite`
- **Menu**
- `opening` -> `ionDrag`
- `opened` -> `ionOpen`
- `closed` -> `ionClose`
- **Option**
- `select` -> `ionSelect`
- **Picker**
- `change` -> `ionChange`
- **RadioButton**
- `select` -> `ionSelect`
- **RadioGroup**
- `change` -> `ionChange`
- **Refresher**
- `refresh` -> `ionRefresh`
- `pulling` -> `ionPull`
- `start` -> `ionStart`
- **Searchbar**
- `input` -> `ionInput`
- `blur` -> `ionBlur`
- `focus` -> `ionFocus`
- `cancel` -> `ionCancel`
- `clear` -> `ionClear`
- **Segment**
- `change` -> `ionChange`
- `select` -> `ionSelect`
- **Select**
- `change` -> `ionChange`
- `cancel` -> `ionCancel`
- **Slides**
- `willChange` -> `ionWillChange`
- `didChange` -> `ionDidChange`
- `move` -> `ionDrag`
- **TabButton**
- `select` -> `ionSelect`
- **Tab**
- `select` -> `ionSelect`
- **Tabs**
- `change` -> `ionChange`
- **Toggle**
- `change` -> `ionChange`
Closes #6568
2016-05-31 12:01:46 -04:00
af6d5e4be4
feat(range): add md and wp styling, tweak ios styling
...
references #5422
2016-05-27 18:37:32 -04:00
f6f16340e2
refactor(nav-controller): add data property to the leaving opts so it's accessible to transition w
...
add data property to the leaving opts so it's accessible to transition when exiting
2016-05-27 14:19:15 -05:00
4b4092b25e
refactor(popover): change call to willEnter to fireWillEnter to match view-controller changes, fix l
...
change call to willEnter to fireWillEnter to match view-controller changes, fix linting error
2016-05-27 14:01:26 -05:00
dfa991d409
Feature/observable ext ( #6670 )
...
* refactor(nav-controller): refactor to better support dynamic component loading
2016-05-27 13:49:37 -05:00
2c6e11b10d
feat(range): create ion-range input
2016-05-27 13:20:36 -05:00
4ba999e6a4
fix(input): fix the clear input placement on wp mode
...
references #6514
2016-05-27 14:11:48 -04:00
1d2a0b9eea
Merge branch 'popover' into 2.0
2016-05-27 12:58:42 -04:00
44a7da8adc
feat(popover): change MD animation and use for WP also
...
references #5420
2016-05-27 12:46:33 -04:00
c944ffd4d7
chore(sass): fix linter errors
2016-05-27 11:40:26 -04:00
3849c11347
Merge branch '2.0' into popover
2016-05-27 11:35:46 -04:00
e419ec61d2
feat(popover): fix MD animations and start from the right side
...
references #5420
2016-05-27 11:35:41 -04:00
24b7b8f356
docs(scroll): correct typo ( #6673 )
2016-05-26 20:06:56 -05:00
60f02ce04d
chore(sass): fix linter errors
2016-05-26 13:42:33 -04:00
c784e08e98
Merge branch '2.0' into popover
2016-05-26 13:30:15 -04:00
1d0d755214
feat(popover): add MD animation
...
references #5420
2016-05-26 13:29:57 -04:00