Skip to content

Commit

Permalink
chore(Build): Removed JSPM, cleaned up typescript build
Browse files Browse the repository at this point in the history
Also started setup of Systemjs SFX bundle
  • Loading branch information
StacyGay committed Nov 23, 2015
1 parent db5738d commit 0b0c4d0
Show file tree
Hide file tree
Showing 19 changed files with 114 additions and 429 deletions.
20 changes: 10 additions & 10 deletions bundles/fuelui.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export declare class Alert {
displayed: boolean;
closeButton: boolean;
type: string;
displayedChange: EventEmitter;
displayedChange: EventEmitter<any>;
constructor(el: ElementRef);
getElement(): HTMLElement;
close(): void;
Expand Down Expand Up @@ -49,7 +49,7 @@ export declare class DatePickerCalendar implements OnInit {
weeks: string[][];
currentMonth: Date;
selectedDate: Date;
selectedDateChange: EventEmitter;
selectedDateChange: EventEmitter<{}>;
minDate: Date;
maxDate: Date;
constructor();
Expand All @@ -62,8 +62,8 @@ export declare class DatePickerCalendar implements OnInit {

import { EventEmitter, ElementRef } from 'angular2/angular2';
export declare class Animation {
onAnimationStart: EventEmitter;
onAnimationEnd: EventEmitter;
onAnimationStart: EventEmitter<any>;
onAnimationEnd: EventEmitter<any>;
animationClasses: string;
play: boolean;
id: string;
Expand Down Expand Up @@ -116,7 +116,7 @@ import { EventEmitter, ElementRef, QueryList } from 'angular2/angular2';
import { DatePickerBase } from './DatePickerBase';
import { Animation } from '../../Directives/Animation/Animation';
export declare class DatePicker extends DatePickerBase {
valueChange: EventEmitter;
valueChange: EventEmitter<{}>;
value: string | Date;
private _selectedDate;
selectedDate: Date;
Expand All @@ -130,8 +130,8 @@ export declare class DatePicker extends DatePickerBase {

import { EventEmitter } from 'angular2/angular2';
export declare class AnimationListener {
animationStart: EventEmitter;
animationEnd: EventEmitter;
animationStart: EventEmitter<any>;
animationEnd: EventEmitter<any>;
constructor();
animationStarted($event: Event): void;
animationEnded($event: Event): void;
Expand Down Expand Up @@ -163,7 +163,7 @@ export declare class Pagination implements OnChanges {
currentPage: number;
pagesAtOnce: number;
totalPages: number;
currentPageChange: EventEmitter;
currentPageChange: EventEmitter<any>;
pagesBlank: Array<number>;
startingIndex: number;
endingIndex: number;
Expand Down Expand Up @@ -236,7 +236,7 @@ import { ElementRef, EventEmitter } from 'angular2/angular2';
import { QueryList } from 'angular2/angular2';
import { DatePickerCalendar } from './DatePickerCalendar';
export declare class DatePickerOld {
valueChange: EventEmitter;
valueChange: EventEmitter<{}>;
value: Date | string;
private _selectedDate;
selectedDate: Date;
Expand Down Expand Up @@ -273,5 +273,5 @@ export declare var DATE_PICKER_PROVIDERS: (typeof DatePickerCalendar | typeof Da

import { EventEmitter } from 'angular2/angular2';
export declare class DateRangePicker {
startDateChange: EventEmitter;
startDateChange: EventEmitter<{}>;
}
12 changes: 6 additions & 6 deletions bundles/fuelui.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ var Alert = (function () {
], Alert.prototype, "type");
__decorate([
angular2_1.Output(),
__metadata('design:type', angular2_1.EventEmitter)
__metadata('design:type', Object)
], Alert.prototype, "displayedChange");
Alert = __decorate([
angular2_1.Component({
Expand Down Expand Up @@ -418,11 +418,11 @@ var Animation = (function () {
};
__decorate([
angular2_1.Output(),
__metadata('design:type', angular2_1.EventEmitter)
__metadata('design:type', Object)
], Animation.prototype, "onAnimationStart");
__decorate([
angular2_1.Output(),
__metadata('design:type', angular2_1.EventEmitter)
__metadata('design:type', Object)
], Animation.prototype, "onAnimationEnd");
__decorate([
angular2_1.Input('animation'),
Expand Down Expand Up @@ -752,11 +752,11 @@ var AnimationListener = (function () {
};
__decorate([
angular2_1.Output(),
__metadata('design:type', angular2_1.EventEmitter)
__metadata('design:type', Object)
], AnimationListener.prototype, "animationStart");
__decorate([
angular2_1.Output(),
__metadata('design:type', angular2_1.EventEmitter)
__metadata('design:type', Object)
], AnimationListener.prototype, "animationEnd");
AnimationListener = __decorate([
angular2_1.Directive({
Expand Down Expand Up @@ -974,7 +974,7 @@ var Pagination = (function () {
], Pagination.prototype, "totalPages");
__decorate([
angular2_1.Output(),
__metadata('design:type', angular2_1.EventEmitter)
__metadata('design:type', Object)
], Pagination.prototype, "currentPageChange");
Pagination = __decorate([
angular2_1.Component({
Expand Down
Loading

0 comments on commit 0b0c4d0

Please sign in to comment.