@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.
@@ -20,60 +20,53 @@ export declare class StackedColumnDirective extends ComplexBase<StackedColumnDir
20
20
  private viewContainerRef;
21
21
  directivePropList: any;
22
22
  /**
23
- * Defines the data type of the column.
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
- * If `allowEditing` set to false, then it disables editing of a particular column.
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 `allowFiltering` set to false, then it disables filtering option and filter bar element of a particular column.
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
- * If `allowReordering` set to false, then it disables reorder of a particular column.
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
- * If `allowResizing` set to false, it disables resize option of a particular column.
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
- * If `allowSorting` set to false, then it disables sorting option of a particular column.
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
- * Defines the cell content's overflow mode. The available modes are
58
- *
59
- * also it will display tooltip while hover on ellipsis applied cell.
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
- * Used to render multiple header rows(stacked headers) on TreeGrid header.
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
- * `commands` provides an option to display command buttons in every cell.
72
- * The available built-in command buttons are
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
- * The CSS styles and attributes of the content cells of a particular column can be customized.
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
- * Defines default values for the component when adding a new record to the TreeGrid.
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 `disableHtmlEncode` is set to true, it encodes the HTML of the header and content cells.
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
- * If `displayAsCheckBox` is set to true, it displays the column value as a check box instead of Boolean value.
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
- * Defines the `IEditCell` object to customize default edit cell.
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
- * Defines the type of component for editing.
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
- * Defines the field name of column which is mapped with mapping name of DataSource.
134
- * The bounded columns can be sort, filter etc.,
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
- * Defines the filter options to customize filtering for the particular column.
132
+ * Customizes filter options for the column, enabling specialized filtering functionality.
142
133
  * @default null
143
134
  */
144
135
  filter: any;
145
136
  /**
146
- * The `filterBarTemplate` is used to add a custom component instead of default input component for filter bar.
147
- * It have create and read functions.
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
- * It is used to change display value with the given format and does not affect the original data.
185
- * Gets the format from the user which can be standard or custom
186
- * [`number`](https://ej2.syncfusion.com/documentation/common/internationalization/#supported-format-string)
187
- * and [`date`](https://ej2.syncfusion.com/documentation/common/internationalization/#supported-format-string-1) formats.
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
- * Defines the method which is used to achieve custom formatting from an external function.
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
- * Defines which side the column need to freeze
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
- * Defines the header text of column which is used to display in column header.
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
- * Define the alignment of column header which is used to align the text of column header.
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
- * Column visibility can change based on [`Media Queries`](http://cssmediaqueries.com/what-are-css-media-queries.html).
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
- * You can use this property to freeze selected columns in grid.
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
- * If `isIdentity` is set to true, then this column is considered as identity column.
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
- * If `isPrimaryKey` is set to true, considers this column as the primary key constraint.
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
- * If `lockColumn` set to true, then it disables Reordering of a particular column.
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, which will restrict resizing beyond this 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
- * Defines the minimum width of the column in pixels or percentage.
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
- * If `showCheckbox` set to true, then the checkboxes will be displayed in particular column.
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
- * If `showColumnMenu` set to false, then it disable the column menu of a particular column.
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
- * If `showInColumnChooser` set to false, then hide the particular column in column chooser.
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
- * Defines the sort comparer property.
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
- * Defines the alignment of the column in both header and content cells.
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
- * Gets the unique identifier value of the column. It is used to get the object.
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
- * Defines rules to validate data before creating and updating.
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
- * Defines the method used to apply custom cell values from external function and display this on each cell rendered.
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
- * If `visible` is set to false, hides the particular column. By default, columns are displayed.
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
- * Defines the width of the column in pixels or percentage.
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
- * Defines the column template that renders customized element in each cell of the column.
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
- * Defines the header template as string or HTML element ID which is used to add customized element in the column header.
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
- * Defines the filter template/UI that is used as filter for a particular column.
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
- * Defines the cell edit template that used as editor for a particular column.
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 [`Row Template`](../../treegrid/row) customization.
99
+ * > Check the [Row Template](../../treegrid/row) customization.
100
100
  *
101
101
  * @asptype string
102
102
  */