igniteui-webcomponents-grids 6.2.2 → 6.3.0-alpha.1

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.
Files changed (31) hide show
  1. package/custom-elements.json +4170 -4152
  2. package/grids/3rdpartylicenses.txt +887 -27
  3. package/grids/combined.js +68764 -48493
  4. package/grids/lib/grid-toolbar-exporter-type.d.ts +1 -1
  5. package/grids/lib/igc-base-toolbar-directive.d.ts +1 -0
  6. package/grids/lib/igc-column-component.d.ts +3 -6
  7. package/grids/lib/igc-column-pipe-args.d.ts +1 -1
  8. package/grids/lib/igc-exporter-options.d.ts +0 -1
  9. package/grids/lib/igc-field-pipe-args.d.ts +2 -0
  10. package/grids/lib/igc-grid-resource-strings.d.ts +3 -0
  11. package/grids/lib/igc-grid-state-component.d.ts +0 -1
  12. package/grids/lib/igc-grid-toolbar-component.d.ts +1 -0
  13. package/grids/lib/igc-grid-toolbar-exporter-component.d.ts +8 -0
  14. package/grids/lib/igc-pivot-data-selector-component.d.ts +1 -0
  15. package/grids/lib/igc-summary-expression.d.ts +1 -1
  16. package/grids/lib/igc-toggle-view-cancelable-event-args.d.ts +7 -0
  17. package/grids/lib/igc-toggle-view-event-args.d.ts +4 -0
  18. package/grids/lib/igc-tree-grid-component.d.ts +3 -2
  19. package/grids/lib/igc-tree-grid-record.d.ts +1 -0
  20. package/grids/lib/index.d.ts +45 -45
  21. package/grids/themes/dark/bootstrap.css +1 -1
  22. package/grids/themes/dark/fluent.css +1 -1
  23. package/grids/themes/dark/indigo.css +1 -1
  24. package/grids/themes/dark/material.css +1 -1
  25. package/grids/themes/light/bootstrap.css +1 -1
  26. package/grids/themes/light/fluent.css +1 -1
  27. package/grids/themes/light/indigo.css +1 -1
  28. package/grids/themes/light/material.css +1 -1
  29. package/package.json +1 -1
  30. package/vscode.html-custom-data.json +1 -1
  31. package/web-types.json +1 -1
@@ -1,3 +1,3 @@
1
1
 
2
- export declare type GridToolbarExporterType = "excel" | "csv";
2
+ export declare type GridToolbarExporterType = "excel" | "csv" | "pdf";
3
3
 
