@syncfusion/ej2-angular-treegrid 30.1.38 → 30.2.4-ngcc

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 (40) hide show
  1. package/@syncfusion/ej2-angular-treegrid.es5.js +798 -0
  2. package/@syncfusion/ej2-angular-treegrid.es5.js.map +1 -0
  3. package/@syncfusion/ej2-angular-treegrid.js +748 -0
  4. package/@syncfusion/ej2-angular-treegrid.js.map +1 -0
  5. package/LICENSE +10 -0
  6. package/dist/ej2-angular-treegrid.umd.js +978 -0
  7. package/dist/ej2-angular-treegrid.umd.js.map +1 -0
  8. package/dist/ej2-angular-treegrid.umd.min.js +11 -0
  9. package/dist/ej2-angular-treegrid.umd.min.js.map +1 -0
  10. package/ej2-angular-treegrid.d.ts +5 -0
  11. package/ej2-angular-treegrid.metadata.json +1 -0
  12. package/package.json +17 -61
  13. package/public_api.d.ts +1 -1
  14. package/schematics/utils/lib-details.d.ts +2 -2
  15. package/schematics/utils/lib-details.js +2 -2
  16. package/schematics/utils/lib-details.ts +4 -4
  17. package/src/index.d.ts +8 -8
  18. package/src/treegrid/aggregate-columns.directive.d.ts +86 -91
  19. package/src/treegrid/aggregates.directive.d.ts +44 -49
  20. package/src/treegrid/columns.directive.d.ts +323 -328
  21. package/src/treegrid/stacked-column.directive.d.ts +325 -330
  22. package/src/treegrid/treegrid-all.module.d.ts +27 -33
  23. package/src/treegrid/treegrid.component.d.ts +121 -124
  24. package/src/treegrid/treegrid.module.d.ts +5 -15
  25. package/CHANGELOG.md +0 -214
  26. package/esm2020/public_api.mjs +0 -2
  27. package/esm2020/src/index.mjs +0 -9
  28. package/esm2020/src/treegrid/aggregate-columns.directive.mjs +0 -72
  29. package/esm2020/src/treegrid/aggregates.directive.mjs +0 -69
  30. package/esm2020/src/treegrid/columns.directive.mjs +0 -100
  31. package/esm2020/src/treegrid/stacked-column.directive.mjs +0 -100
  32. package/esm2020/src/treegrid/treegrid-all.module.mjs +0 -89
  33. package/esm2020/src/treegrid/treegrid.component.mjs +0 -247
  34. package/esm2020/src/treegrid/treegrid.module.mjs +0 -61
  35. package/esm2020/syncfusion-ej2-angular-treegrid.mjs +0 -5
  36. package/fesm2015/syncfusion-ej2-angular-treegrid.mjs +0 -710
  37. package/fesm2015/syncfusion-ej2-angular-treegrid.mjs.map +0 -1
  38. package/fesm2020/syncfusion-ej2-angular-treegrid.mjs +0 -710
  39. package/fesm2020/syncfusion-ej2-angular-treegrid.mjs.map +0 -1
  40. package/syncfusion-ej2-angular-treegrid.d.ts +0 -5
