@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
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-vue-navigations@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-vue-navigations@27.
|
|
3
|
+
"_id": "@syncfusion/ej2-vue-navigations@27.2.2",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-AWZDkX183N2Gvz7r8l0KLJZ2ETYzzcvundhQtJqwcRm6t2tUPC4aN182aL89yYODw/JCvYoGJmphDLmnmCLFgg==",
|
|
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.
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-navigations/-/ej2-vue-navigations-27.2.2.tgz",
|
|
23
|
+
"_shasum": "d1768e77bcc18834a4b28502961452e0afcb09c5",
|
|
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.
|
|
35
|
+
"@syncfusion/ej2-navigations": "27.2.3",
|
|
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.
|
|
73
|
+
"version": "27.2.3",
|
|
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 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;
|
|
@@ -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;
|
|
@@ -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;
|
package/src/tab/tab.component.js
CHANGED
|
@@ -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
|
},
|