@syncfusion/ej2-react-progressbar 19.4.55 → 20.1.55
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/CHANGELOG.md
CHANGED
|
@@ -2,19 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
#### Bug Fixes
|
|
8
|
-
|
|
9
|
-
- `#I368371` - Progress bar label is hidden and shown on dynamic update has been fixed.
|
|
10
|
-
|
|
11
|
-
## 19.4.53 (2022-02-22)
|
|
5
|
+
## 20.1.52 (2022-05-04)
|
|
12
6
|
|
|
13
7
|
### ProgressBar
|
|
14
8
|
|
|
15
9
|
#### Bug Fixes
|
|
16
10
|
|
|
17
|
-
- `#
|
|
11
|
+
- `#I368371` - Progress bar label fading out on animation is resolved now.
|
|
18
12
|
|
|
19
13
|
## 19.1.54 (2021-03-30)
|
|
20
14
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-react-progressbar.umd.min.js
|
|
3
|
-
* version :
|
|
3
|
+
* version : 20.1.55
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. 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,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-react-progressbar@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-react-progressbar@
|
|
3
|
+
"_id": "@syncfusion/ej2-react-progressbar@20.1.52",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-l1Zl3bBRSnqOTjgalQkSWvYclpfd+RFjY8YIoJMtGS+7VyjWP7Fw03dJCmWlffDxesiTqiAYZOuttciW9QaePg==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-react-progressbar",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-react-progressbar/-/ej2-react-progressbar-
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-react-progressbar/-/ej2-react-progressbar-20.1.52.tgz",
|
|
23
|
+
"_shasum": "49756c7c0fd6a1f74eb92b3ac889dfd6b0cdb8c4",
|
|
24
24
|
"_spec": "@syncfusion/ej2-react-progressbar@*",
|
|
25
25
|
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-base": "~
|
|
35
|
-
"@syncfusion/ej2-progressbar": "
|
|
36
|
-
"@syncfusion/ej2-react-base": "~
|
|
34
|
+
"@syncfusion/ej2-base": "~20.1.55",
|
|
35
|
+
"@syncfusion/ej2-progressbar": "20.1.55",
|
|
36
|
+
"@syncfusion/ej2-react-base": "~20.1.55"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "Essential JS 2 ProgressBar Component for React",
|
|
@@ -64,6 +64,6 @@
|
|
|
64
64
|
"type": "git",
|
|
65
65
|
"url": "git+https://github.com/syncfusion/ej2-react-ui-components.git"
|
|
66
66
|
},
|
|
67
|
-
"version": "
|
|
67
|
+
"version": "20.1.55",
|
|
68
68
|
"sideEffects": false
|
|
69
69
|
}
|
|
@@ -13,7 +13,9 @@ export interface ProgressAnnotationSettingsDirTypecast {
|
|
|
13
13
|
* </progressbarComponent>
|
|
14
14
|
* ```
|
|
15
15
|
*/
|
|
16
|
-
export declare class ProgressBarAnnotationDirective extends ComplexBase<ProgressAnnotationSettingsModel | ProgressAnnotationSettingsDirTypecast
|
|
16
|
+
export declare class ProgressBarAnnotationDirective extends ComplexBase<ProgressAnnotationSettingsModel | ProgressAnnotationSettingsDirTypecast & {
|
|
17
|
+
children?: React.ReactNode;
|
|
18
|
+
}, ProgressAnnotationSettingsModel | ProgressAnnotationSettingsDirTypecast> {
|
|
17
19
|
static moduleName: string;
|
|
18
20
|
}
|
|
19
21
|
export declare class ProgressBarAnnotationsDirective extends ComplexBase<{}, {}> {
|