We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a405e32 commit b32e21cCopy full SHA for b32e21c
packages/components/table/hooks/useRowSelect.tsx
@@ -8,6 +8,7 @@ import { isRowSelectedDisabled } from '@tdesign/common-js/table/utils';
8
import Checkbox from '../../checkbox';
9
import useControlled from '../../hooks/useControlled';
10
import Radio from '../../radio';
11
+import { DEFAULT_CURRENT, DEFAULT_PAGE_SIZE } from './usePagination';
12
13
import type { ClassName } from '../../common';
14
import type {
@@ -19,7 +20,6 @@ import type {
19
20
TdPrimaryTableProps,
21
} from '../type';
22
import type { TableClassName } from './useClassName';
-import { DEFAULT_CURRENT, DEFAULT_PAGE_SIZE } from './usePagination';
23
24
const selectedRowDataMap = new Map<string | number, TableRowData>();
25
0 commit comments