mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
chore(): use E2EApp as the class name for e2e apps
This commit is contained in:
@ -4,7 +4,7 @@ import {App, ActionSheet} from 'ionic/ionic';
|
|||||||
@App({
|
@App({
|
||||||
templateUrl: 'main.html'
|
templateUrl: 'main.html'
|
||||||
})
|
})
|
||||||
class IonicApp {
|
class E2EApp {
|
||||||
|
|
||||||
constructor(actionSheet: ActionSheet) {
|
constructor(actionSheet: ActionSheet) {
|
||||||
this.actionSheet = actionSheet;
|
this.actionSheet = actionSheet;
|
||||||
|
@ -14,7 +14,7 @@ import {
|
|||||||
@App({
|
@App({
|
||||||
templateUrl: 'main.html'
|
templateUrl: 'main.html'
|
||||||
})
|
})
|
||||||
class IonicApp {
|
class E2EApp {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.fruitsForm = new ControlGroup({
|
this.fruitsForm = new ControlGroup({
|
||||||
"appleCtrl": new Control(),
|
"appleCtrl": new Control(),
|
||||||
|
15
ionic/components/list/test/group/index.ts
Normal file
15
ionic/components/list/test/group/index.ts
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
import {App} from 'ionic/ionic';
|
||||||
|
|
||||||
|
|
||||||
|
@App({
|
||||||
|
templateUrl: 'main.html'
|
||||||
|
})
|
||||||
|
class E2EApp {
|
||||||
|
constructor() {
|
||||||
|
this.people = [
|
||||||
|
{"name": "Adam Bradley", "components": [ "all the things"]},
|
||||||
|
{"name": "Max Lynch", "components": [ "checkbox", "content", "form"]},
|
||||||
|
{"name": "Tim Lancina", "components": [ "tabs"]}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
@ -9,7 +9,7 @@ import {App, List} from 'ionic/ionic';
|
|||||||
templateUrl: 'main.html',
|
templateUrl: 'main.html',
|
||||||
directives: [forwardRef(() => ItemCellTemplate)]
|
directives: [forwardRef(() => ItemCellTemplate)]
|
||||||
})
|
})
|
||||||
class IonicApp {
|
class E2EApp {
|
||||||
constructor() {
|
constructor() {
|
||||||
|
|
||||||
this.items = []
|
this.items = []
|
||||||
|
@ -4,7 +4,7 @@ import {App} from 'ionic/ionic';
|
|||||||
@App({
|
@App({
|
||||||
templateUrl: 'main.html'
|
templateUrl: 'main.html'
|
||||||
})
|
})
|
||||||
class IonicApp {
|
class E2EApp {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.people = [
|
this.people = [
|
||||||
{"name": "Adam Bradley", "components": [ "all the things"]},
|
{"name": "Adam Bradley", "components": [ "all the things"]},
|
||||||
|
@ -4,7 +4,7 @@ import {App} from 'ionic/ionic';
|
|||||||
@App({
|
@App({
|
||||||
templateUrl: 'main.html'
|
templateUrl: 'main.html'
|
||||||
})
|
})
|
||||||
class IonicApp {
|
class E2EApp {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.groups = [];
|
this.groups = [];
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ import {
|
|||||||
@App({
|
@App({
|
||||||
templateUrl: 'main.html'
|
templateUrl: 'main.html'
|
||||||
})
|
})
|
||||||
class IonicApp {
|
class E2EApp {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.fruits = new Control("");
|
this.fruits = new Control("");
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ function randomTitle() {
|
|||||||
providers: [NgControl],
|
providers: [NgControl],
|
||||||
directives: [FORM_DIRECTIVES]
|
directives: [FORM_DIRECTIVES]
|
||||||
})
|
})
|
||||||
class IonicApp {
|
class E2EApp {
|
||||||
constructor() {
|
constructor() {
|
||||||
var fb = new FormBuilder();
|
var fb = new FormBuilder();
|
||||||
this.searchQuery = '';
|
this.searchQuery = '';
|
||||||
|
@ -7,7 +7,7 @@ import {SearchPipe} from 'ionic/components/searchbar/searchbar';
|
|||||||
templateUrl: 'main.html',
|
templateUrl: 'main.html',
|
||||||
directives: [FORM_DIRECTIVES]
|
directives: [FORM_DIRECTIVES]
|
||||||
})
|
})
|
||||||
class IonicApp {
|
class E2EApp {
|
||||||
defaultSearch: string;
|
defaultSearch: string;
|
||||||
customPlaceholder: string;
|
customPlaceholder: string;
|
||||||
defaultCancel: string;
|
defaultCancel: string;
|
||||||
|
@ -14,7 +14,7 @@ function randomTitle() {
|
|||||||
providers: [NgControl],
|
providers: [NgControl],
|
||||||
directives: [FORM_DIRECTIVES]
|
directives: [FORM_DIRECTIVES]
|
||||||
})
|
})
|
||||||
class IonicApp {
|
class E2EApp {
|
||||||
constructor() {
|
constructor() {
|
||||||
var fb = new FormBuilder();
|
var fb = new FormBuilder();
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ import {SearchPipe} from 'ionic/components/searchbar/searchbar';
|
|||||||
@App({
|
@App({
|
||||||
templateUrl: 'main.html'
|
templateUrl: 'main.html'
|
||||||
})
|
})
|
||||||
class IonicApp {
|
class E2EApp {
|
||||||
toolbarSearch: string;
|
toolbarSearch: string;
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
|
@ -14,7 +14,7 @@ import {
|
|||||||
@App({
|
@App({
|
||||||
templateUrl: 'main.html'
|
templateUrl: 'main.html'
|
||||||
})
|
})
|
||||||
class IonicApp {
|
class E2EApp {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.fruitsForm = new ControlGroup({
|
this.fruitsForm = new ControlGroup({
|
||||||
"appleCtrl": new Control(),
|
"appleCtrl": new Control(),
|
||||||
|
@ -14,7 +14,7 @@ import {
|
|||||||
@App({
|
@App({
|
||||||
templateUrl: 'main.html'
|
templateUrl: 'main.html'
|
||||||
})
|
})
|
||||||
class IonicApp {
|
class E2EApp {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.fruitsForm = new ControlGroup({
|
this.fruitsForm = new ControlGroup({
|
||||||
"appleCtrl": new Control(),
|
"appleCtrl": new Control(),
|
||||||
|
Reference in New Issue
Block a user