carbon-addons-iot-react 2.148.1-next.2 → 2.149.0-next.0
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 +11 -0
- package/css/carbon-addons-iot-react.css +3 -0
- package/css/carbon-addons-iot-react.css.map +1 -1
- package/es/components/ProgressBar/ProgressBar.js +17 -1
- package/lib/components/ProgressBar/ProgressBar.js +17 -1
- package/lib/css/carbon-addons-iot-react.css +3 -0
- package/lib/css/carbon-addons-iot-react.css.map +1 -1
- package/lib/scss/components/ProgressBar/_progress-bar.scss +4 -0
- package/package.json +2 -2
- package/scss/components/ProgressBar/_progress-bar.scss +4 -0
- package/umd/carbon-addons-iot-react.js +17 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [2.149.0-next.0](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.148.1-next.2...v2.149.0-next.0) (2022-02-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **progress-bar:** add light prop ([f23dbdc](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/f23dbdc3fcbc3bcab09537182e98620e562b02ec))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [2.148.1-next.2](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.148.1-next.1...v2.148.1-next.2) (2022-02-10)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -34414,6 +34414,9 @@ html[dir=rtl] .iot--menu-button__menu .bx--menu-option__info {
|
|
|
34414
34414
|
.bx--progress-bar__track {
|
|
34415
34415
|
background-color: #f4f4f4;
|
|
34416
34416
|
}
|
|
34417
|
+
.iot--progress-bar-container--light .bx--progress-bar__track {
|
|
34418
|
+
background-color: #ffffff;
|
|
34419
|
+
}
|
|
34417
34420
|
|
|
34418
34421
|
.bx--progress-bar__bar {
|
|
34419
34422
|
background-color: var(--progress-bar-fill-color);
|