carbon-addons-iot-react 4.1.16 → 4.1.18
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/css/carbon-addons-iot-react.css +18 -4
- package/css/carbon-addons-iot-react.css.map +1 -1
- package/es/components/DateTimePicker/DateTimePickerV2WithTimeSpinner.js +4 -1
- package/es/components/Table/TableHead/TableHead.js +3 -1
- package/lib/components/DateTimePicker/DateTimePickerV2WithTimeSpinner.js +4 -1
- package/lib/components/Table/TableHead/TableHead.js +3 -1
- package/lib/css/carbon-addons-iot-react.css +18 -4
- package/lib/css/carbon-addons-iot-react.css.map +1 -1
- package/lib/scss/components/Table/TableHead/_table-head.scss +8 -4
- package/lib/scss/components/Table/_table.scss +23 -1
- package/package.json +2 -2
- package/scss/components/Table/TableHead/_table-head.scss +8 -4
- package/scss/components/Table/_table.scss +23 -1
- package/umd/carbon-addons-iot-react.js +7 -2
|
@@ -36996,14 +36996,17 @@ th .cds--table-sort__flex {
|
|
|
36996
36996
|
align-items: center;
|
|
36997
36997
|
justify-content: space-between;
|
|
36998
36998
|
}
|
|
36999
|
-
.cds--data-table th.cds--table-sort__header--ai-label:not(.table-header-sortable) .cds--table-header-label-container
|
|
36999
|
+
.cds--data-table th.cds--table-sort__header--ai-label:not(.table-header-sortable) .cds--table-header-label-container cds--table-header-label {
|
|
37000
37000
|
margin-right: 1rem;
|
|
37001
37001
|
width: 100%;
|
|
37002
37002
|
}
|
|
37003
|
-
.cds--data-table th[aria-sort]
|
|
37003
|
+
.cds--data-table th[aria-sort] span.cds--popover-container {
|
|
37004
37004
|
padding-left: 1rem;
|
|
37005
37005
|
}
|
|
37006
|
-
.cds--data-table th
|
|
37006
|
+
.cds--data-table th button.cds--definition-term {
|
|
37007
|
+
font-weight: 600;
|
|
37008
|
+
}
|
|
37009
|
+
.cds--data-table th[aria-sort].cds--table-sort__header--ai-label cds--ai-label {
|
|
37007
37010
|
padding-right: 1rem;
|
|
37008
37011
|
}
|
|
37009
37012
|
.cds--data-table--xl .cds--table-sort__icon-unsorted,
|
|
@@ -38139,7 +38142,7 @@ button.cds--btn.iot--tooltip-svg-wrapper.cds--btn--ghost.iot--table-toolbar__adv
|
|
|
38139
38142
|
|
|
38140
38143
|
.cds--data-table td,
|
|
38141
38144
|
.cds--data-table tbody th {
|
|
38142
|
-
padding-right:
|
|
38145
|
+
padding-right: 2rem;
|
|
38143
38146
|
padding-left: 1rem;
|
|
38144
38147
|
border-top: 1px solid var(--cds-icon-on-color, #ffffff);
|
|
38145
38148
|
border-bottom: 1px solid var(--cds-layer-selected-01, #e0e0e0);
|
|
@@ -38436,6 +38439,17 @@ button.cds--btn.iot--tooltip-svg-wrapper.cds--btn--ghost.iot--table-toolbar__adv
|
|
|
38436
38439
|
z-index: 2;
|
|
38437
38440
|
}
|
|
38438
38441
|
|
|
38442
|
+
.table-header-label-start .cds--table-header-label {
|
|
38443
|
+
text-align: start;
|
|
38444
|
+
}
|
|
38445
|
+
.table-header-label-center .cds--table-header-label {
|
|
38446
|
+
text-align: center;
|
|
38447
|
+
width: 100%;
|
|
38448
|
+
}
|
|
38449
|
+
.table-header-label-end .cds--table-header-label {
|
|
38450
|
+
text-align: end;
|
|
38451
|
+
}
|
|
38452
|
+
|
|
38439
38453
|
.cds--tabs.cds--tabs--contained.cds--tabs--full-width .cds--tab--list {
|
|
38440
38454
|
display: grid;
|
|
38441
38455
|
grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
|