@syncfusion/ej2-vue-navigations 27.2.2 → 27.2.4
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/dist/ej2-vue-navigations.umd.min.js +2 -2
- package/dist/ej2-vue-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-navigations.es2015.js +33 -0
- package/dist/es6/ej2-vue-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-navigations.es5.js +33 -0
- package/dist/es6/ej2-vue-navigations.es5.js.map +1 -1
- package/package.json +6 -6
- package/src/accordion/accordion.component.d.ts +1 -0
- package/src/accordion/accordion.component.js +3 -0
- package/src/appbar/appbar.component.d.ts +1 -0
- package/src/appbar/appbar.component.js +3 -0
- package/src/breadcrumb/breadcrumb.component.d.ts +1 -0
- package/src/breadcrumb/breadcrumb.component.js +3 -0
- package/src/carousel/carousel.component.d.ts +1 -0
- package/src/carousel/carousel.component.js +3 -0
- package/src/context-menu/contextmenu.component.d.ts +1 -0
- package/src/context-menu/contextmenu.component.js +3 -0
- package/src/menu/menu.component.d.ts +1 -0
- package/src/menu/menu.component.js +3 -0
- package/src/sidebar/sidebar.component.d.ts +1 -0
- package/src/sidebar/sidebar.component.js +3 -0
- package/src/stepper/stepper.component.d.ts +1 -0
- package/src/stepper/stepper.component.js +3 -0
- package/src/tab/tab.component.d.ts +1 -0
- package/src/tab/tab.component.js +3 -0
- package/src/toolbar/toolbar.component.d.ts +1 -0
- package/src/toolbar/toolbar.component.js +3 -0
- package/src/treeview/treeview.component.d.ts +1 -0
- package/src/treeview/treeview.component.js +3 -0
|
@@ -199,6 +199,9 @@ let AccordionComponent = vueDefineComponent({
|
|
|
199
199
|
addItem(item, index) {
|
|
200
200
|
return this.ej2Instances.addItem(item, index);
|
|
201
201
|
},
|
|
202
|
+
destroy() {
|
|
203
|
+
return this.ej2Instances.destroy();
|
|
204
|
+
},
|
|
202
205
|
enableItem(index, isEnable) {
|
|
203
206
|
return this.ej2Instances.enableItem(index, isEnable);
|
|
204
207
|
},
|
|
@@ -379,6 +382,9 @@ let ToolbarComponent = vueDefineComponent({
|
|
|
379
382
|
addItems(items, index) {
|
|
380
383
|
return this.ej2Instances.addItems(items, index);
|
|
381
384
|
},
|
|
385
|
+
destroy() {
|
|
386
|
+
return this.ej2Instances.destroy();
|
|
387
|
+
},
|
|
382
388
|
disable(value) {
|
|
383
389
|
return this.ej2Instances.disable(value);
|
|
384
390
|
},
|
|
@@ -501,6 +507,9 @@ let ContextMenuComponent = vueDefineComponent({
|
|
|
501
507
|
close() {
|
|
502
508
|
return this.ej2Instances.close();
|
|
503
509
|
},
|
|
510
|
+
destroy() {
|
|
511
|
+
return this.ej2Instances.destroy();
|
|
512
|
+
},
|
|
504
513
|
enableItems(items, enable, isUniqueId) {
|
|
505
514
|
return this.ej2Instances.enableItems(items, enable, isUniqueId);
|
|
506
515
|
},
|
|
@@ -730,6 +739,9 @@ let BreadcrumbComponent = vueDefineComponent({
|
|
|
730
739
|
custom() {
|
|
731
740
|
this.updated();
|
|
732
741
|
},
|
|
742
|
+
destroy() {
|
|
743
|
+
return this.ej2Instances.destroy();
|
|
744
|
+
},
|
|
733
745
|
}
|
|
734
746
|
});
|
|
735
747
|
const BreadcrumbPlugin = {
|
|
@@ -934,6 +946,9 @@ let CarouselComponent = vueDefineComponent({
|
|
|
934
946
|
custom() {
|
|
935
947
|
this.updated();
|
|
936
948
|
},
|
|
949
|
+
destroy() {
|
|
950
|
+
return this.ej2Instances.destroy();
|
|
951
|
+
},
|
|
937
952
|
next() {
|
|
938
953
|
return this.ej2Instances.next();
|
|
939
954
|
},
|
|
@@ -1111,6 +1126,9 @@ let TabComponent = vueDefineComponent({
|
|
|
1111
1126
|
addTab(items, index) {
|
|
1112
1127
|
return this.ej2Instances.addTab(items, index);
|
|
1113
1128
|
},
|
|
1129
|
+
destroy() {
|
|
1130
|
+
return this.ej2Instances.destroy();
|
|
1131
|
+
},
|
|
1114
1132
|
disable(value) {
|
|
1115
1133
|
return this.ej2Instances.disable(value);
|
|
1116
1134
|
},
|
|
@@ -1256,6 +1274,9 @@ let TreeViewComponent = vueDefineComponent({
|
|
|
1256
1274
|
collapseAll(nodes, level, excludeHiddenNodes) {
|
|
1257
1275
|
return this.ej2Instances.collapseAll(nodes, level, excludeHiddenNodes);
|
|
1258
1276
|
},
|
|
1277
|
+
destroy() {
|
|
1278
|
+
return this.ej2Instances.destroy();
|
|
1279
|
+
},
|
|
1259
1280
|
disableNodes(nodes) {
|
|
1260
1281
|
return this.ej2Instances.disableNodes(nodes);
|
|
1261
1282
|
},
|
|
@@ -1438,6 +1459,9 @@ let SidebarComponent = vueDefineComponent({
|
|
|
1438
1459
|
custom() {
|
|
1439
1460
|
this.updated();
|
|
1440
1461
|
},
|
|
1462
|
+
destroy() {
|
|
1463
|
+
return this.ej2Instances.destroy();
|
|
1464
|
+
},
|
|
1441
1465
|
hide(e) {
|
|
1442
1466
|
return this.ej2Instances.hide(e);
|
|
1443
1467
|
},
|
|
@@ -1598,6 +1622,9 @@ let MenuComponent = vueDefineComponent({
|
|
|
1598
1622
|
close() {
|
|
1599
1623
|
return this.ej2Instances.close();
|
|
1600
1624
|
},
|
|
1625
|
+
destroy() {
|
|
1626
|
+
return this.ej2Instances.destroy();
|
|
1627
|
+
},
|
|
1601
1628
|
enableItems(items, enable, isUniqueId) {
|
|
1602
1629
|
return this.ej2Instances.enableItems(items, enable, isUniqueId);
|
|
1603
1630
|
},
|
|
@@ -1728,6 +1755,9 @@ let AppBarComponent = vueDefineComponent({
|
|
|
1728
1755
|
custom() {
|
|
1729
1756
|
this.updated();
|
|
1730
1757
|
},
|
|
1758
|
+
destroy() {
|
|
1759
|
+
return this.ej2Instances.destroy();
|
|
1760
|
+
},
|
|
1731
1761
|
}
|
|
1732
1762
|
});
|
|
1733
1763
|
const AppBarPlugin = {
|
|
@@ -1930,6 +1960,9 @@ let StepperComponent = vueDefineComponent({
|
|
|
1930
1960
|
custom() {
|
|
1931
1961
|
this.updated();
|
|
1932
1962
|
},
|
|
1963
|
+
destroy() {
|
|
1964
|
+
return this.ej2Instances.destroy();
|
|
1965
|
+
},
|
|
1933
1966
|
nextStep() {
|
|
1934
1967
|
return this.ej2Instances.nextStep();
|
|
1935
1968
|
},
|