igniteui-webcomponents-grids 5.3.0 → 5.4.0

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 (97) hide show
  1. package/bundles/igniteui-webcomponents-grids.umd.js +2341 -1701
  2. package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
  3. package/custom-elements.json +1423 -0
  4. package/esm2015/lib/CanvasTemplateCellPresenter.js +1 -1
  5. package/esm2015/lib/CheckboxListBridge.js +97 -49
  6. package/esm2015/lib/CheckboxListView_combined.js +989 -602
  7. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  8. package/esm2015/lib/ColumnFilterCondition_combined.js +803 -789
  9. package/esm2015/lib/ColumnGroupingView_combined.js +1 -1
  10. package/esm2015/lib/ColumnPinningView_combined.js +3 -3
  11. package/esm2015/lib/DataGridToolbarView_combined.js +1 -1
  12. package/esm2015/lib/GridCellBase.js +14 -4
  13. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +8 -8
  14. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +3 -3
  15. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  16. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  17. package/esm2015/lib/GridColumnPinOptionsView_combined.js +1 -1
  18. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +2 -2
  19. package/esm2015/lib/GridEffectMainIntent.js +1 -1
  20. package/esm2015/lib/GridFilterDialogView_combined.js +2 -0
  21. package/esm2015/lib/ISummaryChooserView_combined.js +9 -9
  22. package/esm2015/lib/MultiColumnComboBoxView_combined.js +3 -3
  23. package/esm2015/lib/TemplateCellPresenter.js +1 -1
  24. package/esm2015/lib/TemplateHeader.js +1 -1
  25. package/esm2015/lib/igc-checkbox-list-component.js +150 -71
  26. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  27. package/esm2015/lib/igc-data-grid-column-component.js +77 -77
  28. package/esm2015/lib/igc-data-grid-filter-dialog-component.js +3 -0
  29. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  30. package/esm2015/lib/igc-image-column-component.js +12 -12
  31. package/esm2015/lib/igc-numeric-column-component.js +35 -35
  32. package/esm2015/lib/igc-text-column-component.js +9 -9
  33. package/esm5/lib/CanvasTemplateCellPresenter.js +1 -1
  34. package/esm5/lib/CheckboxListBridge.js +97 -49
  35. package/esm5/lib/CheckboxListView_combined.js +1009 -580
  36. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  37. package/esm5/lib/ColumnFilterCondition_combined.js +836 -786
  38. package/esm5/lib/ColumnGroupingView_combined.js +1 -1
  39. package/esm5/lib/ColumnPinningView_combined.js +3 -3
  40. package/esm5/lib/DataGridToolbarView_combined.js +1 -1
  41. package/esm5/lib/GridCellBase.js +14 -4
  42. package/esm5/lib/GridColumnFilterOptionsView_combined.js +8 -8
  43. package/esm5/lib/GridColumnGroupOptionsView_combined.js +3 -3
  44. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  45. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  46. package/esm5/lib/GridColumnPinOptionsView_combined.js +1 -1
  47. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +2 -2
  48. package/esm5/lib/GridEffectMainIntent.js +1 -1
  49. package/esm5/lib/GridFilterDialogView_combined.js +2 -0
  50. package/esm5/lib/ISummaryChooserView_combined.js +9 -9
  51. package/esm5/lib/MultiColumnComboBoxView_combined.js +3 -3
  52. package/esm5/lib/TemplateCellPresenter.js +1 -1
  53. package/esm5/lib/TemplateHeader.js +1 -1
  54. package/esm5/lib/igc-checkbox-list-component.js +179 -71
  55. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  56. package/esm5/lib/igc-data-grid-column-component.js +77 -77
  57. package/esm5/lib/igc-data-grid-filter-dialog-component.js +3 -0
  58. package/esm5/lib/igc-date-time-column-component.js +23 -23
  59. package/esm5/lib/igc-image-column-component.js +12 -12
  60. package/esm5/lib/igc-numeric-column-component.js +35 -35
  61. package/esm5/lib/igc-text-column-component.js +9 -9
  62. package/fesm2015/igniteui-webcomponents-grids.js +2259 -1726
  63. package/fesm5/igniteui-webcomponents-grids.js +2343 -1703
  64. package/grids/combined.js +25338 -23125
  65. package/grids/index.d.ts +1 -204
  66. package/grids/lib/igc-column-component.d.ts +1 -1
  67. package/grids/lib/igc-expression-tree.d.ts +7 -0
  68. package/grids/lib/igc-filtering-expression.d.ts +9 -4
  69. package/grids/lib/igc-filtering-expressions-tree.d.ts +9 -1
  70. package/grids/lib/igc-filtering-operand.d.ts +1 -1
  71. package/grids/lib/igc-filtering-operation.d.ts +4 -2
  72. package/grids/lib/igc-grid-base-directive.d.ts +1 -1
  73. package/grids/lib/igc-grid-created-event-args.d.ts +3 -0
  74. package/grids/lib/igc-hierarchical-grid-base-directive.d.ts +1 -1
  75. package/grids/lib/igc-pivot-dimension.d.ts +1 -1
  76. package/grids/lib/igc-pivot-value.d.ts +1 -1
  77. package/grids/lib/igc-row-island-component.d.ts +1 -1
  78. package/grids/lib/index.d.ts +204 -0
  79. package/grids/styles.css +1 -1
  80. package/grids/themes/dark/bootstrap.css +1 -1
  81. package/grids/themes/dark/fluent.css +1 -1
  82. package/grids/themes/dark/indigo.css +1 -1
  83. package/grids/themes/dark/material.css +1 -1
  84. package/grids/themes/light/bootstrap.css +1 -1
  85. package/grids/themes/light/fluent.css +1 -1
  86. package/grids/themes/light/indigo.css +1 -1
  87. package/grids/themes/light/material.css +1 -1
  88. package/lib/CheckboxListBridge.d.ts +12 -9
  89. package/lib/CheckboxListExternal.d.ts +12 -0
  90. package/lib/CheckboxListViewExternal.d.ts +1 -0
  91. package/lib/CheckboxListView_combined.d.ts +184 -151
  92. package/lib/ColumnFilterCondition_combined.d.ts +178 -176
  93. package/lib/GridEffectMainIntent.d.ts +4 -3
  94. package/lib/GridFilterDialogView_combined.d.ts +1 -0
  95. package/lib/igc-checkbox-list-component.d.ts +29 -0
  96. package/lib/igc-data-grid-filter-dialog-component.d.ts +1 -0
  97. package/package.json +4 -4
