@woovi/ui 6.5.1 → 6.5.2
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.cjs +2 -2
- package/dist/index.js +2 -2
- package/dist/table/CardListVirtualized.d.ts +0 -1
- package/dist/tag/Tag.d.ts +2 -2
- package/package.json +1 -1
|
@@ -12,7 +12,6 @@ export declare const compatWithDataGrid: ({ value, row }: Partial<GridRenderCell
|
|
|
12
12
|
value: any;
|
|
13
13
|
row: any;
|
|
14
14
|
};
|
|
15
|
-
export declare const hasCustomColumnType: (column: any) => any;
|
|
16
15
|
export declare const formatValue: (value: any, column: any) => any;
|
|
17
16
|
export declare const getColumnValue: (row: any, column: any) => any;
|
|
18
17
|
declare const CardListVirtualized: ({ columns: _columns, data, onScrollToBottom, onCardClick, noItemsLabel, cardListDefaultHeight, }: CardListVirtualizedProps) => 0 | import("react/jsx-runtime").JSX.Element;
|
package/dist/tag/Tag.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { type ChipProps } from "@mui/material";
|
|
2
2
|
import type { ReactNode } from "react";
|
|
3
3
|
export type TagProps = ChipProps & {
|
|
4
4
|
label: string;
|
|
5
5
|
value?: string | ReactNode;
|
|
6
6
|
breakByColon?: boolean;
|
|
7
7
|
};
|
|
8
|
-
declare const Tag: (
|
|
8
|
+
declare const Tag: ({ label, value, breakByColon, sx, ...rest }: TagProps) => ReactNode;
|
|
9
9
|
export default Tag;
|