Skip to content

Commit

Permalink
prepare release 0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Ghislain Beaulac authored and Ghislain Beaulac committed Nov 10, 2017
1 parent 2ecb6cf commit 83eaeac
Show file tree
Hide file tree
Showing 43 changed files with 649 additions and 48,501 deletions.
2 changes: 1 addition & 1 deletion dist/angular-slickgrid.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
* Generated bundle index. Do not edit.
*/
export * from './public_api';
export { ControlAndPluginService as ɵb, FilterService as ɵd, GridEventService as ɵc, ResizerService as ɵe, SortService as ɵf } from './src/app/modules/angular-slickgrid/services';
export { ControlAndPluginService as ɵb, FilterService as ɵe, GridEventService as ɵc, GridExtraService as ɵd, ResizerService as ɵf, SortService as ɵg } from './src/app/modules/angular-slickgrid/services';
export { OdataService as ɵa } from './src/app/modules/angular-slickgrid/services/odata.service';
2 changes: 1 addition & 1 deletion dist/angular-slickgrid.metadata.json

Large diffs are not rendered by default.

15,781 changes: 135 additions & 15,646 deletions dist/angular-slickgrid/angular-slickgrid.es5.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/angular-slickgrid/angular-slickgrid.es5.js.map

Large diffs are not rendered by default.

17,274 changes: 132 additions & 17,142 deletions dist/angular-slickgrid/angular-slickgrid.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/angular-slickgrid/angular-slickgrid.js.map

Large diffs are not rendered by default.

