carbon-addons-iot-react 2.146.0-next.96 → 2.146.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 +885 -0
- package/css/carbon-addons-iot-react.css +11598 -9503
- package/css/carbon-addons-iot-react.css.map +1 -1
- package/es/components/BarChartCard/BarChartCard.js +37 -8
- package/es/components/BarChartCard/barChartUtils.js +22 -2
- package/es/components/Card/Card.js +14 -3
- package/es/components/Card/CardToolbar.js +33 -3
- package/es/components/CardEditor/CardEditForm/CardEditFormItems/DataSeriesFormItemModal.js +15 -3
- package/es/components/CardEditor/CardEditor.js +23 -1
- package/es/components/ComboChartCard/ComboChartCard.js +4 -3
- package/es/components/ComboChartCard/comboChartHelpers.js +8 -20
- package/es/components/DashboardEditor/DashboardEditor.js +23 -2
- package/es/components/DashboardEditor/DashboardEditorCardRenderer.js +54 -226
- package/es/components/DashboardEditor/DashboardEditorDefaultCardRenderer.js +124 -0
- package/es/components/DashboardEditor/editorUtils.js +8 -4
- package/es/components/DateTimePicker/DateTimePicker.js +416 -198
- package/es/components/DateTimePicker/DateTimePickerV2.js +4 -0
- package/es/components/EmptyState/EmptyState.js +2 -1
- package/es/components/Header/Header.js +33 -5
- package/es/components/Header/HeaderAction/HeaderAction.js +30 -8
- package/es/components/Header/HeaderAction/HeaderActionMenu.js +20 -4
- package/es/components/Header/HeaderAction/HeaderActionPanel.js +26 -4
- package/es/components/Header/HeaderActionGroup.js +41 -8
- package/es/components/HotspotEditorModal/HotspotEditorModal.js +1 -1
- package/es/components/IconDropdown/IconDropdown.js +2 -0
- package/es/components/ImageCard/ImageCard.js +2 -1
- package/es/components/List/HierarchyList/BulkActionHeader.js +2 -1
- package/es/components/List/HierarchyList/HierarchyList.js +46 -6
- package/es/components/List/HierarchyList/HierarchyListReorderModal/HierarchyListReorderModal.js +24 -9
- package/es/components/List/List.js +1 -1
- package/es/components/List/ListItem/ListItem.js +1 -0
- package/es/components/List/ListItem/ListItemWrapper.js +1 -1
- package/es/components/List/ListItem/ListTarget.js +1 -0
- package/es/components/List/SimpleList/SimpleList.js +98 -64
- package/es/components/MenuButton/utils.js +2 -2
- package/es/components/PageTitleBar/PageTitleBar.js +3 -1
- package/es/components/PageWizard/StatefulPageWizard.js +4 -2
- package/es/components/PieChartCard/PieChartCard.js +1 -3
- package/es/components/RuleBuilder/GroupLogic.js +148 -0
- package/es/components/RuleBuilder/Rule.js +395 -0
- package/es/components/RuleBuilder/RuleBuilder.js +654 -0
- package/es/components/RuleBuilder/RuleBuilderEditor.js +232 -0
- package/es/components/RuleBuilder/RuleBuilderHeader.js +171 -0
- package/es/components/RuleBuilder/RuleBuilderPropTypes.js +2 -2
- package/es/components/RuleBuilder/RuleBuilderTags.js +146 -0
- package/es/components/RuleBuilder/RuleValueField.js +121 -0
- package/es/components/RuleBuilder/utils.js +206 -0
- package/es/components/SelectUsersModal/SelectUsersModal.js +504 -0
- package/es/components/SimplePagination/SimplePagination.js +11 -5
- package/es/components/SuiteHeader/SuiteHeader.js +24 -2
- package/es/components/SuiteHeader/SuiteHeaderProfile/SuiteHeaderProfile.js +3 -1
- package/es/components/Table/StatefulTable.js +2 -38
- package/es/components/Table/Table.js +57 -15
- package/es/components/Table/TableBody/RowActionsCell/RowActionsCell.js +1 -0
- package/es/components/Table/TableBody/TableBodyRow/TableBodyRow.js +11 -2
- package/es/components/Table/TableCellRenderer/TableCellRenderer.js +29 -5
- package/es/components/Table/TableHead/FilterHeaderRow/FilterHeaderRow.js +6 -9
- package/es/components/Table/TableHead/TableHead.js +4 -2
- package/es/components/Table/TableHead/columnWidthUtilityFunctions.js +28 -8
- package/es/components/Table/TableManageViewsModal/TableManageViewsList.js +6 -4
- package/es/components/Table/TableMultiSortModal/TableMultiSortModal.js +1 -1
- package/es/components/Table/TablePropTypes.js +15 -17
- package/es/components/Table/TableSkeletonWithHeaders/TableSkeletonWithHeaders.js +34 -8
- package/es/components/Table/TableToolbar/TableToolbar.js +15 -4
- package/es/components/Table/TableToolbar/TableToolbarAdvancedFilterFlyout.js +13 -17
- package/es/components/Table/statefulTableUtilities.js +39 -0
- package/es/components/Table/tableReducer.js +3 -4
- package/es/components/TableCard/TableCard.js +19 -17
- package/es/components/TableCard/tableCardUtils.js +2 -2
- package/es/components/TileCatalogNew/TileCatalogNew.js +2 -1
- package/es/components/TileGallery/TileGalleryItem.js +1 -1
- package/es/components/TimePickerSpinner/TimePickerSpinner.js +31 -9
- package/es/components/TimeSeriesCard/TimeSeriesCard.js +10 -6
- package/es/components/TimeSeriesCard/timeSeriesUtils.js +1 -1
- package/es/components/ValueCard/Attribute.js +23 -4
- package/es/components/ValueCard/ValueCard.js +14 -3
- package/es/components/ValueCard/ValueRenderer.js +48 -10
- package/es/constants/CardPropTypes.js +9 -3
- package/es/index.js +2 -0
- package/es/internal/experimental.js +36 -0
- package/es/utils/componentUtilityFunctions.js +2 -2
- package/lib/components/BarChartCard/BarChartCard.js +34 -5
- package/lib/components/BarChartCard/barChartUtils.js +21 -0
- package/lib/components/Card/Card.js +14 -3
- package/lib/components/Card/CardToolbar.js +33 -3
- package/lib/components/CardEditor/CardEditForm/CardEditFormItems/DataSeriesFormItemModal.js +15 -3
- package/lib/components/CardEditor/CardEditor.js +23 -1
- package/lib/components/ComboChartCard/ComboChartCard.js +4 -3
- package/lib/components/ComboChartCard/comboChartHelpers.js +7 -19
- package/lib/components/DashboardEditor/DashboardEditor.js +23 -2
- package/lib/components/DashboardEditor/DashboardEditorCardRenderer.js +54 -227
- package/lib/components/DashboardEditor/DashboardEditorDefaultCardRenderer.js +135 -0
- package/lib/components/DashboardEditor/editorUtils.js +8 -4
- package/lib/components/DateTimePicker/DateTimePicker.js +416 -198
- package/lib/components/DateTimePicker/DateTimePickerV2.js +4 -0
- package/lib/components/EmptyState/EmptyState.js +2 -1
- package/lib/components/Header/Header.js +33 -5
- package/lib/components/Header/HeaderAction/HeaderAction.js +30 -8
- package/lib/components/Header/HeaderAction/HeaderActionMenu.js +20 -4
- package/lib/components/Header/HeaderAction/HeaderActionPanel.js +27 -4
- package/lib/components/Header/HeaderActionGroup.js +41 -8
- package/lib/components/HotspotEditorModal/HotspotEditorModal.js +1 -1
- package/lib/components/IconDropdown/IconDropdown.js +2 -0
- package/lib/components/ImageCard/ImageCard.js +2 -1
- package/lib/components/List/HierarchyList/BulkActionHeader.js +2 -1
- package/lib/components/List/HierarchyList/HierarchyList.js +46 -6
- package/lib/components/List/HierarchyList/HierarchyListReorderModal/HierarchyListReorderModal.js +24 -9
- package/lib/components/List/List.js +1 -1
- package/lib/components/List/ListItem/ListItem.js +1 -0
- package/lib/components/List/ListItem/ListItemWrapper.js +1 -1
- package/lib/components/List/ListItem/ListTarget.js +1 -0
- package/lib/components/List/SimpleList/SimpleList.js +97 -63
- package/lib/components/MenuButton/utils.js +2 -2
- package/lib/components/PageTitleBar/PageTitleBar.js +3 -1
- package/lib/components/PageWizard/StatefulPageWizard.js +4 -2
- package/lib/components/PieChartCard/PieChartCard.js +1 -3
- package/lib/components/RuleBuilder/GroupLogic.js +176 -0
- package/lib/components/RuleBuilder/Rule.js +423 -0
- package/lib/components/RuleBuilder/RuleBuilder.js +665 -0
- package/lib/components/RuleBuilder/RuleBuilderEditor.js +262 -0
- package/lib/components/RuleBuilder/RuleBuilderHeader.js +199 -0
- package/lib/components/RuleBuilder/RuleBuilderPropTypes.js +2 -1
- package/lib/components/RuleBuilder/RuleBuilderTags.js +176 -0
- package/lib/components/RuleBuilder/RuleValueField.js +148 -0
- package/lib/components/RuleBuilder/utils.js +223 -0
- package/lib/components/SelectUsersModal/SelectUsersModal.js +519 -0
- package/lib/components/SimplePagination/SimplePagination.js +11 -5
- package/lib/components/SuiteHeader/SuiteHeader.js +24 -2
- package/lib/components/SuiteHeader/SuiteHeaderProfile/SuiteHeaderProfile.js +3 -1
- package/lib/components/Table/StatefulTable.js +3 -39
- package/lib/components/Table/Table.js +57 -15
- package/lib/components/Table/TableBody/RowActionsCell/RowActionsCell.js +1 -0
- package/lib/components/Table/TableBody/TableBodyRow/TableBodyRow.js +11 -2
- package/lib/components/Table/TableCellRenderer/TableCellRenderer.js +31 -5
- package/lib/components/Table/TableHead/FilterHeaderRow/FilterHeaderRow.js +6 -9
- package/lib/components/Table/TableHead/TableHead.js +3 -1
- package/lib/components/Table/TableHead/columnWidthUtilityFunctions.js +28 -7
- package/lib/components/Table/TableManageViewsModal/TableManageViewsList.js +6 -4
- package/lib/components/Table/TableMultiSortModal/TableMultiSortModal.js +1 -1
- package/lib/components/Table/TablePropTypes.js +15 -17
- package/lib/components/Table/TableSkeletonWithHeaders/TableSkeletonWithHeaders.js +36 -8
- package/lib/components/Table/TableToolbar/TableToolbar.js +15 -4
- package/lib/components/Table/TableToolbar/TableToolbarAdvancedFilterFlyout.js +13 -17
- package/lib/components/Table/statefulTableUtilities.js +43 -0
- package/lib/components/Table/tableReducer.js +3 -4
- package/lib/components/TableCard/TableCard.js +19 -17
- package/lib/components/TableCard/tableCardUtils.js +2 -2
- package/lib/components/TileCatalogNew/TileCatalogNew.js +2 -1
- package/lib/components/TileGallery/TileGalleryItem.js +1 -1
- package/lib/components/TimePickerSpinner/TimePickerSpinner.js +31 -9
- package/lib/components/TimeSeriesCard/TimeSeriesCard.js +10 -6
- package/lib/components/TimeSeriesCard/timeSeriesUtils.js +1 -1
- package/lib/components/ValueCard/Attribute.js +23 -4
- package/lib/components/ValueCard/ValueCard.js +14 -3
- package/lib/components/ValueCard/ValueRenderer.js +49 -10
- package/lib/constants/CardPropTypes.js +9 -3
- package/lib/css/carbon-addons-iot-react.css +11598 -9503
- package/lib/css/carbon-addons-iot-react.css.map +1 -1
- package/lib/index.js +4 -0
- package/lib/internal/experimental.js +43 -0
- package/lib/scss/components/Card/_card.scss +4 -0
- package/lib/scss/components/DataTable/_data-table.scss +24 -8
- package/lib/scss/components/DateTimePicker/_date-time-picker.scss +29 -1
- package/lib/scss/components/EmptyState/_emptystate.scss +2 -2
- package/lib/scss/components/Header/_header.scss +16 -0
- package/lib/scss/components/RuleBuilder/_rule-builder.scss +1 -1
- package/lib/scss/components/SideNav/_side-nav.scss +5 -0
- package/lib/scss/components/Table/TableFoot/_table-foot.scss +20 -3
- package/lib/scss/components/Table/TableHead/_table-head.scss +46 -3
- package/lib/scss/components/Table/TableSkeletonWithHeaders/_table-skeleton-with-headers.scss +18 -0
- package/lib/scss/components/Table/_table.scss +7 -4
- package/lib/scss/components/TileCatalogNew/_tile-catalog.scss +0 -1
- package/lib/scss/components/ValueCard/_value-renderer.scss +14 -1
- package/lib/utils/componentUtilityFunctions.js +2 -2
- package/package.json +17 -18
- package/scss/components/Card/_card.scss +4 -0
- package/scss/components/DataTable/_data-table.scss +24 -8
- package/scss/components/DateTimePicker/_date-time-picker.scss +29 -1
- package/scss/components/EmptyState/_emptystate.scss +2 -2
- package/scss/components/Header/_header.scss +16 -0
- package/scss/components/RuleBuilder/_rule-builder.scss +1 -1
- package/scss/components/SideNav/_side-nav.scss +5 -0
- package/scss/components/Table/TableFoot/_table-foot.scss +20 -3
- package/scss/components/Table/TableHead/_table-head.scss +46 -3
- package/scss/components/Table/TableSkeletonWithHeaders/_table-skeleton-with-headers.scss +18 -0
- package/scss/components/Table/_table.scss +7 -4
- package/scss/components/TileCatalogNew/_tile-catalog.scss +0 -1
- package/scss/components/ValueCard/_value-renderer.scss +14 -1
- package/umd/carbon-addons-iot-react.js +14714 -6604
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,891 @@
|
|
|
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.146.0](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.187...v2.146.0) (2021-09-17)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [2.146.0-next.187](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.186...v2.146.0-next.187) (2021-09-16)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [2.146.0-next.186](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.185...v2.146.0-next.186) (2021-09-16)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* **datetimepicker:** disable apply for invalid values ([abf2296](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/abf2296e060ddea180bce84221b8055df1332705)), closes [#2832](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/2832)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# [2.146.0-next.185](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.184...v2.146.0-next.185) (2021-09-16)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
### Bug Fixes
|
|
37
|
+
|
|
38
|
+
* **suite-header:** btn--primary icon colors ([00710ae](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/00710ae1b5f382fa934c8222836656f42728b0b8))
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
# [2.146.0-next.184](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.183...v2.146.0-next.184) (2021-09-15)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
### Bug Fixes
|
|
48
|
+
|
|
49
|
+
* **card:** make dateTimeMask a prop, add tests, update snapshots ([284eab8](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/284eab8ea55e886604e07ba84510ff6200077c96))
|
|
50
|
+
* **card:** update default dateTimeMask ([38e57bf](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/38e57bfa0e78b5b45936959c2366e3cffbfaef05))
|
|
51
|
+
* **carddaterangepicker:** need to support locales correctly ([028765a](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/028765a9ab08844d8b6a40d0f4ea5bb6bb5358ad))
|
|
52
|
+
* **cardrangepicker:** need to pass locale for the calendar ([467b700](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/467b70007f1e144df81c57fa2ed0fbd8a2c1f767))
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
# [2.146.0-next.183](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.182...v2.146.0-next.183) (2021-09-13)
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
### Bug Fixes
|
|
62
|
+
|
|
63
|
+
* **table:** fix crash if hasMultisort:true without sortable columns ([ea72ce2](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/ea72ce252e96eec01e9a202c47021dcdb3b40678))
|
|
64
|
+
* **table:** remove padding from checkbox at small sizes ([94837bf](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/94837bfee982519dc3f68c2ea17d32fed1167b45))
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
### Features
|
|
68
|
+
|
|
69
|
+
* **table:** enable size prop to be used in header/footer ([83672b2](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/83672b2c68a482a6e60c3efbd1bd46986a0f043a))
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
# [2.146.0-next.182](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.181...v2.146.0-next.182) (2021-09-10)
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
### Bug Fixes
|
|
79
|
+
|
|
80
|
+
* **combocharthelpers:** removed non functional zoom code ([db8e581](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/db8e581de230501144cf447746df5fa743b571fc))
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
# [2.146.0-next.181](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.180...v2.146.0-next.181) (2021-09-08)
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
### Bug Fixes
|
|
90
|
+
|
|
91
|
+
* **header:** add onKeyDown handlers to allow keyboard navigation ([0677fd9](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/0677fd92a6f4556a101c7bf568a97ead2b8bedf1))
|
|
92
|
+
* **header:** fix header story to not include A tag in A tag ([4cd6699](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/4cd66999685bcb3c14af38f0f827c51b923f7c0d))
|
|
93
|
+
* **header:** prevent 'element' from being passed as attribute ([7019dd6](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/7019dd6e61e65e6f578e48cb6a08227f29fa4b7c))
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
# [2.146.0-next.180](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.179...v2.146.0-next.180) (2021-09-08)
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
### Bug Fixes
|
|
103
|
+
|
|
104
|
+
* **statefultable:** increased coverage and fixed a reducer action ([ccc87af](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/ccc87afbb2f6e241b2165c755f990e0059512def)), closes [#2802](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/2802)
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
# [2.146.0-next.179](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.178...v2.146.0-next.179) (2021-09-07)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
### Bug Fixes
|
|
114
|
+
|
|
115
|
+
* **repo:** use es build instead of lib in browser ([ad60d94](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/ad60d94ea8ad4d2742298de206773e81f4a0b67f))
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
# [2.146.0-next.178](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.177...v2.146.0-next.178) (2021-09-07)
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
### Features
|
|
125
|
+
|
|
126
|
+
* **table:** allow lazy-loading columns ([eb2e4cc](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/eb2e4ccf8181fd1052d0d2b1738665d0ff26c9e1))
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
# [2.146.0-next.177](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.176...v2.146.0-next.177) (2021-09-07)
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
### Bug Fixes
|
|
136
|
+
|
|
137
|
+
* **empty-state:** adjust padding/sizing on EmptyState elements ([c7e187d](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/c7e187d8ecea960fa5cd5a36418e42e72e638cb3))
|
|
138
|
+
* **table:** removed css that did not and should not work ([e1bdb0f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/e1bdb0f2840e58c519340ad50b9369ad10a67410)), closes [#1683](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/1683)
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
# [2.146.0-next.176](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.175...v2.146.0-next.176) (2021-09-07)
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
### Bug Fixes
|
|
148
|
+
|
|
149
|
+
* **value-card:** fix padding on buttons when onAttributeClick is passed ([672426d](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/672426d5a7903eb9b47308f4e40ac6254b92e0c2))
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
### Features
|
|
153
|
+
|
|
154
|
+
* **value-card:** add title to rendered values ([0539448](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/05394481b8b6b906eabe82a4c2190560f9810aee))
|
|
155
|
+
* **value-card:** adding onAttributeClick callback and tests ([c889630](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/c88963071d97233d9e3b3e3d1cfc56a0484628e4))
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
# [2.146.0-next.175](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.174...v2.146.0-next.175) (2021-09-07)
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
### Bug Fixes
|
|
165
|
+
|
|
166
|
+
* **cardeditor:** rename oncardeditformrender prop ([77e8b82](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/77e8b82dd39252eb16f4f441d91d5a1a5e3607c5))
|
|
167
|
+
* **dashboardeditor:** fix functional initialization ([02794e8](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/02794e85e13f5d35ca0a5c36fd4e8a2dd1927453))
|
|
168
|
+
* **dashboardeditor:** remove unused dataItems prop ([e89ea91](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/e89ea91b55dea66bcc20a68bfc14e9fb13c439e1))
|
|
169
|
+
* **deditorcardrenderer:** remove unnecessary getValidDataItems ([8122fb4](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/8122fb4d8e0ff068d242d6c2a1ecb771af2cc541))
|
|
170
|
+
* **defaultcardrenderer:** add warning for invalid card ([7a7685c](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/7a7685caf38d9c73a5416ecc36fc54c88cc6f5a8))
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
### Features
|
|
174
|
+
|
|
175
|
+
* **dashboardeditor:** add new callbacks for renderCardEditForm ([6fb0695](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/6fb06952b89774de362e2533f12491ca278a8831))
|
|
176
|
+
* **dashboardeditor:** callback allows changing cardeditor at render ([23dbb7e](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/23dbb7ebe9c6abdc9e3c66cd5f73a1919168139e))
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
# [2.146.0-next.174](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.173...v2.146.0-next.174) (2021-09-07)
|
|
183
|
+
|
|
184
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
# [2.146.0-next.173](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.172...v2.146.0-next.173) (2021-09-07)
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
### Bug Fixes
|
|
194
|
+
|
|
195
|
+
* **hierarchy-list:** add decorator to story ([87bdd5f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/87bdd5f020963702a835dcd30f78276551014150))
|
|
196
|
+
* **hierarchy-list:** fix story to not allow switching editingStyle ([ff7ce7f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/ff7ce7fdff47db6d1dbef11f34530b40be927c34))
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
# [2.146.0-next.172](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.171...v2.146.0-next.172) (2021-09-07)
|
|
203
|
+
|
|
204
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
# [2.146.0-next.171](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.170...v2.146.0-next.171) (2021-09-03)
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
### Bug Fixes
|
|
214
|
+
|
|
215
|
+
* **empty-state:** node-sass build errors with `max` ([d7effee](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/d7effeef414205312e316ebe978e43016b8d9829))
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
# [2.146.0-next.170](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.169...v2.146.0-next.170) (2021-09-02)
|
|
222
|
+
|
|
223
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
# [2.146.0-next.169](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.168...v2.146.0-next.169) (2021-09-02)
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
### Bug Fixes
|
|
233
|
+
|
|
234
|
+
* **simple-list:** add useEffect to update items shown ([5c1a4d3](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/5c1a4d3ff41a2f1453a65bcaf797f80bf73aa705))
|
|
235
|
+
* **simple-list:** fix list updates when props change ([b95d060](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/b95d0609ae86a3f6cc34375e01a902f7e723ae98))
|
|
236
|
+
* **simple-list:** pr review feedback changes ([90df381](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/90df3815f1fd0b8917bc89e13a40283aa5a8fb53))
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
# [2.146.0-next.168](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.167...v2.146.0-next.168) (2021-09-02)
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
### Bug Fixes
|
|
246
|
+
|
|
247
|
+
* **date-time-picker:** allow keyboard navigation of presets ([9b03832](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/9b0383201c2f5f0038294f98cd1255f25e34c3af))
|
|
248
|
+
* **date-time-picker:** fix date selection for absolute range ([6d55fc8](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/6d55fc8091886bb97b5ee1263bf12f9e554bfc46))
|
|
249
|
+
* **date-time-picker:** fix keyboard triggering buttons in absolute mode ([50f9aa8](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/50f9aa88edf5a9a4051bfde687524aa3b6cf6937))
|
|
250
|
+
* **date-time-picker:** jest tests pass again ([d9b6740](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/d9b6740d179229bf69cb450334c971de3f235ef2))
|
|
251
|
+
* **date-time-picker:** keep focus on absolute radio button at first ([fe6b3e7](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/fe6b3e71cd9487798b55853cca545766f0e5ad9f))
|
|
252
|
+
* **date-time-picker:** keyboard navigation bugs found in testing ([525cc90](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/525cc90ccff94c0e86d88cba7ebec7f5d913d701))
|
|
253
|
+
* **date-time-picker:** show tooltip on focus ([5bd6373](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/5bd6373e5dc7f72a278ac58a4266c6f4f189e404))
|
|
254
|
+
* **date-time-picker:** show tooltip on hover ([f96d6cb](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/f96d6cb58b00adbb55647a780b38cf97f9c11f5c))
|
|
255
|
+
* **date-time-picker:** spacing issues ([a291be7](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/a291be76b55ab223b3b43b2434bbd794c3ee5fdc))
|
|
256
|
+
* **date-time-picker:** style tooltip based on designs ([7535bc3](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/7535bc3c42e0c656951757769a100e27e4f7f86c))
|
|
257
|
+
* **repo:** match cypress width to taht passed as env in CI ([6ea17b5](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/6ea17b55c59f179f2e8790519332d967cab1d30e))
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
### Features
|
|
261
|
+
|
|
262
|
+
* **date-time-picker:** show tooltip with absolute value, too ([27b6871](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/27b68713164e4a07868346399dc0fedba019e442))
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
# [2.146.0-next.167](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.166...v2.146.0-next.167) (2021-09-02)
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
### Bug Fixes
|
|
272
|
+
|
|
273
|
+
* **internal:** fix fullwidthwrapper to use correct styles ([d660b0a](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/d660b0a065334bf2904ddfa129288631ab61750d))
|
|
274
|
+
* **rule-builder:** fix minor css to prevent container overflowing ([5a82dc5](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/5a82dc5ed0c0511549378a1d2e0c18d7e06c4447))
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
# [2.146.0-next.166](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.165...v2.146.0-next.166) (2021-09-01)
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
### Bug Fixes
|
|
284
|
+
|
|
285
|
+
* **header:** add hidden icon to story ([4ae4451](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/4ae44511a932aaa883be702bb5e17738edf1712e))
|
|
286
|
+
* **header:** fix typos and minor mistakes ([f7df54e](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/f7df54e2ce54e5087260bf4ddf28a41c2b59a6cb))
|
|
287
|
+
* **header:** increase test retries, tun off jest eslint rule for e2e ([2004f99](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/2004f99ee20f8dff714917c661397e4541d7490b))
|
|
288
|
+
* **header:** only change to close icon when triggered from overflow ([a804c37](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/a804c3766ca6a7f5287ed9c4ec9846cf272ceaba))
|
|
289
|
+
* **header:** reduce e2e test size to make test more consistent ([877b0de](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/877b0deb69ee01e70fb14a402b4dbad298fc1057))
|
|
290
|
+
* **header:** update snapshots ([acc4214](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/acc4214ee435610b8f91ed3ea94e512bd67f50bc))
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
### Features
|
|
294
|
+
|
|
295
|
+
* **header:** add hidden by class example in Header story ([723042f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/723042fd11c8edac3ce4ae2cb4cdfa17efad9367))
|
|
296
|
+
* **header:** add isActionItemVisible callback to hide icons ([ddd66c4](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/ddd66c4bef2400f38bdb62173ad5bd8782c857d8))
|
|
297
|
+
* **header:** pass the whole actionItem to isActionItemVisible function ([34550b6](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/34550b6eac2181711029b982f512b41ac53c2283))
|
|
298
|
+
* **suiteheader:** add isActionItemVisible to proptypes and docs ([7e2fdd0](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/7e2fdd07626c8dbb768a7fb4670fff4c68cca2b5))
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
# [2.146.0-next.165](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.164...v2.146.0-next.165) (2021-09-01)
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
### Bug Fixes
|
|
308
|
+
|
|
309
|
+
* **list:** remove comments ([f046b30](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/f046b3035cee84a07b79b8f9a2ccd988e870c8af))
|
|
310
|
+
* **side-nav:** add slight delay on hover open transition ([85d9120](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/85d9120182f757c1dc1c35ff85b4d84d9d20a08b))
|
|
311
|
+
* **sidenav:** added stateful example in storybook ([e90c56c](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/e90c56ce7653baf79925d35205b3161d1ab701de))
|
|
312
|
+
* **table-card:** adjust padding on empty state for medium cards ([c49d72f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/c49d72f0d5ff9cf6f00799cfb53a8b5fc725d2cf))
|
|
313
|
+
* **table-card:** adjust story to allow medium/mediumwide cards ([3a6d7e3](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/3a6d7e382de65ea8f2227285eedeef568bb87e32))
|
|
314
|
+
* **tile-catalog-new:** update tests, fix minor css bug ([441168c](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/441168cb28f50db71d77818d56c68d96845a885d))
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
# [2.146.0-next.164](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.163...v2.146.0-next.164) (2021-09-01)
|
|
321
|
+
|
|
322
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
# [2.146.0-next.163](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.162...v2.146.0-next.163) (2021-09-01)
|
|
329
|
+
|
|
330
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
# [2.146.0-next.162](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.161...v2.146.0-next.162) (2021-09-01)
|
|
337
|
+
|
|
338
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
# [2.146.0-next.161](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.160...v2.146.0-next.161) (2021-09-01)
|
|
345
|
+
|
|
346
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
# [2.146.0-next.160](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.159...v2.146.0-next.160) (2021-09-01)
|
|
353
|
+
|
|
354
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
# [2.146.0-next.159](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.158...v2.146.0-next.159) (2021-09-01)
|
|
361
|
+
|
|
362
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
# [2.146.0-next.158](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.157...v2.146.0-next.158) (2021-09-01)
|
|
369
|
+
|
|
370
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
# [2.146.0-next.157](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.156...v2.146.0-next.157) (2021-09-01)
|
|
377
|
+
|
|
378
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
# [2.146.0-next.156](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.155...v2.146.0-next.156) (2021-09-01)
|
|
385
|
+
|
|
386
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
# [2.146.0-next.155](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.154...v2.146.0-next.155) (2021-09-01)
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
### Bug Fixes
|
|
396
|
+
|
|
397
|
+
* **date-time-picker:** fix relative to arrow position ([1347a6d](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/1347a6db13af95c990626de2baea6d332621e6ac))
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
# [2.146.0-next.154](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.153...v2.146.0-next.154) (2021-08-31)
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
### Bug Fixes
|
|
407
|
+
|
|
408
|
+
* **date-time-picker:** wait until finished typing to parse dates ([a608787](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/a6087872b7a77e726e76a68e24f3af81550d0d2f))
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
# [2.146.0-next.153](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.152...v2.146.0-next.153) (2021-08-31)
|
|
415
|
+
|
|
416
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
# [2.146.0-next.151](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.150...v2.146.0-next.151) (2021-08-27)
|
|
423
|
+
|
|
424
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
# [2.146.0-next.150](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.149...v2.146.0-next.150) (2021-08-27)
|
|
431
|
+
|
|
432
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
# [2.146.0-next.149](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.148...v2.146.0-next.149) (2021-08-27)
|
|
439
|
+
|
|
440
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
# [2.146.0-next.148](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.147...v2.146.0-next.148) (2021-08-27)
|
|
447
|
+
|
|
448
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
# [2.146.0-next.147](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.146...v2.146.0-next.147) (2021-08-27)
|
|
455
|
+
|
|
456
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
# [2.146.0-next.146](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.145...v2.146.0-next.146) (2021-08-27)
|
|
463
|
+
|
|
464
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
# [2.146.0-next.145](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.144...v2.146.0-next.145) (2021-08-27)
|
|
471
|
+
|
|
472
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
# [2.146.0-next.144](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.143...v2.146.0-next.144) (2021-08-27)
|
|
479
|
+
|
|
480
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
# [2.146.0-next.143](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.142...v2.146.0-next.143) (2021-08-27)
|
|
487
|
+
|
|
488
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
# [2.146.0-next.142](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.141...v2.146.0-next.142) (2021-08-27)
|
|
495
|
+
|
|
496
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
# [2.146.0-next.141](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.140...v2.146.0-next.141) (2021-08-26)
|
|
503
|
+
|
|
504
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
# [2.146.0-next.140](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.139...v2.146.0-next.140) (2021-08-26)
|
|
511
|
+
|
|
512
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
|
|
518
|
+
# [2.146.0-next.139](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.138...v2.146.0-next.139) (2021-08-26)
|
|
519
|
+
|
|
520
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
# [2.146.0-next.138](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.137...v2.146.0-next.138) (2021-08-26)
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
### Bug Fixes
|
|
530
|
+
|
|
531
|
+
* code cleanup and improved comments ([568fffb](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/568fffb48f8fd2df9ca4d8df678b5aa6f3c00e00))
|
|
532
|
+
* updated snapshots ([d293182](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/d293182620cc522a034a27536789058ef026e79f)), closes [#2222](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/2222)
|
|
533
|
+
* **dataseriesformitemmodal:** added i18n func to prop ([1509415](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/1509415f3762ca55e527661c3933343993a78fb7)), closes [#2222](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/2222)
|
|
534
|
+
* **hierarchylist:** added function for i18n props ([f48592c](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/f48592cb9bfb30dcfcd5b124a6a90429d6c667e5)), closes [#2222](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/2222)
|
|
535
|
+
* **simplepagination:** added function for i18n prop totalitemstext ([819c37e](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/819c37e6f5c9bb1977ec6678de888409a5726873)), closes [#222](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/222)
|
|
536
|
+
* **table:** added function for i18n props itemsselected & itemselected ([d0fc296](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/d0fc296e591797f352372cb711ca2e1b4bf0686c))
|
|
537
|
+
* **table:** removed unusable pagination prop currentpage ([62ae498](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/62ae498b0dd01a7adee0428ad2f26cea50345a92))
|
|
538
|
+
* **table:** removed unusable pagination prop itemsrange ([009028d](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/009028d1aa18f6345c094397a3608b8888df9d55))
|
|
539
|
+
* **timepickerspinner:** added functions for i18n props ([722438d](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/722438d2f1c2f92990a74499dc4cf7372c4f7c5b)), closes [#2222](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/2222)
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
# [2.146.0-next.137](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.136...v2.146.0-next.137) (2021-08-26)
|
|
546
|
+
|
|
547
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
# [2.146.0-next.136](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.135...v2.146.0-next.136) (2021-08-26)
|
|
554
|
+
|
|
555
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
# [2.146.0-next.135](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.134...v2.146.0-next.135) (2021-08-26)
|
|
562
|
+
|
|
563
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
|
|
569
|
+
# [2.146.0-next.134](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.133...v2.146.0-next.134) (2021-08-26)
|
|
570
|
+
|
|
571
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
# [2.146.0-next.133](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.132...v2.146.0-next.133) (2021-08-25)
|
|
578
|
+
|
|
579
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
580
|
+
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
# [2.146.0-next.132](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.131...v2.146.0-next.132) (2021-08-25)
|
|
586
|
+
|
|
587
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
588
|
+
|
|
589
|
+
|
|
590
|
+
|
|
591
|
+
|
|
592
|
+
|
|
593
|
+
# [2.146.0-next.131](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.130...v2.146.0-next.131) (2021-08-25)
|
|
594
|
+
|
|
595
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
|
|
600
|
+
|
|
601
|
+
# [2.146.0-next.130](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.129...v2.146.0-next.130) (2021-08-25)
|
|
602
|
+
|
|
603
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
# [2.146.0-next.129](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.128...v2.146.0-next.129) (2021-08-25)
|
|
610
|
+
|
|
611
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
# [2.146.0-next.128](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.127...v2.146.0-next.128) (2021-08-25)
|
|
618
|
+
|
|
619
|
+
|
|
620
|
+
### Bug Fixes
|
|
621
|
+
|
|
622
|
+
* **list-item-wrapper:** fix bad test id, update snapshots ([4421a32](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/4421a3295887ca56b6cd9e0f596a5c9e785cac61))
|
|
623
|
+
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
# [2.146.0-next.127](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.126...v2.146.0-next.127) (2021-08-25)
|
|
629
|
+
|
|
630
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
631
|
+
|
|
632
|
+
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
|
|
636
|
+
# [2.146.0-next.126](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.125...v2.146.0-next.126) (2021-08-25)
|
|
637
|
+
|
|
638
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
|
|
644
|
+
# [2.146.0-next.125](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.124...v2.146.0-next.125) (2021-08-24)
|
|
645
|
+
|
|
646
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
647
|
+
|
|
648
|
+
|
|
649
|
+
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
# [2.146.0-next.124](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.123...v2.146.0-next.124) (2021-08-24)
|
|
653
|
+
|
|
654
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
655
|
+
|
|
656
|
+
|
|
657
|
+
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
# [2.146.0-next.123](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.122...v2.146.0-next.123) (2021-08-24)
|
|
661
|
+
|
|
662
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
|
|
666
|
+
|
|
667
|
+
|
|
668
|
+
# [2.146.0-next.122](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.121...v2.146.0-next.122) (2021-08-24)
|
|
669
|
+
|
|
670
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
671
|
+
|
|
672
|
+
|
|
673
|
+
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
# [2.146.0-next.121](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.120...v2.146.0-next.121) (2021-08-24)
|
|
677
|
+
|
|
678
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
679
|
+
|
|
680
|
+
|
|
681
|
+
|
|
682
|
+
|
|
683
|
+
|
|
684
|
+
# [2.146.0-next.120](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.119...v2.146.0-next.120) (2021-08-24)
|
|
685
|
+
|
|
686
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
687
|
+
|
|
688
|
+
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
|
|
692
|
+
# [2.146.0-next.119](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.118...v2.146.0-next.119) (2021-08-24)
|
|
693
|
+
|
|
694
|
+
|
|
695
|
+
### Bug Fixes
|
|
696
|
+
|
|
697
|
+
* **table-card:** allow react nodes as row action icons ([c9a8000](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/c9a8000e51252edac990ba8d55f66f9746e884f8))
|
|
698
|
+
* **table-card:** display '--' if label doesn't exist in expandedColumns ([9f7bae2](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/9f7bae28416976fca82c5acf1ac9b5ddfc3f000d))
|
|
699
|
+
* **table-card:** spread linkTemplate when getting expandedColumns ([d8efbf1](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/d8efbf12c7d63660101b9ab530b6174bc49ecc9e))
|
|
700
|
+
|
|
701
|
+
|
|
702
|
+
|
|
703
|
+
|
|
704
|
+
|
|
705
|
+
# [2.146.0-next.118](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.117...v2.146.0-next.118) (2021-08-24)
|
|
706
|
+
|
|
707
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
708
|
+
|
|
709
|
+
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
# [2.146.0-next.117](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.116...v2.146.0-next.117) (2021-08-24)
|
|
714
|
+
|
|
715
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
716
|
+
|
|
717
|
+
|
|
718
|
+
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
# [2.146.0-next.116](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.115...v2.146.0-next.116) (2021-08-24)
|
|
722
|
+
|
|
723
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
724
|
+
|
|
725
|
+
|
|
726
|
+
|
|
727
|
+
|
|
728
|
+
|
|
729
|
+
# [2.146.0-next.115](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.114...v2.146.0-next.115) (2021-08-24)
|
|
730
|
+
|
|
731
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
732
|
+
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
|
|
736
|
+
|
|
737
|
+
# [2.146.0-next.114](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.113...v2.146.0-next.114) (2021-08-24)
|
|
738
|
+
|
|
739
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
740
|
+
|
|
741
|
+
|
|
742
|
+
|
|
743
|
+
|
|
744
|
+
|
|
745
|
+
# [2.146.0-next.113](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.112...v2.146.0-next.113) (2021-08-24)
|
|
746
|
+
|
|
747
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
|
|
751
|
+
|
|
752
|
+
|
|
753
|
+
# [2.146.0-next.112](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.111...v2.146.0-next.112) (2021-08-24)
|
|
754
|
+
|
|
755
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
756
|
+
|
|
757
|
+
|
|
758
|
+
|
|
759
|
+
|
|
760
|
+
|
|
761
|
+
# [2.146.0-next.111](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.110...v2.146.0-next.111) (2021-08-23)
|
|
762
|
+
|
|
763
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
764
|
+
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
|
|
769
|
+
# [2.146.0-next.110](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.109...v2.146.0-next.110) (2021-08-23)
|
|
770
|
+
|
|
771
|
+
|
|
772
|
+
### Bug Fixes
|
|
773
|
+
|
|
774
|
+
* **tile-gallery-item:** fix testId typo ([4fd1d10](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/4fd1d1017611d6e290287e0b4645f5420965def4))
|
|
775
|
+
|
|
776
|
+
|
|
777
|
+
### Reverts
|
|
778
|
+
|
|
779
|
+
* Revert "chore(testing): increase coverage on DashboardEditorCardRenderer" ([0a13924](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/0a13924cf4cb3573068156a54405e2bf4089a683))
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
# [2.146.0-next.106](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.105...v2.146.0-next.106) (2021-08-19)
|
|
786
|
+
|
|
787
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
788
|
+
|
|
789
|
+
|
|
790
|
+
|
|
791
|
+
|
|
792
|
+
|
|
793
|
+
# [2.146.0-next.104](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.103...v2.146.0-next.104) (2021-08-19)
|
|
794
|
+
|
|
795
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
796
|
+
|
|
797
|
+
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
|
|
801
|
+
# [2.146.0-next.103](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.102...v2.146.0-next.103) (2021-08-19)
|
|
802
|
+
|
|
803
|
+
|
|
804
|
+
### Bug Fixes
|
|
805
|
+
|
|
806
|
+
* **table:** resize works after all hidden columns ([8698264](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/8698264b625667373ffda44ddf6399135c410888)), closes [#2317](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/2317)
|
|
807
|
+
* **table:** resize works after all hidden columns - 2 ([e0b6777](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/e0b6777366046b33322e1f03ba69270eaf6a9dfc))
|
|
808
|
+
* **tablehead:** fixed typo and removed comment ([6d8fd32](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/6d8fd3267de91ccd19beb46eefcfa7c3b39ce933))
|
|
809
|
+
|
|
810
|
+
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
# [2.146.0-next.102](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.101...v2.146.0-next.102) (2021-08-19)
|
|
815
|
+
|
|
816
|
+
|
|
817
|
+
### Bug Fixes
|
|
818
|
+
|
|
819
|
+
* **table:** update snapshots, fix story issues with objects ([2ae914d](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/2ae914d0c6861d18bf9165af5802bb062cd626f6))
|
|
820
|
+
|
|
821
|
+
|
|
822
|
+
### Features
|
|
823
|
+
|
|
824
|
+
* **table:** allow objects to be passed as data ([e0e2d16](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/e0e2d16dfb4bf9986bc5f1d45a6872fc462f73bf))
|
|
825
|
+
|
|
826
|
+
|
|
827
|
+
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
# [2.146.0-next.101](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.100...v2.146.0-next.101) (2021-08-19)
|
|
831
|
+
|
|
832
|
+
|
|
833
|
+
### Bug Fixes
|
|
834
|
+
|
|
835
|
+
* **rule-builder:** add export to index.js ([0984614](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/098461400657baee3cf5783d43799670389b2362))
|
|
836
|
+
* **rule-builder:** update snapshots ([0721e61](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/0721e61721ccc962a964c051253947d0d0732857))
|
|
837
|
+
|
|
838
|
+
|
|
839
|
+
|
|
840
|
+
|
|
841
|
+
|
|
842
|
+
# [2.146.0-next.100](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.99...v2.146.0-next.100) (2021-08-19)
|
|
843
|
+
|
|
844
|
+
|
|
845
|
+
### Bug Fixes
|
|
846
|
+
|
|
847
|
+
* **time-series-card:** fix refs in mocks for test output ([465f823](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/465f823098e37474ed38f6a993dca9aa097ba32e))
|
|
848
|
+
* **time-series-card:** simplify ref ([aae9864](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/aae9864cbfb145ec9426507b2c888b8a99e2eda8))
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
|
|
853
|
+
|
|
854
|
+
# [2.146.0-next.99](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.98...v2.146.0-next.99) (2021-08-18)
|
|
855
|
+
|
|
856
|
+
|
|
857
|
+
### Bug Fixes
|
|
858
|
+
|
|
859
|
+
* **bar-chart-card:** format x-axis labels to match TimeSeriesCard ([26d8f46](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/26d8f466877609dfede91cb829325c6df18fd2af))
|
|
860
|
+
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
|
|
865
|
+
# [2.146.0-next.98](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.97...v2.146.0-next.98) (2021-08-18)
|
|
866
|
+
|
|
867
|
+
|
|
868
|
+
### Bug Fixes
|
|
869
|
+
|
|
870
|
+
* **stateful-table:** update snaps ([f223a5a](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/f223a5a4779a0635a4fa524d024f05e340d5b0f0))
|
|
871
|
+
|
|
872
|
+
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
|
|
876
|
+
# [2.146.0-next.97](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.96...v2.146.0-next.97) (2021-08-18)
|
|
877
|
+
|
|
878
|
+
|
|
879
|
+
### Bug Fixes
|
|
880
|
+
|
|
881
|
+
* **header:** fix 'margin-left' error in story ([f38181c](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/f38181cb9e99b1988c08227b6cedd0c0f6aa2201))
|
|
882
|
+
* **header:** update snapshots ([dbc5824](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/dbc582427940e4943d5ae6e6f3f222e35fc43048))
|
|
883
|
+
* **header:** update snapshots ([1984a03](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/1984a035850503830fb0753610ab1ae357a18043))
|
|
884
|
+
* **header:** use button in panel.content to fix nesting a tags ([1d1921f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/1d1921fd6e81fb2a0634df24750b8de2b36e88e0))
|
|
885
|
+
* **header-action-menu:** fix href and onKeyDown ([3bb91b1](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/3bb91b1efdb2da6db2ad9f0fadc55ca119160546))
|
|
886
|
+
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
|
|
890
|
+
|
|
6
891
|
# [2.146.0-next.96](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0-next.95...v2.146.0-next.96) (2021-08-18)
|
|
7
892
|
|
|
8
893
|
|