@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/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-vue-navigations@*",
3
- "_id": "@syncfusion/ej2-vue-navigations@27.1.58",
3
+ "_id": "@syncfusion/ej2-vue-navigations@27.2.3",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-KmwjhWEdmMA2Q4e67F99KTccadu+CL9M2ReG8nJGMSMzlg9BUuSyEd0cl3Ojx+mr/23s2UZ7uaicccbDCTNiSw==",
5
+ "_integrity": "sha512-NCTpqjWze0oVnZ7kkB6btKWPJ0EdgoZjlijgQFBmbQCq4C7N6V6C+3/yjIpE5Wa7eiTurMHxcdRzabQtp5JB3w==",
6
6
  "_location": "/@syncfusion/ej2-vue-navigations",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-navigations/-/ej2-vue-navigations-27.1.58.tgz",
23
- "_shasum": "cde09416b406e253a2bfa39843d36403439c73d5",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-navigations/-/ej2-vue-navigations-27.2.3.tgz",
23
+ "_shasum": "88f8418740f49e0e75d2abbfbb4d464dda7dfe97",
24
24
  "_spec": "@syncfusion/ej2-vue-navigations@*",
25
25
  "_where": "/jenkins/workspace/elease-automation_release_27.1.1/packages/included",
26
26
  "author": {
@@ -32,7 +32,7 @@
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
34
  "@syncfusion/ej2-base": "~27.2.2",
35
- "@syncfusion/ej2-navigations": "27.2.2",
35
+ "@syncfusion/ej2-navigations": "27.2.4",
36
36
  "@syncfusion/ej2-vue-base": "~27.2.2"
37
37
  },
38
38
  "deprecated": false,
@@ -70,6 +70,6 @@
70
70
  "ci-publish": "gulp ci-publish",
71
71
  "compile": "gulp ci-compile && gulp vue-global-script"
72
72
  },
73
- "version": "27.2.2",
73
+ "version": "27.2.4",
74
74
  "sideEffects": false
75
75
  }
@@ -28,6 +28,7 @@ export declare type AccordionComponent = typeof ComponentBase & {
28
28
  [key: string]: Object;
29
29
  }, successHandler?: Function): void;
30
30
  addItem(item: Object | Object[] | Object | Object[], index?: number): void;
31
+ destroy(): void;
31
32
  enableItem(index: number, isEnable: boolean): void;
32
33
  expandItem(isExpand: boolean, index?: number): void;
33
34
  hideItem(index: number, isHidden?: boolean): void;