package/grids/index.d.ts CHANGED
@@ -1,204 +1 @@
1
- export * from './lib/column-pinning-position'
2
- export * from './lib/common'
3
- export * from './lib/drop-position'
4
- export * from './lib/filter-mode'
5
- export * from './lib/filtering-expressions-tree-type'
6
- export * from './lib/filtering-logic'
7
- export * from './lib/grid-column-data-type'
8
- export * from './lib/grid-keydown-target-type'
9
- export * from './lib/grid-paging-mode'
10
- export * from './lib/grid-selection-mode'
11
- export * from './lib/grid-summary-calculation-mode'
12
- export * from './lib/grid-summary-position'
13
- export * from './lib/grid-toolbar-exporter-type'
14
- export * from './lib/grid-validation-trigger'
15
- export * from './lib/horizontal-alignment'
16
- export * from './lib/igc-action-strip-component'
17
- export * from './lib/igc-action-strip-resource-strings'
18
- export * from './lib/igc-action-strip-token'
19
- export * from './lib/igc-active-node-change-event-args'
20
- export * from './lib/igc-base-date-time-filtering-operand'
21
- export * from './lib/igc-base-event-args'
22
- export * from './lib/igc-base-exporter'
23
- export * from './lib/igc-base-filtering-strategy'
24
- export * from './lib/igc-base-search-info'
25
- export * from './lib/igc-base-toolbar-column-actions-directive'
26
- export * from './lib/igc-base-toolbar-directive'
27
- export * from './lib/igc-boolean-filtering-operand'
28
- export * from './lib/igc-cancelable-browser-event-args'
29
- export * from './lib/igc-cancelable-event-args'
30
- export * from './lib/igc-cell-position'
31
- export * from './lib/igc-cell-template-context'
32
- export * from './lib/igc-cell-type'
33
- export * from './lib/igc-clipboard-options'
34
- export * from './lib/igc-column-component'
35
- export * from './lib/igc-column-editor-options'
36
- export * from './lib/igc-column-exporting-event-args'
37
- export * from './lib/igc-column-group-component'
38
- export * from './lib/igc-column-layout-component'
39
- export * from './lib/igc-column-moving-end-event-args'
40
- export * from './lib/igc-column-moving-event-args'
41
- export * from './lib/igc-column-moving-start-event-args'
42
- export * from './lib/igc-column-pipe-args'
43
- export * from './lib/igc-column-resize-event-args'
44
- export * from './lib/igc-column-selection-event-args'
45
- export * from './lib/igc-column-state'
46
- export * from './lib/igc-column-template-context'
47
- export * from './lib/igc-column-toggled-event-args'
48
- export * from './lib/igc-column-visibility-changed-event-args'
49
- export * from './lib/igc-column-visibility-changing-event-args'
50
- export * from './lib/igc-columns-auto-generated-event-args'
51
- export * from './lib/igc-data-clone-strategy'
52
- export * from './lib/igc-date-filtering-operand'
53
- export * from './lib/igc-date-summary-operand'
54
- export * from './lib/igc-date-time-filtering-operand'
55
- export * from './lib/igc-dimensions-change'
56
- export * from './lib/igc-exporter-event-args'
57
- export * from './lib/igc-exporter-options-base'
58
- export * from './lib/igc-expression-tree'
59
- export * from './lib/igc-field-editor-options'
60
- export * from './lib/igc-field-pipe-args'
61
- export * from './lib/igc-filter-item'
62
- export * from './lib/igc-filtering-event-args'
63
- export * from './lib/igc-filtering-expression'
64
- export * from './lib/igc-filtering-expressions-tree'
65
- export * from './lib/igc-filtering-operand'
66
- export * from './lib/igc-filtering-operation'
67
- export * from './lib/igc-filtering-strategy'
68
- export * from './lib/igc-for-of-data-changing-event-args'
69
- export * from './lib/igc-for-of-state'
70
- export * from './lib/igc-grid-actions-base-directive'
71
- export * from './lib/igc-grid-base-directive'
72
- export * from './lib/igc-grid-cell-event-args'
73
- export * from './lib/igc-grid-clipboard-event'
74
- export * from './lib/igc-grid-component'
75
- export * from './lib/igc-grid-context-menu-event-args'
76
- export * from './lib/igc-grid-created-event-args'
77
- export * from './lib/igc-grid-edit-done-event-args'
78
- export * from './lib/igc-grid-edit-event-args'
79
- export * from './lib/igc-grid-editing-actions-component'
80
- export * from './lib/igc-grid-empty-template-context'
81
- export * from './lib/igc-grid-form-group-created-event-args'
82
- export * from './lib/igc-grid-grouping-strategy'
83
- export * from './lib/igc-grid-header-template-context'
84
- export * from './lib/igc-grid-keydown-event-args'
85
- export * from './lib/igc-grid-master-detail-context'
86
- export * from './lib/igc-grid-paginator-template-context'
87
- export * from './lib/igc-grid-pinning-actions-component'
88
- export * from './lib/igc-grid-resource-strings'
89
- export * from './lib/igc-grid-row-component'
90
- export * from './lib/igc-grid-row-drag-ghost-context'
91
- export * from './lib/igc-grid-row-edit-actions-template-context'
92
- export * from './lib/igc-grid-row-edit-text-template-context'
93
- export * from './lib/igc-grid-row-event-args'
94
- export * from './lib/igc-grid-row-template-context'
95
- export * from './lib/igc-grid-scroll-event-args'
96
- export * from './lib/igc-grid-selection-range'
97
- export * from './lib/igc-grid-sorting-strategy'
98
- export * from './lib/igc-grid-state-base-directive'
99
- export * from './lib/igc-grid-state-collection'
100
- export * from './lib/igc-grid-state-component'
101
- export * from './lib/igc-grid-state-info'
102
- export * from './lib/igc-grid-state-options'
103
- export * from './lib/igc-grid-template-context'
104
- export * from './lib/igc-grid-toolbar-actions-component'
105
- export * from './lib/igc-grid-toolbar-advanced-filtering-component'
106
- export * from './lib/igc-grid-toolbar-component'
107
- export * from './lib/igc-grid-toolbar-export-event-args'
108
- export * from './lib/igc-grid-toolbar-exporter-component'
109
- export * from './lib/igc-grid-toolbar-hiding-component'
110
- export * from './lib/igc-grid-toolbar-pinning-component'
111
- export * from './lib/igc-grid-toolbar-template-context'
112
- export * from './lib/igc-grid-toolbar-title-component'
113
- export * from './lib/igc-grid-validation-state'
114
- export * from './lib/igc-grid-validation-status-event-args'
115
- export * from './lib/igc-group-by-expand-state'
116
- export * from './lib/igc-group-by-key'
117
- export * from './lib/igc-group-by-record'
118
- export * from './lib/igc-group-by-result'
119
- export * from './lib/igc-group-by-row-selector-template-context'
120
- export * from './lib/igc-group-by-row-selector-template-details'
121
- export * from './lib/igc-group-by-row-template-context'
122
- export * from './lib/igc-grouped-records'
123
- export * from './lib/igc-grouping-done-event-args'
124
- export * from './lib/igc-grouping-expression'
125
- export * from './lib/igc-grouping-state'
126
- export * from './lib/igc-head-selector-template-context'
127
- export * from './lib/igc-head-selector-template-details'
128
- export * from './lib/igc-header-type'
129
- export * from './lib/igc-hierarchical-grid-base-directive'
130
- export * from './lib/igc-hierarchical-grid-component'
131
- export * from './lib/igc-noop-filtering-strategy'
132
- export * from './lib/igc-noop-pivot-dimensions-strategy'
133
- export * from './lib/igc-noop-sorting-strategy'
134
- export * from './lib/igc-number-filtering-operand'
135
- export * from './lib/igc-number-summary-operand'
136
- export * from './lib/igc-overlay-outlet-directive'
137
- export * from './lib/igc-overlay-settings'
138
- export * from './lib/igc-page-cancellable-event-args'
139
- export * from './lib/igc-page-event-args'
140
- export * from './lib/igc-paginator-component'
141
- export * from './lib/igc-paginator-resource-strings'
142
- export * from './lib/igc-paging-state'
143
- export * from './lib/igc-pin-column-cancellable-event-args'
144
- export * from './lib/igc-pin-column-event-args'
145
- export * from './lib/igc-pin-row-event-args'
146
- export * from './lib/igc-pinning-config'
147
- export * from './lib/igc-pivot-aggregator'
148
- export * from './lib/igc-pivot-configuration-changed-event-args'
149
- export * from './lib/igc-pivot-configuration'
150
- export * from './lib/igc-pivot-data-selector-component'
151
- export * from './lib/igc-pivot-date-dimension-options'
152
- export * from './lib/igc-pivot-date-dimension'
153
- export * from './lib/igc-pivot-dimension-strategy'
154
- export * from './lib/igc-pivot-dimension'
155
- export * from './lib/igc-pivot-grid-column'
156
- export * from './lib/igc-pivot-grid-component'
157
- export * from './lib/igc-pivot-grid-record'
158
- export * from './lib/igc-pivot-grid-value-template-context'
159
- export * from './lib/igc-pivot-keys'
160
- export * from './lib/igc-pivot-ui-settings'
161
- export * from './lib/igc-pivot-value'
162
- export * from './lib/igc-position-settings'
163
- export * from './lib/igc-position-strategy'
164
- export * from './lib/igc-row-data-cancelable-event-args'
165
- export * from './lib/igc-row-data-event-args'
166
- export * from './lib/igc-row-directive'
167
- export * from './lib/igc-row-drag-end-event-args'
168
- export * from './lib/igc-row-drag-start-event-args'
169
- export * from './lib/igc-row-exporting-event-args'
170
- export * from './lib/igc-row-island-component'
171
- export * from './lib/igc-row-selection-event-args'
172
- export * from './lib/igc-row-selector-template-context'
173
- export * from './lib/igc-row-selector-template-details'
174
- export * from './lib/igc-row-toggle-event-args'
175
- export * from './lib/igc-row-type'
176
- export * from './lib/igc-scroll-strategy'
177
- export * from './lib/igc-search-info'
178
- export * from './lib/igc-size'
179
- export * from './lib/igc-sorting-event-args'
180
- export * from './lib/igc-sorting-expression'
181
- export * from './lib/igc-sorting-options'
182
- export * from './lib/igc-sorting-strategy'
183
- export * from './lib/igc-string-filtering-operand'
184
- export * from './lib/igc-summary-expression'
185
- export * from './lib/igc-summary-operand'
186
- export * from './lib/igc-summary-result'
187
- export * from './lib/igc-summary-template-context'
188
- export * from './lib/igc-time-filtering-operand'
189
- export * from './lib/igc-time-summary-operand'
190
- export * from './lib/igc-toggle-view-cancelable-event-args'
191
- export * from './lib/igc-toggle-view-event-args'
192
- export * from './lib/igc-tree-grid-component'
193
- export * from './lib/igc-tree-grid-record'
194
- export * from './lib/igc-validation-errors'
195
- export * from './lib/igc-values-change'
196
- export * from './lib/pivot-aggregation-type'
197
- export * from './lib/pivot-dimension-type'
198
- export * from './lib/pivot-row-layout-type'
199
- export * from './lib/pivot-summary-position'
200
- export * from './lib/row-pinning-position'
201
- export * from './lib/sorting-direction'
202
- export * from './lib/sorting-options-mode'
203
- export * from './lib/validation-status'
204
- export * from './lib/vertical-alignment'
1
+ export * from './lib/index';
@@ -411,7 +411,7 @@ import { IgcFilteringExpressionsTree } from './igc-filtering-expressions-tree';
411
411
  /**
412
412
  * Applies display format to cell values in the column. Does not modify the underlying data.
413
413
  *
414
- * @remark
414
+ * @remarks
415
415
  * Note: As the formatter is used in places like the Excel style filtering dialog, in certain
416
416
  * scenarios (remote filtering for example), the row data argument can be `undefined`.
417
417
  *
@@ -6,6 +6,7 @@ import { IgcFilteringExpression } from './igc-filtering-expression';
6
6
  /* jsonAPIPlainObject */
