52ada1ca6d
chore(components): ngmodule updates
2016-09-13 17:07:33 -05:00
16df3a4aab
refactor(css): update theme imports
2016-09-13 16:57:32 -05:00
750cde38e2
refactor(css): scope component css to mode
2016-09-13 16:52:47 -05:00
a154d837a0
chore(storage): move storage out of platform
2016-09-13 16:40:13 -05:00
93fc30793d
style(util): style updates
2016-09-13 15:55:36 -05:00
78122c551d
refactor(sass): restructure for sass theme updates
2016-09-13 15:54:23 -05:00
0d55e3c417
chore(tsconfig): tsconfig updates
2016-09-13 15:49:15 -05:00
bf2b6abac5
refactor(export): update component/provider exports
2016-09-13 15:48:25 -05:00
d7be8a80c0
test(ngmodule): update to ngmodule
2016-09-13 15:44:02 -05:00
b8fb9c7c6d
style(gestures): style updates
2016-09-13 15:25:30 -05:00
88b6524155
refactor(config): provide config setup factory
2016-09-13 15:19:40 -05:00
2c1cdce988
style(util): tslint updates
2016-09-13 15:17:55 -05:00
a9e0eef1a6
refactor(platform): provide platform setup factory
2016-09-13 15:16:32 -05:00
8349e855dc
chore(package): update dependencies
2016-09-13 15:13:57 -05:00
41a7e07651
refactor(transition): create transition controller
2016-09-13 15:12:14 -05:00
aaa09bb96e
chore(karma): update karma scripts
2016-09-13 15:10:29 -05:00
12c9fd12bd
chore(gulp): update gulp scripts
2016-09-13 15:09:39 -05:00
17fe72e4bc
chore(e2e): update e2e scripts
2016-09-13 15:08:25 -05:00
4260940814
chore(demos): update demo scripts
2016-09-13 15:06:50 -05:00
1b65f2d040
chore(tooling): remove unused tooling scripts
2016-09-13 15:06:03 -05:00
871944b53e
chore(snapshot): update snapshot scripts
2016-09-13 15:04:28 -05:00
2359437114
chore(generators): update generator scripts
2016-09-13 15:02:41 -05:00
35e4033343
chore(typings): remove typings directory
2016-09-13 14:59:46 -05:00
22034b8ac4
demos(ngmodule): update to ngmodule
2016-09-13 14:54:22 -05:00
25ff530dcf
docs(loading): add returns statement
2016-09-13 11:38:46 -05:00
3154cc05f4
style(chip): fix linter errors
2016-09-01 14:52:07 -04:00
c1a52678d0
chore: remove guide.md
2016-08-25 23:10:21 -05:00
96d630e42a
chore(translate): add deprecation notice
...
Please use NG2-Translate instead: http://ionicframework.com/docs/v2/resources/ng2-translate/
2016-08-25 09:38:59 -05:00
144ffe3b03
refactor(chip): add color input, remove some styling, move styles to mode files
...
references #5386
closes #7717
closes #7467
2016-08-24 17:26:14 -04:00
0dece7252b
feat(chips): finished Component
2016-08-24 17:26:03 -04:00
421f637f96
feat(chips): added Chip component
2016-08-24 17:24:32 -04:00
57eda7f602
style(chips): fix 'remove chip' styling
2016-08-24 17:23:02 -04:00
29758e6705
docs(nav/tabs): update links to use correct URLs
...
closes driftyco/ionic-site#768
2016-08-24 12:02:15 -04:00
2805e654f6
docs(select): fix the links to alert and action sheet API docs
2016-08-23 20:47:51 -04:00
66da98dc5f
docs: update toolbar.ts ( #7830 )
...
Just a typo
2016-08-23 20:40:10 -04:00
3e7cf299e5
docs(select): update API docs to describe selectOptions
...
references #7764
2016-08-23 20:37:25 -04:00
b8285b7ba8
refactor(select): rename alertOptions to selectOptions, add ability to pass them for action-sheet
...
BREAKING CHANGES:
Select’s `alertOptions` input has been renamed to `selectOptions`. It
now allows you to pass options for either the alert or action-sheet
interface. Refer to their documentation for the options each of them
accept.
http://ionicframework.com/docs/v2/api/components/action-sheet/ActionShee
tController/#create
http://ionicframework.com/docs/v2/api/components/alert/AlertController/#
create
fixes #7764
2016-08-23 20:15:49 -04:00
8c1662d5e9
test(button): update karma and e2e tests for the new color input
2016-08-23 18:34:55 -04:00
55a0257dbc
refactor(colors): color should be added as an input instead of directly adding the color to the component
...
BREAKING CHANGES:
Colors should be passed in the `color` input on components, not added
individually as an attribute on the component.
For example:
```
<ion-tabs primary>
```
Becomes
```
<ion-tabs color=”primary”>
```
Or to bind an expression to color:
```
<ion-navbar [color]="barColor">
...
</ion-navbar>
```
```ts
@Component({
templateUrl: 'build/pages/about/about.html'
})
export class AboutPage {
barColor: string;
constructor(private nav: NavController, platform: Platform) {
this.barColor = platform.is('android') ? 'primary' : 'light';
}
}
```
Reason for this change:
It was difficult to dynamically add colors to components, especially if
the name of the color attribute was unknown in the template.
This change keeps the css flat since we aren’t chaining color
attributes on components and instead we assign a class to the component
which includes the color’s name.
This allows you to easily toggle a component between multiple colors.
Speeds up performance because we are no longer reading through all of
the attributes to grab the color ones.
references #7467
closes #7087 closes #7401 closes #7523
2016-08-23 17:16:55 -04:00
7b60e9c601
chore(components): export PickerColumn and options. Fixes #7783
2016-08-22 20:12:44 -05:00
cc2359b2c8
docs: typo in the documentation ( #7813 )
2016-08-22 13:03:43 -04:00
8f270f4f44
docs(item): fix typo in sliding item docs
...
ionSiwpe -> ionSwipe
2016-08-20 21:31:38 -05:00
26441ecfe3
perf(reorder): reorder icon is display: none by default
...
references #7651
2016-08-20 15:53:02 +02:00
bac9b81e4c
Merge remote-tracking branch 'origin/reorder-perf-fix'
...
# Conflicts:
# src/components/item/item-reorder.scss
2016-08-20 15:47:40 +02:00
f3bb2dc51d
fix(reorder): adjust reorder icon style for iOS and MD
2016-08-20 14:20:36 +02:00
02667d1644
Merge branch 'patch-1' of https://github.com/btroncone/ionic
2016-08-20 13:37:16 +02:00
824f6c8f10
Merge remote-tracking branch 'remotes/origin/feature/reorderAnimations'
2016-08-20 13:31:59 +02:00
bfd093628a
docs(menuController): add param for menuId
...
Closes #7665
2016-08-19 15:42:03 -04:00
97b57f1b53
Update docs and fix typos ( #7776 )
...
* docs(input): fix typo
* docs(scroll): add note about required CSS for scrollY
* docs(config): add swipeBackEnabled to config properties list
* docs(component generator): fix broken link in template comment
* docs(directive generator): fix broken link in template comment
2016-08-18 15:20:25 -04:00
de12a4e905
refactor(virtual-scroll): add console.warn when approxItemHeight is unset
2016-08-18 12:57:27 -05:00