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