@syncfusion/ej2-vue-navigations 27.1.57 → 27.2.2

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.56",
3
+ "_id": "@syncfusion/ej2-vue-navigations@27.1.58",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-AXI3l9QoMu2XO75QsfpaN6HBmMCyCKIX3wdx1iGfrD5wHaY4tydv8w//Q5v+oXcF5znTleDQDq2H455KEUY5gQ==",
5
+ "_integrity": "sha512-KmwjhWEdmMA2Q4e67F99KTccadu+CL9M2ReG8nJGMSMzlg9BUuSyEd0cl3Ojx+mr/23s2UZ7uaicccbDCTNiSw==",
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.56.tgz",
23
- "_shasum": "e2c89bd2227ec5b31fa37013bb2d62ca1c8efc51",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-navigations/-/ej2-vue-navigations-27.1.58.tgz",
23
+ "_shasum": "cde09416b406e253a2bfa39843d36403439c73d5",
24
24
  "_spec": "@syncfusion/ej2-vue-navigations@*",
25
25
  "_where": "/jenkins/workspace/elease-automation_release_27.1.1/packages/included",
26
26
  "author": {
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-base": "~27.1.55",
35
- "@syncfusion/ej2-navigations": "27.1.57",
36
- "@syncfusion/ej2-vue-base": "~27.1.50"
34
+ "@syncfusion/ej2-base": "~27.2.2",
35
+ "@syncfusion/ej2-navigations": "27.2.2",
36
+ "@syncfusion/ej2-vue-base": "~27.2.2"
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": "27.1.57",
73
+ "version": "27.2.2",
74
74
  "sideEffects": false
75
75
  }
@@ -35,6 +35,7 @@ export declare type TabComponent = typeof ComponentBase & {
35
35
  refresh(): void;
36
36
  refreshActiveTab(): void;
37
37
  refreshActiveTabBorder(): void;
38
+ refreshOverflow(): void;
38
39
  removeTab(index: number): void;
39
40
  select(args: number | Object, event?: Object): void;
40
41
  };
@@ -122,6 +122,9 @@ export var TabComponent = vueDefineComponent({
122
122
  refreshActiveTabBorder: function () {
123
123
  return this.ej2Instances.refreshActiveTabBorder();
124
124
  },
125
+ refreshOverflow: function () {
126
+ return this.ej2Instances.refreshOverflow();
127
+ },
125
128
  removeTab: function (index) {
126
129
  return this.ej2Instances.removeTab(index);
127
130
  },