carbon-addons-iot-react 2.149.0-next.0 → 2.149.0-next.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/CHANGELOG.md +47 -0
- package/css/carbon-addons-iot-react.css +11 -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 +20 -5
- 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 +20 -5
- 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 +11 -2
- package/lib/css/carbon-addons-iot-react.css.map +1 -1
- package/lib/hooks/useUniqueId.js +21 -3
- package/lib/scss/components/List/ListItem/_list-item.scss +11 -0
- package/lib/scss/components/Table/TableBody/RowActionsCell/_row-actions-cell.scss +2 -2
- package/package.json +2 -2
- package/scss/components/List/ListItem/_list-item.scss +11 -0
- package/scss/components/Table/TableBody/RowActionsCell/_row-actions-cell.scss +2 -2
- package/umd/carbon-addons-iot-react.js +107 -34
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.4](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.149.0-next.3...v2.149.0-next.4) (2022-02-16)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **status-bar:** add className prop ([7e4aaf6](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/7e4aaf6b18f92d587db0f5ef2339c5a3c6113c8a))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [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)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [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)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* **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))
|
|
31
|
+
* **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))
|
|
32
|
+
* **IdleTimer:** Changes per PR feedbacks. ([a136a81](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/a136a8128ebdfb540a00d737497f4ec900cb3fe1))
|
|
33
|
+
* **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))
|
|
34
|
+
* **IdleTimer:** Removing an unused method in IdlerTimer. ([4939de0](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/4939de0260c431c02896d701d7477ba7a404a682))
|
|
35
|
+
* **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))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
# [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)
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
### Bug Fixes
|
|
45
|
+
|
|
46
|
+
* **repo:** change uuid imports to use uuid/v4 ([63dffa4](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/63dffa4d8979ea64c67e628d2a98eb8b043f990f))
|
|
47
|
+
* **repo:** use wildcard import for uuid ([1d6c0f9](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/1d6c0f9cd1baad85da8c27aa614bfdf4eda87539))
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
6
53
|
# [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
54
|
|
|
8
55
|
|
|
@@ -32820,6 +32820,12 @@ html[dir=rtl] .iot--list-builder__reset-button .bx--btn__icon {
|
|
|
32820
32820
|
position: absolute;
|
|
32821
32821
|
align-items: stretch;
|
|
32822
32822
|
}
|
|
32823
|
+
.iot--list-item-editable--drop-targets.iot--list-item__large {
|
|
32824
|
+
margin-left: -1rem;
|
|
32825
|
+
}
|
|
32826
|
+
[dir=rtl] .iot--list-item-editable--drop-targets.iot--list-item__large {
|
|
32827
|
+
margin-right: -1rem;
|
|
32828
|
+
}
|
|
32823
32829
|
.iot--list-item-editable--drop-target-above {
|
|
32824
32830
|
position: relative;
|
|
32825
32831
|
width: 100%;
|
|
@@ -32827,6 +32833,9 @@ html[dir=rtl] .iot--list-builder__reset-button .bx--btn__icon {
|
|
|
32827
32833
|
}
|
|
32828
32834
|
.iot--list-item-editable--drop-target-above__over {
|
|
32829
32835
|
border-top: solid 2px #0f62fe;
|
|
32836
|
+
position: absolute;
|
|
32837
|
+
width: calc(100% + 2rem);
|
|
32838
|
+
top: 0;
|
|
32830
32839
|
}
|
|
32831
32840
|
.iot--list-item-editable--drop-target-nested {
|
|
32832
32841
|
position: absolute;
|
|
@@ -36150,8 +36159,8 @@ html[dir=rtl] .iot--pagination.bx--pagination .bx--select-input + svg {
|
|
|
36150
36159
|
opacity: 1;
|
|
36151
36160
|
}
|
|
36152
36161
|
.iot--row-actions-container .bx--loading--small {
|
|
36153
|
-
width:
|
|
36154
|
-
height:
|
|
36162
|
+
width: 1rem;
|
|
36163
|
+
height: 1rem;
|
|
36155
36164
|
margin-right: 0.5rem;
|
|
36156
36165
|
}
|
|
36157
36166
|
.iot--row-actions-container > * {
|