Skip to content
This repository was archived by the owner on Jun 1, 2025. It is now read-only.

Commit d45b4c2

Browse files
Ghislain BeaulacGhislain Beaulac
authored andcommitted
prepare release 0.6.1
1 parent cf114a4 commit d45b4c2

17 files changed

+520
-297
lines changed

dist/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The goal is of course to be able to run SlickGrid within Angular 4+ but also to
1414
[Angular-Slickgrid on NPM](https://www.npmjs.com/package/angular-slickgrid)
1515

1616
## Wiki / Documentation
17-
The Wiki is where all the documentation and instructions will go, so please consult the [Angular-Validation - Wiki](https://github.com/ghiscoding/Angular-Slickgrid/wiki) before opening any issues. The [Wiki - HOWTO](https://github.com/ghiscoding/Angular-Slickgrid/wiki/HOWTO---Step-by-Step) is a great place to start with.
17+
The Wiki is where all the documentation and instructions will go, so please consult the [Angular-Slickgrid - Wiki](https://github.com/ghiscoding/Angular-Slickgrid/wiki) before opening any issues. The [Wiki - HOWTO](https://github.com/ghiscoding/Angular-Slickgrid/wiki/HOWTO---Step-by-Step) is a great place to start with.
1818

1919

2020
## Main features

dist/angular-slickgrid.metadata.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

dist/angular-slickgrid/angular-slickgrid.es5.js

Lines changed: 156 additions & 90 deletions
Large diffs are not rendered by default.

dist/angular-slickgrid/angular-slickgrid.es5.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.

dist/angular-slickgrid/angular-slickgrid.js

Lines changed: 155 additions & 89 deletions
Large diffs are not rendered by default.

dist/angular-slickgrid/angular-slickgrid.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.

dist/bundles/angular-slickgrid.umd.js

Lines changed: 160 additions & 93 deletions
Large diffs are not rendered by default.

dist/bundles/angular-slickgrid.umd.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.

dist/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-slickgrid",
3-
"version": "0.6.0",
3+
"version": "0.6.1",
44
"description": "Slickgrid components made available in Angular",
55
"keywords": [
66
"angular",

dist/src/app/modules/angular-slickgrid/components/angular-slickgrid.component.d.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,15 @@ import 'slickgrid/plugins/slick.headerbuttons';
1818
import 'slickgrid/plugins/slick.headermenu';
1919
import 'slickgrid/plugins/slick.rowmovemanager';
2020
import 'slickgrid/plugins/slick.rowselectionmodel';
21-
import { AfterViewInit, EventEmitter, OnInit } from '@angular/core';
22-
import { Router } from '@angular/router';
21+
import { AfterViewInit, EventEmitter, OnDestroy, OnInit } from '@angular/core';
2322
import { Column, GridOption } from './../models';
2423
import { ControlAndPluginService, FilterService, GridEventService, GridExtraService, SortService, ResizerService } from './../services';
25-
export declare class AngularSlickgridComponent implements AfterViewInit, OnInit {
24+
export declare class AngularSlickgridComponent implements AfterViewInit, OnDestroy, OnInit {
2625
private controlAndPluginService;
2726
private gridEventService;
2827
private gridExtraService;
2928
private filterService;
3029
private resizer;
31-
private router;
3230
private sortService;
3331
private _dataset;
3432
private _dataView;
@@ -46,8 +44,9 @@ export declare class AngularSlickgridComponent implements AfterViewInit, OnInit
4644
gridHeight: number;
4745
gridWidth: number;
4846
dataset: any[];
49-
constructor(controlAndPluginService: ControlAndPluginService, gridEventService: GridEventService, gridExtraService: GridExtraService, filterService: FilterService, resizer: ResizerService, router: Router, sortService: SortService);
47+
constructor(controlAndPluginService: ControlAndPluginService, gridEventService: GridEventService, gridExtraService: GridExtraService, filterService: FilterService, resizer: ResizerService, sortService: SortService);
5048
ngOnInit(): void;
49+
ngOnDestroy(): void;
5150
ngAfterViewInit(): void;
5251
attachDifferentHooks(grid: any, options: GridOption, dataView: any): void;
5352
attachResizeHook(grid: any, options: GridOption): void;

0 commit comments

Comments
 (0)