7
7
 
8
8
 
9
+ /* marshalByValue */
9
10
 
10
11
  export declare class IgcExpressionTree
11
12
  {
@@ -21,6 +22,12 @@ import { IgcFilteringExpression } from './igc-filtering-expression';
21
22
 
22
23
  public fieldName?: string;
23
24
 
25
+
26
+ public entity?: string;
27
+
28
+
29
+ public returnFields?: string[];
30
+
24
31
  }
25
32
 
26
33
 
@@ -1,11 +1,11 @@
1
1
 
2
2
  import { IgcFilteringOperation } from './igc-filtering-operation';
3
+ import { IgcExpressionTree } from './igc-expression-tree';
3
4
 
4
5
 
5
6
  /* jsonAPIPlainObject */
6
7
 
7
8
 
8
- /* tsPlainInterface */
9
9
  /* marshalByValue */
10
10
  /**
11
11
  * Represents filtering expressions.
@@ -19,13 +19,18 @@ import { IgcFilteringOperation } from './igc-filtering-operation';
19
19
  public get fieldName(): string;
20
20
 
21
21
 
22
- public set condition(value: IgcFilteringOperation);
23
- public get condition(): IgcFilteringOperation;
22
+ public condition?: IgcFilteringOperation;
23
+
24
+
25
+ public conditionName?: string;
24
26
 
25
27
 
26
28
  public searchVal?: any;
27
29
 
28
-
30
+
31
+ public searchTree?: IgcExpressionTree;
32
+
33
+
29
34
  public ignoreCase?: boolean;
30
35
 
31
36
  }
@@ -1,4 +1,5 @@
1
1
 
2
+ import { IgcExpressionTree } from './igc-expression-tree';
2
3
  import { IgcFilteringExpression } from './igc-filtering-expression';
3
4
  import { FilteringExpressionsTreeType } from './filtering-expressions-tree-type';
4
5
  import { FilteringLogic } from './filtering-logic';
@@ -7,9 +8,10 @@ import { FilteringLogic } from './filtering-logic';
7
8
  /* jsonAPIPlainObject */
