@syncfusion/ej2-vue-navigations 27.1.58 → 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 +36 -0
- package/dist/es6/ej2-vue-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-navigations.es5.js +36 -0
- package/dist/es6/ej2-vue-navigations.es5.js.map +1 -1
- package/package.json +8 -8
- 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 +2 -0
- package/src/tab/tab.component.js +6 -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
|
},
|
|
@@ -1156,6 +1174,9 @@ var TabComponent = vueDefineComponent({
|
|
|
1156
1174
|
refreshActiveTabBorder: function () {
|
|
1157
1175
|
return this.ej2Instances.refreshActiveTabBorder();
|
|
1158
1176
|
},
|
|
1177
|
+
refreshOverflow: function () {
|
|
1178
|
+
return this.ej2Instances.refreshOverflow();
|
|
1179
|
+
},
|
|
1159
1180
|
removeTab: function (index) {
|
|
1160
1181
|
return this.ej2Instances.removeTab(index);
|
|
1161
1182
|
},
|
|
@@ -1281,6 +1302,9 @@ var TreeViewComponent = vueDefineComponent({
|
|
|
1281
1302
|
collapseAll: function (nodes, level, excludeHiddenNodes) {
|
|
1282
1303
|
return this.ej2Instances.collapseAll(nodes, level, excludeHiddenNodes);
|
|
1283
1304
|
},
|
|
1305
|
+
destroy: function () {
|
|
1306
|
+
return this.ej2Instances.destroy();
|
|
1307
|
+
},
|
|
1284
1308
|
disableNodes: function (nodes) {
|
|
1285
1309
|
return this.ej2Instances.disableNodes(nodes);
|
|
1286
1310
|
},
|
|
@@ -1467,6 +1491,9 @@ var SidebarComponent = vueDefineComponent({
|
|
|
1467
1491
|
custom: function () {
|
|
1468
1492
|
this.updated();
|
|
1469
1493
|
},
|
|
1494
|
+
destroy: function () {
|
|
1495
|
+
return this.ej2Instances.destroy();
|
|
1496
|
+
},
|
|
1470
1497
|
hide: function (e) {
|
|
1471
1498
|
return this.ej2Instances.hide(e);
|
|
1472
1499
|
},
|
|
@@ -1631,6 +1658,9 @@ var MenuComponent = vueDefineComponent({
|
|
|
1631
1658
|
close: function () {
|
|
1632
1659
|
return this.ej2Instances.close();
|
|
1633
1660
|
},
|
|
1661
|
+
destroy: function () {
|
|
1662
|
+
return this.ej2Instances.destroy();
|
|
1663
|
+
},
|
|
1634
1664
|
enableItems: function (items, enable, isUniqueId) {
|
|
1635
1665
|
return this.ej2Instances.enableItems(items, enable, isUniqueId);
|
|
1636
1666
|
},
|
|
@@ -1765,6 +1795,9 @@ var AppBarComponent = vueDefineComponent({
|
|
|
1765
1795
|
custom: function () {
|
|
1766
1796
|
this.updated();
|
|
1767
1797
|
},
|
|
1798
|
+
destroy: function () {
|
|
1799
|
+
return this.ej2Instances.destroy();
|
|
1800
|
+
},
|
|
1768
1801
|
}
|
|
1769
1802
|
});
|
|
1770
1803
|
var AppBarPlugin = {
|
|
@@ -1971,6 +2004,9 @@ var StepperComponent = vueDefineComponent({
|
|
|
1971
2004
|
custom: function () {
|
|
1972
2005
|
this.updated();
|
|
1973
2006
|
},
|
|
2007
|
+
destroy: function () {
|
|
2008
|
+
return this.ej2Instances.destroy();
|
|
2009
|
+
},
|
|
1974
2010
|
nextStep: function () {
|
|
1975
2011
|
return this.ej2Instances.nextStep();
|
|
1976
2012
|
},
|