Skip to content

Commit

Permalink
prepare release 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Mar 7, 2018
1 parent 97aebe7 commit 6e77aac
Show file tree
Hide file tree
Showing 875 changed files with 13,611 additions and 3,237 deletions.
8 changes: 4 additions & 4 deletions dist/amd/aurelia-slickgrid.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import 'slickgrid/plugins/slick.rowselectionmodel';
import { EventAggregator, Subscription } from 'aurelia-event-aggregator';
import { I18N } from 'aurelia-i18n';
import { Column, GridOption } from './models/index';
import { ControlAndPluginService, ExportService, FilterService, GraphqlService, GridEventService, GridExtraService, ResizerService, SortService } from './services/index';
import { ControlAndPluginService, ExportService, FilterService, GraphqlService, GridEventService, GridExtraService, GridStateService, ResizerService, SortService } from './services/index';
export declare class AureliaSlickgridCustomElement {
private controlAndPluginService;
private exportService;
Expand All @@ -30,11 +30,11 @@ export declare class AureliaSlickgridCustomElement {
private graphqlService;
private gridEventService;
private gridExtraService;
private gridStateService;
private i18n;
private resizer;
private sortService;
private _dataset;
private _gridOptions;
private _eventHandler;
gridHeightString: string;
gridWidthString: string;
Expand All @@ -53,22 +53,22 @@ export declare class AureliaSlickgridCustomElement {
gridHeight: number;
gridWidth: number;
pickerOptions: any;
constructor(controlAndPluginService: ControlAndPluginService, exportService: ExportService, elm: Element, ea: EventAggregator, filterService: FilterService, graphqlService: GraphqlService, gridEventService: GridEventService, gridExtraService: GridExtraService, i18n: I18N, resizer: ResizerService, sortService: SortService);
constructor(controlAndPluginService: ControlAndPluginService, exportService: ExportService, elm: Element, ea: EventAggregator, filterService: FilterService, graphqlService: GraphqlService, gridEventService: GridEventService, gridExtraService: GridExtraService, gridStateService: GridStateService, i18n: I18N, resizer: ResizerService, sortService: SortService);
attached(): void;
detached(): void;
/**
* Keep original value(s) that could be passed by the user ViewModel.
* If nothing was passed, it will default to first option of select
*/
bind(binding: any, contexts: any): void;
unbind(binding: any, scope: any): void;
datasetChanged(newValue: any[], oldValue: any[]): void;
/**
* Define what our internal Post Process callback, it will execute internally after we get back result from the Process backend call
* For now, this is GraphQL Service only feautre and it will basically refresh the Dataset & Pagination without having the user to create his own PostProcess every time
*/
createBackendApiInternalPostProcessCallback(gridOptions: GridOption): void;
attachDifferentHooks(grid: any, gridOptions: GridOption, dataView: any): void;
attachBackendCallbackFunctions(gridOptions: GridOption): void;
attachResizeHook(grid: any, options: GridOption): void;
mergeGridOptions(): GridOption;
/**
Expand Down
177 changes: 107 additions & 70 deletions dist/amd/aurelia-slickgrid.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions dist/amd/editors/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@ import { DateEditor } from './dateEditor';
import { FloatEditor } from './floatEditor';
import { IntegerEditor } from './integerEditor';
import { LongTextEditor } from './longTextEditor';
import { MultipleSelectEditor } from './multipleSelectEditor';
import { SingleSelectEditor } from './singleSelectEditor';
import { TextEditor } from './textEditor';
export declare const Editors: {
checkbox: typeof CheckboxEditor;
date: typeof DateEditor;
float: typeof FloatEditor;
integer: typeof IntegerEditor;
longText: typeof LongTextEditor;
multipleSelect: typeof MultipleSelectEditor;
singleSelect: typeof SingleSelectEditor;
text: typeof TextEditor;
};
4 changes: 3 additions & 1 deletion dist/amd/editors/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/editors/index.js.map

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

55 changes: 55 additions & 0 deletions dist/amd/editors/multipleSelectEditor.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
import { Editor, Column, MultipleSelectOption, SelectOption } from './../models/index';
/**
* Slickgrid editor class for multiple select lists
*/
export declare class MultipleSelectEditor implements Editor {
private args;
/**
* The JQuery DOM element
*/
$editorElm: any;
/**
* The slick grid column being edited
*/
columnDef: Column;
/**
* The multiple-select options for a multiple select list
*/
defaultOptions: MultipleSelectOption;
/**
* The default item values that are set
*/
defaultValue: any[];
/**
* The options label/value object to use in the select list
*/
collection: SelectOption[];
/**
* The property name for values in the collection
*/
valueName: string;
/**
* The property name for labels in the collection
*/
labelName: string;
/**
* The i18n aurelia library
*/
private _i18n;
constructor(args: any);
/**
* The current selected values from the collection
*/
readonly currentValues: (string | number)[];
init(): void;
applyValue(item: any, state: any): void;
destroy(): void;
loadValue(item: any): void;
serializeValue(): any;
focus(): void;
isValueChanged(): boolean;
validate(): any;
private buildTemplateHtmlString();
private createDomElement(editorTemplate);
private refresh();
}
155 changes: 155 additions & 0 deletions dist/amd/editors/multipleSelectEditor.js

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

Loading

0 comments on commit 6e77aac

Please sign in to comment.