-
Notifications
You must be signed in to change notification settings - Fork 83
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
4 changed files
with
40 additions
and
25 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 |
---|---|---|
@@ -1,3 +1,8 @@ | ||
v0.0.1 | ||
================== | ||
* Initial release | ||
|
||
v1.0.0 | ||
================== | ||
* Now possible to set a column as 'editable' and allow the cell to be selected and the content edited. | ||
* Per-cell validation is now possible. As a cell is edited and the change accepted a (developer supplied) validation routine is executed, a cell will be marked as invalid if it fails the validation routine. |
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,6 @@ | ||
{ | ||
"name": "px-data-table", | ||
"version": "0.3.1", | ||
"version": "1.0.0", | ||
"main": [ | ||
"px-data-table.html" | ||
], | ||
|
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,26 +1,26 @@ | ||
{ | ||
"name": "px-data-table", | ||
"author": "General Electric", | ||
"description": "A Px component", | ||
"version": "0.3.1", | ||
"private": true, | ||
"extName" : null, | ||
"repository" : | ||
{ | ||
"type": "git", | ||
"url": "https://github.com/PredixDev/px-data-table.git" | ||
}, | ||
"homepage": "http://predix.io/", | ||
"devDependencies": { | ||
"grunt": "~v0.4.5", | ||
"grunt-sass": "^v1.0.0", | ||
"grunt-shell": "~v1.1.1", | ||
"grunt-contrib-clean": "~v0.6.0", | ||
"grunt-contrib-jshint": "~v0.10.0", | ||
"grunt-contrib-watch": "~v0.6.1", | ||
"grunt-dep-serve": "git+https://github.com/GeneralElectric/grunt-dep-serve.git#master", | ||
"grunt-autoprefixer": "^3.0.3", | ||
"node-sass-import-once": "^1.2.0", | ||
"grunt-concurrent": "^2.0.1" | ||
} | ||
"name": "px-data-table", | ||
"author": "General Electric", | ||
"description": "A Px component", | ||
"version": "1.0.0", | ||
"private": true, | ||
"extName": null, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/PredixDev/px-data-table.git" | ||
}, | ||
"homepage": "http://predix.io/", | ||
"devDependencies": { | ||
"grunt": "~v0.4.5", | ||
"grunt-autoprefixer": "^3.0.3", | ||
"grunt-bump": "^0.7.0", | ||
"grunt-concurrent": "^2.0.1", | ||
"grunt-contrib-clean": "~v0.6.0", | ||
"grunt-contrib-jshint": "~v0.10.0", | ||
"grunt-contrib-watch": "~v0.6.1", | ||
"grunt-dep-serve": "git+https://github.com/GeneralElectric/grunt-dep-serve.git#master", | ||
"grunt-sass": "^v1.0.0", | ||
"grunt-shell": "~v1.1.1", | ||
"node-sass-import-once": "^1.2.0" | ||
} | ||
} |