@syncfusion/ej2-navigations 30.1.41 → 30.1.42

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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 30.1.41
3
+ * version : 30.1.42
4
4
  * Copyright Syncfusion Inc. 2001 - 2024. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syncfusion/ej2-navigations",
3
- "version": "30.1.41",
3
+ "version": "30.1.42",
4
4
  "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",
5
5
  "author": "Syncfusion Inc.",
6
6
  "license": "SEE LICENSE IN license",
@@ -8,12 +8,12 @@
8
8
  "module": "./index.js",
9
9
  "es2015": "./dist/es6/ej2-navigations.es5.js",
10
10
  "dependencies": {
11
- "@syncfusion/ej2-base": "~30.1.38",
11
+ "@syncfusion/ej2-base": "~30.1.42",
12
12
  "@syncfusion/ej2-buttons": "~30.1.37",
13
13
  "@syncfusion/ej2-data": "~30.1.40",
14
14
  "@syncfusion/ej2-inputs": "~30.1.40",
15
- "@syncfusion/ej2-lists": "~30.1.41",
16
- "@syncfusion/ej2-popups": "~30.1.40"
15
+ "@syncfusion/ej2-lists": "~30.1.42",
16
+ "@syncfusion/ej2-popups": "~30.1.42"
17
17
  },
18
18
  "devDependencies": {},
19
19
  "keywords": [
@@ -30,11 +30,14 @@ export interface StepModel {
30
30
 
31
31
  /**
32
32
  * Defines the state whether it is valid completion or not.
33
+ * If set to true, the completion is valid.
34
+ * If false, the completion is invalid.
35
+ * If null, the completion state is not determined.
33
36
  *
34
37
  * @aspType bool?
35
38
  * @default null
36
39
  */
37
- isValid?: boolean;
40
+ isValid?: boolean | null;
38
41
 
39
42
  /**
40
43
  * Defines the label content of the step.
@@ -41,11 +41,14 @@ export declare class Step extends ChildProperty<Step> {
41
41
  iconCss: string;
42
42
  /**
43
43
  * Defines the state whether it is valid completion or not.
44
+ * If set to true, the completion is valid.
45
+ * If false, the completion is invalid.
46
+ * If null, the completion state is not determined.
44
47
  *
45
48
  * @aspType bool?
46
49
  * @default null
47
50
  */
48
- isValid: boolean;
51
+ isValid: boolean | null;
49
52
  /**
50
53
  * Defines the label content of the step.
51
54
  *
@@ -756,10 +756,10 @@ var Toolbar = /** @class */ (function (_super) {
756
756
  Toolbar.prototype.render = function () {
757
757
  var _this = this;
758
758
  this.initialize();
759
- this.renderControl();
760
- this.wireEvents();
761
759
  this.clickEvent = this.docEvent.bind(this);
762
760
  this.scrollEvent = this.docEvent.bind(this);
761
+ this.renderControl();
762
+ this.wireEvents();
763
763
  this.renderComplete();
764
764
  if (this.isReact && this.portals && this.portals.length > 0) {
765
765
  this.renderReactTemplates(function () {