carbon-addons-iot-react 2.152.0-next.2 → 2.152.0-next.3
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 +14 -0
- package/css/carbon-addons-iot-react.css +21 -0
- package/css/carbon-addons-iot-react.css.map +1 -1
- package/es/components/Table/Pagination.js +4 -2
- package/lib/components/Table/Pagination.js +4 -2
- package/lib/css/carbon-addons-iot-react.css +21 -0
- package/lib/css/carbon-addons-iot-react.css.map +1 -1
- package/lib/scss/components/Table/_pagination.scss +29 -0
- package/package.json +2 -2
- package/scss/components/Table/_pagination.scss +29 -0
- package/umd/carbon-addons-iot-react.js +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,20 @@
|
|
|
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-next.3](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.2...v2.152.0-next.3) (2022-11-09)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **table:** add left padding to pagination on small screen ([085f031](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/085f0314d031cf513cb75bf2a138965699c61b23))
|
|
12
|
+
* **table:** dock left for pagination buttons ([e658e39](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/e658e39ed0858136c39a5b2f2d0f3f7843a47fe8))
|
|
13
|
+
* **table:** prevent carbon pagination overflow on small screens ([b0e601e](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/b0e601ed2b06d3fac5a31e656b8afd5349c28c35))
|
|
14
|
+
* **table:** remove vertical scrollbar for pagination in RTL ([a4e8cf1](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/a4e8cf1751922b313d7287ff6464bd4a40fa986f))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
6
20
|
# [2.152.0-next.2](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.152.0-next.1...v2.152.0-next.2) (2022-11-07)
|
|
7
21
|
|
|
8
22
|
|
|
@@ -36247,6 +36247,21 @@ html[dir=rtl] .iot--table-batch-actions .bx--btn--primary.bx--batch-summary__can
|
|
|
36247
36247
|
background-color: #0353e9;
|
|
36248
36248
|
}
|
|
36249
36249
|
|
|
36250
|
+
.iot--pagination {
|
|
36251
|
+
overflow-x: hidden;
|
|
36252
|
+
}
|
|
36253
|
+
.iot--pagination--compact .bx--pagination__right {
|
|
36254
|
+
width: 100%;
|
|
36255
|
+
}
|
|
36256
|
+
.iot--pagination--compact .bx--select-input {
|
|
36257
|
+
border-right: 1px solid #e0e0e0;
|
|
36258
|
+
}
|
|
36259
|
+
.iot--pagination--compact .bx--select__page-number .bx--select-input {
|
|
36260
|
+
border-left: none;
|
|
36261
|
+
}
|
|
36262
|
+
.iot--pagination--compact .bx--pagination__control-buttons {
|
|
36263
|
+
margin-left: auto;
|
|
36264
|
+
}
|
|
36250
36265
|
.iot--pagination .bx--pagination__left {
|
|
36251
36266
|
margin: auto auto auto 0;
|
|
36252
36267
|
}
|
|
@@ -36261,6 +36276,9 @@ html[dir=rtl] .iot--pagination .bx--pagination__left {
|
|
|
36261
36276
|
display: var(--pagination-text-display);
|
|
36262
36277
|
}
|
|
36263
36278
|
|
|
36279
|
+
.iot--pagination--hide-page .bx--pagination__left {
|
|
36280
|
+
padding: 0 1rem 0 1rem;
|
|
36281
|
+
}
|
|
36264
36282
|
.iot--pagination--hide-page .bx--pagination__left .bx--pagination__text:first-child,
|
|
36265
36283
|
.iot--pagination--hide-page .bx--pagination__left span:first-child,
|
|
36266
36284
|
.iot--pagination--hide-page .bx--pagination__left .bx--form-item {
|
|
@@ -36312,6 +36330,9 @@ html[dir=rtl] .iot--pagination.bx--pagination .bx--select-input + svg {
|
|
|
36312
36330
|
left: 1rem;
|
|
36313
36331
|
}
|
|
36314
36332
|
}
|
|
36333
|
+
html[dir=rtl] .iot--pagination {
|
|
36334
|
+
overflow-y: hidden;
|
|
36335
|
+
}
|
|
36315
36336
|
|
|
36316
36337
|
.iot--row-actions-container {
|
|
36317
36338
|
height: 100%;
|