carbon-addons-iot-react 2.147.2 → 2.148.0-next.10
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 +154 -9
- package/css/carbon-addons-iot-react.css +302 -10
- package/css/carbon-addons-iot-react.css.map +1 -1
- package/es/components/Card/Card.js +119 -113
- package/es/components/CardEditor/CardEditForm/CardEditFormItems/DataSeriesFormItems/DataSeriesFormSettings.js +42 -4
- package/es/components/DashboardEditor/DashboardEditor.js +6 -1
- package/es/components/DateTimePicker/DateTimePicker.js +44 -5
- package/es/components/HotspotEditorModal/HotspotEditorModal.js +34 -30
- package/es/components/IconDropdown/dropdownHooks.js +0 -1
- package/es/components/ImageCard/Hotspot.js +54 -52
- package/es/components/List/List.js +5 -3
- package/es/components/List/ListContent/ListContent.js +2 -2
- package/es/components/List/ListItem/ListItem.js +19 -3
- package/es/components/List/ListPropTypes.js +4 -1
- package/es/components/List/VirtualListContent/VirtualListContent.js +23 -13
- package/es/components/MenuButton/MenuButton.js +110 -8
- package/es/components/MenuButton/SingleMenuButton.js +54 -4
- package/es/components/MenuButton/SplitMenuButton.js +54 -4
- package/es/components/MenuButton/utils.js +80 -23
- package/es/components/PageTitleBar/PageTitleBar.js +3 -1
- package/es/components/ProgressBar/ProgressBar.js +265 -0
- package/es/components/ProgressBar/thresholdPropTypes.js +26 -0
- package/es/components/SideNav/SideNav.js +0 -5
- package/es/components/Table/EmptyTable/EmptyTable.js +1 -4
- package/es/components/Table/ErrorTable/ErrorTable.js +1 -4
- package/es/components/Table/Pagination.js +98 -14
- package/es/components/Table/Table.js +3 -2
- package/es/components/Table/TableBody/RowActionsCell/RowActionsCell.js +1 -2
- package/es/components/Table/TableBody/TableBody.js +43 -93
- package/es/components/Table/TableBody/TableBodyLoadMoreRow/TableBodyLoadMoreRow.js +1 -3
- package/es/components/Table/TableBody/TableBodyRow/TableBodyRow.js +3 -6
- package/es/components/Table/TableBody/TableBodyRowRenderer.js +840 -0
- package/es/components/Table/TableHead/ColumnGrouping/ColumnGrouping.js +1 -2
- package/es/components/Table/TableHead/ColumnHeaderRow/ColumnHeaderRow.js +1 -3
- package/es/components/Table/TableHead/FilterHeaderRow/FilterHeaderRow.js +1 -3
- package/es/components/Table/TableHead/TableHead.js +2 -5
- package/es/components/Table/TablePropTypes.js +4 -3
- package/es/components/Table/TableSkeletonWithHeaders/TableSkeletonWithHeaders.js +1 -4
- package/es/components/Table/TableToolbar/TableToolbar.js +23 -20
- package/es/components/Table/TableViewDropdown/TableViewDropdown.js +39 -36
- package/es/components/Table/tableUtilities.js +1 -5
- package/es/components/TileCatalog/TileCatalog.js +1 -2
- package/es/components/TileCatalogNew/TileCatalogNew.js +1 -2
- package/es/components/ValueCard/Attribute.js +8 -25
- package/es/hooks/useDynamicOverflowMenuItems.js +1 -2
- package/es/hooks/useMatchingThreshold.js +40 -0
- package/es/hooks/useMerged.js +18 -0
- package/es/hooks/usePrevious.js +3 -2
- package/es/hooks/useSizeObserver.js +46 -0
- package/es/hooks/useVisibilityObserver.js +156 -0
- package/es/index.js +2 -4
- package/es/utils/componentUtilityFunctions.js +3 -0
- package/lib/components/Card/Card.js +119 -115
- package/lib/components/CardEditor/CardEditForm/CardEditFormItems/DataSeriesFormItems/DataSeriesFormSettings.js +42 -4
- package/lib/components/DashboardEditor/DashboardEditor.js +6 -1
- package/lib/components/DateTimePicker/DateTimePicker.js +44 -5
- package/lib/components/HotspotEditorModal/HotspotEditorModal.js +35 -31
- package/lib/components/IconDropdown/dropdownHooks.js +0 -1
- package/lib/components/ImageCard/Hotspot.js +55 -53
- package/lib/components/List/List.js +5 -3
- package/lib/components/List/ListContent/ListContent.js +2 -2
- package/lib/components/List/ListItem/ListItem.js +20 -3
- package/lib/components/List/ListPropTypes.js +4 -1
- package/lib/components/List/VirtualListContent/VirtualListContent.js +23 -13
- package/lib/components/MenuButton/MenuButton.js +109 -7
- package/lib/components/MenuButton/SingleMenuButton.js +54 -4
- package/lib/components/MenuButton/SplitMenuButton.js +54 -4
- package/lib/components/MenuButton/utils.js +80 -22
- package/lib/components/PageTitleBar/PageTitleBar.js +3 -1
- package/lib/components/ProgressBar/ProgressBar.js +274 -0
- package/lib/components/ProgressBar/thresholdPropTypes.js +37 -0
- package/lib/components/SideNav/SideNav.js +0 -5
- package/lib/components/Table/EmptyTable/EmptyTable.js +3 -6
- package/lib/components/Table/ErrorTable/ErrorTable.js +3 -6
- package/lib/components/Table/Pagination.js +99 -15
- package/lib/components/Table/Table.js +3 -2
- package/lib/components/Table/TableBody/RowActionsCell/RowActionsCell.js +2 -3
- package/lib/components/Table/TableBody/TableBody.js +41 -92
- package/lib/components/Table/TableBody/TableBodyLoadMoreRow/TableBodyLoadMoreRow.js +2 -4
- package/lib/components/Table/TableBody/TableBodyRow/TableBodyRow.js +12 -15
- package/lib/components/Table/TableBody/TableBodyRowRenderer.js +850 -0
- package/lib/components/Table/TableHead/ColumnGrouping/ColumnGrouping.js +1 -2
- package/lib/components/Table/TableHead/ColumnHeaderRow/ColumnHeaderRow.js +4 -6
- package/lib/components/Table/TableHead/FilterHeaderRow/FilterHeaderRow.js +6 -8
- package/lib/components/Table/TableHead/TableHead.js +3 -6
- package/lib/components/Table/TablePropTypes.js +4 -2
- package/lib/components/Table/TableSkeletonWithHeaders/TableSkeletonWithHeaders.js +11 -14
- package/lib/components/Table/TableToolbar/TableToolbar.js +26 -23
- package/lib/components/Table/TableViewDropdown/TableViewDropdown.js +39 -37
- package/lib/components/Table/tableUtilities.js +1 -5
- package/lib/components/TileCatalog/TileCatalog.js +1 -2
- package/lib/components/TileCatalogNew/TileCatalogNew.js +1 -2
- package/lib/components/ValueCard/Attribute.js +8 -25
- package/lib/css/carbon-addons-iot-react.css +302 -10
- package/lib/css/carbon-addons-iot-react.css.map +1 -1
- package/lib/hooks/useDynamicOverflowMenuItems.js +1 -2
- package/lib/hooks/useMatchingThreshold.js +42 -0
- package/lib/hooks/useMerged.js +20 -0
- package/lib/hooks/usePrevious.js +3 -2
- package/lib/hooks/useSizeObserver.js +53 -0
- package/lib/hooks/useVisibilityObserver.js +165 -0
- package/lib/index.js +4 -6
- package/lib/scss/components/Button/_button.scss +6 -1
- package/lib/scss/components/MenuButton/_menu-button-shadow-blocker.scss +192 -0
- package/lib/scss/components/MenuButton/_menu-button.scss +25 -4
- package/lib/scss/components/PageTitleBar/_page-title-bar.scss +5 -0
- package/lib/scss/components/ProgressBar/_progress-bar.scss +52 -0
- package/lib/scss/components/Table/TableToolbar/_table-toolbar.scss +4 -2
- package/lib/scss/components/Table/_table.scss +0 -5
- package/lib/scss/styles.scss +1 -0
- package/lib/utils/componentUtilityFunctions.js +3 -0
- package/package.json +4 -6
- package/scss/components/Button/_button.scss +6 -1
- package/scss/components/MenuButton/_menu-button-shadow-blocker.scss +192 -0
- package/scss/components/MenuButton/_menu-button.scss +25 -4
- package/scss/components/PageTitleBar/_page-title-bar.scss +5 -0
- package/scss/components/ProgressBar/_progress-bar.scss +52 -0
- package/scss/components/Table/TableToolbar/_table-toolbar.scss +4 -2
- package/scss/components/Table/_table.scss +0 -5
- package/scss/styles.scss +1 -0
- package/umd/carbon-addons-iot-react.js +6182 -7919
package/CHANGELOG.md
CHANGED
|
@@ -3,28 +3,173 @@
|
|
|
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
|
-
|
|
6
|
+
# [2.148.0-next.10](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.148.0-next.9...v2.148.0-next.10) (2022-01-28)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
|
10
10
|
|
|
11
|
-
* **
|
|
11
|
+
* **table:** added type to the JSX file ([5fcedc5](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/5fcedc5484f8a576aae51f6c9261fca7eef21912))
|
|
12
|
+
* **table:** filter tag has wrong color on hover ([de46d6b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/de46d6b401354b18a3415760f305cbd073542994))
|
|
13
|
+
* **table:** fixed text color ([44138ff](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/44138ff2080002e94f02faaf05e4110f8ed55a01))
|
|
14
|
+
* **table:** fixed visual regressions tests ([cec7c13](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/cec7c13ee942ae6f4f7a7443a0fc8777cfbe2b7e))
|
|
15
|
+
* **table:** merged with next ([e185499](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/e185499fb4c787675e6cd4c5d6aefb7c1bbd1cbb))
|
|
16
|
+
* **table:** merged with next ([1f45454](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/1f4545442e15601d3b5b53171db281ac91a7f3d3))
|
|
17
|
+
* **table:** reverted style changes ([c12a038](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/c12a0386e417b593f04515869514fe9a4997a255))
|
|
12
18
|
|
|
13
19
|
|
|
14
20
|
|
|
15
21
|
|
|
16
22
|
|
|
17
|
-
|
|
23
|
+
# [2.148.0-next.9](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.148.0-next.8...v2.148.0-next.9) (2022-01-27)
|
|
18
24
|
|
|
19
25
|
|
|
20
26
|
### Bug Fixes
|
|
21
27
|
|
|
22
|
-
* **
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
* **
|
|
28
|
+
* **progress-bar:** hide value label and icon when hideLabel:true ([6421299](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/6421299f7f830c448db10528942e9181093f903d))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
* **progress-bar:** initial addition of new progress bar component ([d35d124](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/d35d124ba84b885c691b35f2fde7273f99d7ed1a))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
# [2.148.0-next.8](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.148.0-next.7...v2.148.0-next.8) (2022-01-27)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
### Bug Fixes
|
|
43
|
+
|
|
44
|
+
* **table:** add skeleton column for nesting rows when lazy loading ([992a368](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/992a3684c3d3c6f9b969445da309ded370b76264))
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
### Reverts
|
|
48
|
+
|
|
49
|
+
* Revert "chore(table): pr feedback for skeleton rows for lazy loading" ([f0efc54](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/f0efc540eef63d26b0a0ffb998bdb80710c65e9b))
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
# [2.148.0-next.7](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.148.0-next.6...v2.148.0-next.7) (2022-01-26)
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
### Bug Fixes
|
|
59
|
+
|
|
60
|
+
* **page-title-bar:** fix accessibility error for `span` in `ol` ([f3f0e3e](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/f3f0e3ee61552f89d516b2105bc801bbeecef6a0))
|
|
61
|
+
* **page-title-bar:** update styles to current breadcrumb ([4cfd954](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/4cfd95413e1451e86de8a4dc1fc25fffc8316438))
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
# [2.148.0-next.6](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.148.0-next.5...v2.148.0-next.6) (2022-01-21)
|
|
68
|
+
|
|
69
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
# [2.148.0-next.5](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.148.0-next.4...v2.148.0-next.5) (2022-01-20)
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
### Bug Fixes
|
|
79
|
+
|
|
80
|
+
* **use-visibility-loader:** remove useCallback ([b8b0c84](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/b8b0c84468bdd4242a349f2930555379688cc2fc))
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
### Features
|
|
84
|
+
|
|
85
|
+
* add initial height/width to useSizeObserver hook, optional ref ([9aca41f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/9aca41f3abd54bcf954f1072726a9ca80db5fbad))
|
|
86
|
+
* rework useVisibilityObserver ([6f193fd](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/6f193fd39d9052753522f8d76fc84c985af5b330))
|
|
87
|
+
* **list:** add infinite loader experimental example to List ([737cde3](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/737cde3b4b220d057c8d3f341450defb93016187))
|
|
88
|
+
* **repo:** remove react-sizeme and replace with custom hook ([29c6219](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/29c6219a11a5cc37775736c52ae8281911582c8c))
|
|
89
|
+
* **use-visibility-loader:** refactor and use example in list ([814b099](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/814b099aa109ebc0bac42a9a6537b6ffda78228f))
|
|
90
|
+
* remove react-sizeme from index.js ([c4aa14f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/c4aa14fbf3f606c155ca03d7794e539f8a5a78cb))
|
|
91
|
+
* remove react-visibility-sensor and replace with custom hook ([4a2c775](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/4a2c775381181d23aba8e50e71bbb7b4eef297a3))
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
# [2.148.0-next.4](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.148.0-next.3...v2.148.0-next.4) (2022-01-19)
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
### Bug Fixes
|
|
101
|
+
|
|
102
|
+
* **storybook:** fix leaking knobs ([5dd6a0f](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/5dd6a0fb9f3a695219cf3df461b1728dc8ef0fb3)), closes [#3194](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3194)
|
|
103
|
+
* **table:** incorporated review comments ([e89f411](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/e89f41150d6edb54cd21eb02172db16c2ad2e925))
|
|
104
|
+
* **table:** margin between trash icon and delete on toolbar ([c20780b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/c20780b85e36c6f7eb472006274266e41a1f04d0))
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
# [2.148.0-next.3](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.148.0-next.2...v2.148.0-next.3) (2022-01-19)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
### Bug Fixes
|
|
114
|
+
|
|
115
|
+
* **menubutton:** add support for button kinds ([8e03a25](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/8e03a255c79586fccdc37cfebd7c96fef979fb30)), closes [#3044](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3044)
|
|
116
|
+
* **menubutton:** add support for sizes ([82eda03](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/82eda0375c6237d5fe2f3234ee5eb768cb38a6d6))
|
|
117
|
+
* **menubutton:** fix rtl issues ([b353f5b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/b353f5b0e46b1ac6ce888cb4eaf1c76b24e4c104))
|
|
118
|
+
* **menubutton:** hide menu shadow covering button ([12b4b77](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/12b4b77da6b961ece5ba483dd84fd0cf116e7660))
|
|
119
|
+
* **menubutton:** only block shadow for icon only button ([99eba4e](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/99eba4ef1fb82f13253770a507300f7913d79b8b)), closes [#3044](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3044)
|
|
120
|
+
* **menubutton:** remove menu and divider padding ([981fdd7](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/981fdd70260c22c2f67fa99fcf44cdd5641adf6b)), closes [#3044](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3044)
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
# [2.148.0-next.2](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.148.0-next.1...v2.148.0-next.2) (2022-01-18)
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
### Bug Fixes
|
|
130
|
+
|
|
131
|
+
* handle both nesting and expansion when firing onRowExpanded ([b85cec9](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/b85cec903a48cf4c17a781d9623e87dacbffa20a))
|
|
132
|
+
* **table:** fix icon flip with no children ([098f038](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/098f0388b3c15632dee57361e6a18af4bfc741f2))
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
# [2.148.0-next.1](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.148.0-next.0...v2.148.0-next.1) (2022-01-14)
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
### Bug Fixes
|
|
142
|
+
|
|
143
|
+
* **feedback:** fixes from feedback ([c3e943b](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/c3e943ba588e93f7006c2134b1699c1c057b93c9))
|
|
144
|
+
* **listitem:** support secondary value obj with custom label when func ([73611f0](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/73611f0c5d1e055eed8dae5c6fde9a6b52de0406))
|
|
145
|
+
* **mdx:** fix in list.mdx extra column ([8bae147](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/8bae147fa35ece4deec67f41386a9c65e0e54e41))
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
# [2.148.0-next.0](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.1-next.0...v2.148.0-next.0) (2022-01-13)
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
### Bug Fixes
|
|
155
|
+
|
|
156
|
+
* **data-series-form-item:** clarify comment on maximumDataPoints ([dc0c835](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/dc0c83575f8382dec9de9ce5d510242913e226d0))
|
|
157
|
+
* bug causing e2e test to break with new time checks ([259f751](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/259f7510a4eef3412346ba668e72de449f0c009d))
|
|
158
|
+
* include start/end times in parsing, fix test to include them ([0dd04c7](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/0dd04c7965b8f2145cf23ba33e540fde9b63fdb4))
|
|
159
|
+
* **dataseries:** remove unnecessary check ([3f0a46c](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/3f0a46c63565bf29a681fbd960bf585e0cbbf82f))
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
### Features
|
|
163
|
+
|
|
164
|
+
* **cardeditor:** collect maximum data points ([617475c](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/617475c558b39e371aacec5038d592b6d3ff32c5))
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
## [2.147.1-next.0](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.147.0...v2.147.1-next.0) (2022-01-12)
|
|
171
|
+
|
|
172
|
+
**Note:** Version bump only for package carbon-addons-iot-react
|
|
28
173
|
|
|
29
174
|
|
|
30
175
|
|
|
@@ -29551,7 +29551,7 @@ html[dir=rtl] .bx--list-box__label .iot--icon-dropdown__item {
|
|
|
29551
29551
|
left: 1rem;
|
|
29552
29552
|
right: initial;
|
|
29553
29553
|
}
|
|
29554
|
-
[dir=rtl] .iot--btn.bx--btn--ghost:not(.bx--btn--sm.bx--btn--icon-only) {
|
|
29554
|
+
[dir=rtl] .iot--btn.bx--btn--ghost:not(.bx--btn--sm.bx--btn--icon-only):not(.iot--menu-button__trigger) {
|
|
29555
29555
|
padding-left: 1rem;
|
|
29556
29556
|
padding-right: 1rem;
|
|
29557
29557
|
}
|
|
@@ -33618,29 +33618,183 @@ html[dir=rtl] .iot--hierarchy-list-bulk-header--title {
|
|
|
33618
33618
|
height: 3rem;
|
|
33619
33619
|
}
|
|
33620
33620
|
|
|
33621
|
+
.iot--menu-button--icon-only.bx--menu--open .iot--menu__shadow-blocker {
|
|
33622
|
+
position: absolute;
|
|
33623
|
+
display: block;
|
|
33624
|
+
height: calc(0.5rem - 0.0625rem);
|
|
33625
|
+
top: calc((-0.5rem) + 0.0625rem);
|
|
33626
|
+
left: 0;
|
|
33627
|
+
width: 2rem;
|
|
33628
|
+
background-color: #ffffff;
|
|
33629
|
+
border-bottom: 0.0625rem solid #ffffff;
|
|
33630
|
+
}
|
|
33631
|
+
.iot--menu-button--icon-only.bx--menu--open .iot--menu__shadow-blocker--flip-y {
|
|
33632
|
+
left: unset;
|
|
33633
|
+
right: 0;
|
|
33634
|
+
}
|
|
33635
|
+
.iot--menu-button--icon-only.bx--menu--open .iot--menu__shadow-blocker--flip-x {
|
|
33636
|
+
left: unset;
|
|
33637
|
+
top: var(--menu-height);
|
|
33638
|
+
}
|
|
33639
|
+
html[dir=rtl] .iot--menu-button--icon-only.bx--menu--open .iot--menu__shadow-blocker:not(.iot--menu__shadow-blocker--opens-horizontally) {
|
|
33640
|
+
left: 0;
|
|
33641
|
+
}
|
|
33642
|
+
.iot--menu-button--icon-only.bx--menu--open .iot--menu__shadow-blocker--md {
|
|
33643
|
+
width: 2.5rem;
|
|
33644
|
+
}
|
|
33645
|
+
.iot--menu-button--icon-only.bx--menu--open .iot--menu__shadow-blocker--lg {
|
|
33646
|
+
width: 3rem;
|
|
33647
|
+
}
|
|
33648
|
+
.iot--menu-button--icon-only.bx--menu--open .iot--menu__shadow-blocker--opens-horizontally {
|
|
33649
|
+
top: 0;
|
|
33650
|
+
height: 2rem;
|
|
33651
|
+
width: calc(0.5rem - 0.0625rem);
|
|
33652
|
+
left: calc((calc(0.5rem - 0.0625rem)) * -1);
|
|
33653
|
+
border-bottom: none;
|
|
33654
|
+
border-right: 0.0625rem solid #ffffff;
|
|
33655
|
+
}
|
|
33656
|
+
.iot--menu-button--icon-only.bx--menu--open .iot--menu__shadow-blocker--opens-horizontally.iot--menu__shadow-blocker--flip-y {
|
|
33657
|
+
right: calc((calc(0.5rem - 0.0625rem)) * -1);
|
|
33658
|
+
left: unset;
|
|
33659
|
+
border-right: none;
|
|
33660
|
+
border-left: 0.0625rem solid #ffffff;
|
|
33661
|
+
}
|
|
33662
|
+
.iot--menu-button--icon-only.bx--menu--open .iot--menu__shadow-blocker--opens-horizontally.iot--menu__shadow-blocker--md {
|
|
33663
|
+
height: 2.5rem;
|
|
33664
|
+
width: calc(0.5rem - 0.0625rem);
|
|
33665
|
+
}
|
|
33666
|
+
.iot--menu-button--icon-only.bx--menu--open .iot--menu__shadow-blocker--opens-horizontally.iot--menu__shadow-blocker--lg {
|
|
33667
|
+
height: 3rem;
|
|
33668
|
+
width: calc(0.5rem - 0.0625rem);
|
|
33669
|
+
}
|
|
33670
|
+
.iot--menu-button--icon-only.bx--menu--open:focus .iot--menu__shadow-blocker {
|
|
33671
|
+
border-bottom: 0.0625rem solid #0f62fe;
|
|
33672
|
+
}
|
|
33673
|
+
.iot--menu-button--icon-only.bx--menu--open:focus .iot--menu__shadow-blocker--flip-x {
|
|
33674
|
+
border-bottom-color: #ffffff;
|
|
33675
|
+
border-top: 0.0625rem solid #0f62fe;
|
|
33676
|
+
}
|
|
33677
|
+
.iot--menu-button--icon-only.bx--menu--open:focus .iot--menu__shadow-blocker--opens-horizontally {
|
|
33678
|
+
border-bottom: none;
|
|
33679
|
+
border-right: 0.0625rem solid #0f62fe;
|
|
33680
|
+
}
|
|
33681
|
+
.iot--menu-button--icon-only.bx--menu--open:focus .iot--menu__shadow-blocker--opens-horizontally.iot--menu__shadow-blocker--flip-y {
|
|
33682
|
+
border-right: none;
|
|
33683
|
+
border-left: 0.0625rem solid #0f62fe;
|
|
33684
|
+
}
|
|
33685
|
+
|
|
33686
|
+
.iot--menu-button--open .bx--btn.bx--btn--icon-only.bx--btn--ghost:focus:not(:active)::after {
|
|
33687
|
+
position: absolute;
|
|
33688
|
+
display: block;
|
|
33689
|
+
height: calc(0.5rem - 0.0625rem);
|
|
33690
|
+
width: calc(3rem - (2 * 0.0625rem));
|
|
33691
|
+
top: calc(3rem - 0.5rem - 0.0625rem);
|
|
33692
|
+
content: "";
|
|
33693
|
+
left: calc(0.0625rem * (-1));
|
|
33694
|
+
background-color: transparent;
|
|
33695
|
+
z-index: 9001;
|
|
33696
|
+
border: none;
|
|
33697
|
+
border-bottom: 0.0625rem solid #0f62fe;
|
|
33698
|
+
border-left: 0.0625rem solid #0f62fe;
|
|
33699
|
+
border-right: 0.0625rem solid #0f62fe;
|
|
33700
|
+
border-radius: 0;
|
|
33701
|
+
-webkit-transform: none;
|
|
33702
|
+
transform: none;
|
|
33703
|
+
box-shadow: none;
|
|
33704
|
+
padding: 0;
|
|
33705
|
+
}
|
|
33706
|
+
.iot--menu-button--open .bx--btn.bx--btn--icon-only.bx--btn--ghost:focus:not(:active).bx--btn--md::after {
|
|
33707
|
+
width: calc(2.5rem - (2 * 0.0625rem));
|
|
33708
|
+
top: calc(2.5rem - 0.5rem - 0.0625rem);
|
|
33709
|
+
}
|
|
33710
|
+
.iot--menu-button--open .bx--btn.bx--btn--icon-only.bx--btn--ghost:focus:not(:active).bx--btn--sm::after {
|
|
33711
|
+
width: calc(2rem - (2 * 0.0625rem));
|
|
33712
|
+
top: calc(2rem - 0.5rem - 0.0625rem);
|
|
33713
|
+
}
|
|
33714
|
+
.iot--menu-button--open.iot--menu-button--flip-x .bx--btn.bx--btn--icon-only.bx--btn--ghost:focus:not(:active)::after {
|
|
33715
|
+
top: -0.0625rem;
|
|
33716
|
+
border-top: 0.0625rem solid #0f62fe;
|
|
33717
|
+
border-bottom: 0;
|
|
33718
|
+
}
|
|
33719
|
+
.iot--menu-button--open.iot--menu-button--opens-horizontally .bx--btn.bx--btn--icon-only.bx--btn--ghost:focus:not(:active)::after {
|
|
33720
|
+
-webkit-transform: rotate(-90deg);
|
|
33721
|
+
transform: rotate(-90deg);
|
|
33722
|
+
top: calc(
|
|
33723
|
+
((3rem - 0.5rem) / 2) - 0.0625rem
|
|
33724
|
+
);
|
|
33725
|
+
left: calc(
|
|
33726
|
+
((3rem - 0.5rem) / 2) - 0.0625rem
|
|
33727
|
+
);
|
|
33728
|
+
}
|
|
33729
|
+
.iot--menu-button--open.iot--menu-button--opens-horizontally .bx--btn.bx--btn--icon-only.bx--btn--ghost:focus:not(:active).bx--btn--md::after {
|
|
33730
|
+
top: calc(
|
|
33731
|
+
((2.5rem - 0.5rem) / 2) - 0.0625rem
|
|
33732
|
+
);
|
|
33733
|
+
left: calc(
|
|
33734
|
+
((2.5rem - 0.5rem) / 2) - 0.0625rem
|
|
33735
|
+
);
|
|
33736
|
+
}
|
|
33737
|
+
.iot--menu-button--open.iot--menu-button--opens-horizontally .bx--btn.bx--btn--icon-only.bx--btn--ghost:focus:not(:active).bx--btn--sm::after {
|
|
33738
|
+
top: calc(
|
|
33739
|
+
((2rem - 0.5rem) / 2) - 0.0625rem
|
|
33740
|
+
);
|
|
33741
|
+
left: calc(
|
|
33742
|
+
((2rem - 0.5rem) / 2) - 0.0625rem
|
|
33743
|
+
);
|
|
33744
|
+
}
|
|
33745
|
+
.iot--menu-button--open.iot--menu-button--opens-horizontally.iot--menu-button--flip-y .bx--btn.bx--btn--icon-only.bx--btn--ghost:focus:not(:active)::after {
|
|
33746
|
+
-webkit-transform: rotate(90deg);
|
|
33747
|
+
transform: rotate(90deg);
|
|
33748
|
+
left: calc((((3rem - 0.5rem) / 2) + 0.0625rem) * -1);
|
|
33749
|
+
}
|
|
33750
|
+
.iot--menu-button--open.iot--menu-button--opens-horizontally.iot--menu-button--flip-y .bx--btn.bx--btn--icon-only.bx--btn--ghost:focus:not(:active).bx--btn--md::after {
|
|
33751
|
+
left: calc((((2.5rem - 0.5rem) / 2) + 0.0625rem) * -1);
|
|
33752
|
+
}
|
|
33753
|
+
.iot--menu-button--open.iot--menu-button--opens-horizontally.iot--menu-button--flip-y .bx--btn.bx--btn--icon-only.bx--btn--ghost:focus:not(:active).bx--btn--sm::after {
|
|
33754
|
+
left: calc((((2rem - 0.5rem) / 2) + 0.0625rem) * -1);
|
|
33755
|
+
}
|
|
33756
|
+
|
|
33621
33757
|
.iot--menu-button .iot--menu-button__primary + .iot--menu-button__secondary {
|
|
33622
33758
|
border-left: 1px solid #ffffff;
|
|
33623
33759
|
}
|
|
33624
33760
|
.iot--menu-button .bx--btn--ghost.bx--btn--icon-only {
|
|
33625
33761
|
color: #161616;
|
|
33626
33762
|
}
|
|
33627
|
-
.iot--menu-button--open .iot--menu-button__trigger {
|
|
33763
|
+
.iot--menu-button--open .iot--menu-button__trigger.bx--btn--primary {
|
|
33628
33764
|
background-color: #002d9c;
|
|
33629
33765
|
}
|
|
33766
|
+
.iot--menu-button--open .iot--menu-button__trigger.bx--btn--secondary {
|
|
33767
|
+
background-color: #6f6f6f;
|
|
33768
|
+
}
|
|
33769
|
+
.iot--menu-button--open .iot--menu-button__trigger.bx--btn--tertiary {
|
|
33770
|
+
background-color: #002d9c;
|
|
33771
|
+
color: #ffffff;
|
|
33772
|
+
}
|
|
33773
|
+
.iot--menu-button--open .iot--menu-button__trigger.bx--btn--ghost {
|
|
33774
|
+
background-color: #c6c6c6;
|
|
33775
|
+
color: #0043ce;
|
|
33776
|
+
}
|
|
33630
33777
|
.iot--menu-button--open .bx--btn--ghost.bx--btn--icon-only {
|
|
33631
33778
|
background-color: #ffffff;
|
|
33632
33779
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
|
|
33633
33780
|
}
|
|
33634
33781
|
|
|
33782
|
+
.iot--menu-button__menu {
|
|
33783
|
+
padding: 0;
|
|
33784
|
+
}
|
|
33785
|
+
.iot--menu-button__menu .bx--menu-divider {
|
|
33786
|
+
margin: 0;
|
|
33787
|
+
}
|
|
33788
|
+
|
|
33635
33789
|
.bx--menu.bx--menu--open.bx--menu--root {
|
|
33636
33790
|
opacity: var(--iot-menu-button-menu-opacity);
|
|
33637
33791
|
}
|
|
33638
33792
|
|
|
33639
|
-
html[dir=rtl] .iot--menu-
|
|
33793
|
+
html[dir=rtl] .iot--menu-button__menu .bx--menu-option__icon {
|
|
33640
33794
|
margin-right: 0;
|
|
33641
33795
|
margin-left: 0.5rem;
|
|
33642
33796
|
}
|
|
33643
|
-
html[dir=rtl] .iot--menu-
|
|
33797
|
+
html[dir=rtl] .iot--menu-button__menu .bx--menu-option__info {
|
|
33644
33798
|
margin-left: 0;
|
|
33645
33799
|
margin-right: 1rem;
|
|
33646
33800
|
-webkit-transform: rotate(180deg);
|
|
@@ -33828,6 +33982,9 @@ html[dir=rtl] .iot--menu-button .bx--context-menu-option__info {
|
|
|
33828
33982
|
transition: opacity 70ms linear, transform 70ms linear, -webkit-transform 70ms linear;
|
|
33829
33983
|
margin-left: 0;
|
|
33830
33984
|
}
|
|
33985
|
+
.page-title-bar-breadcrumb .page-title-bar-breadcrumb-current::after {
|
|
33986
|
+
display: none;
|
|
33987
|
+
}
|
|
33831
33988
|
[dir=rtl] .page-title-bar-breadcrumb .page-title-bar-breadcrumb-current {
|
|
33832
33989
|
text-align: right;
|
|
33833
33990
|
margin-right: 0.5rem;
|
|
@@ -34130,6 +34287,143 @@ html[dir=rtl] .iot--menu-button .bx--context-menu-option__info {
|
|
|
34130
34287
|
padding-bottom: 0.125rem;
|
|
34131
34288
|
}
|
|
34132
34289
|
|
|
34290
|
+
/* stylelint-disable-line no-invalid-position-at-import-rule */
|
|
34291
|
+
/* stylelint-disable-line no-invalid-position-at-import-rule */
|
|
34292
|
+
/* stylelint-disable-line no-invalid-position-at-import-rule */
|
|
34293
|
+
/* stylelint-disable-line no-invalid-position-at-import-rule */
|
|
34294
|
+
/* stylelint-disable-line no-invalid-position-at-import-rule */
|
|
34295
|
+
/* stylelint-disable-line no-invalid-position-at-import-rule */
|
|
34296
|
+
/* stylelint-disable-line no-invalid-position-at-import-rule */
|
|
34297
|
+
.bx--progress-bar__label {
|
|
34298
|
+
font-size: 0.875rem;
|
|
34299
|
+
font-weight: 400;
|
|
34300
|
+
line-height: 1.28572;
|
|
34301
|
+
letter-spacing: 0.16px;
|
|
34302
|
+
display: block;
|
|
34303
|
+
margin-bottom: 0.5rem;
|
|
34304
|
+
color: #161616;
|
|
34305
|
+
}
|
|
34306
|
+
|
|
34307
|
+
.bx--progress-bar__track {
|
|
34308
|
+
position: relative;
|
|
34309
|
+
width: 100%;
|
|
34310
|
+
height: 0.5rem;
|
|
34311
|
+
background-color: #ffffff;
|
|
34312
|
+
}
|
|
34313
|
+
|
|
34314
|
+
.bx--progress-bar__bar {
|
|
34315
|
+
display: block;
|
|
34316
|
+
width: 100%;
|
|
34317
|
+
height: 100%;
|
|
34318
|
+
background-color: #0f62fe;
|
|
34319
|
+
-webkit-transform: scaleX(0);
|
|
34320
|
+
transform: scaleX(0);
|
|
34321
|
+
-webkit-transform-origin: 0 50%;
|
|
34322
|
+
transform-origin: 0 50%;
|
|
34323
|
+
transition: -webkit-transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
34324
|
+
transition: transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
34325
|
+
transition: transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9), -webkit-transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
34326
|
+
}
|
|
34327
|
+
|
|
34328
|
+
.bx--progress-bar--indeterminate .bx--progress-bar__track::after {
|
|
34329
|
+
position: absolute;
|
|
34330
|
+
top: 0;
|
|
34331
|
+
right: 0;
|
|
34332
|
+
bottom: 0;
|
|
34333
|
+
left: 0;
|
|
34334
|
+
-webkit-animation-duration: 1400ms;
|
|
34335
|
+
animation-duration: 1400ms;
|
|
34336
|
+
-webkit-animation-iteration-count: infinite;
|
|
34337
|
+
animation-iteration-count: infinite;
|
|
34338
|
+
-webkit-animation-name: progress-bar-indeterminate;
|
|
34339
|
+
animation-name: progress-bar-indeterminate;
|
|
34340
|
+
-webkit-animation-timing-function: linear;
|
|
34341
|
+
animation-timing-function: linear;
|
|
34342
|
+
background-image: linear-gradient(90deg, #0f62fe 12.5%, transparent 12.5%);
|
|
34343
|
+
background-position-x: 0%;
|
|
34344
|
+
background-size: 200% 100%;
|
|
34345
|
+
content: "";
|
|
34346
|
+
}
|
|
34347
|
+
|
|
34348
|
+
.bx--progress-bar__helper-text {
|
|
34349
|
+
font-size: 0.75rem;
|
|
34350
|
+
line-height: 1.33333;
|
|
34351
|
+
letter-spacing: 0.32px;
|
|
34352
|
+
margin-top: 0.25rem;
|
|
34353
|
+
color: #525252;
|
|
34354
|
+
}
|
|
34355
|
+
|
|
34356
|
+
@-webkit-keyframes progress-bar-indeterminate {
|
|
34357
|
+
0% {
|
|
34358
|
+
background-position-x: 25%;
|
|
34359
|
+
}
|
|
34360
|
+
80%, 100% {
|
|
34361
|
+
background-position-x: -105%;
|
|
34362
|
+
}
|
|
34363
|
+
}
|
|
34364
|
+
|
|
34365
|
+
@keyframes progress-bar-indeterminate {
|
|
34366
|
+
0% {
|
|
34367
|
+
background-position-x: 25%;
|
|
34368
|
+
}
|
|
34369
|
+
80%, 100% {
|
|
34370
|
+
background-position-x: -105%;
|
|
34371
|
+
}
|
|
34372
|
+
}
|
|
34373
|
+
.iot--progress-bar-container {
|
|
34374
|
+
position: relative;
|
|
34375
|
+
}
|
|
34376
|
+
|
|
34377
|
+
.bx--progress-bar__label {
|
|
34378
|
+
font-size: 0.875rem;
|
|
34379
|
+
font-weight: 600;
|
|
34380
|
+
line-height: 1.28572;
|
|
34381
|
+
letter-spacing: 0.16px;
|
|
34382
|
+
color: #161616;
|
|
34383
|
+
}
|
|
34384
|
+
|
|
34385
|
+
.iot--progress-bar__label--right {
|
|
34386
|
+
position: absolute;
|
|
34387
|
+
right: 0;
|
|
34388
|
+
display: inline-flex;
|
|
34389
|
+
gap: 0.25rem;
|
|
34390
|
+
justify-content: center;
|
|
34391
|
+
align-items: center;
|
|
34392
|
+
}
|
|
34393
|
+
[dir=rtl] .iot--progress-bar__label--right {
|
|
34394
|
+
right: unset;
|
|
34395
|
+
left: 0;
|
|
34396
|
+
}
|
|
34397
|
+
|
|
34398
|
+
.iot--progress-bar__icon {
|
|
34399
|
+
display: inline-flex;
|
|
34400
|
+
}
|
|
34401
|
+
|
|
34402
|
+
.iot--progress-bar__value-label {
|
|
34403
|
+
font-size: 0.875rem;
|
|
34404
|
+
font-weight: 400;
|
|
34405
|
+
line-height: 1.28572;
|
|
34406
|
+
letter-spacing: 0.16px;
|
|
34407
|
+
color: #161616;
|
|
34408
|
+
}
|
|
34409
|
+
|
|
34410
|
+
.iot--progress-bar__value-label--over {
|
|
34411
|
+
color: var(--progress-bar-fill-color);
|
|
34412
|
+
}
|
|
34413
|
+
|
|
34414
|
+
.bx--progress-bar__track {
|
|
34415
|
+
background-color: #f4f4f4;
|
|
34416
|
+
}
|
|
34417
|
+
|
|
34418
|
+
.bx--progress-bar__bar {
|
|
34419
|
+
background-color: var(--progress-bar-fill-color);
|
|
34420
|
+
border: 1px solid var(--progress-bar-stroke-color);
|
|
34421
|
+
}
|
|
34422
|
+
[dir=rtl] .bx--progress-bar__bar {
|
|
34423
|
+
-webkit-transform-origin: 100% 50%;
|
|
34424
|
+
transform-origin: 100% 50%;
|
|
34425
|
+
}
|
|
34426
|
+
|
|
34133
34427
|
/* stylelint-disable-line no-invalid-position-at-import-rule */
|
|
34134
34428
|
/* stylelint-disable-line no-invalid-position-at-import-rule */
|
|
34135
34429
|
/* stylelint-disable-line no-invalid-position-at-import-rule */
|
|
@@ -35732,6 +36026,10 @@ html[dir=rtl] .iot--table-batch-actions .bx--action-list {
|
|
|
35732
36026
|
left: 0;
|
|
35733
36027
|
right: auto;
|
|
35734
36028
|
}
|
|
36029
|
+
html[dir=rtl] .iot--table-batch-actions .bx--action-list .bx--btn .bx--btn__icon {
|
|
36030
|
+
margin-left: 0;
|
|
36031
|
+
margin-right: 0.5rem;
|
|
36032
|
+
}
|
|
35735
36033
|
html[dir=rtl] .iot--table-batch-actions .bx--batch-summary {
|
|
35736
36034
|
left: auto;
|
|
35737
36035
|
margin-left: 0;
|
|
@@ -35757,14 +36055,12 @@ html[dir=rtl] .iot--table-batch-actions .bx--btn--primary.bx--batch-summary__can
|
|
|
35757
36055
|
display: flex;
|
|
35758
36056
|
align-items: center;
|
|
35759
36057
|
text-align: left;
|
|
35760
|
-
min-width: 0;
|
|
35761
36058
|
}
|
|
35762
36059
|
[dir=rtl] .iot--table-toolbar-aggregations__overflow-menu-content {
|
|
35763
36060
|
text-align: right;
|
|
35764
36061
|
}
|
|
35765
36062
|
.iot--table-toolbar-aggregations__overflow-menu-content svg {
|
|
35766
36063
|
margin-right: 0.5rem;
|
|
35767
|
-
flex-shrink: 0;
|
|
35768
36064
|
}
|
|
35769
36065
|
[dir=rtl] .iot--table-toolbar-aggregations__overflow-menu-content svg {
|
|
35770
36066
|
margin-right: 0;
|
|
@@ -36885,10 +37181,6 @@ html[dir=rtl] td.iot--table__cell--sortable {
|
|
|
36885
37181
|
padding: 0.25rem 0.75rem;
|
|
36886
37182
|
border-top: 1px solid #e0e0e0;
|
|
36887
37183
|
}
|
|
36888
|
-
.iot--table__advanced-filters-container .bx--tag {
|
|
36889
|
-
color: #0f62fe;
|
|
36890
|
-
background-color: #d0e2ff;
|
|
36891
|
-
}
|
|
36892
37184
|
|
|
36893
37185
|
button.bx--btn.iot--tooltip-svg-wrapper.bx--btn--ghost.iot--table-toolbar__advanced-filters-button {
|
|
36894
37186
|
border: 1px solid transparent;
|