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

Commit 7c2d17a

Browse files
Ghislain BeaulacGhislain Beaulac
Ghislain Beaulac
authored and
Ghislain Beaulac
committed
prepare release 1.7.7
1 parent 7575035 commit 7c2d17a

16 files changed

+444
-249
lines changed

dist.tgz

4.01 KB
Binary file not shown.

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ export declare class AngularSlickgridComponent implements AfterViewInit, OnDestr
4747
private _columnDefinitions;
4848
private _dataView;
4949
private _eventHandler;
50+
private _fixedHeight;
51+
private _fixedWidth;
5052
private _hideHeaderRowAfterPageLoad;
5153
grid: any;
5254
gridPaginationOptions: GridOption;

dist/app/modules/angular-slickgrid/models/columnEditor.interface.d.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ import { Observable } from 'rxjs/Observable';
33
export interface ColumnEditor {
44
/** A collection of items/options that will be loaded asynchronously (commonly used with a Select/Multi-Select Editor) */
55
collectionAsync?: Promise<any> | Observable<any>;
6-
/** A collection of items/options (commonly used with a Select/Multi-Select Editor) */
6+
/**
7+
* A collection of items/options (commonly used with a Select/Multi-Select Editor)
8+
* It can be a collection of string or label/value pair (the pair can be customized via the "customStructure" option)
9+
*/
710
collection?: any[];
811
/** We could filter some 1 or more items from the collection */
912
collectionFilterBy?: CollectionFilterBy | CollectionFilterBy[];

dist/app/modules/angular-slickgrid/models/columnFilter.interface.d.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ export interface ColumnFilter {
2222
model?: any;
2323
/** A collection of items/options that will be loaded asynchronously (commonly used with a Select/Multi-Select Filter) */
2424
collectionAsync?: Promise<any> | Observable<any> | Subject<any>;
25-
/** A collection of items/options (commonly used with a Select/Multi-Select Filter) */
25+
/**
26+
* A collection of items/options (commonly used with a Select/Multi-Select Filter)
27+
* It can be a collection of string or label/value pair (the pair can be customized via the "customStructure" option)
28+
*/
2629
collection?: any[];
2730
/** Options to change the behavior of the "collection" */
2831
collectionOptions?: CollectionOption;

dist/app/modules/angular-slickgrid/models/gridOption.interface.d.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ export interface GridOption {
1919
autoEdit?: boolean;
2020
/** Defaults to true, which leads to automatically adjust the size of each column with the available space. Similar to "Force Fit Column" but only happens on first page/component load. */
2121
autoFitColumnsOnFirstLoad?: boolean;
22-
/** Defaults to false, when enabled will automatically adjust grid height. */
23-
autoHeight?: boolean;
2422
/** Auto-resize options (bottom padding, minHeight, ...) */
2523
autoResize?: AutoResizeOption;
2624
/** Auto-tooltip options (enableForCells, enableForHeaderCells, maxToolTipLength) */

dist/app/modules/angular-slickgrid/services/resizer.service.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ export interface GridDimension {
66
heightWithPagination?: number;
77
}
88
export declare class ResizerService {
9+
private _fixedHeight;
10+
private _fixedWidth;
911
private _grid;
1012
private _lastDimensions;
1113
onGridBeforeResize: Subject<boolean>;
1214
/** Getter for the Grid Options pulled through the Grid Object */
1315
private readonly _gridOptions;
1416
private readonly _gridUid;
15-
init(grid: any): void;
17+
init(grid: any, fixedDimensions?: GridDimension): void;
1618
/** Attach an auto resize trigger on the datagrid, if that is enable then it will resize itself to the available space
1719
* Options: we could also provide a % factor to resize on each height/width independently
1820
*/

dist/bundles/angular-slickgrid.umd.js

Lines changed: 122 additions & 65 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/bundles/angular-slickgrid.umd.js.map

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

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

dist/bundles/angular-slickgrid.umd.min.js.map

Lines changed: 15 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/esm2015/angular-slickgrid.js

Lines changed: 148 additions & 79 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/esm2015/angular-slickgrid.js.map

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

dist/esm5/angular-slickgrid.js

Lines changed: 122 additions & 65 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/esm5/angular-slickgrid.js.map

Lines changed: 7 additions & 7 deletions
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": "1.7.6",
3+
"version": "1.7.7",
44
"description": "Slickgrid components made available in Angular",
55
"keywords": [
66
"angular",

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": "1.7.6",
3+
"version": "1.7.7",
44
"description": "Slickgrid components made available in Angular",
55
"keywords": [
66
"angular",

0 commit comments

Comments
 (0)