Skip to content

Commit

Permalink
prepare release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Jan 20, 2018
1 parent 8b5c3d3 commit 583df9a
Show file tree
Hide file tree
Showing 168 changed files with 1,240 additions and 467 deletions.
1 change: 1 addition & 0 deletions client-cli/assets/i18n/en/aurelia-slickgrid.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"OF": "of",
"PAGE": "Page",
"PAGE_X_OF_Y": "page {{x}} of {{y}}",
"REFRESH_DATASET": "Refresh Dataset",
"SYNCHRONOUS_RESIZE": "Synchronous resize",
"TOGGLE_FILTER_ROW": "Toggle Filter Row",

Expand Down
1 change: 1 addition & 0 deletions client-cli/assets/i18n/fr/aurelia-slickgrid.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"OF": "de",
"PAGE": "Page",
"PAGE_X_OF_Y": "page {{x}} de {{y}}",
"REFRESH_DATASET": "Rafraîchir les données",
"SYNCHRONOUS_RESIZE": "Redimension synchrone",
"TOGGLE_FILTER_ROW": "Basculer la ligne des filtres",

Expand Down
1 change: 1 addition & 0 deletions client-ts-wp/assets/i18n/en/aurelia-slickgrid.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"OF": "of",
"PAGE": "Page",
"PAGE_X_OF_Y": "page {{x}} of {{y}}",
"REFRESH_DATASET": "Refresh Dataset",
"SYNCHRONOUS_RESIZE": "Synchronous resize",
"TOGGLE_FILTER_ROW": "Toggle Filter Row",

Expand Down
1 change: 1 addition & 0 deletions client-ts-wp/assets/i18n/fr/aurelia-slickgrid.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"OF": "de",
"PAGE": "Page",
"PAGE_X_OF_Y": "page {{x}} de {{y}}",
"REFRESH_DATASET": "Rafraîchir les données",
"SYNCHRONOUS_RESIZE": "Redimension synchrone",
"TOGGLE_FILTER_ROW": "Basculer la ligne des filtres",

Expand Down
14 changes: 10 additions & 4 deletions dist/amd/aurelia-slickgrid.js

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

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

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/amd/formatters/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export declare const Formatters: {
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;
infoIcon: (row: number, cell: number, value: any, columnDef: Column, dataContext: any) => string;
lowercase: (row: number, cell: number, value: any, columnDef: Column, dataContext: any) => string;
multiple: (row: number, cell: number, value: any, columnDef: Column, dataContext: any) => string;
percentComplete: (row: number, cell: number, value: any, columnDef: Column, dataContext: any) => string;
Expand Down
3 changes: 2 additions & 1 deletion dist/amd/formatters/index.js

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

2 changes: 1 addition & 1 deletion dist/amd/formatters/index.js.map

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

2 changes: 2 additions & 0 deletions dist/amd/formatters/infoIconFormatter.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import { Formatter } from './../models/formatter.interface';
export declare const infoIconFormatter: Formatter;
8 changes: 8 additions & 0 deletions dist/amd/formatters/infoIconFormatter.js

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

1 change: 1 addition & 0 deletions dist/amd/formatters/infoIconFormatter.js.map

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

2 changes: 1 addition & 1 deletion dist/amd/global-grid-options.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { GridOption } from './models/gridOption.interface';
/**
* Options that can be passed to the Aurelia-Slickgrid
* Default Options that can be passed to the Aurelia-Slickgrid
*/
export declare const GlobalGridOptions: GridOption;
8 changes: 5 additions & 3 deletions dist/amd/global-grid-options.js

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

2 changes: 1 addition & 1 deletion dist/amd/global-grid-options.js.map

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

5 changes: 4 additions & 1 deletion dist/amd/models/gridMenu.interface.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ export interface GridMenu {
iconImage?: string;
iconCssClass?: string;
leaveOpen?: boolean;
syncResizeTitle?: string;
menuWidth?: number;
resizeOnShowHeaderRow?: boolean;
showClearAllFiltersCommand?: boolean;
showRefreshDatasetCommand?: boolean;
showToggleFilterCommand?: boolean;
syncResizeTitle?: string;
onBeforeMenuShow?: (e: Event, args: any) => void;
onMenuClose?: (e: Event, args: any) => void;
onCommand?: (e: Event, args: any) => void;
Expand Down
3 changes: 2 additions & 1 deletion dist/amd/models/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export { CheckboxSelector } from './checkboxSelector.interface';
export { Column } from './column.interface';
export { ColumnFilter } from './columnFilter.interface';
export { ColumnFilters } from './columnFilters.interface';
export { CustomGridMenu } from './customGridMenu.interface';
export { Editor } from './editor.interface';
export { FieldType } from './fieldType';
export { Filter } from './filter.interface';
Expand All @@ -22,7 +23,7 @@ export { GraphqlFilteringOption } from './graphqlFilteringOption.interface';
export { GraphqlPaginationOption } from './graphqlPaginationOption.interface';
export { GraphqlServiceOption } from './graphqlServiceOption.interface';
export { GraphqlSortingOption } from './graphqlSortingOption.interface';
export { CustomGridMenu } from './customGridMenu.interface';
export { GridMenu } from './gridMenu.interface';
export { GridOption } from './gridOption.interface';
export { HeaderButton } from './headerButton.interface';
export { HeaderButtonItem } from './headerButtonItem.interface';
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/models/index.js.map

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

22 changes: 21 additions & 1 deletion dist/amd/services/controlAndPlugin.service.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,33 @@ export declare class ControlAndPluginService {
*/
attachDifferentControlOrPlugins(grid: any, columnDefinitions: Column[], options: GridOption, dataView: any): void;
createColumnPicker(grid: any, columnDefinitions: Column[], options: GridOption): void;
/**
* Create (or re-create) Grid Menu and expose all the available hooks that user can subscribe (onCommand, onMenuClose, ...)
* @param grid
* @param columnDefinitions
* @param options
*/
createGridMenu(grid: any, columnDefinitions: Column[], options: GridOption): any;
hideColumn(column: Column): void;
removeColumnByIndex(array: any[], index: number): any[];
autoResizeColumns(): void;
destroy(): void;
/**
* Create Grid Menu with Custom Commands if user has enabled Filters and/or uses a Backend Service (OData, GraphQL)
* @param grid
* @param options
*/
private addGridMenuCustomCommands(grid, options);
private prepareGridMenu(grid, options);
/**
* @return default Grid Menu options
*/
private getDefaultGridMenuOptions();
private refreshBackendDataset(options);
/**
* Reset all the Grid Menu options which have text to translate
* @param grid menu object
*/
private resetGridMenuTranslations(gridMenu);
/**
* Translate the Column Picker and it's last 2 checkboxes
* Note that the only way that seems to work is to destroy and re-create the Column Picker
Expand Down
Loading

0 comments on commit 583df9a

Please sign in to comment.