Manu Mtz.-Almeida
dec5a0b35c
perf(item): reorder is only added to the DOM if needed
...
I have measured the performance impact of this change, since we use the push change detector strategy, the *ngIf is only evaluated once.
Items wrapped around an element with the ListReorder directive will receive a hidden `<ion-reorder>` in their DOM, but items that are not wrapped (i.e. they CAN NOT be reordered) will not even have the `<ion-reorder>` element in their DOM.
fixes #9065
2016-11-08 13:22:12 +01:00
mhartington
ac157c0474
docs(viewController): update viewController
2016-11-07 15:44:45 -05:00
mhartington
b4b9adb7fc
refactor(textarea): remove type input from textarea
2016-11-07 15:05:00 -05:00
Manu Mtz.-Almeida
be72d39bd9
perf(nav): avoid running zone when it is not needed
2016-11-07 20:59:48 +01:00
mhartington
bc5cd7f03f
docs(input): update input docs
2016-11-07 14:52:15 -05:00
Brandy Carney
eb0b05df88
fix(sass): remove usage of colors other than primary, improve error ( #8907 )
...
* fix(sass): remove usage of colors other than primary, improve error
fixes #8266
* refactor(sass): add variables to override all modes for fab and input
* refactor(fab): rename Sass variable from in-list to list-button
BREAKING CHANGE:
- `$fab-<mode>-in-list-background-color` ->
`$fab-<mode>-list-button-background-color`
- `$fab-<mode>-in-list-text-color` ->
`$fab-<mode>-list-button-text-color`
- `$fab-<mode>-in-list-background-color-activated` ->
`$fab-<mode>-list-button-background-color-activated`
2016-11-07 17:41:10 +01:00
Manu Mtz.-Almeida
a98284a0a6
fix(test): class 'Page5' incorrectly extends base class
2016-11-04 20:42:59 +01:00
Manu Mtz.-Almeida
9506a78e41
test(nav): adds worst-case e2e test
2016-11-04 19:57:19 +01:00
Manu Mtz.-Almeida
d531ec2316
perf(menu): avoid change detection when it isn't needed ( #8986 )
2016-11-04 13:57:15 -04:00
Brandy Carney
cf1196a209
docs(contributing): update contributing and scripts docs for commit messages
2016-11-04 13:24:08 -04:00
Justin Willis
578ffc3141
chore(plunkr): change to new rc2 plunker
2016-11-04 12:04:09 -05:00
Manu Mtz.-Almeida
759e3ea62d
perf(item): improve performance of sliding item ( #9005 )
...
- Using new NativeRafDebouncer
- Events are not zone wrapped unless strictly necessary
2016-11-04 12:59:36 -04:00
Brandy Carney
f38fe8d313
chore(changelog): add dependencies to update for rc.2
2016-11-03 17:54:10 -04:00
Brandy Carney
b45da6f695
chore(changelog): update bug fixes to remove chores
2016-11-03 17:10:31 -04:00
Brandy Carney
eb55747485
chore(ionic): release rc.2
2016-11-03 17:00:18 -04:00
Brandy Carney
e7ad038b4d
test(modal): update modal test to add new buttons and move toast
v2.0.0-rc.2
2016-11-03 16:27:30 -04:00
Manu Mtz.-Almeida
a1e17c6f78
chore(): generate coverage to umd js only
2016-11-03 20:24:35 +01:00
Manu Mtz.-Almeida
d988367e3a
chore(): using correct angular version in demos
2016-11-03 19:19:29 +01:00
Manu Mtz.-Almeida
8d2c8b6984
fix(action-sheet): Improve Action Sheet styles across all the platforms ( #8736 )
...
fixes #8663
2016-11-03 10:34:52 -04:00
Manu Mtz.-Almeida
299522fe53
Merge pull request #8989 from JakePrice86/patch-1
...
Fix - Update spelling in toolbar-title.ts docs
2016-11-03 00:58:03 +01:00
Manu Mtz.-Almeida
09c08e9dd1
fix(transition): wrong easing
2016-11-03 00:57:06 +01:00
Manu Mtz.-Almeida
7735be7c4f
chore(): add remove debug statements logs
2016-11-03 00:56:06 +01:00
Manu Mtz.-Almeida
0a25a836ae
Merge pull request #9003 from vaskou/refactor/transition-wp
...
fix(transition): syntax of cubic-bezier easing
2016-11-03 00:55:17 +01:00
Vasilis Koutsopoulos
813d945b79
fix(transition): syntax of cubic-bezier easing
2016-11-03 01:26:36 +02:00
Justin Willis
98d474b879
fix(): add missing export ( #8999 )
2016-11-02 15:26:05 -05:00
Jake Price
08db53ec0b
Fix - Update spelling in toolbar-title.ts docs
...
A basic spelling change in the toolbar-title.ts documentation (heder to header)
2016-11-02 07:44:42 +00:00
Manu Mtz.-Almeida
c76d15dd6a
test(nav): adds missing ionViewWillLoad counter
2016-11-02 00:51:10 +01:00
Manu Mtz.-Almeida
17dbf695c7
fix(nav): willLoad() does not have to be zone wrapped
2016-11-01 23:56:50 +01:00
Manu Mtz.-Almeida
f1f44ebdd4
fix(range): range with long label renders correctly
2016-11-01 23:50:57 +01:00
Manu Mtz.-Almeida
06357dc441
refactor(icon): improves logic for isActive
2016-11-01 23:49:54 +01:00
Manu Mtz.-Almeida
3fe3d98b0f
Merge branch 'fix/angular-update' of github.com:driftyco/ionic
2016-11-01 19:45:15 +01:00
Manu Mtz.-Almeida
04d61ee47a
fix(nav): swipe to go back gesture
...
- smoother by debouncing touch events (reduces bank)
- dynamic animation duration
- intelligent behavior based in the position, speed and direccion of the swipe (sharing logic with sliding item)
fixes #8919
fixes #8958
fixes #7934
2016-11-01 13:38:27 -05:00
Manu Mtz.-Almeida
033e1eae17
fix(nav): adds public willLoad lifecycle event
...
* fix(nav): adds public willLoad lifecycle event
* test(menu): adds more asserts
2016-11-01 13:12:29 -05:00
Manu Mtz.-Almeida
504e6e0440
Merge pull request #8969 from uofmmike/patch-1
...
Update deep-linker.ts
2016-11-01 05:03:53 +01:00
Manu Mtz.-Almeida
4f6a9b143c
feat(tabs): tabsHideOnSubPages can be modified per tab
...
references #8970
2016-11-01 02:21:28 +01:00
MIke M
086b89e563
Update deep-linker.ts
...
Added 2 missing "," not the most exciting change on earth.
2016-10-31 13:49:53 -07:00
Manu Mtz.-Almeida
5cdb70b35f
Merge pull request #8949 from bul-ikana/master
...
docs(datetime): add sass variable descriptions
2016-10-31 14:40:24 +01:00
Manu Mtz.-Almeida
5836c81c63
Merge pull request #8950 from bul-ikana/docs/input-sass
...
docs(input): add sass variable descriptions
2016-10-31 14:39:51 +01:00
Manu Mtz.-Almeida
20c96fb949
Merge pull request #8953 from John-Luke/docs/list
...
docs(list): add descriptions of sass variables
2016-10-31 14:39:29 +01:00
Manu Mtz.-Almeida
174e90b7aa
Merge pull request #8952 from John-Luke/docs/label
...
docs(label): add descriptions of sass variables
2016-10-31 14:39:12 +01:00
Manu Mtz.-Almeida
e51fe85ab3
Merge pull request #8954 from bul-ikana/docs/item-sass
...
docs(item): add sass variable descriptions
2016-10-31 14:38:21 +01:00
Manu Mtz.-Almeida
0b62a69f4a
Merge pull request #8955 from bul-ikana/docs/modal-sass
...
docs(modal): add sass variable descriptions
2016-10-31 14:37:26 +01:00
Hugo Aguirre
b0d393bc16
docs(modal): add sass variable descriptions
2016-10-29 18:29:25 -05:00
Hugo Aguirre
867f937621
docs(item): add sass variable descriptions
2016-10-29 18:14:31 -05:00
John Luke
bfce58ecae
docs(list): add descriptions of sass variables
2016-10-29 19:52:22 -03:00
John Luke
5ef35b4090
docs(label): add descriptions of sass variables
2016-10-29 19:19:04 -03:00
Hugo Aguirre
c327955a75
docs(input): add sass variable descriptions
2016-10-28 21:32:34 -05:00
Hugo Aguirre
c5785061fd
docs(input): add sass variable descriptions
2016-10-28 20:52:59 -05:00
Hugo Aguirre
2076f2ac50
docs(datetime): add sass variable descriptions
2016-10-28 19:14:48 -05:00
Brandy Carney
2003ae48d5
fix(sass): rename $background-color variable in our loops
...
We were overriding this variable so the user couldn’t reference what
they set it to.
Fixes #8475
2016-10-28 13:28:15 -04:00