@syncfusion/ej2-angular-treegrid 28.2.6-ngcc → 29.1.33-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.
- package/@syncfusion/ej2-angular-treegrid.es5.js +1 -1
- package/@syncfusion/ej2-angular-treegrid.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-treegrid.js +1 -1
- package/@syncfusion/ej2-angular-treegrid.js.map +1 -1
- package/README.md +6 -6
- package/dist/ej2-angular-treegrid.umd.js +1 -3
- package/dist/ej2-angular-treegrid.umd.js.map +1 -1
- package/dist/ej2-angular-treegrid.umd.min.js +2 -2
- package/dist/ej2-angular-treegrid.umd.min.js.map +1 -1
- package/package.json +9 -9
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/src/treegrid/aggregate-columns.directive.d.ts +26 -28
- package/src/treegrid/aggregates.directive.d.ts +2 -2
- package/src/treegrid/columns.directive.d.ts +54 -74
- package/src/treegrid/stacked-column.directive.d.ts +54 -74
- package/src/treegrid/treegrid.component.d.ts +1 -1
@@ -20,60 +20,53 @@ export declare class StackedColumnDirective extends ComplexBase<StackedColumnDir
|
|
20
20
|
private viewContainerRef;
|
21
21
|
directivePropList: any;
|
22
22
|
/**
|
23
|
-
* Defines the
|
23
|
+
* Defines the type of data stored in the column, which may be string, number, date, or other types.
|
24
24
|
* @default null
|
25
25
|
*/
|
26
26
|
type: any;
|
27
27
|
/**
|
28
|
-
*
|
29
|
-
* By default all columns are editable.
|
28
|
+
* Controls whether editing is permitted for the column. By default, all columns are editable.
|
30
29
|
* @default true
|
31
30
|
*/
|
32
31
|
allowEditing: any;
|
33
32
|
/**
|
34
|
-
* If
|
35
|
-
* By default all columns are filterable.
|
33
|
+
* Controls whether the column supports filtering. If set to false, users cannot filter data by this column.
|
36
34
|
* @default true
|
37
35
|
*/
|
38
36
|
allowFiltering: any;
|
39
37
|
/**
|
40
|
-
*
|
41
|
-
* By default all columns can be reorder.
|
38
|
+
* Enables or disables the reordering of this column via drag-and-drop. Allows for dynamic column adjustments.
|
42
39
|
* @default true
|
43
40
|
*/
|
44
41
|
allowReordering: any;
|
45
42
|
/**
|
46
|
-
*
|
43
|
+
* Determines if this column can be resized. If false, the column size is fixed.
|
47
44
|
* @default true
|
48
45
|
*/
|
49
46
|
allowResizing: any;
|
50
47
|
/**
|
51
|
-
*
|
52
|
-
* By default all columns are sortable.
|
48
|
+
* Specifies whether sorting is enabled for this column. Set to false to prevent sort actions.
|
53
49
|
* @default true
|
54
50
|
*/
|
55
51
|
allowSorting: any;
|
56
52
|
/**
|
57
|
-
*
|
58
|
-
*
|
59
|
-
*
|
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.
|
60
57
|
* @default Syncfusion.EJ2.Grids.ClipMode.Ellipsis
|
61
58
|
* @isenumeration true
|
62
59
|
* @asptype Syncfusion.EJ2.Grids.ClipMode
|
63
60
|
*/
|
64
61
|
clipMode: any;
|
65
62
|
/**
|
66
|
-
*
|
63
|
+
* Allows for the creation of stacked headers by using multiple rows in the grid's header.
|
67
64
|
* @default null
|
68
65
|
*/
|
69
66
|
columns: any;
|
70
67
|
/**
|
71
|
-
*
|
72
|
-
*
|
73
|
-
* * Edit - Edit the record.
|
74
|
-
* * Delete - Delete the record.
|
75
|
-
* * Save - Save the record.
|
76
|
-
* * Cancel - Cancel the edit state.
|
68
|
+
* Provides built-in command button options for cells. Options include Edit, Delete, Save, and Cancel.
|
69
|
+
* Custom command button implementations are possible.
|
77
70
|
*
|
78
71
|
* The following code example implements the custom command column.
|
79
72
|
*```html
|
@@ -100,53 +93,49 @@ export declare class StackedColumnDirective extends ComplexBase<StackedColumnDir
|
|
100
93
|
*/
|
101
94
|
commands: any;
|
102
95
|
/**
|
103
|
-
*
|
96
|
+
* Enables the addition of CSS styles and attributes for the content cells in a particular column.
|
104
97
|
* @default null
|
105
98
|
*/
|
106
99
|
customAttributes: any;
|
107
100
|
/**
|
108
|
-
*
|
101
|
+
* Sets default values when new records are added to the TreeGrid involving this column.
|
109
102
|
* @default null
|
110
103
|
*/
|
111
104
|
defaultValue: any;
|
112
105
|
/**
|
113
|
-
* If
|
106
|
+
* If set to `true`, the HTML content within header and content cells is encoded to prevent injection attacks.
|
114
107
|
* @default true
|
115
108
|
*/
|
116
109
|
disableHtmlEncode: any;
|
117
110
|
/**
|
118
|
-
*
|
111
|
+
* Displays the column value as a checkbox instead of a Boolean value when set to `true`.
|
119
112
|
* @default false
|
120
113
|
*/
|
121
114
|
displayAsCheckBox: any;
|
122
115
|
/**
|
123
|
-
*
|
116
|
+
* Allows customizing the default edit cell through the `IEditCell` object for more control over editing.
|
124
117
|
* @default {}
|
125
118
|
*/
|
126
119
|
edit: any;
|
127
120
|
/**
|
128
|
-
*
|
121
|
+
* Specifies the component type used for editing cells within this column.
|
129
122
|
* @default 'stringedit'
|
130
123
|
*/
|
131
124
|
editType: any;
|
132
125
|
/**
|
133
|
-
*
|
134
|
-
* The
|
135
|
-
* The `field` name must be a valid JavaScript identifier,
|
136
|
-
* the first character must be an alphabet and should not contain spaces and special characters.
|
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.
|
137
128
|
* @default 'undefined'
|
138
129
|
*/
|
139
130
|
field: any;
|
140
131
|
/**
|
141
|
-
*
|
132
|
+
* Customizes filter options for the column, enabling specialized filtering functionality.
|
142
133
|
* @default null
|
143
134
|
*/
|
144
135
|
filter: any;
|
145
136
|
/**
|
146
|
-
*
|
147
|
-
*
|
148
|
-
* * create: It is used for creating custom components.
|
149
|
-
* * read: It is used to perform custom filter action.
|
137
|
+
* Allows for a custom component within the filter bar, facilitating advanced filter interfaces.
|
138
|
+
* Includes create and read functions for custom component management.
|
150
139
|
*
|
151
140
|
* ```html
|
152
141
|
*<div id="TreeGrid"></div>
|
@@ -171,7 +160,7 @@ export declare class StackedColumnDirective extends ComplexBase<StackedColumnDir
|
|
171
160
|
* gridObj.filterByColumn(args.element.id, 'equal', args.element.value);
|
172
161
|
* }
|
173
162
|
* }
|
174
|
-
*
|
163
|
+
*}],
|
175
164
|
* allowFiltering: true
|
176
165
|
*});
|
177
166
|
*gridObj.appendTo('#TreeGrid');
|
@@ -181,35 +170,33 @@ export declare class StackedColumnDirective extends ComplexBase<StackedColumnDir
|
|
181
170
|
*/
|
182
171
|
filterBarTemplate: any;
|
183
172
|
/**
|
184
|
-
*
|
185
|
-
*
|
186
|
-
* [
|
187
|
-
*
|
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.
|
188
177
|
* @default null
|
189
178
|
* @asptype string
|
190
179
|
*/
|
191
180
|
format: any;
|
192
181
|
/**
|
193
|
-
*
|
194
|
-
* This function triggers before rendering of each cell.
|
182
|
+
* Allows for custom cell content formatting using an external method, executed prior to rendering.
|
195
183
|
* @default null
|
196
184
|
*/
|
197
185
|
formatter: any;
|
198
186
|
/**
|
199
|
-
*
|
187
|
+
* Determines which side (left, right, or center) the column should be frozen on.
|
200
188
|
* @default Syncfusion.EJ2.Grids.FreezeDirection.None
|
201
189
|
* @isenumeration true
|
202
190
|
* @asptype Syncfusion.EJ2.Grids.FreezeDirection
|
203
191
|
*/
|
204
192
|
freeze: any;
|
205
193
|
/**
|
206
|
-
*
|
207
|
-
* If `headerText` is not defined, then field name value will be assigned to header text.
|
194
|
+
* Specifies the text displayed in the column header. If omitted, the `field` value is used as the header text.
|
208
195
|
* @default 'undefined'
|
209
196
|
*/
|
210
197
|
headerText: any;
|
211
198
|
/**
|
212
|
-
*
|
199
|
+
* Aligns the text in the column header. By default, the alignment corresponds to other content alignments.
|
213
200
|
* @default null
|
214
201
|
* @aspdefaultvalueignore
|
215
202
|
* @isenumeration true
|
@@ -217,120 +204,113 @@ export declare class StackedColumnDirective extends ComplexBase<StackedColumnDir
|
|
217
204
|
*/
|
218
205
|
headerTextAlign: any;
|
219
206
|
/**
|
220
|
-
*
|
221
|
-
* `hideAtMedia` accepts only valid Media Queries.
|
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.
|
222
208
|
* @default 'undefined'
|
223
209
|
*/
|
224
210
|
hideAtMedia: any;
|
225
211
|
/**
|
226
|
-
*
|
212
|
+
* Allows the column to be frozen, keeping it stationary while scrolling horizontally through the grid.
|
227
213
|
* @default false
|
228
214
|
*/
|
229
215
|
isFrozen: any;
|
230
216
|
/**
|
231
|
-
*
|
217
|
+
* Identifies the column as an identity column in database terms, if set to `true`.
|
232
218
|
* @default false
|
233
219
|
*/
|
234
220
|
isIdentity: any;
|
235
221
|
/**
|
236
|
-
*
|
222
|
+
* Identifies the column as a primary key if set to `true`, enforcing uniqueness.
|
237
223
|
* @default false
|
238
224
|
*/
|
239
225
|
isPrimaryKey: any;
|
240
226
|
/**
|
241
|
-
*
|
242
|
-
* The locked column will be moved to first position.
|
227
|
+
* Prevents column reordering when set to true, locking the column into a set position.
|
243
228
|
* @default false
|
244
229
|
*/
|
245
230
|
lockColumn: any;
|
246
231
|
/**
|
247
|
-
* Defines the maximum width of the column in pixels or percentage,
|
232
|
+
* Defines the maximum allowable width of the column in pixels or as a percentage, preventing resizing beyond this limit.
|
248
233
|
* @default 'undefined'
|
249
234
|
*/
|
250
235
|
maxWidth: any;
|
251
236
|
/**
|
252
|
-
*
|
237
|
+
* Determines the minimum width of the column in pixels or percentage. This ensures the column does not shrink below this size.
|
253
238
|
* @default 'undefined'
|
254
239
|
*/
|
255
240
|
minWidth: any;
|
256
241
|
/**
|
257
|
-
*
|
242
|
+
* Displays checkboxes in the column when enabled, allowing for selections and certain operations.
|
258
243
|
* @default false
|
259
244
|
*/
|
260
245
|
showCheckbox: any;
|
261
246
|
/**
|
262
|
-
*
|
263
|
-
* By default column menu will show for all columns
|
247
|
+
* Decides if the column menu should be available, providing options for column customization.
|
264
248
|
* @default true
|
265
249
|
*/
|
266
250
|
showColumnMenu: any;
|
267
251
|
/**
|
268
|
-
*
|
269
|
-
* By default all columns are displayed in column Chooser.
|
252
|
+
* Determines whether the column should appear in the Column Chooser. Set to false to exclude it.
|
270
253
|
* @default true
|
271
254
|
*/
|
272
255
|
showInColumnChooser: any;
|
273
256
|
/**
|
274
|
-
*
|
257
|
+
* Provides a custom sort comparer property to control how sorting is handled for this column's data.
|
275
258
|
* @default 'undefined'
|
276
259
|
*/
|
277
260
|
sortComparer: any;
|
278
261
|
/**
|
279
|
-
*
|
262
|
+
* Specifies the horizontal alignment for the column content and header. Options include alignment to the left, center, or right.
|
280
263
|
* @default Syncfusion.EJ2.Grids.TextAlign.Left
|
281
264
|
* @isenumeration true
|
282
265
|
* @asptype Syncfusion.EJ2.Grids.TextAlign
|
283
266
|
*/
|
284
267
|
textAlign: any;
|
285
268
|
/**
|
286
|
-
*
|
269
|
+
* Retrieves the unique identifier for the column. This UID is used internally to reference and manipulate the column.
|
287
270
|
* @default 'undefined'
|
288
271
|
*/
|
289
272
|
uid: any;
|
290
273
|
/**
|
291
|
-
*
|
274
|
+
* Establishes validation rules to ensure data integrity during creation and updates.
|
292
275
|
* @default null
|
293
276
|
*/
|
294
277
|
validationRules: any;
|
295
278
|
/**
|
296
|
-
*
|
279
|
+
* Applies custom cell values using an external function, allowing for dynamic display adjustments.
|
297
280
|
* @default null
|
298
281
|
*/
|
299
282
|
valueAccessor: any;
|
300
283
|
/**
|
301
|
-
*
|
284
|
+
* Toggles the visibility of the column. Set to false to hide the column from view. Columns are visible by default.
|
302
285
|
* @default true
|
303
286
|
*/
|
304
287
|
visible: any;
|
305
288
|
/**
|
306
|
-
*
|
289
|
+
* Sets the column's width in pixels or as a percentage. This defines how the column will occupy space in the grid.
|
307
290
|
* @default 'undefined'
|
308
291
|
*/
|
309
292
|
width: any;
|
310
293
|
/**
|
311
|
-
*
|
312
|
-
* It accepts either [template string](https://ej2.syncfusion.com/documentation/common/template-engine/) or HTML element ID.
|
294
|
+
* Customizes the rendering of cell content using either a template string or HTML element ID.
|
313
295
|
* @default null
|
314
296
|
* @asptype string
|
315
297
|
*/
|
316
298
|
template: any;
|
317
299
|
/**
|
318
|
-
*
|
300
|
+
* Customizes the header content with a template, defined as a string or an HTML element ID.
|
319
301
|
* @default null
|
320
302
|
* @asptype string
|
321
303
|
*/
|
322
304
|
headerTemplate: any;
|
323
305
|
filter_itemTemplate: any;
|
324
306
|
/**
|
325
|
-
*
|
326
|
-
* It accepts either template string or HTML element ID.
|
307
|
+
* Specifies a custom template or UI for filtering within this column, utilizing either string templates or HTML element IDs.
|
327
308
|
* @aspignore
|
328
309
|
*/
|
329
310
|
filterTemplate: any;
|
330
311
|
commandsTemplate: any;
|
331
312
|
/**
|
332
|
-
*
|
333
|
-
* It accepts either template string or HTML element ID.
|
313
|
+
* Provides a template for editing cells in this column, supporting either a template string or an HTML element ID.
|
334
314
|
* @aspignore
|
335
315
|
*/
|
336
316
|
editTemplate: any;
|
@@ -96,7 +96,7 @@ export declare class TreeGridComponent extends TreeGrid implements IComponentBas
|
|
96
96
|
* or HTML element ID.
|
97
97
|
* > * The row template must be a table row.
|
98
98
|
*
|
99
|
-
* > Check the [
|
99
|
+
* > Check the [Row Template](../../treegrid/row) customization.
|
100
100
|
*
|
101
101
|
* @asptype string
|
102
102
|
*/
|