Skip to content

Commit 3582c24

Browse files
(release): 13.0.0
1 parent 0f4a119 commit 3582c24

39 files changed

+331
-58
lines changed

docs/changelog.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 13.0.0
4+
5+
* Breaking: Fixes several issues related to the summary row feature #1418
6+
* Fix: DataTableColumnDirective Input Binding Changes #1384
7+
* Fix: angular version #1420
8+
* Fix: issues when running npm run build --prod #1410
9+
310
## 12.0.0
411

512
* Breaking: Upgraded to Angular 6 #1400
@@ -11,7 +18,8 @@
1118
## 11.3.0
1219

1320
* Feat: Added summary row #1233
14-
* Fix: Fixed issue with misaligned body content #1326
21+
* Fix: Fixed issue wi
22+
th misaligned body content #1326
1523
* Fix: Fixed Default Sort Behavior Of Table With Custom Templates #1308
1624
* Chore: Fixed link in column api docs #1343
1725
* Chore: Fixed typo in docs #1342

package.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"name": "@swimlane/ngx-datatable",
3-
"version": "12.0.0",
4-
"description": "ngx-datatable is a Angular2+ table grid component for presenting large and complex data.",
3+
"version": "13.0.0",
4+
"description":
5+
"ngx-datatable is a Angular2+ table grid component for presenting large and complex data.",
56
"main": "release/index.js",
67
"typings": "release/index.d.ts",
78
"scripts": {
@@ -31,12 +32,15 @@
3132
"start": "webpack-dev-server",
3233
"start:hmr": "webpack-dev-server --env.HMR",
3334
"release": "npm-run-all build:release",
34-
"package": "npm-run-all -s clean copy:build build:sass package:replace-scss package:aot build:package package:minify copy:styles clean:build",
35+
"package":
36+
"npm-run-all -s clean copy:build build:sass package:replace-scss package:aot build:package package:minify copy:styles clean:build",
3537
"package:ts": "tsc --outDir release",
3638
"package:aot": "ngc -p tsconfig-aot.json",
3739
"package:replace-scss": "node ./config/replace-scss.js",
38-
"package:css": "node-sass -o release/ src/themes && node-sass -o release/components src/components",
39-
"package:minify": "uglifyjs release/index.js --source-map --compress --mangle --screw-ie8 --output release/index.min.js",
40+
"package:css":
41+
"node-sass -o release/ src/themes && node-sass -o release/components src/components",
42+
"package:minify":
43+
"uglifyjs release/index.js --source-map --compress --mangle --screw-ie8 --output release/index.min.js",
4044
"deploy": "node ./config/deploy.js",
4145
"pree2e:full": "npm run build:release",
4246
"e2e:full": "npm run e2e",

release/components/body/body-row-wrapper.component.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ export declare class DataTableRowWrapperComponent implements DoCheck {
2323
constructor(cd: ChangeDetectorRef, differs: KeyValueDiffers);
2424
ngDoCheck(): void;
2525
onContextmenu($event: MouseEvent): void;
26-
getGroupHeaderStyle(group: any): any;
26+
getGroupHeaderStyle(): any;
2727
}

release/components/body/body-row-wrapper.component.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

release/components/body/body-row-wrapper.component.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

release/components/body/body.component.d.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,16 @@ export declare class DataTableBodyComponent implements OnInit, OnDestroy {
137137
* @memberOf DataTableBodyComponent
138138
*/
139139
getRowsStyles(rows: any): any;
140+
/**
141+
* Calculate bottom summary row offset for scrollbar mode.
142+
* For more information about cache and offset calculation
143+
* see description for `getRowsStyles` method
144+
*
145+
* @returns {*} Returns the CSS3 style to be applied
146+
*
147+
* @memberOf DataTableBodyComponent
148+
*/
149+
getBottomSummaryRowStyles(): any;
140150
/**
141151
* Hides the loading indicator
142152
*/

release/components/body/body.component.js

Lines changed: 19 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)