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.
@@ -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?: "left" | "right";
4
+ textAlign?: string;
5
5
  contentWrapText?: boolean;
6
6
  variant?: string;
7
- content?: string;
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?: "left" | "right";
4107
+ textAlign?: string;
4108
4108
  contentWrapText?: boolean;
4109
4109
  variant?: string;
4110
- content?: string;
4110
+ content?: React.ReactNode;
4111
4111
  description?: string;
4112
4112
  icon?: ReactElement;
4113
4113
  disabled?: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "homepage": "https://vietdiemtran.github.io/fis-component/",
3
3
  "name": "fis-component",
4
- "version": "0.0.76",
4
+ "version": "0.0.77",
5
5
  "description": "",
6
6
  "main": "dist/cjs/index.js",
7
7
  "module": "dist/esm/index.js",