@trackunit/react-table 1.6.7 → 1.6.13
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.js +1 -1
- package/index.esm.js +1 -1
- package/package.json +11 -11
- package/src/menus/ColumnFilterItem.d.ts +1 -1
package/index.cjs.js
CHANGED
|
@@ -305,7 +305,7 @@ const ItemTypes = {
|
|
|
305
305
|
* @param {() => void} props.onCancelDrop - Callback for canceling a drop action.
|
|
306
306
|
* @param {string} props.id - Unique identifier for the column.
|
|
307
307
|
* @param {boolean} [props.isSortDisabled] - Optional flag to disable sorting.
|
|
308
|
-
* @returns {
|
|
308
|
+
* @returns {Element} A React component rendering the column filter item.
|
|
309
309
|
*/
|
|
310
310
|
const ColumnFilterItem = ({ name, onToggle, toggled, disabled, index, moveColumn, onDrop, onCancelDrop, id, isSortDisabled, }) => {
|
|
311
311
|
const ref = react.useRef(null);
|
package/index.esm.js
CHANGED
|
@@ -304,7 +304,7 @@ const ItemTypes = {
|
|
|
304
304
|
* @param {() => void} props.onCancelDrop - Callback for canceling a drop action.
|
|
305
305
|
* @param {string} props.id - Unique identifier for the column.
|
|
306
306
|
* @param {boolean} [props.isSortDisabled] - Optional flag to disable sorting.
|
|
307
|
-
* @returns {
|
|
307
|
+
* @returns {Element} A React component rendering the column filter item.
|
|
308
308
|
*/
|
|
309
309
|
const ColumnFilterItem = ({ name, onToggle, toggled, disabled, index, moveColumn, onDrop, onCancelDrop, id, isSortDisabled, }) => {
|
|
310
310
|
const ref = useRef(null);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/react-table",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.13",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -15,16 +15,16 @@
|
|
|
15
15
|
"jest-fetch-mock": "^3.0.3",
|
|
16
16
|
"@tanstack/react-router": "1.114.29",
|
|
17
17
|
"tailwind-merge": "^2.0.0",
|
|
18
|
-
"@trackunit/react-components": "1.7.
|
|
19
|
-
"@trackunit/shared-utils": "1.8.
|
|
20
|
-
"@trackunit/css-class-variance-utilities": "1.6.
|
|
21
|
-
"@trackunit/ui-icons": "1.6.
|
|
22
|
-
"@trackunit/react-table-base-components": "1.6.
|
|
23
|
-
"@trackunit/react-table-pagination": "1.6.
|
|
24
|
-
"@trackunit/react-form-components": "1.6.
|
|
25
|
-
"@trackunit/i18n-library-translation": "1.6.
|
|
26
|
-
"@trackunit/react-core-contexts-api": "1.7.
|
|
27
|
-
"@trackunit/react-test-setup": "1.3.
|
|
18
|
+
"@trackunit/react-components": "1.7.12",
|
|
19
|
+
"@trackunit/shared-utils": "1.8.10",
|
|
20
|
+
"@trackunit/css-class-variance-utilities": "1.6.10",
|
|
21
|
+
"@trackunit/ui-icons": "1.6.9",
|
|
22
|
+
"@trackunit/react-table-base-components": "1.6.13",
|
|
23
|
+
"@trackunit/react-table-pagination": "1.6.9",
|
|
24
|
+
"@trackunit/react-form-components": "1.6.13",
|
|
25
|
+
"@trackunit/i18n-library-translation": "1.6.10",
|
|
26
|
+
"@trackunit/react-core-contexts-api": "1.7.10",
|
|
27
|
+
"@trackunit/react-test-setup": "1.3.10"
|
|
28
28
|
},
|
|
29
29
|
"module": "./index.esm.js",
|
|
30
30
|
"main": "./index.cjs.js",
|
|
@@ -26,7 +26,7 @@ interface ColumnFilterItemProps {
|
|
|
26
26
|
* @param {() => void} props.onCancelDrop - Callback for canceling a drop action.
|
|
27
27
|
* @param {string} props.id - Unique identifier for the column.
|
|
28
28
|
* @param {boolean} [props.isSortDisabled] - Optional flag to disable sorting.
|
|
29
|
-
* @returns {
|
|
29
|
+
* @returns {Element} A React component rendering the column filter item.
|
|
30
30
|
*/
|
|
31
31
|
export declare const ColumnFilterItem: ({ name, onToggle, toggled, disabled, index, moveColumn, onDrop, onCancelDrop, id, isSortDisabled, }: ColumnFilterItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
32
32
|
export {};
|