@trackunit/react-table 1.9.29 → 1.10.1
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 +0 -3
- package/index.esm.js +0 -3
- package/package.json +9 -9
- package/src/Table.d.ts +0 -3
package/index.cjs.js
CHANGED
|
@@ -867,12 +867,9 @@ const ColumnSorting = ({ canSort, sortingState = false }) => {
|
|
|
867
867
|
*
|
|
868
868
|
* @param {ReactTable} props - The props for the Table component
|
|
869
869
|
* @returns {ReactElement} Table component
|
|
870
|
-
*/
|
|
871
|
-
/**
|
|
872
870
|
* Table component for displaying large sets of data in tables with infinite scroll, sorting, filtering and others.
|
|
873
871
|
* Table is extending the `@tanstack/react-table` Table component.
|
|
874
872
|
* For more information about the `@tanstack/react-table` Table component, visit [https://tanstack.com/table/v8/docs/guide/introduction](https://tanstack.com/table/v8/docs/guide/introduction).
|
|
875
|
-
*
|
|
876
873
|
* @example
|
|
877
874
|
* ```tsx
|
|
878
875
|
* import { createColumnHelper, Table, useTable } from "@trackunit/react-table";
|
package/index.esm.js
CHANGED
|
@@ -866,12 +866,9 @@ const ColumnSorting = ({ canSort, sortingState = false }) => {
|
|
|
866
866
|
*
|
|
867
867
|
* @param {ReactTable} props - The props for the Table component
|
|
868
868
|
* @returns {ReactElement} Table component
|
|
869
|
-
*/
|
|
870
|
-
/**
|
|
871
869
|
* Table component for displaying large sets of data in tables with infinite scroll, sorting, filtering and others.
|
|
872
870
|
* Table is extending the `@tanstack/react-table` Table component.
|
|
873
871
|
* For more information about the `@tanstack/react-table` Table component, visit [https://tanstack.com/table/v8/docs/guide/introduction](https://tanstack.com/table/v8/docs/guide/introduction).
|
|
874
|
-
*
|
|
875
872
|
* @example
|
|
876
873
|
* ```tsx
|
|
877
874
|
* import { createColumnHelper, Table, useTable } from "@trackunit/react-table";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/react-table",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.1",
|
|
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.
|
|
18
|
-
"@trackunit/shared-utils": "1.
|
|
19
|
-
"@trackunit/css-class-variance-utilities": "1.
|
|
20
|
-
"@trackunit/ui-icons": "1.
|
|
21
|
-
"@trackunit/react-table-base-components": "1.
|
|
22
|
-
"@trackunit/react-form-components": "1.
|
|
23
|
-
"@trackunit/i18n-library-translation": "1.
|
|
24
|
-
"@trackunit/iris-app-runtime-core-api": "1.
|
|
17
|
+
"@trackunit/react-components": "1.14.1",
|
|
18
|
+
"@trackunit/shared-utils": "1.12.1",
|
|
19
|
+
"@trackunit/css-class-variance-utilities": "1.10.1",
|
|
20
|
+
"@trackunit/ui-icons": "1.10.1",
|
|
21
|
+
"@trackunit/react-table-base-components": "1.10.1",
|
|
22
|
+
"@trackunit/react-form-components": "1.11.1",
|
|
23
|
+
"@trackunit/i18n-library-translation": "1.10.1",
|
|
24
|
+
"@trackunit/iris-app-runtime-core-api": "1.10.1",
|
|
25
25
|
"graphql": "^16.10.0"
|
|
26
26
|
},
|
|
27
27
|
"module": "./index.esm.js",
|
package/src/Table.d.ts
CHANGED
|
@@ -22,12 +22,9 @@ export interface TableProps<TData extends object> extends ReactTable<TData>, Com
|
|
|
22
22
|
*
|
|
23
23
|
* @param {ReactTable} props - The props for the Table component
|
|
24
24
|
* @returns {ReactElement} Table component
|
|
25
|
-
*/
|
|
26
|
-
/**
|
|
27
25
|
* Table component for displaying large sets of data in tables with infinite scroll, sorting, filtering and others.
|
|
28
26
|
* Table is extending the `@tanstack/react-table` Table component.
|
|
29
27
|
* For more information about the `@tanstack/react-table` Table component, visit [https://tanstack.com/table/v8/docs/guide/introduction](https://tanstack.com/table/v8/docs/guide/introduction).
|
|
30
|
-
*
|
|
31
28
|
* @example
|
|
32
29
|
* ```tsx
|
|
33
30
|
* import { createColumnHelper, Table, useTable } from "@trackunit/react-table";
|