igniteui-webcomponents-grids 6.0.2 → 6.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +0,0 @@
1
-
2
- export declare type DataType = "string" | "number" | "boolean" | "date" | "dateTime" | "time" | "currency" | "percent" | "image";
3
-
@@ -1,29 +0,0 @@
1
-
2
- import { IgcFieldType } from './igc-field-type';
3
-
4
-
5
- /* jsonAPIPlainObject */
6
-
7
-
8
- /**
9
- * An interface describing entity
10
- */
11
-
12
- export declare class IgcEntityType
13
- {
14
-
15
-
16
- public set name(value: string);
17
- public get name(): string;
18
-
19
-
20
- public set fields(value: IgcFieldType[]);
21
- public get fields(): IgcFieldType[];
22
-
23
-
24
- public childEntities?: IgcEntityType[];
25
-
26
- }
27
-
28
-
29
-
@@ -1,52 +0,0 @@
1
-
2
- import { GridColumnDataType } from './grid-column-data-type';
3
- import { IgcFieldEditorOptions } from './igc-field-editor-options';
4
- import { IgcFilteringOperand } from './igc-filtering-operand';
5
- import { IgcFieldPipeArgs } from './igc-field-pipe-args';
6
-
7
-
8
- /* jsonAPIPlainObject */
9
-
10
-
11
-
12
- export declare class IgcFieldType
13
- {
14
-
15
-
16
- public label?: string;
17
-
18
-
19
- public set field(value: string);
20
- public get field(): string;
21
-
22
-
23
- public header?: string;
24
-
25
-
26
- /* alternateType: GridColumnDataType */
27
- public set dataType(value: any);
28
- public get dataType(): any;
29
-
30
-
31
- public editorOptions?: IgcFieldEditorOptions;
32
-
33
-
34
- public filters?: IgcFilteringOperand;
35
-
36
-
37
- public pipeArgs?: IgcFieldPipeArgs;
38
-
39
-
40
- public defaultTimeFormat?: string;
41
-
42
-
43
- public defaultDateTimeFormat?: string;
44
-
45
-
46
-
47
- public formatter?(value: any, rowData?: any): any;
48
-
49
- }
50
-
51
-
52
-