fis-component 0.0.76 → 0.0.77
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/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/src/components/Table/ColumnCell/index.d.ts +3 -3
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/src/components/Table/ColumnCell/index.d.ts +3 -3
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { DetailedHTMLProps, HTMLAttributes, ReactElement } from "react";
|
|
2
|
-
interface ColumnCellProps extends Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> {
|
|
2
|
+
interface ColumnCellProps extends Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref" | "content"> {
|
|
3
3
|
className?: string;
|
|
4
|
-
textAlign?:
|
|
4
|
+
textAlign?: string;
|
|
5
5
|
contentWrapText?: boolean;
|
|
6
6
|
variant?: string;
|
|
7
|
-
content?:
|
|
7
|
+
content?: React.ReactNode;
|
|
8
8
|
description?: string;
|
|
9
9
|
icon?: ReactElement;
|
|
10
10
|
disabled?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -4102,12 +4102,12 @@ interface HeaderCellProps extends Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivE
|
|
|
4102
4102
|
}
|
|
4103
4103
|
declare const FISTableHeaderCell: React$1.ForwardRefExoticComponent<HeaderCellProps & React$1.RefAttributes<HTMLLabelElement>>;
|
|
4104
4104
|
|
|
4105
|
-
interface ColumnCellProps extends Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> {
|
|
4105
|
+
interface ColumnCellProps extends Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref" | "content"> {
|
|
4106
4106
|
className?: string;
|
|
4107
|
-
textAlign?:
|
|
4107
|
+
textAlign?: string;
|
|
4108
4108
|
contentWrapText?: boolean;
|
|
4109
4109
|
variant?: string;
|
|
4110
|
-
content?:
|
|
4110
|
+
content?: React.ReactNode;
|
|
4111
4111
|
description?: string;
|
|
4112
4112
|
icon?: ReactElement;
|
|
4113
4113
|
disabled?: boolean;
|