@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/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-vue-navigations@*",
3
- "_id": "@syncfusion/ej2-vue-navigations@29.1.38",
3
+ "_id": "@syncfusion/ej2-vue-navigations@29.2.4",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-H+SSw2VLX95vh0Phvz/7C6Wnk4RUhBXcUoNCSPad5U+w5+yZv1JPUKcp5UBLTiH+fshWsNH0wFwm5Z3FsTn0bA==",
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.1.38.tgz",
23
- "_shasum": "7e69a04e050288b04c9b30df27610775189fb55c",
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.1.36",
35
- "@syncfusion/ej2-navigations": "29.1.41",
36
- "@syncfusion/ej2-vue-base": "~29.1.33"
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.1.41",
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(cmenu: Object, width: number, isRtl: boolean): number;
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 (cmenu, width, isRtl) {
114
- return this.ej2Instances.getMenuWidth(cmenu, width, isRtl);
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(cmenu: Object, width: number, isRtl: boolean): number;
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 (cmenu, width, isRtl) {
114
- return this.ej2Instances.getMenuWidth(cmenu, width, isRtl);
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);