repackaging: all the repackaging changes squashed
This commit is contained in:
@ -1,12 +1,12 @@
|
||||
import {isPresent} from 'angular2/src/facade/lang';
|
||||
import {getIntParameter, bindAction} from 'angular2/src/testing/benchmark_util';
|
||||
import {TimerWrapper} from 'angular2/src/facade/async';
|
||||
import {isPresent} from '@angular/facade';
|
||||
import {getIntParameter, bindAction} from '@angular/testing/src/benchmark_util';
|
||||
import {TimerWrapper} from '@angular/facade';
|
||||
import {ScrollAreaComponent} from './scroll_area';
|
||||
import {NgIf, NgFor} from 'angular2/common';
|
||||
import {DOM} from 'angular2/src/platform/dom/dom_adapter';
|
||||
import {document} from 'angular2/src/facade/browser';
|
||||
import {NgIf, NgFor} from '@angular/common';
|
||||
import {DOM} from '@angular/platform-browser/src/dom/dom_adapter';
|
||||
import {document} from '@angular/facade';
|
||||
|
||||
import {Component, Directive} from 'angular2/core';
|
||||
import {Component, Directive} from '@angular/core';
|
||||
|
||||
|
||||
@Component({
|
||||
|
@ -1,8 +1,8 @@
|
||||
import {ListWrapper, Map} from 'angular2/src/facade/collection';
|
||||
import {ListWrapper, Map} from '@angular/facade';
|
||||
import {Company, Opportunity, Offering, Account, CustomDate, STATUS_LIST} from './common';
|
||||
import {NgFor} from 'angular2/common';
|
||||
import {NgFor} from '@angular/common';
|
||||
|
||||
import {Component, Directive} from 'angular2/core';
|
||||
import {Component, Directive} from '@angular/core';
|
||||
|
||||
export class HasStyle {
|
||||
cellWidth: number;
|
||||
|
@ -1,6 +1,6 @@
|
||||
import {Math} from 'angular2/src/facade/math';
|
||||
import {StringWrapper} from 'angular2/src/facade/lang';
|
||||
import {ListWrapper, Map, MapWrapper} from 'angular2/src/facade/collection';
|
||||
import {Math} from '@angular/facade';
|
||||
import {StringWrapper} from '@angular/facade';
|
||||
import {ListWrapper, Map, MapWrapper} from '@angular/facade';
|
||||
|
||||
export var ITEMS = 1000;
|
||||
export var ITEM_HEIGHT = 40;
|
||||
|
@ -1,8 +1,8 @@
|
||||
import {bootstrap} from 'angular2/platform/browser';
|
||||
import {bootstrap} from '@angular/platform-browser';
|
||||
|
||||
import {App} from './app';
|
||||
|
||||
import {bind, provide} from 'angular2/core';
|
||||
import {bind, provide} from '@angular/core';
|
||||
|
||||
export function main() {
|
||||
bootstrap(App, createBindings());
|
||||
|
@ -1,4 +1,4 @@
|
||||
import {StringWrapper} from 'angular2/src/facade/lang';
|
||||
import {StringWrapper} from '@angular/facade';
|
||||
import {
|
||||
CustomDate,
|
||||
Offering,
|
||||
|
@ -1,7 +1,7 @@
|
||||
import {ListWrapper} from 'angular2/src/facade/collection';
|
||||
import {Math} from 'angular2/src/facade/math';
|
||||
import {ListWrapper} from '@angular/facade';
|
||||
import {Math} from '@angular/facade';
|
||||
|
||||
import {Component, Directive} from 'angular2/core';
|
||||
import {Component, Directive} from '@angular/core';
|
||||
|
||||
import {
|
||||
Offering,
|
||||
@ -14,7 +14,7 @@ import {
|
||||
} from './common';
|
||||
import {generateOfferings} from './random_data';
|
||||
import {ScrollItemComponent} from './scroll_item';
|
||||
import {NgFor} from 'angular2/common';
|
||||
import {NgFor} from '@angular/common';
|
||||
|
||||
@Component({
|
||||
selector: 'scroll-area',
|
||||
|
@ -7,7 +7,7 @@ import {
|
||||
FormattedCellComponent
|
||||
} from './cells';
|
||||
|
||||
import {Component, Directive} from 'angular2/core';
|
||||
import {Component, Directive} from '@angular/core';
|
||||
|
||||
import {
|
||||
Offering,
|
||||
|
Reference in New Issue
Block a user