refactor(demos): refactor remaining components

This commit is contained in:
Drew Rygh
2015-11-05 11:03:02 -06:00
parent a766c20d65
commit 36352626b9
45 changed files with 394 additions and 371 deletions

View File

@ -1,84 +1,8 @@
import {Page} from 'ionic/ionic';
import {forwardRef} from 'angular2/angular2';
import {AndroidAttribute} from '../helpers';
@Page({
templateUrl: 'lists/basic-lists.html',
directives: [forwardRef(() => AndroidAttribute)]
})
export class BasicListsPage {
constructor() {
}
}
@Page({
templateUrl: 'lists/dividers.html',
directives: [forwardRef(() => AndroidAttribute)]
})
export class BasicDividersPage {
constructor() {
}
}
@Page({
templateUrl: 'lists/inset-lists.html',
directives: [forwardRef(() => AndroidAttribute)]
})
export class BasicInsetListsPage {
constructor() {
}
}
@Page({
templateUrl: 'lists/list-headers.html',
directives: [forwardRef(() => AndroidAttribute)]
})
export class ListHeadersPage {
constructor() {
}
}
@Page({
templateUrl: 'lists/icon-lists.html',
directives: [forwardRef(() => AndroidAttribute)]
})
export class IconListsPage {
constructor() {
}
}
@Page({
templateUrl: 'lists/avatar-lists.html',
directives: [forwardRef(() => AndroidAttribute)]
})
export class AvatarListsPage {
constructor() {
}
}
@Page({
templateUrl: 'lists/multiline-lists.html',
directives: [forwardRef(() => AndroidAttribute)]
})
export class MultilineListsPage {
constructor() {
}
}
@Page({
templateUrl: 'lists/thumbnail-lists.html',
directives: [forwardRef(() => AndroidAttribute)]
})
export class ThumbnailListsPage {
constructor() {
}
}
export * from './avatar/pages';
export * from './basic/pages';
export * from './headers/pages';
export * from './icon/pages';
export * from './inset/pages';
export * from './lines/pages';
export * from './multiline/pages';
export * from './thumbnail/pages';