carbon-addons-iot-react 2.153.0-next.9 → 2.153.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 +326 -0
- package/css/carbon-addons-iot-react.css +182 -7
- package/css/carbon-addons-iot-react.css.map +1 -1
- package/es/components/Breadcrumb/Breadcrumb.js +35 -4
- package/es/components/CardEditor/CardEditForm/CardEditFormItems/BarChartCardFormItems/BarChartCardFormSettings.js +35 -4
- package/es/components/Dashboard/DashboardGrid.js +3 -1
- package/es/components/DateTimePicker/DateTimePicker.js +7 -4
- package/es/components/DateTimePicker/DateTimePickerV2.js +10 -5
- package/es/components/DateTimePicker/DateTimePickerV2WithTimeSpinner.js +82 -26
- package/es/components/DateTimePicker/DateTimePickerV2WithoutTimeSpinner.js +7 -3
- package/es/components/DateTimePicker/dateTimePickerUtils.js +24 -8
- package/es/components/Header/Header.js +26 -5
- package/es/components/Header/HeaderAction/HeaderAction.js +7 -3
- package/es/components/Header/HeaderAction/HeaderActionMenu.js +50 -12
- package/es/components/Header/HeaderAction/HeaderActionPanel.js +7 -4
- package/es/components/Header/headerConstants.js +1 -1
- package/es/components/PageTitleBar/PageTitleBar.js +12 -4
- package/es/components/SuiteHeader/SuiteHeader.js +139 -18
- package/es/components/SuiteHeader/SuiteHeaderAppSwitcher/MultiWorkspaceSuiteHeaderAppSwitcher.js +2 -1
- package/es/components/SuiteHeader/SuiteHeaderAppSwitcher/SuiteHeaderAppSwitcher.js +4 -2
- package/es/components/SuiteHeader/util/IdleTimer.js +6 -1
- package/es/components/Table/Table.js +34 -9
- package/es/components/Table/TableBody/TableBody.js +31 -6
- package/es/components/Table/TableBody/useTableDnd.js +1 -1
- package/es/components/Table/TableHead/ColumnHeaderRow/ColumnHeaderRow.js +23 -4
- package/es/components/Table/TableHead/FilterHeaderRow/FilterHeaderRow.js +23 -4
- package/es/components/Table/TableHead/TableHead.js +23 -5
- package/es/components/Table/TablePropTypes.js +4 -1
- package/es/components/Table/tableReducer.js +1 -1
- package/es/components/Table/tableUtilities.js +50 -2
- package/es/components/ValueCard/ValueContent.js +3 -5
- package/es/constants/LayoutConstants.js +1 -1
- package/es/hooks/usePopoverPositioning.js +4 -0
- package/es/node_modules/lodash-es/set.js +35 -0
- package/lib/components/Breadcrumb/Breadcrumb.js +36 -4
- package/lib/components/CardEditor/CardEditForm/CardEditFormItems/BarChartCardFormItems/BarChartCardFormSettings.js +35 -4
- package/lib/components/Dashboard/DashboardGrid.js +3 -1
- package/lib/components/DateTimePicker/DateTimePicker.js +7 -4
- package/lib/components/DateTimePicker/DateTimePickerV2.js +10 -5
- package/lib/components/DateTimePicker/DateTimePickerV2WithTimeSpinner.js +81 -25
- package/lib/components/DateTimePicker/DateTimePickerV2WithoutTimeSpinner.js +7 -3
- package/lib/components/DateTimePicker/dateTimePickerUtils.js +24 -8
- package/lib/components/Header/Header.js +26 -5
- package/lib/components/Header/HeaderAction/HeaderAction.js +7 -3
- package/lib/components/Header/HeaderAction/HeaderActionMenu.js +50 -12
- package/lib/components/Header/HeaderAction/HeaderActionPanel.js +7 -4
- package/lib/components/Header/headerConstants.js +1 -1
- package/lib/components/PageTitleBar/PageTitleBar.js +12 -4
- package/lib/components/SuiteHeader/SuiteHeader.js +138 -17
- package/lib/components/SuiteHeader/SuiteHeaderAppSwitcher/MultiWorkspaceSuiteHeaderAppSwitcher.js +2 -1
- package/lib/components/SuiteHeader/SuiteHeaderAppSwitcher/SuiteHeaderAppSwitcher.js +4 -2
- package/lib/components/SuiteHeader/util/IdleTimer.js +6 -1
- package/lib/components/Table/Table.js +33 -8
- package/lib/components/Table/TableBody/TableBody.js +30 -4
- package/lib/components/Table/TableBody/useTableDnd.js +1 -1
- package/lib/components/Table/TableHead/ColumnHeaderRow/ColumnHeaderRow.js +23 -4
- package/lib/components/Table/TableHead/FilterHeaderRow/FilterHeaderRow.js +23 -4
- package/lib/components/Table/TableHead/TableHead.js +22 -4
- package/lib/components/Table/TablePropTypes.js +4 -0
- package/lib/components/Table/tableReducer.js +1 -1
- package/lib/components/Table/tableUtilities.js +51 -1
- package/lib/components/ValueCard/ValueContent.js +2 -4
- package/lib/constants/LayoutConstants.js +1 -1
- package/lib/css/carbon-addons-iot-react.css +182 -7
- package/lib/css/carbon-addons-iot-react.css.map +1 -1
- package/lib/hooks/usePopoverPositioning.js +4 -0
- package/lib/node_modules/lodash-es/set.js +37 -0
- package/lib/scss/components/Breadcrumb/_breadcrumb.scss +23 -0
- package/lib/scss/components/DateTimePicker/_date-time-pickerv2.scss +9 -0
- package/lib/scss/components/Header/_header.scss +3 -3
- package/lib/scss/components/PageTitleBar/_page-title-bar.scss +5 -0
- package/lib/scss/components/Table/TableBody/_table-dnd.scss +3 -1
- package/lib/scss/components/Table/TableCellRenderer/_table-cell-renderer.scss +1 -0
- package/lib/scss/components/Table/_table.scss +92 -0
- package/lib/scss/components/TimePicker/_time-picker-dropdown.scss +2 -1
- package/lib/scss/globals/_mixins.scss +22 -0
- package/package.json +4 -4
- package/scss/components/Breadcrumb/_breadcrumb.scss +23 -0
- package/scss/components/DateTimePicker/_date-time-pickerv2.scss +9 -0
- package/scss/components/Header/_header.scss +3 -3
- package/scss/components/PageTitleBar/_page-title-bar.scss +5 -0
- package/scss/components/Table/TableBody/_table-dnd.scss +3 -1
- package/scss/components/Table/TableCellRenderer/_table-cell-renderer.scss +1 -0
- package/scss/components/Table/_table.scss +92 -0
- package/scss/components/TimePicker/_time-picker-dropdown.scss +2 -1
- package/scss/globals/_mixins.scss +22 -0
- package/umd/carbon-addons-iot-react.js +1305 -782
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,332 @@
|
|
|
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.153.0](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.5...v2.153.0) (2023-10-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [2.153.0-next.35](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.34...v2.153.0-next.35) (2023-09-25)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* close header side nav on navigation ([#3826](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3826)) ([e65bbc8](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/e65bbc89a2b95e0d1c4e633d21526f3e50b26b5f))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [2.153.0-next.34](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.33...v2.153.0-next.34) (2023-09-12)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* **IdleTimer:** Preventing the IdleTimer logic to start its timer if timeout is 0. ([#3825](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3825)) ([9da0f52](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/9da0f52d1aa25ed79ea2141df3d18a3595a4645e))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
# [2.153.0-next.33](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.32...v2.153.0-next.33) (2023-08-10)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Bug Fixes
|
|
40
|
+
|
|
41
|
+
* dashboard layout constant fix ([#3821](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3821)) ([902fad8](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/902fad8a91ed184f037d389cf2797f6eb0c0fb82))
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
# [2.153.0-next.32](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.31...v2.153.0-next.32) (2023-07-28)
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
### Features
|
|
51
|
+
|
|
52
|
+
* **ValueCard:** disable preview in edit mode ([#3818](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3818)) ([5e97cd1](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/5e97cd117368183e1b6672aa087b2c0d4fc71ad3))
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
# [2.153.0-next.31](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.30...v2.153.0-next.31) (2023-07-19)
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
### Bug Fixes
|
|
62
|
+
|
|
63
|
+
* **table:** add min width for pinned last column ([#3816](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3816)) ([e9acf60](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/e9acf60469186b201896ade201b9266dd5872dbc))
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
### Features
|
|
67
|
+
|
|
68
|
+
* **SuiteHeader:** add option to hide menu ([#3815](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3815)) ([343e03f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/343e03f43e75623f1cedeb0c9314d0e05fcb539a))
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
# [2.153.0-next.30](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.29...v2.153.0-next.30) (2023-07-10)
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
### Bug Fixes
|
|
78
|
+
|
|
79
|
+
* **appswitcher:** firefox disable focus ([f34df05](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/f34df057426c8dfbdc09a53e8a5329ac2544da70))
|
|
80
|
+
* **appswitcher:** update snapshots ([bb0689b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/bb0689b8bad4eda3f971353e0bb234e028bb1a0e))
|
|
81
|
+
* **headeractionpanel:** remove unnecessary aria-label ([0d09134](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/0d0913455beb759ca93a2d6adf4acec636f5365f))
|
|
82
|
+
* **headeractionpanel:** update e2e tests ([c44f300](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/c44f300c7439512c0cf06d1a5ecf833a8c22c097))
|
|
83
|
+
* **headeractionpanel:** update tests ([2a12820](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/2a128209f4a96d249e3923abb14ecb0505c65bb2))
|
|
84
|
+
* **table:** change filter tag close button title ([1fa02eb](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/1fa02ebca8173db0dc01788184f8550133adf675))
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
# [2.153.0-next.29](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.28...v2.153.0-next.29) (2023-06-30)
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
### Bug Fixes
|
|
94
|
+
|
|
95
|
+
* **table:** connect pagination to totalItems prop ([dfca12b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/dfca12b496366ed265e2aeb0d6f58d0d135b6474))
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
# [2.153.0-next.28](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.27...v2.153.0-next.28) (2023-06-27)
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
### Bug Fixes
|
|
105
|
+
|
|
106
|
+
* **SuiteHeader:** header action panel proptypes ([#3803](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3803)) ([495345f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/495345ffef68ae2798ba32d72c7d2fcba941b4e6))
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
# [2.153.0-next.27](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.26...v2.153.0-next.27) (2023-06-22)
|
|
113
|
+
|
|
114
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
# [2.153.0-next.26](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.25...v2.153.0-next.26) (2023-06-19)
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
### Bug Fixes
|
|
124
|
+
|
|
125
|
+
* **table:** select all checkbox state on initial render ([#3801](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3801)) ([da58f3b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/da58f3b4fc501b0cacc6acab310ea97348bbbe3e))
|
|
126
|
+
* **tablecellrenderer:** add min width for truncation ([#3799](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3799)) ([c9c3c14](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/c9c3c14aee1af0938b6ea3826fbb8aa962a62125))
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
### Features
|
|
130
|
+
|
|
131
|
+
* **SuiteHeader:** add support for on click callback for application name ([#3795](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3795)) ([a6ddae2](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/a6ddae219c604f773aa56049cd77e0b4ead32042))
|
|
132
|
+
* **SuiteHeader:** add unique id to action items ([#3796](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3796)) ([48ffc2c](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/48ffc2cf42fbac8b2155e7efd3b0f6891b89bb38))
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
# [2.153.0-next.25](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.24...v2.153.0-next.25) (2023-06-19)
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
### Bug Fixes
|
|
142
|
+
|
|
143
|
+
* **datetimeinput:** accessibility violation in date time input ([#3802](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3802)) ([59caafd](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/59caafdc912bdae4d443732216b513652b2bc88d)), closes [#3800](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3800)
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
# [2.153.0-next.24](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.23...v2.153.0-next.24) (2023-06-14)
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
### Bug Fixes
|
|
153
|
+
|
|
154
|
+
* **table:** remove unnecessary space ([#3797](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3797)) ([eee549a](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/eee549a22550281868aa74a954a051473c3ff016))
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
# [2.153.0-next.23](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.22...v2.153.0-next.23) (2023-06-08)
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
### Features
|
|
164
|
+
|
|
165
|
+
* **repo:** allow node 18 for consumers ([#3792](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3792)) ([a4701a1](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/a4701a15a2aeeaff886e4873612285a8f9b80b0c))
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
# [2.153.0-next.22](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.21...v2.153.0-next.22) (2023-05-30)
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
### Bug Fixes
|
|
175
|
+
|
|
176
|
+
* **suiteheader:** app switcher icon title ([#3788](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3788)) ([a602f3c](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/a602f3cceb2441778caefb00b1261a218a17c84c))
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
# [2.153.0-next.21](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.20...v2.153.0-next.21) (2023-05-25)
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
### Bug Fixes
|
|
186
|
+
|
|
187
|
+
* adding record false flag ([3c9123b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/3c9123b2384ccc7ba0b547ecce984551bb574628))
|
|
188
|
+
* allowing description outside tooltip when content is provided ([c1ed461](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/c1ed461fcee35d87357d5f2d2fb8738d7fe39216))
|
|
189
|
+
* removing record flag ([1b52776](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/1b527767712d01377c3ce9d10328b0f16a120fa9))
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
### Features
|
|
193
|
+
|
|
194
|
+
* added desc tooltip to current breadcrumb item for condensed header ([870ac5b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/870ac5bd4f2e2a34d6c3fab9f2c2b2ffcf55f696))
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
# [2.153.0-next.20](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.19...v2.153.0-next.20) (2023-05-24)
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
### Bug Fixes
|
|
204
|
+
|
|
205
|
+
* **datetimepickerv2:** auto position inf loop ([#3786](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3786)) ([44a27c2](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/44a27c2115afa7c92a761158085d8cbab0266bcf))
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
# [2.153.0-next.19](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.18...v2.153.0-next.19) (2023-05-18)
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
### Bug Fixes
|
|
215
|
+
|
|
216
|
+
* **table:** add column for DnD in the filter/manage columns headers ([#3782](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3782)) ([a46f2a4](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/a46f2a419172c56fd60302b7372cdea91f3c0414))
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
# [2.153.0-next.18](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.17...v2.153.0-next.18) (2023-05-17)
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
### Features
|
|
226
|
+
|
|
227
|
+
* **table:** update batch cancel button label ([#3780](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3780)) ([b68c672](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/b68c6722fbbf763f724fbd3deb6b6893f1a143e6)), closes [#3737](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3737)
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
# [2.153.0-next.17](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.16...v2.153.0-next.17) (2023-05-04)
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
### Bug Fixes
|
|
237
|
+
|
|
238
|
+
* **datetimepickerv2:** update placeholder text ([#3778](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3778)) ([48bfe9f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/48bfe9fb7462d97dc520e02add5b3f02ebda37a6))
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
# [2.153.0-next.16](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.15...v2.153.0-next.16) (2023-04-27)
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
### Bug Fixes
|
|
248
|
+
|
|
249
|
+
* **table:** scrollbar shows when drag and drop starts ([b150715](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/b1507150a85bc32ef141220247b6e1dfbb62e843))
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
# [2.153.0-next.15](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.14...v2.153.0-next.15) (2023-04-27)
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
### Bug Fixes
|
|
259
|
+
|
|
260
|
+
* **datetimepickerv2:** fix typos ([4b95c0d](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/4b95c0d236772b2182ff7a61453341aabc03bad5))
|
|
261
|
+
* **datetimepickerv2:** make sure changes only apply to single select ([33fb495](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/33fb495cf364ff3e4d76f01f040b168d9078dd4e))
|
|
262
|
+
* **datetimepickerv2:** new error message ([46113cf](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/46113cfe9e07ff56e6c2c9ed620b57be050b92cc))
|
|
263
|
+
* **datetimepickerv2:** update snashots ([1b9fd80](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/1b9fd80e2383b5fd80625d739a06e545db7ba3f3))
|
|
264
|
+
* **datetimepickerv2:** update tests ([80da413](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/80da413c572ccc8c122aa31e4f3d59cb9984deb6))
|
|
265
|
+
* **datetimepickerv2:** update tests ([5ff592f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/5ff592fc48178d1760171cbf8fcaca123cf866e0))
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
# [2.153.0-next.14](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.13...v2.153.0-next.14) (2023-04-27)
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
### Features
|
|
275
|
+
|
|
276
|
+
* **table:** add option to pin column ([2cf4197](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/2cf4197fb744ef4f38f2153e8144441ba798f6dc)), closes [#3636](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3636)
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
# [2.153.0-next.13](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.12...v2.153.0-next.13) (2023-04-25)
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
### Bug Fixes
|
|
286
|
+
|
|
287
|
+
* **datetimepickerv2:** make sure locale is 2 letters ([6e83d28](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/6e83d2852cc514db42ee8c940e65b4ced8433da9))
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
# [2.153.0-next.12](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.11...v2.153.0-next.12) (2023-04-19)
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
### Bug Fixes
|
|
297
|
+
|
|
298
|
+
* **headeraction:** handle click outside safari ([2e678a0](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/2e678a02ba4a17e892076bf9583cc6c5e7c061bd))
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
# [2.153.0-next.11](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.10...v2.153.0-next.11) (2023-04-19)
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
### Bug Fixes
|
|
308
|
+
|
|
309
|
+
* **breadcrumb:** add min width to item ([0039d04](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/0039d04819b3fd7fb8cc9be8728322729684bd28))
|
|
310
|
+
* **datetimepickerv2:** add onClear callback ([7e13f1d](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/7e13f1da3508e4f2c295695ca6cacee4b1c467db))
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
### Features
|
|
314
|
+
|
|
315
|
+
* **breadcrumb:** add option to disable truncation ([23b74e8](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/23b74e8a58694c9b83ccebb39a763877131316d6))
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
# [2.153.0-next.10](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.9...v2.153.0-next.10) (2023-04-18)
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
### Features
|
|
325
|
+
|
|
326
|
+
* **barchartcard:** add maximum data points input field ([31bba56](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/31bba56ea0295cbfc2d4e03765fb5a900b07c299))
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
|
|
6
332
|
# [2.153.0-next.9](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.153.0-next.8...v2.153.0-next.9) (2023-04-17)
|
|
7
333
|
|
|
8
334
|
|
|
@@ -25827,6 +25827,19 @@ html[dir=rtl] .breadcrumb--container .bx--breadcrumb-item:last-child::after {
|
|
|
25827
25827
|
margin-right: 0.5rem;
|
|
25828
25828
|
}
|
|
25829
25829
|
|
|
25830
|
+
.iot--breadcrumb-expand--first .bx--breadcrumb-item:first-of-type {
|
|
25831
|
+
flex-shrink: 0;
|
|
25832
|
+
}
|
|
25833
|
+
.iot--breadcrumb-expand--first .bx--breadcrumb-item:last-of-type {
|
|
25834
|
+
min-width: 3rem;
|
|
25835
|
+
}
|
|
25836
|
+
.iot--breadcrumb-expand--last .bx--breadcrumb-item:last-of-type {
|
|
25837
|
+
flex-shrink: 0;
|
|
25838
|
+
}
|
|
25839
|
+
.iot--breadcrumb-expand--last .bx--breadcrumb-item:first-of-type {
|
|
25840
|
+
min-width: 3rem;
|
|
25841
|
+
}
|
|
25842
|
+
|
|
25830
25843
|
.bx--toolbar {
|
|
25831
25844
|
display: flex;
|
|
25832
25845
|
flex-flow: row nowrap;
|
|
@@ -30954,6 +30967,15 @@ html[dir=rtl] .iot--date-time-picker__wrapper .iot--date-time-picker__box .iot--
|
|
|
30954
30967
|
.iot--date-time-picker__datepicker {
|
|
30955
30968
|
min-height: 20.875rem;
|
|
30956
30969
|
}
|
|
30970
|
+
.iot--date-time-picker__datepicker .iot--date-time-picker__datepicker--invalid {
|
|
30971
|
+
display: flex;
|
|
30972
|
+
align-items: center;
|
|
30973
|
+
padding: 0 calc(1rem + 0.25rem) 1rem 2rem;
|
|
30974
|
+
}
|
|
30975
|
+
.iot--date-time-picker__datepicker .iot--date-time-picker__datepicker--invalid svg {
|
|
30976
|
+
fill: #da1e28;
|
|
30977
|
+
margin-right: 0.5rem;
|
|
30978
|
+
}
|
|
30957
30979
|
|
|
30958
30980
|
html[dir=rtl] .iot--flyout-menu--content.iot--date-time-picker--menu .iot--date-time-picker__fields-wrapper .bx--form-item + .bx--form-item,
|
|
30959
30981
|
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 {
|
|
@@ -31270,11 +31292,11 @@ html[dir=rtl] .iot--flyout-menu--content.iot--date-time-picker--menu .iot--date-
|
|
|
31270
31292
|
display: none;
|
|
31271
31293
|
}
|
|
31272
31294
|
}
|
|
31273
|
-
.bx--header__menu-title[
|
|
31295
|
+
.bx--header__menu-title[data-testid=menuitem][aria-expanded=true] + .bx--header__menu {
|
|
31274
31296
|
left: auto;
|
|
31275
31297
|
right: 0;
|
|
31276
31298
|
}
|
|
31277
|
-
[dir=rtl] .bx--header__menu-title[
|
|
31299
|
+
[dir=rtl] .bx--header__menu-title[data-testid=menuitem][aria-expanded=true] + .bx--header__menu {
|
|
31278
31300
|
left: 0;
|
|
31279
31301
|
right: auto;
|
|
31280
31302
|
}
|
|
@@ -31375,7 +31397,7 @@ html[dir=rtl] .iot--flyout-menu--content.iot--date-time-picker--menu .iot--date-
|
|
|
31375
31397
|
border-color: #ffffff;
|
|
31376
31398
|
box-shadow: none;
|
|
31377
31399
|
}
|
|
31378
|
-
.bx--header-action-btn .bx--header__menu-item[
|
|
31400
|
+
.bx--header-action-btn .bx--header__menu-item[data-testid=menuitem] {
|
|
31379
31401
|
height: 100%;
|
|
31380
31402
|
justify-content: center;
|
|
31381
31403
|
padding: 0;
|
|
@@ -31388,7 +31410,7 @@ html[dir=rtl] .iot--flyout-menu--content.iot--date-time-picker--menu .iot--date-
|
|
|
31388
31410
|
display: flex;
|
|
31389
31411
|
}
|
|
31390
31412
|
|
|
31391
|
-
.bx--header__menu .bx--header__menu-item[
|
|
31413
|
+
.bx--header__menu .bx--header__menu-item[data-testid=menuitem] {
|
|
31392
31414
|
display: flex;
|
|
31393
31415
|
align-items: center;
|
|
31394
31416
|
color: #c6c6c6;
|
|
@@ -31408,7 +31430,7 @@ html[dir=rtl] .iot--flyout-menu--content.iot--date-time-picker--menu .iot--date-
|
|
|
31408
31430
|
padding: 0;
|
|
31409
31431
|
width: 100%;
|
|
31410
31432
|
}
|
|
31411
|
-
.bx--header__menu .bx--header__menu-item[
|
|
31433
|
+
.bx--header__menu .bx--header__menu-item[data-testid=menuitem]:focus {
|
|
31412
31434
|
border-color: #ffffff;
|
|
31413
31435
|
}
|
|
31414
31436
|
|
|
@@ -32674,7 +32696,8 @@ html[dir=rtl] .iot--list-builder__reset-button .bx--btn__icon {
|
|
|
32674
32696
|
position: relative;
|
|
32675
32697
|
}
|
|
32676
32698
|
.iot--time-picker--24h {
|
|
32677
|
-
width:
|
|
32699
|
+
max-width: 16.125rem;
|
|
32700
|
+
width: 100%;
|
|
32678
32701
|
}
|
|
32679
32702
|
.iot--time-picker input {
|
|
32680
32703
|
font-family: "IBM Plex Mono", "Menlo", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", Courier, monospace;
|
|
@@ -34218,6 +34241,9 @@ html[dir=rtl] .iot--menu-button__menu .bx--menu-option__info {
|
|
|
34218
34241
|
transition: opacity 70ms linear, transform 70ms linear, -webkit-transform 70ms linear;
|
|
34219
34242
|
margin-left: 0;
|
|
34220
34243
|
}
|
|
34244
|
+
.page-title-bar-breadcrumb .page-title-bar-breadcrumb-current .bx--tooltip__label {
|
|
34245
|
+
padding-right: 1px;
|
|
34246
|
+
}
|
|
34221
34247
|
.page-title-bar-breadcrumb .page-title-bar-breadcrumb-current::after {
|
|
34222
34248
|
display: none;
|
|
34223
34249
|
}
|
|
@@ -36559,7 +36585,6 @@ html[dir=rtl] .iot--pagination {
|
|
|
36559
36585
|
}
|
|
36560
36586
|
|
|
36561
36587
|
.iot--table-drag-handle {
|
|
36562
|
-
height: 2rem;
|
|
36563
36588
|
padding-inline: 1rem;
|
|
36564
36589
|
display: grid;
|
|
36565
36590
|
align-items: center;
|
|
@@ -36580,6 +36605,9 @@ html[dir=rtl] .iot--pagination {
|
|
|
36580
36605
|
|
|
36581
36606
|
.iot--table-drop-row-overlay {
|
|
36582
36607
|
position: absolute;
|
|
36608
|
+
display: none;
|
|
36609
|
+
top: 0;
|
|
36610
|
+
left: 0;
|
|
36583
36611
|
border: dashed 2px #0f62fe;
|
|
36584
36612
|
pointer-events: none;
|
|
36585
36613
|
}
|
|
@@ -37589,6 +37617,7 @@ html[dir=rtl] td.iot-table-foot--value__sortable {
|
|
|
37589
37617
|
line-height: 1.28572;
|
|
37590
37618
|
letter-spacing: 0.16px;
|
|
37591
37619
|
display: grid;
|
|
37620
|
+
min-width: 2.5rem;
|
|
37592
37621
|
}
|
|
37593
37622
|
.bx--tooltip__trigger.bx--tooltip--a11y.iot--table__cell-tooltip span {
|
|
37594
37623
|
overflow: hidden;
|
|
@@ -38019,6 +38048,152 @@ button.bx--btn.iot--tooltip-svg-wrapper.bx--btn--ghost.iot--table-toolbar__advan
|
|
|
38019
38048
|
font-weight: bold;
|
|
38020
38049
|
}
|
|
38021
38050
|
|
|
38051
|
+
.iot--pin-first-col {
|
|
38052
|
+
/*
|
|
38053
|
+
* Table with row selection
|
|
38054
|
+
*/
|
|
38055
|
+
/*
|
|
38056
|
+
* Table with nested rows
|
|
38057
|
+
*/
|
|
38058
|
+
/*
|
|
38059
|
+
* Table with nesting and selection
|
|
38060
|
+
*/
|
|
38061
|
+
}
|
|
38062
|
+
.iot--pin-first-col td:nth-of-type(1),
|
|
38063
|
+
.iot--pin-first-col tr:not(.iot--table-header__group-row) th:nth-of-type(1) {
|
|
38064
|
+
z-index: 3;
|
|
38065
|
+
left: 0;
|
|
38066
|
+
position: -webkit-sticky;
|
|
38067
|
+
position: sticky;
|
|
38068
|
+
overflow: hidden;
|
|
38069
|
+
-webkit-filter: drop-shadow(1px 0 0 #c6c6c6);
|
|
38070
|
+
filter: drop-shadow(1px 0 0 #c6c6c6);
|
|
38071
|
+
}
|
|
38072
|
+
[dir=rtl] .iot--pin-first-col td:nth-of-type(1),
|
|
38073
|
+
[dir=rtl] .iot--pin-first-col tr:not(.iot--table-header__group-row) th:nth-of-type(1) {
|
|
38074
|
+
left: unset;
|
|
38075
|
+
right: 0;
|
|
38076
|
+
}
|
|
38077
|
+
[dir=rtl] .iot--pin-first-col td:nth-of-type(1),
|
|
38078
|
+
[dir=rtl] .iot--pin-first-col tr:not(.iot--table-header__group-row) th:nth-of-type(1) {
|
|
38079
|
+
-webkit-filter: drop-shadow(-1px 0 0 #c6c6c6);
|
|
38080
|
+
filter: drop-shadow(-1px 0 0 #c6c6c6);
|
|
38081
|
+
}
|
|
38082
|
+
.iot--pin-first-col--select td:nth-of-type(2),
|
|
38083
|
+
.iot--pin-first-col--select tr:not(.iot--table-header__group-row) th:nth-of-type(2) {
|
|
38084
|
+
z-index: 1;
|
|
38085
|
+
left: 3.25rem;
|
|
38086
|
+
position: -webkit-sticky;
|
|
38087
|
+
position: sticky;
|
|
38088
|
+
overflow: hidden;
|
|
38089
|
+
-webkit-filter: drop-shadow(1px 0 0 #c6c6c6);
|
|
38090
|
+
filter: drop-shadow(1px 0 0 #c6c6c6);
|
|
38091
|
+
}
|
|
38092
|
+
[dir=rtl] .iot--pin-first-col--select td:nth-of-type(2),
|
|
38093
|
+
[dir=rtl] .iot--pin-first-col--select tr:not(.iot--table-header__group-row) th:nth-of-type(2) {
|
|
38094
|
+
left: unset;
|
|
38095
|
+
right: 3.25rem;
|
|
38096
|
+
}
|
|
38097
|
+
[dir=rtl] .iot--pin-first-col--select td:nth-of-type(2),
|
|
38098
|
+
[dir=rtl] .iot--pin-first-col--select tr:not(.iot--table-header__group-row) th:nth-of-type(2) {
|
|
38099
|
+
-webkit-filter: drop-shadow(-1px 0 0 #c6c6c6);
|
|
38100
|
+
filter: drop-shadow(-1px 0 0 #c6c6c6);
|
|
38101
|
+
}
|
|
38102
|
+
.iot--pin-first-col--select td:nth-of-type(1),
|
|
38103
|
+
.iot--pin-first-col--select tr:not(.iot--table-header__group-row) th:nth-of-type(1) {
|
|
38104
|
+
-webkit-filter: unset !important;
|
|
38105
|
+
filter: unset !important;
|
|
38106
|
+
overflow: unset;
|
|
38107
|
+
}
|
|
38108
|
+
.iot--pin-first-col--expand td:nth-of-type(2),
|
|
38109
|
+
.iot--pin-first-col--expand tr:not(.iot--table-header__group-row) th:nth-of-type(2) {
|
|
38110
|
+
z-index: 2;
|
|
38111
|
+
left: 2.5rem;
|
|
38112
|
+
position: -webkit-sticky;
|
|
38113
|
+
position: sticky;
|
|
38114
|
+
overflow: hidden;
|
|
38115
|
+
-webkit-filter: drop-shadow(1px 0 0 #c6c6c6);
|
|
38116
|
+
filter: drop-shadow(1px 0 0 #c6c6c6);
|
|
38117
|
+
}
|
|
38118
|
+
[dir=rtl] .iot--pin-first-col--expand td:nth-of-type(2),
|
|
38119
|
+
[dir=rtl] .iot--pin-first-col--expand tr:not(.iot--table-header__group-row) th:nth-of-type(2) {
|
|
38120
|
+
left: unset;
|
|
38121
|
+
right: 2.5rem;
|
|
38122
|
+
}
|
|
38123
|
+
[dir=rtl] .iot--pin-first-col--expand td:nth-of-type(2),
|
|
38124
|
+
[dir=rtl] .iot--pin-first-col--expand tr:not(.iot--table-header__group-row) th:nth-of-type(2) {
|
|
38125
|
+
-webkit-filter: drop-shadow(-1px 0 0 #c6c6c6);
|
|
38126
|
+
filter: drop-shadow(-1px 0 0 #c6c6c6);
|
|
38127
|
+
}
|
|
38128
|
+
.iot--pin-first-col--expand td:nth-of-type(1),
|
|
38129
|
+
.iot--pin-first-col--expand tr:not(.iot--table-header__group-row) th:nth-of-type(1) {
|
|
38130
|
+
-webkit-filter: unset !important;
|
|
38131
|
+
filter: unset !important;
|
|
38132
|
+
overflow: unset;
|
|
38133
|
+
}
|
|
38134
|
+
.iot--pin-first-col--expand .iot--expandable-tablerow--expanded td:nth-of-type(1),
|
|
38135
|
+
.iot--pin-first-col--expand .iot--expandable-tablerow--indented td:nth-of-type(1) {
|
|
38136
|
+
left: var(--row-nesting-offset);
|
|
38137
|
+
}
|
|
38138
|
+
.iot--pin-first-col--select.iot--pin-first-col--expand td:nth-of-type(3),
|
|
38139
|
+
.iot--pin-first-col--select.iot--pin-first-col--expand tr:not(.iot--table-header__group-row) th:nth-of-type(3) {
|
|
38140
|
+
z-index: 1;
|
|
38141
|
+
left: 5.75rem;
|
|
38142
|
+
position: -webkit-sticky;
|
|
38143
|
+
position: sticky;
|
|
38144
|
+
overflow: hidden;
|
|
38145
|
+
-webkit-filter: drop-shadow(1px 0 0 #c6c6c6);
|
|
38146
|
+
filter: drop-shadow(1px 0 0 #c6c6c6);
|
|
38147
|
+
}
|
|
38148
|
+
[dir=rtl] .iot--pin-first-col--select.iot--pin-first-col--expand td:nth-of-type(3),
|
|
38149
|
+
[dir=rtl] .iot--pin-first-col--select.iot--pin-first-col--expand tr:not(.iot--table-header__group-row) th:nth-of-type(3) {
|
|
38150
|
+
left: unset;
|
|
38151
|
+
right: 5.75rem;
|
|
38152
|
+
}
|
|
38153
|
+
[dir=rtl] .iot--pin-first-col--select.iot--pin-first-col--expand td:nth-of-type(3),
|
|
38154
|
+
[dir=rtl] .iot--pin-first-col--select.iot--pin-first-col--expand tr:not(.iot--table-header__group-row) th:nth-of-type(3) {
|
|
38155
|
+
-webkit-filter: drop-shadow(-1px 0 0 #c6c6c6);
|
|
38156
|
+
filter: drop-shadow(-1px 0 0 #c6c6c6);
|
|
38157
|
+
}
|
|
38158
|
+
.iot--pin-first-col--select.iot--pin-first-col--expand td:nth-of-type(1),
|
|
38159
|
+
.iot--pin-first-col--select.iot--pin-first-col--expand tr:not(.iot--table-header__group-row) th:nth-of-type(1) {
|
|
38160
|
+
-webkit-filter: unset !important;
|
|
38161
|
+
filter: unset !important;
|
|
38162
|
+
overflow: unset;
|
|
38163
|
+
}
|
|
38164
|
+
.iot--pin-first-col--select.iot--pin-first-col--expand td:nth-of-type(2),
|
|
38165
|
+
.iot--pin-first-col--select.iot--pin-first-col--expand tr:not(.iot--table-header__group-row) th:nth-of-type(2) {
|
|
38166
|
+
-webkit-filter: unset !important;
|
|
38167
|
+
filter: unset !important;
|
|
38168
|
+
overflow: unset;
|
|
38169
|
+
}
|
|
38170
|
+
|
|
38171
|
+
.iot--pin-last-col td:last-of-type,
|
|
38172
|
+
.iot--pin-last-col th:last-of-type {
|
|
38173
|
+
position: -webkit-sticky;
|
|
38174
|
+
position: sticky;
|
|
38175
|
+
z-index: 1;
|
|
38176
|
+
right: 0;
|
|
38177
|
+
-webkit-filter: drop-shadow(-1px 0 0 #c6c6c6);
|
|
38178
|
+
filter: drop-shadow(-1px 0 0 #c6c6c6);
|
|
38179
|
+
min-width: 3.5rem;
|
|
38180
|
+
width: 3.5rem;
|
|
38181
|
+
}
|
|
38182
|
+
[dir=rtl] .iot--pin-last-col td:last-of-type,
|
|
38183
|
+
[dir=rtl] .iot--pin-last-col th:last-of-type {
|
|
38184
|
+
right: unset;
|
|
38185
|
+
left: 0;
|
|
38186
|
+
-webkit-filter: drop-shadow(1px 0 0 #c6c6c6);
|
|
38187
|
+
filter: drop-shadow(1px 0 0 #c6c6c6);
|
|
38188
|
+
}
|
|
38189
|
+
.iot--pin-last-col.iot--table-head--with-column-groups .iot--table-header__column-row th:last-of-type {
|
|
38190
|
+
position: -webkit-sticky;
|
|
38191
|
+
position: sticky;
|
|
38192
|
+
}
|
|
38193
|
+
.iot--pin-last-col th.iot--filter-header-row--header.iot--tableheader-filter .iot--filter-header-icon {
|
|
38194
|
+
z-index: 2;
|
|
38195
|
+
}
|
|
38196
|
+
|
|
38022
38197
|
/* stylelint-disable-next-line */
|
|
38023
38198
|
ai-table .table-head-cell-text,
|
|
38024
38199
|
ai-table .table-head-cell-icons {
|