@syncfusion/ej2-angular-treegrid 30.1.37 → 30.1.38-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 +798 -0
- package/@syncfusion/ej2-angular-treegrid.es5.js.map +1 -0
- package/@syncfusion/ej2-angular-treegrid.js +748 -0
- package/@syncfusion/ej2-angular-treegrid.js.map +1 -0
- package/dist/ej2-angular-treegrid.umd.js +978 -0
- package/dist/ej2-angular-treegrid.umd.js.map +1 -0
- package/dist/ej2-angular-treegrid.umd.min.js +11 -0
- package/dist/ej2-angular-treegrid.umd.min.js.map +1 -0
- package/ej2-angular-treegrid.d.ts +5 -0
- package/ej2-angular-treegrid.metadata.json +1 -0
- package/license +10 -0
- package/package.json +47 -29
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +4 -4
- package/src/treegrid/aggregate-columns.directive.d.ts +0 -5
- package/src/treegrid/aggregates.directive.d.ts +0 -5
- package/src/treegrid/columns.directive.d.ts +0 -5
- package/src/treegrid/stacked-column.directive.d.ts +0 -5
- package/src/treegrid/treegrid-all.module.d.ts +0 -6
- package/src/treegrid/treegrid.component.d.ts +0 -3
- package/src/treegrid/treegrid.module.d.ts +0 -10
- package/CHANGELOG.md +0 -214
- package/esm2020/public_api.mjs +0 -2
- package/esm2020/src/index.mjs +0 -9
- package/esm2020/src/treegrid/aggregate-columns.directive.mjs +0 -72
- package/esm2020/src/treegrid/aggregates.directive.mjs +0 -69
- package/esm2020/src/treegrid/columns.directive.mjs +0 -100
- package/esm2020/src/treegrid/stacked-column.directive.mjs +0 -100
- package/esm2020/src/treegrid/treegrid-all.module.mjs +0 -89
- package/esm2020/src/treegrid/treegrid.component.mjs +0 -247
- package/esm2020/src/treegrid/treegrid.module.mjs +0 -61
- package/esm2020/syncfusion-ej2-angular-treegrid.mjs +0 -5
- package/fesm2015/syncfusion-ej2-angular-treegrid.mjs +0 -710
- package/fesm2015/syncfusion-ej2-angular-treegrid.mjs.map +0 -1
- package/fesm2020/syncfusion-ej2-angular-treegrid.mjs +0 -710
- package/fesm2020/syncfusion-ej2-angular-treegrid.mjs.map +0 -1
- package/syncfusion-ej2-angular-treegrid.d.ts +0 -5
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"ej2-angular-treegrid.umd.min.js","sources":["~/@syncfusion/ej2-angular-treegrid/src/treegrid/stacked-column.directive.ts","~/@syncfusion/ej2-angular-treegrid/src/treegrid/columns.directive.ts","~/@syncfusion/ej2-angular-treegrid/src/treegrid/aggregate-columns.directive.ts","~/@syncfusion/ej2-angular-treegrid/src/treegrid/aggregates.directive.ts","~/@syncfusion/ej2-angular-treegrid/src/treegrid/treegrid.component.ts","~/@syncfusion/ej2-angular-treegrid/src/treegrid/treegrid.module.ts","~/@syncfusion/ej2-angular-treegrid/src/treegrid/treegrid-all.module.ts"],"sourcesContent":["import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nlet /** @type {?} */ input: string[] = ['allowEditing', 'allowFiltering', 'allowReordering', 'allowResizing', 'allowSorting', 'clipMode', 'columns', 'commands', 'customAttributes', 'defaultValue', 'disableHtmlEncode', 'displayAsCheckBox', 'edit', 'editTemplate', 'editType', 'field', 'filter', 'filterBarTemplate', 'filterTemplate', 'format', 'formatter', 'freeze', 'headerTemplate', 'headerText', 'headerTextAlign', 'hideAtMedia', 'isFrozen', 'isIdentity', 'isPrimaryKey', 'lockColumn', 'maxWidth', 'minWidth', 'showCheckbox', 'showColumnMenu', 'showInColumnChooser', 'sortComparer', 'template', 'textAlign', 'type', 'uid', 'validationRules', 'valueAccessor', 'visible', 'width'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-stacked-column` directive represent the stacked column of the Angular TreeGrid.\n * It must be contained in a StackedColumns component(`e-stacked-columns`). \n * ```html\n * <ejs-treegrid [dataSource]='data' allowPaging='true' allowSorting='true'> \n * <e-columns>\n * <e-column field='ID' width='100'></e-column>\n * <e-column headerText='Details' width='100'>\n * <e-stacked-columns>\n * <e-stacked-column field='Name' width='140'></e-stacked-column>\n * </e-stacked-columns>\n * </e-column>\n * </e-columns>\n * </ejs-treegrid>\n * ```\n */\nexport class StackedColumnDirective extends ComplexBase<StackedColumnDirective> {\npublic directivePropList: any;\n/**\n * Defines the type of data stored in the column, which may be string, number, date, or other types.\n * \\@default null\n */\npublic type: any;\n/**\n * Controls whether editing is permitted for the column. By default, all columns are editable.\n * \\@default true\n */\npublic allowEditing: any;\n/**\n * Controls whether the column supports filtering. If set to false, users cannot filter data by this column.\n * \\@default true\n */\npublic allowFiltering: any;\n/**\n * Enables or disables the reordering of this column via drag-and-drop. Allows for dynamic column adjustments.\n * \\@default true\n */\npublic allowReordering: any;\n/**\n * Determines if this column can be resized. If false, the column size is fixed.\n * \\@default true\n */\npublic allowResizing: any;\n/**\n * Specifies whether sorting is enabled for this column. Set to false to prevent sort actions.\n * \\@default true\n */\npublic allowSorting: any;\n/**\n * Determines how overflow content is handled within a cell. Options include: \n * * `Clip`: Truncates the content. \n * * `Ellipsis`: Shows ellipsis for overflow. \n * * `EllipsisWithTooltip`: Shows ellipsis and tooltip on hover.\n * \\@default Syncfusion.EJ2.Grids.ClipMode.Ellipsis\n * \\@isenumeration true\n * \\@asptype Syncfusion.EJ2.Grids.ClipMode\n */\npublic clipMode: any;\n/**\n * Allows for the creation of stacked headers by using multiple rows in the grid's header.\n * \\@default null\n */\npublic columns: any;\n/**\n * Provides built-in command button options for cells. Options include Edit, Delete, Save, and Cancel. \n * Custom command button implementations are possible.\n * \n * The following code example implements the custom command column.\n * ```html\n * <style type=\"text/css\" class=\"cssStyles\">\n * .details-icon:before\n * {\n * content:\"\\e74d\";\n * }\n * </style>\n * <div id=\"TreeGrid\"></div>\n * ```\n * ```typescript\n * var gridObj = new TreeGrid({\n * datasource: window.gridData,\n * columns : [\n * { field: 'CustomerID', headerText: 'Customer ID' },\n * { field: 'CustomerName', headerText: 'Customer Name' },\n * {commands: [{buttonOption:{content: 'Details', click: onClick, cssClass: details-icon}}], headerText: 'Customer Details'}\n * ]\n * gridObj.appendTo(\"#TreeGrid\");\n * ```\n * \n * \\@default null\n */\npublic commands: any;\n/**\n * Enables the addition of CSS styles and attributes for the content cells in a particular column.\n * \\@default null\n */\npublic customAttributes: any;\n/**\n * Sets default values when new records are added to the TreeGrid involving this column.\n * \\@default null\n */\npublic defaultValue: any;\n/**\n * If set to `true`, the HTML content within header and content cells is encoded to prevent injection attacks.\n * \\@default true\n */\npublic disableHtmlEncode: any;\n/**\n * Displays the column value as a checkbox instead of a Boolean value when set to `true`.\n * \\@default false\n */\npublic displayAsCheckBox: any;\n/**\n * Allows customizing the default edit cell through the `IEditCell` object for more control over editing.\n * \\@default {}\n */\npublic edit: any;\n/**\n * Specifies the component type used for editing cells within this column.\n * \\@default 'stringedit'\n */\npublic editType: any;\n/**\n * Specifies the field name in the data source to which the column is bound. This field is used for operations like sorting and filtering. \n * The field name must be a valid JavaScript identifier, beginning with a letter and avoiding spaces and special characters.\n * \\@default 'undefined'\n */\npublic field: any;\n/**\n * Customizes filter options for the column, enabling specialized filtering functionality.\n * \\@default null\n */\npublic filter: any;\n/**\n * Allows for a custom component within the filter bar, facilitating advanced filter interfaces. \n * Includes create and read functions for custom component management.\n * \n * ```html\n * <div id=\"TreeGrid\"></div>\n * ```\n * ```typescript\n * let gridObj: TreeGrid = new TreeGrid({\n * dataSource: filterData,\n * columns: [\n * { field: 'OrderID', headerText: 'Order ID' },\n * {\n * field: 'EmployeeID', filterBarTemplate: {\n * create: (args: { element: Element, column: Column }) => {\n * let input: HTMLInputElement = document.createElement('input');\n * input.id = 'EmployeeID';\n * input.type = 'text';\n * return input;\n * },\n * write: (args: { element: Element, column: Column }) => {\n * args.element.addEventListener('input', args.column.filterBarTemplate.read as EventListener);\n * },\n * read: (args: { element: HTMLInputElement, columnIndex: number, column: Column }) => {\n * gridObj.filterByColumn(args.element.id, 'equal', args.element.value);\n * }\n * }\n * }],\n * allowFiltering: true\n * });\n * gridObj.appendTo('#TreeGrid');\n * ```\n * \n * \\@default null\n */\npublic filterBarTemplate: any;\n/**\n * Formats the displayed value of the column without affecting the underlying data. Supports standard and custom formats for numbers and dates.\n * \n * References for [number](https://ej2.syncfusion.com/documentation/common/internationalization/#supported-format-string)\n * and [date](https://ej2.syncfusion.com/documentation/common/internationalization#date-formatting) formats. \n * \\@default null\n * \\@asptype string\n */\npublic format: any;\n/**\n * Allows for custom cell content formatting using an external method, executed prior to rendering.\n * \\@default null\n */\npublic formatter: any;\n/**\n * Determines which side (left, right, or center) the column should be frozen on.\n * \\@default Syncfusion.EJ2.Grids.FreezeDirection.None\n * \\@isenumeration true\n * \\@asptype Syncfusion.EJ2.Grids.FreezeDirection\n */\npublic freeze: any;\n/**\n * Specifies the text displayed in the column header. If omitted, the `field` value is used as the header text.\n * \\@default 'undefined'\n */\npublic headerText: any;\n/**\n * Aligns the text in the column header. By default, the alignment corresponds to other content alignments.\n * \\@default null\n * \\@aspdefaultvalueignore\n * \\@isenumeration true\n * \\@asptype Syncfusion.EJ2.Grids.TextAlign\n */\npublic headerTextAlign: any;\n/**\n * 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.\n * \\@default 'undefined'\n */\npublic hideAtMedia: any;\n/**\n * Allows the column to be frozen, keeping it stationary while scrolling horizontally through the grid.\n * \\@default false\n */\npublic isFrozen: any;\n/**\n * Identifies the column as an identity column in database terms, if set to `true`.\n * \\@default false\n */\npublic isIdentity: any;\n/**\n * Identifies the column as a primary key if set to `true`, enforcing uniqueness.\n * \\@default false\n */\npublic isPrimaryKey: any;\n/**\n * Prevents column reordering when set to true, locking the column into a set position.\n * \\@default false\n */\npublic lockColumn: any;\n/**\n * Defines the maximum allowable width of the column in pixels or as a percentage, preventing resizing beyond this limit.\n * \\@default 'undefined'\n */\npublic maxWidth: any;\n/**\n * Determines the minimum width of the column in pixels or percentage. This ensures the column does not shrink below this size.\n * \\@default 'undefined'\n */\npublic minWidth: any;\n/**\n * Displays checkboxes in the column when enabled, allowing for selections and certain operations.\n * \\@default false\n */\npublic showCheckbox: any;\n/**\n * Decides if the column menu should be available, providing options for column customization.\n * \\@default true\n */\npublic showColumnMenu: any;\n/**\n * Determines whether the column should appear in the Column Chooser. Set to false to exclude it.\n * \\@default true\n */\npublic showInColumnChooser: any;\n/**\n * Provides a custom sort comparer property to control how sorting is handled for this column's data.\n * \\@default 'undefined'\n */\npublic sortComparer: any;\n/**\n * Specifies the horizontal alignment for the column content and header. Options include alignment to the left, center, or right.\n * \\@default Syncfusion.EJ2.Grids.TextAlign.Left\n * \\@isenumeration true\n * \\@asptype Syncfusion.EJ2.Grids.TextAlign\n */\npublic textAlign: any;\n/**\n * Retrieves the unique identifier for the column. This UID is used internally to reference and manipulate the column.\n * \\@default 'undefined'\n */\npublic uid: any;\n/**\n * Establishes validation rules to ensure data integrity during creation and updates.\n * \\@default null\n */\npublic validationRules: any;\n/**\n * Applies custom cell values using an external function, allowing for dynamic display adjustments.\n * \\@default null\n */\npublic valueAccessor: any;\n/**\n * Toggles the visibility of the column. Set to false to hide the column from view. Columns are visible by default.\n * \\@default true\n */\npublic visible: any;\n/**\n * Sets the column's width in pixels or as a percentage. This defines how the column will occupy space in the grid.\n * \\@default 'undefined'\n */\npublic width: any;\n/**\n * Customizes the rendering of cell content using either a template string or HTML element ID.\n * \\@default null\n * \\@asptype string\n */\n@Template()\n public template: any;\n/**\n * Customizes the header content with a template, defined as a string or an HTML element ID.\n * \\@default null\n * \\@asptype string\n */\n@Template()\n public headerTemplate: any;\n \n @Template()\npublic filter_itemTemplate: any;\n/**\n * Specifies a custom template or UI for filtering within this column, utilizing either string templates or HTML element IDs.\n * \\@aspignore\n */\n@Template()\n public filterTemplate: any;\n \n @Template()\npublic commandsTemplate: any;\n/**\n * Provides a template for editing cells in this column, supporting either a template string or an HTML element ID.\n * \\@aspignore\n */\n@Template()\n public editTemplate: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-treegrid>e-columns>e-column>e-stacked-columns>e-stacked-column',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'template': [{ type: ContentChild, args: ['template', ] },],\n'headerTemplate': [{ type: ContentChild, args: ['headerTemplate', ] },],\n'filter_itemTemplate': [{ type: ContentChild, args: ['filterItemTemplate', ] },],\n'filterTemplate': [{ type: ContentChild, args: ['filterTemplate', ] },],\n'commandsTemplate': [{ type: ContentChild, args: ['commandsTemplate', ] },],\n'editTemplate': [{ type: ContentChild, args: ['editTemplate', ] },],\n};\n}\n\nfunction StackedColumnDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nStackedColumnDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nStackedColumnDirective.ctorParameters;\n/** @type {?} */\nStackedColumnDirective.propDecorators;\n/** @type {?} */\nStackedColumnDirective.prototype.directivePropList;\n/**\n * Defines the type of data stored in the column, which may be string, number, date, or other types.\n * \\@default null\n * @type {?}\n */\nStackedColumnDirective.prototype.type;\n/**\n * Controls whether editing is permitted for the column. By default, all columns are editable.\n * \\@default true\n * @type {?}\n */\nStackedColumnDirective.prototype.allowEditing;\n/**\n * Controls whether the column supports filtering. If set to false, users cannot filter data by this column.\n * \\@default true\n * @type {?}\n */\nStackedColumnDirective.prototype.allowFiltering;\n/**\n * Enables or disables the reordering of this column via drag-and-drop. Allows for dynamic column adjustments.\n * \\@default true\n * @type {?}\n */\nStackedColumnDirective.prototype.allowReordering;\n/**\n * Determines if this column can be resized. If false, the column size is fixed.\n * \\@default true\n * @type {?}\n */\nStackedColumnDirective.prototype.allowResizing;\n/**\n * Specifies whether sorting is enabled for this column. Set to false to prevent sort actions.\n * \\@default true\n * @type {?}\n */\nStackedColumnDirective.prototype.allowSorting;\n/**\n * Determines how overflow content is handled within a cell. Options include: \n * * `Clip`: Truncates the content. \n * * `Ellipsis`: Shows ellipsis for overflow. \n * * `EllipsisWithTooltip`: Shows ellipsis and tooltip on hover.\n * \\@default Syncfusion.EJ2.Grids.ClipMode.Ellipsis\n * \\@isenumeration true\n * \\@asptype Syncfusion.EJ2.Grids.ClipMode\n * @type {?}\n */\nStackedColumnDirective.prototype.clipMode;\n/**\n * Allows for the creation of stacked headers by using multiple rows in the grid's header.\n * \\@default null\n * @type {?}\n */\nStackedColumnDirective.prototype.columns;\n/**\n * Provides built-in command button options for cells. Options include Edit, Delete, Save, and Cancel. \n * Custom command button implementations are possible.\n * \n * The following code example implements the custom command column.\n * ```html\n * <style type=\"text/css\" class=\"cssStyles\">\n * .details-icon:before\n * {\n * content:\"\\e74d\";\n * }\n * </style>\n * <div id=\"TreeGrid\"></div>\n * ```\n * ```typescript\n * var gridObj = new TreeGrid({\n * datasource: window.gridData,\n * columns : [\n * { field: 'CustomerID', headerText: 'Customer ID' },\n * { field: 'CustomerName', headerText: 'Customer Name' },\n * {commands: [{buttonOption:{content: 'Details', click: onClick, cssClass: details-icon}}], headerText: 'Customer Details'}\n * ]\n * gridObj.appendTo(\"#TreeGrid\");\n * ```\n * \n * \\@default null\n * @type {?}\n */\nStackedColumnDirective.prototype.commands;\n/**\n * Enables the addition of CSS styles and attributes for the content cells in a particular column.\n * \\@default null\n * @type {?}\n */\nStackedColumnDirective.prototype.customAttributes;\n/**\n * Sets default values when new records are added to the TreeGrid involving this column.\n * \\@default null\n * @type {?}\n */\nStackedColumnDirective.prototype.defaultValue;\n/**\n * If set to `true`, the HTML content within header and content cells is encoded to prevent injection attacks.\n * \\@default true\n * @type {?}\n */\nStackedColumnDirective.prototype.disableHtmlEncode;\n/**\n * Displays the column value as a checkbox instead of a Boolean value when set to `true`.\n * \\@default false\n * @type {?}\n */\nStackedColumnDirective.prototype.displayAsCheckBox;\n/**\n * Allows customizing the default edit cell through the `IEditCell` object for more control over editing.\n * \\@default {}\n * @type {?}\n */\nStackedColumnDirective.prototype.edit;\n/**\n * Specifies the component type used for editing cells within this column.\n * \\@default 'stringedit'\n * @type {?}\n */\nStackedColumnDirective.prototype.editType;\n/**\n * Specifies the field name in the data source to which the column is bound. This field is used for operations like sorting and filtering. \n * The field name must be a valid JavaScript identifier, beginning with a letter and avoiding spaces and special characters.\n * \\@default 'undefined'\n * @type {?}\n */\nStackedColumnDirective.prototype.field;\n/**\n * Customizes filter options for the column, enabling specialized filtering functionality.\n * \\@default null\n * @type {?}\n */\nStackedColumnDirective.prototype.filter;\n/**\n * Allows for a custom component within the filter bar, facilitating advanced filter interfaces. \n * Includes create and read functions for custom component management.\n * \n * ```html\n * <div id=\"TreeGrid\"></div>\n * ```\n * ```typescript\n * let gridObj: TreeGrid = new TreeGrid({\n * dataSource: filterData,\n * columns: [\n * { field: 'OrderID', headerText: 'Order ID' },\n * {\n * field: 'EmployeeID', filterBarTemplate: {\n * create: (args: { element: Element, column: Column }) => {\n * let input: HTMLInputElement = document.createElement('input');\n * input.id = 'EmployeeID';\n * input.type = 'text';\n * return input;\n * },\n * write: (args: { element: Element, column: Column }) => {\n * args.element.addEventListener('input', args.column.filterBarTemplate.read as EventListener);\n * },\n * read: (args: { element: HTMLInputElement, columnIndex: number, column: Column }) => {\n * gridObj.filterByColumn(args.element.id, 'equal', args.element.value);\n * }\n * }\n * }],\n * allowFiltering: true\n * });\n * gridObj.appendTo('#TreeGrid');\n * ```\n * \n * \\@default null\n * @type {?}\n */\nStackedColumnDirective.prototype.filterBarTemplate;\n/**\n * Formats the displayed value of the column without affecting the underlying data. Supports standard and custom formats for numbers and dates.\n * \n * References for [number](https://ej2.syncfusion.com/documentation/common/internationalization/#supported-format-string)\n * and [date](https://ej2.syncfusion.com/documentation/common/internationalization#date-formatting) formats. \n * \\@default null\n * \\@asptype string\n * @type {?}\n */\nStackedColumnDirective.prototype.format;\n/**\n * Allows for custom cell content formatting using an external method, executed prior to rendering.\n * \\@default null\n * @type {?}\n */\nStackedColumnDirective.prototype.formatter;\n/**\n * Determines which side (left, right, or center) the column should be frozen on.\n * \\@default Syncfusion.EJ2.Grids.FreezeDirection.None\n * \\@isenumeration true\n * \\@asptype Syncfusion.EJ2.Grids.FreezeDirection\n * @type {?}\n */\nStackedColumnDirective.prototype.freeze;\n/**\n * Specifies the text displayed in the column header. If omitted, the `field` value is used as the header text.\n * \\@default 'undefined'\n * @type {?}\n */\nStackedColumnDirective.prototype.headerText;\n/**\n * Aligns the text in the column header. By default, the alignment corresponds to other content alignments.\n * \\@default null\n * \\@aspdefaultvalueignore\n * \\@isenumeration true\n * \\@asptype Syncfusion.EJ2.Grids.TextAlign\n * @type {?}\n */\nStackedColumnDirective.prototype.headerTextAlign;\n/**\n * 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.\n * \\@default 'undefined'\n * @type {?}\n */\nStackedColumnDirective.prototype.hideAtMedia;\n/**\n * Allows the column to be frozen, keeping it stationary while scrolling horizontally through the grid.\n * \\@default false\n * @type {?}\n */\nStackedColumnDirective.prototype.isFrozen;\n/**\n * Identifies the column as an identity column in database terms, if set to `true`.\n * \\@default false\n * @type {?}\n */\nStackedColumnDirective.prototype.isIdentity;\n/**\n * Identifies the column as a primary key if set to `true`, enforcing uniqueness.\n * \\@default false\n * @type {?}\n */\nStackedColumnDirective.prototype.isPrimaryKey;\n/**\n * Prevents column reordering when set to true, locking the column into a set position.\n * \\@default false\n * @type {?}\n */\nStackedColumnDirective.prototype.lockColumn;\n/**\n * Defines the maximum allowable width of the column in pixels or as a percentage, preventing resizing beyond this limit.\n * \\@default 'undefined'\n * @type {?}\n */\nStackedColumnDirective.prototype.maxWidth;\n/**\n * Determines the minimum width of the column in pixels or percentage. This ensures the column does not shrink below this size.\n * \\@default 'undefined'\n * @type {?}\n */\nStackedColumnDirective.prototype.minWidth;\n/**\n * Displays checkboxes in the column when enabled, allowing for selections and certain operations.\n * \\@default false\n * @type {?}\n */\nStackedColumnDirective.prototype.showCheckbox;\n/**\n * Decides if the column menu should be available, providing options for column customization.\n * \\@default true\n * @type {?}\n */\nStackedColumnDirective.prototype.showColumnMenu;\n/**\n * Determines whether the column should appear in the Column Chooser. Set to false to exclude it.\n * \\@default true\n * @type {?}\n */\nStackedColumnDirective.prototype.showInColumnChooser;\n/**\n * Provides a custom sort comparer property to control how sorting is handled for this column's data.\n * \\@default 'undefined'\n * @type {?}\n */\nStackedColumnDirective.prototype.sortComparer;\n/**\n * Specifies the horizontal alignment for the column content and header. Options include alignment to the left, center, or right.\n * \\@default Syncfusion.EJ2.Grids.TextAlign.Left\n * \\@isenumeration true\n * \\@asptype Syncfusion.EJ2.Grids.TextAlign\n * @type {?}\n */\nStackedColumnDirective.prototype.textAlign;\n/**\n * Retrieves the unique identifier for the column. This UID is used internally to reference and manipulate the column.\n * \\@default 'undefined'\n * @type {?}\n */\nStackedColumnDirective.prototype.uid;\n/**\n * Establishes validation rules to ensure data integrity during creation and updates.\n * \\@default null\n * @type {?}\n */\nStackedColumnDirective.prototype.validationRules;\n/**\n * Applies custom cell values using an external function, allowing for dynamic display adjustments.\n * \\@default null\n * @type {?}\n */\nStackedColumnDirective.prototype.valueAccessor;\n/**\n * Toggles the visibility of the column. Set to false to hide the column from view. Columns are visible by default.\n * \\@default true\n * @type {?}\n */\nStackedColumnDirective.prototype.visible;\n/**\n * Sets the column's width in pixels or as a percentage. This defines how the column will occupy space in the grid.\n * \\@default 'undefined'\n * @type {?}\n */\nStackedColumnDirective.prototype.width;\n/**\n * Customizes the rendering of cell content using either a template string or HTML element ID.\n * \\@default null\n * \\@asptype string\n * @type {?}\n */\nStackedColumnDirective.prototype.template;\n/**\n * Customizes the header content with a template, defined as a string or an HTML element ID.\n * \\@default null\n * \\@asptype string\n * @type {?}\n */\nStackedColumnDirective.prototype.headerTemplate;\n/** @type {?} */\nStackedColumnDirective.prototype.filter_itemTemplate;\n/**\n * Specifies a custom template or UI for filtering within this column, utilizing either string templates or HTML element IDs.\n * \\@aspignore\n * @type {?}\n */\nStackedColumnDirective.prototype.filterTemplate;\n/** @type {?} */\nStackedColumnDirective.prototype.commandsTemplate;\n/**\n * Provides a template for editing cells in this column, supporting either a template string or an HTML element ID.\n * \\@aspignore\n * @type {?}\n */\nStackedColumnDirective.prototype.editTemplate;\n/** @type {?} */\nStackedColumnDirective.prototype.viewContainerRef;\n}\n\n/**\n * StackedColumn Array Directive\n */\nexport class StackedColumnsDirective extends ArrayBase<StackedColumnsDirective> {\nconstructor() {\n super('columns');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-treegrid>e-columns>e-column>e-stacked-columns',\n queries: {\n children: new ContentChildren(StackedColumnDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction StackedColumnsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nStackedColumnsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nStackedColumnsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\nimport { StackedColumnsDirective } from './stacked-column.directive';\n\nlet /** @type {?} */ input: string[] = ['allowEditing', 'allowFiltering', 'allowReordering', 'allowResizing', 'allowSorting', 'clipMode', 'columns', 'commands', 'customAttributes', 'defaultValue', 'disableHtmlEncode', 'displayAsCheckBox', 'edit', 'editTemplate', 'editType', 'field', 'filter', 'filterBarTemplate', 'filterTemplate', 'format', 'formatter', 'freeze', 'headerTemplate', 'headerText', 'headerTextAlign', 'hideAtMedia', 'isFrozen', 'isIdentity', 'isPrimaryKey', 'lockColumn', 'maxWidth', 'minWidth', 'showCheckbox', 'showColumnMenu', 'showInColumnChooser', 'sortComparer', 'template', 'textAlign', 'type', 'uid', 'validationRules', 'valueAccessor', 'visible', 'width'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-column` directive represent a column of the Angular TreeGrid. \n * It must be contained in a TreeGrid component(`ejs-treegrid`). \n * ```html\n * <ejs-treegrid [dataSource]='data' allowPaging='true' allowSorting='true'> \n * <e-columns>\n * <e-column field='ID' width='100'></e-column>\n * <e-column field='name' headerText='Name' width='100'></e-column>\n * </e-columns>\n * </ejs-treegrid>\n * ```\n */\nexport class ColumnDirective extends ComplexBase<ColumnDirective> {\npublic directivePropList: any;\npublic childColumns: any;\npublic tags: string[] = ['columns'];\n/**\n * Defines the type of data stored in the column, which may be string, number, date, or other types.\n * \\@default null\n */\npublic type: any;\n/**\n * Controls whether editing is permitted for the column. By default, all columns are editable.\n * \\@default true\n */\npublic allowEditing: any;\n/**\n * Controls whether the column supports filtering. If set to false, users cannot filter data by this column.\n * \\@default true\n */\npublic allowFiltering: any;\n/**\n * Enables or disables the reordering of this column via drag-and-drop. Allows for dynamic column adjustments.\n * \\@default true\n */\npublic allowReordering: any;\n/**\n * Determines if this column can be resized. If false, the column size is fixed.\n * \\@default true\n */\npublic allowResizing: any;\n/**\n * Specifies whether sorting is enabled for this column. Set to false to prevent sort actions.\n * \\@default true\n */\npublic allowSorting: any;\n/**\n * Determines how overflow content is handled within a cell. Options include: \n * * `Clip`: Truncates the content. \n * * `Ellipsis`: Shows ellipsis for overflow. \n * * `EllipsisWithTooltip`: Shows ellipsis and tooltip on hover.\n * \\@default Syncfusion.EJ2.Grids.ClipMode.Ellipsis\n * \\@isenumeration true\n * \\@asptype Syncfusion.EJ2.Grids.ClipMode\n */\npublic clipMode: any;\n/**\n * Allows for the creation of stacked headers by using multiple rows in the grid's header.\n * \\@default null\n */\npublic columns: any;\n/**\n * Provides built-in command button options for cells. Options include Edit, Delete, Save, and Cancel. \n * Custom command button implementations are possible.\n * \n * The following code example implements the custom command column.\n * ```html\n * <style type=\"text/css\" class=\"cssStyles\">\n * .details-icon:before\n * {\n * content:\"\\e74d\";\n * }\n * </style>\n * <div id=\"TreeGrid\"></div>\n * ```\n * ```typescript\n * var gridObj = new TreeGrid({\n * datasource: window.gridData,\n * columns : [\n * { field: 'CustomerID', headerText: 'Customer ID' },\n * { field: 'CustomerName', headerText: 'Customer Name' },\n * {commands: [{buttonOption:{content: 'Details', click: onClick, cssClass: details-icon}}], headerText: 'Customer Details'}\n * ]\n * gridObj.appendTo(\"#TreeGrid\");\n * ```\n * \n * \\@default null\n */\npublic commands: any;\n/**\n * Enables the addition of CSS styles and attributes for the content cells in a particular column.\n * \\@default null\n */\npublic customAttributes: any;\n/**\n * Sets default values when new records are added to the TreeGrid involving this column.\n * \\@default null\n */\npublic defaultValue: any;\n/**\n * If set to `true`, the HTML content within header and content cells is encoded to prevent injection attacks.\n * \\@default true\n */\npublic disableHtmlEncode: any;\n/**\n * Displays the column value as a checkbox instead of a Boolean value when set to `true`.\n * \\@default false\n */\npublic displayAsCheckBox: any;\n/**\n * Allows customizing the default edit cell through the `IEditCell` object for more control over editing.\n * \\@default {}\n */\npublic edit: any;\n/**\n * Specifies the component type used for editing cells within this column.\n * \\@default 'stringedit'\n */\npublic editType: any;\n/**\n * Specifies the field name in the data source to which the column is bound. This field is used for operations like sorting and filtering. \n * The field name must be a valid JavaScript identifier, beginning with a letter and avoiding spaces and special characters.\n * \\@default 'undefined'\n */\npublic field: any;\n/**\n * Customizes filter options for the column, enabling specialized filtering functionality.\n * \\@default null\n */\npublic filter: any;\n/**\n * Allows for a custom component within the filter bar, facilitating advanced filter interfaces. \n * Includes create and read functions for custom component management.\n * \n * ```html\n * <div id=\"TreeGrid\"></div>\n * ```\n * ```typescript\n * let gridObj: TreeGrid = new TreeGrid({\n * dataSource: filterData,\n * columns: [\n * { field: 'OrderID', headerText: 'Order ID' },\n * {\n * field: 'EmployeeID', filterBarTemplate: {\n * create: (args: { element: Element, column: Column }) => {\n * let input: HTMLInputElement = document.createElement('input');\n * input.id = 'EmployeeID';\n * input.type = 'text';\n * return input;\n * },\n * write: (args: { element: Element, column: Column }) => {\n * args.element.addEventListener('input', args.column.filterBarTemplate.read as EventListener);\n * },\n * read: (args: { element: HTMLInputElement, columnIndex: number, column: Column }) => {\n * gridObj.filterByColumn(args.element.id, 'equal', args.element.value);\n * }\n * }\n * }],\n * allowFiltering: true\n * });\n * gridObj.appendTo('#TreeGrid');\n * ```\n * \n * \\@default null\n */\npublic filterBarTemplate: any;\n/**\n * Formats the displayed value of the column without affecting the underlying data. Supports standard and custom formats for numbers and dates.\n * \n * References for [number](https://ej2.syncfusion.com/documentation/common/internationalization/#supported-format-string)\n * and [date](https://ej2.syncfusion.com/documentation/common/internationalization#date-formatting) formats. \n * \\@default null\n * \\@asptype string\n */\npublic format: any;\n/**\n * Allows for custom cell content formatting using an external method, executed prior to rendering.\n * \\@default null\n */\npublic formatter: any;\n/**\n * Determines which side (left, right, or center) the column should be frozen on.\n * \\@default Syncfusion.EJ2.Grids.FreezeDirection.None\n * \\@isenumeration true\n * \\@asptype Syncfusion.EJ2.Grids.FreezeDirection\n */\npublic freeze: any;\n/**\n * Specifies the text displayed in the column header. If omitted, the `field` value is used as the header text.\n * \\@default 'undefined'\n */\npublic headerText: any;\n/**\n * Aligns the text in the column header. By default, the alignment corresponds to other content alignments.\n * \\@default null\n * \\@aspdefaultvalueignore\n * \\@isenumeration true\n * \\@asptype Syncfusion.EJ2.Grids.TextAlign\n */\npublic headerTextAlign: any;\n/**\n * 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.\n * \\@default 'undefined'\n */\npublic hideAtMedia: any;\n/**\n * Allows the column to be frozen, keeping it stationary while scrolling horizontally through the grid.\n * \\@default false\n */\npublic isFrozen: any;\n/**\n * Identifies the column as an identity column in database terms, if set to `true`.\n * \\@default false\n */\npublic isIdentity: any;\n/**\n * Identifies the column as a primary key if set to `true`, enforcing uniqueness.\n * \\@default false\n */\npublic isPrimaryKey: any;\n/**\n * Prevents column reordering when set to true, locking the column into a set position.\n * \\@default false\n */\npublic lockColumn: any;\n/**\n * Defines the maximum allowable width of the column in pixels or as a percentage, preventing resizing beyond this limit.\n * \\@default 'undefined'\n */\npublic maxWidth: any;\n/**\n * Determines the minimum width of the column in pixels or percentage. This ensures the column does not shrink below this size.\n * \\@default 'undefined'\n */\npublic minWidth: any;\n/**\n * Displays checkboxes in the column when enabled, allowing for selections and certain operations.\n * \\@default false\n */\npublic showCheckbox: any;\n/**\n * Decides if the column menu should be available, providing options for column customization.\n * \\@default true\n */\npublic showColumnMenu: any;\n/**\n * Determines whether the column should appear in the Column Chooser. Set to false to exclude it.\n * \\@default true\n */\npublic showInColumnChooser: any;\n/**\n * Provides a custom sort comparer property to control how sorting is handled for this column's data.\n * \\@default 'undefined'\n */\npublic sortComparer: any;\n/**\n * Specifies the horizontal alignment for the column content and header. Options include alignment to the left, center, or right.\n * \\@default Syncfusion.EJ2.Grids.TextAlign.Left\n * \\@isenumeration true\n * \\@asptype Syncfusion.EJ2.Grids.TextAlign\n */\npublic textAlign: any;\n/**\n * Retrieves the unique identifier for the column. This UID is used internally to reference and manipulate the column.\n * \\@default 'undefined'\n */\npublic uid: any;\n/**\n * Establishes validation rules to ensure data integrity during creation and updates.\n * \\@default null\n */\npublic validationRules: any;\n/**\n * Applies custom cell values using an external function, allowing for dynamic display adjustments.\n * \\@default null\n */\npublic valueAccessor: any;\n/**\n * Toggles the visibility of the column. Set to false to hide the column from view. Columns are visible by default.\n * \\@default true\n */\npublic visible: any;\n/**\n * Sets the column's width in pixels or as a percentage. This defines how the column will occupy space in the grid.\n * \\@default 'undefined'\n */\npublic width: any;\n/**\n * Customizes the rendering of cell content using either a template string or HTML element ID.\n * \\@default null\n * \\@asptype string\n */\n@Template()\n public template: any;\n/**\n * Customizes the header content with a template, defined as a string or an HTML element ID.\n * \\@default null\n * \\@asptype string\n */\n@Template()\n public headerTemplate: any;\n \n @Template()\npublic filter_itemTemplate: any;\n/**\n * Specifies a custom template or UI for filtering within this column, utilizing either string templates or HTML element IDs.\n * \\@aspignore\n */\n@Template()\n public filterTemplate: any;\n \n @Template()\npublic commandsTemplate: any;\n/**\n * Provides a template for editing cells in this column, supporting either a template string or an HTML element ID.\n * \\@aspignore\n */\n@Template()\n public editTemplate: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-treegrid>e-columns>e-column',\n inputs: input,\n outputs: outputs, \n queries: {\n childColumns: new ContentChild(StackedColumnsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'template': [{ type: ContentChild, args: ['template', ] },],\n'headerTemplate': [{ type: ContentChild, args: ['headerTemplate', ] },],\n'filter_itemTemplate': [{ type: ContentChild, args: ['filterItemTemplate', ] },],\n'filterTemplate': [{ type: ContentChild, args: ['filterTemplate', ] },],\n'commandsTemplate': [{ type: ContentChild, args: ['commandsTemplate', ] },],\n'editTemplate': [{ type: ContentChild, args: ['editTemplate', ] },],\n};\n}\n\nfunction ColumnDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnDirective.ctorParameters;\n/** @type {?} */\nColumnDirective.propDecorators;\n/** @type {?} */\nColumnDirective.prototype.directivePropList;\n/** @type {?} */\nColumnDirective.prototype.childColumns;\n/** @type {?} */\nColumnDirective.prototype.tags;\n/**\n * Defines the type of data stored in the column, which may be string, number, date, or other types.\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.type;\n/**\n * Controls whether editing is permitted for the column. By default, all columns are editable.\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.allowEditing;\n/**\n * Controls whether the column supports filtering. If set to false, users cannot filter data by this column.\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.allowFiltering;\n/**\n * Enables or disables the reordering of this column via drag-and-drop. Allows for dynamic column adjustments.\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.allowReordering;\n/**\n * Determines if this column can be resized. If false, the column size is fixed.\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.allowResizing;\n/**\n * Specifies whether sorting is enabled for this column. Set to false to prevent sort actions.\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.allowSorting;\n/**\n * Determines how overflow content is handled within a cell. Options include: \n * * `Clip`: Truncates the content. \n * * `Ellipsis`: Shows ellipsis for overflow. \n * * `EllipsisWithTooltip`: Shows ellipsis and tooltip on hover.\n * \\@default Syncfusion.EJ2.Grids.ClipMode.Ellipsis\n * \\@isenumeration true\n * \\@asptype Syncfusion.EJ2.Grids.ClipMode\n * @type {?}\n */\nColumnDirective.prototype.clipMode;\n/**\n * Allows for the creation of stacked headers by using multiple rows in the grid's header.\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.columns;\n/**\n * Provides built-in command button options for cells. Options include Edit, Delete, Save, and Cancel. \n * Custom command button implementations are possible.\n * \n * The following code example implements the custom command column.\n * ```html\n * <style type=\"text/css\" class=\"cssStyles\">\n * .details-icon:before\n * {\n * content:\"\\e74d\";\n * }\n * </style>\n * <div id=\"TreeGrid\"></div>\n * ```\n * ```typescript\n * var gridObj = new TreeGrid({\n * datasource: window.gridData,\n * columns : [\n * { field: 'CustomerID', headerText: 'Customer ID' },\n * { field: 'CustomerName', headerText: 'Customer Name' },\n * {commands: [{buttonOption:{content: 'Details', click: onClick, cssClass: details-icon}}], headerText: 'Customer Details'}\n * ]\n * gridObj.appendTo(\"#TreeGrid\");\n * ```\n * \n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.commands;\n/**\n * Enables the addition of CSS styles and attributes for the content cells in a particular column.\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.customAttributes;\n/**\n * Sets default values when new records are added to the TreeGrid involving this column.\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.defaultValue;\n/**\n * If set to `true`, the HTML content within header and content cells is encoded to prevent injection attacks.\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.disableHtmlEncode;\n/**\n * Displays the column value as a checkbox instead of a Boolean value when set to `true`.\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.displayAsCheckBox;\n/**\n * Allows customizing the default edit cell through the `IEditCell` object for more control over editing.\n * \\@default {}\n * @type {?}\n */\nColumnDirective.prototype.edit;\n/**\n * Specifies the component type used for editing cells within this column.\n * \\@default 'stringedit'\n * @type {?}\n */\nColumnDirective.prototype.editType;\n/**\n * Specifies the field name in the data source to which the column is bound. This field is used for operations like sorting and filtering. \n * The field name must be a valid JavaScript identifier, beginning with a letter and avoiding spaces and special characters.\n * \\@default 'undefined'\n * @type {?}\n */\nColumnDirective.prototype.field;\n/**\n * Customizes filter options for the column, enabling specialized filtering functionality.\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.filter;\n/**\n * Allows for a custom component within the filter bar, facilitating advanced filter interfaces. \n * Includes create and read functions for custom component management.\n * \n * ```html\n * <div id=\"TreeGrid\"></div>\n * ```\n * ```typescript\n * let gridObj: TreeGrid = new TreeGrid({\n * dataSource: filterData,\n * columns: [\n * { field: 'OrderID', headerText: 'Order ID' },\n * {\n * field: 'EmployeeID', filterBarTemplate: {\n * create: (args: { element: Element, column: Column }) => {\n * let input: HTMLInputElement = document.createElement('input');\n * input.id = 'EmployeeID';\n * input.type = 'text';\n * return input;\n * },\n * write: (args: { element: Element, column: Column }) => {\n * args.element.addEventListener('input', args.column.filterBarTemplate.read as EventListener);\n * },\n * read: (args: { element: HTMLInputElement, columnIndex: number, column: Column }) => {\n * gridObj.filterByColumn(args.element.id, 'equal', args.element.value);\n * }\n * }\n * }],\n * allowFiltering: true\n * });\n * gridObj.appendTo('#TreeGrid');\n * ```\n * \n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.filterBarTemplate;\n/**\n * Formats the displayed value of the column without affecting the underlying data. Supports standard and custom formats for numbers and dates.\n * \n * References for [number](https://ej2.syncfusion.com/documentation/common/internationalization/#supported-format-string)\n * and [date](https://ej2.syncfusion.com/documentation/common/internationalization#date-formatting) formats. \n * \\@default null\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.format;\n/**\n * Allows for custom cell content formatting using an external method, executed prior to rendering.\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.formatter;\n/**\n * Determines which side (left, right, or center) the column should be frozen on.\n * \\@default Syncfusion.EJ2.Grids.FreezeDirection.None\n * \\@isenumeration true\n * \\@asptype Syncfusion.EJ2.Grids.FreezeDirection\n * @type {?}\n */\nColumnDirective.prototype.freeze;\n/**\n * Specifies the text displayed in the column header. If omitted, the `field` value is used as the header text.\n * \\@default 'undefined'\n * @type {?}\n */\nColumnDirective.prototype.headerText;\n/**\n * Aligns the text in the column header. By default, the alignment corresponds to other content alignments.\n * \\@default null\n * \\@aspdefaultvalueignore\n * \\@isenumeration true\n * \\@asptype Syncfusion.EJ2.Grids.TextAlign\n * @type {?}\n */\nColumnDirective.prototype.headerTextAlign;\n/**\n * 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.\n * \\@default 'undefined'\n * @type {?}\n */\nColumnDirective.prototype.hideAtMedia;\n/**\n * Allows the column to be frozen, keeping it stationary while scrolling horizontally through the grid.\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.isFrozen;\n/**\n * Identifies the column as an identity column in database terms, if set to `true`.\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.isIdentity;\n/**\n * Identifies the column as a primary key if set to `true`, enforcing uniqueness.\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.isPrimaryKey;\n/**\n * Prevents column reordering when set to true, locking the column into a set position.\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.lockColumn;\n/**\n * Defines the maximum allowable width of the column in pixels or as a percentage, preventing resizing beyond this limit.\n * \\@default 'undefined'\n * @type {?}\n */\nColumnDirective.prototype.maxWidth;\n/**\n * Determines the minimum width of the column in pixels or percentage. This ensures the column does not shrink below this size.\n * \\@default 'undefined'\n * @type {?}\n */\nColumnDirective.prototype.minWidth;\n/**\n * Displays checkboxes in the column when enabled, allowing for selections and certain operations.\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.showCheckbox;\n/**\n * Decides if the column menu should be available, providing options for column customization.\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.showColumnMenu;\n/**\n * Determines whether the column should appear in the Column Chooser. Set to false to exclude it.\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.showInColumnChooser;\n/**\n * Provides a custom sort comparer property to control how sorting is handled for this column's data.\n * \\@default 'undefined'\n * @type {?}\n */\nColumnDirective.prototype.sortComparer;\n/**\n * Specifies the horizontal alignment for the column content and header. Options include alignment to the left, center, or right.\n * \\@default Syncfusion.EJ2.Grids.TextAlign.Left\n * \\@isenumeration true\n * \\@asptype Syncfusion.EJ2.Grids.TextAlign\n * @type {?}\n */\nColumnDirective.prototype.textAlign;\n/**\n * Retrieves the unique identifier for the column. This UID is used internally to reference and manipulate the column.\n * \\@default 'undefined'\n * @type {?}\n */\nColumnDirective.prototype.uid;\n/**\n * Establishes validation rules to ensure data integrity during creation and updates.\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.validationRules;\n/**\n * Applies custom cell values using an external function, allowing for dynamic display adjustments.\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.valueAccessor;\n/**\n * Toggles the visibility of the column. Set to false to hide the column from view. Columns are visible by default.\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.visible;\n/**\n * Sets the column's width in pixels or as a percentage. This defines how the column will occupy space in the grid.\n * \\@default 'undefined'\n * @type {?}\n */\nColumnDirective.prototype.width;\n/**\n * Customizes the rendering of cell content using either a template string or HTML element ID.\n * \\@default null\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.template;\n/**\n * Customizes the header content with a template, defined as a string or an HTML element ID.\n * \\@default null\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.headerTemplate;\n/** @type {?} */\nColumnDirective.prototype.filter_itemTemplate;\n/**\n * Specifies a custom template or UI for filtering within this column, utilizing either string templates or HTML element IDs.\n * \\@aspignore\n * @type {?}\n */\nColumnDirective.prototype.filterTemplate;\n/** @type {?} */\nColumnDirective.prototype.commandsTemplate;\n/**\n * Provides a template for editing cells in this column, supporting either a template string or an HTML element ID.\n * \\@aspignore\n * @type {?}\n */\nColumnDirective.prototype.editTemplate;\n/** @type {?} */\nColumnDirective.prototype.viewContainerRef;\n}\n\n/**\n * Column Array Directive\n */\nexport class ColumnsDirective extends ArrayBase<ColumnsDirective> {\nconstructor() {\n super('columns');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-treegrid>e-columns',\n queries: {\n children: new ContentChildren(ColumnDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ColumnsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nlet /** @type {?} */ input: string[] = ['columnName', 'customAggregate', 'field', 'footerTemplate', 'format', 'type'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-aggregate->e-column` directive represent a aggregate column of the Angular TreeGrid. \n * ```html\n * <ejs-treegrid [dataSource]='data' allowPaging='true' allowSorting='true'> \n * <e-columns>\n * <e-column field='ID' width='100'></e-column>\n * <e-column field='name' headerText='Name' width='100'></e-column>\n * </e-columns>\n * <e-aggregates>\n * <e-aggregate>\n * <e-columns>\n * <e-column field='ID' type='Min'></e-column>\n * </e-columns>\n * </e-aggregate>\n * </e-aggregates>\n * </ejs-treegrid>\n * ```\n */\nexport class AggregateColumnDirective extends ComplexBase<AggregateColumnDirective> {\npublic directivePropList: any;\n/**\n * Defines the aggregate type(s) for a particular column. \n * To apply multiple aggregates to a single column, specify the `type` as an array. \n * Available aggregate types include: \n * * `sum`: Calculates the sum of all values in a column. \n * * `average`: Computes the average of the column values. \n * * `max`: Finds the maximum value in a column. \n * * `min`: Finds the minimum value in a column. \n * * `count`: Counts the number of records. \n * * `falsecount`: Counts the number of false values. \n * * `truecount`: Counts the number of true values. \n * * `custom`: Allows for a custom aggregate function.\n * \n * Use `custom` to specify a custom aggregation.\n * \n * \\@asptype string\n * \\@default null\n */\npublic type: any;\n/**\n * Specifies the column name to display the aggregate value. If not defined, the `field` name is used by default.\n * \\@default null\n */\npublic columnName: any;\n/**\n * Defines a custom function to calculate the aggregate value. The `type` must be set to `custom`. \n * Use the custom value as `${custom}` in templates. \n * * `Total aggregation`: The custom function is called with the entire dataset and the current `AggregateColumn` object. \n * * `Group aggregation`: It is called with the current group details and the `AggregateColumn` object.\n * \\@default null\n */\npublic customAggregate: any;\n/**\n * Specifies the column name on which to perform the aggregation.\n * \\@default null\n */\npublic field: any;\n/**\n * Specifies the format to be applied to the calculated aggregate value before display. \n * Supports both standard and custom formats for numbers and dates. \n * Refer to the Syncfusion documentation for [number](https://ej2.syncfusion.com/documentation/common/internationalization/#supported-format-string) \n * and [date](https://ej2.syncfusion.com/documentation/common/internationalization#date-formatting) formats.\n * \\@asptype string\n * \\@default null\n */\npublic format: any;\n/**\n * Defines a template for the footer cell of the aggregate column. \n * Use the aggregate `type` names within the template to access aggregate values.\n * \\@default null\n * \\@asptype string\n */\n@Template()\n public footerTemplate: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-treegrid>e-aggregates>e-aggregate>e-columns>e-column',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'footerTemplate': [{ type: ContentChild, args: ['footerTemplate', ] },],\n};\n}\n\nfunction AggregateColumnDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nAggregateColumnDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nAggregateColumnDirective.ctorParameters;\n/** @type {?} */\nAggregateColumnDirective.propDecorators;\n/** @type {?} */\nAggregateColumnDirective.prototype.directivePropList;\n/**\n * Defines the aggregate type(s) for a particular column. \n * To apply multiple aggregates to a single column, specify the `type` as an array. \n * Available aggregate types include: \n * * `sum`: Calculates the sum of all values in a column. \n * * `average`: Computes the average of the column values. \n * * `max`: Finds the maximum value in a column. \n * * `min`: Finds the minimum value in a column. \n * * `count`: Counts the number of records. \n * * `falsecount`: Counts the number of false values. \n * * `truecount`: Counts the number of true values. \n * * `custom`: Allows for a custom aggregate function.\n * \n * Use `custom` to specify a custom aggregation.\n * \n * \\@asptype string\n * \\@default null\n * @type {?}\n */\nAggregateColumnDirective.prototype.type;\n/**\n * Specifies the column name to display the aggregate value. If not defined, the `field` name is used by default.\n * \\@default null\n * @type {?}\n */\nAggregateColumnDirective.prototype.columnName;\n/**\n * Defines a custom function to calculate the aggregate value. The `type` must be set to `custom`. \n * Use the custom value as `${custom}` in templates. \n * * `Total aggregation`: The custom function is called with the entire dataset and the current `AggregateColumn` object. \n * * `Group aggregation`: It is called with the current group details and the `AggregateColumn` object.\n * \\@default null\n * @type {?}\n */\nAggregateColumnDirective.prototype.customAggregate;\n/**\n * Specifies the column name on which to perform the aggregation.\n * \\@default null\n * @type {?}\n */\nAggregateColumnDirective.prototype.field;\n/**\n * Specifies the format to be applied to the calculated aggregate value before display. \n * Supports both standard and custom formats for numbers and dates. \n * Refer to the Syncfusion documentation for [number](https://ej2.syncfusion.com/documentation/common/internationalization/#supported-format-string) \n * and [date](https://ej2.syncfusion.com/documentation/common/internationalization#date-formatting) formats.\n * \\@asptype string\n * \\@default null\n * @type {?}\n */\nAggregateColumnDirective.prototype.format;\n/**\n * Defines a template for the footer cell of the aggregate column. \n * Use the aggregate `type` names within the template to access aggregate values.\n * \\@default null\n * \\@asptype string\n * @type {?}\n */\nAggregateColumnDirective.prototype.footerTemplate;\n/** @type {?} */\nAggregateColumnDirective.prototype.viewContainerRef;\n}\n\n/**\n * AggregateColumn Array Directive\n */\nexport class AggregateColumnsDirective extends ArrayBase<AggregateColumnsDirective> {\nconstructor() {\n super('columns');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-treegrid>e-aggregates>e-aggregate>e-columns',\n queries: {\n children: new ContentChildren(AggregateColumnDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction AggregateColumnsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nAggregateColumnsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nAggregateColumnsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\nimport { AggregateColumnsDirective } from './aggregate-columns.directive';\n\nlet /** @type {?} */ input: string[] = ['columns', 'showChildSummary'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-aggregate` directive represent a aggregate row of the Angular TreeGrid. \n * It must be contained in a TreeGrid component(`ejs-treegrid`). \n * ```html\n * <ejs-treegrid [dataSource]='data' allowPaging='true' allowSorting='true'> \n * <e-columns>\n * <e-column field='ID' width='100'></e-column>\n * <e-column field='name' headerText='Name' width='100'></e-column>\n * </e-columns>\n * <e-aggregates>\n * <e-aggregate>\n * <e-columns>\n * <e-column field='ID' type='Min'></e-column>\n * </e-columns>\n * </e-aggregate>\n * </e-aggregates>\n * </ejs-treegrid>\n * ```\n */\nexport class AggregateDirective extends ComplexBase<AggregateDirective> {\npublic directivePropList: any;\npublic childColumns: any;\npublic tags: string[] = ['columns'];\n/**\n * Configures the collection of aggregate columns.\n * \\@default []\n */\npublic columns: any;\n/**\n * Determines whether to display child summaries for each parent row.\n */\npublic showChildSummary: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-treegrid>e-aggregates>e-aggregate',\n inputs: input,\n outputs: outputs, \n queries: {\n childColumns: new ContentChild(AggregateColumnsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\n}\n\nfunction AggregateDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nAggregateDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nAggregateDirective.ctorParameters;\n/** @type {?} */\nAggregateDirective.prototype.directivePropList;\n/** @type {?} */\nAggregateDirective.prototype.childColumns;\n/** @type {?} */\nAggregateDirective.prototype.tags;\n/**\n * Configures the collection of aggregate columns.\n * \\@default []\n * @type {?}\n */\nAggregateDirective.prototype.columns;\n/**\n * Determines whether to display child summaries for each parent row.\n * @type {?}\n */\nAggregateDirective.prototype.showChildSummary;\n/** @type {?} */\nAggregateDirective.prototype.viewContainerRef;\n}\n\n/**\n * Aggregate Array Directive\n */\nexport class AggregatesDirective extends ArrayBase<AggregatesDirective> {\nconstructor() {\n super('aggregates');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-treegrid>e-aggregates',\n queries: {\n children: new ContentChildren(AggregateDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction AggregatesDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nAggregatesDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nAggregatesDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider, ContentChild } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { TreeGrid } from '@syncfusion/ej2-treegrid';\nimport { Template } from '@syncfusion/ej2-angular-base';\nimport { ColumnsDirective } from './columns.directive';\nimport { AggregatesDirective } from './aggregates.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['aggregates','allowExcelExport','allowFiltering','allowMultiSorting','allowPaging','allowPdfExport','allowReordering','allowResizing','allowRowDragAndDrop','allowSelection','allowSorting','allowTextWrap','autoCheckHierarchy','childMapping','clipMode','columnMenuItems','columnQueryMode','columns','contextMenuItems','copyHierarchyMode','currencyCode','dataSource','detailTemplate','editSettings','enableAdaptiveUI','enableAltRow','enableAutoFill','enableCollapseAll','enableColumnVirtualization','enableHover','enableHtmlSanitizer','enableImmutableMode','enableInfiniteScrolling','enablePersistence','enableRtl','enableStickyHeader','enableVirtualMaskRow','enableVirtualization','expandStateMapping','filterSettings','frozenColumns','frozenRows','gridLines','hasChildMapping','height','idMapping','infiniteScrollSettings','loadChildOnDemand','loadingIndicator','locale','pageSettings','parentIdMapping','printMode','query','rowDropSettings','rowHeight','rowTemplate','searchSettings','selectedRowIndex','selectionSettings','showColumnChooser','showColumnMenu','sortSettings','textWrapSettings','toolbar','treeColumnIndex','width'];\nexport const /** @type {?} */ outputs: string[] = ['actionBegin','actionComplete','actionFailure','batchAdd','batchCancel','batchDelete','beforeBatchAdd','beforeBatchDelete','beforeBatchSave','beforeCopy','beforeDataBound','beforeExcelExport','beforePaste','beforePdfExport','beforePrint','beginEdit','cellDeselected','cellDeselecting','cellEdit','cellSave','cellSaved','cellSelected','cellSelecting','checkboxChange','collapsed','collapsing','columnDrag','columnDragStart','columnDrop','columnMenuClick','columnMenuOpen','contextMenuClick','contextMenuOpen','created','dataBound','dataSourceChanged','dataStateChange','detailDataBound','excelExportComplete','excelHeaderQueryCellInfo','excelQueryCellInfo','expanded','expanding','headerCellInfo','load','pdfExportComplete','pdfHeaderQueryCellInfo','pdfQueryCellInfo','printComplete','queryCellInfo','recordDoubleClick','resizeStart','resizeStop','resizing','rowDataBound','rowDeselected','rowDeselecting','rowDrag','rowDragStart','rowDragStartHelper','rowDrop','rowSelected','rowSelecting','toolbarClick','dataSourceChange'];\nexport const /** @type {?} */ twoWays: string[] = ['dataSource'];\n/**\n * `ejs-treegrid` represents the Angular TreeTreeGrid Component.\n * ```html\n * <ejs-treegrid [dataSource]='data' allowPaging='true' allowSorting='true'></ejs-treegrid>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class TreeGridComponent extends TreeGrid implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tbatchAdd: any;\n\tbatchCancel: any;\n\tbatchDelete: any;\n\tbeforeBatchAdd: any;\n\tbeforeBatchDelete: any;\n\tbeforeBatchSave: any;\n\tbeforeCopy: any;\n\tbeforeDataBound: any;\n\tbeforeExcelExport: any;\n\tbeforePaste: any;\n\tbeforePdfExport: any;\n\tbeforePrint: any;\n\tbeginEdit: any;\n\tcellDeselected: any;\n\tcellDeselecting: any;\n\tcellEdit: any;\n\tcellSave: any;\n\tcellSaved: any;\n\tcellSelected: any;\n\tcellSelecting: any;\n\tcheckboxChange: any;\n\tcollapsed: any;\n\tcollapsing: any;\n\tcolumnDrag: any;\n\tcolumnDragStart: any;\n\tcolumnDrop: any;\n\tcolumnMenuClick: any;\n\tcolumnMenuOpen: any;\n\tcontextMenuClick: any;\n\tcontextMenuOpen: any;\n\tcreated: any;\n\tdataBound: any;\n\tdataSourceChanged: any;\n\tdataStateChange: any;\n\tdetailDataBound: any;\n\texcelExportComplete: any;\n\texcelHeaderQueryCellInfo: any;\n\texcelQueryCellInfo: any;\n\texpanded: any;\n\texpanding: any;\n\theaderCellInfo: any;\n\tload: any;\n\tpdfExportComplete: any;\n\tpdfHeaderQueryCellInfo: any;\n\tpdfQueryCellInfo: any;\n\tprintComplete: any;\n\tqueryCellInfo: any;\n\trecordDoubleClick: any;\n\tresizeStart: any;\n\tresizeStop: any;\n\tresizing: any;\n\trowDataBound: any;\n\trowDeselected: any;\n\trowDeselecting: any;\n\trowDrag: any;\n\trowDragStart: any;\n\trowDragStartHelper: any;\n\trowDrop: any;\n\trowSelected: any;\n\trowSelecting: any;\n\ttoolbarClick: any;\npublic dataSourceChange: any;\npublic childColumns: QueryList<ColumnsDirective>;\npublic childAggregates: QueryList<AggregatesDirective>;\npublic tags: string[] = ['columns', 'aggregates'];\n \n @Template()\npublic toolbarTemplate: any;\n \n @Template()\npublic pagerTemplate: any;\n/**\n * The row template that renders customized rows from the given template. \n * By default, TreeGrid renders a table row for every data source item. \n * > * It accepts either [template string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals) \n * or HTML element ID. \n * > * The row template must be a table row.\n * \n * > Check the [Row Template](../../treegrid/row) customization.\n * \n * \\@asptype string\n */\n@Template()\n public rowTemplate: any;\n/**\n * The detail template allows you to show or hide additional information about a particular row.\n * \n * > It accepts either the [template string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals)\n * or the HTML element ID.\n * \n * \\@asptype string\n */\n@Template()\n public detailTemplate: any;\n \n @Template()\npublic editSettings_template: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('TreeGridFilter');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeGridPage');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeGridSort');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeGridReorder');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeGridToolbar');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeGridAggregate');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeGridResize');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeGridColumnMenu');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeGridExcelExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeGridPdfExport');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeGridCommandColumn');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeGridContextMenu');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeGridEdit');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeGridSelection');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeGridVirtualScroll');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeGridDetailRow');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeGridRowDD');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeGridFreeze');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeGridColumnChooser');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeGridLogger');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('TreeGridInfiniteScroll');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childColumns;\n if (this.childAggregates) {\n this.tagObjects[1].instance = /** @type {?} */(( this.childAggregates as any));\n }\n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-treegrid',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n childColumns: new ContentChild(ColumnsDirective), \n childAggregates: new ContentChild(AggregatesDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'toolbarTemplate': [{ type: ContentChild, args: ['toolbarTemplate', ] },],\n'pagerTemplate': [{ type: ContentChild, args: ['pagerTemplate', ] },],\n'rowTemplate': [{ type: ContentChild, args: ['rowTemplate', ] },],\n'detailTemplate': [{ type: ContentChild, args: ['detailTemplate', ] },],\n'editSettings_template': [{ type: ContentChild, args: ['editSettingsTemplate', ] },],\n};\n}\n\nfunction TreeGridComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nTreeGridComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nTreeGridComponent.ctorParameters;\n/** @type {?} */\nTreeGridComponent.propDecorators;\n/** @type {?} */\nTreeGridComponent.prototype.context;\n/** @type {?} */\nTreeGridComponent.prototype.tagObjects;\n/** @type {?} */\nTreeGridComponent.prototype.actionBegin;\n/** @type {?} */\nTreeGridComponent.prototype.actionComplete;\n/** @type {?} */\nTreeGridComponent.prototype.actionFailure;\n/** @type {?} */\nTreeGridComponent.prototype.batchAdd;\n/** @type {?} */\nTreeGridComponent.prototype.batchCancel;\n/** @type {?} */\nTreeGridComponent.prototype.batchDelete;\n/** @type {?} */\nTreeGridComponent.prototype.beforeBatchAdd;\n/** @type {?} */\nTreeGridComponent.prototype.beforeBatchDelete;\n/** @type {?} */\nTreeGridComponent.prototype.beforeBatchSave;\n/** @type {?} */\nTreeGridComponent.prototype.beforeCopy;\n/** @type {?} */\nTreeGridComponent.prototype.beforeDataBound;\n/** @type {?} */\nTreeGridComponent.prototype.beforeExcelExport;\n/** @type {?} */\nTreeGridComponent.prototype.beforePaste;\n/** @type {?} */\nTreeGridComponent.prototype.beforePdfExport;\n/** @type {?} */\nTreeGridComponent.prototype.beforePrint;\n/** @type {?} */\nTreeGridComponent.prototype.beginEdit;\n/** @type {?} */\nTreeGridComponent.prototype.cellDeselected;\n/** @type {?} */\nTreeGridComponent.prototype.cellDeselecting;\n/** @type {?} */\nTreeGridComponent.prototype.cellEdit;\n/** @type {?} */\nTreeGridComponent.prototype.cellSave;\n/** @type {?} */\nTreeGridComponent.prototype.cellSaved;\n/** @type {?} */\nTreeGridComponent.prototype.cellSelected;\n/** @type {?} */\nTreeGridComponent.prototype.cellSelecting;\n/** @type {?} */\nTreeGridComponent.prototype.checkboxChange;\n/** @type {?} */\nTreeGridComponent.prototype.collapsed;\n/** @type {?} */\nTreeGridComponent.prototype.collapsing;\n/** @type {?} */\nTreeGridComponent.prototype.columnDrag;\n/** @type {?} */\nTreeGridComponent.prototype.columnDragStart;\n/** @type {?} */\nTreeGridComponent.prototype.columnDrop;\n/** @type {?} */\nTreeGridComponent.prototype.columnMenuClick;\n/** @type {?} */\nTreeGridComponent.prototype.columnMenuOpen;\n/** @type {?} */\nTreeGridComponent.prototype.contextMenuClick;\n/** @type {?} */\nTreeGridComponent.prototype.contextMenuOpen;\n/** @type {?} */\nTreeGridComponent.prototype.created;\n/** @type {?} */\nTreeGridComponent.prototype.dataBound;\n/** @type {?} */\nTreeGridComponent.prototype.dataSourceChanged;\n/** @type {?} */\nTreeGridComponent.prototype.dataStateChange;\n/** @type {?} */\nTreeGridComponent.prototype.detailDataBound;\n/** @type {?} */\nTreeGridComponent.prototype.excelExportComplete;\n/** @type {?} */\nTreeGridComponent.prototype.excelHeaderQueryCellInfo;\n/** @type {?} */\nTreeGridComponent.prototype.excelQueryCellInfo;\n/** @type {?} */\nTreeGridComponent.prototype.expanded;\n/** @type {?} */\nTreeGridComponent.prototype.expanding;\n/** @type {?} */\nTreeGridComponent.prototype.headerCellInfo;\n/** @type {?} */\nTreeGridComponent.prototype.load;\n/** @type {?} */\nTreeGridComponent.prototype.pdfExportComplete;\n/** @type {?} */\nTreeGridComponent.prototype.pdfHeaderQueryCellInfo;\n/** @type {?} */\nTreeGridComponent.prototype.pdfQueryCellInfo;\n/** @type {?} */\nTreeGridComponent.prototype.printComplete;\n/** @type {?} */\nTreeGridComponent.prototype.queryCellInfo;\n/** @type {?} */\nTreeGridComponent.prototype.recordDoubleClick;\n/** @type {?} */\nTreeGridComponent.prototype.resizeStart;\n/** @type {?} */\nTreeGridComponent.prototype.resizeStop;\n/** @type {?} */\nTreeGridComponent.prototype.resizing;\n/** @type {?} */\nTreeGridComponent.prototype.rowDataBound;\n/** @type {?} */\nTreeGridComponent.prototype.rowDeselected;\n/** @type {?} */\nTreeGridComponent.prototype.rowDeselecting;\n/** @type {?} */\nTreeGridComponent.prototype.rowDrag;\n/** @type {?} */\nTreeGridComponent.prototype.rowDragStart;\n/** @type {?} */\nTreeGridComponent.prototype.rowDragStartHelper;\n/** @type {?} */\nTreeGridComponent.prototype.rowDrop;\n/** @type {?} */\nTreeGridComponent.prototype.rowSelected;\n/** @type {?} */\nTreeGridComponent.prototype.rowSelecting;\n/** @type {?} */\nTreeGridComponent.prototype.toolbarClick;\n/** @type {?} */\nTreeGridComponent.prototype.dataSourceChange;\n/** @type {?} */\nTreeGridComponent.prototype.childColumns;\n/** @type {?} */\nTreeGridComponent.prototype.childAggregates;\n/** @type {?} */\nTreeGridComponent.prototype.tags;\n/** @type {?} */\nTreeGridComponent.prototype.toolbarTemplate;\n/** @type {?} */\nTreeGridComponent.prototype.pagerTemplate;\n/**\n * The row template that renders customized rows from the given template. \n * By default, TreeGrid renders a table row for every data source item. \n * > * It accepts either [template string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals) \n * or HTML element ID. \n * > * The row template must be a table row.\n * \n * > Check the [Row Template](../../treegrid/row) customization.\n * \n * \\@asptype string\n * @type {?}\n */\nTreeGridComponent.prototype.rowTemplate;\n/**\n * The detail template allows you to show or hide additional information about a particular row.\n * \n * > It accepts either the [template string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals)\n * or the HTML element ID.\n * \n * \\@asptype string\n * @type {?}\n */\nTreeGridComponent.prototype.detailTemplate;\n/** @type {?} */\nTreeGridComponent.prototype.editSettings_template;\n/** @type {?} */\nTreeGridComponent.prototype.registerEvents;\n/** @type {?} */\nTreeGridComponent.prototype.addTwoWay;\n/** @type {?} */\nTreeGridComponent.prototype.ngEle;\n/** @type {?} */\nTreeGridComponent.prototype.srenderer;\n/** @type {?} */\nTreeGridComponent.prototype.viewContainerRef;\n/** @type {?} */\nTreeGridComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { StackedColumnDirective, StackedColumnsDirective } from './stacked-column.directive';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { AggregateColumnDirective, AggregateColumnsDirective } from './aggregate-columns.directive';\nimport { AggregateDirective, AggregatesDirective } from './aggregates.directive';\nimport { TreeGridComponent } from './treegrid.component';\n/**\n * NgModule definition for the TreeGrid component.\n */\nexport class TreeGridModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n TreeGridComponent,\n StackedColumnDirective,\n StackedColumnsDirective,\n ColumnDirective,\n ColumnsDirective,\n AggregateColumnDirective,\n AggregateColumnsDirective,\n AggregateDirective,\n AggregatesDirective\n ],\n exports: [\n TreeGridComponent,\n StackedColumnDirective,\n StackedColumnsDirective,\n ColumnDirective,\n ColumnsDirective,\n AggregateColumnDirective,\n AggregateColumnsDirective,\n AggregateDirective,\n AggregatesDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction TreeGridModule_tsickle_Closure_declarations() {\n/** @type {?} */\nTreeGridModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nTreeGridModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { StackedColumnDirective, StackedColumnsDirective } from './stacked-column.directive';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { AggregateColumnDirective, AggregateColumnsDirective } from './aggregate-columns.directive';\nimport { AggregateDirective, AggregatesDirective } from './aggregates.directive';\nimport { TreeGridComponent } from './treegrid.component';\nimport { TreeGridModule } from './treegrid.module';\nimport {Filter, Page, Sort, Reorder, Toolbar, Aggregate, Resize, ColumnMenu, ExcelExport, PdfExport, CommandColumn, ContextMenu, Edit, Selection, VirtualScroll, DetailRow, RowDD, Freeze, ColumnChooser, Logger, InfiniteScroll} from '@syncfusion/ej2-treegrid';\n\n\nexport const /** @type {?} */ FilterService: ValueProvider = { provide: 'TreeGridFilter', useValue: Filter};\nexport const /** @type {?} */ PageService: ValueProvider = { provide: 'TreeGridPage', useValue: Page};\nexport const /** @type {?} */ SortService: ValueProvider = { provide: 'TreeGridSort', useValue: Sort};\nexport const /** @type {?} */ ReorderService: ValueProvider = { provide: 'TreeGridReorder', useValue: Reorder};\nexport const /** @type {?} */ ToolbarService: ValueProvider = { provide: 'TreeGridToolbar', useValue: Toolbar};\nexport const /** @type {?} */ AggregateService: ValueProvider = { provide: 'TreeGridAggregate', useValue: Aggregate};\nexport const /** @type {?} */ ResizeService: ValueProvider = { provide: 'TreeGridResize', useValue: Resize};\nexport const /** @type {?} */ ColumnMenuService: ValueProvider = { provide: 'TreeGridColumnMenu', useValue: ColumnMenu};\nexport const /** @type {?} */ ExcelExportService: ValueProvider = { provide: 'TreeGridExcelExport', useValue: ExcelExport};\nexport const /** @type {?} */ PdfExportService: ValueProvider = { provide: 'TreeGridPdfExport', useValue: PdfExport};\nexport const /** @type {?} */ CommandColumnService: ValueProvider = { provide: 'TreeGridCommandColumn', useValue: CommandColumn};\nexport const /** @type {?} */ ContextMenuService: ValueProvider = { provide: 'TreeGridContextMenu', useValue: ContextMenu};\nexport const /** @type {?} */ EditService: ValueProvider = { provide: 'TreeGridEdit', useValue: Edit};\nexport const /** @type {?} */ SelectionService: ValueProvider = { provide: 'TreeGridSelection', useValue: Selection};\nexport const /** @type {?} */ VirtualScrollService: ValueProvider = { provide: 'TreeGridVirtualScroll', useValue: VirtualScroll};\nexport const /** @type {?} */ DetailRowService: ValueProvider = { provide: 'TreeGridDetailRow', useValue: DetailRow};\nexport const /** @type {?} */ RowDDService: ValueProvider = { provide: 'TreeGridRowDD', useValue: RowDD};\nexport const /** @type {?} */ FreezeService: ValueProvider = { provide: 'TreeGridFreeze', useValue: Freeze};\nexport const /** @type {?} */ ColumnChooserService: ValueProvider = { provide: 'TreeGridColumnChooser', useValue: ColumnChooser};\nexport const /** @type {?} */ LoggerService: ValueProvider = { provide: 'TreeGridLogger', useValue: Logger};\nexport const /** @type {?} */ InfiniteScrollService: ValueProvider = { provide: 'TreeGridInfiniteScroll', useValue: InfiniteScroll};\n/**\n * NgModule definition for the TreeGrid component with providers.\n */\nexport class TreeGridAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, TreeGridModule],\n exports: [\n TreeGridModule\n ],\n providers:[\n FilterService,\n PageService,\n SortService,\n ReorderService,\n ToolbarService,\n AggregateService,\n ResizeService,\n ColumnMenuService,\n ExcelExportService,\n PdfExportService,\n CommandColumnService,\n ContextMenuService,\n EditService,\n SelectionService,\n VirtualScrollService,\n DetailRowService,\n RowDDService,\n FreezeService,\n ColumnChooserService,\n LoggerService,\n InfiniteScrollService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction TreeGridAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nTreeGridAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nTreeGridAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["input","outputs","StackedColumnDirective","_super","viewContainerRef","_this","call","this","setValue","registerEvents","directivePropList","__extends","ComplexBase","decorators","type","Directive","args","selector","inputs","queries","ctorParameters","ViewContainerRef","propDecorators","template","ContentChild","headerTemplate","filter_itemTemplate","filterTemplate","commandsTemplate","editTemplate","__decorate","Template","prototype","StackedColumnsDirective","ArrayBase","children","ContentChildren","ColumnDirective","tags","childColumns","ColumnsDirective","AggregateColumnDirective","footerTemplate","AggregateColumnsDirective","AggregateDirective","AggregatesDirective","twoWays","exports","TreeGridComponent","ngEle","srenderer","injector","element","nativeElement","injectedModules","mod","get","indexOf","push","_a","_b","_c","_d","_e","_f","_g","_h","_j","_k","_l","_m","_o","_p","_q","_r","_s","_t","_u","_v","_w","addTwoWay","context","ComponentBase","ngOnInit","ngAfterViewInit","ngOnDestroy","ngAfterContentChecked","tagObjects","instance","childAggregates","TreeGrid","Component","changeDetection","ChangeDetectionStrategy","OnPush","ElementRef","Renderer2","Injector","toolbarTemplate","pagerTemplate","rowTemplate","detailTemplate","editSettings_template","ComponentMixins","__metadata","TreeGridModule","NgModule","imports","CommonModule","declarations","FilterService","provide","useValue","Filter","PageService","Page","SortService","Sort","ReorderService","Reorder","ToolbarService","Toolbar","AggregateService","Aggregate","ResizeService","Resize","ColumnMenuService","ColumnMenu","ExcelExportService","ExcelExport","PdfExportService","PdfExport","CommandColumnService","CommandColumn","ContextMenuService","ContextMenu","EditService","Edit","SelectionService","Selection","VirtualScrollService","VirtualScroll","DetailRowService","DetailRow","RowDDService","RowDD","FreezeService","Freeze","ColumnChooserService","ColumnChooser","LoggerService","Logger","InfiniteScrollService","InfiniteScroll","TreeGridAllModule","providers"],"mappings":"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"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"__symbolic":"module","version":3,"exports":[{"from":"@syncfusion/ej2-treegrid"}],"metadata":{"ɵa":["aggregates","allowExcelExport","allowFiltering","allowMultiSorting","allowPaging","allowPdfExport","allowReordering","allowResizing","allowRowDragAndDrop","allowSelection","allowSorting","allowTextWrap","autoCheckHierarchy","childMapping","clipMode","columnMenuItems","columnQueryMode","columns","contextMenuItems","copyHierarchyMode","currencyCode","dataSource","detailTemplate","editSettings","enableAdaptiveUI","enableAltRow","enableAutoFill","enableCollapseAll","enableColumnVirtualization","enableHover","enableHtmlSanitizer","enableImmutableMode","enableInfiniteScrolling","enablePersistence","enableRtl","enableStickyHeader","enableVirtualMaskRow","enableVirtualization","expandStateMapping","filterSettings","frozenColumns","frozenRows","gridLines","hasChildMapping","height","idMapping","infiniteScrollSettings","loadChildOnDemand","loadingIndicator","locale","pageSettings","parentIdMapping","printMode","query","rowDropSettings","rowHeight","rowTemplate","searchSettings","selectedRowIndex","selectionSettings","showColumnChooser","showColumnMenu","sortSettings","textWrapSettings","toolbar","treeColumnIndex","width"],"ɵb":["actionBegin","actionComplete","actionFailure","batchAdd","batchCancel","batchDelete","beforeBatchAdd","beforeBatchDelete","beforeBatchSave","beforeCopy","beforeDataBound","beforeExcelExport","beforePaste","beforePdfExport","beforePrint","beginEdit","cellDeselected","cellDeselecting","cellEdit","cellSave","cellSaved","cellSelected","cellSelecting","checkboxChange","collapsed","collapsing","columnDrag","columnDragStart","columnDrop","columnMenuClick","columnMenuOpen","contextMenuClick","contextMenuOpen","created","dataBound","dataSourceChanged","dataStateChange","detailDataBound","excelExportComplete","excelHeaderQueryCellInfo","excelQueryCellInfo","expanded","expanding","headerCellInfo","load","pdfExportComplete","pdfHeaderQueryCellInfo","pdfQueryCellInfo","printComplete","queryCellInfo","recordDoubleClick","resizeStart","resizeStop","resizing","rowDataBound","rowDeselected","rowDeselecting","rowDrag","rowDragStart","rowDragStartHelper","rowDrop","rowSelected","rowSelecting","toolbarClick","dataSourceChange"],"StackedColumnDirective":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComplexBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":"ejs-treegrid>e-columns>e-column>e-stacked-columns>e-stacked-column","inputs":["allowEditing","allowFiltering","allowReordering","allowResizing","allowSorting","clipMode","columns","commands","customAttributes","defaultValue","disableHtmlEncode","displayAsCheckBox","edit","editTemplate","editType","field","filter","filterBarTemplate","filterTemplate","format","formatter","freeze","headerTemplate","headerText","headerTextAlign","hideAtMedia","isFrozen","isIdentity","isPrimaryKey","lockColumn","maxWidth","minWidth","showCheckbox","showColumnMenu","showInColumnChooser","sortComparer","template","textAlign","type","uid","validationRules","valueAccessor","visible","width"],"outputs":[],"queries":{}}]}],"members":{"template":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["template"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"headerTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["headerTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"filter_itemTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["filterItemTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"filterTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["filterTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"commandsTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["commandsTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"editTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["editTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"}]}]}},"StackedColumnsDirective":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ArrayBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":"ejs-treegrid>e-columns>e-column>e-stacked-columns","queries":{"children":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChildren"},"arguments":[{"__symbolic":"reference","name":"StackedColumnDirective"}]}}}]}],"members":{"__ctor__":[{"__symbolic":"constructor"}]}},"ColumnDirective":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComplexBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":"ejs-treegrid>e-columns>e-column","inputs":["allowEditing","allowFiltering","allowReordering","allowResizing","allowSorting","clipMode","columns","commands","customAttributes","defaultValue","disableHtmlEncode","displayAsCheckBox","edit","editTemplate","editType","field","filter","filterBarTemplate","filterTemplate","format","formatter","freeze","headerTemplate","headerText","headerTextAlign","hideAtMedia","isFrozen","isIdentity","isPrimaryKey","lockColumn","maxWidth","minWidth","showCheckbox","showColumnMenu","showInColumnChooser","sortComparer","template","textAlign","type","uid","validationRules","valueAccessor","visible","width"],"outputs":[],"queries":{"childColumns":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":[{"__symbolic":"reference","name":"StackedColumnsDirective"}]}}}]}],"members":{"template":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["template"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"headerTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["headerTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"filter_itemTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["filterItemTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"filterTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["filterTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"commandsTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["commandsTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"editTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["editTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"}]}]}},"ColumnsDirective":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ArrayBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":"ejs-treegrid>e-columns","queries":{"children":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChildren"},"arguments":[{"__symbolic":"reference","name":"ColumnDirective"}]}}}]}],"members":{"__ctor__":[{"__symbolic":"constructor"}]}},"AggregateColumnDirective":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComplexBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":"ejs-treegrid>e-aggregates>e-aggregate>e-columns>e-column","inputs":["columnName","customAggregate","field","footerTemplate","format","type"],"outputs":[],"queries":{}}]}],"members":{"footerTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["footerTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"}]}]}},"AggregateColumnsDirective":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ArrayBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":"ejs-treegrid>e-aggregates>e-aggregate>e-columns","queries":{"children":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChildren"},"arguments":[{"__symbolic":"reference","name":"AggregateColumnDirective"}]}}}]}],"members":{"__ctor__":[{"__symbolic":"constructor"}]}},"AggregateDirective":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComplexBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":"ejs-treegrid>e-aggregates>e-aggregate","inputs":["columns","showChildSummary"],"outputs":[],"queries":{"childColumns":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":[{"__symbolic":"reference","name":"AggregateColumnsDirective"}]}}}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"}]}]}},"AggregatesDirective":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ArrayBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":"ejs-treegrid>e-aggregates","queries":{"children":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChildren"},"arguments":[{"__symbolic":"reference","name":"AggregateDirective"}]}}}]}],"members":{"__ctor__":[{"__symbolic":"constructor"}]}},"TreeGridComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-treegrid","name":"TreeGrid"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"ejs-treegrid","inputs":{"__symbolic":"reference","name":"ɵa"},"outputs":{"__symbolic":"reference","name":"ɵb"},"template":"","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy"},"member":"OnPush"},"queries":{"childColumns":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":[{"__symbolic":"reference","name":"ColumnsDirective"}]},"childAggregates":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":[{"__symbolic":"reference","name":"AggregatesDirective"}]}}}]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentMixins"},"arguments":[[{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentBase"}]]}],"members":{"toolbarTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["toolbarTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"pagerTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["pagerTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"rowTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["rowTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"detailTemplate":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["detailTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"editSettings_template":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["editSettingsTemplate"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2"},{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"ngAfterContentChecked":[{"__symbolic":"method"}]}},"TreeGridModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"TreeGridComponent"},{"__symbolic":"reference","name":"StackedColumnDirective"},{"__symbolic":"reference","name":"StackedColumnsDirective"},{"__symbolic":"reference","name":"ColumnDirective"},{"__symbolic":"reference","name":"ColumnsDirective"},{"__symbolic":"reference","name":"AggregateColumnDirective"},{"__symbolic":"reference","name":"AggregateColumnsDirective"},{"__symbolic":"reference","name":"AggregateDirective"},{"__symbolic":"reference","name":"AggregatesDirective"}],"exports":[{"__symbolic":"reference","name":"TreeGridComponent"},{"__symbolic":"reference","name":"StackedColumnDirective"},{"__symbolic":"reference","name":"StackedColumnsDirective"},{"__symbolic":"reference","name":"ColumnDirective"},{"__symbolic":"reference","name":"ColumnsDirective"},{"__symbolic":"reference","name":"AggregateColumnDirective"},{"__symbolic":"reference","name":"AggregateColumnsDirective"},{"__symbolic":"reference","name":"AggregateDirective"},{"__symbolic":"reference","name":"AggregatesDirective"}]}]}],"members":{}},"TreeGridAllModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"},{"__symbolic":"reference","name":"TreeGridModule"}],"exports":[{"__symbolic":"reference","name":"TreeGridModule"}],"providers":[{"__symbolic":"reference","name":"FilterService"},{"__symbolic":"reference","name":"PageService"},{"__symbolic":"reference","name":"SortService"},{"__symbolic":"reference","name":"ReorderService"},{"__symbolic":"reference","name":"ToolbarService"},{"__symbolic":"reference","name":"AggregateService"},{"__symbolic":"reference","name":"ResizeService"},{"__symbolic":"reference","name":"ColumnMenuService"},{"__symbolic":"reference","name":"ExcelExportService"},{"__symbolic":"reference","name":"PdfExportService"},{"__symbolic":"reference","name":"CommandColumnService"},{"__symbolic":"reference","name":"ContextMenuService"},{"__symbolic":"reference","name":"EditService"},{"__symbolic":"reference","name":"SelectionService"},{"__symbolic":"reference","name":"VirtualScrollService"},{"__symbolic":"reference","name":"DetailRowService"},{"__symbolic":"reference","name":"RowDDService"},{"__symbolic":"reference","name":"FreezeService"},{"__symbolic":"reference","name":"ColumnChooserService"},{"__symbolic":"reference","name":"LoggerService"},{"__symbolic":"reference","name":"InfiniteScrollService"}]}]}],"members":{}},"FilterService":{"provide":"TreeGridFilter","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treegrid","name":"Filter"}},"PageService":{"provide":"TreeGridPage","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treegrid","name":"Page"}},"SortService":{"provide":"TreeGridSort","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treegrid","name":"Sort"}},"ReorderService":{"provide":"TreeGridReorder","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treegrid","name":"Reorder"}},"ToolbarService":{"provide":"TreeGridToolbar","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treegrid","name":"Toolbar"}},"AggregateService":{"provide":"TreeGridAggregate","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treegrid","name":"Aggregate"}},"ResizeService":{"provide":"TreeGridResize","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treegrid","name":"Resize"}},"ColumnMenuService":{"provide":"TreeGridColumnMenu","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treegrid","name":"ColumnMenu"}},"ExcelExportService":{"provide":"TreeGridExcelExport","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treegrid","name":"ExcelExport"}},"PdfExportService":{"provide":"TreeGridPdfExport","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treegrid","name":"PdfExport"}},"CommandColumnService":{"provide":"TreeGridCommandColumn","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treegrid","name":"CommandColumn"}},"ContextMenuService":{"provide":"TreeGridContextMenu","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treegrid","name":"ContextMenu"}},"EditService":{"provide":"TreeGridEdit","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treegrid","name":"Edit"}},"SelectionService":{"provide":"TreeGridSelection","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treegrid","name":"Selection"}},"VirtualScrollService":{"provide":"TreeGridVirtualScroll","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treegrid","name":"VirtualScroll"}},"DetailRowService":{"provide":"TreeGridDetailRow","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treegrid","name":"DetailRow"}},"RowDDService":{"provide":"TreeGridRowDD","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treegrid","name":"RowDD"}},"FreezeService":{"provide":"TreeGridFreeze","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treegrid","name":"Freeze"}},"ColumnChooserService":{"provide":"TreeGridColumnChooser","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treegrid","name":"ColumnChooser"}},"LoggerService":{"provide":"TreeGridLogger","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treegrid","name":"Logger"}},"InfiniteScrollService":{"provide":"TreeGridInfiniteScroll","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-treegrid","name":"InfiniteScroll"}}},"origins":{"ɵa":"./src/treegrid/treegrid.component","ɵb":"./src/treegrid/treegrid.component","StackedColumnDirective":"./src/treegrid/stacked-column.directive","StackedColumnsDirective":"./src/treegrid/stacked-column.directive","ColumnDirective":"./src/treegrid/columns.directive","ColumnsDirective":"./src/treegrid/columns.directive","AggregateColumnDirective":"./src/treegrid/aggregate-columns.directive","AggregateColumnsDirective":"./src/treegrid/aggregate-columns.directive","AggregateDirective":"./src/treegrid/aggregates.directive","AggregatesDirective":"./src/treegrid/aggregates.directive","TreeGridComponent":"./src/treegrid/treegrid.component","TreeGridModule":"./src/treegrid/treegrid.module","TreeGridAllModule":"./src/treegrid/treegrid-all.module","FilterService":"./src/treegrid/treegrid-all.module","PageService":"./src/treegrid/treegrid-all.module","SortService":"./src/treegrid/treegrid-all.module","ReorderService":"./src/treegrid/treegrid-all.module","ToolbarService":"./src/treegrid/treegrid-all.module","AggregateService":"./src/treegrid/treegrid-all.module","ResizeService":"./src/treegrid/treegrid-all.module","ColumnMenuService":"./src/treegrid/treegrid-all.module","ExcelExportService":"./src/treegrid/treegrid-all.module","PdfExportService":"./src/treegrid/treegrid-all.module","CommandColumnService":"./src/treegrid/treegrid-all.module","ContextMenuService":"./src/treegrid/treegrid-all.module","EditService":"./src/treegrid/treegrid-all.module","SelectionService":"./src/treegrid/treegrid-all.module","VirtualScrollService":"./src/treegrid/treegrid-all.module","DetailRowService":"./src/treegrid/treegrid-all.module","RowDDService":"./src/treegrid/treegrid-all.module","FreezeService":"./src/treegrid/treegrid-all.module","ColumnChooserService":"./src/treegrid/treegrid-all.module","LoggerService":"./src/treegrid/treegrid-all.module","InfiniteScrollService":"./src/treegrid/treegrid-all.module"},"importAs":"@syncfusion/ej2-angular-treegrid"}
|
package/license
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
Essential JS 2 library is available under the Syncfusion Essential Studio program, and can be licensed either under the Syncfusion Community License Program or the Syncfusion commercial license.
|
2
|
+
|
3
|
+
To be qualified for the Syncfusion Community License Program you must have a gross revenue of less than one (1) million U.S. dollars ($1,000,000.00 USD) per year and have less than five (5) developers in your organization, and agree to be bound by Syncfusion’s terms and conditions.
|
4
|
+
|
5
|
+
Customers who do not qualify for the community license can contact sales@syncfusion.com for commercial licensing options.
|
6
|
+
|
7
|
+
Under no circumstances can you use this product without (1) either a Community License or a commercial license and (2) without agreeing and abiding by Syncfusion’s license containing all terms and conditions.
|
8
|
+
|
9
|
+
The Syncfusion license that contains the terms and conditions can be found at
|
10
|
+
https://www.syncfusion.com/content/downloads/syncfusion_license.pdf
|
package/package.json
CHANGED
@@ -1,15 +1,45 @@
|
|
1
1
|
{
|
2
|
-
"
|
3
|
-
"
|
4
|
-
"
|
5
|
-
"
|
6
|
-
"
|
7
|
-
"
|
2
|
+
"_from": "@syncfusion/ej2-angular-treegrid@*",
|
3
|
+
"_id": "@syncfusion/ej2-angular-treegrid@20.13.0",
|
4
|
+
"_inBundle": false,
|
5
|
+
"_integrity": "sha512-SRem2HzJAmC9Mgr9rgPz5E6fS3y61pDTC49n+VeUF7bSIiCxYB56Ytg/3YgCA5EkIdv/1FVuA3LclNgfAFr04A==",
|
6
|
+
"_location": "/@syncfusion/ej2-angular-treegrid",
|
7
|
+
"_phantomChildren": {},
|
8
|
+
"_requested": {
|
9
|
+
"type": "range",
|
10
|
+
"registry": true,
|
11
|
+
"raw": "@syncfusion/ej2-angular-treegrid@*",
|
12
|
+
"name": "@syncfusion/ej2-angular-treegrid",
|
13
|
+
"escapedName": "@syncfusion%2fej2-angular-treegrid",
|
14
|
+
"scope": "@syncfusion",
|
15
|
+
"rawSpec": "*",
|
16
|
+
"saveSpec": null,
|
17
|
+
"fetchSpec": "*"
|
18
|
+
},
|
19
|
+
"_requiredBy": [
|
20
|
+
"/"
|
21
|
+
],
|
22
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-development/@syncfusion/ej2-angular-treegrid/-/ej2-angular-treegrid-20.13.0.tgz",
|
23
|
+
"_shasum": "0e416bdbd0b2284d30ea49140e279b116214c6fb",
|
24
|
+
"_spec": "@syncfusion/ej2-angular-treegrid@*",
|
25
|
+
"_where": "D:\\SF3992\\WFH\\Nexus\\ej2-nexus-branch-switching-dev\\release",
|
26
|
+
"author": {
|
27
|
+
"name": "Syncfusion Inc."
|
28
|
+
},
|
29
|
+
"bugs": {
|
30
|
+
"url": "https://github.com/syncfusion/ej2-angular-ui-components/issues"
|
31
|
+
},
|
32
|
+
"bundleDependencies": false,
|
8
33
|
"dependencies": {
|
9
|
-
"@syncfusion/ej2-base": "~30.1.37",
|
10
34
|
"@syncfusion/ej2-angular-base": "~30.1.37",
|
11
|
-
"@syncfusion/ej2-
|
35
|
+
"@syncfusion/ej2-base": "~30.1.38",
|
36
|
+
"@syncfusion/ej2-treegrid": "30.1.38"
|
12
37
|
},
|
38
|
+
"deprecated": false,
|
39
|
+
"description": "Essential JS 2 TreeGrid Component for Angular",
|
40
|
+
"devDependencies": {},
|
41
|
+
"es2015": "@syncfusion/ej2-angular-treegrid.js",
|
42
|
+
"homepage": "https://www.syncfusion.com/angular-components",
|
13
43
|
"keywords": [
|
14
44
|
"angular",
|
15
45
|
"angular-treegrid",
|
@@ -30,29 +60,17 @@
|
|
30
60
|
"collapsible-table",
|
31
61
|
"multi-level-table"
|
32
62
|
],
|
63
|
+
"license": "SEE LICENSE IN license",
|
64
|
+
"main": "dist/ej2-angular-treegrid.umd.js",
|
65
|
+
"metadata": "ej2-angular-treegrid.metadata.json",
|
66
|
+
"module": "@syncfusion/ej2-angular-treegrid.es5.js",
|
67
|
+
"name": "@syncfusion/ej2-angular-treegrid",
|
33
68
|
"repository": {
|
34
69
|
"type": "git",
|
35
|
-
"url": "https://github.com/syncfusion/ej2-angular-ui-components.git"
|
70
|
+
"url": "git+https://github.com/syncfusion/ej2-angular-ui-components.git"
|
36
71
|
},
|
72
|
+
"schematics": "./schematics/collection.json",
|
37
73
|
"sideEffects": false,
|
38
|
-
"
|
39
|
-
"
|
40
|
-
"esm2020": "esm2020/syncfusion-ej2-angular-treegrid.mjs",
|
41
|
-
"fesm2020": "fesm2020/syncfusion-ej2-angular-treegrid.mjs",
|
42
|
-
"fesm2015": "fesm2015/syncfusion-ej2-angular-treegrid.mjs",
|
43
|
-
"typings": "syncfusion-ej2-angular-treegrid.d.ts",
|
44
|
-
"exports": {
|
45
|
-
"./package.json": {
|
46
|
-
"default": "./package.json"
|
47
|
-
},
|
48
|
-
".": {
|
49
|
-
"types": "./syncfusion-ej2-angular-treegrid.d.ts",
|
50
|
-
"esm2020": "./esm2020/syncfusion-ej2-angular-treegrid.mjs",
|
51
|
-
"es2020": "./fesm2020/syncfusion-ej2-angular-treegrid.mjs",
|
52
|
-
"es2015": "./fesm2015/syncfusion-ej2-angular-treegrid.mjs",
|
53
|
-
"node": "./fesm2015/syncfusion-ej2-angular-treegrid.mjs",
|
54
|
-
"default": "./fesm2020/syncfusion-ej2-angular-treegrid.mjs"
|
55
|
-
}
|
56
|
-
},
|
57
|
-
"homepage": "https://www.syncfusion.com/angular-components"
|
74
|
+
"typings": "ej2-angular-treegrid.d.ts",
|
75
|
+
"version": "30.1.38-ngcc"
|
58
76
|
}
|
@@ -1,4 +1,4 @@
|
|
1
1
|
export declare const pkgName = "@syncfusion/ej2-angular-treegrid";
|
2
|
-
export declare const pkgVer = "^20.
|
2
|
+
export declare const pkgVer = "^20.13.0";
|
3
3
|
export declare const moduleName = "TreeGridModule";
|
4
|
-
export declare const themeVer = "~20.
|
4
|
+
export declare const themeVer = "~20.13.0";
|
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.pkgName = '@syncfusion/ej2-angular-treegrid';
|
4
|
-
exports.pkgVer = '^30.1.
|
4
|
+
exports.pkgVer = '^30.1.38';
|
5
5
|
exports.moduleName = 'TreeGridModule';
|
6
|
-
exports.themeVer = '~30.1.
|
6
|
+
exports.themeVer = '~30.1.38';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
export const pkgName = '@syncfusion/ej2-angular-treegrid';
|
2
|
-
export const pkgVer = '^30.1.
|
3
|
-
export const moduleName = 'TreeGridModule';
|
4
|
-
export const themeVer = '~30.1.
|
1
|
+
export const pkgName = '@syncfusion/ej2-angular-treegrid';
|
2
|
+
export const pkgVer = '^30.1.38';
|
3
|
+
export const moduleName = 'TreeGridModule';
|
4
|
+
export const themeVer = '~30.1.38';
|
@@ -1,6 +1,5 @@
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
3
|
-
import * as i0 from "@angular/core";
|
4
3
|
/**
|
5
4
|
* `e-aggregate->e-column` directive represent a aggregate column of the Angular TreeGrid.
|
6
5
|
* ```html
|
@@ -77,8 +76,6 @@ export declare class AggregateColumnDirective extends ComplexBase<AggregateColum
|
|
77
76
|
*/
|
78
77
|
footerTemplate: any;
|
79
78
|
constructor(viewContainerRef: ViewContainerRef);
|
80
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AggregateColumnDirective, never>;
|
81
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AggregateColumnDirective, "ejs-treegrid>e-aggregates>e-aggregate>e-columns>e-column", never, { "columnName": "columnName"; "customAggregate": "customAggregate"; "field": "field"; "footerTemplate": "footerTemplate"; "format": "format"; "type": "type"; }, {}, ["footerTemplate"]>;
|
82
79
|
}
|
83
80
|
/**
|
84
81
|
* AggregateColumn Array Directive
|
@@ -86,6 +83,4 @@ export declare class AggregateColumnDirective extends ComplexBase<AggregateColum
|
|
86
83
|
*/
|
87
84
|
export declare class AggregateColumnsDirective extends ArrayBase<AggregateColumnsDirective> {
|
88
85
|
constructor();
|
89
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AggregateColumnsDirective, never>;
|
90
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AggregateColumnsDirective, "ejs-treegrid>e-aggregates>e-aggregate>e-columns", never, {}, {}, ["children"]>;
|
91
86
|
}
|
@@ -1,6 +1,5 @@
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
3
|
-
import * as i0 from "@angular/core";
|
4
3
|
/**
|
5
4
|
* `e-aggregate` directive represent a aggregate row of the Angular TreeGrid.
|
6
5
|
* It must be contained in a TreeGrid component(`ejs-treegrid`).
|
@@ -35,8 +34,6 @@ export declare class AggregateDirective extends ComplexBase<AggregateDirective>
|
|
35
34
|
*/
|
36
35
|
showChildSummary: any;
|
37
36
|
constructor(viewContainerRef: ViewContainerRef);
|
38
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AggregateDirective, never>;
|
39
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AggregateDirective, "ejs-treegrid>e-aggregates>e-aggregate", never, { "columns": "columns"; "showChildSummary": "showChildSummary"; }, {}, ["childColumns"]>;
|
40
37
|
}
|
41
38
|
/**
|
42
39
|
* Aggregate Array Directive
|
@@ -44,6 +41,4 @@ export declare class AggregateDirective extends ComplexBase<AggregateDirective>
|
|
44
41
|
*/
|
45
42
|
export declare class AggregatesDirective extends ArrayBase<AggregatesDirective> {
|
46
43
|
constructor();
|
47
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AggregatesDirective, never>;
|
48
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AggregatesDirective, "ejs-treegrid>e-aggregates", never, {}, {}, ["children"]>;
|
49
44
|
}
|
@@ -1,6 +1,5 @@
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
3
|
-
import * as i0 from "@angular/core";
|
4
3
|
/**
|
5
4
|
* `e-column` directive represent a column of the Angular TreeGrid.
|
6
5
|
* It must be contained in a TreeGrid component(`ejs-treegrid`).
|
@@ -314,8 +313,6 @@ export declare class ColumnDirective extends ComplexBase<ColumnDirective> {
|
|
314
313
|
*/
|
315
314
|
editTemplate: any;
|
316
315
|
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
316
|
}
|
320
317
|
/**
|
321
318
|
* Column Array Directive
|
@@ -323,6 +320,4 @@ export declare class ColumnDirective extends ComplexBase<ColumnDirective> {
|
|
323
320
|
*/
|
324
321
|
export declare class ColumnsDirective extends ArrayBase<ColumnsDirective> {
|
325
322
|
constructor();
|
326
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnsDirective, never>;
|
327
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnsDirective, "ejs-treegrid>e-columns", never, {}, {}, ["children"]>;
|
328
323
|
}
|
@@ -1,6 +1,5 @@
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
3
|
-
import * as i0 from "@angular/core";
|
4
3
|
/**
|
5
4
|
* `e-stacked-column` directive represent the stacked column of the Angular TreeGrid.
|
6
5
|
* It must be contained in a StackedColumns component(`e-stacked-columns`).
|
@@ -316,8 +315,6 @@ export declare class StackedColumnDirective extends ComplexBase<StackedColumnDir
|
|
316
315
|
*/
|
317
316
|
editTemplate: any;
|
318
317
|
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
318
|
}
|
322
319
|
/**
|
323
320
|
* StackedColumn Array Directive
|
@@ -325,6 +322,4 @@ export declare class StackedColumnDirective extends ComplexBase<StackedColumnDir
|
|
325
322
|
*/
|
326
323
|
export declare class StackedColumnsDirective extends ArrayBase<StackedColumnsDirective> {
|
327
324
|
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
325
|
}
|