carbon-addons-iot-react 2.148.1-next.2 → 2.149.0-next.3
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 +47 -0
- package/css/carbon-addons-iot-react.css +5 -2
- package/css/carbon-addons-iot-react.css.map +1 -1
- package/es/components/CardEditor/CardEditForm/CardEditFormItems/DataSeriesFormItems/DataSeriesFormContent.js +1 -1
- package/es/components/CardEditor/CardEditForm/CardEditFormItems/TableCardFormItems/TableCardFormContent.js +1 -1
- package/es/components/CardEditor/CardEditForm/CardEditFormItems/ThresholdsFormItem.js +1 -1
- package/es/components/DashboardEditor/editorUtils.js +1 -1
- package/es/components/DateTimePicker/DateTimePicker.js +1 -1
- package/es/components/DateTimePicker/DateTimePickerV2.js +1 -1
- package/es/components/ProgressBar/ProgressBar.js +17 -1
- package/es/components/SuiteHeader/IdleLogoutConfirmationModal/IdleLogoutConfirmationModal.js +50 -10
- package/es/components/SuiteHeader/util/IdleTimer.js +40 -20
- package/es/hooks/useUniqueId.js +1 -1
- package/lib/components/CardEditor/CardEditForm/CardEditFormItems/DataSeriesFormItems/DataSeriesFormContent.js +23 -3
- package/lib/components/CardEditor/CardEditForm/CardEditFormItems/TableCardFormItems/TableCardFormContent.js +22 -2
- package/lib/components/CardEditor/CardEditForm/CardEditFormItems/ThresholdsFormItem.js +23 -3
- package/lib/components/DashboardEditor/editorUtils.js +23 -3
- package/lib/components/DateTimePicker/DateTimePicker.js +22 -2
- package/lib/components/DateTimePicker/DateTimePickerV2.js +22 -2
- package/lib/components/ProgressBar/ProgressBar.js +17 -1
- package/lib/components/SuiteHeader/IdleLogoutConfirmationModal/IdleLogoutConfirmationModal.js +50 -10
- package/lib/components/SuiteHeader/util/IdleTimer.js +40 -20
- package/lib/css/carbon-addons-iot-react.css +5 -2
- package/lib/css/carbon-addons-iot-react.css.map +1 -1
- package/lib/hooks/useUniqueId.js +21 -3
- package/lib/scss/components/ProgressBar/_progress-bar.scss +4 -0
- package/lib/scss/components/Table/TableBody/RowActionsCell/_row-actions-cell.scss +2 -2
- package/package.json +2 -2
- package/scss/components/ProgressBar/_progress-bar.scss +4 -0
- package/scss/components/Table/TableBody/RowActionsCell/_row-actions-cell.scss +2 -2
- package/umd/carbon-addons-iot-react.js +104 -30
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,53 @@
|
|
|
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.3](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.149.0-next.2...v2.149.0-next.3) (2022-02-16)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [2.149.0-next.2](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.149.0-next.1...v2.149.0-next.2) (2022-02-15)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **IdleLogoutConfirmationModal:** Disabling the "Stay Logged in" button after the Log out button is clicked. ([f1384b0](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/f1384b025b9bb68e2af9b5282c3e3c12f5abd533))
|
|
20
|
+
* **IdleTimer:** Adding an extra callback to IdleTimer that is fired when the user inactivity timeout cookie is cleared in some other tab. ([5f1abce](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/5f1abce1d43f9c628d64e856a3e05dd34fef63e5))
|
|
21
|
+
* **IdleTimer:** Changes per PR feedbacks. ([a136a81](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/a136a8128ebdfb540a00d737497f4ec900cb3fe1))
|
|
22
|
+
* **IdleTimer:** Including the condition where the idle timeout cookie is NaN in the setInterval logic, since a logout event in another tab would clear the cookie. The default behavior for a deleted cookie is to consider that timeout has been reached and enter countdown state. ([39a5bfc](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/39a5bfcd246e0da8b79db15e009941c1147b956a))
|
|
23
|
+
* **IdleTimer:** Removing an unused method in IdlerTimer. ([4939de0](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/4939de0260c431c02896d701d7477ba7a404a682))
|
|
24
|
+
* **IdleTimer:** Removing the method that deletes the cookie (it is not needed and may cause a bug) ([ae8a535](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/ae8a5357970445171f983c61cfab4610e5dd4a06))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
# [2.149.0-next.1](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.149.0-next.0...v2.149.0-next.1) (2022-02-14)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Bug Fixes
|
|
34
|
+
|
|
35
|
+
* **repo:** change uuid imports to use uuid/v4 ([63dffa4](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/63dffa4d8979ea64c67e628d2a98eb8b043f990f))
|
|
36
|
+
* **repo:** use wildcard import for uuid ([1d6c0f9](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/1d6c0f9cd1baad85da8c27aa614bfdf4eda87539))
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
# [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)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
### Features
|
|
46
|
+
|
|
47
|
+
* **progress-bar:** add light prop ([f23dbdc](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/f23dbdc3fcbc3bcab09537182e98620e562b02ec))
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
6
53
|
## [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
54
|
|
|
8
55
|
|
|
@@ -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);
|
|
@@ -36147,8 +36150,8 @@ html[dir=rtl] .iot--pagination.bx--pagination .bx--select-input + svg {
|
|
|
36147
36150
|
opacity: 1;
|
|
36148
36151
|
}
|
|
36149
36152
|
.iot--row-actions-container .bx--loading--small {
|
|
36150
|
-
width:
|
|
36151
|
-
height:
|
|
36153
|
+
width: 1rem;
|
|
36154
|
+
height: 1rem;
|
|
36152
36155
|
margin-right: 0.5rem;
|
|
36153
36156
|
}
|
|
36154
36157
|
.iot--row-actions-container > * {
|