@syncfusion/ej2-vue-navigations 29.1.41 → 29.2.5
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 +5 -5
- package/dist/es6/ej2-vue-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-navigations.es5.js +5 -5
- package/dist/es6/ej2-vue-navigations.es5.js.map +1 -1
- package/package.json +8 -8
- package/src/context-menu/contextmenu.component.d.ts +1 -1
- package/src/context-menu/contextmenu.component.js +2 -2
- package/src/menu/menu.component.d.ts +1 -1
- package/src/menu/menu.component.js +2 -2
- package/src/treeview/treeview.component.js +1 -1
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-vue-navigations@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-vue-navigations@29.
|
|
3
|
+
"_id": "@syncfusion/ej2-vue-navigations@29.2.4",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-9fgKpaFRwWyVIIU4gRQDqRTtT66yFFE9jxh3Tdj6zQc6F7Vz41VyY8tOuGfckiHD5ZQHykczGSI8nOos91kmog==",
|
|
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-29.
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-navigations/-/ej2-vue-navigations-29.2.4.tgz",
|
|
23
|
+
"_shasum": "462af25a3df44ad53baefa97c8e42b959622992d",
|
|
24
24
|
"_spec": "@syncfusion/ej2-vue-navigations@*",
|
|
25
25
|
"_where": "/jenkins/workspace/elease-automation_release_29.1.1/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-base": "~29.
|
|
35
|
-
"@syncfusion/ej2-navigations": "29.
|
|
36
|
-
"@syncfusion/ej2-vue-base": "~29.
|
|
34
|
+
"@syncfusion/ej2-base": "~29.2.4",
|
|
35
|
+
"@syncfusion/ej2-navigations": "29.2.5",
|
|
36
|
+
"@syncfusion/ej2-vue-base": "~29.2.4"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another for Vue",
|
|
@@ -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": "29.
|
|
73
|
+
"version": "29.2.5",
|
|
74
74
|
"sideEffects": false
|
|
75
75
|
}
|
|
@@ -32,7 +32,7 @@ export declare type ContextMenuComponent = typeof ComponentBase & {
|
|
|
32
32
|
destroy(): void;
|
|
33
33
|
enableItems(items: string[], enable: boolean, isUniqueId?: boolean): void;
|
|
34
34
|
getItemIndex(item: Object | string, isUniqueId?: boolean): number[];
|
|
35
|
-
getMenuWidth(
|
|
35
|
+
getMenuWidth(menuElement: Object, width: number, isRtl: boolean): number;
|
|
36
36
|
hideItems(items: string[], isUniqueId?: boolean): void;
|
|
37
37
|
insertAfter(items: Object[], text: string, isUniqueId?: boolean): void;
|
|
38
38
|
insertBefore(items: Object[], text: string, isUniqueId?: boolean): void;
|
|
@@ -110,8 +110,8 @@ export var ContextMenuComponent = vueDefineComponent({
|
|
|
110
110
|
getItemIndex: function (item, isUniqueId) {
|
|
111
111
|
return this.ej2Instances.getItemIndex(item, isUniqueId);
|
|
112
112
|
},
|
|
113
|
-
getMenuWidth: function (
|
|
114
|
-
return this.ej2Instances.getMenuWidth(
|
|
113
|
+
getMenuWidth: function (menuElement, width, isRtl) {
|
|
114
|
+
return this.ej2Instances.getMenuWidth(menuElement, width, isRtl);
|
|
115
115
|
},
|
|
116
116
|
hideItems: function (items, isUniqueId) {
|
|
117
117
|
return this.ej2Instances.hideItems(items, isUniqueId);
|
|
@@ -31,7 +31,7 @@ export declare type MenuComponent = typeof ComponentBase & {
|
|
|
31
31
|
destroy(): void;
|
|
32
32
|
enableItems(items: string[], enable: boolean, isUniqueId?: boolean): void;
|
|
33
33
|
getItemIndex(item: Object | string, isUniqueId?: boolean): number[];
|
|
34
|
-
getMenuWidth(
|
|
34
|
+
getMenuWidth(menuElement: Object, width: number, isRtl: boolean): number;
|
|
35
35
|
hideItems(items: string[], isUniqueId?: boolean): void;
|
|
36
36
|
insertAfter(items: Object[], text: string, isUniqueId?: boolean): void;
|
|
37
37
|
insertBefore(items: Object[], text: string, isUniqueId?: boolean): void;
|
|
@@ -110,8 +110,8 @@ export var MenuComponent = vueDefineComponent({
|
|
|
110
110
|
getItemIndex: function (item, isUniqueId) {
|
|
111
111
|
return this.ej2Instances.getItemIndex(item, isUniqueId);
|
|
112
112
|
},
|
|
113
|
-
getMenuWidth: function (
|
|
114
|
-
return this.ej2Instances.getMenuWidth(
|
|
113
|
+
getMenuWidth: function (menuElement, width, isRtl) {
|
|
114
|
+
return this.ej2Instances.getMenuWidth(menuElement, width, isRtl);
|
|
115
115
|
},
|
|
116
116
|
hideItems: function (items, isUniqueId) {
|
|
117
117
|
return this.ej2Instances.hideItems(items, isUniqueId);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ComponentBase, gh, getProps, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';
|
|
2
2
|
import { isNullOrUndefined } from '@syncfusion/ej2-base';
|
|
3
3
|
import { TreeView } from '@syncfusion/ej2-navigations';
|
|
4
|
-
export var properties = ['isLazyUpdate', 'plugins', 'allowDragAndDrop', 'allowEditing', 'allowMultiSelection', 'allowTextWrap', 'animation', 'autoCheck', 'checkDisabledChildren', 'checkedNodes', 'cssClass', 'disabled', 'dragArea', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'expandOn', 'expandedNodes', 'fields', 'fullRowNavigable', 'fullRowSelect', 'loadOnDemand', 'locale', 'nodeTemplate', 'selectedNodes', 'showCheckBox', 'sortOrder', 'actionFailure', 'created', 'dataBound', 'dataSourceChanged', 'destroyed', 'drawNode', 'keyPress', 'nodeChecked', 'nodeChecking', 'nodeClicked', 'nodeCollapsed', 'nodeCollapsing', 'nodeDragStart', 'nodeDragStop', 'nodeDragging', 'nodeDropped', 'nodeEdited', 'nodeEditing', 'nodeExpanded', 'nodeExpanding', 'nodeSelected', 'nodeSelecting'];
|
|
4
|
+
export var properties = ['isLazyUpdate', 'plugins', 'allowDragAndDrop', 'allowEditing', 'allowMultiSelection', 'allowTextWrap', 'animation', 'autoCheck', 'checkDisabledChildren', 'checkOnClick', 'checkedNodes', 'cssClass', 'disabled', 'dragArea', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'expandOn', 'expandedNodes', 'fields', 'fullRowNavigable', 'fullRowSelect', 'loadOnDemand', 'locale', 'nodeTemplate', 'selectedNodes', 'showCheckBox', 'sortOrder', 'actionFailure', 'created', 'dataBound', 'dataSourceChanged', 'destroyed', 'drawNode', 'keyPress', 'nodeChecked', 'nodeChecking', 'nodeClicked', 'nodeCollapsed', 'nodeCollapsing', 'nodeDragStart', 'nodeDragStop', 'nodeDragging', 'nodeDropped', 'nodeEdited', 'nodeEditing', 'nodeExpanded', 'nodeExpanding', 'nodeSelected', 'nodeSelecting'];
|
|
5
5
|
export var modelProps = [];
|
|
6
6
|
export var testProp = getProps({ props: properties });
|
|
7
7
|
export var props = testProp[0], watch = testProp[1], emitProbs = Object.keys(watch);
|