8
9
 
9
10
 
11
+ /* alternateBaseType: ExpressionTree */
10
12
  /* marshalByValue */
11
13
 
12
- export declare class IgcFilteringExpressionsTree
14
+ export declare class IgcFilteringExpressionsTree extends IgcExpressionTree
13
15
  {
14
16
 
15
17
 
@@ -33,6 +35,12 @@ import { FilteringLogic } from './filtering-logic';
33
35
 
34
36
  public fieldName?: string;
35
37
 
38
+
39
+ public entity?: string;
40
+
41
+
42
+ public returnFields?: string[];
43
+
36
44
  }
37
45
 
38
46
 
@@ -23,7 +23,7 @@ import { IgcFilteringOperation } from './igc-filtering-operation';
23
23
 
24
24
 
25
25
  /**
26
- * Returns an array of names of the conditions which are visible in the UI
26
+ * Returns an array of names of the conditions which are visible in the filtering UI
27
27
  */
28
28
  public conditionList(): string[];
29
29
 
@@ -24,6 +24,9 @@
24
24
  public get isUnary(): boolean;
25
25
 
26
26
 
27
+ public isNestedQuery?: boolean;
28
+
29
+
27
30
  public set iconName(value: string);
28
31
  public get iconName(): string;
29
32
 
@@ -33,8 +36,7 @@
33
36
 
