Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 5233a0d

Browse files
committed
docs(cb-a11y): Refactor location - Form controls
1 parent 45459bf commit 5233a0d

18 files changed

+14
-14
lines changed

public/docs/_examples/cb-a11y/ts/app/app.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {Component} from 'angular2/core';
2-
import {A11yFormControls} from "./a11y-form-controls.component";
3-
import {A11yHelper} from "./services/a11y-helper.service";
42
import {ROUTER_DIRECTIVES, RouteConfig, ROUTER_PROVIDERS} from "angular2/router";
3+
import {A11yFormControls} from "./form-controls/a11y-form-controls.component";
54
import {A11yIndex} from "./a11y-index.component";
5+
import {A11yHelper} from "./services/a11y-helper.service";
66

77
@Component({
88
selector: 'app',

public/docs/_examples/cb-a11y/ts/app/a11y-checkboxes.component.ts renamed to public/docs/_examples/cb-a11y/ts/app/form-controls/a11y-checkboxes.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {Component, Input} from "angular2/core";
22

33
@Component({
44
selector: 'a11y-checkboxes',
5-
templateUrl: './app/a11y-checkboxes.component.html'
5+
templateUrl: './app/form-controls/a11y-checkboxes.component.html'
66
})
77
export class A11yCheckboxes {
88

public/docs/_examples/cb-a11y/ts/app/a11y-form-controls.component.ts renamed to public/docs/_examples/cb-a11y/ts/app/form-controls/a11y-form-controls.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ import {CORE_DIRECTIVES, FORM_DIRECTIVES} from "angular2/common";
33
import {A11yInput} from "./a11y-input.component";
44
import {A11yInputExplicit} from "./a11y-input-explicit.component";
55
import {A11yCheckboxes} from "./a11y-checkboxes.component";
6-
import {A11yHelper} from "./services/a11y-helper.service";
76
import {A11yRadiobuttons} from "./a11y-radiobuttons.component";
87
import {A11ySelect} from "./a11y-select.component";
98
import {A11yTextarea} from "./a11y-textarea.component";
109
import {A11yHiddenLabels} from "./a11y-hidden-labels.component";
10+
import {A11yHelper} from "../services/a11y-helper.service";
1111

1212
@Component({
1313
selector: 'a11y-form-controls',
14-
templateUrl: './app/a11y-form-controls.component.html',
14+
templateUrl: './app/form-controls/a11y-form-controls.component.html',
1515
directives: [
1616
CORE_DIRECTIVES,
1717
FORM_DIRECTIVES,

public/docs/_examples/cb-a11y/ts/app/a11y-hidden-labels.component.ts renamed to public/docs/_examples/cb-a11y/ts/app/form-controls/a11y-hidden-labels.component.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import {Component, OnInit, Input} from "angular2/core";
2-
import {A11yHelper} from "./services/a11y-helper.service";
2+
import {A11yHelper} from "./../services/a11y-helper.service";
33

44
@Component({
55
selector: 'a11y-hidden-labels',
6-
templateUrl: './app/a11y-hidden-labels.component.html',
7-
styleUrls: ['./app/a11y-hidden-labels.component.css']
6+
templateUrl: './app/form-controls/a11y-hidden-labels.component.html',
7+
styleUrls: ['./app/form-controls/a11y-hidden-labels.component.css']
88
})
99
export class A11yHiddenLabels implements OnInit{
1010
@Input()

public/docs/_examples/cb-a11y/ts/app/a11y-input-explicit.component.ts renamed to public/docs/_examples/cb-a11y/ts/app/form-controls/a11y-input-explicit.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import {Component, Input, OnInit} from "angular2/core";
2-
import {A11yHelper} from "./services/a11y-helper.service";
2+
import {A11yHelper} from "./../services/a11y-helper.service";
33

44
@Component({
55
selector: 'a11y-input-explicit',
6-
templateUrl: './app/a11y-input-explicit.component.html'
6+
templateUrl: './app/form-controls/a11y-input-explicit.component.html'
77
})
88
export class A11yInputExplicit implements OnInit{
99

0 commit comments

Comments
 (0)