-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #328 from renehamburger/develop
Move to latest Angular & Handstontable version
- Loading branch information
Showing
36 changed files
with
809 additions
and
2,099 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
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,23 @@ | ||
language: node_js | ||
node_js: | ||
- "6" | ||
|
||
#before_install: | ||
# - export CHROME_BIN=chromium-browser | ||
# - export DISPLAY=:99.0 | ||
# - sh -e /etc/init.d/xvfb start | ||
|
||
script: | ||
- npm run test | ||
|
||
#after_success: | ||
# - ./node_modules/.bin/codecov | ||
|
||
addons: | ||
# firefox: "latest" | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
# required by node-gyp to build some packages | ||
packages: | ||
- g++-4.8 |
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,12 @@ | ||
import { CommonModule } from '@angular/common'; | ||
import { NgModule } from '@angular/core'; | ||
|
||
import { HotTable } from './handsontable'; | ||
|
||
@NgModule({ | ||
imports: [CommonModule], | ||
declarations: [HotTable], | ||
exports: [HotTable] | ||
}) | ||
export class HotTableModule { | ||
} |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
/// <reference path="../tsd.d.ts" /> | ||
export * from './handsontable/handsontable'; | ||
export * from './handsontable/handsontable.module'; |
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,37 @@ | ||
|
||
import {Component} from '@angular/core'; | ||
import {HandsontableSection} from './components/handsontable-section'; | ||
// import {DemoHeader} from './components/demo-header'; | ||
|
||
let gettingStarted = require('../getting-started.md'); | ||
|
||
@Component({ | ||
selector: 'app', | ||
template: ` | ||
<main class="bd-pageheader"> | ||
<div class="container"> | ||
<h1>ng2-handsontable</h1> | ||
<p>The Angular2 directive for <a href="https://github.com/handsontable/handsontable" target="_blank">Handsontable</a></p> | ||
<a class="btn btn-primary" href="https://github.com/valor-software/ng2-handsontable">View on GitHub</a> | ||
<div class="row"> | ||
<div class="col-lg-1"><iframe src="https://ghbtns.com/github-btn.html?user=valor-software&repo=ng2-handsontable&type=star&count=true" frameborder="0" scrolling="0" width="170px" height="20px"></iframe></div> | ||
<div class="col-lg-1"><iframe src="https://ghbtns.com/github-btn.html?user=valor-software&repo=ng2-handsontable&type=fork&count=true" frameborder="0" scrolling="0" width="170px" height="20px"></iframe></div> | ||
</div> | ||
</div> | ||
</main> | ||
<div class="container"> | ||
<section id="getting-started">${gettingStarted}</section> | ||
<handsontable-section class="col-md-12"></handsontable-section> | ||
</div> | ||
<footer class="footer"> | ||
<div class="container"> | ||
<p class="text-muted text-center"><a href="https://github.com/valor-software/ng2-handsontable">ng2-handsontable</a> is maintained by <a href="https://github.com/valor-software">valor-software</a>.</p> | ||
</div> | ||
</footer> | ||
` | ||
}) | ||
export class DemoComponent { | ||
} |
Oops, something went wrong.