@trackunit/react-table 1.13.14 → 1.13.17

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/react-table",
3
- "version": "1.13.14",
3
+ "version": "1.13.17",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -14,14 +14,14 @@
14
14
  "react-dnd-html5-backend": "16.0.1",
15
15
  "@tanstack/react-router": "1.114.29",
16
16
  "tailwind-merge": "^2.0.0",
17
- "@trackunit/react-components": "1.17.12",
18
- "@trackunit/shared-utils": "1.13.41",
19
- "@trackunit/css-class-variance-utilities": "1.11.41",
20
- "@trackunit/ui-icons": "1.11.40",
21
- "@trackunit/react-table-base-components": "1.13.14",
22
- "@trackunit/react-form-components": "1.14.14",
23
- "@trackunit/i18n-library-translation": "1.12.25",
24
- "@trackunit/iris-app-runtime-core-api": "1.12.22",
17
+ "@trackunit/react-components": "1.17.15",
18
+ "@trackunit/shared-utils": "1.13.42",
19
+ "@trackunit/css-class-variance-utilities": "1.11.42",
20
+ "@trackunit/ui-icons": "1.11.41",
21
+ "@trackunit/react-table-base-components": "1.13.17",
22
+ "@trackunit/react-form-components": "1.14.17",
23
+ "@trackunit/i18n-library-translation": "1.12.26",
24
+ "@trackunit/iris-app-runtime-core-api": "1.12.23",
25
25
  "graphql": "^16.10.0"
26
26
  },
27
27
  "module": "./index.esm.js",
@@ -1,15 +0,0 @@
1
- import { TableSelectionProps } from "./useTableSelection";
2
- interface RowItem {
3
- id: string;
4
- name: string;
5
- }
6
- export type UseTableSelectionDemoComponentProps = TableSelectionProps<RowItem>;
7
- /**
8
- * The `useTableSelection` Hook provides functionality for row selection in a table.
9
- *
10
- * It returns an object containing methods and values related to row selection.
11
- *
12
- * It Also returns a `selectionColumn` object that can be used as a column definition in a table.
13
- */
14
- export declare const UseTableSelectionDemoComponent: (props: UseTableSelectionDemoComponentProps) => import("react/jsx-runtime").JSX.Element;
15
- export {};