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

Commit 8631c5c

Browse files
Ghislain BeaulacGhislain Beaulac
authored andcommitted
prepare release 1.6.8
1 parent d035b38 commit 8631c5c

18 files changed

+207
-140
lines changed

dist.tgz

1.86 KB
Binary file not shown.

dist/angular-slickgrid.metadata.json

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

dist/app/modules/angular-slickgrid/constants.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,7 @@ export declare class Constants {
1717
static VALIDATION_EDITOR_VALID_NUMBER: string;
1818
static VALIDATION_EDITOR_VALID_INTEGER: string;
1919
static VALIDATION_EDITOR_NUMBER_BETWEEN: string;
20+
static VALIDATION_EDITOR_NUMBER_MAX: string;
21+
static VALIDATION_EDITOR_NUMBER_MIN: string;
2022
static VALIDATION_EDITOR_DECIMAL_BETWEEN: string;
2123
}

dist/app/modules/angular-slickgrid/editors/selectEditor.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ export declare class SelectEditor implements Editor {
6161
applyValue(item: any, state: any): void;
6262
destroy(): void;
6363
loadValue(item: any): void;
64+
loadMultipleValues(items: any[]): void;
6465
loadSingleValue(item: any): void;
6566
serializeValue(): any;
6667
focus(): void;
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { Column, ElementPosition } from './index';
2+
export interface EditorArgs {
3+
column: Column;
4+
container: any;
5+
grid: any;
6+
gridPosition: ElementPosition;
7+
item: any;
8+
position: ElementPosition;
9+
cancelChanges?: () => void;
10+
commitChanges?: () => void;
11+
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
import { EditorValidatorOutput } from './editorValidatorOutput.interface';
2-
export declare type EditorValidator = (value: any) => EditorValidatorOutput;
1+
import { EditorArgs, EditorValidatorOutput } from './index';
2+
export declare type EditorValidator = (value: any, args?: EditorArgs) => EditorValidatorOutput;
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
export interface ElementPosition {
2+
top: number;
3+
left: number;
4+
bottom: number;
5+
right: number;
6+
height: number;
7+
width: number;
8+
visible: boolean;
9+
}

dist/app/modules/angular-slickgrid/models/index.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,10 @@ export * from './currentSorter.interface';
2525
export * from './delimiterType.enum';
2626
export * from './editCommand.interface';
2727
export * from './editor.interface';
28+
export * from './editorArgs.interface';
2829
export * from './editorValidator.interface';
2930
export * from './editorValidatorOutput.interface';
31+
export * from './elementPosition.interface';
3032
export * from './exportOption.interface';
3133
export * from './extension.interface';
3234
export * from './fieldType.enum';

dist/bundles/angular-slickgrid.umd.js

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

0 commit comments

Comments
 (0)