@trackunit/react-table 1.3.139 → 1.3.141
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/index.cjs.css +12 -0
- package/index.cjs.js +607 -65
- package/index.esm.css +12 -0
- package/index.esm.js +611 -69
- package/package.json +10 -10
- package/src/Table.d.ts +2 -0
- package/src/components/TextWithTooltip.d.ts +13 -0
- package/src/hooks/useCellsOffset.d.ts +21 -0
- package/src/hooks/useColumnDragDrop.d.ts +25 -0
- package/src/menus/ColumnActions.d.ts +14 -0
- package/src/menus/ColumnFilter.d.ts +2 -1
- package/src/menus/ColumnSorting.d.ts +19 -0
- package/src/translation.d.ts +2 -2
- package/src/types.d.ts +12 -0
package/index.cjs.css
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
.column-dropped {
|
|
2
|
+
transition: all 250ms ease-in;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.dragging-column {
|
|
6
|
+
width: 0 !important;
|
|
7
|
+
padding: 0 !important;
|
|
8
|
+
margin: 0 !important;
|
|
9
|
+
overflow: hidden !important;
|
|
10
|
+
/* Keep transition for a smooth effect when drag starts or the drag does not work */
|
|
11
|
+
transition: all 250ms ease-out;
|
|
12
|
+
}
|