igniteui-webcomponents-grids 6.3.0-alpha.1 → 6.3.0-alpha.2
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 +371 -50
- package/grids/3rdpartylicenses.txt +31 -31
- package/grids/combined.js +28502 -28239
- package/grids/lib/grid-cell-merge-mode.d.ts +1 -1
- package/grids/lib/igc-action-strip-component.d.ts +3 -3
- package/grids/lib/igc-action-strip-resource-strings.d.ts +1 -1
- package/grids/lib/igc-by-level-tree-grid-merge-strategy.d.ts +1 -0
- package/grids/lib/igc-default-merge-strategy.d.ts +2 -1
- package/grids/lib/igc-default-tree-grid-merge-strategy.d.ts +1 -1
- package/grids/lib/igc-entity-type.d.ts +43 -0
- package/grids/lib/igc-field-type.d.ts +97 -0
- package/grids/lib/igc-grid-base-directive.d.ts +4 -4
- package/grids/lib/igc-grid-merge-strategy.d.ts +1 -0
- package/grids/lib/igc-grid-resource-strings.d.ts +175 -195
- package/grids/lib/igc-hierarchical-grid-component.d.ts +12 -0
- package/grids/lib/igc-paginator-component.d.ts +3 -3
- package/grids/lib/igc-paginator-resource-strings.d.ts +6 -6
- package/grids/lib/igc-pivot-date-dimension.d.ts +3 -3
- package/grids/lib/igc-prefixed-resource-strings.d.ts +11 -0
- package/grids/lib/igc-query-builder-component.d.ts +141 -0
- package/grids/lib/igc-query-builder-header-component.d.ts +62 -0
- package/grids/lib/igc-query-builder-resource-strings.d.ts +228 -0
- package/grids/lib/igc-query-builder-search-value-context.d.ts +27 -0
- package/grids/lib/igc-row-island-component.d.ts +13 -37
- package/grids/lib/igc-summary-expression.d.ts +1 -1
- package/grids/lib/igc-toggle-view-cancelable-event-args.d.ts +0 -7
- package/grids/lib/igc-toggle-view-event-args.d.ts +0 -4
- package/grids/lib/igc-validation-resource-strings.d.ts +42 -0
- package/grids/lib/index.d.ts +8 -0
- 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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
import { IgcGridActionsBaseDirective } from './igc-grid-actions-base-directive';
|
|
3
|
-
import {
|
|
3
|
+
import { IgcPrefixedResourceStrings } from './igc-prefixed-resource-strings';
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
@@ -85,8 +85,8 @@ import { IgcActionStripResourceStrings } from './igc-action-strip-resource-strin
|
|
|
85
85
|
* @remarks
|
|
86
86
|
* By default it uses EN resources.
|
|
87
87
|
*/
|
|
88
|
-
public set resourceStrings(value:
|
|
89
|
-
public get resourceStrings():
|
|
88
|
+
public set resourceStrings(value: IgcPrefixedResourceStrings);
|
|
89
|
+
public get resourceStrings(): IgcPrefixedResourceStrings;
|
|
90
90
|
|
|
91
91
|
|
|
92
92
|
|
|
@@ -4,6 +4,7 @@ import { IgcGridBaseDirective } from './igc-grid-base-directive';
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
+
/* csSuppress */
|
|
7
8
|
|
|
8
9
|
export declare class IgcDefaultMergeStrategy
|
|
9
10
|
{
|
|
@@ -15,7 +16,7 @@ import { IgcGridBaseDirective } from './igc-grid-base-directive';
|
|
|
15
16
|
|
|
16
17
|
|
|
17
18
|
/* blazorCSSuppress */
|
|
18
|
-
public merge(data: any[], field: string, comparer: any, result: any[], activeRowIndexes: number[], isDate?: boolean, isTime?: boolean, grid?: IgcGridBaseDirective):
|
|
19
|
+
public merge(data: any[], field: string, comparer: any, result: any[], activeRowIndexes: number[], isDate?: boolean, isTime?: boolean, grid?: IgcGridBaseDirective): any[];
|
|
19
20
|
|
|
20
21
|
|
|
21
22
|
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
|
|
2
|
+
import { IgcFieldType } from './igc-field-type';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
/* jsonAPIPlainObject */
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Describes an entity in the QueryBuilder.
|
|
10
|
+
* An entity represents a logical grouping of fields and can have nested child entities.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
export declare class IgcEntityType
|
|
14
|
+
{
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* The name of the entity.
|
|
19
|
+
* Typically used as an identifier in expressions.
|
|
20
|
+
*/
|
|
21
|
+
public set name(value: string);
|
|
22
|
+
public get name(): string;
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* The list of fields that belong to this entity.
|
|
28
|
+
*/
|
|
29
|
+
public set fields(value: IgcFieldType[]);
|
|
30
|
+
public get fields(): IgcFieldType[];
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Optional child entities.
|
|
36
|
+
* This allows building hierarchical or nested query structures.
|
|
37
|
+
*/
|
|
38
|
+
public childEntities?: IgcEntityType[];
|
|
39
|
+
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
@@ -0,0 +1,97 @@
|
|
|
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
|
+
* Describes a field that can be used in the Grid and QueryBuilder components.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
export declare class IgcFieldType
|
|
16
|
+
{
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Display label for the field.
|
|
21
|
+
*/
|
|
22
|
+
public label?: string;
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* The internal field name, used in expressions and queries.
|
|
28
|
+
*/
|
|
29
|
+
public set field(value: string);
|
|
30
|
+
public get field(): string;
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Optional column header for UI display purposes.
|
|
36
|
+
*/
|
|
37
|
+
public header?: string;
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* The data type of the field.
|
|
43
|
+
*/
|
|
44
|
+
/* alternateType: GridColumnDataType */
|
|
45
|
+
public set dataType(value: any);
|
|
46
|
+
public get dataType(): any;
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Options for the editor associated with this field.
|
|
52
|
+
*/
|
|
53
|
+
public editorOptions?: IgcFieldEditorOptions;
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Optional filtering operands that apply to this field.
|
|
59
|
+
*/
|
|
60
|
+
public filters?: IgcFilteringOperand;
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* Optional arguments for any pipe applied to the field.
|
|
66
|
+
*/
|
|
67
|
+
public pipeArgs?: IgcFieldPipeArgs;
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* Default time format for Date/Time fields.
|
|
73
|
+
*/
|
|
74
|
+
public defaultTimeFormat?: string;
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* Default date/time format for Date/Time fields.
|
|
80
|
+
*/
|
|
81
|
+
public defaultDateTimeFormat?: string;
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Optional formatter function to transform the value before display.
|
|
87
|
+
*
|
|
88
|
+
* @param value - The value of the field.
|
|
89
|
+
* @param rowData - Optional row data that contains this field.
|
|
90
|
+
* @returns The formatted value.
|
|
91
|
+
*/
|
|
92
|
+
public formatter?(value: any, rowData?: any): any;
|
|
93
|
+
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
|
|
@@ -48,7 +48,7 @@ import { IgcGridRowTemplateContext } from './igc-grid-row-template-context';
|
|
|
48
48
|
import { IgcGridHeaderTemplateContext } from './igc-grid-header-template-context';
|
|
49
49
|
import { IgcGridToolbarComponent } from './igc-grid-toolbar-component';
|
|
50
50
|
import { IgcPaginatorComponent } from './igc-paginator-component';
|
|
51
|
-
import {
|
|
51
|
+
import { IgcPrefixedResourceStrings } from './igc-prefixed-resource-strings';
|
|
52
52
|
import { FilteringLogic } from './filtering-logic';
|
|
53
53
|
import { GridPagingMode } from './grid-paging-mode';
|
|
54
54
|
import { GridValidationTrigger } from './grid-validation-trigger';
|
|
@@ -432,8 +432,8 @@ import { EventEmitterMixin, LitElement, Constructor, AbstractConstructor } from
|
|
|
432
432
|
* @remarks
|
|
433
433
|
* By default it uses EN resources.
|
|
434
434
|
*/
|
|
435
|
-
public set resourceStrings(value:
|
|
436
|
-
public get resourceStrings():
|
|
435
|
+
public set resourceStrings(value: IgcPrefixedResourceStrings);
|
|
436
|
+
public get resourceStrings(): IgcPrefixedResourceStrings;
|
|
437
437
|
|
|
438
438
|
|
|
439
439
|
|
|
@@ -789,7 +789,7 @@ import { EventEmitterMixin, LitElement, Constructor, AbstractConstructor } from
|
|
|
789
789
|
|
|
790
790
|
|
|
791
791
|
|
|
792
|
-
|
|
792
|
+
/* csSuppress */
|
|
793
793
|
/**
|
|
794
794
|
* Gets/Sets the merge strategy of the grid.
|
|
795
795
|
*
|