plataforma-fundacao-componentes 2.22.9 → 2.22.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/dist/index.css +2 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2 -1
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -15502,6 +15502,7 @@ tr:first-child th:last-child {
|
|
|
15502
15502
|
align-items: center;
|
|
15503
15503
|
justify-content: center; }
|
|
15504
15504
|
@media screen and (min-width: 767.98px) {
|
|
15505
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper th[data-draggable='true'],
|
|
15505
15506
|
.component-table-with-overflow .component-table-with-overflow-wrapper td[data-draggable='true'] {
|
|
15506
15507
|
-webkit-user-select: none;
|
|
15507
15508
|
-moz-user-select: none;
|
|
@@ -15509,6 +15510,7 @@ tr:first-child th:last-child {
|
|
|
15509
15510
|
user-select: none;
|
|
15510
15511
|
cursor: -webkit-grab;
|
|
15511
15512
|
cursor: grab; }
|
|
15513
|
+
.component-table-with-overflow .component-table-with-overflow-wrapper table:active th[data-draggable='true'],
|
|
15512
15514
|
.component-table-with-overflow .component-table-with-overflow-wrapper table:active td[data-draggable='true'] {
|
|
15513
15515
|
cursor: -webkit-grabbing !important;
|
|
15514
15516
|
cursor: grabbing !important; }
|
package/dist/index.js
CHANGED
|
@@ -9902,7 +9902,8 @@ function TableWithOverflow(props) {
|
|
|
9902
9902
|
var _column$props;
|
|
9903
9903
|
|
|
9904
9904
|
return React__default.createElement("th", Object.assign({
|
|
9905
|
-
key: "header-" + column.key
|
|
9905
|
+
key: "header-" + column.key,
|
|
9906
|
+
"data-draggable": !Boolean(column.absolute)
|
|
9906
9907
|
}, column.props, {
|
|
9907
9908
|
style: _extends({}, (_column$props = column.props) === null || _column$props === void 0 ? void 0 : _column$props.style, column.absolute),
|
|
9908
9909
|
className: getMergedClassNames([column.key + "-cell", column.absolute ? 'absolute' : ''])
|