@bsol-oss/react-datatable5 1.0.31 → 1.0.32
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/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
|
3
3
|
import { RowData, OnChangeFn, Updater, FilterFn, ColumnDef, Row } from '@tanstack/react-table';
|
|
4
4
|
import { RankingInfo } from '@tanstack/match-sorter-utils';
|
|
5
5
|
import { ReactNode } from 'react';
|
|
6
|
-
import { TooltipProps } from '@chakra-ui/react';
|
|
6
|
+
import { TextProps, TooltipProps } from '@chakra-ui/react';
|
|
7
7
|
import * as _tanstack_table_core from '@tanstack/table-core';
|
|
8
8
|
|
|
9
9
|
type DensityState = "sm" | "md" | "lg";
|
|
@@ -156,7 +156,7 @@ declare const TableSorter: () => react_jsx_runtime.JSX.Element;
|
|
|
156
156
|
|
|
157
157
|
declare const TableViewer: () => react_jsx_runtime.JSX.Element;
|
|
158
158
|
|
|
159
|
-
interface TextCellProps {
|
|
159
|
+
interface TextCellProps extends TextProps {
|
|
160
160
|
label?: string;
|
|
161
161
|
noOfLines?: number[];
|
|
162
162
|
padding?: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { TooltipProps } from "@chakra-ui/react";
|
|
3
|
-
export interface TextCellProps {
|
|
2
|
+
import { TextProps, TooltipProps } from "@chakra-ui/react";
|
|
3
|
+
export interface TextCellProps extends TextProps {
|
|
4
4
|
label?: string;
|
|
5
5
|
noOfLines?: number[];
|
|
6
6
|
padding?: string;
|