chore(rename): rename View and Template concepts for #1244

This commit is contained in:
Pawel Kozlowski
2015-04-09 21:20:11 +02:00
committed by Jeremy Elbourn
parent 564477b8a0
commit bf7933714a
103 changed files with 767 additions and 765 deletions
+11 -11
View File
@@ -1,4 +1,4 @@
import {bootstrap, Component, Decorator, Template, If, For, EventEmitter} from 'angular2/angular2';
import {bootstrap, Component, Decorator, View, If, For, EventEmitter} from 'angular2/angular2';
import {FormBuilder, Validators, FormDirectives, ControlGroup} from 'angular2/forms';
// HeaderFields renders the bound header control group. It can used as follows:
@@ -8,12 +8,12 @@ import {FormBuilder, Validators, FormDirectives, ControlGroup} from 'angular2/fo
// This component is self-contained and can be tested in isolation.
@Component({
selector: 'survey-header',
bind: {
properties: {
"header" : "header"
}
})
@Template({
inline: `
@View({
template: `
<div [control-group]="header">
<div>
<label>Title:</label> <br/>
@@ -53,13 +53,13 @@ class HeaderFields {
// This component is self-contained and can be tested in isolation.
@Component({
selector: 'survey-question',
bind: {
properties: {
"question" : "question",
"index" : "index"
}
})
@Template({
inline: `
@View({
template: `
<h2>Question #{{index}}</h2>
<button (click)="deleteQuestion()">Delete</button>
@@ -118,10 +118,10 @@ class SurveyQuestion {
// SurveyBuilder is a form that allows you to create a survey.
@Component({
selector: 'survey-builder-app',
services: [FormBuilder]
injectables: [FormBuilder]
})
@Template({
inline: `
@View({
template: `
<h1>Create New Survey</h1>
<div [control-group]="form">
@@ -194,4 +194,4 @@ class SurveyBuilder {
export function main() {
bootstrap(SurveyBuilder);
}
}