igniteui-webcomponents-grids 6.0.1 → 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.
- package/custom-elements.json +136 -78
- package/grids/combined.js +3943 -3924
- package/grids/lib/igc-column-component.d.ts +4 -4
- package/grids/lib/igc-for-of-data-change-event-args.d.ts +14 -0
- package/grids/lib/igc-for-of-data-changing-event-args.d.ts +3 -0
- package/grids/lib/igc-grid-base-directive.d.ts +25 -7
- package/grids/lib/igc-grid-resource-strings.d.ts +42 -0
- package/grids/lib/igc-grid-toolbar-advanced-filtering-component.d.ts +1 -1
- package/grids/lib/igc-grid-toolbar-exporter-component.d.ts +2 -2
- package/grids/lib/igc-grid-toolbar-hiding-component.d.ts +1 -1
- package/grids/lib/igc-grid-toolbar-pinning-component.d.ts +1 -1
- package/grids/lib/igc-hierarchical-grid-component.d.ts +0 -19
- package/grids/lib/igc-pivot-data-selector-component.d.ts +4 -4
- package/grids/lib/igc-row-island-component.d.ts +25 -7
- package/grids/lib/index.d.ts +2 -4
- package/grids/themes/dark/bootstrap.css +1 -1
- package/grids/themes/dark/fluent.css +1 -1
- package/grids/themes/dark/indigo.css +1 -1
- package/grids/themes/dark/material.css +1 -1
- package/grids/themes/light/bootstrap.css +1 -1
- package/grids/themes/light/fluent.css +1 -1
- package/grids/themes/light/indigo.css +1 -1
- package/grids/themes/light/material.css +1 -1
- package/package.json +1 -1
- package/vscode.html-custom-data.json +1 -1
- package/web-types.json +1 -1
- package/grids/lib/data-type.d.ts +0 -3
- package/grids/lib/igc-entity-type.d.ts +0 -29
- package/grids/lib/igc-field-type.d.ts +0 -52
package/grids/lib/data-type.d.ts
DELETED
|
@@ -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
|
-
|