@syncfusion/ej2-vue-treegrid 22.2.9 → 23.1.36
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/CHANGELOG.md +16 -54
- package/dist/ej2-vue-treegrid.umd.min.js +2 -2
- package/dist/ej2-vue-treegrid.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-treegrid.es2015.js +10 -1
- package/dist/es6/ej2-vue-treegrid.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-treegrid.es5.js +10 -1
- package/dist/es6/ej2-vue-treegrid.es5.js.map +1 -1
- package/dist/global/ej2-vue-treegrid.min.js +2 -2
- package/package.json +9 -9
- package/src/treegrid/aggregate-columns.directive.d.ts +3 -1
- package/src/treegrid/aggregates.directive.d.ts +3 -1
- package/src/treegrid/columns.directive.d.ts +3 -1
- package/src/treegrid/stacked-column.directive.d.ts +3 -1
- package/src/treegrid/treegrid.component.d.ts +3 -1
- package/src/treegrid/treegrid.component.js +10 -1
- package/styles/material-dark.css +0 -1
- package/styles/material.css +0 -1
- package/styles/material3-dark.css +0 -1
- package/styles/material3.css +0 -1
- package/styles/tailwind-dark.css +0 -1
- package/styles/tailwind.css +0 -1
- package/styles/treegrid/material-dark.css +0 -1
- package/styles/treegrid/material.css +0 -1
- package/styles/treegrid/material3-dark.css +0 -1
- package/styles/treegrid/material3-dark.scss +1 -1
- package/styles/treegrid/material3.css +0 -1
- package/styles/treegrid/material3.scss +1 -1
- package/styles/treegrid/tailwind-dark.css +0 -1
- package/styles/treegrid/tailwind.css +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,52 +2,30 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
## 22.2.7 (2023-08-02)
|
|
6
|
-
|
|
7
5
|
### Tree Grid
|
|
8
6
|
|
|
9
|
-
####
|
|
10
|
-
|
|
11
|
-
- `#I483217` - Fixed an issue where the column template was not functioning correctly when the `getpersistdata` method was used.
|
|
12
|
-
|
|
13
|
-
## 22.1.39 (2023-07-18)
|
|
14
|
-
|
|
15
|
-
### Tree Grid
|
|
16
|
-
|
|
17
|
-
#### Bug fixes
|
|
18
|
-
|
|
19
|
-
- `#I478636`, `#F183159` - Fixed the issue where an unwanted tooltip was being displayed in the checkbox column feature.
|
|
20
|
-
|
|
21
|
-
## 22.1.38 (2023-07-11)
|
|
22
|
-
|
|
23
|
-
### Tree Grid
|
|
24
|
-
|
|
25
|
-
#### Bug fixes
|
|
26
|
-
|
|
27
|
-
- `#I471838` - Fixed a bug in the virtualization feature that caused a white space issue when changing the page size using the `databound` event.
|
|
28
|
-
- `#I459187` - Fixed an issue where a white space would occur when deleting a parent record in virtualization.
|
|
29
|
-
- `#F182900` - Fixed the issue where the newly added form was placed incorrectly when selecting two records and performing an add action.
|
|
30
|
-
|
|
31
|
-
## 22.1.37 (2023-07-04)
|
|
32
|
-
|
|
33
|
-
### Tree Grid
|
|
34
|
-
|
|
35
|
-
#### Bug fixes
|
|
7
|
+
#### Features
|
|
36
8
|
|
|
37
|
-
- `#
|
|
38
|
-
-
|
|
9
|
+
- `#I341079` - Provided support for exporting data to PDF, CSV, and Excel formats using server-side functionality. Please find the demo [here](https://ej2.syncfusion.com/aspnetcore/TreeGrid/ServerSideExporting#/material3).
|
|
10
|
+
- Added support for the new `fixed` mode within the `freeze` property of column settings. When a column is set as `fixed`, it will stay within the viewport during horizontal scrolling, enhancing the user experience with improved visibility and efficiency.
|
|
39
11
|
|
|
40
|
-
|
|
12
|
+
- Provided support for inline editing with virtualization enabled. Please find the demo [here](https://ej2.syncfusion.com/vue/demos/#/bootstrap5/tree-grid/virtual-scrolling.html).
|
|
13
|
+
- `#I323425`, `#I332700`, `#I344742`, `#I375307` - Provided support for frozen column with virtualization enabled.
|
|
41
14
|
|
|
42
|
-
|
|
15
|
+
#### Breaking changes
|
|
43
16
|
|
|
44
|
-
|
|
17
|
+
- Optimized the frozen columns feature in Tree Grid and thus changed the dom structure of tree grid from two table to single table architecture. Also, the following methods have been deprecated, and it's recommended to use the following alternatives instead.
|
|
45
18
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
19
|
+
| Deprecated Methods | Previous | Current | Suggested Alternative Methods |
|
|
20
|
+
|---|---|---|---|
|
|
21
|
+
| | `getMoavableRows` | This method returns only the movable table rows `(tr's)`. | This method will return all table rows `(tr's)` of the entire table. The movable cells within the tr element can be selected using the `e-unfreeze` class. | `getRows()` | |
|
|
22
|
+
| `getFrozenRightRows()` | This method returns only the table rows `(tr's)` from the freeze right table. | This method will return all the rows `(tr’s)` of the entire table. The frozen right cells can be selected using the `e-rightfreeze` class. | `getRows()` |
|
|
23
|
+
| `getMovableRowByIndex()` <br> `getFrozenRightRowByIndex()` | * `getMovableRowByIndex` - select a movable row <br> *`getFrozenRightRowByIndex` - select a right freeze row. | This method will return the table row `(tr)` based on the given index. Additionally, class names for table cells `(td's)` have been separated as follows: <br> * Left-Freeze: `e-leftfreeze` <br> * Movable: `e-unfreeze` <br> | `getRowByIndex()` |
|
|
24
|
+
| `getMovableCellFromIndex()` <br> `getFrozenRightCellFromIndex()` | * `getMovableCellFromIndex()` - select a particular cell in the movable table. <br> *`getFrozenRightCellFromIndex()` - select a particular cell in the right freeze table. | No change | `getCellFromIndex()` |
|
|
25
|
+
| `getMovableDataRows()` <br> `getFrozenRightDataRows()` | These methods return the viewport data rows for the freeze, movable tables separately. | This method, will return the entire viewport data rows. | `getDataRows()` |
|
|
26
|
+
| `getMovableColumnHeaderByIndex()` <br> `getFrozenRightColumnHeaderByIndex()` <br> `getFrozenLeftColumnHeaderByIndex()` | These methods select the movable, right freeze, and left freeze headers from the table separately. | No change | `getColumnHeaderByIndex`() |
|
|
49
27
|
|
|
50
|
-
##
|
|
28
|
+
## 20.2.36 (2022-06-30)
|
|
51
29
|
|
|
52
30
|
### Tree Grid
|
|
53
31
|
|
|
@@ -56,22 +34,6 @@
|
|
|
56
34
|
- Provided support for inline editing with virtualization enabled. Please find the demo [here](https://ej2.syncfusion.com/demos/#/bootstrap5/tree-grid/virtual-scrolling.html).
|
|
57
35
|
- `#I323425`, `#I332700`, `#I344742`, `#I375307` - Provided support for frozen column with virtualization enabled.
|
|
58
36
|
|
|
59
|
-
- Provided support for inline editing with virtualization enabled. Please find the demo [here](https://ej2.syncfusion.com/vue/demos/#/bootstrap5/tree-grid/virtual-scrolling.html).
|
|
60
|
-
- `#I323425`, `#I332700`, `#I344742`, `#I375307` - Provided support for frozen column with virtualization enabled.
|
|
61
|
-
|
|
62
|
-
## 20.2.36 (2022-06-30)
|
|
63
|
-
|
|
64
|
-
### Tree Grid
|
|
65
|
-
|
|
66
|
-
#### Bug fixes
|
|
67
|
-
|
|
68
|
-
- `#I379907` - Resolved editing for the dropdown edit type column with state persistence enabled.
|
|
69
|
-
|
|
70
|
-
#### Features
|
|
71
|
-
|
|
72
|
-
- `#I334966`, `#I373929`, `#I332693`, `#I342835`, `#F172606`, `#F171250`, `#F171248` - Provided row drag and drop support with virtualization feature enabled.
|
|
73
|
-
- `#I367483` - Provided support for row indent and outdent functionality. Please find the demo link [here](https://ej2.syncfusion.com/demos/#/bootstrap5/tree-grid/inline-editing).
|
|
74
|
-
|
|
75
37
|
- `#I334966`, `#I373929`, `#I332693`, `#I342835`, `#F172606`, `#F171250`, `#F171248` - Provided row drag and drop support with virtualization feature enabled.
|
|
76
38
|
- `#I367483` - Provided support for row indent and outdent functionality. Please find the demo link [here](https://ej2.syncfusion.com/vue/demos/#/bootstrap5/tree-grid/inline-editing).
|
|
77
39
|
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-vue-treegrid.umd.min.js
|
|
3
|
-
* version :
|
|
3
|
+
* version : 23.1.36
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
|
7
7
|
* licensing@syncfusion.com. Any infringement will be prosecuted under
|
|
8
8
|
* applicable laws.
|
|
9
9
|
*/
|
|
10
|
-
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@syncfusion/ej2-treegrid"),require("@syncfusion/ej2-vue-base"),require("@syncfusion/ej2-base")):"function"==typeof define&&define.amd?define(["exports","@syncfusion/ej2-treegrid","@syncfusion/ej2-vue-base","@syncfusion/ej2-base"],t):t(e.ej={},e.ej2Treegrid,e.ej2VueBase,e.ej2Base)}(this,function(e,t,n,s){"use strict";var o=n.vueDefineComponent({inject:{custom:{default:null}},render:function(e){if(!n.isExecute){var t=n.isExecute?e:n.gh,o=null;return s.isNullOrUndefined(this.$slots.default)||(o=n.isExecute?this.$slots.default:this.$slots.default()),t("div",{class:"e-directive"},o)}},updated:function(){!n.isExecute&&this.custom&&this.custom()},methods:{getTag:function(){return"e-stacked-columns"}}}),i={name:"e-stacked-columns",install:function(e){e.component(i.name,o)}},r=n.vueDefineComponent({render:function(){},methods:{getTag:function(){return"e-stacked-column"}}}),a={name:"e-stacked-column",install:function(e){e.component(a.name,r)}},c=n.vueDefineComponent({inject:{custom:{default:null}},render:function(e){if(!n.isExecute){var t=n.isExecute?e:n.gh,o=null;return s.isNullOrUndefined(this.$slots.default)||(o=n.isExecute?this.$slots.default:this.$slots.default()),t("div",{class:"e-directive"},o)}},updated:function(){!n.isExecute&&this.custom&&this.custom()},methods:{getTag:function(){return"e-columns"}}}),u={name:"e-columns",install:function(e){e.component(u.name,c)}},l=n.vueDefineComponent({render:function(){},methods:{getTag:function(){return"e-column"}}}),d={name:"e-column",install:function(e){e.component(d.name,l)}},h=n.vueDefineComponent({inject:{custom:{default:null}},render:function(e){if(!n.isExecute){var t=n.isExecute?e:n.gh,o=null;return s.isNullOrUndefined(this.$slots.default)||(o=n.isExecute?this.$slots.default:this.$slots.default()),t("div",{class:"e-directive"},o)}},updated:function(){!n.isExecute&&this.custom&&this.custom()},methods:{getTag:function(){return"e-columns"}}}),g={name:"e-columns",install:function(e){e.component(g.name,h)}},m=n.vueDefineComponent({render:function(){},methods:{getTag:function(){return"e-column"}}}),f={name:"e-column",install:function(e){e.component(f.name,m)}},p=n.vueDefineComponent({inject:{custom:{default:null}},render:function(e){if(!n.isExecute){var t=n.isExecute?e:n.gh,o=null;return s.isNullOrUndefined(this.$slots.default)||(o=n.isExecute?this.$slots.default:this.$slots.default()),t("div",{class:"e-directive"},o)}},updated:function(){!n.isExecute&&this.custom&&this.custom()},methods:{getTag:function(){return"e-aggregates"}}}),I={name:"e-aggregates",install:function(e){e.component(I.name,p)}},C=n.vueDefineComponent({render:function(){},methods:{getTag:function(){return"e-aggregate"}}}),j={name:"e-aggregate",install:function(e){e.component(j.name,C)}},x=["isLazyUpdate","plugins","aggregates","allowExcelExport","allowFiltering","allowMultiSorting","allowPaging","allowPdfExport","allowReordering","allowResizing","allowRowDragAndDrop","allowSelection","allowSorting","allowTextWrap","autoCheckHierarchy","childMapping","clipMode","columnMenuItems","columnQueryMode","columns","contextMenuItems","copyHierarchyMode","dataSource","detailTemplate","editSettings","enableAdaptiveUI","enableAltRow","enableAutoFill","enableCollapseAll","enableColumnVirtualization","enableHover","enableHtmlSanitizer","enableImmutableMode","enableInfiniteScrolling","enablePersistence","enableRtl","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","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"],w=["dataSource"],v=n.getProps({props:x}),y=v[0],R=v[1],b=Object.keys(R);b.push("modelchanged","update:modelValue");for(var S=0,B=w;S<B.length;S++){var D=B[S];b.push("update:"+D)}var E=n.vueDefineComponent({name:"TreeGridComponent",mixins:[n.ComponentBase],props:y,watch:R,emits:b,model:{event:"modelchanged"},provide:function(){return{custom:this.custom}},data:function(){return{ej2Instance:new t.TreeGrid({}),propKeys:x,models:w,hasChildDirective:!0,hasInjectedModules:!0,tagMapper:{"e-columns":{"e-column":{"e-stacked-columns":"e-stacked-column"}},"e-aggregates":{"e-aggregate":{"e-columns":"e-column"}}},tagNameMapper:{"e-stacked-columns":"e-columns"},isVue3:!n.isExecute,templateCollection:{}}},created:function(){this.ej2Instances._trigger=this.ej2Instances.trigger,this.ej2Instances.trigger=this.trigger,this.bindProperties(),this.ej2Instances._setProperties=this.ej2Instances.setProperties,this.ej2Instances.setProperties=this.setProperties,this.ej2Instances.clearTemplate=this.clearTemplate,this.updated=this.updated},render:function(e){var t=n.isExecute?e:n.gh,o=null;return s.isNullOrUndefined(this.$slots.default)||(o=n.isExecute?this.$slots.default:this.$slots.default()),t("div",o)},methods:{clearTemplate:function(e){if(e||(e=Object.keys(this.templateCollection||{})),e.length&&this.templateCollection)for(var t=0,n=e;t<n.length;t++){var o=n[t],i=this.templateCollection[o];if(i&&i.length){for(var r=0,a=i;r<a.length;r++){var c=a[r];s.getValue("__vue__.$destroy",c)&&c.__vue__.$destroy(),c.innerHTML&&(c.innerHTML="")}delete this.templateCollection[o]}}},setProperties:function(e,t){var n=this;this.isVue3&&(this.models=this.models?this.models:this.ej2Instances.referModels),this.ej2Instances&&this.ej2Instances._setProperties&&this.ej2Instances._setProperties(e,t),e&&this.models&&this.models.length&&Object.keys(e).map(function(t){n.models.map(function(s){t!==s||/datasource/i.test(t)||(n.isVue3?n.ej2Instances.vueInstance.$emit("update:"+t,e[t]):(n.$emit("update:"+t,e[t]),n.$emit("modelchanged",e[t])))})})},trigger:function(e,t,o){if(n.isExecute||(this.models=this.models?this.models:this.ej2Instances.referModels),"change"!==e&&"input"!==e||!this.models||0===this.models.length){if("actionBegin"===e&&"dateNavigate"===t.requestType&&this.models&&0!==this.models.length){r=(i=this.models.toString().match(/currentView|selectedDate/)||[])[0];t&&i&&!s.isUndefined(t[r])&&(n.isExecute?(this.$emit("update:"+r,t[r]),this.$emit("modelchanged",t[r])):(this.ej2Instances.vueInstance.$emit("update:"+r,t[r]),this.ej2Instances.vueInstance.$emit("modelchanged",t[r])))}}else{var i,r=(i=this.models.toString().match(/checked|value/)||[])[0];t&&i&&!s.isUndefined(t[r])&&(n.isExecute?("change"===e||this.$props&&!this.$props.isLazyUpdate)&&(this.$emit("update:"+r,t[r]),this.$emit("modelchanged",t[r])):(this.ej2Instances.vueInstance.$emit("update:"+r,t[r]),this.ej2Instances.vueInstance.$emit("modelchanged",t[r]),this.ej2Instances.vueInstance.$emit("update:modelValue",t[r])))}this.ej2Instances&&this.ej2Instances._trigger&&this.ej2Instances._trigger(e,t,o)},custom:function(){this.updated()},addRecord:function(e,t,n){return this.ej2Instances.addRecord(e,t,n)},autoFitColumns:function(e){return this.ej2Instances.autoFitColumns(e)},clearFiltering:function(){return this.ej2Instances.clearFiltering()},clearSelection:function(){return this.ej2Instances.clearSelection()},clearSorting:function(){return this.ej2Instances.clearSorting()},closeEdit:function(){return this.ej2Instances.closeEdit()},collapseAll:function(){return this.ej2Instances.collapseAll()},collapseAtLevel:function(e){return this.ej2Instances.collapseAtLevel(e)},collapseByKey:function(e){return this.ej2Instances.collapseByKey(e)},collapseRow:function(e,t,n){return this.ej2Instances.collapseRow(e,t,n)},copy:function(e){return this.ej2Instances.copy(e)},csvExport:function(e,t,n,s){return this.ej2Instances.csvExport(e,t,n,s)},deleteRecord:function(e,t){return this.ej2Instances.deleteRecord(e,t)},deleteRow:function(e){return this.ej2Instances.deleteRow(e)},editCell:function(e,t){return this.ej2Instances.editCell(e,t)},enableToolbarItems:function(e,t){return this.ej2Instances.enableToolbarItems(e,t)},endEdit:function(){return this.ej2Instances.endEdit()},excelExport:function(e,t,n,s){return this.ej2Instances.excelExport(e,t,n,s)},expandAll:function(){return this.ej2Instances.expandAll()},expandAtLevel:function(e){return this.ej2Instances.expandAtLevel(e)},expandByKey:function(e){return this.ej2Instances.expandByKey(e)},expandRow:function(e,t,n,s){return this.ej2Instances.expandRow(e,t,n,s)},extendRequiredModules:function(e){return this.ej2Instances.extendRequiredModules(e)},filterByColumn:function(e,t,n,s,o,i,r,a){return this.ej2Instances.filterByColumn(e,t,n,s,o,i,r,a)},getBatchChanges:function(){return this.ej2Instances.getBatchChanges()},getCellFromIndex:function(e,t){return this.ej2Instances.getCellFromIndex(e,t)},getCheckedRecords:function(){return this.ej2Instances.getCheckedRecords()},getCheckedRowIndexes:function(){return this.ej2Instances.getCheckedRowIndexes()},getColumnByField:function(e){return this.ej2Instances.getColumnByField(e)},getColumnByUid:function(e){return this.ej2Instances.getColumnByUid(e)},getColumnFieldNames:function(){return this.ej2Instances.getColumnFieldNames()},getColumnHeaderByField:function(e){return this.ej2Instances.getColumnHeaderByField(e)},getColumnHeaderByIndex:function(e){return this.ej2Instances.getColumnHeaderByIndex(e)},getColumnHeaderByUid:function(e){return this.ej2Instances.getColumnHeaderByUid(e)},getColumnIndexByField:function(e){return this.ej2Instances.getColumnIndexByField(e)},getColumnIndexByUid:function(e){return this.ej2Instances.getColumnIndexByUid(e)},getColumns:function(e){return this.ej2Instances.getColumns(e)},getContent:function(){return this.ej2Instances.getContent()},getContentTable:function(){return this.ej2Instances.getContentTable()},getCurrentViewRecords:function(){return this.ej2Instances.getCurrentViewRecords()},getDataModule:function(){return this.ej2Instances.getDataModule()},getDataRows:function(){return this.ej2Instances.getDataRows()},getFooterContent:function(){return this.ej2Instances.getFooterContent()},getFooterContentTable:function(){return this.ej2Instances.getFooterContentTable()},getFrozenLeftColumnHeaderByIndex:function(e){return this.ej2Instances.getFrozenLeftColumnHeaderByIndex(e)},getFrozenRightCellFromIndex:function(e,t){return this.ej2Instances.getFrozenRightCellFromIndex(e,t)},getFrozenRightColumnHeaderByIndex:function(e){return this.ej2Instances.getFrozenRightColumnHeaderByIndex(e)},getFrozenRightDataRows:function(){return this.ej2Instances.getFrozenRightDataRows()},getFrozenRightRowByIndex:function(e){return this.ej2Instances.getFrozenRightRowByIndex(e)},getFrozenRightRows:function(){return this.ej2Instances.getFrozenRightRows()},getHeaderContent:function(){return this.ej2Instances.getHeaderContent()},getHeaderTable:function(){return this.ej2Instances.getHeaderTable()},getMovableCellFromIndex:function(e,t){return this.ej2Instances.getMovableCellFromIndex(e,t)},getMovableColumnHeaderByIndex:function(e){return this.ej2Instances.getMovableColumnHeaderByIndex(e)},getMovableDataRows:function(){return this.ej2Instances.getMovableDataRows()},getMovableRowByIndex:function(e){return this.ej2Instances.getMovableRowByIndex(e)},getMovableRows:function(){return this.ej2Instances.getMovableRows()},getPager:function(){return this.ej2Instances.getPager()},getPrimaryKeyFieldNames:function(){return this.ej2Instances.getPrimaryKeyFieldNames()},getRowByIndex:function(e){return this.ej2Instances.getRowByIndex(e)},getRowInfo:function(e){return this.ej2Instances.getRowInfo(e)},getRows:function(){return this.ej2Instances.getRows()},getSelectedRecords:function(){return this.ej2Instances.getSelectedRecords()},getSelectedRowCellIndexes:function(){return this.ej2Instances.getSelectedRowCellIndexes()},getSelectedRowIndexes:function(){return this.ej2Instances.getSelectedRowIndexes()},getSelectedRows:function(){return this.ej2Instances.getSelectedRows()},getUidByColumnField:function(e){return this.ej2Instances.getUidByColumnField(e)},getVisibleColumns:function(){return this.ej2Instances.getVisibleColumns()},getVisibleRecords:function(){return this.ej2Instances.getVisibleRecords()},goToPage:function(e){return this.ej2Instances.goToPage(e)},hideColumns:function(e,t){return this.ej2Instances.hideColumns(e,t)},hideSpinner:function(){return this.ej2Instances.hideSpinner()},indent:function(e){return this.ej2Instances.indent(e)},openColumnChooser:function(e,t){return this.ej2Instances.openColumnChooser(e,t)},outdent:function(e){return this.ej2Instances.outdent(e)},paste:function(e,t,n){return this.ej2Instances.paste(e,t,n)},pdfExport:function(e,t,n,s){return this.ej2Instances.pdfExport(e,t,n,s)},print:function(){return this.ej2Instances.print()},refresh:function(){return this.ej2Instances.refresh()},refreshColumns:function(e){return this.ej2Instances.refreshColumns(e)},refreshHeader:function(){return this.ej2Instances.refreshHeader()},reorderColumns:function(e,t){return this.ej2Instances.reorderColumns(e,t)},reorderRows:function(e,t,n){return this.ej2Instances.reorderRows(e,t,n)},saveCell:function(){return this.ej2Instances.saveCell()},search:function(e){return this.ej2Instances.search(e)},selectCell:function(e,t){return this.ej2Instances.selectCell(e,t)},selectCheckboxes:function(e){return this.ej2Instances.selectCheckboxes(e)},selectRow:function(e,t){return this.ej2Instances.selectRow(e,t)},selectRows:function(e){return this.ej2Instances.selectRows(e)},setCellValue:function(e,t,n){return this.ej2Instances.setCellValue(e,t,n)},setRowData:function(e,t){return this.ej2Instances.setRowData(e,t)},showColumns:function(e,t){return this.ej2Instances.showColumns(e,t)},showSpinner:function(){return this.ej2Instances.showSpinner()},sortByColumn:function(e,t,n){return this.ej2Instances.sortByColumn(e,t,n)},startEdit:function(e){return this.ej2Instances.startEdit(e)},updateCell:function(e,t,n){return this.ej2Instances.updateCell(e,t,n)},updateExternalMessage:function(e){return this.ej2Instances.updateExternalMessage(e)},updateRow:function(e,t){return this.ej2Instances.updateRow(e,t)}}}),M={name:"ejs-treegrid",install:function(e){e.component(M.name,E),e.component(d.name,l),e.component(u.name,c),e.component(a.name,r),e.component(i.name,o),e.component(j.name,C),e.component(I.name,p),e.component(f.name,m),e.component(g.name,h)}};e.StackedColumnsDirective=o,e.StackedColumnDirective=r,e.StackedColumnsPlugin=i,e.StackedColumnPlugin=a,e.ColumnsDirective=c,e.ColumnDirective=l,e.ColumnsPlugin=u,e.ColumnPlugin=d,e.AggregateColumnsDirective=h,e.AggregateColumnDirective=m,e.AggregateColumnsPlugin=g,e.AggregateColumnPlugin=f,e.AggregatesDirective=p,e.AggregateDirective=C,e.AggregatesPlugin=I,e.AggregatePlugin=j,e.TreeGridComponent=E,e.TreeGridPlugin=M,Object.keys(t).forEach(function(n){e[n]=t[n]}),Object.defineProperty(e,"__esModule",{value:!0})});
|
|
10
|
+
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@syncfusion/ej2-treegrid"),require("@syncfusion/ej2-vue-base"),require("@syncfusion/ej2-base")):"function"==typeof define&&define.amd?define(["exports","@syncfusion/ej2-treegrid","@syncfusion/ej2-vue-base","@syncfusion/ej2-base"],t):t(e.ej={},e.ej2Treegrid,e.ej2VueBase,e.ej2Base)}(this,function(e,t,n,s){"use strict";var o=n.vueDefineComponent({inject:{custom:{default:null}},render:function(e){if(!n.isExecute){var t=n.isExecute?e:n.gh,o=null;return s.isNullOrUndefined(this.$slots.default)||(o=n.isExecute?this.$slots.default:this.$slots.default()),t("div",{class:"e-directive"},o)}},updated:function(){!n.isExecute&&this.custom&&this.custom()},methods:{getTag:function(){return"e-stacked-columns"}}}),i={name:"e-stacked-columns",install:function(e){e.component(i.name,o)}},r=n.vueDefineComponent({render:function(){},methods:{getTag:function(){return"e-stacked-column"}}}),c={name:"e-stacked-column",install:function(e){e.component(c.name,r)}},a=n.vueDefineComponent({inject:{custom:{default:null}},render:function(e){if(!n.isExecute){var t=n.isExecute?e:n.gh,o=null;return s.isNullOrUndefined(this.$slots.default)||(o=n.isExecute?this.$slots.default:this.$slots.default()),t("div",{class:"e-directive"},o)}},updated:function(){!n.isExecute&&this.custom&&this.custom()},methods:{getTag:function(){return"e-columns"}}}),u={name:"e-columns",install:function(e){e.component(u.name,a)}},l=n.vueDefineComponent({render:function(){},methods:{getTag:function(){return"e-column"}}}),d={name:"e-column",install:function(e){e.component(d.name,l)}},h=n.vueDefineComponent({inject:{custom:{default:null}},render:function(e){if(!n.isExecute){var t=n.isExecute?e:n.gh,o=null;return s.isNullOrUndefined(this.$slots.default)||(o=n.isExecute?this.$slots.default:this.$slots.default()),t("div",{class:"e-directive"},o)}},updated:function(){!n.isExecute&&this.custom&&this.custom()},methods:{getTag:function(){return"e-columns"}}}),g={name:"e-columns",install:function(e){e.component(g.name,h)}},m=n.vueDefineComponent({render:function(){},methods:{getTag:function(){return"e-column"}}}),f={name:"e-column",install:function(e){e.component(f.name,m)}},p=n.vueDefineComponent({inject:{custom:{default:null}},render:function(e){if(!n.isExecute){var t=n.isExecute?e:n.gh,o=null;return s.isNullOrUndefined(this.$slots.default)||(o=n.isExecute?this.$slots.default:this.$slots.default()),t("div",{class:"e-directive"},o)}},updated:function(){!n.isExecute&&this.custom&&this.custom()},methods:{getTag:function(){return"e-aggregates"}}}),I={name:"e-aggregates",install:function(e){e.component(I.name,p)}},C=n.vueDefineComponent({render:function(){},methods:{getTag:function(){return"e-aggregate"}}}),j={name:"e-aggregate",install:function(e){e.component(j.name,C)}},x=["isLazyUpdate","plugins","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","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","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"],v=["dataSource"],w=n.getProps({props:x}),y=w[0],R=w[1],b=Object.keys(R);b.push("modelchanged","update:modelValue");for(var E=0,S=v;E<S.length;E++){var B=S[E];b.push("update:"+B)}var D=n.vueDefineComponent({name:"TreeGridComponent",mixins:[n.ComponentBase],props:y,watch:R,emits:b,model:{event:"modelchanged"},provide:function(){return{custom:this.custom}},data:function(){return{ej2Instance:new t.TreeGrid({}),propKeys:x,models:v,hasChildDirective:!0,hasInjectedModules:!0,tagMapper:{"e-columns":{"e-column":{"e-stacked-columns":"e-stacked-column"}},"e-aggregates":{"e-aggregate":{"e-columns":"e-column"}}},tagNameMapper:{"e-stacked-columns":"e-columns"},isVue3:!n.isExecute,templateCollection:{}}},created:function(){this.ej2Instances._trigger=this.ej2Instances.trigger,this.ej2Instances.trigger=this.trigger,this.bindProperties(),this.ej2Instances._setProperties=this.ej2Instances.setProperties,this.ej2Instances.setProperties=this.setProperties,this.ej2Instances.clearTemplate=this.clearTemplate,this.updated=this.updated},render:function(e){var t=n.isExecute?e:n.gh,o=null;return s.isNullOrUndefined(this.$slots.default)||(o=n.isExecute?this.$slots.default:this.$slots.default()),t("div",o)},methods:{clearTemplate:function(e){if(e||(e=Object.keys(this.templateCollection||{})),e.length&&this.templateCollection)for(var t=0,n=e;t<n.length;t++){var o=n[t],i=this.templateCollection[o];if(i&&i.length){for(var r=0,c=i;r<c.length;r++){var a=c[r];s.getValue("__vue__.$destroy",a)&&a.__vue__.$destroy(),a.innerHTML&&(a.innerHTML="")}delete this.templateCollection[o]}}},setProperties:function(e,t){var n=this;this.isVue3&&(this.models=this.models?this.models:this.ej2Instances.referModels),this.ej2Instances&&this.ej2Instances._setProperties&&this.ej2Instances._setProperties(e,t),e&&this.models&&this.models.length&&Object.keys(e).map(function(t){n.models.map(function(s){t!==s||/datasource/i.test(t)||(n.isVue3?n.ej2Instances.vueInstance.$emit("update:"+t,e[t]):(n.$emit("update:"+t,e[t]),n.$emit("modelchanged",e[t])))})})},trigger:function(e,t,o){if(n.isExecute||(this.models=this.models?this.models:this.ej2Instances.referModels),"change"!==e&&"input"!==e||!this.models||0===this.models.length){if("actionBegin"===e&&"dateNavigate"===t.requestType&&this.models&&0!==this.models.length){r=(i=this.models.toString().match(/currentView|selectedDate/)||[])[0];t&&i&&!s.isUndefined(t[r])&&(n.isExecute?(this.$emit("update:"+r,t[r]),this.$emit("modelchanged",t[r])):(this.ej2Instances.vueInstance.$emit("update:"+r,t[r]),this.ej2Instances.vueInstance.$emit("modelchanged",t[r])))}}else{var i,r=(i=this.models.toString().match(/checked|value/)||[])[0];t&&i&&!s.isUndefined(t[r])&&(n.isExecute?("change"===e||this.$props&&!this.$props.isLazyUpdate)&&(this.$emit("update:"+r,t[r]),this.$emit("modelchanged",t[r])):(this.ej2Instances.vueInstance.$emit("update:"+r,t[r]),this.ej2Instances.vueInstance.$emit("modelchanged",t[r]),this.ej2Instances.vueInstance.$emit("update:modelValue",t[r])))}this.ej2Instances&&this.ej2Instances._trigger&&this.ej2Instances._trigger(e,t,o)},custom:function(){this.updated()},addRecord:function(e,t,n){return this.ej2Instances.addRecord(e,t,n)},autoFitColumns:function(e){return this.ej2Instances.autoFitColumns(e)},clearFiltering:function(){return this.ej2Instances.clearFiltering()},clearSelection:function(){return this.ej2Instances.clearSelection()},clearSorting:function(){return this.ej2Instances.clearSorting()},closeEdit:function(){return this.ej2Instances.closeEdit()},collapseAll:function(){return this.ej2Instances.collapseAll()},collapseAtLevel:function(e){return this.ej2Instances.collapseAtLevel(e)},collapseByKey:function(e){return this.ej2Instances.collapseByKey(e)},collapseRow:function(e,t,n){return this.ej2Instances.collapseRow(e,t,n)},copy:function(e){return this.ej2Instances.copy(e)},csvExport:function(e,t,n,s){return this.ej2Instances.csvExport(e,t,n,s)},deleteRecord:function(e,t){return this.ej2Instances.deleteRecord(e,t)},deleteRow:function(e){return this.ej2Instances.deleteRow(e)},editCell:function(e,t){return this.ej2Instances.editCell(e,t)},enableToolbarItems:function(e,t){return this.ej2Instances.enableToolbarItems(e,t)},endEdit:function(){return this.ej2Instances.endEdit()},excelExport:function(e,t,n,s){return this.ej2Instances.excelExport(e,t,n,s)},expandAll:function(){return this.ej2Instances.expandAll()},expandAtLevel:function(e){return this.ej2Instances.expandAtLevel(e)},expandByKey:function(e){return this.ej2Instances.expandByKey(e)},expandRow:function(e,t,n,s){return this.ej2Instances.expandRow(e,t,n,s)},extendRequiredModules:function(e){return this.ej2Instances.extendRequiredModules(e)},filterByColumn:function(e,t,n,s,o,i,r,c){return this.ej2Instances.filterByColumn(e,t,n,s,o,i,r,c)},getBatchChanges:function(){return this.ej2Instances.getBatchChanges()},getCellFromIndex:function(e,t){return this.ej2Instances.getCellFromIndex(e,t)},getCheckedRecords:function(){return this.ej2Instances.getCheckedRecords()},getCheckedRowIndexes:function(){return this.ej2Instances.getCheckedRowIndexes()},getColumnByField:function(e){return this.ej2Instances.getColumnByField(e)},getColumnByUid:function(e){return this.ej2Instances.getColumnByUid(e)},getColumnFieldNames:function(){return this.ej2Instances.getColumnFieldNames()},getColumnHeaderByField:function(e){return this.ej2Instances.getColumnHeaderByField(e)},getColumnHeaderByIndex:function(e){return this.ej2Instances.getColumnHeaderByIndex(e)},getColumnHeaderByUid:function(e){return this.ej2Instances.getColumnHeaderByUid(e)},getColumnIndexByField:function(e){return this.ej2Instances.getColumnIndexByField(e)},getColumnIndexByUid:function(e){return this.ej2Instances.getColumnIndexByUid(e)},getColumns:function(e){return this.ej2Instances.getColumns(e)},getContent:function(){return this.ej2Instances.getContent()},getContentTable:function(){return this.ej2Instances.getContentTable()},getCurrentViewRecords:function(){return this.ej2Instances.getCurrentViewRecords()},getDataModule:function(){return this.ej2Instances.getDataModule()},getDataRows:function(){return this.ej2Instances.getDataRows()},getFooterContent:function(){return this.ej2Instances.getFooterContent()},getFooterContentTable:function(){return this.ej2Instances.getFooterContentTable()},getFrozenLeftColumnHeaderByIndex:function(e){return this.ej2Instances.getFrozenLeftColumnHeaderByIndex(e)},getFrozenRightCellFromIndex:function(e,t){return this.ej2Instances.getFrozenRightCellFromIndex(e,t)},getFrozenRightColumnHeaderByIndex:function(e){return this.ej2Instances.getFrozenRightColumnHeaderByIndex(e)},getFrozenRightDataRows:function(){return this.ej2Instances.getFrozenRightDataRows()},getFrozenRightRowByIndex:function(e){return this.ej2Instances.getFrozenRightRowByIndex(e)},getFrozenRightRows:function(){return this.ej2Instances.getFrozenRightRows()},getHeaderContent:function(){return this.ej2Instances.getHeaderContent()},getHeaderTable:function(){return this.ej2Instances.getHeaderTable()},getMovableCellFromIndex:function(e,t){return this.ej2Instances.getMovableCellFromIndex(e,t)},getMovableColumnHeaderByIndex:function(e){return this.ej2Instances.getMovableColumnHeaderByIndex(e)},getMovableDataRows:function(){return this.ej2Instances.getMovableDataRows()},getMovableRowByIndex:function(e){return this.ej2Instances.getMovableRowByIndex(e)},getMovableRows:function(){return this.ej2Instances.getMovableRows()},getPager:function(){return this.ej2Instances.getPager()},getPrimaryKeyFieldNames:function(){return this.ej2Instances.getPrimaryKeyFieldNames()},getRowByIndex:function(e){return this.ej2Instances.getRowByIndex(e)},getRowInfo:function(e){return this.ej2Instances.getRowInfo(e)},getRows:function(){return this.ej2Instances.getRows()},getSelectedRecords:function(){return this.ej2Instances.getSelectedRecords()},getSelectedRowCellIndexes:function(){return this.ej2Instances.getSelectedRowCellIndexes()},getSelectedRowIndexes:function(){return this.ej2Instances.getSelectedRowIndexes()},getSelectedRows:function(){return this.ej2Instances.getSelectedRows()},getUidByColumnField:function(e){return this.ej2Instances.getUidByColumnField(e)},getVisibleColumns:function(){return this.ej2Instances.getVisibleColumns()},getVisibleRecords:function(){return this.ej2Instances.getVisibleRecords()},goToPage:function(e){return this.ej2Instances.goToPage(e)},hideColumns:function(e,t){return this.ej2Instances.hideColumns(e,t)},hideSpinner:function(){return this.ej2Instances.hideSpinner()},indent:function(e){return this.ej2Instances.indent(e)},openColumnChooser:function(e,t){return this.ej2Instances.openColumnChooser(e,t)},outdent:function(e){return this.ej2Instances.outdent(e)},paste:function(e,t,n){return this.ej2Instances.paste(e,t,n)},pdfExport:function(e,t,n,s){return this.ej2Instances.pdfExport(e,t,n,s)},print:function(){return this.ej2Instances.print()},refresh:function(){return this.ej2Instances.refresh()},refreshColumns:function(e){return this.ej2Instances.refreshColumns(e)},refreshHeader:function(){return this.ej2Instances.refreshHeader()},reorderColumns:function(e,t){return this.ej2Instances.reorderColumns(e,t)},reorderRows:function(e,t,n){return this.ej2Instances.reorderRows(e,t,n)},saveCell:function(){return this.ej2Instances.saveCell()},search:function(e){return this.ej2Instances.search(e)},selectCell:function(e,t){return this.ej2Instances.selectCell(e,t)},selectCheckboxes:function(e){return this.ej2Instances.selectCheckboxes(e)},selectRow:function(e,t){return this.ej2Instances.selectRow(e,t)},selectRows:function(e){return this.ej2Instances.selectRows(e)},serverCsvExport:function(e){return this.ej2Instances.serverCsvExport(e)},serverExcelExport:function(e){return this.ej2Instances.serverExcelExport(e)},serverPdfExport:function(e){return this.ej2Instances.serverPdfExport(e)},setCellValue:function(e,t,n){return this.ej2Instances.setCellValue(e,t,n)},setRowData:function(e,t){return this.ej2Instances.setRowData(e,t)},showColumns:function(e,t){return this.ej2Instances.showColumns(e,t)},showSpinner:function(){return this.ej2Instances.showSpinner()},sortByColumn:function(e,t,n){return this.ej2Instances.sortByColumn(e,t,n)},startEdit:function(e){return this.ej2Instances.startEdit(e)},updateCell:function(e,t,n){return this.ej2Instances.updateCell(e,t,n)},updateExternalMessage:function(e){return this.ej2Instances.updateExternalMessage(e)},updateRow:function(e,t){return this.ej2Instances.updateRow(e,t)}}}),M={name:"ejs-treegrid",install:function(e){e.component(M.name,D),e.component(d.name,l),e.component(u.name,a),e.component(c.name,r),e.component(i.name,o),e.component(j.name,C),e.component(I.name,p),e.component(f.name,m),e.component(g.name,h)}};e.StackedColumnsDirective=o,e.StackedColumnDirective=r,e.StackedColumnsPlugin=i,e.StackedColumnPlugin=c,e.ColumnsDirective=a,e.ColumnDirective=l,e.ColumnsPlugin=u,e.ColumnPlugin=d,e.AggregateColumnsDirective=h,e.AggregateColumnDirective=m,e.AggregateColumnsPlugin=g,e.AggregateColumnPlugin=f,e.AggregatesDirective=p,e.AggregateDirective=C,e.AggregatesPlugin=I,e.AggregatePlugin=j,e.TreeGridComponent=D,e.TreeGridPlugin=M,Object.keys(t).forEach(function(n){e[n]=t[n]}),Object.defineProperty(e,"__esModule",{value:!0})});
|
|
11
11
|
//# sourceMappingURL=ej2-vue-treegrid.umd.min.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ej2-vue-treegrid.umd.min.js","sources":["../src/treegrid/stacked-column.directive.js","../src/treegrid/columns.directive.js","../src/treegrid/aggregate-columns.directive.js","../src/treegrid/aggregates.directive.js","../src/treegrid/treegrid.component.js"],"sourcesContent":["import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nexport var StackedColumnsDirective = vueDefineComponent({\n inject: { custom: { default: null } },\n render: function (createElement) {\n if (!isExecute) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', { class: 'e-directive' }, slots);\n }\n return;\n },\n updated: function () {\n if (!isExecute && this.custom) {\n this.custom();\n }\n },\n methods: {\n getTag: function () {\n return 'e-stacked-columns';\n }\n }\n});\nexport var StackedColumnsPlugin = {\n name: 'e-stacked-columns',\n install: function (Vue) {\n Vue.component(StackedColumnsPlugin.name, StackedColumnsDirective);\n }\n};\nexport var StackedColumnDirective = vueDefineComponent({\n render: function () {\n return;\n },\n methods: {\n getTag: function () {\n return 'e-stacked-column';\n }\n }\n});\nexport var StackedColumnPlugin = {\n name: 'e-stacked-column',\n install: function (Vue) {\n Vue.component(StackedColumnPlugin.name, StackedColumnDirective);\n }\n};\n","import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nexport var ColumnsDirective = vueDefineComponent({\n inject: { custom: { default: null } },\n render: function (createElement) {\n if (!isExecute) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', { class: 'e-directive' }, slots);\n }\n return;\n },\n updated: function () {\n if (!isExecute && this.custom) {\n this.custom();\n }\n },\n methods: {\n getTag: function () {\n return 'e-columns';\n }\n }\n});\nexport var ColumnsPlugin = {\n name: 'e-columns',\n install: function (Vue) {\n Vue.component(ColumnsPlugin.name, ColumnsDirective);\n }\n};\n/**\n * `e-column` directive represent a column of the VueJS TreeGrid.\n * It must be contained in a TreeGrid component(`ejs-treegrid`).\n * ```vue\n * <ejs-treegrid :dataSource='data' allowPaging='true' allowSorting='true'>\n * <e-columns>\n * <e-column field='ID' width='100'/>\n * <e-column field='name' headerText='Name' width='100'/>\n * </e-columns>\n * </ejs-treegrid>\n * ```\n */\nexport var ColumnDirective = vueDefineComponent({\n render: function () {\n return;\n },\n methods: {\n getTag: function () {\n return 'e-column';\n }\n }\n});\nexport var ColumnPlugin = {\n name: 'e-column',\n install: function (Vue) {\n Vue.component(ColumnPlugin.name, ColumnDirective);\n }\n};\n","import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nexport var AggregateColumnsDirective = vueDefineComponent({\n inject: { custom: { default: null } },\n render: function (createElement) {\n if (!isExecute) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', { class: 'e-directive' }, slots);\n }\n return;\n },\n updated: function () {\n if (!isExecute && this.custom) {\n this.custom();\n }\n },\n methods: {\n getTag: function () {\n return 'e-columns';\n }\n }\n});\nexport var AggregateColumnsPlugin = {\n name: 'e-columns',\n install: function (Vue) {\n Vue.component(AggregateColumnsPlugin.name, AggregateColumnsDirective);\n }\n};\n/**\n * `e-aggregate->e-column` directive represent a aggregate column of the VueJS TreeGrid.\n * ```vue\n * <ejs-treegrid :dataSource='data' allowPaging='true' allowSorting='true'>\n * <e-columns>\n * <e-column field='ID' width='100'/>\n * <e-column field='name' headerText='Name' width='100'/>\n * </e-columns>\n * <e-aggregates>\n * <e-aggregate>\n * <e-columns>\n * <e-column field='ID' type='Min'/>\n * </e-columns>\n * </e-aggregate>\n * </e-aggregates>\n * </ejs-treegrid>\n * ```\n */\nexport var AggregateColumnDirective = vueDefineComponent({\n render: function () {\n return;\n },\n methods: {\n getTag: function () {\n return 'e-column';\n }\n }\n});\nexport var AggregateColumnPlugin = {\n name: 'e-column',\n install: function (Vue) {\n Vue.component(AggregateColumnPlugin.name, AggregateColumnDirective);\n }\n};\n","import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nexport var AggregatesDirective = vueDefineComponent({\n inject: { custom: { default: null } },\n render: function (createElement) {\n if (!isExecute) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', { class: 'e-directive' }, slots);\n }\n return;\n },\n updated: function () {\n if (!isExecute && this.custom) {\n this.custom();\n }\n },\n methods: {\n getTag: function () {\n return 'e-aggregates';\n }\n }\n});\nexport var AggregatesPlugin = {\n name: 'e-aggregates',\n install: function (Vue) {\n Vue.component(AggregatesPlugin.name, AggregatesDirective);\n }\n};\n/**\n * `e-aggregate` directive represent a aggregate row of the VueJS TreeGrid.\n * It must be contained in a TreeGrid component(`ejs-treegrid`).\n * ```vue\n * <ejs-treegrid :dataSource]='data' allowPaging='true' allowSorting='true'>\n * <e-columns>\n * <e-column field='ID' width='100'/>\n * <e-column field='name' headerText='Name' width='100'/>\n * </e-columns>\n * <e-aggregates>\n * <e-aggregate>\n * <e-columns>\n * <e-column field='ID' type='Min'/>\n * </e-columns>\n * </e-aggregate>\n * </e-aggregates>\n * </ejs-treegrid>\n * ```\n */\nexport var AggregateDirective = vueDefineComponent({\n render: function () {\n return;\n },\n methods: {\n getTag: function () {\n return 'e-aggregate';\n }\n }\n});\nexport var AggregatePlugin = {\n name: 'e-aggregate',\n install: function (Vue) {\n Vue.component(AggregatePlugin.name, AggregateDirective);\n }\n};\n","import { ComponentBase, gh, getProps, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';\nimport { isUndefined } from '@syncfusion/ej2-base';\nimport { TreeGrid } from '@syncfusion/ej2-treegrid';\nimport { StackedColumnsDirective, StackedColumnDirective, StackedColumnsPlugin, StackedColumnPlugin } from './stacked-column.directive';\nimport { ColumnsDirective, ColumnDirective, ColumnsPlugin, ColumnPlugin } from './columns.directive';\nimport { AggregateColumnsDirective, AggregateColumnDirective, AggregateColumnsPlugin, AggregateColumnPlugin } from './aggregate-columns.directive';\nimport { AggregatesDirective, AggregateDirective, AggregatesPlugin, AggregatePlugin } from './aggregates.directive';\nexport var properties = ['isLazyUpdate', 'plugins', 'aggregates', 'allowExcelExport', 'allowFiltering', 'allowMultiSorting', 'allowPaging', 'allowPdfExport', 'allowReordering', 'allowResizing', 'allowRowDragAndDrop', 'allowSelection', 'allowSorting', 'allowTextWrap', 'autoCheckHierarchy', 'childMapping', 'clipMode', 'columnMenuItems', 'columnQueryMode', 'columns', 'contextMenuItems', 'copyHierarchyMode', 'dataSource', 'detailTemplate', 'editSettings', 'enableAdaptiveUI', 'enableAltRow', 'enableAutoFill', 'enableCollapseAll', 'enableColumnVirtualization', 'enableHover', 'enableHtmlSanitizer', 'enableImmutableMode', 'enableInfiniteScrolling', 'enablePersistence', 'enableRtl', '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', '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'];\nexport var modelProps = ['dataSource'];\nexport var testProp = getProps({ props: properties });\nexport var props = testProp[0], watch = testProp[1], emitProbs = Object.keys(watch);\nemitProbs.push('modelchanged', 'update:modelValue');\nfor (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {\n var props_1 = modelProps_1[_i];\n emitProbs.push('update:' + props_1);\n}\n/**\n * `ejs-treegrid` represents the VueJS TreeGrid Component.\n * ```vue\n * <ejs-treegrid :dataSource='data' allowPaging='true' allowSorting='true'></ejs-treegrid>\n * ```\n */\nexport var TreeGridComponent = vueDefineComponent({\n name: 'TreeGridComponent',\n mixins: [ComponentBase],\n props: props,\n watch: watch,\n emits: emitProbs,\n model: { event: 'modelchanged' },\n provide: function () { return { custom: this.custom }; },\n data: function () {\n return {\n ej2Instance: new TreeGrid({}),\n propKeys: properties,\n models: modelProps,\n hasChildDirective: true,\n hasInjectedModules: true,\n tagMapper: { \"e-columns\": { \"e-column\": { \"e-stacked-columns\": \"e-stacked-column\" } }, \"e-aggregates\": { \"e-aggregate\": { \"e-columns\": \"e-column\" } } },\n tagNameMapper: { \"e-stacked-columns\": \"e-columns\" },\n isVue3: !isExecute,\n templateCollection: {},\n };\n },\n created: function () {\n this.ej2Instances._trigger = this.ej2Instances.trigger;\n this.ej2Instances.trigger = this.trigger;\n this.bindProperties();\n this.ej2Instances._setProperties = this.ej2Instances.setProperties;\n this.ej2Instances.setProperties = this.setProperties;\n this.ej2Instances.clearTemplate = this.clearTemplate;\n this.updated = this.updated;\n },\n render: function (createElement) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', slots);\n },\n methods: {\n clearTemplate: function (templateNames) {\n if (!templateNames) {\n templateNames = Object.keys(this.templateCollection || {});\n }\n if (templateNames.length && this.templateCollection) {\n for (var _i = 0, templateNames_1 = templateNames; _i < templateNames_1.length; _i++) {\n var tempName = templateNames_1[_i];\n var elementCollection = this.templateCollection[tempName];\n if (elementCollection && elementCollection.length) {\n for (var _a = 0, elementCollection_1 = elementCollection; _a < elementCollection_1.length; _a++) {\n var ele = elementCollection_1[_a];\n var destroy = getValue('__vue__.$destroy', ele);\n if (destroy) {\n ele.__vue__.$destroy();\n }\n if (ele.innerHTML) {\n ele.innerHTML = '';\n }\n }\n delete this.templateCollection[tempName];\n }\n }\n }\n },\n setProperties: function (prop, muteOnChange) {\n var _this = this;\n if (this.isVue3) {\n this.models = !this.models ? this.ej2Instances.referModels : this.models;\n }\n if (this.ej2Instances && this.ej2Instances._setProperties) {\n this.ej2Instances._setProperties(prop, muteOnChange);\n }\n if (prop && this.models && this.models.length) {\n Object.keys(prop).map(function (key) {\n _this.models.map(function (model) {\n if ((key === model) && !(/datasource/i.test(key))) {\n if (_this.isVue3) {\n _this.ej2Instances.vueInstance.$emit('update:' + key, prop[key]);\n }\n else {\n _this.$emit('update:' + key, prop[key]);\n _this.$emit('modelchanged', prop[key]);\n }\n }\n });\n });\n }\n },\n trigger: function (eventName, eventProp, successHandler) {\n if (!isExecute) {\n this.models = !this.models ? this.ej2Instances.referModels : this.models;\n }\n if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {\n var key = this.models.toString().match(/checked|value/) || [];\n var propKey = key[0];\n if (eventProp && key && !isUndefined(eventProp[propKey])) {\n if (!isExecute) {\n this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);\n this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);\n this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);\n }\n else {\n if (eventName === 'change' || (this.$props && !this.$props.isLazyUpdate)) {\n this.$emit('update:' + propKey, eventProp[propKey]);\n this.$emit('modelchanged', eventProp[propKey]);\n }\n }\n }\n }\n else if ((eventName === 'actionBegin' && eventProp.requestType === 'dateNavigate') && this.models && (this.models.length !== 0)) {\n var key = this.models.toString().match(/currentView|selectedDate/) || [];\n var propKey = key[0];\n if (eventProp && key && !isUndefined(eventProp[propKey])) {\n if (!isExecute) {\n this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);\n this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);\n }\n else {\n this.$emit('update:' + propKey, eventProp[propKey]);\n this.$emit('modelchanged', eventProp[propKey]);\n }\n }\n }\n if ((this.ej2Instances && this.ej2Instances._trigger)) {\n this.ej2Instances._trigger(eventName, eventProp, successHandler);\n }\n },\n custom: function () {\n this.updated();\n },\n addRecord: function (data, index, position) {\n return this.ej2Instances.addRecord(data, index, position);\n },\n autoFitColumns: function (fieldNames) {\n return this.ej2Instances.autoFitColumns(fieldNames);\n },\n clearFiltering: function () {\n return this.ej2Instances.clearFiltering();\n },\n clearSelection: function () {\n return this.ej2Instances.clearSelection();\n },\n clearSorting: function () {\n return this.ej2Instances.clearSorting();\n },\n closeEdit: function () {\n return this.ej2Instances.closeEdit();\n },\n collapseAll: function () {\n return this.ej2Instances.collapseAll();\n },\n collapseAtLevel: function (level) {\n return this.ej2Instances.collapseAtLevel(level);\n },\n collapseByKey: function (key) {\n return this.ej2Instances.collapseByKey(key);\n },\n collapseRow: function (row, record, key) {\n return this.ej2Instances.collapseRow(row, record, key);\n },\n copy: function (withHeader) {\n return this.ej2Instances.copy(withHeader);\n },\n csvExport: function (excelExportProperties, isMultipleExport, workbook, isBlob) {\n return this.ej2Instances.csvExport(excelExportProperties, isMultipleExport, workbook, isBlob);\n },\n deleteRecord: function (fieldName, data) {\n return this.ej2Instances.deleteRecord(fieldName, data);\n },\n deleteRow: function (tr) {\n return this.ej2Instances.deleteRow(tr);\n },\n editCell: function (rowIndex, field) {\n return this.ej2Instances.editCell(rowIndex, field);\n },\n enableToolbarItems: function (items, isEnable) {\n return this.ej2Instances.enableToolbarItems(items, isEnable);\n },\n endEdit: function () {\n return this.ej2Instances.endEdit();\n },\n excelExport: function (excelExportProperties, isMultipleExport, workbook, isBlob) {\n return this.ej2Instances.excelExport(excelExportProperties, isMultipleExport, workbook, isBlob);\n },\n expandAll: function () {\n return this.ej2Instances.expandAll();\n },\n expandAtLevel: function (level) {\n return this.ej2Instances.expandAtLevel(level);\n },\n expandByKey: function (key) {\n return this.ej2Instances.expandByKey(key);\n },\n expandRow: function (row, record, key, level) {\n return this.ej2Instances.expandRow(row, record, key, level);\n },\n extendRequiredModules: function (modules) {\n return this.ej2Instances.extendRequiredModules(modules);\n },\n filterByColumn: function (fieldName, filterOperator, filterValue, predicate, matchCase, ignoreAccent, actualFilterValue, actualOperator) {\n return this.ej2Instances.filterByColumn(fieldName, filterOperator, filterValue, predicate, matchCase, ignoreAccent, actualFilterValue, actualOperator);\n },\n getBatchChanges: function () {\n return this.ej2Instances.getBatchChanges();\n },\n getCellFromIndex: function (rowIndex, columnIndex) {\n return this.ej2Instances.getCellFromIndex(rowIndex, columnIndex);\n },\n getCheckedRecords: function () {\n return this.ej2Instances.getCheckedRecords();\n },\n getCheckedRowIndexes: function () {\n return this.ej2Instances.getCheckedRowIndexes();\n },\n getColumnByField: function (field) {\n return this.ej2Instances.getColumnByField(field);\n },\n getColumnByUid: function (uid) {\n return this.ej2Instances.getColumnByUid(uid);\n },\n getColumnFieldNames: function () {\n return this.ej2Instances.getColumnFieldNames();\n },\n getColumnHeaderByField: function (field) {\n return this.ej2Instances.getColumnHeaderByField(field);\n },\n getColumnHeaderByIndex: function (index) {\n return this.ej2Instances.getColumnHeaderByIndex(index);\n },\n getColumnHeaderByUid: function (uid) {\n return this.ej2Instances.getColumnHeaderByUid(uid);\n },\n getColumnIndexByField: function (field) {\n return this.ej2Instances.getColumnIndexByField(field);\n },\n getColumnIndexByUid: function (uid) {\n return this.ej2Instances.getColumnIndexByUid(uid);\n },\n getColumns: function (isRefresh) {\n return this.ej2Instances.getColumns(isRefresh);\n },\n getContent: function () {\n return this.ej2Instances.getContent();\n },\n getContentTable: function () {\n return this.ej2Instances.getContentTable();\n },\n getCurrentViewRecords: function () {\n return this.ej2Instances.getCurrentViewRecords();\n },\n getDataModule: function () {\n return this.ej2Instances.getDataModule();\n },\n getDataRows: function () {\n return this.ej2Instances.getDataRows();\n },\n getFooterContent: function () {\n return this.ej2Instances.getFooterContent();\n },\n getFooterContentTable: function () {\n return this.ej2Instances.getFooterContentTable();\n },\n getFrozenLeftColumnHeaderByIndex: function (index) {\n return this.ej2Instances.getFrozenLeftColumnHeaderByIndex(index);\n },\n getFrozenRightCellFromIndex: function (rowIndex, columnIndex) {\n return this.ej2Instances.getFrozenRightCellFromIndex(rowIndex, columnIndex);\n },\n getFrozenRightColumnHeaderByIndex: function (index) {\n return this.ej2Instances.getFrozenRightColumnHeaderByIndex(index);\n },\n getFrozenRightDataRows: function () {\n return this.ej2Instances.getFrozenRightDataRows();\n },\n getFrozenRightRowByIndex: function (index) {\n return this.ej2Instances.getFrozenRightRowByIndex(index);\n },\n getFrozenRightRows: function () {\n return this.ej2Instances.getFrozenRightRows();\n },\n getHeaderContent: function () {\n return this.ej2Instances.getHeaderContent();\n },\n getHeaderTable: function () {\n return this.ej2Instances.getHeaderTable();\n },\n getMovableCellFromIndex: function (rowIndex, columnIndex) {\n return this.ej2Instances.getMovableCellFromIndex(rowIndex, columnIndex);\n },\n getMovableColumnHeaderByIndex: function (index) {\n return this.ej2Instances.getMovableColumnHeaderByIndex(index);\n },\n getMovableDataRows: function () {\n return this.ej2Instances.getMovableDataRows();\n },\n getMovableRowByIndex: function (index) {\n return this.ej2Instances.getMovableRowByIndex(index);\n },\n getMovableRows: function () {\n return this.ej2Instances.getMovableRows();\n },\n getPager: function () {\n return this.ej2Instances.getPager();\n },\n getPrimaryKeyFieldNames: function () {\n return this.ej2Instances.getPrimaryKeyFieldNames();\n },\n getRowByIndex: function (index) {\n return this.ej2Instances.getRowByIndex(index);\n },\n getRowInfo: function (target) {\n return this.ej2Instances.getRowInfo(target);\n },\n getRows: function () {\n return this.ej2Instances.getRows();\n },\n getSelectedRecords: function () {\n return this.ej2Instances.getSelectedRecords();\n },\n getSelectedRowCellIndexes: function () {\n return this.ej2Instances.getSelectedRowCellIndexes();\n },\n getSelectedRowIndexes: function () {\n return this.ej2Instances.getSelectedRowIndexes();\n },\n getSelectedRows: function () {\n return this.ej2Instances.getSelectedRows();\n },\n getUidByColumnField: function (field) {\n return this.ej2Instances.getUidByColumnField(field);\n },\n getVisibleColumns: function () {\n return this.ej2Instances.getVisibleColumns();\n },\n getVisibleRecords: function () {\n return this.ej2Instances.getVisibleRecords();\n },\n goToPage: function (pageNo) {\n return this.ej2Instances.goToPage(pageNo);\n },\n hideColumns: function (keys, hideBy) {\n return this.ej2Instances.hideColumns(keys, hideBy);\n },\n hideSpinner: function () {\n return this.ej2Instances.hideSpinner();\n },\n indent: function (record) {\n return this.ej2Instances.indent(record);\n },\n openColumnChooser: function (x, y) {\n return this.ej2Instances.openColumnChooser(x, y);\n },\n outdent: function (record) {\n return this.ej2Instances.outdent(record);\n },\n paste: function (data, rowIndex, colIndex) {\n return this.ej2Instances.paste(data, rowIndex, colIndex);\n },\n pdfExport: function (pdfExportProperties, isMultipleExport, pdfDoc, isBlob) {\n return this.ej2Instances.pdfExport(pdfExportProperties, isMultipleExport, pdfDoc, isBlob);\n },\n print: function () {\n return this.ej2Instances.print();\n },\n refresh: function () {\n return this.ej2Instances.refresh();\n },\n refreshColumns: function (refreshUI) {\n return this.ej2Instances.refreshColumns(refreshUI);\n },\n refreshHeader: function () {\n return this.ej2Instances.refreshHeader();\n },\n reorderColumns: function (fromFName, toFName) {\n return this.ej2Instances.reorderColumns(fromFName, toFName);\n },\n reorderRows: function (fromIndexes, toIndex, position) {\n return this.ej2Instances.reorderRows(fromIndexes, toIndex, position);\n },\n saveCell: function () {\n return this.ej2Instances.saveCell();\n },\n search: function (searchString) {\n return this.ej2Instances.search(searchString);\n },\n selectCell: function (cellIndex, isToggle) {\n return this.ej2Instances.selectCell(cellIndex, isToggle);\n },\n selectCheckboxes: function (indexes) {\n return this.ej2Instances.selectCheckboxes(indexes);\n },\n selectRow: function (index, isToggle) {\n return this.ej2Instances.selectRow(index, isToggle);\n },\n selectRows: function (rowIndexes) {\n return this.ej2Instances.selectRows(rowIndexes);\n },\n setCellValue: function (key, field, value) {\n return this.ej2Instances.setCellValue(key, field, value);\n },\n setRowData: function (key, rowData) {\n return this.ej2Instances.setRowData(key, rowData);\n },\n showColumns: function (keys, showBy) {\n return this.ej2Instances.showColumns(keys, showBy);\n },\n showSpinner: function () {\n return this.ej2Instances.showSpinner();\n },\n sortByColumn: function (columnName, direction, isMultiSort) {\n return this.ej2Instances.sortByColumn(columnName, direction, isMultiSort);\n },\n startEdit: function (row) {\n return this.ej2Instances.startEdit(row);\n },\n updateCell: function (rowIndex, field, value) {\n return this.ej2Instances.updateCell(rowIndex, field, value);\n },\n updateExternalMessage: function (message) {\n return this.ej2Instances.updateExternalMessage(message);\n },\n updateRow: function (index, data) {\n return this.ej2Instances.updateRow(index, data);\n },\n }\n});\nexport var TreeGridPlugin = {\n name: 'ejs-treegrid',\n install: function (Vue) {\n Vue.component(TreeGridPlugin.name, TreeGridComponent);\n Vue.component(ColumnPlugin.name, ColumnDirective);\n Vue.component(ColumnsPlugin.name, ColumnsDirective);\n Vue.component(StackedColumnPlugin.name, StackedColumnDirective);\n Vue.component(StackedColumnsPlugin.name, StackedColumnsDirective);\n Vue.component(AggregatePlugin.name, AggregateDirective);\n Vue.component(AggregatesPlugin.name, AggregatesDirective);\n Vue.component(AggregateColumnPlugin.name, AggregateColumnDirective);\n Vue.component(AggregateColumnsPlugin.name, AggregateColumnsDirective);\n }\n};\n"],"names":["StackedColumnsDirective","vueDefineComponent","inject","custom","default","render","createElement","isExecute","h","gh","slots","isNullOrUndefined","this","$slots","class","updated","methods","getTag","StackedColumnsPlugin","name","install","Vue","component","StackedColumnDirective","StackedColumnPlugin","ColumnsDirective","ColumnsPlugin","ColumnDirective","ColumnPlugin","AggregateColumnsDirective","AggregateColumnsPlugin","AggregateColumnDirective","AggregateColumnPlugin","AggregatesDirective","AggregatesPlugin","AggregateDirective","AggregatePlugin","properties","modelProps","testProp","getProps","props","watch","emitProbs","Object","keys","push","_i","modelProps_1","length","props_1","TreeGridComponent","mixins","ComponentBase","emits","model","event","provide","data","ej2Instance","TreeGrid","propKeys","models","hasChildDirective","hasInjectedModules","tagMapper","e-columns","e-column","e-stacked-columns","e-aggregates","e-aggregate","tagNameMapper","isVue3","templateCollection","created","ej2Instances","_trigger","trigger","bindProperties","_setProperties","setProperties","clearTemplate","templateNames","templateNames_1","tempName","elementCollection","_a","elementCollection_1","ele","getValue","__vue__","$destroy","innerHTML","prop","muteOnChange","_this","referModels","map","key","test","vueInstance","$emit","eventName","eventProp","successHandler","requestType","propKey","toString","match","isUndefined","$props","isLazyUpdate","addRecord","index","position","autoFitColumns","fieldNames","clearFiltering","clearSelection","clearSorting","closeEdit","collapseAll","collapseAtLevel","level","collapseByKey","collapseRow","row","record","copy","withHeader","csvExport","excelExportProperties","isMultipleExport","workbook","isBlob","deleteRecord","fieldName","deleteRow","tr","editCell","rowIndex","field","enableToolbarItems","items","isEnable","endEdit","excelExport","expandAll","expandAtLevel","expandByKey","expandRow","extendRequiredModules","modules","filterByColumn","filterOperator","filterValue","predicate","matchCase","ignoreAccent","actualFilterValue","actualOperator","getBatchChanges","getCellFromIndex","columnIndex","getCheckedRecords","getCheckedRowIndexes","getColumnByField","getColumnByUid","uid","getColumnFieldNames","getColumnHeaderByField","getColumnHeaderByIndex","getColumnHeaderByUid","getColumnIndexByField","getColumnIndexByUid","getColumns","isRefresh","getContent","getContentTable","getCurrentViewRecords","getDataModule","getDataRows","getFooterContent","getFooterContentTable","getFrozenLeftColumnHeaderByIndex","getFrozenRightCellFromIndex","getFrozenRightColumnHeaderByIndex","getFrozenRightDataRows","getFrozenRightRowByIndex","getFrozenRightRows","getHeaderContent","getHeaderTable","getMovableCellFromIndex","getMovableColumnHeaderByIndex","getMovableDataRows","getMovableRowByIndex","getMovableRows","getPager","getPrimaryKeyFieldNames","getRowByIndex","getRowInfo","target","getRows","getSelectedRecords","getSelectedRowCellIndexes","getSelectedRowIndexes","getSelectedRows","getUidByColumnField","getVisibleColumns","getVisibleRecords","goToPage","pageNo","hideColumns","hideBy","hideSpinner","indent","openColumnChooser","x","y","outdent","paste","colIndex","pdfExport","pdfExportProperties","pdfDoc","print","refresh","refreshColumns","refreshUI","refreshHeader","reorderColumns","fromFName","toFName","reorderRows","fromIndexes","toIndex","saveCell","search","searchString","selectCell","cellIndex","isToggle","selectCheckboxes","indexes","selectRow","selectRows","rowIndexes","setCellValue","value","setRowData","rowData","showColumns","showBy","showSpinner","sortByColumn","columnName","direction","isMultiSort","startEdit","updateCell","updateExternalMessage","message","updateRow","TreeGridPlugin"],"mappings":"qZAEO,IAAIA,EAA0BC,sBACjCC,QAAUC,QAAUC,QAAS,OAC7BC,OAAQ,SAAUC,GACd,IAAKC,YAAW,CACZ,IAAIC,EAAKD,YAAiBD,EAALG,KACjBC,EAAQ,KAIZ,OAHKC,oBAAkBC,KAAKC,OAAOT,WAC/BM,EAASH,YAAoCK,KAAKC,OAAOT,QAApCQ,KAAKC,OAAOT,WAE9BI,EAAE,OAASM,MAAO,eAAiBJ,KAIlDK,QAAS,YACAR,aAAaK,KAAKT,QACnBS,KAAKT,UAGba,SACIC,OAAQ,WACJ,MAAO,wBAIRC,GACPC,KAAM,oBACNC,QAAS,SAAUC,GACfA,EAAIC,UAAUJ,EAAqBC,KAAMnB,KAGtCuB,EAAyBtB,sBAChCI,OAAQ,aAGRW,SACIC,OAAQ,WACJ,MAAO,uBAIRO,GACPL,KAAM,mBACNC,QAAS,SAAUC,GACfA,EAAIC,UAAUE,EAAoBL,KAAMI,KC3CrCE,EAAmBxB,sBAC1BC,QAAUC,QAAUC,QAAS,OAC7BC,OAAQ,SAAUC,GACd,IAAKC,YAAW,CACZ,IAAIC,EAAKD,YAAiBD,EAALG,KACjBC,EAAQ,KAIZ,OAHKC,oBAAkBC,KAAKC,OAAOT,WAC/BM,EAASH,YAAoCK,KAAKC,OAAOT,QAApCQ,KAAKC,OAAOT,WAE9BI,EAAE,OAASM,MAAO,eAAiBJ,KAIlDK,QAAS,YACAR,aAAaK,KAAKT,QACnBS,KAAKT,UAGba,SACIC,OAAQ,WACJ,MAAO,gBAIRS,GACPP,KAAM,YACNC,QAAS,SAAUC,GACfA,EAAIC,UAAUI,EAAcP,KAAMM,KAe/BE,EAAkB1B,sBACzBI,OAAQ,aAGRW,SACIC,OAAQ,WACJ,MAAO,eAIRW,GACPT,KAAM,WACNC,QAAS,SAAUC,GACfA,EAAIC,UAAUM,EAAaT,KAAMQ,KCvD9BE,EAA4B5B,sBACnCC,QAAUC,QAAUC,QAAS,OAC7BC,OAAQ,SAAUC,GACd,IAAKC,YAAW,CACZ,IAAIC,EAAKD,YAAiBD,EAALG,KACjBC,EAAQ,KAIZ,OAHKC,oBAAkBC,KAAKC,OAAOT,WAC/BM,EAASH,YAAoCK,KAAKC,OAAOT,QAApCQ,KAAKC,OAAOT,WAE9BI,EAAE,OAASM,MAAO,eAAiBJ,KAIlDK,QAAS,YACAR,aAAaK,KAAKT,QACnBS,KAAKT,UAGba,SACIC,OAAQ,WACJ,MAAO,gBAIRa,GACPX,KAAM,YACNC,QAAS,SAAUC,GACfA,EAAIC,UAAUQ,EAAuBX,KAAMU,KAqBxCE,EAA2B9B,sBAClCI,OAAQ,aAGRW,SACIC,OAAQ,WACJ,MAAO,eAIRe,GACPb,KAAM,WACNC,QAAS,SAAUC,GACfA,EAAIC,UAAUU,EAAsBb,KAAMY,KC7DvCE,EAAsBhC,sBAC7BC,QAAUC,QAAUC,QAAS,OAC7BC,OAAQ,SAAUC,GACd,IAAKC,YAAW,CACZ,IAAIC,EAAKD,YAAiBD,EAALG,KACjBC,EAAQ,KAIZ,OAHKC,oBAAkBC,KAAKC,OAAOT,WAC/BM,EAASH,YAAoCK,KAAKC,OAAOT,QAApCQ,KAAKC,OAAOT,WAE9BI,EAAE,OAASM,MAAO,eAAiBJ,KAIlDK,QAAS,YACAR,aAAaK,KAAKT,QACnBS,KAAKT,UAGba,SACIC,OAAQ,WACJ,MAAO,mBAIRiB,GACPf,KAAM,eACNC,QAAS,SAAUC,GACfA,EAAIC,UAAUY,EAAiBf,KAAMc,KAsBlCE,EAAqBlC,sBAC5BI,OAAQ,aAGRW,SACIC,OAAQ,WACJ,MAAO,kBAIRmB,GACPjB,KAAM,cACNC,QAAS,SAAUC,GACfA,EAAIC,UAAUc,EAAgBjB,KAAMgB,KCxDjCE,GAAc,eAAgB,UAAW,aAAc,mBAAoB,iBAAkB,oBAAqB,cAAe,iBAAkB,kBAAmB,gBAAiB,sBAAuB,iBAAkB,eAAgB,gBAAiB,qBAAsB,eAAgB,WAAY,kBAAmB,kBAAmB,UAAW,mBAAoB,oBAAqB,aAAc,iBAAkB,eAAgB,mBAAoB,eAAgB,iBAAkB,oBAAqB,6BAA8B,cAAe,sBAAuB,sBAAuB,0BAA2B,oBAAqB,YAAa,uBAAwB,uBAAwB,qBAAsB,iBAAkB,gBAAiB,aAAc,YAAa,kBAAmB,SAAU,YAAa,yBAA0B,oBAAqB,mBAAoB,SAAU,eAAgB,kBAAmB,YAAa,QAAS,kBAAmB,YAAa,cAAe,iBAAkB,mBAAoB,oBAAqB,oBAAqB,iBAAkB,eAAgB,mBAAoB,UAAW,kBAAmB,QAAS,cAAe,iBAAkB,gBAAiB,WAAY,cAAe,cAAe,iBAAkB,oBAAqB,kBAAmB,aAAc,kBAAmB,oBAAqB,cAAe,kBAAmB,cAAe,YAAa,iBAAkB,kBAAmB,WAAY,WAAY,YAAa,eAAgB,gBAAiB,iBAAkB,YAAa,aAAc,aAAc,kBAAmB,aAAc,kBAAmB,iBAAkB,mBAAoB,kBAAmB,UAAW,YAAa,oBAAqB,kBAAmB,kBAAmB,sBAAuB,2BAA4B,qBAAsB,WAAY,YAAa,iBAAkB,OAAQ,oBAAqB,yBAA0B,mBAAoB,gBAAiB,gBAAiB,oBAAqB,cAAe,aAAc,WAAY,eAAgB,gBAAiB,iBAAkB,UAAW,eAAgB,qBAAsB,UAAW,cAAe,eAAgB,gBAC7sEC,GAAc,cACdC,EAAWC,YAAWC,MAAOJ,IAC7BI,EAAQF,EAAS,GAAIG,EAAQH,EAAS,GAAII,EAAYC,OAAOC,KAAKH,GAC7EC,EAAUG,KAAK,eAAgB,qBAC/B,IAAK,IAAIC,EAAK,EAAGC,EAAeV,EAAYS,EAAKC,EAAaC,OAAQF,IAAM,CACxE,IAAIG,EAAUF,EAAaD,GAC3BJ,EAAUG,KAAK,UAAYI,GAQ/B,IAAWC,EAAoBlD,sBAC3BkB,KAAM,oBACNiC,QAASC,iBACTZ,MAAOA,EACPC,MAAOA,EACPY,MAAOX,EACPY,OAASC,MAAO,gBAChBC,QAAS,WAAc,OAAStD,OAAQS,KAAKT,SAC7CuD,KAAM,WACF,OACIC,YAAa,IAAIC,eACjBC,SAAUxB,EACVyB,OAAQxB,EACRyB,mBAAmB,EACnBC,oBAAoB,EACpBC,WAAaC,aAAeC,YAAcC,oBAAqB,qBAAwBC,gBAAkBC,eAAiBJ,YAAa,cACvIK,eAAiBH,oBAAqB,aACtCI,QAASjE,YACTkE,wBAGRC,QAAS,WACL9D,KAAK+D,aAAaC,SAAWhE,KAAK+D,aAAaE,QAC/CjE,KAAK+D,aAAaE,QAAUjE,KAAKiE,QACjCjE,KAAKkE,iBACLlE,KAAK+D,aAAaI,eAAiBnE,KAAK+D,aAAaK,cACrDpE,KAAK+D,aAAaK,cAAgBpE,KAAKoE,cACvCpE,KAAK+D,aAAaM,cAAgBrE,KAAKqE,cACvCrE,KAAKG,QAAUH,KAAKG,SAExBV,OAAQ,SAAUC,GACd,IAAIE,EAAKD,YAAiBD,EAALG,KACjBC,EAAQ,KAIZ,OAHKC,oBAAkBC,KAAKC,OAAOT,WAC/BM,EAASH,YAAoCK,KAAKC,OAAOT,QAApCQ,KAAKC,OAAOT,WAE9BI,EAAE,MAAOE,IAEpBM,SACIiE,cAAe,SAAUC,GAIrB,GAHKA,IACDA,EAAgBtC,OAAOC,KAAKjC,KAAK6D,yBAEjCS,EAAcjC,QAAUrC,KAAK6D,mBAC7B,IAAK,IAAI1B,EAAK,EAAGoC,EAAkBD,EAAenC,EAAKoC,EAAgBlC,OAAQF,IAAM,CACjF,IAAIqC,EAAWD,EAAgBpC,GAC3BsC,EAAoBzE,KAAK6D,mBAAmBW,GAChD,GAAIC,GAAqBA,EAAkBpC,OAAQ,CAC/C,IAAK,IAAIqC,EAAK,EAAGC,EAAsBF,EAAmBC,EAAKC,EAAoBtC,OAAQqC,IAAM,CAC7F,IAAIE,EAAMD,EAAoBD,GAChBG,WAAS,mBAAoBD,IAEvCA,EAAIE,QAAQC,WAEZH,EAAII,YACJJ,EAAII,UAAY,WAGjBhF,KAAK6D,mBAAmBW,MAK/CJ,cAAe,SAAUa,EAAMC,GAC3B,IAAIC,EAAQnF,KACRA,KAAK4D,SACL5D,KAAKkD,OAAUlD,KAAKkD,OAAyClD,KAAKkD,OAArClD,KAAK+D,aAAaqB,aAE/CpF,KAAK+D,cAAgB/D,KAAK+D,aAAaI,gBACvCnE,KAAK+D,aAAaI,eAAec,EAAMC,GAEvCD,GAAQjF,KAAKkD,QAAUlD,KAAKkD,OAAOb,QACnCL,OAAOC,KAAKgD,GAAMI,IAAI,SAAUC,GAC5BH,EAAMjC,OAAOmC,IAAI,SAAU1C,GAClB2C,IAAQ3C,GAAY,cAAc4C,KAAKD,KACpCH,EAAMvB,OACNuB,EAAMpB,aAAayB,YAAYC,MAAM,UAAYH,EAAKL,EAAKK,KAG3DH,EAAMM,MAAM,UAAYH,EAAKL,EAAKK,IAClCH,EAAMM,MAAM,eAAgBR,EAAKK,WAOzDrB,QAAS,SAAUyB,EAAWC,EAAWC,GAIrC,GAHKjG,cACDK,KAAKkD,OAAUlD,KAAKkD,OAAyClD,KAAKkD,OAArClD,KAAK+D,aAAaqB,aAEhC,WAAdM,GAAwC,UAAdA,IAA0B1F,KAAKkD,QAAkC,IAAvBlD,KAAKkD,OAAOb,QAiBhF,GAAmB,gBAAdqD,GAAyD,iBAA1BC,EAAUE,aAAmC7F,KAAKkD,QAAkC,IAAvBlD,KAAKkD,OAAOb,OAAe,CAEzHyD,GADAR,EAAMtF,KAAKkD,OAAO6C,WAAWC,MAAM,iCACrB,GACdL,GAAaL,IAAQW,cAAYN,EAAUG,MACtCnG,aAKDK,KAAKyF,MAAM,UAAYK,EAASH,EAAUG,IAC1C9F,KAAKyF,MAAM,eAAgBE,EAAUG,MALrC9F,KAAK+D,aAAayB,YAAYC,MAAM,UAAYK,EAASH,EAAUG,IACnE9F,KAAK+D,aAAayB,YAAYC,MAAM,eAAgBE,EAAUG,WAvB0B,CAChG,IAAIR,EACAQ,GADAR,EAAMtF,KAAKkD,OAAO6C,WAAWC,MAAM,sBACrB,GACdL,GAAaL,IAAQW,cAAYN,EAAUG,MACtCnG,aAMiB,WAAd+F,GAA2B1F,KAAKkG,SAAWlG,KAAKkG,OAAOC,gBACvDnG,KAAKyF,MAAM,UAAYK,EAASH,EAAUG,IAC1C9F,KAAKyF,MAAM,eAAgBE,EAAUG,MAPzC9F,KAAK+D,aAAayB,YAAYC,MAAM,UAAYK,EAASH,EAAUG,IACnE9F,KAAK+D,aAAayB,YAAYC,MAAM,eAAgBE,EAAUG,IAC9D9F,KAAK+D,aAAayB,YAAYC,MAAM,oBAAqBE,EAAUG,MAwB1E9F,KAAK+D,cAAgB/D,KAAK+D,aAAaC,UACxChE,KAAK+D,aAAaC,SAAS0B,EAAWC,EAAWC,IAGzDrG,OAAQ,WACJS,KAAKG,WAETiG,UAAW,SAAUtD,EAAMuD,EAAOC,GAC9B,OAAOtG,KAAK+D,aAAaqC,UAAUtD,EAAMuD,EAAOC,IAEpDC,eAAgB,SAAUC,GACtB,OAAOxG,KAAK+D,aAAawC,eAAeC,IAE5CC,eAAgB,WACZ,OAAOzG,KAAK+D,aAAa0C,kBAE7BC,eAAgB,WACZ,OAAO1G,KAAK+D,aAAa2C,kBAE7BC,aAAc,WACV,OAAO3G,KAAK+D,aAAa4C,gBAE7BC,UAAW,WACP,OAAO5G,KAAK+D,aAAa6C,aAE7BC,YAAa,WACT,OAAO7G,KAAK+D,aAAa8C,eAE7BC,gBAAiB,SAAUC,GACvB,OAAO/G,KAAK+D,aAAa+C,gBAAgBC,IAE7CC,cAAe,SAAU1B,GACrB,OAAOtF,KAAK+D,aAAaiD,cAAc1B,IAE3C2B,YAAa,SAAUC,EAAKC,EAAQ7B,GAChC,OAAOtF,KAAK+D,aAAakD,YAAYC,EAAKC,EAAQ7B,IAEtD8B,KAAM,SAAUC,GACZ,OAAOrH,KAAK+D,aAAaqD,KAAKC,IAElCC,UAAW,SAAUC,EAAuBC,EAAkBC,EAAUC,GACpE,OAAO1H,KAAK+D,aAAauD,UAAUC,EAAuBC,EAAkBC,EAAUC,IAE1FC,aAAc,SAAUC,EAAW9E,GAC/B,OAAO9C,KAAK+D,aAAa4D,aAAaC,EAAW9E,IAErD+E,UAAW,SAAUC,GACjB,OAAO9H,KAAK+D,aAAa8D,UAAUC,IAEvCC,SAAU,SAAUC,EAAUC,GAC1B,OAAOjI,KAAK+D,aAAagE,SAASC,EAAUC,IAEhDC,mBAAoB,SAAUC,EAAOC,GACjC,OAAOpI,KAAK+D,aAAamE,mBAAmBC,EAAOC,IAEvDC,QAAS,WACL,OAAOrI,KAAK+D,aAAasE,WAE7BC,YAAa,SAAUf,EAAuBC,EAAkBC,EAAUC,GACtE,OAAO1H,KAAK+D,aAAauE,YAAYf,EAAuBC,EAAkBC,EAAUC,IAE5Fa,UAAW,WACP,OAAOvI,KAAK+D,aAAawE,aAE7BC,cAAe,SAAUzB,GACrB,OAAO/G,KAAK+D,aAAayE,cAAczB,IAE3C0B,YAAa,SAAUnD,GACnB,OAAOtF,KAAK+D,aAAa0E,YAAYnD,IAEzCoD,UAAW,SAAUxB,EAAKC,EAAQ7B,EAAKyB,GACnC,OAAO/G,KAAK+D,aAAa2E,UAAUxB,EAAKC,EAAQ7B,EAAKyB,IAEzD4B,sBAAuB,SAAUC,GAC7B,OAAO5I,KAAK+D,aAAa4E,sBAAsBC,IAEnDC,eAAgB,SAAUjB,EAAWkB,EAAgBC,EAAaC,EAAWC,EAAWC,EAAcC,EAAmBC,GACrH,OAAOpJ,KAAK+D,aAAa8E,eAAejB,EAAWkB,EAAgBC,EAAaC,EAAWC,EAAWC,EAAcC,EAAmBC,IAE3IC,gBAAiB,WACb,OAAOrJ,KAAK+D,aAAasF,mBAE7BC,iBAAkB,SAAUtB,EAAUuB,GAClC,OAAOvJ,KAAK+D,aAAauF,iBAAiBtB,EAAUuB,IAExDC,kBAAmB,WACf,OAAOxJ,KAAK+D,aAAayF,qBAE7BC,qBAAsB,WAClB,OAAOzJ,KAAK+D,aAAa0F,wBAE7BC,iBAAkB,SAAUzB,GACxB,OAAOjI,KAAK+D,aAAa2F,iBAAiBzB,IAE9C0B,eAAgB,SAAUC,GACtB,OAAO5J,KAAK+D,aAAa4F,eAAeC,IAE5CC,oBAAqB,WACjB,OAAO7J,KAAK+D,aAAa8F,uBAE7BC,uBAAwB,SAAU7B,GAC9B,OAAOjI,KAAK+D,aAAa+F,uBAAuB7B,IAEpD8B,uBAAwB,SAAU1D,GAC9B,OAAOrG,KAAK+D,aAAagG,uBAAuB1D,IAEpD2D,qBAAsB,SAAUJ,GAC5B,OAAO5J,KAAK+D,aAAaiG,qBAAqBJ,IAElDK,sBAAuB,SAAUhC,GAC7B,OAAOjI,KAAK+D,aAAakG,sBAAsBhC,IAEnDiC,oBAAqB,SAAUN,GAC3B,OAAO5J,KAAK+D,aAAamG,oBAAoBN,IAEjDO,WAAY,SAAUC,GAClB,OAAOpK,KAAK+D,aAAaoG,WAAWC,IAExCC,WAAY,WACR,OAAOrK,KAAK+D,aAAasG,cAE7BC,gBAAiB,WACb,OAAOtK,KAAK+D,aAAauG,mBAE7BC,sBAAuB,WACnB,OAAOvK,KAAK+D,aAAawG,yBAE7BC,cAAe,WACX,OAAOxK,KAAK+D,aAAayG,iBAE7BC,YAAa,WACT,OAAOzK,KAAK+D,aAAa0G,eAE7BC,iBAAkB,WACd,OAAO1K,KAAK+D,aAAa2G,oBAE7BC,sBAAuB,WACnB,OAAO3K,KAAK+D,aAAa4G,yBAE7BC,iCAAkC,SAAUvE,GACxC,OAAOrG,KAAK+D,aAAa6G,iCAAiCvE,IAE9DwE,4BAA6B,SAAU7C,EAAUuB,GAC7C,OAAOvJ,KAAK+D,aAAa8G,4BAA4B7C,EAAUuB,IAEnEuB,kCAAmC,SAAUzE,GACzC,OAAOrG,KAAK+D,aAAa+G,kCAAkCzE,IAE/D0E,uBAAwB,WACpB,OAAO/K,KAAK+D,aAAagH,0BAE7BC,yBAA0B,SAAU3E,GAChC,OAAOrG,KAAK+D,aAAaiH,yBAAyB3E,IAEtD4E,mBAAoB,WAChB,OAAOjL,KAAK+D,aAAakH,sBAE7BC,iBAAkB,WACd,OAAOlL,KAAK+D,aAAamH,oBAE7BC,eAAgB,WACZ,OAAOnL,KAAK+D,aAAaoH,kBAE7BC,wBAAyB,SAAUpD,EAAUuB,GACzC,OAAOvJ,KAAK+D,aAAaqH,wBAAwBpD,EAAUuB,IAE/D8B,8BAA+B,SAAUhF,GACrC,OAAOrG,KAAK+D,aAAasH,8BAA8BhF,IAE3DiF,mBAAoB,WAChB,OAAOtL,KAAK+D,aAAauH,sBAE7BC,qBAAsB,SAAUlF,GAC5B,OAAOrG,KAAK+D,aAAawH,qBAAqBlF,IAElDmF,eAAgB,WACZ,OAAOxL,KAAK+D,aAAayH,kBAE7BC,SAAU,WACN,OAAOzL,KAAK+D,aAAa0H,YAE7BC,wBAAyB,WACrB,OAAO1L,KAAK+D,aAAa2H,2BAE7BC,cAAe,SAAUtF,GACrB,OAAOrG,KAAK+D,aAAa4H,cAActF,IAE3CuF,WAAY,SAAUC,GAClB,OAAO7L,KAAK+D,aAAa6H,WAAWC,IAExCC,QAAS,WACL,OAAO9L,KAAK+D,aAAa+H,WAE7BC,mBAAoB,WAChB,OAAO/L,KAAK+D,aAAagI,sBAE7BC,0BAA2B,WACvB,OAAOhM,KAAK+D,aAAaiI,6BAE7BC,sBAAuB,WACnB,OAAOjM,KAAK+D,aAAakI,yBAE7BC,gBAAiB,WACb,OAAOlM,KAAK+D,aAAamI,mBAE7BC,oBAAqB,SAAUlE,GAC3B,OAAOjI,KAAK+D,aAAaoI,oBAAoBlE,IAEjDmE,kBAAmB,WACf,OAAOpM,KAAK+D,aAAaqI,qBAE7BC,kBAAmB,WACf,OAAOrM,KAAK+D,aAAasI,qBAE7BC,SAAU,SAAUC,GAChB,OAAOvM,KAAK+D,aAAauI,SAASC,IAEtCC,YAAa,SAAUvK,EAAMwK,GACzB,OAAOzM,KAAK+D,aAAayI,YAAYvK,EAAMwK,IAE/CC,YAAa,WACT,OAAO1M,KAAK+D,aAAa2I,eAE7BC,OAAQ,SAAUxF,GACd,OAAOnH,KAAK+D,aAAa4I,OAAOxF,IAEpCyF,kBAAmB,SAAUC,EAAGC,GAC5B,OAAO9M,KAAK+D,aAAa6I,kBAAkBC,EAAGC,IAElDC,QAAS,SAAU5F,GACf,OAAOnH,KAAK+D,aAAagJ,QAAQ5F,IAErC6F,MAAO,SAAUlK,EAAMkF,EAAUiF,GAC7B,OAAOjN,KAAK+D,aAAaiJ,MAAMlK,EAAMkF,EAAUiF,IAEnDC,UAAW,SAAUC,EAAqB3F,EAAkB4F,EAAQ1F,GAChE,OAAO1H,KAAK+D,aAAamJ,UAAUC,EAAqB3F,EAAkB4F,EAAQ1F,IAEtF2F,MAAO,WACH,OAAOrN,KAAK+D,aAAasJ,SAE7BC,QAAS,WACL,OAAOtN,KAAK+D,aAAauJ,WAE7BC,eAAgB,SAAUC,GACtB,OAAOxN,KAAK+D,aAAawJ,eAAeC,IAE5CC,cAAe,WACX,OAAOzN,KAAK+D,aAAa0J,iBAE7BC,eAAgB,SAAUC,EAAWC,GACjC,OAAO5N,KAAK+D,aAAa2J,eAAeC,EAAWC,IAEvDC,YAAa,SAAUC,EAAaC,EAASzH,GACzC,OAAOtG,KAAK+D,aAAa8J,YAAYC,EAAaC,EAASzH,IAE/D0H,SAAU,WACN,OAAOhO,KAAK+D,aAAaiK,YAE7BC,OAAQ,SAAUC,GACd,OAAOlO,KAAK+D,aAAakK,OAAOC,IAEpCC,WAAY,SAAUC,EAAWC,GAC7B,OAAOrO,KAAK+D,aAAaoK,WAAWC,EAAWC,IAEnDC,iBAAkB,SAAUC,GACxB,OAAOvO,KAAK+D,aAAauK,iBAAiBC,IAE9CC,UAAW,SAAUnI,EAAOgI,GACxB,OAAOrO,KAAK+D,aAAayK,UAAUnI,EAAOgI,IAE9CI,WAAY,SAAUC,GAClB,OAAO1O,KAAK+D,aAAa0K,WAAWC,IAExCC,aAAc,SAAUrJ,EAAK2C,EAAO2G,GAChC,OAAO5O,KAAK+D,aAAa4K,aAAarJ,EAAK2C,EAAO2G,IAEtDC,WAAY,SAAUvJ,EAAKwJ,GACvB,OAAO9O,KAAK+D,aAAa8K,WAAWvJ,EAAKwJ,IAE7CC,YAAa,SAAU9M,EAAM+M,GACzB,OAAOhP,KAAK+D,aAAagL,YAAY9M,EAAM+M,IAE/CC,YAAa,WACT,OAAOjP,KAAK+D,aAAakL,eAE7BC,aAAc,SAAUC,EAAYC,EAAWC,GAC3C,OAAOrP,KAAK+D,aAAamL,aAAaC,EAAYC,EAAWC,IAEjEC,UAAW,SAAUpI,GACjB,OAAOlH,KAAK+D,aAAauL,UAAUpI,IAEvCqI,WAAY,SAAUvH,EAAUC,EAAO2G,GACnC,OAAO5O,KAAK+D,aAAawL,WAAWvH,EAAUC,EAAO2G,IAEzDY,sBAAuB,SAAUC,GAC7B,OAAOzP,KAAK+D,aAAayL,sBAAsBC,IAEnDC,UAAW,SAAUrJ,EAAOvD,GACxB,OAAO9C,KAAK+D,aAAa2L,UAAUrJ,EAAOvD,OAI3C6M,GACPpP,KAAM,eACNC,QAAS,SAAUC,GACfA,EAAIC,UAAUiP,EAAepP,KAAMgC,GACnC9B,EAAIC,UAAUM,EAAaT,KAAMQ,GACjCN,EAAIC,UAAUI,EAAcP,KAAMM,GAClCJ,EAAIC,UAAUE,EAAoBL,KAAMI,GACxCF,EAAIC,UAAUJ,EAAqBC,KAAMnB,GACzCqB,EAAIC,UAAUc,EAAgBjB,KAAMgB,GACpCd,EAAIC,UAAUY,EAAiBf,KAAMc,GACrCZ,EAAIC,UAAUU,EAAsBb,KAAMY,GAC1CV,EAAIC,UAAUQ,EAAuBX,KAAMU"}
|
|
1
|
+
{"version":3,"file":"ej2-vue-treegrid.umd.min.js","sources":["../src/treegrid/stacked-column.directive.js","../src/treegrid/columns.directive.js","../src/treegrid/aggregate-columns.directive.js","../src/treegrid/aggregates.directive.js","../src/treegrid/treegrid.component.js"],"sourcesContent":["import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nexport var StackedColumnsDirective = vueDefineComponent({\n inject: { custom: { default: null } },\n render: function (createElement) {\n if (!isExecute) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', { class: 'e-directive' }, slots);\n }\n return;\n },\n updated: function () {\n if (!isExecute && this.custom) {\n this.custom();\n }\n },\n methods: {\n getTag: function () {\n return 'e-stacked-columns';\n }\n }\n});\nexport var StackedColumnsPlugin = {\n name: 'e-stacked-columns',\n install: function (Vue) {\n Vue.component(StackedColumnsPlugin.name, StackedColumnsDirective);\n }\n};\nexport var StackedColumnDirective = vueDefineComponent({\n render: function () {\n return;\n },\n methods: {\n getTag: function () {\n return 'e-stacked-column';\n }\n }\n});\nexport var StackedColumnPlugin = {\n name: 'e-stacked-column',\n install: function (Vue) {\n Vue.component(StackedColumnPlugin.name, StackedColumnDirective);\n }\n};\n","import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nexport var ColumnsDirective = vueDefineComponent({\n inject: { custom: { default: null } },\n render: function (createElement) {\n if (!isExecute) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', { class: 'e-directive' }, slots);\n }\n return;\n },\n updated: function () {\n if (!isExecute && this.custom) {\n this.custom();\n }\n },\n methods: {\n getTag: function () {\n return 'e-columns';\n }\n }\n});\nexport var ColumnsPlugin = {\n name: 'e-columns',\n install: function (Vue) {\n Vue.component(ColumnsPlugin.name, ColumnsDirective);\n }\n};\n/**\n * `e-column` directive represent a column of the VueJS TreeGrid.\n * It must be contained in a TreeGrid component(`ejs-treegrid`).\n * ```vue\n * <ejs-treegrid :dataSource='data' allowPaging='true' allowSorting='true'>\n * <e-columns>\n * <e-column field='ID' width='100'/>\n * <e-column field='name' headerText='Name' width='100'/>\n * </e-columns>\n * </ejs-treegrid>\n * ```\n */\nexport var ColumnDirective = vueDefineComponent({\n render: function () {\n return;\n },\n methods: {\n getTag: function () {\n return 'e-column';\n }\n }\n});\nexport var ColumnPlugin = {\n name: 'e-column',\n install: function (Vue) {\n Vue.component(ColumnPlugin.name, ColumnDirective);\n }\n};\n","import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nexport var AggregateColumnsDirective = vueDefineComponent({\n inject: { custom: { default: null } },\n render: function (createElement) {\n if (!isExecute) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', { class: 'e-directive' }, slots);\n }\n return;\n },\n updated: function () {\n if (!isExecute && this.custom) {\n this.custom();\n }\n },\n methods: {\n getTag: function () {\n return 'e-columns';\n }\n }\n});\nexport var AggregateColumnsPlugin = {\n name: 'e-columns',\n install: function (Vue) {\n Vue.component(AggregateColumnsPlugin.name, AggregateColumnsDirective);\n }\n};\n/**\n * `e-aggregate->e-column` directive represent a aggregate column of the VueJS TreeGrid.\n * ```vue\n * <ejs-treegrid :dataSource='data' allowPaging='true' allowSorting='true'>\n * <e-columns>\n * <e-column field='ID' width='100'/>\n * <e-column field='name' headerText='Name' width='100'/>\n * </e-columns>\n * <e-aggregates>\n * <e-aggregate>\n * <e-columns>\n * <e-column field='ID' type='Min'/>\n * </e-columns>\n * </e-aggregate>\n * </e-aggregates>\n * </ejs-treegrid>\n * ```\n */\nexport var AggregateColumnDirective = vueDefineComponent({\n render: function () {\n return;\n },\n methods: {\n getTag: function () {\n return 'e-column';\n }\n }\n});\nexport var AggregateColumnPlugin = {\n name: 'e-column',\n install: function (Vue) {\n Vue.component(AggregateColumnPlugin.name, AggregateColumnDirective);\n }\n};\n","import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nexport var AggregatesDirective = vueDefineComponent({\n inject: { custom: { default: null } },\n render: function (createElement) {\n if (!isExecute) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', { class: 'e-directive' }, slots);\n }\n return;\n },\n updated: function () {\n if (!isExecute && this.custom) {\n this.custom();\n }\n },\n methods: {\n getTag: function () {\n return 'e-aggregates';\n }\n }\n});\nexport var AggregatesPlugin = {\n name: 'e-aggregates',\n install: function (Vue) {\n Vue.component(AggregatesPlugin.name, AggregatesDirective);\n }\n};\n/**\n * `e-aggregate` directive represent a aggregate row of the VueJS TreeGrid.\n * It must be contained in a TreeGrid component(`ejs-treegrid`).\n * ```vue\n * <ejs-treegrid :dataSource]='data' allowPaging='true' allowSorting='true'>\n * <e-columns>\n * <e-column field='ID' width='100'/>\n * <e-column field='name' headerText='Name' width='100'/>\n * </e-columns>\n * <e-aggregates>\n * <e-aggregate>\n * <e-columns>\n * <e-column field='ID' type='Min'/>\n * </e-columns>\n * </e-aggregate>\n * </e-aggregates>\n * </ejs-treegrid>\n * ```\n */\nexport var AggregateDirective = vueDefineComponent({\n render: function () {\n return;\n },\n methods: {\n getTag: function () {\n return 'e-aggregate';\n }\n }\n});\nexport var AggregatePlugin = {\n name: 'e-aggregate',\n install: function (Vue) {\n Vue.component(AggregatePlugin.name, AggregateDirective);\n }\n};\n","import { ComponentBase, gh, getProps, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';\nimport { isUndefined } from '@syncfusion/ej2-base';\nimport { TreeGrid } from '@syncfusion/ej2-treegrid';\nimport { StackedColumnsDirective, StackedColumnDirective, StackedColumnsPlugin, StackedColumnPlugin } from './stacked-column.directive';\nimport { ColumnsDirective, ColumnDirective, ColumnsPlugin, ColumnPlugin } from './columns.directive';\nimport { AggregateColumnsDirective, AggregateColumnDirective, AggregateColumnsPlugin, AggregateColumnPlugin } from './aggregate-columns.directive';\nimport { AggregatesDirective, AggregateDirective, AggregatesPlugin, AggregatePlugin } from './aggregates.directive';\nexport var properties = ['isLazyUpdate', 'plugins', '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', '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', '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'];\nexport var modelProps = ['dataSource'];\nexport var testProp = getProps({ props: properties });\nexport var props = testProp[0], watch = testProp[1], emitProbs = Object.keys(watch);\nemitProbs.push('modelchanged', 'update:modelValue');\nfor (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {\n var props_1 = modelProps_1[_i];\n emitProbs.push('update:' + props_1);\n}\n/**\n * `ejs-treegrid` represents the VueJS TreeGrid Component.\n * ```vue\n * <ejs-treegrid :dataSource='data' allowPaging='true' allowSorting='true'></ejs-treegrid>\n * ```\n */\nexport var TreeGridComponent = vueDefineComponent({\n name: 'TreeGridComponent',\n mixins: [ComponentBase],\n props: props,\n watch: watch,\n emits: emitProbs,\n model: { event: 'modelchanged' },\n provide: function () { return { custom: this.custom }; },\n data: function () {\n return {\n ej2Instance: new TreeGrid({}),\n propKeys: properties,\n models: modelProps,\n hasChildDirective: true,\n hasInjectedModules: true,\n tagMapper: { \"e-columns\": { \"e-column\": { \"e-stacked-columns\": \"e-stacked-column\" } }, \"e-aggregates\": { \"e-aggregate\": { \"e-columns\": \"e-column\" } } },\n tagNameMapper: { \"e-stacked-columns\": \"e-columns\" },\n isVue3: !isExecute,\n templateCollection: {},\n };\n },\n created: function () {\n this.ej2Instances._trigger = this.ej2Instances.trigger;\n this.ej2Instances.trigger = this.trigger;\n this.bindProperties();\n this.ej2Instances._setProperties = this.ej2Instances.setProperties;\n this.ej2Instances.setProperties = this.setProperties;\n this.ej2Instances.clearTemplate = this.clearTemplate;\n this.updated = this.updated;\n },\n render: function (createElement) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', slots);\n },\n methods: {\n clearTemplate: function (templateNames) {\n if (!templateNames) {\n templateNames = Object.keys(this.templateCollection || {});\n }\n if (templateNames.length && this.templateCollection) {\n for (var _i = 0, templateNames_1 = templateNames; _i < templateNames_1.length; _i++) {\n var tempName = templateNames_1[_i];\n var elementCollection = this.templateCollection[tempName];\n if (elementCollection && elementCollection.length) {\n for (var _a = 0, elementCollection_1 = elementCollection; _a < elementCollection_1.length; _a++) {\n var ele = elementCollection_1[_a];\n var destroy = getValue('__vue__.$destroy', ele);\n if (destroy) {\n ele.__vue__.$destroy();\n }\n if (ele.innerHTML) {\n ele.innerHTML = '';\n }\n }\n delete this.templateCollection[tempName];\n }\n }\n }\n },\n setProperties: function (prop, muteOnChange) {\n var _this = this;\n if (this.isVue3) {\n this.models = !this.models ? this.ej2Instances.referModels : this.models;\n }\n if (this.ej2Instances && this.ej2Instances._setProperties) {\n this.ej2Instances._setProperties(prop, muteOnChange);\n }\n if (prop && this.models && this.models.length) {\n Object.keys(prop).map(function (key) {\n _this.models.map(function (model) {\n if ((key === model) && !(/datasource/i.test(key))) {\n if (_this.isVue3) {\n _this.ej2Instances.vueInstance.$emit('update:' + key, prop[key]);\n }\n else {\n _this.$emit('update:' + key, prop[key]);\n _this.$emit('modelchanged', prop[key]);\n }\n }\n });\n });\n }\n },\n trigger: function (eventName, eventProp, successHandler) {\n if (!isExecute) {\n this.models = !this.models ? this.ej2Instances.referModels : this.models;\n }\n if ((eventName === 'change' || eventName === 'input') && this.models && (this.models.length !== 0)) {\n var key = this.models.toString().match(/checked|value/) || [];\n var propKey = key[0];\n if (eventProp && key && !isUndefined(eventProp[propKey])) {\n if (!isExecute) {\n this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);\n this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);\n this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);\n }\n else {\n if (eventName === 'change' || (this.$props && !this.$props.isLazyUpdate)) {\n this.$emit('update:' + propKey, eventProp[propKey]);\n this.$emit('modelchanged', eventProp[propKey]);\n }\n }\n }\n }\n else if ((eventName === 'actionBegin' && eventProp.requestType === 'dateNavigate') && this.models && (this.models.length !== 0)) {\n var key = this.models.toString().match(/currentView|selectedDate/) || [];\n var propKey = key[0];\n if (eventProp && key && !isUndefined(eventProp[propKey])) {\n if (!isExecute) {\n this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);\n this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);\n }\n else {\n this.$emit('update:' + propKey, eventProp[propKey]);\n this.$emit('modelchanged', eventProp[propKey]);\n }\n }\n }\n if ((this.ej2Instances && this.ej2Instances._trigger)) {\n this.ej2Instances._trigger(eventName, eventProp, successHandler);\n }\n },\n custom: function () {\n this.updated();\n },\n addRecord: function (data, index, position) {\n return this.ej2Instances.addRecord(data, index, position);\n },\n autoFitColumns: function (fieldNames) {\n return this.ej2Instances.autoFitColumns(fieldNames);\n },\n clearFiltering: function () {\n return this.ej2Instances.clearFiltering();\n },\n clearSelection: function () {\n return this.ej2Instances.clearSelection();\n },\n clearSorting: function () {\n return this.ej2Instances.clearSorting();\n },\n closeEdit: function () {\n return this.ej2Instances.closeEdit();\n },\n collapseAll: function () {\n return this.ej2Instances.collapseAll();\n },\n collapseAtLevel: function (level) {\n return this.ej2Instances.collapseAtLevel(level);\n },\n collapseByKey: function (key) {\n return this.ej2Instances.collapseByKey(key);\n },\n collapseRow: function (row, record, key) {\n return this.ej2Instances.collapseRow(row, record, key);\n },\n copy: function (withHeader) {\n return this.ej2Instances.copy(withHeader);\n },\n csvExport: function (excelExportProperties, isMultipleExport, workbook, isBlob) {\n return this.ej2Instances.csvExport(excelExportProperties, isMultipleExport, workbook, isBlob);\n },\n deleteRecord: function (fieldName, data) {\n return this.ej2Instances.deleteRecord(fieldName, data);\n },\n deleteRow: function (tr) {\n return this.ej2Instances.deleteRow(tr);\n },\n editCell: function (rowIndex, field) {\n return this.ej2Instances.editCell(rowIndex, field);\n },\n enableToolbarItems: function (items, isEnable) {\n return this.ej2Instances.enableToolbarItems(items, isEnable);\n },\n endEdit: function () {\n return this.ej2Instances.endEdit();\n },\n excelExport: function (excelExportProperties, isMultipleExport, workbook, isBlob) {\n return this.ej2Instances.excelExport(excelExportProperties, isMultipleExport, workbook, isBlob);\n },\n expandAll: function () {\n return this.ej2Instances.expandAll();\n },\n expandAtLevel: function (level) {\n return this.ej2Instances.expandAtLevel(level);\n },\n expandByKey: function (key) {\n return this.ej2Instances.expandByKey(key);\n },\n expandRow: function (row, record, key, level) {\n return this.ej2Instances.expandRow(row, record, key, level);\n },\n extendRequiredModules: function (modules) {\n return this.ej2Instances.extendRequiredModules(modules);\n },\n filterByColumn: function (fieldName, filterOperator, filterValue, predicate, matchCase, ignoreAccent, actualFilterValue, actualOperator) {\n return this.ej2Instances.filterByColumn(fieldName, filterOperator, filterValue, predicate, matchCase, ignoreAccent, actualFilterValue, actualOperator);\n },\n getBatchChanges: function () {\n return this.ej2Instances.getBatchChanges();\n },\n getCellFromIndex: function (rowIndex, columnIndex) {\n return this.ej2Instances.getCellFromIndex(rowIndex, columnIndex);\n },\n getCheckedRecords: function () {\n return this.ej2Instances.getCheckedRecords();\n },\n getCheckedRowIndexes: function () {\n return this.ej2Instances.getCheckedRowIndexes();\n },\n getColumnByField: function (field) {\n return this.ej2Instances.getColumnByField(field);\n },\n getColumnByUid: function (uid) {\n return this.ej2Instances.getColumnByUid(uid);\n },\n getColumnFieldNames: function () {\n return this.ej2Instances.getColumnFieldNames();\n },\n getColumnHeaderByField: function (field) {\n return this.ej2Instances.getColumnHeaderByField(field);\n },\n getColumnHeaderByIndex: function (index) {\n return this.ej2Instances.getColumnHeaderByIndex(index);\n },\n getColumnHeaderByUid: function (uid) {\n return this.ej2Instances.getColumnHeaderByUid(uid);\n },\n getColumnIndexByField: function (field) {\n return this.ej2Instances.getColumnIndexByField(field);\n },\n getColumnIndexByUid: function (uid) {\n return this.ej2Instances.getColumnIndexByUid(uid);\n },\n getColumns: function (isRefresh) {\n return this.ej2Instances.getColumns(isRefresh);\n },\n getContent: function () {\n return this.ej2Instances.getContent();\n },\n getContentTable: function () {\n return this.ej2Instances.getContentTable();\n },\n getCurrentViewRecords: function () {\n return this.ej2Instances.getCurrentViewRecords();\n },\n getDataModule: function () {\n return this.ej2Instances.getDataModule();\n },\n getDataRows: function () {\n return this.ej2Instances.getDataRows();\n },\n getFooterContent: function () {\n return this.ej2Instances.getFooterContent();\n },\n getFooterContentTable: function () {\n return this.ej2Instances.getFooterContentTable();\n },\n getFrozenLeftColumnHeaderByIndex: function (index) {\n return this.ej2Instances.getFrozenLeftColumnHeaderByIndex(index);\n },\n getFrozenRightCellFromIndex: function (rowIndex, columnIndex) {\n return this.ej2Instances.getFrozenRightCellFromIndex(rowIndex, columnIndex);\n },\n getFrozenRightColumnHeaderByIndex: function (index) {\n return this.ej2Instances.getFrozenRightColumnHeaderByIndex(index);\n },\n getFrozenRightDataRows: function () {\n return this.ej2Instances.getFrozenRightDataRows();\n },\n getFrozenRightRowByIndex: function (index) {\n return this.ej2Instances.getFrozenRightRowByIndex(index);\n },\n getFrozenRightRows: function () {\n return this.ej2Instances.getFrozenRightRows();\n },\n getHeaderContent: function () {\n return this.ej2Instances.getHeaderContent();\n },\n getHeaderTable: function () {\n return this.ej2Instances.getHeaderTable();\n },\n getMovableCellFromIndex: function (rowIndex, columnIndex) {\n return this.ej2Instances.getMovableCellFromIndex(rowIndex, columnIndex);\n },\n getMovableColumnHeaderByIndex: function (index) {\n return this.ej2Instances.getMovableColumnHeaderByIndex(index);\n },\n getMovableDataRows: function () {\n return this.ej2Instances.getMovableDataRows();\n },\n getMovableRowByIndex: function (index) {\n return this.ej2Instances.getMovableRowByIndex(index);\n },\n getMovableRows: function () {\n return this.ej2Instances.getMovableRows();\n },\n getPager: function () {\n return this.ej2Instances.getPager();\n },\n getPrimaryKeyFieldNames: function () {\n return this.ej2Instances.getPrimaryKeyFieldNames();\n },\n getRowByIndex: function (index) {\n return this.ej2Instances.getRowByIndex(index);\n },\n getRowInfo: function (target) {\n return this.ej2Instances.getRowInfo(target);\n },\n getRows: function () {\n return this.ej2Instances.getRows();\n },\n getSelectedRecords: function () {\n return this.ej2Instances.getSelectedRecords();\n },\n getSelectedRowCellIndexes: function () {\n return this.ej2Instances.getSelectedRowCellIndexes();\n },\n getSelectedRowIndexes: function () {\n return this.ej2Instances.getSelectedRowIndexes();\n },\n getSelectedRows: function () {\n return this.ej2Instances.getSelectedRows();\n },\n getUidByColumnField: function (field) {\n return this.ej2Instances.getUidByColumnField(field);\n },\n getVisibleColumns: function () {\n return this.ej2Instances.getVisibleColumns();\n },\n getVisibleRecords: function () {\n return this.ej2Instances.getVisibleRecords();\n },\n goToPage: function (pageNo) {\n return this.ej2Instances.goToPage(pageNo);\n },\n hideColumns: function (keys, hideBy) {\n return this.ej2Instances.hideColumns(keys, hideBy);\n },\n hideSpinner: function () {\n return this.ej2Instances.hideSpinner();\n },\n indent: function (record) {\n return this.ej2Instances.indent(record);\n },\n openColumnChooser: function (x, y) {\n return this.ej2Instances.openColumnChooser(x, y);\n },\n outdent: function (record) {\n return this.ej2Instances.outdent(record);\n },\n paste: function (data, rowIndex, colIndex) {\n return this.ej2Instances.paste(data, rowIndex, colIndex);\n },\n pdfExport: function (pdfExportProperties, isMultipleExport, pdfDoc, isBlob) {\n return this.ej2Instances.pdfExport(pdfExportProperties, isMultipleExport, pdfDoc, isBlob);\n },\n print: function () {\n return this.ej2Instances.print();\n },\n refresh: function () {\n return this.ej2Instances.refresh();\n },\n refreshColumns: function (refreshUI) {\n return this.ej2Instances.refreshColumns(refreshUI);\n },\n refreshHeader: function () {\n return this.ej2Instances.refreshHeader();\n },\n reorderColumns: function (fromFName, toFName) {\n return this.ej2Instances.reorderColumns(fromFName, toFName);\n },\n reorderRows: function (fromIndexes, toIndex, position) {\n return this.ej2Instances.reorderRows(fromIndexes, toIndex, position);\n },\n saveCell: function () {\n return this.ej2Instances.saveCell();\n },\n search: function (searchString) {\n return this.ej2Instances.search(searchString);\n },\n selectCell: function (cellIndex, isToggle) {\n return this.ej2Instances.selectCell(cellIndex, isToggle);\n },\n selectCheckboxes: function (indexes) {\n return this.ej2Instances.selectCheckboxes(indexes);\n },\n selectRow: function (index, isToggle) {\n return this.ej2Instances.selectRow(index, isToggle);\n },\n selectRows: function (rowIndexes) {\n return this.ej2Instances.selectRows(rowIndexes);\n },\n serverCsvExport: function (url) {\n return this.ej2Instances.serverCsvExport(url);\n },\n serverExcelExport: function (url) {\n return this.ej2Instances.serverExcelExport(url);\n },\n serverPdfExport: function (url) {\n return this.ej2Instances.serverPdfExport(url);\n },\n setCellValue: function (key, field, value) {\n return this.ej2Instances.setCellValue(key, field, value);\n },\n setRowData: function (key, rowData) {\n return this.ej2Instances.setRowData(key, rowData);\n },\n showColumns: function (keys, showBy) {\n return this.ej2Instances.showColumns(keys, showBy);\n },\n showSpinner: function () {\n return this.ej2Instances.showSpinner();\n },\n sortByColumn: function (columnName, direction, isMultiSort) {\n return this.ej2Instances.sortByColumn(columnName, direction, isMultiSort);\n },\n startEdit: function (row) {\n return this.ej2Instances.startEdit(row);\n },\n updateCell: function (rowIndex, field, value) {\n return this.ej2Instances.updateCell(rowIndex, field, value);\n },\n updateExternalMessage: function (message) {\n return this.ej2Instances.updateExternalMessage(message);\n },\n updateRow: function (index, data) {\n return this.ej2Instances.updateRow(index, data);\n },\n }\n});\nexport var TreeGridPlugin = {\n name: 'ejs-treegrid',\n install: function (Vue) {\n Vue.component(TreeGridPlugin.name, TreeGridComponent);\n Vue.component(ColumnPlugin.name, ColumnDirective);\n Vue.component(ColumnsPlugin.name, ColumnsDirective);\n Vue.component(StackedColumnPlugin.name, StackedColumnDirective);\n Vue.component(StackedColumnsPlugin.name, StackedColumnsDirective);\n Vue.component(AggregatePlugin.name, AggregateDirective);\n Vue.component(AggregatesPlugin.name, AggregatesDirective);\n Vue.component(AggregateColumnPlugin.name, AggregateColumnDirective);\n Vue.component(AggregateColumnsPlugin.name, AggregateColumnsDirective);\n }\n};\n"],"names":["StackedColumnsDirective","vueDefineComponent","inject","custom","default","render","createElement","isExecute","h","gh","slots","isNullOrUndefined","this","$slots","class","updated","methods","getTag","StackedColumnsPlugin","name","install","Vue","component","StackedColumnDirective","StackedColumnPlugin","ColumnsDirective","ColumnsPlugin","ColumnDirective","ColumnPlugin","AggregateColumnsDirective","AggregateColumnsPlugin","AggregateColumnDirective","AggregateColumnPlugin","AggregatesDirective","AggregatesPlugin","AggregateDirective","AggregatePlugin","properties","modelProps","testProp","getProps","props","watch","emitProbs","Object","keys","push","_i","modelProps_1","length","props_1","TreeGridComponent","mixins","ComponentBase","emits","model","event","provide","data","ej2Instance","TreeGrid","propKeys","models","hasChildDirective","hasInjectedModules","tagMapper","e-columns","e-column","e-stacked-columns","e-aggregates","e-aggregate","tagNameMapper","isVue3","templateCollection","created","ej2Instances","_trigger","trigger","bindProperties","_setProperties","setProperties","clearTemplate","templateNames","templateNames_1","tempName","elementCollection","_a","elementCollection_1","ele","getValue","__vue__","$destroy","innerHTML","prop","muteOnChange","_this","referModels","map","key","test","vueInstance","$emit","eventName","eventProp","successHandler","requestType","propKey","toString","match","isUndefined","$props","isLazyUpdate","addRecord","index","position","autoFitColumns","fieldNames","clearFiltering","clearSelection","clearSorting","closeEdit","collapseAll","collapseAtLevel","level","collapseByKey","collapseRow","row","record","copy","withHeader","csvExport","excelExportProperties","isMultipleExport","workbook","isBlob","deleteRecord","fieldName","deleteRow","tr","editCell","rowIndex","field","enableToolbarItems","items","isEnable","endEdit","excelExport","expandAll","expandAtLevel","expandByKey","expandRow","extendRequiredModules","modules","filterByColumn","filterOperator","filterValue","predicate","matchCase","ignoreAccent","actualFilterValue","actualOperator","getBatchChanges","getCellFromIndex","columnIndex","getCheckedRecords","getCheckedRowIndexes","getColumnByField","getColumnByUid","uid","getColumnFieldNames","getColumnHeaderByField","getColumnHeaderByIndex","getColumnHeaderByUid","getColumnIndexByField","getColumnIndexByUid","getColumns","isRefresh","getContent","getContentTable","getCurrentViewRecords","getDataModule","getDataRows","getFooterContent","getFooterContentTable","getFrozenLeftColumnHeaderByIndex","getFrozenRightCellFromIndex","getFrozenRightColumnHeaderByIndex","getFrozenRightDataRows","getFrozenRightRowByIndex","getFrozenRightRows","getHeaderContent","getHeaderTable","getMovableCellFromIndex","getMovableColumnHeaderByIndex","getMovableDataRows","getMovableRowByIndex","getMovableRows","getPager","getPrimaryKeyFieldNames","getRowByIndex","getRowInfo","target","getRows","getSelectedRecords","getSelectedRowCellIndexes","getSelectedRowIndexes","getSelectedRows","getUidByColumnField","getVisibleColumns","getVisibleRecords","goToPage","pageNo","hideColumns","hideBy","hideSpinner","indent","openColumnChooser","x","y","outdent","paste","colIndex","pdfExport","pdfExportProperties","pdfDoc","print","refresh","refreshColumns","refreshUI","refreshHeader","reorderColumns","fromFName","toFName","reorderRows","fromIndexes","toIndex","saveCell","search","searchString","selectCell","cellIndex","isToggle","selectCheckboxes","indexes","selectRow","selectRows","rowIndexes","serverCsvExport","url","serverExcelExport","serverPdfExport","setCellValue","value","setRowData","rowData","showColumns","showBy","showSpinner","sortByColumn","columnName","direction","isMultiSort","startEdit","updateCell","updateExternalMessage","message","updateRow","TreeGridPlugin"],"mappings":"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"}
|
|
@@ -239,7 +239,7 @@ const AggregatePlugin = {
|
|
|
239
239
|
}
|
|
240
240
|
};
|
|
241
241
|
|
|
242
|
-
const properties = ['isLazyUpdate', 'plugins', 'aggregates', 'allowExcelExport', 'allowFiltering', 'allowMultiSorting', 'allowPaging', 'allowPdfExport', 'allowReordering', 'allowResizing', 'allowRowDragAndDrop', 'allowSelection', 'allowSorting', 'allowTextWrap', 'autoCheckHierarchy', 'childMapping', 'clipMode', 'columnMenuItems', 'columnQueryMode', 'columns', 'contextMenuItems', 'copyHierarchyMode', 'dataSource', 'detailTemplate', 'editSettings', 'enableAdaptiveUI', 'enableAltRow', 'enableAutoFill', 'enableCollapseAll', 'enableColumnVirtualization', 'enableHover', 'enableHtmlSanitizer', 'enableImmutableMode', 'enableInfiniteScrolling', 'enablePersistence', 'enableRtl', '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', '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'];
|
|
242
|
+
const properties = ['isLazyUpdate', 'plugins', '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', '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', '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'];
|
|
243
243
|
const modelProps = ['dataSource'];
|
|
244
244
|
const testProp = getProps({ props: properties });
|
|
245
245
|
const props = testProp[0];
|
|
@@ -648,6 +648,15 @@ let TreeGridComponent = vueDefineComponent({
|
|
|
648
648
|
selectRows(rowIndexes) {
|
|
649
649
|
return this.ej2Instances.selectRows(rowIndexes);
|
|
650
650
|
},
|
|
651
|
+
serverCsvExport(url) {
|
|
652
|
+
return this.ej2Instances.serverCsvExport(url);
|
|
653
|
+
},
|
|
654
|
+
serverExcelExport(url) {
|
|
655
|
+
return this.ej2Instances.serverExcelExport(url);
|
|
656
|
+
},
|
|
657
|
+
serverPdfExport(url) {
|
|
658
|
+
return this.ej2Instances.serverPdfExport(url);
|
|
659
|
+
},
|
|
651
660
|
setCellValue(key, field, value) {
|
|
652
661
|
return this.ej2Instances.setCellValue(key, field, value);
|
|
653
662
|
},
|