@syncfusion/ej2-vue-navigations 19.4.55 → 20.1.48
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 +2 -0
- package/dist/ej2-vue-navigations.umd.min.js +1 -1
- package/dist/es6/ej2-vue-navigations.es2015.js +299 -27
- package/dist/es6/ej2-vue-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-navigations.es5.js +197 -20
- package/dist/es6/ej2-vue-navigations.es5.js.map +1 -1
- package/dist/global/ej2-vue-navigations.min.js +2 -2
- package/package.json +14 -8
- package/src/accordion/accordion.component.d.ts +1 -0
- package/src/accordion/accordion.component.js +10 -1
- package/src/accordion/items.directive.d.ts +3 -1
- package/src/accordion/items.directive.js +24 -2
- package/src/breadcrumb/breadcrumb.component.d.ts +1 -0
- package/src/breadcrumb/breadcrumb.component.js +10 -1
- package/src/breadcrumb/items.directive.d.ts +3 -1
- package/src/breadcrumb/items.directive.js +24 -2
- package/src/context-menu/contextmenu.component.d.ts +1 -0
- package/src/context-menu/contextmenu.component.js +10 -1
- package/src/menu/items.directive.d.ts +3 -1
- package/src/menu/items.directive.js +24 -2
- package/src/menu/menu.component.d.ts +1 -0
- package/src/menu/menu.component.js +10 -1
- package/src/sidebar/sidebar.component.d.ts +1 -0
- package/src/sidebar/sidebar.component.js +10 -1
- package/src/tab/items.directive.d.ts +3 -1
- package/src/tab/items.directive.js +24 -2
- package/src/tab/tab.component.d.ts +1 -0
- package/src/tab/tab.component.js +10 -1
- package/src/toolbar/items.directive.d.ts +3 -1
- package/src/toolbar/items.directive.js +24 -2
- package/src/toolbar/toolbar.component.d.ts +1 -0
- package/src/toolbar/toolbar.component.js +10 -1
- package/src/treeview/treeview.component.d.ts +1 -0
- package/src/treeview/treeview.component.js +10 -1
|
@@ -55,6 +55,7 @@ var TreeViewComponent = /** @class */ (function (_super) {
|
|
|
55
55
|
_this.ej2Instances._setProperties = _this.ej2Instances.setProperties;
|
|
56
56
|
_this.ej2Instances.setProperties = _this.setProperties;
|
|
57
57
|
_this.ej2Instances.clearTemplate = _this.clearTemplate;
|
|
58
|
+
_this.updated = _this.updated;
|
|
58
59
|
return _this;
|
|
59
60
|
}
|
|
60
61
|
TreeViewComponent.prototype.clearTemplate = function (templateNames) {
|
|
@@ -113,6 +114,9 @@ var TreeViewComponent = /** @class */ (function (_super) {
|
|
|
113
114
|
}
|
|
114
115
|
return h('div', slots);
|
|
115
116
|
};
|
|
117
|
+
TreeViewComponent.prototype.custom = function () {
|
|
118
|
+
this.updated();
|
|
119
|
+
};
|
|
116
120
|
TreeViewComponent.prototype.addNodes = function (nodes, target, index, preventTargetExpand) {
|
|
117
121
|
return this.ej2Instances.addNodes(nodes, target, index, preventTargetExpand);
|
|
118
122
|
};
|
|
@@ -171,7 +175,12 @@ var TreeViewComponent = /** @class */ (function (_super) {
|
|
|
171
175
|
,Options({
|
|
172
176
|
props: props,
|
|
173
177
|
watch: watch,
|
|
174
|
-
emits: emitProbs
|
|
178
|
+
emits: emitProbs,
|
|
179
|
+
provide: function provide() {
|
|
180
|
+
return {
|
|
181
|
+
custom: this.custom
|
|
182
|
+
};
|
|
183
|
+
}
|
|
175
184
|
})
|
|
176
185
|
], TreeViewComponent);
|
|
177
186
|
return TreeViewComponent;
|