carbon-addons-iot-react 2.147.0-next.2 → 2.147.0-next.24

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.
Files changed (83) hide show
  1. package/CHANGELOG.md +404 -0
  2. package/css/carbon-addons-iot-react.css +5374 -5566
  3. package/css/carbon-addons-iot-react.css.map +1 -1
  4. package/es/components/Card/Card.js +44 -7
  5. package/es/components/Card/CardRangePicker.js +15 -4
  6. package/es/components/Card/CardToolbar.js +2 -3
  7. package/es/components/ComboBox/ComboBox.js +2 -1
  8. package/es/components/DateTimePicker/DateTimePicker.js +68 -92
  9. package/es/components/DateTimePicker/DateTimePickerV2.js +58 -94
  10. package/es/components/DateTimePicker/dateTimePickerUtils.js +124 -0
  11. package/es/components/Header/HeaderAction/HeaderAction.js +2 -2
  12. package/es/components/Header/HeaderActionGroup.js +4 -2
  13. package/es/components/ImageCard/ImageCard.js +2 -2
  14. package/es/components/ImageCard/ImageHotspots.js +2 -1
  15. package/es/components/List/HierarchyList/HierarchyList.js +72 -15
  16. package/es/components/List/List.js +56 -120
  17. package/es/components/List/ListContent/ListContent.js +509 -0
  18. package/es/components/List/ListItem/ListItem.js +14 -2
  19. package/es/components/List/VirtualListContent/VirtualListContent.js +685 -0
  20. package/es/components/PieChartCard/PieChartCard.js +4 -2
  21. package/es/components/Table/Table.js +49 -45
  22. package/es/components/Table/TableFoot/TableFoot.js +22 -10
  23. package/es/components/Table/TableHead/ColumnGrouping/ColumnGrouping.js +164 -0
  24. package/es/components/Table/TableHead/TableHead.js +61 -31
  25. package/es/components/Table/TableHead/TableHeader.js +47 -7
  26. package/es/components/Table/TablePropTypes.js +19 -2
  27. package/es/components/Table/TableToolbar/TableToolbar.js +2 -1
  28. package/es/components/TimePickerSpinner/TimePickerSpinner.js +86 -20
  29. package/es/constants/CardPropTypes.js +22 -4
  30. package/es/constants/KeyCodeConstants.js +17 -14
  31. package/es/index.js +2 -0
  32. package/es/utils/cardUtilityFunctions.js +2 -2
  33. package/lib/components/Card/Card.js +44 -6
  34. package/lib/components/Card/CardRangePicker.js +14 -3
  35. package/lib/components/Card/CardToolbar.js +1 -2
  36. package/lib/components/ComboBox/ComboBox.js +2 -1
  37. package/lib/components/DateTimePicker/DateTimePicker.js +68 -92
  38. package/lib/components/DateTimePicker/DateTimePickerV2.js +58 -95
  39. package/lib/components/DateTimePicker/dateTimePickerUtils.js +133 -0
  40. package/lib/components/Header/HeaderAction/HeaderAction.js +1 -1
  41. package/lib/components/Header/HeaderActionGroup.js +4 -2
  42. package/lib/components/ImageCard/ImageCard.js +2 -2
  43. package/lib/components/ImageCard/ImageHotspots.js +2 -1
  44. package/lib/components/List/HierarchyList/HierarchyList.js +72 -15
  45. package/lib/components/List/List.js +55 -120
  46. package/lib/components/List/ListContent/ListContent.js +519 -0
  47. package/lib/components/List/ListItem/ListItem.js +14 -2
  48. package/lib/components/List/VirtualListContent/VirtualListContent.js +695 -0
  49. package/lib/components/PieChartCard/PieChartCard.js +4 -2
  50. package/lib/components/Table/Table.js +49 -44
  51. package/lib/components/Table/TableFoot/TableFoot.js +21 -9
  52. package/lib/components/Table/TableHead/ColumnGrouping/ColumnGrouping.js +175 -0
  53. package/lib/components/Table/TableHead/TableHead.js +60 -30
  54. package/lib/components/Table/TableHead/TableHeader.js +47 -7
  55. package/lib/components/Table/TablePropTypes.js +20 -1
  56. package/lib/components/Table/TableToolbar/TableToolbar.js +2 -1
  57. package/lib/components/TimePickerSpinner/TimePickerSpinner.js +86 -19
  58. package/lib/constants/CardPropTypes.js +22 -4
  59. package/lib/constants/KeyCodeConstants.js +17 -14
  60. package/lib/css/carbon-addons-iot-react.css +5374 -5566
  61. package/lib/css/carbon-addons-iot-react.css.map +1 -1
  62. package/lib/index.js +4 -0
  63. package/lib/scss/components/DateTimePicker/_date-time-picker.scss +1 -1
  64. package/lib/scss/components/DateTimePicker/_date-time-pickerv2.scss +1 -1
  65. package/lib/scss/components/List/ListItem/_list-item.scss +1 -0
  66. package/lib/scss/components/Table/TableHead/ColumnGrouping/_column-grouping.scss +250 -0
  67. package/lib/scss/components/Table/TableHead/_table-head.scss +1 -0
  68. package/lib/scss/components/Table/_table.scss +4 -0
  69. package/lib/scss/components/TimePickerSpinner/_time-picker-spinner.scss +10 -0
  70. package/lib/scss/components/ValueCard/_attribute.scss +5 -0
  71. package/lib/scss/components/ValueCard/_value-renderer.scss +6 -1
  72. package/lib/utils/cardUtilityFunctions.js +2 -2
  73. package/package.json +11 -10
  74. package/scss/components/DateTimePicker/_date-time-picker.scss +1 -1
  75. package/scss/components/DateTimePicker/_date-time-pickerv2.scss +1 -1
  76. package/scss/components/List/ListItem/_list-item.scss +1 -0
  77. package/scss/components/Table/TableHead/ColumnGrouping/_column-grouping.scss +250 -0
  78. package/scss/components/Table/TableHead/_table-head.scss +1 -0
  79. package/scss/components/Table/_table.scss +4 -0
  80. package/scss/components/TimePickerSpinner/_time-picker-spinner.scss +10 -0
  81. package/scss/components/ValueCard/_attribute.scss +5 -0
  82. package/scss/components/ValueCard/_value-renderer.scss +6 -1
  83. package/umd/carbon-addons-iot-react.js +13477 -6841