@@ -23,6 +23,7 @@ import { EventEmitterMixin, LitElement, Constructor, AbstractConstructor } from
23
23
  {
24
24
 
25
25
 
26
+
26
27
  /**
27
28
  * Sets the height of the column list in the dropdown.
28
29
  */
@@ -42,6 +42,7 @@ import { EventEmitterMixin, LitElement, Constructor, AbstractConstructor } from
42
42
  static register(): void;
43
43
 
44
44
 
45
+
45
46
  /**
46
47
  * Sets/gets the `field` value.
47
48
  * ```typescript
@@ -827,8 +828,6 @@ import { EventEmitterMixin, LitElement, Constructor, AbstractConstructor } from
827
828
  * ```typescript
828
829
  * let visibleColumnIndex = this.column.visibleIndex;
829
830
  * ```
830
- *
831
- * @memberof IgxColumnComponent
832
831
  */
833
832
  public get visibleIndex(): number;
834
833
 
@@ -974,11 +973,9 @@ import { EventEmitterMixin, LitElement, Constructor, AbstractConstructor } from
974
973
  * ```typescript
975
974
  * this.column.parent = higherLevelColumn;
976
975
  * ```
977
- *
978
- * @memberof IgxColumnComponent
979
976
  */
980
- public set parent(value: any);
981
- public get parent(): any;
977
+ public set parent(value: IgcColumnComponent);
978
+ public get parent(): IgcColumnComponent;
982
979
 
983
980
 
984
981
 
@@ -6,7 +6,7 @@ import { IgcFieldPipeArgs } from './igc-field-pipe-args';
6
6
 
7
7
 
8
8
  // D.P. Can't use `export type IColumnPipeArgs = IFieldPipeArgs` because TypeScripts Compiler API optimizes it away completely
9
-
9
+
10
10
 
11
11
  export declare class IgcColumnPipeArgs extends IgcFieldPipeArgs
12
12
  {
@@ -4,7 +4,6 @@
4
4
 
5
5
 
6
6
 
7
-
8
7
  export declare class IgcExporterOptions
9
8
  {
10
9
 
@@ -5,6 +5,8 @@
5
5
 
6
6
 
7
7
 
8
+ /* IgxGrid column types */
9
+
8
10
  export declare class IgcFieldPipeArgs
9
11
  {
10
12
 
@@ -418,6 +418,9 @@
418
418
  public igx_grid_toolbar_exporter_csv_entry_text?: string;
419
419
 
420
420
 
421
+ public igx_grid_toolbar_exporter_pdf_entry_text?: string;
422
+
423
+
421
424
  public igx_grid_snackbar_addrow_label?: string;
422
425
 
423
426
 
@@ -28,7 +28,6 @@ import { EventEmitterMixin, LitElement, Constructor, AbstractConstructor } from
28
28
  static register(): void;
29
29
 
30
30
 
31
-
32
31
  /**
33
32
  * Restores grid features' state based on the IGridStateInfo object passed as an argument.
34
33
  * @param state object to restore state from.
@@ -32,6 +32,7 @@ import { IgcGridBaseDirective } from './igc-grid-base-directive';
32
32
 
33
33
 
34
34
 
35
+
35
36
  /**
36
37
  * When enabled, shows the indeterminate progress bar.
37
38
  *
@@ -53,6 +53,14 @@ import { IgcBaseToolbarDirectiveEventMap } from './igc-base-toolbar-directive';
53
53
 
54
54
 
55
55
 
56
+ /**
57
+ * Show entry for PDF export.
58
+ */
59
+ public set exportPDF(value: boolean);
60
+ public get exportPDF(): boolean;
61
+
62
+
63
+
56
64
  /**
57
65
  * The name for the exported file.
58
66
  */
@@ -38,6 +38,7 @@ import { IgcPivotGridComponent } from './igc-pivot-grid-component';
38
38
 
39
39
 
40
40
 
41
+
41
42
  /**
42
43
  * Gets/sets whether the columns panel is expanded
43
44
  * Get
@@ -4,7 +4,7 @@
4
4
  /* jsonAPIPlainObject */
5
5
 
6
6
 
7
- /* tsPlainInterface */
7
+ /* tsPlainInterface *
8
8
  /* marshalByValue */
9
9
 
10
10
  export declare class IgcSummaryExpression
@@ -8,9 +8,16 @@
8
8
  {
9
9
 
10
10
 
11
+ public cancel: boolean;
12
+
13
+
11
14
  /** Id of the toggle view */
12
15
  public id: string;
13
16
 
17
+
18
+ /** Provides reference to the owner component (from IBaseEventArgs) */
19
+ public owner?: any;
20
+
14
21
  }
15
22
 
16
23
 
@@ -12,6 +12,10 @@ import { IgcBaseEventArgs } from './igc-base-event-args';
12
12
  /** Id of the toggle view */
13
13
  public id: string;
14
14
 
15
+
16
+ /** Provides reference to the owner component (from IBaseEventArgs) */
17
+ public owner?: any;
18
+
15
19
  }
16
20
 
17
21
 
@@ -63,6 +63,7 @@ import { IgcGridBaseDirectiveEventMap } from './igc-grid-base-directive';
63
63
  static register(): void;
64
64
 
65
65
 
66
+
66
67
  /**
67
68
  * Sets the child data key of the `IgxTreeGridComponent`.
68
69
  * ```html
@@ -183,7 +184,7 @@ import { IgcGridBaseDirectiveEventMap } from './igc-grid-base-directive';
183
184
 
184
185
 
185
186
 
186
- /* treatAsRef */
187
+ /* treatAsRef */
187
188
  /**
188
189
  * Gets/Sets the array of data that populates the component.
189
190
  * ```html
@@ -243,7 +244,7 @@ import { IgcGridBaseDirectiveEventMap } from './igc-grid-base-directive';
243
244
 
244
245
 
245
246
 
246
- public getDefaultExpandState(record: IgcTreeGridRecord): void;
247
+ public getDefaultExpandState(record: IgcTreeGridRecord): boolean;
247
248
 
248
249
 
249
250
 
@@ -3,6 +3,7 @@
3
3
 
4
4
  /* jsonAPIPlainObject */
5
5
 
6
+
6
7
  /* marshalByValue */
7
8
 
8
9
  export declare class IgcTreeGridRecord
@@ -2,10 +2,7 @@ export { type IgcGridStateComponentEventMap, IgcGridStateComponent } from "./igc
2
2
  export type { IgcGridStateBaseDirective } from "./igc-grid-state-base-directive";
3
3
  export type { IgcGridStateInfo } from "./igc-grid-state-info";
4
4
  export { IgcActionStripComponent } from "./igc-action-strip-component";
5
- export type { IgcGridActionsBaseDirective } from "./igc-grid-actions-base-directive";
6
5
  export type { IgcActionStripResourceStrings } from "./igc-action-strip-resource-strings";
7
- export { IgcGridEditingActionsComponent } from "./igc-grid-editing-actions-component";
8
- export { IgcGridPinningActionsComponent } from "./igc-grid-pinning-actions-component";
9
6
  export { IgcBooleanFilteringOperand } from "./igc-boolean-filtering-operand";
10
7
  export { IgcFilteringOperand } from "./igc-filtering-operand";
11
8
  export { IgcDateFilteringOperand } from "./igc-date-filtering-operand";
@@ -20,19 +17,46 @@ export type { IgcExpressionTree } from "./igc-expression-tree";
20
17
  export { IgcNoopFilteringStrategy } from "./igc-noop-filtering-strategy";
21
18
  export type { IgcBaseFilteringStrategy } from "./igc-base-filtering-strategy";
22
19
  export { IgcFilteringExpressionsTree } from "./igc-filtering-expressions-tree";
20
+ export { IgcNoopSortingStrategy } from "./igc-noop-sorting-strategy";
21
+ export type { IgcSummaryExpression } from "./igc-summary-expression";
23
22
  export type { IgcGroupByResult } from "./igc-group-by-result";
24
23
  export type { IgcGroupByRecord } from "./igc-group-by-record";
25
24
  export { IgcDefaultTreeGridMergeStrategy } from "./igc-default-tree-grid-merge-strategy";
26
25
  export { IgcDefaultMergeStrategy } from "./igc-default-merge-strategy";
27
26
  export { IgcByLevelTreeGridMergeStrategy } from "./igc-by-level-tree-grid-merge-strategy";
28
- export { IgcNoopPivotDimensionsStrategy } from "./igc-noop-pivot-dimensions-strategy";
29
- export type { IgcPivotDimension } from "./igc-pivot-dimension";
30
- export type { IgcPivotValue } from "./igc-pivot-value";
31
27
  export { type IgcColumnGroupComponentEventMap, IgcColumnGroupComponent } from "./igc-column-group-component";
32
28
  export { type IgcColumnComponentEventMap, IgcColumnComponent } from "./igc-column-component";
33
29
  export type { IgcColumnTemplateContext } from "./igc-column-template-context";
34
30
  export { type IgcColumnLayoutComponentEventMap, IgcColumnLayoutComponent } from "./igc-column-layout-component";
35
- export { IgcNoopSortingStrategy } from "./igc-noop-sorting-strategy";
31
+ export { IgcNoopPivotDimensionsStrategy } from "./igc-noop-pivot-dimensions-strategy";
32
+ export type { IgcPivotDimension } from "./igc-pivot-dimension";
33
+ export type { IgcPivotValue } from "./igc-pivot-value";
34
+ export { IgcGridEditingActionsComponent } from "./igc-grid-editing-actions-component";
35
+ export type { IgcGridActionsBaseDirective } from "./igc-grid-actions-base-directive";
36
+ export { IgcGridPinningActionsComponent } from "./igc-grid-pinning-actions-component";
37
+ export { IgcPivotDateDimension } from "./igc-pivot-date-dimension";
38
+ export type { GridColumnDataType } from "./grid-column-data-type";
39
+ export type { IgcGridResourceStrings } from "./igc-grid-resource-strings";
40
+ export type { IgcPivotDateDimensionOptions } from "./igc-pivot-date-dimension-options";
41
+ export { IgcSummaryOperand } from "./igc-summary-operand";
42
+ export type { IgcSummaryResult } from "./igc-summary-result";
43
+ export { IgcNumberSummaryOperand } from "./igc-number-summary-operand";
44
+ export { IgcDateSummaryOperand } from "./igc-date-summary-operand";
45
+ export { IgcTimeSummaryOperand } from "./igc-time-summary-operand";
46
+ export { IgcGridToolbarTitleComponent } from "./igc-grid-toolbar-title-component";
47
+ export { IgcGridToolbarActionsComponent } from "./igc-grid-toolbar-actions-component";
48
+ export { IgcGridToolbarAdvancedFilteringComponent } from "./igc-grid-toolbar-advanced-filtering-component";
49
+ export type { IgcOverlaySettings } from "./igc-overlay-settings";
50
+ export { type IgcGridToolbarExporterComponentEventMap, IgcGridToolbarExporterComponent } from "./igc-grid-toolbar-exporter-component";
51
+ export type { IgcBaseToolbarDirectiveEventMap, IgcBaseToolbarDirective } from "./igc-base-toolbar-directive";
52
+ export type { IgcExporterEventArgs } from "./igc-exporter-event-args";
53
+ export type { GridToolbarExporterType } from "./grid-toolbar-exporter-type";
54
+ export { type IgcGridToolbarHidingComponentEventMap, IgcGridToolbarHidingComponent } from "./igc-grid-toolbar-hiding-component";
55
+ export type { IgcBaseToolbarColumnActionsDirectiveEventMap, IgcBaseToolbarColumnActionsDirective } from "./igc-base-toolbar-column-actions-directive";
56
+ export { type IgcGridToolbarPinningComponentEventMap, IgcGridToolbarPinningComponent } from "./igc-grid-toolbar-pinning-component";
57
+ export type { IgcToggleViewCancelableEventArgs } from "./igc-toggle-view-cancelable-event-args";
58
+ export type { IgcToggleViewEventArgs } from "./igc-toggle-view-event-args";
59
+ export type { IgcColumnToggledEventArgs } from "./igc-column-toggled-event-args";
36
60
  export { type IgcGridComponentEventMap, IgcGridComponent } from "./igc-grid-component";
37
61
  export type { IgcGridBaseDirectiveEventMap, IgcGridBaseDirective } from "./igc-grid-base-directive";
38
62
  export type { IgcForOfState } from "./igc-for-of-state";
@@ -49,10 +73,6 @@ export { type IgcHierarchicalGridComponentEventMap, IgcHierarchicalGridComponent
49
73
  export type { IgcHierarchicalGridBaseDirectiveEventMap, IgcHierarchicalGridBaseDirective } from "./igc-hierarchical-grid-base-directive";
50
74
  export { type IgcRowIslandComponentEventMap, IgcRowIslandComponent } from "./igc-row-island-component";
51
75
  export { type IgcPivotDataSelectorComponentEventMap, IgcPivotDataSelectorComponent } from "./igc-pivot-data-selector-component";
52
- export { IgcPivotDateDimension } from "./igc-pivot-date-dimension";
53
- export type { GridColumnDataType } from "./grid-column-data-type";
54
- export type { IgcGridResourceStrings } from "./igc-grid-resource-strings";
55
- export type { IgcPivotDateDimensionOptions } from "./igc-pivot-date-dimension-options";
56
76
  export { type IgcPivotGridComponentEventMap, IgcPivotGridComponent } from "./igc-pivot-grid-component";
57
77
  export type { IgcDimensionsChange } from "./igc-dimensions-change";
58
78
  export type { IgcPivotConfigurationChangedEventArgs } from "./igc-pivot-configuration-changed-event-args";
@@ -63,26 +83,6 @@ export type { IgcPivotConfiguration } from "./igc-pivot-configuration";
63
83
  export type { IgcPivotUISettings } from "./igc-pivot-ui-settings";
64
84
  export { PivotDimensionType } from "./pivot-dimension-type";
65
85
  export { SortingDirection } from "./sorting-direction";
66
- export type { IgcSummaryExpression } from "./igc-summary-expression";
67
- export { IgcSummaryOperand } from "./igc-summary-operand";
68
- export type { IgcSummaryResult } from "./igc-summary-result";
69
- export { IgcNumberSummaryOperand } from "./igc-number-summary-operand";
70
- export { IgcDateSummaryOperand } from "./igc-date-summary-operand";
71
- export { IgcTimeSummaryOperand } from "./igc-time-summary-operand";
72
- export { IgcGridToolbarTitleComponent } from "./igc-grid-toolbar-title-component";
73
- export { IgcGridToolbarActionsComponent } from "./igc-grid-toolbar-actions-component";
74
- export { IgcGridToolbarAdvancedFilteringComponent } from "./igc-grid-toolbar-advanced-filtering-component";
75
- export type { IgcOverlaySettings } from "./igc-overlay-settings";
76
- export { type IgcGridToolbarExporterComponentEventMap, IgcGridToolbarExporterComponent } from "./igc-grid-toolbar-exporter-component";
77
- export type { IgcBaseToolbarDirectiveEventMap, IgcBaseToolbarDirective } from "./igc-base-toolbar-directive";
78
- export type { IgcExporterEventArgs } from "./igc-exporter-event-args";
79
- export type { GridToolbarExporterType } from "./grid-toolbar-exporter-type";
80
- export { type IgcGridToolbarHidingComponentEventMap, IgcGridToolbarHidingComponent } from "./igc-grid-toolbar-hiding-component";
81
- export type { IgcBaseToolbarColumnActionsDirectiveEventMap, IgcBaseToolbarColumnActionsDirective } from "./igc-base-toolbar-column-actions-directive";
82
- export { type IgcGridToolbarPinningComponentEventMap, IgcGridToolbarPinningComponent } from "./igc-grid-toolbar-pinning-component";
83
- export type { IgcToggleViewCancelableEventArgs } from "./igc-toggle-view-cancelable-event-args";
84
- export type { IgcToggleViewEventArgs } from "./igc-toggle-view-event-args";
85
- export type { IgcColumnToggledEventArgs } from "./igc-column-toggled-event-args";
86
86
  export { type IgcTreeGridComponentEventMap, IgcTreeGridComponent } from "./igc-tree-grid-component";
87
87
  export type { IgcTreeGridRecord } from "./igc-tree-grid-record";
88
88
  export type { IgcGridStateOptions } from "./igc-grid-state-options";
@@ -97,15 +97,20 @@ export type { IgcFilterItem } from "./igc-filter-item";
97
97
  export type { IgcBaseEventArgs } from "./igc-base-event-args";
98
98
  export { FilteringExpressionsTreeType } from "./filtering-expressions-tree-type";
99
99
  export type { IgcGroupedRecords } from "./igc-grouped-records";
100
- export type { IgcPivotAggregator } from "./igc-pivot-aggregator";
101
- export type { IgcPivotGridRecord } from "./igc-pivot-grid-record";
102
- export type { IgcPivotGridColumn } from "./igc-pivot-grid-column";
103
100
  export { ColumnPinningPosition } from "./column-pinning-position";
104
101
  export type { IgcSortingStrategy } from "./igc-sorting-strategy";
105
102
  export type { IgcSummaryTemplateContext } from "./igc-summary-template-context";
106
103
  export type { IgcCellTemplateContext } from "./igc-cell-template-context";
107
104
  export type { IgcColumnPipeArgs } from "./igc-column-pipe-args";
108
105
  export type { IgcColumnEditorOptions } from "./igc-column-editor-options";
106
+ export type { IgcPivotAggregator } from "./igc-pivot-aggregator";
107
+ export type { IgcPivotGridRecord } from "./igc-pivot-grid-record";
108
+ export type { IgcPivotGridColumn } from "./igc-pivot-grid-column";
109
+ export type { IgcPositionStrategy } from "./igc-position-strategy";
110
+ export type { IgcScrollStrategy } from "./igc-scroll-strategy";
111
+ export type { IgcBaseExporterEventMap, IgcBaseExporter } from "./igc-base-exporter";
112
+ export type { IgcExporterOptions } from "./igc-exporter-options";
113
+ export type { IgcCancelableBrowserEventArgs } from "./igc-cancelable-browser-event-args";
109
114
  export type { IgcGridTemplateContext } from "./igc-grid-template-context";
110
115
  export type { IgcDataCloneStrategy } from "./igc-data-clone-strategy";
111
116
  export type { IgcClipboardOptions } from "./igc-clipboard-options";
@@ -179,19 +184,17 @@ export type { IgcPivotDimensionStrategy } from "./igc-pivot-dimension-strategy";
179
184
  export type { IgcPivotKeys } from "./igc-pivot-keys";
180
185
  export type { PivotRowLayoutType } from "./pivot-row-layout-type";
181
186
  export type { PivotSummaryPosition } from "./pivot-summary-position";
182
- export type { IgcPositionStrategy } from "./igc-position-strategy";
183
- export type { IgcScrollStrategy } from "./igc-scroll-strategy";
184
- export type { IgcBaseExporterEventMap, IgcBaseExporter } from "./igc-base-exporter";
185
- export type { IgcExporterOptions } from "./igc-exporter-options";
186
- export type { IgcCancelableBrowserEventArgs } from "./igc-cancelable-browser-event-args";
187
187
  export { RowPinningPosition } from "./row-pinning-position";
188
- export type { PivotAggregationType } from "./pivot-aggregation-type";
189
188
  export type { IgcFieldPipeArgs } from "./igc-field-pipe-args";
190
189
  export type { IgcFieldEditorOptions } from "./igc-field-editor-options";
191
- export type { ValidationStatus } from "./validation-status";
190
+ export type { PivotAggregationType } from "./pivot-aggregation-type";
191
+ export type { IgcPositionSettings } from "./igc-position-settings";
192
+ export type { IgcRowExportingEventArgs } from "./igc-row-exporting-event-args";
193
+ export type { IgcColumnExportingEventArgs } from "./igc-column-exporting-event-args";
194
+ export type { IgcExporterOptionsBase } from "./igc-exporter-options-base";
192
195
  export type { IgcCancelableEventArgs } from "./igc-cancelable-event-args";
196
+ export type { ValidationStatus } from "./validation-status";
193
197
  export type { GridKeydownTargetType } from "./grid-keydown-target-type";
194
- export type { IgcExporterOptionsBase } from "./igc-exporter-options-base";
195
198
  export type { IgcForOfDataChangingEventArgs } from "./igc-for-of-data-changing-event-args";
196
199
  export type { IgcHeaderType } from "./igc-header-type";
197
200
  export type { IgcPageCancellableEventArgs } from "./igc-page-cancellable-event-args";
@@ -202,9 +205,6 @@ export type { IgcHeadSelectorTemplateDetails } from "./igc-head-selector-templat
202
205
  export type { IgcRowSelectorTemplateDetails } from "./igc-row-selector-template-details";
203
206
  export type { IgcBaseSearchInfo } from "./igc-base-search-info";
204
207
  export type { IgcValidationErrors } from "./igc-validation-errors";
205
- export type { IgcPositionSettings } from "./igc-position-settings";
206
- export type { IgcRowExportingEventArgs } from "./igc-row-exporting-event-args";
207
- export type { IgcColumnExportingEventArgs } from "./igc-column-exporting-event-args";
208
208
  export { HorizontalAlignment } from "./horizontal-alignment";
209
209
  export { VerticalAlignment } from "./vertical-alignment";
210
210
  export type { IgcSize } from "./igc-size";