d0db916f53
chore(scripts): update app-scripts to run via node, remove snapshot clean
2017-01-19 18:20:54 -05:00
8338a90d85
chore(swiper): fix reference for closure advanced
2017-01-19 14:59:19 -08:00
7824c79d60
chore(virtual-scroll): set IterableDiffer to any
...
Adding this to avoid an angular version issue.
2017-01-19 14:48:24 -08:00
f06398215c
docs(config): update demo for config, add more logs for app-scripts
...
closes #9413
2017-01-19 13:17:11 -05:00
4f7de63b9a
docs(config): fix demo for config page not updating. #9413 ( #9418 )
2017-01-19 11:24:27 -05:00
c8c90572bc
chore(scripts): update e2e prod build to work with ionic-app-scripts ( #10083 )
...
* chore(e2e): WIP to add files needed for app-scripts
* chore(e2e): WIP one e2e test building but with errors
* chore(e2e): move e2e.prod to working with app-scripts
move shared functions into util, add support for debug flag when
running e2e.prod / demos.prod which gets passed to app-scripts
* chore(build): fix app-scripts build for all e2e and demos
* chore(e2e): update ionic-angular import path
* chore(build): update dev paths to work with prod
* chore(e2e): get watch working with e2e prod
* docs(scripts): update README for running e2e and demos
closes #8411
closes #10023
2017-01-19 11:09:57 -05:00
af16dba0d3
test(icon): app module was being ignored by my global gitignore
2017-01-19 10:39:33 -05:00
3a718de463
fix(content): unsubscribe from viewCtrl observables after content ins… ( #10050 )
...
* fix(content): unsubscribe from observables on destroy
* fix(content): scroll is initialized before subscribing
fixes #9593
fixes #10045
* fix(content): unset viewCtrl subscribers on destroy
2017-01-18 14:57:12 +01:00
fba159662e
fix(modal): overlay-zindex is not changed in back direction
...
fixes #9409
2017-01-18 14:37:57 +01:00
6da9eb6398
fix(alert): input missing id attribute from input options
...
fixes #9457
2017-01-18 14:37:57 +01:00
e770a9ab23
Merge branch 'fix-previousTab' of https://github.com/manucorporat/ionic
...
# Conflicts:
# src/components/tabs/tabs.ts
2017-01-18 14:23:45 +01:00
4f711defb1
Merge branch 'fix-tabs-wrong-deeplinker' of https://github.com/jackfengji/ionic
2017-01-18 14:22:45 +01:00
ba9e7b3e6b
fix(tabs): ionChange event is dispatched after the switch
2017-01-17 21:33:50 +01:00
0b2cf6281d
docs(popover): add import to example code
...
Closes #10053
2017-01-17 12:31:00 -05:00
fadfb3734c
docs(tabs): fix description of tabsHideOnSubPages
...
Closes #10061
2017-01-17 12:27:08 -05:00
e56028ef68
fix(slides): allow auto to be passed
...
Closes #10000 . Closes #10037
2017-01-17 12:15:47 -05:00
eb96cba227
Fix url is not correct after selecting tabs
...
Update deeplinker's updateNav after tabSwitchEnd so deeplinker gets the
right active navchild.
2017-01-17 16:50:25 +08:00
60adf7bbd8
Update README.md
2017-01-16 10:04:26 -06:00
522ce19d18
docs(slides): document spaceBetween and slidesPerView
2017-01-15 12:59:37 -05:00
9168bc137b
fix(tap): allow document to be tap polyfilled
...
Closes #9726
2017-01-13 17:09:13 -06:00
d252fa49e5
chore(e2e): rename app-module.ts to app.module.ts for consistency
...
references #10023
2017-01-13 15:16:24 -05:00
eaa62484d7
fix(nav): fixes #9558 ( #9767 )
2017-01-13 14:24:21 -05:00
421b7da676
fix(item-sliding): don't error or allow swipes with no options
...
Added items with the following use cases:
1. Sliding item without options
2. Sliding item with one set of dynamic options that toggle
3. Sliding item with two options, one dynamic
Removing my code will cause errors in all of the above examples.
Fixes #9914
2017-01-13 11:02:38 -06:00
e90b630537
Merge pull request #10006 from driftyco/fix-disabled-form-control
...
fix(forms): set disabled components from form control
2017-01-13 10:46:52 -06:00
5844a83343
fix(input): pass disabled down to input when it is set from form
...
- test modified to disable username and comments on `input/form-inputs`
and then toggle them via a button
see: http://g.recordit.co/RkN510TcHk.gif
fixes #9834
2017-01-13 10:45:00 -06:00
21667c61ac
feat(slides): add option for paginationBulletRender
...
Closes #10002
2017-01-13 09:20:56 -06:00
3e9427bada
feat(radio): add disabled to radio-group and support disabled formcontrol
...
fixes #9998
2017-01-12 17:37:00 -05:00
0aad835478
fix(toggle): set disabled state from FormControl
2017-01-12 17:03:11 -05:00
40e7eb2350
fix(select): set disabled state from FormControl
2017-01-12 17:03:00 -05:00
8e64a28ed3
fix(range): set disabled state from FormControl
2017-01-12 17:02:47 -05:00
99c493e8ac
fix(datetime): set disabled state from FormControl
2017-01-12 17:02:36 -05:00
b44ff4138c
fix(checkbox): set disabled state from FormControl
2017-01-12 17:02:06 -05:00
14839b66b7
chore(slides): fix errors with noImplicitAny
2017-01-12 14:02:15 -05:00
f499496e4d
feat(slides): add swiper controller ( #9983 )
2017-01-12 13:41:17 -05:00
e35a3b1ab7
chore: fix incorrect execution of node binaries ( #9962 )
...
* chore: fix incorrect execution of node binaries
* Currently gulp runs the `ngc` by manually calling the `./node_modules/.bin/ngc` file (by assuming it's a node script)
This is not always correct, because often package managers like (npm or yarn) create bash files for the package binaries.
* Using `resolve-bin` to properly determine the path to the *real* node script and then we can assume it's a node file.
Fixes #8341
* Remove extra newline
2017-01-12 13:28:41 -05:00
2d26edb679
feat(slides): expose more options ( #9992 )
...
* feat(slides): expose more options
Closes #9988
Exposes slidesPerView and spaceBetween. Also documents how to change
unexposed options
* docs(slides): update advanced usage
2017-01-12 12:59:33 -05:00
24d0052541
chore(noImplicitAny): add noImplicitAny to tsconfig
2017-01-12 10:14:50 -06:00
7906e90ae0
chore: add void return value for some callback signatures ( #9967 )
2017-01-11 17:10:34 -05:00
391cd70879
docs(slides): update slides docs ( #9968 )
...
Change the `pager` description.
Change the `paginationType` input type.
2017-01-11 16:28:33 -05:00
d46b3e8e9f
docs(nav): fix typos in comments for NavControllerBase and ViewController ( #9953 )
...
* docs(nav): fix typo
* docs(view): fix typo
2017-01-11 16:23:18 -05:00
dbfc79b63a
docs(avatar): fix typo ( #9965 )
...
place to placed
2017-01-11 16:22:35 -05:00
0414ac55ba
docs(changelog): unsmarten quotes on sw-toolbox dep ( #9966 )
2017-01-11 16:22:01 -05:00
2dcf49773e
docs(menu): update menu docs
...
Closes https://github.com/driftyco/ionic-site/issues/951
2017-01-11 15:57:28 -05:00
efb07724a7
chore(ionic): release rc.5
2017-01-11 12:04:02 -05:00
2c6d63cb72
docs(demos): update colors for API demos
v2.0.0-rc.5
2017-01-11 11:22:28 -05:00
2f074b408c
docs(hide-when): add hide-when demo back
2017-01-11 11:16:58 -05:00
4224e903db
docs(input): add example for ion-textarea
2017-01-10 15:13:52 -05:00
f6cabcdbc7
test(tabs): fix ngc error in advanced test
2017-01-10 15:06:03 -05:00
9a497eef5b
test(clickblock): add new tests for minDuration
2017-01-10 13:05:24 -06:00
e9adab0114
fix(platform): only set isPortrait when the width/height is set
2017-01-10 13:46:12 -05:00