@syncfusion/ej2-navigations 30.1.41 → 30.2.4
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/aceconfig.js +17 -0
- package/dist/ej2-navigations.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +2 -2
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +2 -2
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +2 -2
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +7 -7
- package/src/stepper-base/stepper-base-model.d.ts +4 -1
- package/src/stepper-base/stepper-base.d.ts +4 -1
- package/src/toolbar/toolbar.js +2 -2
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 30.
|
|
3
|
+
* version : 30.2.4
|
|
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.
|
|
3
|
+
"version": "30.2.4",
|
|
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.
|
|
12
|
-
"@syncfusion/ej2-buttons": "~30.
|
|
13
|
-
"@syncfusion/ej2-data": "~30.
|
|
14
|
-
"@syncfusion/ej2-inputs": "~30.
|
|
15
|
-
"@syncfusion/ej2-lists": "~30.
|
|
16
|
-
"@syncfusion/ej2-popups": "~30.
|
|
11
|
+
"@syncfusion/ej2-base": "~30.2.4",
|
|
12
|
+
"@syncfusion/ej2-buttons": "~30.2.4",
|
|
13
|
+
"@syncfusion/ej2-data": "~30.2.4",
|
|
14
|
+
"@syncfusion/ej2-inputs": "~30.2.4",
|
|
15
|
+
"@syncfusion/ej2-lists": "~30.2.4",
|
|
16
|
+
"@syncfusion/ej2-popups": "~30.2.4"
|
|
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
|
*
|
package/src/toolbar/toolbar.js
CHANGED
|
@@ -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 () {
|