@@ -1,330 +1,325 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- import * as i0 from "@angular/core";
4
- /**
5
- * `e-stacked-column` directive represent the stacked column of the Angular TreeGrid.
6
- * It must be contained in a StackedColumns component(`e-stacked-columns`).
7
- * ```html
8
- * <ejs-treegrid [dataSource]='data' allowPaging='true' allowSorting='true'>
9
- * <e-columns>
10
- * <e-column field='ID' width='100'></e-column>
11
- * <e-column headerText='Details' width='100'>
12
- * <e-stacked-columns>
13
- * <e-stacked-column field='Name' width='140'></e-stacked-column>
14
- * </e-stacked-columns>
15
- * </e-column>
16
- * </e-columns>
17
- * </ejs-treegrid>
18
- * ```
19
- */
20
- export declare class StackedColumnDirective extends ComplexBase<StackedColumnDirective> {
21
- private viewContainerRef;
22
- directivePropList: any;
23
- /**
24
- * Defines the type of data stored in the column, which may be string, number, date, or other types.
25
- * @default null
26
- */
27
- type: any;
28
- /**
29
- * Controls whether editing is permitted for the column. By default, all columns are editable.
30
- * @default true
31
- */
32
- allowEditing: any;
33
- /**
34
- * Controls whether the column supports filtering. If set to false, users cannot filter data by this column.
35
- * @default true
36
- */
37
- allowFiltering: any;
38
- /**
39
- * Enables or disables the reordering of this column via drag-and-drop. Allows for dynamic column adjustments.
40
- * @default true
41
- */
42
- allowReordering: any;
43
- /**
44
- * Determines if this column can be resized. If false, the column size is fixed.
45
- * @default true
46
- */
47
- allowResizing: any;
48
- /**
49
- * Specifies whether sorting is enabled for this column. Set to false to prevent sort actions.
50
- * @default true
51
- */
52
- allowSorting: any;
53
- /**
54
- * Determines how overflow content is handled within a cell. Options include:
55
- * * `Clip`: Truncates the content.
56
- * * `Ellipsis`: Shows ellipsis for overflow.
57
- * * `EllipsisWithTooltip`: Shows ellipsis and tooltip on hover.
58
- * @default Syncfusion.EJ2.Grids.ClipMode.Ellipsis
59
- * @isenumeration true
60
- * @asptype Syncfusion.EJ2.Grids.ClipMode
61
- */
62
- clipMode: any;
63
- /**
64
- * Allows for the creation of stacked headers by using multiple rows in the grid's header.
65
- * @default null
66
- */
67
- columns: any;
68
- /**
69
- * Provides built-in command button options for cells. Options include Edit, Delete, Save, and Cancel.
70
- * Custom command button implementations are possible.
71
- *
72
- * The following code example implements the custom command column.
73
- *```html
74
- *<style type="text/css" class="cssStyles">
75
- *.details-icon:before
76
- *{
77
- * content:"\e74d";
78
- *}
79
- *</style>
80
- *<div id="TreeGrid"></div>
81
- *```
82
- *```typescript
83
- *var gridObj = new TreeGrid({
84
- *datasource: window.gridData,
85
- *columns : [
86
- * { field: 'CustomerID', headerText: 'Customer ID' },
87
- * { field: 'CustomerName', headerText: 'Customer Name' },
88
- * {commands: [{buttonOption:{content: 'Details', click: onClick, cssClass: details-icon}}], headerText: 'Customer Details'}
89
- *]
90
- *gridObj.appendTo("#TreeGrid");
91
- *```
92
- *
93
- * @default null
94
- */
95
- commands: any;
96
- /**
97
- * Enables the addition of CSS styles and attributes for the content cells in a particular column.
98
- * @default null
99
- */
100
- customAttributes: any;
101
- /**
102
- * Sets default values when new records are added to the TreeGrid involving this column.
103
- * @default null
104
- */
105
- defaultValue: any;
106
- /**
107
- * If set to `true`, the HTML content within header and content cells is encoded to prevent injection attacks.
108
- * @default true
109
- */
110
- disableHtmlEncode: any;
111
- /**
112
- * Displays the column value as a checkbox instead of a Boolean value when set to `true`.
113
- * @default false
114
- */
115
- displayAsCheckBox: any;
116
- /**
117
- * Allows customizing the default edit cell through the `IEditCell` object for more control over editing.
118
- * @default {}
119
- */
120
- edit: any;
121
- /**
122
- * Specifies the component type used for editing cells within this column.
123
- * @default 'stringedit'
124
- */
125
- editType: any;
126
- /**
127
- * Specifies the field name in the data source to which the column is bound. This field is used for operations like sorting and filtering.
128
- * The field name must be a valid JavaScript identifier, beginning with a letter and avoiding spaces and special characters.
129
- * @default 'undefined'
130
- */
131
- field: any;
132
- /**
133
- * Customizes filter options for the column, enabling specialized filtering functionality.
134
- * @default null
135
- */
136
- filter: any;
137
- /**
138
- * Allows for a custom component within the filter bar, facilitating advanced filter interfaces.
139
- * Includes create and read functions for custom component management.
140
- *
141
- * ```html
142
- *<div id="TreeGrid"></div>
143
- *```
144
- *```typescript
145
- *let gridObj: TreeGrid = new TreeGrid({
146
- *dataSource: filterData,
147
- *columns: [
148
- * { field: 'OrderID', headerText: 'Order ID' },
149
- * {
150
- * field: 'EmployeeID', filterBarTemplate: {
151
- * create: (args: { element: Element, column: Column }) => {
152
- * let input: HTMLInputElement = document.createElement('input');
153
- * input.id = 'EmployeeID';
154
- * input.type = 'text';
155
- * return input;
156
- * },
157
- * write: (args: { element: Element, column: Column }) => {
158
- * args.element.addEventListener('input', args.column.filterBarTemplate.read as EventListener);
159
- * },
160
- * read: (args: { element: HTMLInputElement, columnIndex: number, column: Column }) => {
161
- * gridObj.filterByColumn(args.element.id, 'equal', args.element.value);
162
- * }
163
- * }
164
- *}],
165
- * allowFiltering: true
166
- *});
167
- *gridObj.appendTo('#TreeGrid');
168
- *```
169
- *
170
- * @default null
171
- */
172
- filterBarTemplate: any;
173
- /**
174
- * Formats the displayed value of the column without affecting the underlying data. Supports standard and custom formats for numbers and dates.
175
- *
176
- * References for [number](https://ej2.syncfusion.com/documentation/common/internationalization/#supported-format-string)
177
- *and [date](https://ej2.syncfusion.com/documentation/common/internationalization#date-formatting) formats.
178
- * @default null
179
- * @asptype string
180
- */
181
- format: any;
182
- /**
183
- * Allows for custom cell content formatting using an external method, executed prior to rendering.
184
- * @default null
185
- */
186
- formatter: any;
187
- /**
188
- * Determines which side (left, right, or center) the column should be frozen on.
189
- * @default Syncfusion.EJ2.Grids.FreezeDirection.None
190
- * @isenumeration true
191
- * @asptype Syncfusion.EJ2.Grids.FreezeDirection
192
- */
193
- freeze: any;
194
- /**
195
- * Specifies the text displayed in the column header. If omitted, the `field` value is used as the header text.
196
- * @default 'undefined'
197
- */
198
- headerText: any;
199
- /**
200
- * Aligns the text in the column header. By default, the alignment corresponds to other content alignments.
201
- * @default null
202
- * @aspdefaultvalueignore
203
- * @isenumeration true
204
- * @asptype Syncfusion.EJ2.Grids.TextAlign
205
- */
206
- headerTextAlign: any;
207
- /**
208
- * Adjusts column visibility based on [Media Queries](http://cssmediaqueries.com/what-are-css-media-queries.html). Accepts valid CSS media query strings for responsive adjustments.
209
- * @default 'undefined'
210
- */
211
- hideAtMedia: any;
212
- /**
213
- * Allows the column to be frozen, keeping it stationary while scrolling horizontally through the grid.
214
- * @default false
215
- */
216
- isFrozen: any;
217
- /**
218
- * Identifies the column as an identity column in database terms, if set to `true`.
219
- * @default false
220
- */
221
- isIdentity: any;
222
- /**
223
- * Identifies the column as a primary key if set to `true`, enforcing uniqueness.
224
- * @default false
225
- */
226
- isPrimaryKey: any;
227
- /**
228
- * Prevents column reordering when set to true, locking the column into a set position.
229
- * @default false
230
- */
231
- lockColumn: any;
232
- /**
233
- * Defines the maximum allowable width of the column in pixels or as a percentage, preventing resizing beyond this limit.
234
- * @default 'undefined'
235
- */
236
- maxWidth: any;
237
- /**
238
- * Determines the minimum width of the column in pixels or percentage. This ensures the column does not shrink below this size.
239
- * @default 'undefined'
240
- */
241
- minWidth: any;
242
- /**
243
- * Displays checkboxes in the column when enabled, allowing for selections and certain operations.
244
- * @default false
245
- */
246
- showCheckbox: any;
247
- /**
248
- * Decides if the column menu should be available, providing options for column customization.
249
- * @default true
250
- */
251
- showColumnMenu: any;
252
- /**
253
- * Determines whether the column should appear in the Column Chooser. Set to false to exclude it.
254
- * @default true
255
- */
256
- showInColumnChooser: any;
257
- /**
258
- * Provides a custom sort comparer property to control how sorting is handled for this column's data.
259
- * @default 'undefined'
260
- */
261
- sortComparer: any;
262
- /**
263
- * Specifies the horizontal alignment for the column content and header. Options include alignment to the left, center, or right.
264
- * @default Syncfusion.EJ2.Grids.TextAlign.Left
265
- * @isenumeration true
266
- * @asptype Syncfusion.EJ2.Grids.TextAlign
267
- */
268
- textAlign: any;
269
- /**
270
- * Retrieves the unique identifier for the column. This UID is used internally to reference and manipulate the column.
271
- * @default 'undefined'
272
- */
273
- uid: any;
274
- /**
275
- * Establishes validation rules to ensure data integrity during creation and updates.
276
- * @default null
277
- */
278
- validationRules: any;
279
- /**
280
- * Applies custom cell values using an external function, allowing for dynamic display adjustments.
281
- * @default null
282
- */
283
- valueAccessor: any;
284
- /**
285
- * Toggles the visibility of the column. Set to false to hide the column from view. Columns are visible by default.
286
- * @default true
287
- */
288
- visible: any;
289
- /**
290
- * Sets the column's width in pixels or as a percentage. This defines how the column will occupy space in the grid.
291
- * @default 'undefined'
292
- */
293
- width: any;
294
- /**
295
- * Customizes the rendering of cell content using either a template string or HTML element ID.
296
- * @default null
297
- * @asptype string
298
- */
299
- template: any;
300
- /**
301
- * Customizes the header content with a template, defined as a string or an HTML element ID.
302
- * @default null
303
- * @asptype string
304
- */
305
- headerTemplate: any;
306
- filter_itemTemplate: any;
307
- /**
308
- * Specifies a custom template or UI for filtering within this column, utilizing either string templates or HTML element IDs.
309
- * @aspignore
310
- */
311
- filterTemplate: any;
312
- commandsTemplate: any;
313
- /**
314
- * Provides a template for editing cells in this column, supporting either a template string or an HTML element ID.
315
- * @aspignore
316
- */
317
- editTemplate: any;
318
- constructor(viewContainerRef: ViewContainerRef);
319
- static ɵfac: i0.ɵɵFactoryDeclaration<StackedColumnDirective, never>;
320
- static ɵdir: i0.ɵɵDirectiveDeclaration<StackedColumnDirective, "ejs-treegrid>e-columns>e-column>e-stacked-columns>e-stacked-column", never, { "allowEditing": "allowEditing"; "allowFiltering": "allowFiltering"; "allowReordering": "allowReordering"; "allowResizing": "allowResizing"; "allowSorting": "allowSorting"; "clipMode": "clipMode"; "columns": "columns"; "commands": "commands"; "customAttributes": "customAttributes"; "defaultValue": "defaultValue"; "disableHtmlEncode": "disableHtmlEncode"; "displayAsCheckBox": "displayAsCheckBox"; "edit": "edit"; "editTemplate": "editTemplate"; "editType": "editType"; "field": "field"; "filter": "filter"; "filterBarTemplate": "filterBarTemplate"; "filterTemplate": "filterTemplate"; "format": "format"; "formatter": "formatter"; "freeze": "freeze"; "headerTemplate": "headerTemplate"; "headerText": "headerText"; "headerTextAlign": "headerTextAlign"; "hideAtMedia": "hideAtMedia"; "isFrozen": "isFrozen"; "isIdentity": "isIdentity"; "isPrimaryKey": "isPrimaryKey"; "lockColumn": "lockColumn"; "maxWidth": "maxWidth"; "minWidth": "minWidth"; "showCheckbox": "showCheckbox"; "showColumnMenu": "showColumnMenu"; "showInColumnChooser": "showInColumnChooser"; "sortComparer": "sortComparer"; "template": "template"; "textAlign": "textAlign"; "type": "type"; "uid": "uid"; "validationRules": "validationRules"; "valueAccessor": "valueAccessor"; "visible": "visible"; "width": "width"; }, {}, ["template", "headerTemplate", "filter_itemTemplate", "filterTemplate", "commandsTemplate", "editTemplate"]>;
321
- }
322
- /**
323
- * StackedColumn Array Directive
324
- * @private
325
- */
326
- export declare class StackedColumnsDirective extends ArrayBase<StackedColumnsDirective> {
327
- constructor();
328
- static ɵfac: i0.ɵɵFactoryDeclaration<StackedColumnsDirective, never>;
329
- static ɵdir: i0.ɵɵDirectiveDeclaration<StackedColumnsDirective, "ejs-treegrid>e-columns>e-column>e-stacked-columns", never, {}, {}, ["children"]>;
330
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * `e-stacked-column` directive represent the stacked column of the Angular TreeGrid.
5
+ * It must be contained in a StackedColumns component(`e-stacked-columns`).
6
+ * ```html
7
+ * <ejs-treegrid [dataSource]='data' allowPaging='true' allowSorting='true'>
8
+ * <e-columns>
9
+ * <e-column field='ID' width='100'></e-column>
10
+ * <e-column headerText='Details' width='100'>
11
+ * <e-stacked-columns>
12
+ * <e-stacked-column field='Name' width='140'></e-stacked-column>
13
+ * </e-stacked-columns>
14
+ * </e-column>
15
+ * </e-columns>
16
+ * </ejs-treegrid>
17
+ * ```
18
+ */
19
+ export declare class StackedColumnDirective extends ComplexBase<StackedColumnDirective> {
20
+ private viewContainerRef;
21
+ directivePropList: any;
22
+ /**
23
+ * Defines the type of data stored in the column, which may be string, number, date, or other types.
24
+ * @default null
25
+ */
26
+ type: any;
27
+ /**
28
+ * Controls whether editing is permitted for the column. By default, all columns are editable.
29
+ * @default true
30
+ */
31
+ allowEditing: any;
32
+ /**
33
+ * Controls whether the column supports filtering. If set to false, users cannot filter data by this column.
34
+ * @default true
35
+ */
36
+ allowFiltering: any;
37
+ /**
38
+ * Enables or disables the reordering of this column via drag-and-drop. Allows for dynamic column adjustments.
39
+ * @default true
40
+ */
41
+ allowReordering: any;
42
+ /**
43
+ * Determines if this column can be resized. If false, the column size is fixed.
44
+ * @default true
45
+ */
46
+ allowResizing: any;
47
+ /**
48
+ * Specifies whether sorting is enabled for this column. Set to false to prevent sort actions.
49
+ * @default true
50
+ */
51
+ allowSorting: any;
52
+ /**
53
+ * Determines how overflow content is handled within a cell. Options include:
54
+ * * `Clip`: Truncates the content.
55
+ * * `Ellipsis`: Shows ellipsis for overflow.
56
+ * * `EllipsisWithTooltip`: Shows ellipsis and tooltip on hover.
57
+ * @default Syncfusion.EJ2.Grids.ClipMode.Ellipsis
58
+ * @isenumeration true
59
+ * @asptype Syncfusion.EJ2.Grids.ClipMode
60
+ */
61
+ clipMode: any;
62
+ /**
63
+ * Allows for the creation of stacked headers by using multiple rows in the grid's header.
64
+ * @default null
65
+ */
66
+ columns: any;
67
+ /**
68
+ * Provides built-in command button options for cells. Options include Edit, Delete, Save, and Cancel.
69
+ * Custom command button implementations are possible.
70
+ *
71
+ * The following code example implements the custom command column.
72
+ *```html
73
+ *<style type="text/css" class="cssStyles">
74
+ *.details-icon:before
75
+ *{
76
+ * content:"\e74d";
77
+ *}
78
+ *</style>
79
+ *<div id="TreeGrid"></div>
80
+ *```
81
+ *```typescript
82
+ *var gridObj = new TreeGrid({
83
+ *datasource: window.gridData,
84
+ *columns : [
85
+ * { field: 'CustomerID', headerText: 'Customer ID' },
86
+ * { field: 'CustomerName', headerText: 'Customer Name' },
87
+ * {commands: [{buttonOption:{content: 'Details', click: onClick, cssClass: details-icon}}], headerText: 'Customer Details'}
88
+ *]
89
+ *gridObj.appendTo("#TreeGrid");
90
+ *```
91
+ *
92
+ * @default null
93
+ */
94
+ commands: any;
95
+ /**
96
+ * Enables the addition of CSS styles and attributes for the content cells in a particular column.
97
+ * @default null
98
+ */
99
+ customAttributes: any;
100
+ /**
101
+ * Sets default values when new records are added to the TreeGrid involving this column.
102
+ * @default null
103
+ */
104
+ defaultValue: any;
105
+ /**
106
+ * If set to `true`, the HTML content within header and content cells is encoded to prevent injection attacks.
107
+ * @default true
108
+ */
109
+ disableHtmlEncode: any;
110
+ /**
111
+ * Displays the column value as a checkbox instead of a Boolean value when set to `true`.
112
+ * @default false
113
+ */
114
+ displayAsCheckBox: any;
115
+ /**
116
+ * Allows customizing the default edit cell through the `IEditCell` object for more control over editing.
117
+ * @default {}
118
+ */
119
+ edit: any;
120
+ /**
121
+ * Specifies the component type used for editing cells within this column.
122
+ * @default 'stringedit'
123
+ */
124
+ editType: any;
125
+ /**
126
+ * Specifies the field name in the data source to which the column is bound. This field is used for operations like sorting and filtering.
127
+ * The field name must be a valid JavaScript identifier, beginning with a letter and avoiding spaces and special characters.
128
+ * @default 'undefined'
129
+ */
130
+ field: any;
131
+ /**
132
+ * Customizes filter options for the column, enabling specialized filtering functionality.
133
+ * @default null
134
+ */
135
+ filter: any;
136
+ /**
137
+ * Allows for a custom component within the filter bar, facilitating advanced filter interfaces.
138
+ * Includes create and read functions for custom component management.
139
+ *
140
+ * ```html
141
+ *<div id="TreeGrid"></div>
142
+ *```
143
+ *```typescript
144
+ *let gridObj: TreeGrid = new TreeGrid({
145
+ *dataSource: filterData,
146
+ *columns: [
147
+ * { field: 'OrderID', headerText: 'Order ID' },
148
+ * {
149
+ * field: 'EmployeeID', filterBarTemplate: {
150
+ * create: (args: { element: Element, column: Column }) => {
151
+ * let input: HTMLInputElement = document.createElement('input');
152
+ * input.id = 'EmployeeID';
153
+ * input.type = 'text';
154
+ * return input;
155
+ * },
156
+ * write: (args: { element: Element, column: Column }) => {
157
+ * args.element.addEventListener('input', args.column.filterBarTemplate.read as EventListener);
158
+ * },
159
+ * read: (args: { element: HTMLInputElement, columnIndex: number, column: Column }) => {
160
+ * gridObj.filterByColumn(args.element.id, 'equal', args.element.value);
161
+ * }
162
+ * }
163
+ *}],
164
+ * allowFiltering: true
165
+ *});
166
+ *gridObj.appendTo('#TreeGrid');
167
+ *```
168
+ *
169
+ * @default null
170
+ */
171
+ filterBarTemplate: any;
172
+ /**
173
+ * Formats the displayed value of the column without affecting the underlying data. Supports standard and custom formats for numbers and dates.
174
+ *
175
+ * References for [number](https://ej2.syncfusion.com/documentation/common/internationalization/#supported-format-string)
176
+ *and [date](https://ej2.syncfusion.com/documentation/common/internationalization#date-formatting) formats.
177
+ * @default null
178
+ * @asptype string
179
+ */
180
+ format: any;
181
+ /**
182
+ * Allows for custom cell content formatting using an external method, executed prior to rendering.
183
+ * @default null
184
+ */
185
+ formatter: any;
186
+ /**
187
+ * Determines which side (left, right, or center) the column should be frozen on.
188
+ * @default Syncfusion.EJ2.Grids.FreezeDirection.None
189
+ * @isenumeration true
190
+ * @asptype Syncfusion.EJ2.Grids.FreezeDirection
191
+ */
192
+ freeze: any;
193
+ /**
194
+ * Specifies the text displayed in the column header. If omitted, the `field` value is used as the header text.
195
+ * @default 'undefined'
196
+ */
197
+ headerText: any;
198
+ /**
199
+ * Aligns the text in the column header. By default, the alignment corresponds to other content alignments.
200
+ * @default null
201
+ * @aspdefaultvalueignore
202
+ * @isenumeration true
203
+ * @asptype Syncfusion.EJ2.Grids.TextAlign
204
+ */
205
+ headerTextAlign: any;
206
+ /**
207
+ * Adjusts column visibility based on [Media Queries](http://cssmediaqueries.com/what-are-css-media-queries.html). Accepts valid CSS media query strings for responsive adjustments.
208
+ * @default 'undefined'
209
+ */
210
+ hideAtMedia: any;
211
+ /**
212
+ * Allows the column to be frozen, keeping it stationary while scrolling horizontally through the grid.
213
+ * @default false
214
+ */
215
+ isFrozen: any;
216
+ /**
217
+ * Identifies the column as an identity column in database terms, if set to `true`.
218
+ * @default false
219
+ */
220
+ isIdentity: any;
221
+ /**
222
+ * Identifies the column as a primary key if set to `true`, enforcing uniqueness.
223
+ * @default false
224
+ */
225
+ isPrimaryKey: any;
226
+ /**
227
+ * Prevents column reordering when set to true, locking the column into a set position.
228
+ * @default false
229
+ */
230
+ lockColumn: any;
231
+ /**
232
+ * Defines the maximum allowable width of the column in pixels or as a percentage, preventing resizing beyond this limit.
233
+ * @default 'undefined'
234
+ */
235
+ maxWidth: any;
236
+ /**
237
+ * Determines the minimum width of the column in pixels or percentage. This ensures the column does not shrink below this size.
238
+ * @default 'undefined'
239
+ */
240
+ minWidth: any;
241
+ /**
242
+ * Displays checkboxes in the column when enabled, allowing for selections and certain operations.
243
+ * @default false
244
+ */
245
+ showCheckbox: any;
246
+ /**
247
+ * Decides if the column menu should be available, providing options for column customization.
248
+ * @default true
249
+ */
250
+ showColumnMenu: any;
251
+ /**
252
+ * Determines whether the column should appear in the Column Chooser. Set to false to exclude it.
253
+ * @default true
254
+ */
255
+ showInColumnChooser: any;
256
+ /**
257
+ * Provides a custom sort comparer property to control how sorting is handled for this column's data.
258
+ * @default 'undefined'
259
+ */
260
+ sortComparer: any;
261
+ /**
262
+ * Specifies the horizontal alignment for the column content and header. Options include alignment to the left, center, or right.
263
+ * @default Syncfusion.EJ2.Grids.TextAlign.Left
264
+ * @isenumeration true
265
+ * @asptype Syncfusion.EJ2.Grids.TextAlign
266
+ */
267
+ textAlign: any;
268
+ /**
269
+ * Retrieves the unique identifier for the column. This UID is used internally to reference and manipulate the column.
270
+ * @default 'undefined'
271
+ */
272
+ uid: any;
273
+ /**
274
+ * Establishes validation rules to ensure data integrity during creation and updates.
275
+ * @default null
276
+ */
277
+ validationRules: any;
278
+ /**
279
+ * Applies custom cell values using an external function, allowing for dynamic display adjustments.
280
+ * @default null
281
+ */
282
+ valueAccessor: any;
283
+ /**
284
+ * Toggles the visibility of the column. Set to false to hide the column from view. Columns are visible by default.
285
+ * @default true
286
+ */
287
+ visible: any;
288
+ /**
289
+ * Sets the column's width in pixels or as a percentage. This defines how the column will occupy space in the grid.
290
+ * @default 'undefined'
291
+ */
292
+ width: any;
293
+ /**
294
+ * Customizes the rendering of cell content using either a template string or HTML element ID.
295
+ * @default null
296
+ * @asptype string
297
+ */
298
+ template: any;
299
+ /**
300
+ * Customizes the header content with a template, defined as a string or an HTML element ID.
301
+ * @default null
302
+ * @asptype string
303
+ */
304
+ headerTemplate: any;
305
+ filter_itemTemplate: any;
306
+ /**
307
+ * Specifies a custom template or UI for filtering within this column, utilizing either string templates or HTML element IDs.
308
+ * @aspignore
309
+ */
310
+ filterTemplate: any;
311
+ commandsTemplate: any;
312
+ /**
313
+ * Provides a template for editing cells in this column, supporting either a template string or an HTML element ID.
314
+ * @aspignore
315
+ */
316
+ editTemplate: any;
317
+ constructor(viewContainerRef: ViewContainerRef);
318
+ }
319
+ /**
320
+ * StackedColumn Array Directive
321
+ * @private
322
+ */
323
+ export declare class StackedColumnsDirective extends ArrayBase<StackedColumnsDirective> {
324
+ constructor();
325
+ }