carbon-addons-iot-react 2.152.0-next.8 → 2.152.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.
Files changed (127) hide show
  1. package/CHANGELOG.md +333 -0
  2. package/css/carbon-addons-iot-react.css +151 -10
  3. package/css/carbon-addons-iot-react.css.map +1 -1
  4. package/es/components/BarChartCard/barChartUtils.js +2 -2
  5. package/es/components/Card/CardTitle.js +175 -7
  6. package/es/components/CardEditor/CardEditForm/CardEditFormItems/DataSeriesFormItemModal.js +6 -43
  7. package/es/components/CardEditor/CardEditForm/CardEditFormItems/DataSeriesFormItems/DataSeriesFormSettings.js +7 -4
  8. package/es/components/DashboardEditor/DashboardEditor.js +32 -5
  9. package/es/components/DashboardEditor/editorUtils.js +31 -9
  10. package/es/components/DateTimePicker/DateTimePicker.js +34 -10
  11. package/es/components/DateTimePicker/DateTimePickerV2WithTimeSpinner.js +99 -32
  12. package/es/components/DateTimePicker/DateTimePickerV2WithoutTimeSpinner.js +79 -29
  13. package/es/components/DateTimePicker/dateTimePickerUtils.js +238 -8
  14. package/es/components/FilterTags/FilterTags.js +25 -5
  15. package/es/components/FlyoutMenu/FlyoutMenu.js +39 -17
  16. package/es/components/OverflowMenu/index.js +32 -10
  17. package/es/components/ReadOnlyValue/ReadOnlyValue.js +12 -80
  18. package/es/components/ReadOnlyValue/ReadOnlyValuePropTypes.js +36 -0
  19. package/es/components/SuiteHeader/IdleLogoutConfirmationModal/IdleLogoutConfirmationModal.js +77 -4
  20. package/es/components/SuiteHeader/SuiteHeader.js +26 -3
  21. package/es/components/SuiteHeader/hooks/useUiResources.js +56 -17
  22. package/es/components/SuiteHeader/util/cacheduiresources.js +60 -0
  23. package/es/components/SuiteHeader/util/uiresources.fixture.js +20 -1
  24. package/es/components/SuiteHeader/util/uiresources.js +14 -9
  25. package/es/components/Table/Pagination.js +5 -6
  26. package/es/components/Table/StatefulTable.js +10 -3
  27. package/es/components/Table/Table.js +61 -29
  28. package/es/components/Table/TableBody/TableBody.js +5 -16
  29. package/es/components/Table/TableBody/TableBodyRow/TableBodyRow.js +9 -20
  30. package/es/components/Table/TableBody/TableBodyRowRenderer.js +5 -16
  31. package/es/components/Table/TableCellRenderer/TableCellRenderer.js +6 -17
  32. package/es/components/Table/TableHead/FilterHeaderRow/FilterHeaderRow.js +160 -11
  33. package/es/components/Table/TableHead/TableHead.js +60 -21
  34. package/es/components/Table/TableHead/TableHeader.js +3 -3
  35. package/es/components/Table/TablePropTypes.js +10 -1
  36. package/es/components/Table/TableToolbar/TableToolbar.js +14 -3
  37. package/es/components/Table/TableToolbar/TableToolbarAdvancedFilterFlyout.js +2 -1
  38. package/es/components/Table/TableToolbar/TableToolbarSVGButton.js +2 -2
  39. package/es/components/Table/TableViewDropdown/TableViewDropdown.js +1 -1
  40. package/es/components/Table/TableViewDropdown/TableViewDropdownItem.js +2 -1
  41. package/es/components/Table/TableViewDropdown/TableViewItemPropTypes.js +1 -0
  42. package/es/components/Table/baseTableReducer.js +5 -2
  43. package/es/components/Table/tableActionCreators.js +3 -1
  44. package/es/components/Table/tableReducer.js +18 -13
  45. package/es/components/TimePicker/TimePickerDropdown.js +7 -2
  46. package/es/components/Tooltip/index.js +1 -2
  47. package/es/constants/SharedPropTypes.js +2 -1
  48. package/es/hooks/usePopoverPositioning.js +74 -15
  49. package/es/index.js +1 -0
  50. package/es/utils/componentUtilityFunctions.js +26 -1
  51. package/lib/components/BarChartCard/barChartUtils.js +2 -2
  52. package/lib/components/Card/CardTitle.js +175 -6
  53. package/lib/components/CardEditor/CardEditForm/CardEditFormItems/DataSeriesFormItemModal.js +6 -43
  54. package/lib/components/CardEditor/CardEditForm/CardEditFormItems/DataSeriesFormItems/DataSeriesFormSettings.js +7 -4
  55. package/lib/components/DashboardEditor/DashboardEditor.js +32 -5
  56. package/lib/components/DashboardEditor/editorUtils.js +32 -9
  57. package/lib/components/DateTimePicker/DateTimePicker.js +32 -8
  58. package/lib/components/DateTimePicker/DateTimePickerV2WithTimeSpinner.js +97 -30
  59. package/lib/components/DateTimePicker/DateTimePickerV2WithoutTimeSpinner.js +77 -27
  60. package/lib/components/DateTimePicker/dateTimePickerUtils.js +240 -6
  61. package/lib/components/FilterTags/FilterTags.js +25 -5
  62. package/lib/components/FlyoutMenu/FlyoutMenu.js +39 -17
  63. package/lib/components/OverflowMenu/index.js +32 -10
  64. package/lib/components/ReadOnlyValue/ReadOnlyValue.js +12 -81
  65. package/lib/components/ReadOnlyValue/ReadOnlyValuePropTypes.js +45 -0
  66. package/lib/components/SuiteHeader/IdleLogoutConfirmationModal/IdleLogoutConfirmationModal.js +77 -4
  67. package/lib/components/SuiteHeader/SuiteHeader.js +26 -3
  68. package/lib/components/SuiteHeader/hooks/useUiResources.js +57 -17
  69. package/lib/components/SuiteHeader/util/cacheduiresources.js +68 -0
  70. package/lib/components/SuiteHeader/util/uiresources.fixture.js +20 -1
  71. package/lib/components/SuiteHeader/util/uiresources.js +14 -9
  72. package/lib/components/Table/Pagination.js +5 -6
  73. package/lib/components/Table/StatefulTable.js +10 -3
  74. package/lib/components/Table/Table.js +61 -29
  75. package/lib/components/Table/TableBody/TableBody.js +5 -16
  76. package/lib/components/Table/TableBody/TableBodyRow/TableBodyRow.js +9 -20
  77. package/lib/components/Table/TableBody/TableBodyRowRenderer.js +5 -16
  78. package/lib/components/Table/TableCellRenderer/TableCellRenderer.js +6 -17
  79. package/lib/components/Table/TableHead/FilterHeaderRow/FilterHeaderRow.js +160 -11
  80. package/lib/components/Table/TableHead/TableHead.js +60 -21
  81. package/lib/components/Table/TableHead/TableHeader.js +2 -2
  82. package/lib/components/Table/TablePropTypes.js +10 -1
  83. package/lib/components/Table/TableToolbar/TableToolbar.js +14 -3
  84. package/lib/components/Table/TableToolbar/TableToolbarAdvancedFilterFlyout.js +2 -1
  85. package/lib/components/Table/TableToolbar/TableToolbarSVGButton.js +2 -2
  86. package/lib/components/Table/TableViewDropdown/TableViewDropdown.js +1 -1
  87. package/lib/components/Table/TableViewDropdown/TableViewDropdownItem.js +2 -1
  88. package/lib/components/Table/TableViewDropdown/TableViewItemPropTypes.js +1 -0
  89. package/lib/components/Table/baseTableReducer.js +5 -2
  90. package/lib/components/Table/tableActionCreators.js +3 -1
  91. package/lib/components/Table/tableReducer.js +18 -13
  92. package/lib/components/TimePicker/TimePickerDropdown.js +7 -2
  93. package/lib/components/Tooltip/index.js +1 -1
  94. package/lib/constants/SharedPropTypes.js +2 -0
  95. package/lib/css/carbon-addons-iot-react.css +151 -10
  96. package/lib/css/carbon-addons-iot-react.css.map +1 -1
  97. package/lib/hooks/usePopoverPositioning.js +74 -15
  98. package/lib/index.js +2 -0
  99. package/lib/scss/components/Card/_card-title.scss +4 -0
  100. package/lib/scss/components/DateTimePicker/_date-time-picker.scss +6 -0
  101. package/lib/scss/components/DateTimePicker/_date-time-pickerv2.scss +20 -5
  102. package/lib/scss/components/FilterTags/_filter-tags.scss +8 -2
  103. package/lib/scss/components/OverflowMenu/_overflow-menu.scss +10 -1
  104. package/lib/scss/components/ReadOnlyValue/_read-only-value.scss +22 -0
  105. package/lib/scss/components/SuiteHeader/_suite-header.scss +10 -0
  106. package/lib/scss/components/Table/TableHead/FilterHeaderRow/_filter-header-row.scss +64 -0
  107. package/lib/scss/components/Table/TableToolbar/_table-toolbar.scss +15 -1
  108. package/lib/scss/components/Table/_pagination.scss +14 -4
  109. package/lib/scss/components/Table/_table.scss +10 -0
  110. package/lib/scss/components/TimePickerSpinner/_time-picker-spinner.scss +6 -0
  111. package/lib/scss/globals/_mixins.scss +10 -0
  112. package/lib/utils/componentUtilityFunctions.js +26 -0
  113. package/package.json +6 -5
  114. package/scss/components/Card/_card-title.scss +4 -0
  115. package/scss/components/DateTimePicker/_date-time-picker.scss +6 -0
  116. package/scss/components/DateTimePicker/_date-time-pickerv2.scss +20 -5
  117. package/scss/components/FilterTags/_filter-tags.scss +8 -2
  118. package/scss/components/OverflowMenu/_overflow-menu.scss +10 -1
  119. package/scss/components/ReadOnlyValue/_read-only-value.scss +22 -0
  120. package/scss/components/SuiteHeader/_suite-header.scss +10 -0
  121. package/scss/components/Table/TableHead/FilterHeaderRow/_filter-header-row.scss +64 -0
  122. package/scss/components/Table/TableToolbar/_table-toolbar.scss +15 -1
  123. package/scss/components/Table/_pagination.scss +14 -4
  124. package/scss/components/Table/_table.scss +10 -0
  125. package/scss/components/TimePickerSpinner/_time-picker-spinner.scss +6 -0
  126. package/scss/globals/_mixins.scss +10 -0
  127. package/umd/carbon-addons-iot-react.js +6957 -4530
