@inntechcorp/it-design 2.0.162 → 2.0.164

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.
@@ -6,9 +6,9 @@ declare const Wrapper: import("styled-components/dist/types").IStyledComponentBa
6
6
  }>> & string;
7
7
  declare const EmptyBody: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
8
8
  declare const RowTitle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {
9
- $overflow: boolean;
9
+ $overflow?: boolean | undefined;
10
10
  }>> & string;
11
11
  declare const Cell: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {
12
- $overflow: boolean;
12
+ $overflow?: boolean | undefined;
13
13
  }>> & string;
14
14
  export { Wrapper, EmptyBody, RowTitle, Cell };
@@ -6,7 +6,7 @@ export type InputProps = {
6
6
  placeholder?: string;
7
7
  value?: string;
8
8
  defaultValue?: string;
9
- type?: string;
9
+ type?: "text" | "number" | "currency" | "password";
10
10
  className?: string;
11
11
  size?: ITDSize;
12
12
  variant?: InputVariant;
@@ -4,6 +4,7 @@ export type TableColumnType<T> = {
4
4
  key: keyof T | string;
5
5
  title: string;
6
6
  dataIndex?: keyof T;
7
+ overflow?: boolean;
7
8
  width?: number | string;
8
9
  maxWidth?: number | string;
9
10
  render?: (value: any, record: T, index: number, level?: number) => React.ReactNode;
@@ -17,7 +18,6 @@ export type TableProps<T extends TableRow> = {
17
18
  bordered?: boolean;
18
19
  dashed?: boolean;
19
20
  noGaps?: boolean;
20
- overflow?: boolean;
21
21
  hideGroupButtons?: boolean;
22
22
  getTRProps?: (row: T, rowIndex: number, level: number) => TableTRProps;
23
23
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inntechcorp/it-design",
3
- "version": "2.0.162",
3
+ "version": "2.0.164",
4
4
  "description": "All in one Design library for web applications.",
5
5
  "author": "Inn.Tech",
6
6
  "license": "ISC",