package/CHANGELOG.md CHANGED
@@ -3,6 +3,394 @@
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.147.0-next.24](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.23...v2.147.0-next.24) (2021-10-22)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **table:** add missing proptype for hasRowEdit ([7fc1769](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/7fc17698c0514ebdb49274c4fe27d2fee32fac78)), closes [#2850](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/2850)
12
+ * **test:** updated snapshot ([91574cc](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/91574cc06ca71ae1155024f2fb32b2663f99aa1d)), closes [#2850](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/2850)
13
+
14
+
15
+
16
+
17
+
18
+ # [2.147.0-next.23](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.22...v2.147.0-next.23) (2021-10-22)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * **table:** update prop-type for overflowMenuItems in columns ([ff53a8c](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/ff53a8c1f08a5f1e51754ab351eccae24cb08470))
24
+
25
+
26
+
27
+
28
+
29
+ # [2.147.0-next.21](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.20...v2.147.0-next.21) (2021-10-20)
30
+
31
+ **Note:** Version bump only for package carbon-addons-iot-react
32
+
33
+
34
+
35
+
36
+
37
+ # [2.147.0-next.20](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.19...v2.147.0-next.20) (2021-10-19)
38
+
39
+
40
+ ### Bug Fixes
41
+
42
+ * **columngrouping:** add styling improvements ([d692f47](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/d692f4753831fe085d04db1fb02e91bb1bf6a558))
43
+ * **columngrouping:** removed unreachable branch ([3ae144a](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/3ae144aa007425936fd4a703ec8abf8c4be03de2))
44
+ * **table:** add css, story and code improvements ([2118e05](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/2118e052f1348778f48623ffc39615f9f9f3a888))
45
+ * **table:** fix for pr feedback ([956f0f3](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/956f0f3f2b57542f63a31141f94de81e3bfdcb6e)), closes [#2794](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/2794)
46
+ * **table:** fixed html class and snapshots ([9ef8640](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/9ef8640030cc8248e78e6469cd5146c1e6751e9e))
47
+ * **table:** removed column grouping lightweight css ([0525b5f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/0525b5f67321860afbf3c2a75d9795d2d86bb679))
48
+ * **table:** removed column grouping lightweight css ([38106e8](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/38106e8cfef1364cc78b47488f42c6fb67d69654))
49
+
50
+
51
+ ### Features
52
+
53
+ * **table:** add table grouping ([afb3a8d](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/afb3a8dbedcf01ae8f51077b63d866aa88483206))
54
+
55
+
56
+
57
+
58
+
59
+ # [2.147.0-next.19](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.18...v2.147.0-next.19) (2021-10-18)
60
+
61
+
62
+ ### Bug Fixes
63
+
64
+ * **bar-chart-card:** add prop warning for unsupported sizes ([8e38ede](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/8e38ede1ea9e8abb482c399ce3a4bd6ca0f6f419))
65
+ * **image-card:** prop error for unsupported size, attempt rendering img ([e9b9e5f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/e9b9e5f1894d5b0fa06623e49586160aba4dab29))
66
+ * **table:** hide 'toggle aggregations' when toolbar disabled ([6c9c5aa](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/6c9c5aa3130d22414da9108bce2bc177a08fd82e))
67
+ * **table:** use disabled prop instead of hiding ([6dc352d](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/6dc352d3c25bf0d21593c40bfede7c39b7a128e7))
68
+
69
+
70
+
71
+
72
+
73
+ # [2.147.0-next.18](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.17...v2.147.0-next.18) (2021-10-18)
74
+
75
+
76
+ ### Bug Fixes
77
+
78
+ * **card:** allow cardrangepicker to use datetimepicker timerangeoptions ([b4ae07f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/b4ae07f8a9d19ba6aab836ab8d88db263bc3e30f))
79
+
80
+
81
+
82
+
83
+
84
+ # [2.147.0-next.17](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.16...v2.147.0-next.17) (2021-10-13)
85
+
86
+
87
+ ### Bug Fixes
88
+
89
+ * **hierarchy-list:** auto-scroll to defaultSelectedItem ([fee54b7](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/fee54b7e9338125f5ac69a2f27e09d3892f14f0b))
90
+ * **hierarchy-list:** do not show grandchildren when closed ([8bbf7f6](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/8bbf7f6cfc985ba03e8b384e16c65e3779580951))
91
+ * **hierarchy-list:** fix bad scroll triggers when using isVirtualList ([e17eacb](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/e17eacbaa3bf4509c569683fdc72452f58c857cd))
92
+ * **hierarchy-list:** fix prop-type warning on overflow story ([015a5c7](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/015a5c731f529bd8bad12a8181b35a7e95823fd1))
93
+ * **hierarchy-list:** only scroll on first load ([3bce9db](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/3bce9dbdd6547bd107fc713637515c95310a5ea9))
94
+ * **hierarchy-list:** stop event propagation to prevent extra renders ([6973afe](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/6973afe4f5c539e87f946e98ff125255e54da32c))
95
+ * **hierarchy-list:** turn off full height on large list story ([ab98e5f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/ab98e5f6cc4dd7518d2ac69f71b23c7f6dd9fec8))
96
+ * **hierarchy-list:** update list height after all items rendered ([1b69c24](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/1b69c245cc904626f4a99360316b79cfce75532c))
97
+ * **list:** add missing prop to virtual test ([7049273](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/7049273d861ee2770cdb689ddccae86c6062ea5e))
98
+ * **list:** adjust full-height settings for virtual lists ([fd9bdec](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/fd9bdec5fee904d1854ec508819d52ccb43bb7bb))
99
+ * **list:** fix virtual list tests ([d61fc5f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/d61fc5f5115bbe6bead2f7e5e4e6e05a53ea319e))
100
+ * **list:** move overflow menu outside of list to prevent re-renders ([d9fff5a](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/d9fff5abf2edda8049f520dc12a58a316bd9fe30))
101
+ * **list:** pass override props to content ([b5b6bc4](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/b5b6bc4adf18074f73b2f364ffa42a6f34be8508))
102
+ * **list:** remove unnecessary styles ([1fe927d](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/1fe927ddac75ae358d0f7aa6f6cacbb0fc2eec57))
103
+ * **pie-chart-card:** add legend alignment prop and set default to left ([c13fee8](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/c13fee828d73ccc896b78725bcf3baa181b96da0))
104
+ * **pie-chart-card:** show prop-type error for SMALLFULL ([2357c17](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/2357c1778acd100d17658384a4709ae96a27cf58))
105
+ * **virtual-list-content:** remove selectedItemRef as it's unneccessary ([bc2acc9](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/bc2acc98957916321e0292039d1fb9f49b8cb3e8))
106
+
107
+
108
+ ### Features
109
+
110
+ * **card:** show datetime as subtitle when using DateTimePicker ([eaa65c9](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/eaa65c9d6e27970a35f4632345ad7b80eb5bd5c4))
111
+ * **list:** add react-window for virtualized list content ([5020b15](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/5020b15cf0919fa10b00e49022ae3487f5625397))
112
+ * **list:** extract content into ListContent component ([955483f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/955483fc67c232f7fee02ca358b49aace2ce6302))
113
+
114
+
115
+
116
+
117
+
118
+ # [2.147.0-next.16](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.15...v2.147.0-next.16) (2021-10-13)
119
+
120
+
121
+ ### Bug Fixes
122
+
123
+ * **date-time-picker:** add start/end to proptypes ([7ca36b8](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/7ca36b827fc88ba1c69b89320fc09278f4a1a059))
124
+
125
+
126
+
127
+
128
+
129
+ # [2.147.0-next.15](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.14...v2.147.0-next.15) (2021-10-11)
130
+
131
+
132
+ ### Bug Fixes
133
+
134
+ * **time-picker-spinner:** don't allow 00 for 12-hour picker ([ef767f6](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/ef767f6a860af0ada800dcf68f242fcac557b682))
135
+
136
+
137
+
138
+
139
+
140
+ # [2.147.0-next.14](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.13...v2.147.0-next.14) (2021-10-08)
141
+
142
+
143
+ ### Bug Fixes
144
+
145
+ * **header:** fix overflow in RTL ([151a684](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/151a6840ea3003c3ac18ea66402103d974218e0d))
146
+ * **hierarchy-list:** pass emptyState prop to underlying list ([7a48242](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/7a48242133b694fcec1c7720f52055ab845fe9ca))
147
+
148
+
149
+
150
+
151
+
152
+ # [2.147.0-next.13](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.12...v2.147.0-next.13) (2021-10-07)
153
+
154
+
155
+ ### Bug Fixes
156
+
157
+ * **hierarchy-list:** maintain list search state on drag and drop ([ad685e6](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/ad685e649f8d0cf9fefb4d338fd77c4e3474adf6))
158
+
159
+
160
+
161
+
162
+
163
+ # [2.147.0-next.10](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.9...v2.147.0-next.10) (2021-10-05)
164
+
165
+
166
+
167
+ ## [2.146.4](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.8...v2.146.4) (2021-10-04)
168
+
169
+
170
+ ### Bug Fixes
171
+
172
+ * **page-title-bar:** cypress test ([68ff44a](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/68ff44a047598217d7d148418c424bc5e156ae38))
173
+ * **value-card:** fix button overflow in narrow cards ([b8ade34](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/b8ade34e93f4a353cabb243736b59cb294a0bcbd))
174
+ * **value-card:** fix unit position in certain situations ([f71446b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/f71446b8455381a75ac6f8baa24e57cd2d8e1a43))
175
+ * **value-card:** fix unit positioning better ([125b4d1](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/125b4d1bdfca0977d0fcd56199bc183348765f53))
176
+ * **value-card:** rtl rendering of units/buttons ([757a943](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/757a94399eaf6ab2fd7dcdf64c8a84f4fa1be743))
177
+
178
+
179
+
180
+
181
+
182
+ # [2.147.0-next.9](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.8...v2.147.0-next.9) (2021-10-04)
183
+
184
+
185
+ ### Bug Fixes
186
+
187
+ * **hierarchy-list:** reset page (as necessary) when pageSize changes ([769a09d](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/769a09dda690b76ff4c3ef6698c0ef6a45d9268c))
188
+ * **hierarchy-list:** show items from current page on pageSize change ([02ff1d3](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/02ff1d322dfc75f7f75a500a14d7256da54fe089))
189
+
190
+
191
+
192
+
193
+
194
+ # [2.147.0-next.8](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.7...v2.147.0-next.8) (2021-10-04)
195
+
196
+
197
+ ### Bug Fixes
198
+
199
+ * **hierarchy-list:** show correct items on drag/drop w/ pagination ([ff2424d](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/ff2424dee4f79be7b8b5d5fe56d15bbe3f9dcef0))
200
+
201
+
202
+
203
+
204
+
205
+ # [2.147.0-next.7](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.6...v2.147.0-next.7) (2021-10-01)
206
+
207
+
208
+ ### Bug Fixes
209
+
210
+ * **asynctable:** pagination and filters working ([8d54b2a](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/8d54b2ab94e6061648dff409a511328aba2671c3))
211
+
212
+
213
+
214
+
215
+
216
+ # [2.147.0-next.6](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.3...v2.147.0-next.6) (2021-10-01)
217
+
218
+
219
+
220
+ # [2.147.0-next.5](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.4...v2.147.0-next.5) (2021-09-30)
221
+
222
+
223
+
224
+ # [2.147.0-next.4](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.3...v2.147.0-next.4) (2021-09-29)
225
+
226
+
227
+
228
+ # [2.147.0-next.3](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.2...v2.147.0-next.3) (2021-09-29)
229
+
230
+
231
+ ### Bug Fixes
232
+
233
+ * **datetimepicker:** pr feedback spelling fix ([e0e711b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/e0e711b70db0bbdea10a585e48fb69f758780714))
234
+
235
+
236
+
237
+ # [2.147.0-next.2](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.1...v2.147.0-next.2) (2021-09-29)
238
+
239
+
240
+ ### Bug Fixes
241
+
242
+ * **page-title-bar:** chrome upgrade(?) causes cypress test to fail ([279c740](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/279c740a455c02c9537a608fbaa521b9bbe01fb8))
243
+ * **table:** fix load more scss from feedback ([d74ae18](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/d74ae18827143f2eca6441cd769308ced099982d))
244
+ * **table:** remove fragment ([a767c7b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/a767c7b0fdcf13ce6643b68c863af5dc3d126029))
245
+
246
+
247
+
248
+ # [2.147.0-next.1](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.2...v2.147.0-next.1) (2021-09-28)
249
+
250
+
251
+ ### Bug Fixes
252
+
253
+ * **datetimepicker:** improved time validation ([633f717](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/633f71752354a3b936db5ad530e16f6d93965211))
254
+ * **table:** fix aggregation values placement in first column ([7f78e0e](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/7f78e0ec670fbca90c501602b8316c9ff500f42c))
255
+ * **table:** PR feedback adjustments ([9a0ff6a](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/9a0ff6a34a0655c9dabea50f99c70f7b690c7271))
256
+ * **timepickerspinner:** improved validation ([843929f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/843929f0148d5df2d2dd1acc6de976c5d0477143))
257
+
258
+
259
+
260
+ ## [2.146.2-next.2](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.2-next.1...v2.146.2-next.2) (2021-09-27)
261
+
262
+
263
+ ### Bug Fixes
264
+
265
+ * **table:** fix placement of label/values in various scenarios ([da60221](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/da60221f4c858cef58254fbb588d9c4bc2bdb414))
266
+
267
+
268
+
269
+ ## [2.146.2-next.1](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.1...v2.146.2-next.1) (2021-09-24)
270
+
271
+
272
+ ### Features
273
+
274
+ * **table:** working example of load more in statefultable ([596fc8d](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/596fc8dc663e4cdd37f46b29b7dbbc70c74e3301))
275
+
276
+
277
+
278
+ ## [2.146.1-next.7](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.1-next.6...v2.146.1-next.7) (2021-09-23)
279
+
280
+
281
+ ### Bug Fixes
282
+
283
+ * **suite-header:** PR feedback ([8686d95](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/8686d9597f439f174022dc2d9a5c789cd1c72e69))
284
+ * **tabletoolbar:** provide aria-label to CarbonTableToolbar ([a43ffb5](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/a43ffb531ebc837639bf9de7db11a95049805ee5))
285
+
286
+
287
+
288
+ ## [2.146.1-next.6](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.1-next.5...v2.146.1-next.6) (2021-09-23)
289
+
290
+
291
+ ### Bug Fixes
292
+
293
+ * **suite-header:** all cmd+click/ctrl+click to open new window ([b3f9595](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/b3f959519df3830ea7cec6e3b518f0849a111a2d))
294
+
295
+
296
+
297
+ ## [2.146.1-next.5](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.1-next.4...v2.146.1-next.5) (2021-09-22)
298
+
299
+
300
+ ### Bug Fixes
301
+
302
+ * **page-title-bar:** add units to clamp ([c913faf](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/c913faf6d8830f9b92d1a0a65faef844de19ec80))
303
+
304
+
305
+
306
+ ## [2.146.1-next.3](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.1-next.2...v2.146.1-next.3) (2021-09-22)
307
+
308
+
309
+
310
+ ## [2.146.1-next.2](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.1-next.1...v2.146.1-next.2) (2021-09-21)
311
+
312
+
313
+ ### Bug Fixes
314
+
315
+ * **dashboard-grid:** update snapshot, fix imagecard ([f3fbe7b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/f3fbe7bb3cfa230126d4506b3f7b29b6cb2cdcab))
316
+ * **icon-switch:** hide divider beside selected icon ([3073310](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/30733105ec94f8698e7c2ccfb240d8626bce9f66))
317
+ * **icon-switch:** hide dividers on hover ([9527c6e](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/9527c6ed3153c461a4c6e2ecc57ab101b5ab97b9))
318
+ * **repo:** add delay to dashboard grid visual tests ([b962ec9](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/b962ec97046025106872790db0b25ff5c14f3b27))
319
+
320
+
321
+
322
+ ## [2.146.1-next.1](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.1-next.0...v2.146.1-next.1) (2021-09-20)
323
+
324
+
325
+
326
+ ## [2.146.1-next.0](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.0...v2.146.1-next.0) (2021-09-18)
327
+
328
+
329
+ ### Bug Fixes
330
+
331
+ * **combo-box:** fix scss to not break optimizecssassets plugin ([e8201b3](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/e8201b386a1e6d8d47ae297825fe55d0b9158534))
332
+ * **feedback:** fixes from feedback ([13c13c5](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/13c13c5ee853adf0a03d267f803b486c3441f213))
333
+ * **feedback:** updates from feedback ([982e75f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/982e75f0288cfeee999061ec0dc6f16e76cee383))
334
+ * **icon-switch:** design adjustments from pr feedback ([487548c](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/487548cce40c5b911c5bb46c5f33e8cfe13c1177))
335
+ * **icon-switch:** design updates for RTL ([1586401](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/15864014d6cadd63d42c86122addb9550678b80a))
336
+ * **icon-switch:** fix icon pixel move/rough border ([ed58719](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/ed587196c4e4032c2b22b5b1af5b824a50cd620d))
337
+ * **icon-switch:** fix styles for dividers between icons ([d8265a4](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/d8265a41312fa2643a98a251113f76abf09cd777))
338
+ * **icon-switch:** thicken focus borders ([94d0753](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/94d07536f5ecc67efa58c1efe8c32f01d5e376fe))
339
+ * **icon-switch:** update design ([e720b6d](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/e720b6dc95dbee3788c1829add0a4cf20b2558ec))
340
+ * **icon-switch:** use psuedo-element for light selected borders ([6a4ff06](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/6a4ff06153774fac32a954127200a6529fddd087))
341
+ * **page-title-bar:** don't apply margin to IconSwitch ([0399b88](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/0399b88aa2275aee3934818e8a917943e2d545d2))
342
+ * **table:** added back class ([e0b3f6f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/e0b3f6f299078de86d17752b55959a2d7c34a62b))
343
+ * **table:** added fit-content to multiselect ([711eb62](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/711eb62692d7d53e79c0e446e5714e0a1cf8b53f))
344
+ * **table:** improved readbility for filters ([8828c8c](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/8828c8c77394009f000eda49031c9b76f3d17bf4))
345
+ * **table:** pr feedback ([323ea5f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/323ea5ff00d2e29bee93f6f2db404678ae761aba)), closes [#2620](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/2620)
346
+
347
+
348
+ ### Features
349
+
350
+ * **loading:** table and list isLoadingMore support ([0bf83df](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/0bf83df682913f9935445e1458b84d7b7fbf8202))
351
+ * **loadmore:** support to multiple load more ids loading at once ([db4e05f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/db4e05fc073485bec736f30d6c438370c00bdf0e))
352
+ * **loadmore:** suppport to load more in Table and List ([6996e43](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/6996e43d368bbbdf157dc96570f00f2788adf743))
353
+
354
+
355
+
356
+
357
+
358
+ # [2.147.0-next.5](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.4...v2.147.0-next.5) (2021-09-30)
359
+
360
+ **Note:** Version bump only for package carbon-addons-iot-react
361
+
362
+
363
+
364
+
365
+
366
+ # [2.147.0-next.4](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.3...v2.147.0-next.4) (2021-09-29)
367
+
368
+
369
+ ### Bug Fixes
370
+
371
+ * **datetimepicker:** improved time validation ([633f717](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/633f71752354a3b936db5ad530e16f6d93965211))
372
+ * **datetimepicker:** pr feedback spelling fix ([e0e711b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/e0e711b70db0bbdea10a585e48fb69f758780714))
373
+ * **page-title-bar:** chrome upgrade(?) causes cypress test to fail ([279c740](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/279c740a455c02c9537a608fbaa521b9bbe01fb8))
374
+ * **timepickerspinner:** improved validation ([843929f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/843929f0148d5df2d2dd1acc6de976c5d0477143))
375
+
376
+
377
+
378
+
379
+
380
+ # [2.147.0-next.3](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.2...v2.147.0-next.3) (2021-09-29)
381
+
382
+
383
+ ### Bug Fixes
384
+
385
+ * **table:** fix aggregation values placement in first column ([7f78e0e](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/7f78e0ec670fbca90c501602b8316c9ff500f42c))
386
+ * **table:** fix placement of label/values in various scenarios ([da60221](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/da60221f4c858cef58254fbb588d9c4bc2bdb414))
387
+ * **table:** PR feedback adjustments ([9a0ff6a](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/9a0ff6a34a0655c9dabea50f99c70f7b690c7271))
388
+ * **table:** remove fragment ([a767c7b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/a767c7b0fdcf13ce6643b68c863af5dc3d126029))
389
+
390
+
391
+
392
+
393
+
6
394
  # [2.147.0-next.2](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0-next.1...v2.147.0-next.2) (2021-09-29)
7
395
 
8
396
 
@@ -26,7 +414,23 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
26
414
 
27
415
  # [2.147.0-next.1](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.2...v2.147.0-next.1) (2021-09-28)
28
416
 
417
+ ## [2.146.4](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.3...v2.146.4) (2021-10-04)
418
+
419
+
420
+ ### Bug Fixes
421
+
422
+ * **page-title-bar:** cypress test ([68ff44a](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/68ff44a047598217d7d148418c424bc5e156ae38))
423
+ * **value-card:** fix button overflow in narrow cards ([b8ade34](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/b8ade34e93f4a353cabb243736b59cb294a0bcbd))
424
+ * **value-card:** fix unit position in certain situations ([f71446b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/f71446b8455381a75ac6f8baa24e57cd2d8e1a43))
425
+ * **value-card:** fix unit positioning better ([125b4d1](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/125b4d1bdfca0977d0fcd56199bc183348765f53))
426
+ * **value-card:** rtl rendering of units/buttons ([757a943](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/757a94399eaf6ab2fd7dcdf64c8a84f4fa1be743))
427
+
428
+ ## [2.146.3](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.2...v2.146.3) (2021-10-01)
429
+
430
+
431
+ ### Bug Fixes
29
432
 
433
+ * **table:** add old size values and add deprecation warning ([11e3bdb](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/11e3bdbaa3743f0e708e8718b75906f1db5779ec))
30
434
 
31
435
  ## [2.146.2-next.2](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.146.2-next.1...v2.146.2-next.2) (2021-09-27)
32
436