34
37
  /* blazorCSSuppress */
35
38
  /* blazorAlternateType: FilteringOperationLogicHandler */
36
- public set logic(value: any);
37
- public get logic(): any;
39
+ public logic?: any;
38
40
 
39
41
  }
40
42
 
@@ -999,7 +999,7 @@ public set selectedRows(value: any[]);
999
999
  /**
1000
1000
  * Gets/Sets the outlet used to attach the grid's overlays to.
1001
1001
  *
1002
- * @remark
1002
+ * @remarks
1003
1003
  * If set, returns the outlet defined outside the grid. Otherwise returns the grid's internal outlet directive.
1004
1004
  */
1005
1005
  public set outlet(value: IgcOverlayOutletDirective);
@@ -20,6 +20,9 @@ import { IgcHierarchicalGridComponent } from './igc-hierarchical-grid-component'
20
20
 
21
21
  public grid: IgcHierarchicalGridComponent;
22
22
 
23
+
24
+ public parentRowData?: any;
25
+
23
26
  }
24
27
 
25
28
 
@@ -35,7 +35,7 @@ import { IgcGridBaseDirectiveEventMap } from './igc-grid-base-directive';
35
35
  /**
36
36
  * Gets/Sets whether the expand/collapse all button in the header should be rendered.
37
37
  *
38
- * @remark
38
+ * @remarks
39
39
  * The default value is false.
40
40
  * @example
41
41
  * ```html
@@ -21,7 +21,7 @@ import { GridColumnDataType } from './grid-column-data-type';
21
21
  public childLevel?: IgcPivotDimension;
22
22
 
23
23
 
24
- /** Field name to use in order to extract value. */
24
+ /** Unique member to extract related data field value or the result of the memberFunction. */
25
25
  public set memberName(value: string);
26
26
  public get memberName(): string;
27
27
 
