forked from IgniteUI/igniteui-angular-wrappers
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
78 changed files
with
2,287 additions
and
1,518 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { BrowserModule } from '@angular/platform-browser'; | ||
import { AppComponent } from './samples'; | ||
import { IgGridComponent } from "../src/igniteui.angular2.js"; | ||
|
||
@NgModule({ | ||
imports: [ BrowserModule ], | ||
declarations: [ AppComponent, IgGridComponent ], | ||
bootstrap: [ AppComponent ] | ||
}) | ||
export class AppModule {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
import {bootstrap} from '@angular/platform-browser-dynamic' | ||
import {AppComponent} from './samples' | ||
|
||
bootstrap(AppComponent); | ||
|
||
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic'; | ||
import {AppModule} from './app.module'; | ||
|
||
platformBrowserDynamic().bootstrapModule(AppModule); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,8 +16,8 @@ | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.20/system-polyfills.js"></script> | ||
<script src="https://unpkg.com/angular2/es6/dev/src/testing/shims_for_IE.js"></script> | ||
|
||
<script src="https://unpkg.com/[email protected].12?main=browser"></script> | ||
<script src="https://unpkg.com/typescript@1.8.10/lib/typescript.js"></script> | ||
<script src="https://unpkg.com/[email protected].23?main=browser"></script> | ||
<script src="https://unpkg.com/typescript@2.0.2/lib/typescript.js"></script> | ||
<script src="https://unpkg.com/[email protected]"></script> | ||
<script src="https://unpkg.com/[email protected]/dist/system.src.js"></script> | ||
<script src="./systemjs.config.js"></script> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,8 +63,8 @@ | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.20/system-polyfills.js"></script> | ||
<script src="https://unpkg.com/angular2/es6/dev/src/testing/shims_for_IE.js"></script> | ||
|
||
<script src="https://unpkg.com/[email protected].12?main=browser"></script> | ||
<script src="https://unpkg.com/typescript@1.8.10/lib/typescript.js"></script> | ||
<script src="https://unpkg.com/[email protected].23?main=browser"></script> | ||
<script src="https://unpkg.com/typescript@2.0.2/lib/typescript.js"></script> | ||
<script src="https://unpkg.com/[email protected]"></script> | ||
<script src="https://unpkg.com/[email protected]/dist/system.src.js"></script> | ||
<script src="./../../systemjs.config.js"></script> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,14 +7,13 @@ | |
<!-- 1. Load libraries --> | ||
<script src="http://code.jquery.com/jquery-1.12.3.js"></script> | ||
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.min.js"></script> | ||
<script src="https://code.angularjs.org/2.0.0-beta.14/angular2-polyfills.js"></script> | ||
<!-- IE required polyfills, in this exact order --> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/es6-shim/0.35.0/es6-shim.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.20/system-polyfills.js"></script> | ||
<script src="https://unpkg.com/angular2/es6/dev/src/testing/shims_for_IE.js"></script> | ||
|
||
<script src="https://unpkg.com/[email protected].12?main=browser"></script> | ||
<script src="https://unpkg.com/typescript@1.8.10/lib/typescript.js"></script> | ||
<script src="https://unpkg.com/[email protected].23?main=browser"></script> | ||
<script src="https://unpkg.com/typescript@2.0.2/lib/typescript.js"></script> | ||
<script src="https://unpkg.com/[email protected]"></script> | ||
<script src="https://unpkg.com/[email protected]/dist/system.src.js"></script> | ||
<script src="./../../systemjs.config.js"></script> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,29 @@ | ||
import { Component, Inject, ElementRef, EventEmitter, HostListener} from '@angular/core'; | ||
import {IgDialogComponent } from "../../src/igniteui.angular2.ts"; | ||
import {bootstrap } from '@angular/platform-browser-dynamic' | ||
import { Component, NgModule } from '@angular/core'; | ||
import { IgDialogComponent } from "../../src/igniteui.angular2.js"; | ||
import { BrowserModule } from '@angular/platform-browser'; | ||
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; | ||
|
||
declare var jQuery: any; | ||
@Component({ | ||
selector: 'my-app', | ||
templateUrl: `../igDialog/igDialogTemplate.html`, | ||
directives: [IgDialogComponent] | ||
templateUrl: `../igDialog/igDialogTemplate.html` | ||
}) | ||
export class AppComponent { | ||
private options: any; | ||
|
||
constructor() { | ||
this.options = { | ||
headerText : "Foo", | ||
height: "325px" | ||
headerText : "Foo", | ||
height: "325px" | ||
}; | ||
} | ||
} | ||
bootstrap(AppComponent); | ||
|
||
@NgModule({ | ||
imports: [ BrowserModule ], | ||
declarations: [ AppComponent, IgDialogComponent ], | ||
bootstrap: [ AppComponent ] | ||
}) | ||
export class AppModule {} | ||
|
||
platformBrowserDynamic().bootstrapModule(AppModule); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,8 +13,8 @@ | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.20/system-polyfills.js"></script> | ||
<script src="https://unpkg.com/angular2/es6/dev/src/testing/shims_for_IE.js"></script> | ||
|
||
<script src="https://unpkg.com/[email protected].12?main=browser"></script> | ||
<script src="https://unpkg.com/typescript@1.8.10/lib/typescript.js"></script> | ||
<script src="https://unpkg.com/[email protected].23?main=browser"></script> | ||
<script src="https://unpkg.com/typescript@2.0.2/lib/typescript.js"></script> | ||
<script src="https://unpkg.com/[email protected]"></script> | ||
<script src="https://unpkg.com/[email protected]/dist/system.src.js"></script> | ||
<script src="./../../systemjs.config.js"></script> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,37 @@ | ||
import { Component, Inject, ElementRef, EventEmitter, HostListener} from '@angular/core'; | ||
import {IgCurrencyEditorComponent, IgDateEditorComponent, IgMaskEditorComponent, IgNumericEditorComponent, | ||
IgPercentEditorComponent, IgTextEditorComponent, IgDatePickerComponent} from "../../src/igniteui.angular2.ts"; | ||
import { FORM_DIRECTIVES } from '@angular/common'; | ||
import {bootstrap } from '@angular/platform-browser-dynamic' | ||
import { Component, NgModule } from '@angular/core'; | ||
import { IgCurrencyEditorComponent, IgDateEditorComponent, IgMaskEditorComponent, IgNumericEditorComponent, | ||
IgPercentEditorComponent, IgTextEditorComponent, IgDatePickerComponent } from "../../src/igniteui.angular2.js"; | ||
import { FormsModule } from '@angular/forms'; | ||
import { BrowserModule } from '@angular/platform-browser'; | ||
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; | ||
|
||
declare var jQuery: any; | ||
@Component({ | ||
selector: 'my-app', | ||
templateUrl: `../igEditors/igEditorsTemplate.html`, | ||
directives: [FORM_DIRECTIVES, IgCurrencyEditorComponent, IgDateEditorComponent, IgMaskEditorComponent, IgNumericEditorComponent, | ||
IgPercentEditorComponent, IgTextEditorComponent, IgDatePickerComponent] | ||
templateUrl: `../igEditors/igEditorsTemplate.html` | ||
}) | ||
export class AppComponent { | ||
public editors: any; | ||
|
||
constructor() { | ||
this.editors = { | ||
currency: 12.1, | ||
date: new Date(), | ||
editor: 'Infragistics', | ||
mask: '134-134-134', | ||
numeric: 123, | ||
percent: 0.12, | ||
text: 'Ignite UI' | ||
currency: 12.1, | ||
date: new Date(), | ||
editor: 'Infragistics', | ||
mask: '134-134-134', | ||
numeric: 123, | ||
percent: 0.12, | ||
text: 'Ignite UI' | ||
}; | ||
} | ||
} | ||
bootstrap(AppComponent); | ||
|
||
@NgModule({ | ||
imports: [ BrowserModule, FormsModule ], | ||
declarations: [ AppComponent, IgCurrencyEditorComponent, IgDateEditorComponent, IgMaskEditorComponent, IgNumericEditorComponent, | ||
IgPercentEditorComponent, IgTextEditorComponent, IgDatePickerComponent ], | ||
bootstrap: [ AppComponent ] | ||
}) | ||
export class AppModule {} | ||
|
||
platformBrowserDynamic().bootstrapModule(AppModule); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,8 +14,8 @@ | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.20/system-polyfills.js"></script> | ||
<script src="https://unpkg.com/angular2/es6/dev/src/testing/shims_for_IE.js"></script> | ||
|
||
<script src="https://unpkg.com/[email protected].12?main=browser"></script> | ||
<script src="https://unpkg.com/typescript@1.8.10/lib/typescript.js"></script> | ||
<script src="https://unpkg.com/[email protected].23?main=browser"></script> | ||
<script src="https://unpkg.com/typescript@2.0.2/lib/typescript.js"></script> | ||
<script src="https://unpkg.com/[email protected]"></script> | ||
<script src="https://unpkg.com/[email protected]/dist/system.src.js"></script> | ||
<script src="./../../systemjs.config.js"></script> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,8 +63,8 @@ <h1 class="push-down-md"><a href="http://igniteui.com/grid/overview" target="_bl | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.20/system-polyfills.js"></script> | ||
<script src="https://unpkg.com/angular2/es6/dev/src/testing/shims_for_IE.js"></script> | ||
|
||
<script src="https://unpkg.com/[email protected].12?main=browser"></script> | ||
<script src="https://unpkg.com/typescript@1.8.10/lib/typescript.js"></script> | ||
<script src="https://unpkg.com/[email protected].23?main=browser"></script> | ||
<script src="https://unpkg.com/typescript@2.0.2/lib/typescript.js"></script> | ||
<script src="https://unpkg.com/[email protected]"></script> | ||
<script src="https://unpkg.com/[email protected]/dist/system.src.js"></script> | ||
<script src="./../../systemjs.config.js"></script> | ||
|
Oops, something went wrong.