@syncfusion/ej2-vue-navigations 26.1.40 → 26.1.41

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@26.1.39",
3
+ "_id": "@syncfusion/ej2-vue-navigations@26.1.40",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-yBr6wEPh5JOhGTVPPCicbLlTxoZwOz9s6UBmUzqu4ImD/xlXSmhjQp0hOPllAfOTGG1BhM9DdndvioL9ad0uag==",
5
+ "_integrity": "sha512-9FSqHmijQKNupL6Uq5j/cu3NzvqtjE8DSpJ2vs2JLlJ6BhguFqrlqg8I9xjz2+aCLxF2iPupC0irCSK2f5W+FQ==",
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-26.1.39.tgz",
23
- "_shasum": "fe59e35c1a63cb00cc4040939d8c78e41ca07fc1",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-navigations/-/ej2-vue-navigations-26.1.40.tgz",
23
+ "_shasum": "a5fb87649a31fe5ee47dc21a060ffb8ae82dc70a",
24
24
  "_spec": "@syncfusion/ej2-vue-navigations@*",
25
25
  "_where": "/jenkins/workspace/elease-automation_release_26.1.1/packages/included",
26
26
  "author": {
@@ -32,7 +32,7 @@
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
34
  "@syncfusion/ej2-base": "~26.1.37",
35
- "@syncfusion/ej2-navigations": "26.1.40",
35
+ "@syncfusion/ej2-navigations": "26.1.41",
36
36
  "@syncfusion/ej2-vue-base": "~26.1.35"
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": "26.1.40",
73
+ "version": "26.1.41",
74
74
  "sideEffects": false
75
75
  }
@@ -29,6 +29,7 @@ export declare type StepperComponent = typeof ComponentBase & {
29
29
  }, successHandler?: Function): void;
30
30
  nextStep(): void;
31
31
  previousStep(): void;
32
+ refreshProgressbar(): void;
32
33
  reset(): void;
33
34
  };
34
35
  export declare const StepperPlugin: {
@@ -153,6 +153,9 @@ export var StepperComponent = vueDefineComponent({
153
153
  previousStep: function () {
154
154
  return this.ej2Instances.previousStep();
155
155
  },
156
+ refreshProgressbar: function () {
157
+ return this.ej2Instances.refreshProgressbar();
158
+ },
156
159
  reset: function () {
157
160
  return this.ej2Instances.reset();
158
161
  },