@@ -15,7 +15,7 @@ import { GridColumnDataType } from './grid-column-data-type';
15
15
  {
16
16
 
17
17
 
18
- /** Field name to use in order to extract value. */
18
+ /** Unique member to extract related data field value for aggregations. */
19
19
  public set member(value: string);
20
20
  public get member(): string;
21
21
 
@@ -193,7 +193,7 @@ import { EventEmitterMixin, LitElement, Constructor, AbstractConstructor } from
193
193
  /**
194
194
  * Gets/Sets whether the expand/collapse all button in the header should be rendered.
195
195
  *
196
- * @remark
196
+ * @remarks
197
197
  * The default value is false.
198
198
  * @example
199
199
  * ```html
@@ -0,0 +1,204 @@
1
+ export { type IgcGridStateComponentEventMap, IgcGridStateComponent } from "./igc-grid-state-component";
2
+ export type { IgcGridStateBaseDirective } from "./igc-grid-state-base-directive";
3
+ export type { IgcGridStateInfo } from "./igc-grid-state-info";
4
+ export { IgcActionStripComponent } from "./igc-action-strip-component";
5
+ export type { IgcGridActionsBaseDirective } from "./igc-grid-actions-base-directive";
6
+ 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
+ export { IgcBooleanFilteringOperand } from "./igc-boolean-filtering-operand";
10
+ export { IgcFilteringOperand } from "./igc-filtering-operand";
11
+ export { IgcDateFilteringOperand } from "./igc-date-filtering-operand";
12
+ export type { IgcBaseDateTimeFilteringOperand } from "./igc-base-date-time-filtering-operand";
13
+ export { IgcDateTimeFilteringOperand } from "./igc-date-time-filtering-operand";
14
+ export { IgcTimeFilteringOperand } from "./igc-time-filtering-operand";
15
+ export { IgcNumberFilteringOperand } from "./igc-number-filtering-operand";
16
+ export { IgcStringFilteringOperand } from "./igc-string-filtering-operand";
17
+ export type { IgcFilteringExpression } from "./igc-filtering-expression";
18
+ export type { IgcFilteringOperation } from "./igc-filtering-operation";
19
+ export type { IgcExpressionTree } from "./igc-expression-tree";
20
+ export { IgcNoopFilteringStrategy } from "./igc-noop-filtering-strategy";
21
+ export type { IgcBaseFilteringStrategy } from "./igc-base-filtering-strategy";
22
+ export { IgcFilteringExpressionsTree } from "./igc-filtering-expressions-tree";
23
+ export type { IgcGroupByResult } from "./igc-group-by-result";
24
+ export type { IgcGroupByRecord } from "./igc-group-by-record";
25
+ export { IgcNoopPivotDimensionsStrategy } from "./igc-noop-pivot-dimensions-strategy";
26
+ export type { IgcPivotDimension } from "./igc-pivot-dimension";
27
+ export type { IgcPivotValue } from "./igc-pivot-value";
28
+ export { IgcColumnGroupComponent } from "./igc-column-group-component";
29
+ export { IgcColumnComponent } from "./igc-column-component";
30
+ export type { IgcColumnTemplateContext } from "./igc-column-template-context";
31
+ export { IgcColumnLayoutComponent } from "./igc-column-layout-component";
32
+ export { IgcNoopSortingStrategy } from "./igc-noop-sorting-strategy";
33
+ export { type IgcGridComponentEventMap, IgcGridComponent } from "./igc-grid-component";
34
+ export type { IgcGridBaseDirectiveEventMap, IgcGridBaseDirective } from "./igc-grid-base-directive";
35
+ export type { IgcForOfState } from "./igc-for-of-state";
36
+ export type { IgcGroupingDoneEventArgs } from "./igc-grouping-done-event-args";
37
+ export type { IgcGridMasterDetailContext } from "./igc-grid-master-detail-context";
38
+ export type { IgcGroupingExpression } from "./igc-grouping-expression";
39
+ export type { IgcGroupByExpandState } from "./igc-group-by-expand-state";
40
+ export type { IgcGridGroupingStrategy } from "./igc-grid-grouping-strategy";
41
+ export type { IgcGroupByRowSelectorTemplateContext } from "./igc-group-by-row-selector-template-context";
42
+ export type { IgcGroupByRowTemplateContext } from "./igc-group-by-row-template-context";
43
+ export type { IgcRowType } from "./igc-row-type";
44
+ export type { IgcCellType } from "./igc-cell-type";
45
+ export { type IgcHierarchicalGridComponentEventMap, IgcHierarchicalGridComponent } from "./igc-hierarchical-grid-component";
46
+ export type { IgcHierarchicalGridBaseDirectiveEventMap, IgcHierarchicalGridBaseDirective } from "./igc-hierarchical-grid-base-directive";
47
+ export { type IgcRowIslandComponentEventMap, IgcRowIslandComponent } from "./igc-row-island-component";
48
+ export { IgcPivotDataSelectorComponent } from "./igc-pivot-data-selector-component";
49
+ export { IgcPivotDateDimension } from "./igc-pivot-date-dimension";
50
+ export type { GridColumnDataType } from "./grid-column-data-type";
51
+ export type { IgcGridResourceStrings } from "./igc-grid-resource-strings";
52
+ export type { IgcPivotDateDimensionOptions } from "./igc-pivot-date-dimension-options";
53
+ export { type IgcPivotGridComponentEventMap, IgcPivotGridComponent } from "./igc-pivot-grid-component";
54
+ export type { IgcDimensionsChange } from "./igc-dimensions-change";
55
+ export type { IgcPivotConfigurationChangedEventArgs } from "./igc-pivot-configuration-changed-event-args";
56
+ export type { IgcSortingExpression } from "./igc-sorting-expression";
57
+ export type { IgcValuesChange } from "./igc-values-change";
58
+ export type { IgcPivotGridValueTemplateContext } from "./igc-pivot-grid-value-template-context";
59
+ export type { IgcPivotConfiguration } from "./igc-pivot-configuration";
60
+ export type { IgcPivotUISettings } from "./igc-pivot-ui-settings";
61
+ export { PivotDimensionType } from "./pivot-dimension-type";
62
+ export { SortingDirection } from "./sorting-direction";
63
+ export type { IgcSummaryExpression } from "./igc-summary-expression";
64
+ export { IgcSummaryOperand } from "./igc-summary-operand";
65
+ export type { IgcSummaryResult } from "./igc-summary-result";
66
+ export { IgcNumberSummaryOperand } from "./igc-number-summary-operand";
67
+ export { IgcDateSummaryOperand } from "./igc-date-summary-operand";
68
+ export { IgcTimeSummaryOperand } from "./igc-time-summary-operand";
69
+ export { IgcGridToolbarTitleComponent } from "./igc-grid-toolbar-title-component";
70
+ export { IgcGridToolbarActionsComponent } from "./igc-grid-toolbar-actions-component";
71
+ export { IgcGridToolbarAdvancedFilteringComponent } from "./igc-grid-toolbar-advanced-filtering-component";
72
+ export type { IgcOverlaySettings } from "./igc-overlay-settings";
73
+ export { type IgcGridToolbarExporterComponentEventMap, IgcGridToolbarExporterComponent } from "./igc-grid-toolbar-exporter-component";
74
+ export type { IgcBaseToolbarDirectiveEventMap, IgcBaseToolbarDirective } from "./igc-base-toolbar-directive";
75
+ export type { IgcExporterEventArgs } from "./igc-exporter-event-args";
76
+ export type { GridToolbarExporterType } from "./grid-toolbar-exporter-type";
77
+ export { type IgcGridToolbarHidingComponentEventMap, IgcGridToolbarHidingComponent } from "./igc-grid-toolbar-hiding-component";
78
+ export type { IgcBaseToolbarColumnActionsDirectiveEventMap, IgcBaseToolbarColumnActionsDirective } from "./igc-base-toolbar-column-actions-directive";
79
+ export { type IgcGridToolbarPinningComponentEventMap, IgcGridToolbarPinningComponent } from "./igc-grid-toolbar-pinning-component";
80
+ export type { IgcToggleViewCancelableEventArgs } from "./igc-toggle-view-cancelable-event-args";
81
+ export type { IgcToggleViewEventArgs } from "./igc-toggle-view-event-args";
82
+ export type { IgcColumnToggledEventArgs } from "./igc-column-toggled-event-args";
83
+ export { type IgcTreeGridComponentEventMap, IgcTreeGridComponent } from "./igc-tree-grid-component";
84
+ export type { IgcTreeGridRecord } from "./igc-tree-grid-record";
85
+ export type { IgcGridStateOptions } from "./igc-grid-state-options";
86
+ export type { IgcColumnState } from "./igc-column-state";
87
+ export type { IgcPagingState } from "./igc-paging-state";
88
+ export type { IgcGroupingState } from "./igc-grouping-state";
89
+ export type { IgcGridSelectionRange } from "./igc-grid-selection-range";
90
+ export type { IgcPinningConfig } from "./igc-pinning-config";
91
+ export type { IgcGridStateCollection } from "./igc-grid-state-collection";
92
+ export { FilteringLogic } from "./filtering-logic";
93
+ export type { IgcFilterItem } from "./igc-filter-item";
94
+ export type { IgcBaseEventArgs } from "./igc-base-event-args";
95
+ export { FilteringExpressionsTreeType } from "./filtering-expressions-tree-type";
96
+ export type { IgcGroupedRecords } from "./igc-grouped-records";
97
+ export type { IgcPivotAggregator } from "./igc-pivot-aggregator";
98
+ export type { IgcPivotGridRecord } from "./igc-pivot-grid-record";
99
+ export type { IgcPivotGridColumn } from "./igc-pivot-grid-column";
100
+ export type { IgcSortingStrategy } from "./igc-sorting-strategy";
101
+ export type { IgcSummaryTemplateContext } from "./igc-summary-template-context";
102
+ export type { IgcCellTemplateContext } from "./igc-cell-template-context";
103
+ export type { IgcColumnPipeArgs } from "./igc-column-pipe-args";
104
+ export type { IgcColumnEditorOptions } from "./igc-column-editor-options";
105
+ export type { IgcDataCloneStrategy } from "./igc-data-clone-strategy";
106
+ export type { IgcClipboardOptions } from "./igc-clipboard-options";
107
+ export type { IgcGridScrollEventArgs } from "./igc-grid-scroll-event-args";
108
+ export type { IgcGridCellEventArgs } from "./igc-grid-cell-event-args";
109
+ export type { IgcGridRowEventArgs } from "./igc-grid-row-event-args";
110
+ export type { IgcGridFormGroupCreatedEventArgs } from "./igc-grid-form-group-created-event-args";
111
+ export type { IgcGridValidationStatusEventArgs } from "./igc-grid-validation-status-event-args";
112
+ export type { IgcRowSelectionEventArgs } from "./igc-row-selection-event-args";
113
+ export type { IgcColumnSelectionEventArgs } from "./igc-column-selection-event-args";
114
+ export type { IgcPinColumnCancellableEventArgs } from "./igc-pin-column-cancellable-event-args";
115
+ export type { IgcPinColumnEventArgs } from "./igc-pin-column-event-args";
116
+ export type { IgcGridEditEventArgs } from "./igc-grid-edit-event-args";
117
+ export type { IgcGridEditDoneEventArgs } from "./igc-grid-edit-done-event-args";
118
+ export type { IgcColumnsAutoGeneratedEventArgs } from "./igc-columns-auto-generated-event-args";
119
+ export type { IgcSortingEventArgs } from "./igc-sorting-event-args";
120
+ export type { IgcFilteringEventArgs } from "./igc-filtering-event-args";
121
+ export type { IgcRowDataEventArgs } from "./igc-row-data-event-args";
122
+ export type { IgcRowDataCancelableEventArgs } from "./igc-row-data-cancelable-event-args";
123
+ export type { IgcColumnResizeEventArgs } from "./igc-column-resize-event-args";
124
+ export type { IgcGridContextMenuEventArgs } from "./igc-grid-context-menu-event-args";
125
+ export type { IgcColumnVisibilityChangingEventArgs } from "./igc-column-visibility-changing-event-args";
126
+ export type { IgcColumnVisibilityChangedEventArgs } from "./igc-column-visibility-changed-event-args";
127
+ export type { IgcColumnMovingStartEventArgs } from "./igc-column-moving-start-event-args";
128
+ export type { IgcColumnMovingEventArgs } from "./igc-column-moving-event-args";
129
+ export type { IgcColumnMovingEndEventArgs } from "./igc-column-moving-end-event-args";
130
+ export type { IgcGridKeydownEventArgs } from "./igc-grid-keydown-event-args";
131
+ export type { IgcRowDragStartEventArgs } from "./igc-row-drag-start-event-args";
132
+ export type { IgcRowDragEndEventArgs } from "./igc-row-drag-end-event-args";
133
+ export type { IgcGridClipboardEvent } from "./igc-grid-clipboard-event";
134
+ export type { IgcRowToggleEventArgs } from "./igc-row-toggle-event-args";
135
+ export type { IgcPinRowEventArgs } from "./igc-pin-row-event-args";
136
+ export type { IgcActiveNodeChangeEventArgs } from "./igc-active-node-change-event-args";
137
+ export type { IgcGridToolbarExportEventArgs } from "./igc-grid-toolbar-export-event-args";
138
+ export type { IgcForOfDataChangingEventArgs } from "./igc-for-of-data-changing-event-args";
139
+ export type { IgcActionStripToken } from "./igc-action-strip-token";
140
+ export type { IgcGridRowDragGhostContext } from "./igc-grid-row-drag-ghost-context";
141
+ export type { IgcGridRowEditTextTemplateContext } from "./igc-grid-row-edit-text-template-context";
142
+ export type { IgcGridEmptyTemplateContext } from "./igc-grid-empty-template-context";
143
+ export type { IgcGridRowEditActionsTemplateContext } from "./igc-grid-row-edit-actions-template-context";
144
+ export type { IgcGridRowTemplateContext } from "./igc-grid-row-template-context";
145
+ export type { IgcGridTemplateContext } from "./igc-grid-template-context";
146
+ export type { IgcGridHeaderTemplateContext } from "./igc-grid-header-template-context";
147
+ export { IgcGridToolbarComponent } from "./igc-grid-toolbar-component";
148
+ export { type IgcPaginatorComponentEventMap, IgcPaginatorComponent } from "./igc-paginator-component";
149
+ export { GridPagingMode } from "./grid-paging-mode";
150
+ export type { GridValidationTrigger } from "./grid-validation-trigger";
151
+ export type { FilterMode } from "./filter-mode";
152
+ export type { GridSummaryPosition } from "./grid-summary-position";
153
+ export type { GridSummaryCalculationMode } from "./grid-summary-calculation-mode";
154
+ export type { IgcFilteringStrategy } from "./igc-filtering-strategy";
155
+ export type { IgcGridSortingStrategy } from "./igc-grid-sorting-strategy";
156
+ export type { IgcSortingOptions } from "./igc-sorting-options";
157
+ export type { IgcRowDirective } from "./igc-row-directive";
158
+ export type { IgcHeadSelectorTemplateContext } from "./igc-head-selector-template-context";
159
+ export type { IgcRowSelectorTemplateContext } from "./igc-row-selector-template-context";
160
+ export type { GridSelectionMode } from "./grid-selection-mode";
161
+ export type { IgcSearchInfo } from "./igc-search-info";
162
+ export type { IgcOverlayOutletDirective } from "./igc-overlay-outlet-directive";
163
+ export type { IgcGridRowComponent } from "./igc-grid-row-component";
164
+ export { DropPosition } from "./drop-position";
165
+ export type { IgcCellPosition } from "./igc-cell-position";
166
+ export type { IgcGroupByKey } from "./igc-group-by-key";
167
+ export type { IgcGroupByRowSelectorTemplateDetails } from "./igc-group-by-row-selector-template-details";
168
+ export type { IgcGridValidationState } from "./igc-grid-validation-state";
169
+ export type { IgcGridToolbarTemplateContext } from "./igc-grid-toolbar-template-context";
170
+ export type { IgcGridPaginatorTemplateContext } from "./igc-grid-paginator-template-context";
171
+ export type { IgcGridCreatedEventArgs } from "./igc-grid-created-event-args";
172
+ export type { IgcPivotDimensionStrategy } from "./igc-pivot-dimension-strategy";
173
+ export type { IgcPivotKeys } from "./igc-pivot-keys";
174
+ export type { PivotRowLayoutType } from "./pivot-row-layout-type";
175
+ export type { PivotSummaryPosition } from "./pivot-summary-position";
176
+ export type { IgcPositionStrategy } from "./igc-position-strategy";
177
+ export type { IgcScrollStrategy } from "./igc-scroll-strategy";
178
+ export type { IgcBaseExporterEventMap, IgcBaseExporter } from "./igc-base-exporter";
179
+ export type { IgcCancelableBrowserEventArgs } from "./igc-cancelable-browser-event-args";
180
+ export { ColumnPinningPosition } from "./column-pinning-position";
181
+ export { RowPinningPosition } from "./row-pinning-position";
182
+ export type { PivotAggregationType } from "./pivot-aggregation-type";
183
+ export type { IgcFieldPipeArgs } from "./igc-field-pipe-args";
184
+ export type { IgcFieldEditorOptions } from "./igc-field-editor-options";
185
+ export type { ValidationStatus } from "./validation-status";
186
+ export type { IgcCancelableEventArgs } from "./igc-cancelable-event-args";
187
+ export type { GridKeydownTargetType } from "./grid-keydown-target-type";
188
+ export type { IgcExporterOptionsBase } from "./igc-exporter-options-base";
189
+ export type { IgcHeaderType } from "./igc-header-type";
190
+ export type { IgcPageCancellableEventArgs } from "./igc-page-cancellable-event-args";
191
+ export type { IgcPageEventArgs } from "./igc-page-event-args";
192
+ export type { IgcPaginatorResourceStrings } from "./igc-paginator-resource-strings";
193
+ export type { SortingOptionsMode } from "./sorting-options-mode";
194
+ export type { IgcHeadSelectorTemplateDetails } from "./igc-head-selector-template-details";
195
+ export type { IgcRowSelectorTemplateDetails } from "./igc-row-selector-template-details";
196
+ export type { IgcBaseSearchInfo } from "./igc-base-search-info";
197
+ export type { IgcValidationErrors } from "./igc-validation-errors";
198
+ export type { IgcPositionSettings } from "./igc-position-settings";
199
+ export type { IgcRowExportingEventArgs } from "./igc-row-exporting-event-args";
200
+ export type { IgcColumnExportingEventArgs } from "./igc-column-exporting-event-args";
201
+ export { HorizontalAlignment } from "./horizontal-alignment";
202
+ export { VerticalAlignment } from "./vertical-alignment";
203
+ export type { IgcSize } from "./igc-size";
204
+ export type { TemplateContent, IgcRenderFunction, Point } from "./common";