@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.
@@ -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
  },
@@ -1132,6 +1150,9 @@ let TabComponent = vueDefineComponent({
1132
1150
  refreshActiveTabBorder() {
1133
1151
  return this.ej2Instances.refreshActiveTabBorder();
1134
1152
  },
1153
+ refreshOverflow() {
1154
+ return this.ej2Instances.refreshOverflow();
1155
+ },
1135
1156
  removeTab(index) {
1136
1157
  return this.ej2Instances.removeTab(index);
1137
1158
  },
@@ -1253,6 +1274,9 @@ let TreeViewComponent = vueDefineComponent({
1253
1274
  collapseAll(nodes, level, excludeHiddenNodes) {
1254
1275
  return this.ej2Instances.collapseAll(nodes, level, excludeHiddenNodes);
1255
1276
  },
1277
+ destroy() {
1278
+ return this.ej2Instances.destroy();
1279
+ },
1256
1280
  disableNodes(nodes) {
1257
1281
  return this.ej2Instances.disableNodes(nodes);
1258
1282
  },
@@ -1435,6 +1459,9 @@ let SidebarComponent = vueDefineComponent({
1435
1459
  custom() {
1436
1460
  this.updated();
1437
1461
  },
1462
+ destroy() {
1463
+ return this.ej2Instances.destroy();
1464
+ },
1438
1465
  hide(e) {
1439
1466
  return this.ej2Instances.hide(e);
1440
1467
  },
@@ -1595,6 +1622,9 @@ let MenuComponent = vueDefineComponent({
1595
1622
  close() {
1596
1623
  return this.ej2Instances.close();
1597
1624
  },
1625
+ destroy() {
1626
+ return this.ej2Instances.destroy();
1627
+ },
1598
1628
  enableItems(items, enable, isUniqueId) {
1599
1629
  return this.ej2Instances.enableItems(items, enable, isUniqueId);
1600
1630
  },
@@ -1725,6 +1755,9 @@ let AppBarComponent = vueDefineComponent({
1725
1755
  custom() {
1726
1756
  this.updated();
1727
1757
  },
1758
+ destroy() {
1759
+ return this.ej2Instances.destroy();
1760
+ },
1728
1761
  }
1729
1762
  });
1730
1763
  const AppBarPlugin = {
@@ -1927,6 +1960,9 @@ let StepperComponent = vueDefineComponent({
1927
1960
  custom() {
1928
1961
  this.updated();
1929
1962
  },
1963
+ destroy() {
1964
+ return this.ej2Instances.destroy();
1965
+ },
1930
1966
  nextStep() {
1931
1967
  return this.ej2Instances.nextStep();
1932
1968
  },