15,787 changes: 139 additions & 15,648 deletions dist/bundles/angular-slickgrid.umd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/bundles/angular-slickgrid.umd.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-slickgrid",
"version": "0.5.4",
"version": "0.5.5",
"description": "Slickgrid components made available in Angular",
"keywords": [
"angular",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@ import 'slickgrid/plugins/slick.rowmovemanager';
import 'slickgrid/plugins/slick.rowselectionmodel';
import { AfterViewInit, EventEmitter, OnInit } from '@angular/core';
import { Column, GridOption } from './../models';
import { ControlAndPluginService, FilterService, GridEventService, SortService, ResizerService } from './../services';
import { ControlAndPluginService, FilterService, GridEventService, GridExtraService, SortService, ResizerService } from './../services';
export declare class AngularSlickgridComponent implements AfterViewInit, OnInit {
private controlAndPluginService;
private gridEventService;
private gridExtraService;
private filterService;
private resizer;
private sortService;
Expand All @@ -43,7 +44,7 @@ export declare class AngularSlickgridComponent implements AfterViewInit, OnInit
gridHeight: number;
gridWidth: number;
dataset: any[];
constructor(controlAndPluginService: ControlAndPluginService, gridEventService: GridEventService, filterService: FilterService, resizer: ResizerService, sortService: SortService);
constructor(controlAndPluginService: ControlAndPluginService, gridEventService: GridEventService, gridExtraService: GridExtraService, filterService: FilterService, resizer: ResizerService, sortService: SortService);
ngOnInit(): void;
ngAfterViewInit(): void;
attachDifferentHooks(grid: any, options: GridOption, dataView: any): void;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import { Formatter } from './../models/formatter.interface';
export declare const arrayToCsvFormatter: Formatter;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import { Formatter } from './../models/formatter.interface';
export declare const hyperlinkFormatter: Formatter;
2 changes: 2 additions & 0 deletions dist/src/app/modules/angular-slickgrid/formatters/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Column } from './../models';
export declare const Formatters: {
arrayToCsv: (row: number, cell: number, value: any, columnDef: Column, dataContext: any) => string;
checkbox: (row: number, cell: number, value: any, columnDef: Column, dataContext: any) => string;
checkmark: (row: number, cell: number, value: any, columnDef: Column, dataContext: any) => string;
dateIso: (row: number, cell: number, value: any, columnDef: Column, dataContext: any) => string;
Expand All @@ -10,6 +11,7 @@ export declare const Formatters: {
dateTimeUsAmPm: (row: number, cell: number, value: any, columnDef: Column, dataContext: any) => string;
deleteIcon: (row: number, cell: number, value: any, columnDef: Column, dataContext: any) => string;
editIcon: (row: number, cell: number, value: any, columnDef: Column, dataContext: any) => string;
hyperlink: (row: number, cell: number, value: any, columnDef: Column, dataContext: any) => string;
percentComplete: (row: number, cell: number, value: any, columnDef: Column, dataContext: any) => string;
percentCompleteBar: (row: number, cell: number, value: any, columnDef: Column, dataContext: any) => string;
progressBar: (row: number, cell: number, value: any, columnDef: Column, dataContext: any) => string;
Expand Down
1 change: 1 addition & 0 deletions dist/src/app/modules/angular-slickgrid/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ export { ControlAndPluginService } from './services/controlAndPlugin.service';
export { FilterService } from './services/filter.service';
export { GridEventService } from './services/gridEvent.service';
export { GraphqlService } from './services/graphql.service';
export { GridExtraService } from './services/gridExtra.service';
export { GridExtraUtils } from './services/gridExtraUtils';
export { GridOdataService } from './services/grid-odata.service';
export { ResizerService } from './services/resizer.service';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,7 @@ export interface GridMenu {
menuWidth?: number;
resizeOnShowHeaderRow?: boolean;
customItems?: CustomGridMenu[];
onBeforeMenuShow?: (e: Event, args: any) => void;
onMenuClose?: (e: Event, args: any) => void;
onCommand?: (e: Event, args: any) => void;
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,15 @@ export interface GridOption {
headerRowHeight?: number;
headerButtonOptions?: {
buttonCssClass?: string;
onCommand?: (e: Event, args: any) => void;
};
headerMenuOptions?: {
buttonCssClass?: string;
buttonImage?: string;
onCommand?: (e: Event, args: any) => void;
};
multiColumnSort?: boolean;
onBackendEventApi?: BackendEventChanged;
onGridMenuCommand?: (e: Event, args: any) => void;
onHeaderButtonCommand?: (e: Event, args: any) => void;
onHeaderMenuCommand?: (e: Event, args: any) => void;
pagination?: Pagination;
registerPlugins?: any | any[];
rowHeight?: number;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { GridOption } from './gridOption.interface';
import { Column } from './column.interface';
export interface OnEventArgs {
row: number;
cell: number;
columnDef: Column;
dataContext: any;
dataView: any;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { GridOption } from './../models';
export declare class GridEventService {
attachOnMouseHover(grid: any): void;
attachOnCellChange(grid: any, gridOptions: GridOption, dataView: any): void;
attachOnClick(grid: any, gridOptions: GridOption, dataView: any): void;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
export declare class GridExtraService {
private _grid;
private _dataView;
init(grid: any, dataView: any): void;
/** Chain the item Metadata with our implementation of Metadata at given row index */
getItemRowMetadata(previousItemMetadata: any): (rowNumber: number) => {
cssClasses: string;
};
/**
* Highlight then fade a row for x seconds.
* The implementation follows this SO answer: https://stackoverflow.com/a/19985148/1212166
* @param {number} rowNumber
* @param {number} fadeDelay
*/
highlightRow(rowNumber: number, fadeDelay?: number): void;
setSelectedRow(rowIndex: number): void;
setSelectedRows(rowIndexes: number[]): void;
}
1 change: 1 addition & 0 deletions dist/src/app/modules/angular-slickgrid/services/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export { ControlAndPluginService } from './controlAndPlugin.service';
export { FilterService } from './filter.service';
export { GraphqlService } from './graphql.service';
export { GridEventService } from './gridEvent.service';
export { GridExtraService } from './gridExtra.service';
export { GridExtraUtils } from './gridExtraUtils';
export { GridOdataService } from './grid-odata.service';
export { OdataService } from './odata.service';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,3 @@ export declare function mapOperatorType(operator: string): OperatorType;
* @returns string date formatted
*/
export declare function parseUtcDate(inputDateString: string, useUtc: boolean): string | null;
export declare function immutableMerge(...args: any[]): any;
54 changes: 47 additions & 7 deletions dist/styles/css/slick-bootstrap.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 83eaeac

Please sign in to comment.