@unizap/uniui 1.0.55 → 1.0.56

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.
@@ -9,5 +9,6 @@ export interface IconButtonProps extends React.ButtonHTMLAttributes<HTMLButtonEl
9
9
  disabled?: boolean;
10
10
  roundedFull?: boolean;
11
11
  icon?: React.ReactNode;
12
+ id?: string;
12
13
  onClick?: (event: React.MouseEvent<HTMLButtonElement>) => void;
13
14
  }
@@ -6,6 +6,7 @@ export interface IRadioGroupProps {
6
6
  label: string;
7
7
  value: string;
8
8
  disabled?: boolean;
9
+ id?: string;
9
10
  }[];
10
11
  selectedValue?: string;
11
12
  onChange?: (value: string) => void;
@@ -1,6 +1,6 @@
1
1
  import { TableProps } from './Table.types';
2
2
 
3
- declare const Table: <T>({ data, columns, pageSize, pageIndex, onPageSizeChange, onPageChange, rowOptionArray, totalRecords, className, paginationClassName, tdClassName, thClassName, responsive, }: TableProps<T> & {
3
+ declare const Table: <T>({ data, id, columns, pageSize, pageIndex, onPageSizeChange, onPageChange, rowOptionArray, totalRecords, className, paginationClassName, tdClassName, thClassName, responsive, }: TableProps<T> & {
4
4
  totalRecords?: number;
5
5
  }) => import("react/jsx-runtime").JSX.Element;
6
6
  export default Table;
@@ -14,4 +14,5 @@ export interface TableProps<T> {
14
14
  tdClassName?: string;
15
15
  thClassName?: string;
16
16
  responsive?: boolean;
17
+ id?: string;
17
18
  }
@@ -7,4 +7,5 @@ export interface ToggleSwitchProps {
7
7
  color: CompColor;
8
8
  type?: "submit" | "reset" | "button";
9
9
  variant?: 'ios' | 'android';
10
+ id?: string;
10
11
  }
@@ -7,4 +7,5 @@ export interface ITypographyProps {
7
7
  className?: string;
8
8
  children: React.ReactNode;
9
9
  color?: CompColor;
10
+ id?: string;
10
11
  }