package/CHANGELOG.md CHANGED
@@ -3,6 +3,339 @@
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.152.0](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.32...v2.152.0) (2023-02-20)
7
+
8
+ **Note:** Version bump only for package carbon-addons-iot-react
9
+
10
+
11
+
12
+
13
+
14
+ # [2.152.0-next.32](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.31...v2.152.0-next.32) (2023-02-16)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **datetimepickerv2:** close dropdown when scrolling ([bd58196](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/bd58196d93f2ba08e0880b73e0eb37028ed019a2))
20
+ * **datetimepickerv2:** custom dropdown height ([5818bc1](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/5818bc1fb284c6a0c3341037a1f96318429248f0))
21
+ * **datetimepickerv2:** fix bugs ([3e3561d](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/3e3561d5a220d85f075593f6e4ec467e74891f78))
22
+ * **datetimepickerv2:** update debounce timeout to 10 ([376e3b7](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/376e3b71facc15c548cea602602f66175f43923e))
23
+ * **datetimepickerv2:** update images ([b33f2df](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/b33f2df127fa05ef487a1b3bbf221080516d8c5a))
24
+ * **datetimepickerv2:** update images ([42462be](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/42462be19488b59c800cc567e65a13ab13eca4dd))
25
+ * **datetimepickerv2:** update max height for absolute ([f2eac2f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/f2eac2fef315ece95753acd10aceb3e18dc49ee7))
26
+
27
+
28
+
29
+
30
+
31
+ # [2.152.0-next.31](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.30...v2.152.0-next.31) (2023-02-15)
32
+
33
+
34
+ ### Features
35
+
36
+ * **filtertags:** add prop for text in overflow tag ([3f3d221](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/3f3d2210652630450587aff7a5af2eadf8b3fe1d)), closes [#3710](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3710)
37
+
38
+
39
+
40
+
41
+
42
+ # [2.152.0-next.30](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.29...v2.152.0-next.30) (2023-02-14)
43
+
44
+
45
+ ### Bug Fixes
46
+
47
+ * **suiteheader:** icon vertical alignment ([e9324b8](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/e9324b8713ad7c45f231df1cb7056b4a37ac3f2a)), closes [#3694](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3694)
48
+
49
+
50
+
51
+
52
+
53
+ # [2.152.0-next.29](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.28...v2.152.0-next.29) (2023-02-14)
54
+
55
+
56
+ ### Bug Fixes
57
+
58
+ * **table:** decrease css selector spec in overflow menu ([1cb6533](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/1cb6533eea555b39f44962bc89b485a9c1a02184))
59
+ * **tabletoolbar:** overflow menu icon color ([a4d6cae](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/a4d6caee721770c4be2ea0797cba271bd5dcc6d8))
60
+
61
+
62
+ ### Features
63
+
64
+ * **overflowmenu:** add support for button label ([7f2fe4b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/7f2fe4b6d4060d040483b56aea1b9d0edcbaa9c5)), closes [#3714](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3714)
65
+
66
+
67
+
68
+
69
+
70
+ # [2.152.0-next.28](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.27...v2.152.0-next.28) (2023-02-07)
71
+
72
+ **Note:** Version bump only for package carbon-addons-iot-react
73
+
74
+
75
+
76
+
77
+
78
+ # [2.152.0-next.27](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.26...v2.152.0-next.27) (2023-02-07)
79
+
80
+
81
+ ### Bug Fixes
82
+
83
+ * **dashboardeditor:** added comment for dependency exclusion ([a2f661b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/a2f661b79335b9ea018529e586cac13dd528a969))
84
+ * **dashboardeditor:** fixed issue when removing image from image card ([b1164c7](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/b1164c7deb001ae4a0c55cc0ab3e221d29776455))
85
+
86
+
87
+
88
+
89
+
90
+ # [2.152.0-next.26](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.25...v2.152.0-next.26) (2023-02-06)
91
+
92
+
93
+ ### Bug Fixes
94
+
95
+ * **suiteheader:** Fixing the useUiResources promise flow (it was missing an await in the cached flow) ([c1c2f8a](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/c1c2f8a01021d73126e77046af0fffebc10b3f7c))
96
+
97
+
98
+
99
+
100
+
101
+ # [2.152.0-next.25](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.24...v2.152.0-next.25) (2023-02-02)
102
+
103
+
104
+ ### Bug Fixes
105
+
106
+ * **suiteheader:** Adding an error callback to cacheduiresources. ([ccbf799](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/ccbf7990373310da446b0cddc36de34058d0fa97))
107
+ * **suiteheader:** Adding another vanilla js level between uiresources.js and useUiResources.js so that it is possible to consume the logic that calls the uiresources API twice without depending on react to do so. ([76ae24b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/76ae24b93895ef6e5646b55a12a68c1eeb22d1b8))
108
+ * **suiteheader:** Adding support for `useCache` parameter in the `useUiResources` hook. This parameter is true by default, but it can be overridden to false, if necessary. The aim of this change is to make the first call to the uiresources API with the cache parameter set to true, so a quick response can be set to the state, and then make another call to the uiresources API (without the cache parameter) in background to update the state with the most recent data returned by the API. This is necessary because the uiresources API is slow and we need to improve user experience when accessing the UI. ([2760baa](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/2760baa86bfaabf49056957ace6d979d38319b45))
109
+ * **suiteheader:** Adding the export line for cacheduiresources.js ([a18da25](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/a18da254c729cc7999b95d1ebbe28c71dc05691c))
110
+ * **suiteheader:** Removing debug code. ([6d407a0](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/6d407a0c1a2cbe6535a0440d6799c5b331e18d27))
111
+ * **suiteheader:** Updating storyshot. ([2f39a6d](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/2f39a6d81fec6ce3384f99e676bb3eb0d89a1299))
112
+
113
+
114
+
115
+
116
+
117
+ # [2.152.0-next.24](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.23...v2.152.0-next.24) (2023-02-01)
118
+
119
+
120
+ ### Bug Fixes
121
+
122
+ * **datetimepickerv2:** fix flyout menu open direction ([75a721b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/75a721b6c77549b4450e4c3faf0fe7f7bb08b92a))
123
+
124
+
125
+
126
+
127
+
128
+ # [2.152.0-next.23](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.22...v2.152.0-next.23) (2023-01-20)
129
+
130
+
131
+ ### Bug Fixes
132
+
133
+ * **dataseriesformsettings:** add key for number ([d419628](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/d419628d55a1b5bac18ad7fe5713478dc298621f))
134
+ * **dataseriesformsettings:** set empty values ([4c98ca1](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/4c98ca1bb619ee9a6ba842da8171014b86ec0dc3))
135
+ * **readonlyvalue:** reset padding top ([40b40c6](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/40b40c660a24dcb884e55cdb37b593f91f53fc85)), closes [#3655](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3655)
136
+
137
+
138
+ ### Features
139
+
140
+ * **readonlyvalue:** add loading state ([0ea2787](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/0ea278799ead3a05cbc492d5402a950dde61472c)), closes [#3655](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3655)
141
+
142
+
143
+
144
+
145
+
146
+ # [2.152.0-next.22](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.21...v2.152.0-next.22) (2023-01-20)
147
+
148
+
149
+ ### Bug Fixes
150
+
151
+ * **table:** update prop types for filter row icon ([792c3ab](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/792c3abda5dddfc82f57e52a31f4e72c931b9133))
152
+
153
+
154
+
155
+
156
+
157
+ # [2.152.0-next.21](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.20...v2.152.0-next.21) (2023-01-19)
158
+
159
+
160
+ ### Features
161
+
162
+ * **table:** add icon button to filter row ([9cad7c1](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/9cad7c1467227d339ef7b784c0308fce2f6cbb6c)), closes [#3688](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3688)
163
+
164
+
165
+
166
+
167
+
168
+ # [2.152.0-next.20](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.19...v2.152.0-next.20) (2023-01-18)
169
+
170
+
171
+ ### Bug Fixes
172
+
173
+ * **datetimepicker:** close tooltip on apply click ([e35ebcd](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/e35ebcdeb13261b8fdd9583beb077177802639c6))
174
+ * **datetimepicker:** restore saved value in single mode ([f1f6a6a](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/f1f6a6aead34d9d23d0d7ad77aa0e877af5f2563))
175
+ * **datetimepicker:** select preset if default is relative ([5a1a4d8](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/5a1a4d8a712a9e60010977fbf697d2e2768ca984))
176
+ * **datetimepickerv2:** select preset if default is relative ([a5239d2](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/a5239d2bb3c624b0d8f38f9aa9ee6507b7df933b))
177
+ * **editorutils:** add test for group by changes ([5bc90aa](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/5bc90aacdcb41e10576d9bde94841a440b772b0a))
178
+ * **editorutils:** update colums destination attr on group by changes ([0105f0f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/0105f0fd9e0f6e6dc608faae36e23a5bea16e84c))
179
+
180
+
181
+ ### Features
182
+
183
+ * **datetimepicker:** close dropdown on click outside ([bf242cf](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/bf242cfa316ab84e45a2fb10a92bce4349f930c2)), closes [#3642](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3642)
184
+ * **datetimepickerv2:** close dropdown on click outside ([05efbc1](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/05efbc12d4deb1ae644ff63b64a26fdbc70a58cb)), closes [#3642](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3642)
185
+
186
+
187
+
188
+
189
+
190
+ # [2.152.0-next.19](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.18...v2.152.0-next.19) (2023-01-13)
191
+
192
+
193
+ ### Bug Fixes
194
+
195
+ * **card:** add throttle to close tooltip on scroll ([808e929](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/808e929c1066176043dcfd6b35348062e6e60232))
196
+ * **card:** change throttle to setTimeout for scroll event ([deddd60](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/deddd60de1a3ca3873245b8f3ffe9d87818a97d6))
197
+ * **table:** change adaptive styling in pagination ([25d9a99](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/25d9a99160190241011b8aad08875ebb09d94f0a))
198
+ * **table:** change tooltip direction in toolbar ([38a0c23](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/38a0c2365917e78b1fb3b89ea115cb627c229ad0))
199
+ * **tableheader:** update images ([86844b8](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/86844b8bd1418862b443636b217a2c2729991978))
200
+ * **tableheader:** use arrowup 16px ([7d13f50](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/7d13f50171753c2417731bca4fde165baf352088))
201
+ * **tablereducer:** reset filter after sorting ([74ca400](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/74ca4006e9cc8731e0c7787202607440551b331a)), closes [#3686](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3686)
202
+
203
+
204
+
205
+
206
+
207
+ # [2.152.0-next.18](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.17...v2.152.0-next.18) (2023-01-13)
208
+
209
+ **Note:** Version bump only for package carbon-addons-iot-react
210
+
211
+
212
+
213
+
214
+
215
+ # [2.152.0-next.17](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.16...v2.152.0-next.17) (2023-01-06)
216
+
217
+
218
+ ### Bug Fixes
219
+
220
+ * **datetimepicker:** add min-height ([ea0b4aa](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/ea0b4aa67d76c95b66dd0c7544de0c17dbbe156d))
221
+ * **datetimepicker:** add placeholder height ([85de1ef](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/85de1ef738199fa1e0958d27c3c4b97853eb2691))
222
+ * **datetimepickerv2:** add event listener to all parents ([123d51b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/123d51b972d867b5af46a26b6e71acd209df9bef))
223
+ * **datetimepickerv2:** add tests ([5d49c17](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/5d49c171b59264d149a8999e505f367a206a87fd))
224
+ * **datetimepickerv2:** adding conditions ([d0cdba2](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/d0cdba2724ef83bb3bbe4a44320b965a59232d60))
225
+ * **datetimepickerv2:** flip direction if offscreen on bottom ([ad87f34](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/ad87f3448fbc4d8120b9f54063d64b6a4f1e48e0))
226
+ * **datetimepickerv2:** make sure to remove event listner ([457d00f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/457d00f2946a88a839bf1502a5594160b431692e))
227
+ * **datetimepickerv2:** update e2e tests ([707472d](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/707472db54d9956a4214edb880e7036cf9d212fd))
228
+ * **datetimepickerv2:** update story for testing scrolling ([6d41ab4](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/6d41ab478916eb1148029396e7c2ce34d18d9502))
229
+ * **datetimepickerv2:** update tests ([132895e](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/132895ec257cea61e513876071c54879b69f87b4))
230
+ * **flyoutmenu:** flyout menu position ([578f035](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/578f035b2f291b67a330dfea4544ca6fb5e9890c))
231
+
232
+
233
+
234
+
235
+
236
+ # [2.152.0-next.16](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.15...v2.152.0-next.16) (2023-01-06)
237
+
238
+
239
+ ### Bug Fixes
240
+
241
+ * **datetimepicker:** change absolute starttime default to null ([786e7e5](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/786e7e58ed10ec28c9f8f3abca10e75a2615997e))
242
+ * **datetimepickerv2:** disable apply button when time value is null ([0f8649b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/0f8649b97ba14d65c6319b8084b556e30d2a368b))
243
+ * **datetimepickerv2:** remove defalut time value from humanvalue ([9bb706a](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/9bb706abc9aa147038a667369471e42c6065165d))
244
+
245
+
246
+
247
+
248
+
249
+ # [2.152.0-next.15](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.14...v2.152.0-next.15) (2023-01-05)
250
+
251
+
252
+ ### Bug Fixes
253
+
254
+ * **barchartutils:** condition check for categorydatasourceid ([9613635](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/9613635553b9fa1353b6377aebf8b0ee5d68f2df))
255
+ * **barchartutils:** updated conditon for grouped ([5cdeec5](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/5cdeec5b22e673a2f165523faf71f9026a7c0ce7))
256
+ * **suiteheader:** Including `appId` as a parameter in `useUiResources` hook. ([7287e8f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/7287e8f03d28951e5681be7eea8a6456090f3016))
257
+ * **suiteheader:** Including `originWorkspaceId` in the logout url, and updating snapshots. ([9a897f9](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/9a897f973efc4a9f5536a1128be3e3580903c1ba))
258
+ * **suiteheader:** Including an optional `appId` property to `SuiteHeader` so that an `originAppId` query param can be added to the logout URL. ([ffe5395](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/ffe53959e80380d4e94a3717158b095eda51321a))
259
+ * **suiteheader:** Removing `appId` as `SuiteHeader` property and including it as a query parameter to the `uiresources` API handler. ([158e7e5](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/158e7e5392169238c9fdbf313d22a9d338fae7ed))
260
+
261
+
262
+
263
+
264
+
265
+ # [2.152.0-next.14](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.13...v2.152.0-next.14) (2023-01-03)
266
+
267
+
268
+ ### Bug Fixes
269
+
270
+ * **card:** auto alignment for title tooltips ([9264d2d](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/9264d2d75d3a120f50afc984f1afb5a9ec4ddda0)), closes [#3682](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3682)
271
+ * **datetimepickerv2:** focus not working in firefox ([b0bd6b6](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/b0bd6b630a4090af412bbeafb92bbf488b627574))
272
+ * **datetimepickerv2:** put invalid class back to box container ([64af1a6](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/64af1a61a3387e8c036b89014a578b5420603fc2))
273
+
274
+
275
+ ### Features
276
+
277
+ * **table:** add prop to enable horizontal scrollbar in table body ([6a6bb95](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/6a6bb957e6eea23ddc43bb92a15f8603dbbc671f)), closes [#3653](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3653)
278
+
279
+
280
+
281
+
282
+
283
+ # [2.152.0-next.13](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.12...v2.152.0-next.13) (2022-12-06)
284
+
285
+
286
+ ### Bug Fixes
287
+
288
+ * **package:** deprecated package in use ([0fbe220](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/0fbe2205486507effe4515688c4f6def9a6796cd))
289
+
290
+
291
+
292
+
293
+
294
+ # [2.152.0-next.12](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.11...v2.152.0-next.12) (2022-12-06)
295
+
296
+
297
+ ### Bug Fixes
298
+
299
+ * **datetimepickerv2:** add styles to center time picker spinner ([d4ca9a9](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/d4ca9a9a63df33c61f429eefd2176d43e4cae71e)), closes [#3648](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3648)
300
+
301
+
302
+
303
+
304
+
305
+ # [2.152.0-next.11](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.10...v2.152.0-next.11) (2022-12-05)
306
+
307
+
308
+ ### Features
309
+
310
+ * **card:** hide title tooltips on window scroll ([a42a59d](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/a42a59daa2a6e2a0bf287e8dd5317ec8dcf8ea70)), closes [#3645](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3645)
311
+ * **tableviewdropdown:** add prop for custom tooltip ([cddf108](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/cddf108a5d17b9d61cbc2c5ecb4fe3f5ddab483b)), closes [#3534](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3534)
312
+
313
+
314
+
315
+
316
+
317
+ # [2.152.0-next.10](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.9...v2.152.0-next.10) (2022-12-05)
318
+
319
+
320
+ ### Bug Fixes
321
+
322
+ * **tablereducer:** select all on initial render if all rows selected ([dac8eae](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/dac8eaed496aaf6f9c5d69e614c1b1b23c1c9b38)), closes [#3651](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3651)
323
+
324
+
325
+
326
+
327
+
328
+ # [2.152.0-next.9](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.8...v2.152.0-next.9) (2022-11-29)
329
+
330
+
331
+ ### Bug Fixes
332
+
333
+ * **datetimepickerv2:** overrides scss ([c2a36c6](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/c2a36c60f8cb0eaeb0051c69e491c5fd3b16ce83))
334
+
335
+
336
+
337
+
338
+
6
339
  # [2.152.0-next.8](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.7...v2.152.0-next.8) (2022-11-22)
7
340
 
8
341
 
@@ -18730,8 +18730,17 @@ button.iot--overflow-menu-icon .bx--btn__icon {
18730
18730
  width: initial;
18731
18731
  height: initial;
18732
18732
  }
18733
- button.iot--overflow-menu-icon.bx--btn--icon-only.bx--tooltip__trigger svg, button.iot--overflow-menu-icon.bx--btn--icon-only.bx--tooltip__trigger:hover svg, button.iot--overflow-menu-icon.bx--btn--icon-only.bx--tooltip__trigger:focus svg {
18733
+ button.iot--overflow-menu-icon.bx--btn--icon-only.bx--tooltip__trigger svg {
18734
18734
  fill: #161616;
18735
+ margin-left: 0;
18736
+ }
18737
+ button.iot--overflow-menu-icon.bx--btn--icon-only.bx--tooltip__trigger:hover svg, button.iot--overflow-menu-icon.bx--btn--icon-only.bx--tooltip__trigger:focus svg {
18738
+ fill: #161616;
18739
+ }
18740
+
18741
+ .iot--overflow-menu--with-label {
18742
+ width: unset;
18743
+ font-size: 0.875rem;
18735
18744
  }
18736
18745
 
18737
18746
  .bx--content-switcher {
@@ -29386,6 +29395,10 @@ html[dir=rtl] .iot--card--subtitle--text--padded {
29386
29395
  margin-right: unset;
29387
29396
  }
29388
29397
 
29398
+ .iot--card-heading-clickable {
29399
+ cursor: pointer;
29400
+ }
29401
+
29389
29402
  .iot--data-state-container {
29390
29403
  padding: 0 var(--container-padding);
29391
29404
  width: inherit;
@@ -30581,6 +30594,7 @@ div.iot--card-edit-form--data-item-list .iot--list-item--content--values--value_
30581
30594
  }
30582
30595
  .iot--date-time-picker__wrapper .iot--date-time-picker__box .iot--date-time-picker__menu .iot--date-time-picker__menu-scroll {
30583
30596
  overflow-y: auto;
30597
+ overflow-x: hidden;
30584
30598
  }
30585
30599
  .iot--date-time-picker__wrapper .iot--date-time-picker__box .iot--date-time-picker__menu .iot--date-time-picker__menu-scroll .bx--fieldset {
30586
30600
  margin-bottom: 1.5rem;
@@ -30663,6 +30677,10 @@ div.iot--card-edit-form--data-item-list .iot--list-item--content--values--value_
30663
30677
  cursor: not-allowed;
30664
30678
  }
30665
30679
 
30680
+ .iot--date-time-picker__datepicker {
30681
+ min-height: 20.875rem;
30682
+ }
30683
+
30666
30684
  html[dir=rtl] .iot--date-time-picker__wrapper .bx--number {
30667
30685
  margin-right: unset;
30668
30686
  margin-left: 1rem;
@@ -30740,6 +30758,9 @@ html[dir=rtl] .iot--date-time-picker__wrapper .iot--date-time-picker__box .iot--
30740
30758
  .iot--date-time-pickerv2__wrapper .iot--date-time-picker__box--full .iot--flyout-menu:not(.iot--flyout-menu__light) .iot--flyout-menu--trigger-button {
30741
30759
  background-color: inherit;
30742
30760
  }
30761
+ .iot--date-time-pickerv2__wrapper .iot--date-time-picker__box--full .iot--flyout-menu .bx--tooltip__label {
30762
+ outline: none;
30763
+ }
30743
30764
  .iot--date-time-pickerv2__wrapper .iot--date-time-picker__box--full .iot--date-time-picker__field {
30744
30765
  padding-left: 1rem;
30745
30766
  overflow: hidden;
@@ -30773,9 +30794,6 @@ html[dir=rtl] .iot--date-time-picker__wrapper .iot--date-time-picker__box .iot--
30773
30794
  .iot--date-time-pickerv2__wrapper .iot--date-time-picker__box--light {
30774
30795
  background-color: #f4f4f4;
30775
30796
  }
30776
- .iot--date-time-pickerv2__wrapper .iot--date-time-picker__box--invalid {
30777
- outline: 2px solid #da1e28;
30778
- }
30779
30797
  .iot--date-time-pickerv2__wrapper .iot--date-time-picker__box--disabled {
30780
30798
  border: none;
30781
30799
  }
@@ -30788,6 +30806,10 @@ html[dir=rtl] .iot--date-time-picker__wrapper .iot--date-time-picker__box .iot--
30788
30806
  pointer-events: none;
30789
30807
  }
30790
30808
 
30809
+ .iot--date-time-pickerv2__wrapper--invalid {
30810
+ outline: 2px solid #da1e28;
30811
+ }
30812
+
30791
30813
  .iot--flyout-menu--content.iot--date-time-picker--menu {
30792
30814
  --zIndex: 0;
30793
30815
  padding: 0;
@@ -30795,6 +30817,7 @@ html[dir=rtl] .iot--date-time-picker__wrapper .iot--date-time-picker__box .iot--
30795
30817
  }
30796
30818
  .iot--flyout-menu--content.iot--date-time-picker--menu .iot--date-time-picker__menu-scroll {
30797
30819
  overflow-y: auto;
30820
+ overflow-x: hidden;
30798
30821
  width: var(--wrapper-width);
30799
30822
  }
30800
30823
  .iot--flyout-menu--content.iot--date-time-picker--menu .iot--date-time-picker__menu-scroll .bx--list__item:before {
@@ -30916,6 +30939,13 @@ html[dir=rtl] .iot--date-time-picker__wrapper .iot--date-time-picker__box .iot--
30916
30939
  .iot--date-time-picker--tooltip.iot--flyout-menu--body.iot--flyout-menu--body__bottom-start .bx--tooltip__content::after, .iot--date-time-picker--tooltip.iot--date-time-picker--tooltip.iot--flyout-menu--body.iot--flyout-menu--body__bottom-end .bx--tooltip__content::after, .iot--date-time-picker--tooltip.iot--date-time-picker--tooltip.iot--flyout-menu--body.iot--flyout-menu--body__top-start .bx--tooltip__content::after, .iot--date-time-picker--tooltip.iot--date-time-picker--tooltip.iot--flyout-menu--body.iot--flyout-menu--body__top-end .bx--tooltip__content::after {
30917
30940
  background-color: unset;
30918
30941
  }
30942
+ .iot--date-time-picker--tooltip .bx--tooltip__content {
30943
+ text-align: unset;
30944
+ }
30945
+
30946
+ .iot--date-time-picker__datepicker {
30947
+ min-height: 20.875rem;
30948
+ }
30919
30949
 
30920
30950
  html[dir=rtl] .iot--flyout-menu--content.iot--date-time-picker--menu .iot--date-time-picker__fields-wrapper .bx--form-item + .bx--form-item,
30921
30951
  html[dir=rtl] .iot--flyout-menu--content.iot--date-time-picker--menu .iot--date-time-picker__fields-wrapper .bx--form-item + .iot--time-picker__wrapper {
@@ -31057,7 +31087,7 @@ html[dir=rtl] .iot--flyout-menu--content.iot--date-time-picker--menu .iot--date-
31057
31087
  }
31058
31088
  .iot--filtertags-container__wrap .bx--overflow-menu {
31059
31089
  width: auto;
31060
- min-width: 4.5rem;
31090
+ height: unset;
31061
31091
  }
31062
31092
  .iot--filtertags-container .iot--filtertags-overflow-menu,
31063
31093
  .iot--filtertags-container .iot--filtertags-overflow-menu.bx--overflow-menu--open,
@@ -31087,12 +31117,17 @@ html[dir=rtl] .iot--flyout-menu--content.iot--date-time-picker--menu .iot--date-
31087
31117
  width: 0;
31088
31118
  }
31089
31119
 
31090
- .iot--filtertags-overflow-item span {
31120
+ .iot--filtertags-overflow-item__wrapper {
31091
31121
  display: flex;
31092
31122
  align-items: center;
31093
31123
  justify-content: space-between;
31094
31124
  width: 100%;
31095
31125
  }
31126
+ .iot--filtertags-overflow-item__wrapper span {
31127
+ width: 90%;
31128
+ overflow: hidden;
31129
+ text-overflow: ellipsis;
31130
+ }
31096
31131
 
31097
31132
  .iot--gauge-container {
31098
31133
  display: flex;
@@ -36015,6 +36050,12 @@ html[dir=rtl] .iot--side-nav__item--depth-3 .bx--side-nav__link-text {
36015
36050
  display: flex;
36016
36051
  align-items: center;
36017
36052
  }
36053
+ .iot--suite-header .bx--header__global .bx--header-action-btn .bx--btn--primary {
36054
+ background-color: unset;
36055
+ }
36056
+ .iot--suite-header .bx--header__global .bx--header-action-btn .bx--header__menu-item span {
36057
+ display: flex;
36058
+ }
36018
36059
  .iot--suite-header .iot--header__subtitle {
36019
36060
  padding: 0 1rem;
36020
36061
  min-height: unset;
@@ -36188,6 +36229,18 @@ div.bx--toolbar-action.bx--toolbar-search-container-expandable > div.bx--search.
36188
36229
  .iot--table-toolbar-content .bx--toolbar-search-container-active .bx--search-input {
36189
36230
  border-bottom: 0;
36190
36231
  }
36232
+ .iot--table-toolbar-content .iot--table-overflow-batch-actions.bx--overflow-menu--open .bx--assistive-text {
36233
+ display: none;
36234
+ }
36235
+ .iot--table-toolbar-content .iot--table-overflow-batch-actions.bx--overflow-menu--open::before {
36236
+ content: "";
36237
+ }
36238
+ .iot--table-toolbar-content .iot--table-toolbar-aggregations__overflow-menu.bx--overflow-menu--open .bx--assistive-text {
36239
+ display: none;
36240
+ }
36241
+ .iot--table-toolbar-content .iot--table-toolbar-aggregations__overflow-menu.bx--overflow-menu--open::before {
36242
+ content: "";
36243
+ }
36191
36244
 
36192
36245
  .bx--batch-actions:not(.bx--batch-actions--active) ~ .bx--toolbar-content {
36193
36246
  -webkit-clip-path: unset;
@@ -36266,12 +36319,15 @@ html[dir=rtl] .iot--table-batch-actions .bx--btn--primary.bx--batch-summary__can
36266
36319
  outline: 2px solid #ffffff;
36267
36320
  outline-offset: -0.125rem;
36268
36321
  }
36269
- .iot--table-overflow-batch-actions > svg {
36322
+ .iot--table-overflow-batch-actions.iot--overflow-menu-icon.iot--tooltip-svg-wrapper .bx--btn__icon {
36270
36323
  fill: #ffffff;
36271
36324
  }
36272
36325
  .iot--table-overflow-batch-actions:hover + .bx--btn--primary.bx--batch-summary__cancel::before, .iot--table-overflow-batch-actions:focus + .bx--btn--primary.bx--batch-summary__cancel::before {
36273
36326
  opacity: 0;
36274
36327
  }
36328
+ .iot--table-overflow-batch-actions:hover.iot--overflow-menu-icon.iot--tooltip-svg-wrapper svg.bx--btn__icon, .iot--table-overflow-batch-actions:focus.iot--overflow-menu-icon.iot--tooltip-svg-wrapper svg.bx--btn__icon {
36329
+ fill: #ffffff;
36330
+ }
36275
36331
 
36276
36332
  .iot--table-overflow-batch-actions__menu:after {
36277
36333
  background-color: #0353e9;
@@ -36292,6 +36348,15 @@ html[dir=rtl] .iot--table-batch-actions .bx--btn--primary.bx--batch-summary__can
36292
36348
  .iot--pagination--compact .bx--pagination__control-buttons {
36293
36349
  margin-left: auto;
36294
36350
  }
36351
+ .iot--pagination--narrow .bx--pagination__left {
36352
+ padding: 0 0.5rem 0 1rem;
36353
+ }
36354
+ .iot--pagination--narrow .bx--pagination__items-count {
36355
+ margin-left: 0.5rem;
36356
+ }
36357
+ .iot--pagination--narrow .bx--pagination__right .bx--pagination__text {
36358
+ margin-right: 0.5rem;
36359
+ }
36295
36360
  .iot--pagination .bx--pagination__left {
36296
36361
  margin: auto auto auto 0;
36297
36362
  }
@@ -36306,9 +36371,6 @@ html[dir=rtl] .iot--pagination .bx--pagination__left {
36306
36371
  display: var(--pagination-text-display);
36307
36372
  }
36308
36373
 
36309
- .iot--pagination--hide-page .bx--pagination__left {
36310
- padding: 0 1rem 0 1rem;
36311
- }
36312
36374
  .iot--pagination--hide-page .bx--pagination__left .bx--pagination__text:first-child,
36313
36375
  .iot--pagination--hide-page .bx--pagination__left span:first-child,
36314
36376
  .iot--pagination--hide-page .bx--pagination__left .bx--form-item {
@@ -36619,6 +36681,56 @@ html[dir=ltr] .iot--column-resize-handle {
36619
36681
  [dir=rtl] .bx--data-table th.iot--filter-header-row--header.iot--tableheader-filter.iot--tableheader-filter:first-of-type + .iot--tableheader-filter {
36620
36682
  border-right-width: 0;
36621
36683
  }
36684
+ .bx--data-table th.iot--filter-header-row--header.iot--tableheader-filter.iot--filter-header-row--with-icon {
36685
+ position: unset;
36686
+ }
36687
+ .bx--data-table th.iot--filter-header-row--header.iot--tableheader-filter.iot--filter-header-row--with-margin .bx--table-header-label {
36688
+ min-width: 7.5rem;
36689
+ padding-right: 2.625rem;
36690
+ }
36691
+ [dir=rtl] .bx--data-table th.iot--filter-header-row--header.iot--tableheader-filter.iot--filter-header-row--with-margin .bx--table-header-label {
36692
+ padding-right: unset;
36693
+ padding-left: 3rem;
36694
+ }
36695
+ .bx--data-table th.iot--filter-header-row--header.iot--tableheader-filter .iot--filter-header-icon {
36696
+ position: absolute;
36697
+ right: 0;
36698
+ z-index: 1;
36699
+ background-color: #e0e0e0;
36700
+ }
36701
+ .bx--data-table th.iot--filter-header-row--header.iot--tableheader-filter .iot--filter-header-icon:hover {
36702
+ background-color: #e5e5e5;
36703
+ }
36704
+ [dir=rtl] .bx--data-table th.iot--filter-header-row--header.iot--tableheader-filter .iot--filter-header-icon {
36705
+ right: unset;
36706
+ left: 0;
36707
+ }
36708
+ .bx--data-table th.iot--filter-header-row--header.iot--tableheader-filter .iot--filter-header-icon.iot--filter-header-icon--with-border {
36709
+ border-right: 0.125rem solid #f4f4f4;
36710
+ }
36711
+ [dir=rtl] .bx--data-table th.iot--filter-header-row--header.iot--tableheader-filter .iot--filter-header-icon.iot--filter-header-icon--with-border {
36712
+ border-right: none;
36713
+ border-left: 0.125rem solid #f4f4f4;
36714
+ }
36715
+ .bx--data-table th.iot--filter-header-row--header.iot--tableheader-filter .iot--filter-header-icon.iot--filter-header-icon--with-margin {
36716
+ right: 0.5rem;
36717
+ }
36718
+ [dir=rtl] .bx--data-table th.iot--filter-header-row--header.iot--tableheader-filter .iot--filter-header-icon.iot--filter-header-icon--with-margin {
36719
+ right: unset;
36720
+ left: 1.375rem;
36721
+ }
36722
+ .bx--data-table th.iot--filter-header-row--header.iot--tableheader-filter .iot--filter-header-row--icon-support {
36723
+ position: absolute;
36724
+ right: 0;
36725
+ width: 0.5rem;
36726
+ height: 2.5rem;
36727
+ background-color: #e0e0e0;
36728
+ }
36729
+ [dir=rtl] .bx--data-table th.iot--filter-header-row--header.iot--tableheader-filter .iot--filter-header-row--icon-support {
36730
+ right: unset;
36731
+ left: 0;
36732
+ width: 1.375rem;
36733
+ }
36622
36734
 
36623
36735
  .bx--data-table--xl th.iot--filter-header-row--header {
36624
36736
  height: 2.5rem;
@@ -37521,6 +37633,13 @@ button.bx--btn.iot--tooltip-svg-wrapper.bx--btn--ghost.iot--table-toolbar__advan
37521
37633
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
37522
37634
  }
37523
37635
 
37636
+ .iot--table-toolbar__advanced-filters-button.iot--table-toolbar-button-active.iot--flyout-menu--trigger-button .bx--assistive-text {
37637
+ display: none;
37638
+ }
37639
+ .iot--table-toolbar__advanced-filters-button.iot--table-toolbar-button-active.iot--flyout-menu--trigger-button::before {
37640
+ content: "";
37641
+ }
37642
+
37524
37643
  .bx--data-table thead th.bx--table-expand,
37525
37644
  .bx--data-table tbody td.bx--table-expand {
37526
37645
  height: 2rem;
@@ -37594,6 +37713,10 @@ button.bx--btn.iot--tooltip-svg-wrapper.bx--btn--ghost.iot--table-toolbar__advan
37594
37713
  left: unset;
37595
37714
  right: var(--row-nesting-offset);
37596
37715
  }
37716
+ .iot--table__cell__offset__expand {
37717
+ left: unset;
37718
+ margin-left: var(--row-nesting-offset);
37719
+ }
37597
37720
 
37598
37721
  .iot--expanded-tablerow td {
37599
37722
  padding: 0;
@@ -38568,6 +38691,11 @@ html[dir=rtl] .bx--tile__checkmark {
38568
38691
  cursor: not-allowed;
38569
38692
  color: #c6c6c6;
38570
38693
  }
38694
+ .iot--time-picker__wrapper .bx--form-item.bx--text-input-wrapper {
38695
+ align-items: flex-start;
38696
+ width: 100%;
38697
+ margin: 0;
38698
+ }
38571
38699
 
38572
38700
  html[dir=rtl] .iot--time-picker__wrapper.iot--time-picker__wrapper--show-underline .bx--time-picker__input:before {
38573
38701
  left: unset;
@@ -38866,6 +38994,7 @@ html[dir=rtl] .iot--wizard-modal .iot--wizard-modal__content {
38866
38994
  color: #161616;
38867
38995
  border: 0;
38868
38996
  background: none;
38997
+ padding-top: 0;
38869
38998
  padding-left: 0;
38870
38999
  resize: none;
38871
39000
  }
@@ -38891,6 +39020,9 @@ html[dir=rtl] .iot--wizard-modal .iot--wizard-modal__content {
38891
39020
  letter-spacing: 0.16px;
38892
39021
  color: #161616;
38893
39022
  }
39023
+ .iot--read-only-value__inline.iot--read-only-value--loading label {
39024
+ align-items: flex-start;
39025
+ }
38894
39026
  .iot--read-only-value__inline_small > label {
38895
39027
  font-size: 0.75rem;
38896
39028
  font-weight: 400;
@@ -38904,6 +39036,15 @@ html[dir=rtl] .iot--wizard-modal .iot--wizard-modal__content {
38904
39036
  line-height: 1.33333;
38905
39037
  letter-spacing: 0.32px;
38906
39038
  }
39039
+ .iot--read-only-value--loading label {
39040
+ width: 100%;
39041
+ }
39042
+ .iot--read-only-value .bx--skeleton__text {
39043
+ margin-bottom: 0.25rem;
39044
+ }
39045
+ .iot--read-only-value .bx--skeleton__text:last-of-type {
39046
+ margin-bottom: 0;
39047
+ }
38907
39048
 
38908
39049
  .iot--sparkline-chart--wrapper {
38909
39050
  width: 100%;