@@ -144,6 +144,9 @@ export var AccordionComponent = vueDefineComponent({
144
144
  addItem: function (item, index) {
145
145
  return this.ej2Instances.addItem(item, index);
146
146
  },
147
+ destroy: function () {
148
+ return this.ej2Instances.destroy();
149
+ },
147
150
  enableItem: function (index, isEnable) {
148
151
  return this.ej2Instances.enableItem(index, isEnable);
149
152
  },
@@ -27,6 +27,7 @@ export declare type AppBarComponent = typeof ComponentBase & {
27
27
  trigger(eventName: string, eventProp: {
28
28
  [key: string]: Object;
29
29
  }, successHandler?: Function): void;
30
+ destroy(): void;
30
31
  };
31
32
  export declare const AppBarPlugin: {
32
33
  name: string;
@@ -97,6 +97,9 @@ export var AppBarComponent = vueDefineComponent({
97
97
  custom: function () {
98
98
  this.updated();
99
99
  },
100
+ destroy: function () {
101
+ return this.ej2Instances.destroy();
102
+ },
100
103
  }
101
104
  });
102
105
  export var AppBarPlugin = {
@@ -27,6 +27,7 @@ export declare type BreadcrumbComponent = typeof ComponentBase & {
27
27
  trigger(eventName: string, eventProp: {
28
28
  [key: string]: Object;
29
29
  }, successHandler?: Function): void;
30
+ destroy(): void;
30
31
  };
31
32
  export declare const BreadcrumbPlugin: {
32
33
  name: string;
@@ -141,6 +141,9 @@ export var BreadcrumbComponent = vueDefineComponent({
141
141
  custom: function () {
142
142
  this.updated();
143
143
  },
144
+ destroy: function () {
145
+ return this.ej2Instances.destroy();
146
+ },
144
147
  }
145
148
  });
146
149
  export var BreadcrumbPlugin = {
@@ -27,6 +27,7 @@ export declare type CarouselComponent = typeof ComponentBase & {
27
27
  trigger(eventName: string, eventProp: {
28
28
  [key: string]: Object;
29
29
  }, successHandler?: Function): void;
30
+ destroy(): void;
30
31
  next(): void;
31
32
  pause(): void;
32
33
  play(): void;
@@ -141,6 +141,9 @@ export var CarouselComponent = vueDefineComponent({
141
141
  custom: function () {
142
142
  this.updated();
143
143
  },
144
+ destroy: function () {
145
+ return this.ej2Instances.destroy();
146
+ },
144
147
  next: function () {
145
148
  return this.ej2Instances.next();
146
149
  },
@@ -29,6 +29,7 @@ export declare type ContextMenuComponent = typeof ComponentBase & {
29
29
  [key: string]: Object;
30
30
  }, successHandler?: Function): void;
31
31
  close(): void;
32
+ destroy(): void;
32
33
  enableItems(items: string[], enable: boolean, isUniqueId?: boolean): void;
33
34
  getItemIndex(item: Object | string, isUniqueId?: boolean): number[];
34
35
  hideItems(items: string[], isUniqueId?: boolean): void;
@@ -101,6 +101,9 @@ export var ContextMenuComponent = vueDefineComponent({
101
101
  close: function () {
102
102
  return this.ej2Instances.close();
103
103
  },
104
+ destroy: function () {
105
+ return this.ej2Instances.destroy();
106
+ },
104
107
  enableItems: function (items, enable, isUniqueId) {
105
108
  return this.ej2Instances.enableItems(items, enable, isUniqueId);
106
109
  },
@@ -28,6 +28,7 @@ export declare type MenuComponent = typeof ComponentBase & {
28
28
  [key: string]: Object;
29
29
  }, successHandler?: Function): void;
30
30
  close(): void;
31
+ destroy(): void;
31
32
  enableItems(items: string[], enable: boolean, isUniqueId?: boolean): void;
32
33
  getItemIndex(item: Object | string, isUniqueId?: boolean): number[];
33
34
  hideItems(items: string[], isUniqueId?: boolean): void;
@@ -101,6 +101,9 @@ export var MenuComponent = vueDefineComponent({
101
101
  close: function () {
102
102
  return this.ej2Instances.close();
103
103
  },
104
+ destroy: function () {
105
+ return this.ej2Instances.destroy();
106
+ },
104
107
  enableItems: function (items, enable, isUniqueId) {
105
108
  return this.ej2Instances.enableItems(items, enable, isUniqueId);
106
109
  },
@@ -27,6 +27,7 @@ export declare type SidebarComponent = typeof ComponentBase & {
27
27
  trigger(eventName: string, eventProp: {
28
28
  [key: string]: Object;
29
29
  }, successHandler?: Function): void;
30
+ destroy(): void;
30
31
  hide(e?: Object): void;
31
32
  show(e?: Object): void;
32
33
  toggle(): void;
@@ -140,6 +140,9 @@ export var SidebarComponent = vueDefineComponent({
140
140
  custom: function () {
141
141
  this.updated();
142
142
  },
143
+ destroy: function () {
144
+ return this.ej2Instances.destroy();
145
+ },
143
146
  hide: function (e) {
144
147
  return this.ej2Instances.hide(e);
145
148
  },
@@ -27,6 +27,7 @@ export declare type StepperComponent = typeof ComponentBase & {
27
27
  trigger(eventName: string, eventProp: {
28
28
  [key: string]: Object;
29
29
  }, successHandler?: Function): void;
30
+ destroy(): void;
30
31
  nextStep(): void;
31
32
  previousStep(): void;
32
33
  refreshProgressbar(): void;
@@ -141,6 +141,9 @@ export var StepperComponent = vueDefineComponent({
141
141
  custom: function () {
142
142
  this.updated();
143
143
  },
144
+ destroy: function () {
145
+ return this.ej2Instances.destroy();
146
+ },
144
147
  nextStep: function () {
145
148
  return this.ej2Instances.nextStep();
146
149
  },
@@ -28,6 +28,7 @@ export declare type TabComponent = typeof ComponentBase & {
28
28
  [key: string]: Object;
29
29
  }, successHandler?: Function): void;
30
30
  addTab(items: Object[], index?: number): void;
31
+ destroy(): void;
31
32
  disable(value: boolean): void;
32
33
  enableTab(index: number, value: boolean): void;
33
34
  getItemIndex(tabItemId: string): number;
@@ -101,6 +101,9 @@ export var TabComponent = vueDefineComponent({
101
101
  addTab: function (items, index) {
102
102
  return this.ej2Instances.addTab(items, index);
103
103
  },
104
+ destroy: function () {
105
+ return this.ej2Instances.destroy();
106
+ },
104
107
  disable: function (value) {
105
108
  return this.ej2Instances.disable(value);
106
109
  },
@@ -28,6 +28,7 @@ export declare type ToolbarComponent = typeof ComponentBase & {
28
28
  [key: string]: Object;
29
29
  }, successHandler?: Function): void;
30
30
  addItems(items: Object[], index?: number): void;
31
+ destroy(): void;
31
32
  disable(value: boolean): void;
32
33
  enableItems(items: number | Object | Object, isEnable?: boolean): void;
33
34
  hideItem(index: number | Object | Object, value?: boolean): void;
@@ -101,6 +101,9 @@ export var ToolbarComponent = vueDefineComponent({
101
101
  addItems: function (items, index) {
102
102
  return this.ej2Instances.addItems(items, index);
103
103
  },
104
+ destroy: function () {
105
+ return this.ej2Instances.destroy();
106
+ },
104
107
  disable: function (value) {
105
108
  return this.ej2Instances.disable(value);
106
109
  },
@@ -31,6 +31,7 @@ export declare type TreeViewComponent = typeof ComponentBase & {
31
31
  beginEdit(node: string | Object): void;
32
32
  checkAll(nodes?: string[] | Object[]): void;
33
33
  collapseAll(nodes?: string[] | Object[], level?: number, excludeHiddenNodes?: boolean): void;
34
+ destroy(): void;
34
35
  disableNodes(nodes: string[] | Object[]): void;
35
36
  enableNodes(nodes: string[] | Object[]): void;
36
37
  ensureVisible(node: string | Object): void;
@@ -109,6 +109,9 @@ export var TreeViewComponent = vueDefineComponent({
109
109
  collapseAll: function (nodes, level, excludeHiddenNodes) {
110
110
  return this.ej2Instances.collapseAll(nodes, level, excludeHiddenNodes);
111
111
  },
112
+ destroy: function () {
113
+ return this.ej2Instances.destroy();
114
+ },
112
115
  disableNodes: function (nodes) {
113
116
  return this.ej2Instances.disableNodes(nodes);
114
117
  },