@syncfusion/ej2-vue-navigations 27.2.2 → 27.2.3
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
|
@@ -203,6 +203,9 @@ var AccordionComponent = vueDefineComponent({
|
|
|
203
203
|
addItem: function (item, index) {
|
|
204
204
|
return this.ej2Instances.addItem(item, index);
|
|
205
205
|
},
|
|
206
|
+
destroy: function () {
|
|
207
|
+
return this.ej2Instances.destroy();
|
|
208
|
+
},
|
|
206
209
|
enableItem: function (index, isEnable) {
|
|
207
210
|
return this.ej2Instances.enableItem(index, isEnable);
|
|
208
211
|
},
|
|
@@ -387,6 +390,9 @@ var ToolbarComponent = vueDefineComponent({
|
|
|
387
390
|
addItems: function (items, index) {
|
|
388
391
|
return this.ej2Instances.addItems(items, index);
|
|
389
392
|
},
|
|
393
|
+
destroy: function () {
|
|
394
|
+
return this.ej2Instances.destroy();
|
|
395
|
+
},
|
|
390
396
|
disable: function (value) {
|
|
391
397
|
return this.ej2Instances.disable(value);
|
|
392
398
|
},
|
|
@@ -513,6 +519,9 @@ var ContextMenuComponent = vueDefineComponent({
|
|
|
513
519
|
close: function () {
|
|
514
520
|
return this.ej2Instances.close();
|
|
515
521
|
},
|
|
522
|
+
destroy: function () {
|
|
523
|
+
return this.ej2Instances.destroy();
|
|
524
|
+
},
|
|
516
525
|
enableItems: function (items, enable, isUniqueId) {
|
|
517
526
|
return this.ej2Instances.enableItems(items, enable, isUniqueId);
|
|
518
527
|
},
|
|
@@ -746,6 +755,9 @@ var BreadcrumbComponent = vueDefineComponent({
|
|
|
746
755
|
custom: function () {
|
|
747
756
|
this.updated();
|
|
748
757
|
},
|
|
758
|
+
destroy: function () {
|
|
759
|
+
return this.ej2Instances.destroy();
|
|
760
|
+
},
|
|
749
761
|
}
|
|
750
762
|
});
|
|
751
763
|
var BreadcrumbPlugin = {
|
|
@@ -954,6 +966,9 @@ var CarouselComponent = vueDefineComponent({
|
|
|
954
966
|
custom: function () {
|
|
955
967
|
this.updated();
|
|
956
968
|
},
|
|
969
|
+
destroy: function () {
|
|
970
|
+
return this.ej2Instances.destroy();
|
|
971
|
+
},
|
|
957
972
|
next: function () {
|
|
958
973
|
return this.ej2Instances.next();
|
|
959
974
|
},
|
|
@@ -1135,6 +1150,9 @@ var TabComponent = vueDefineComponent({
|
|
|
1135
1150
|
addTab: function (items, index) {
|
|
1136
1151
|
return this.ej2Instances.addTab(items, index);
|
|
1137
1152
|
},
|
|
1153
|
+
destroy: function () {
|
|
1154
|
+
return this.ej2Instances.destroy();
|
|
1155
|
+
},
|
|
1138
1156
|
disable: function (value) {
|
|
1139
1157
|
return this.ej2Instances.disable(value);
|
|
1140
1158
|
},
|
|
@@ -1284,6 +1302,9 @@ var TreeViewComponent = vueDefineComponent({
|
|
|
1284
1302
|
collapseAll: function (nodes, level, excludeHiddenNodes) {
|
|
1285
1303
|
return this.ej2Instances.collapseAll(nodes, level, excludeHiddenNodes);
|
|
1286
1304
|
},
|
|
1305
|
+
destroy: function () {
|
|
1306
|
+
return this.ej2Instances.destroy();
|
|
1307
|
+
},
|
|
1287
1308
|
disableNodes: function (nodes) {
|
|
1288
1309
|
return this.ej2Instances.disableNodes(nodes);
|
|
1289
1310
|
},
|
|
@@ -1470,6 +1491,9 @@ var SidebarComponent = vueDefineComponent({
|
|
|
1470
1491
|
custom: function () {
|
|
1471
1492
|
this.updated();
|
|
1472
1493
|
},
|
|
1494
|
+
destroy: function () {
|
|
1495
|
+
return this.ej2Instances.destroy();
|
|
1496
|
+
},
|
|
1473
1497
|
hide: function (e) {
|
|
1474
1498
|
return this.ej2Instances.hide(e);
|
|
1475
1499
|
},
|
|
@@ -1634,6 +1658,9 @@ var MenuComponent = vueDefineComponent({
|
|
|
1634
1658
|
close: function () {
|
|
1635
1659
|
return this.ej2Instances.close();
|
|
1636
1660
|
},
|
|
1661
|
+
destroy: function () {
|
|
1662
|
+
return this.ej2Instances.destroy();
|
|
1663
|
+
},
|
|
1637
1664
|
enableItems: function (items, enable, isUniqueId) {
|
|
1638
1665
|
return this.ej2Instances.enableItems(items, enable, isUniqueId);
|
|
1639
1666
|
},
|
|
@@ -1768,6 +1795,9 @@ var AppBarComponent = vueDefineComponent({
|
|
|
1768
1795
|
custom: function () {
|
|
1769
1796
|
this.updated();
|
|
1770
1797
|
},
|
|
1798
|
+
destroy: function () {
|
|
1799
|
+
return this.ej2Instances.destroy();
|
|
1800
|
+
},
|
|
1771
1801
|
}
|
|
1772
1802
|
});
|
|
1773
1803
|
var AppBarPlugin = {
|
|
@@ -1974,6 +2004,9 @@ var StepperComponent = vueDefineComponent({
|
|
|
1974
2004
|
custom: function () {
|
|
1975
2005
|
this.updated();
|
|
1976
2006
|
},
|
|
2007
|
+
destroy: function () {
|
|
2008
|
+
return this.ej2Instances.destroy();
|
|
2009
|
+
},
|
|
1977
2010
|
nextStep: function () {
|
|
1978
2011
|
return this.ej2Instances.nextStep();
|
|
1979
2012
|
},
|