@hybr1d-tech/charizard 2.3.0 → 2.3.1
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/hybr1d-ui.css +1 -1
- package/dist/hybr1d-ui.js +12 -5
- package/dist/hybr1d-ui.umd.cjs +1 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2955,12 +2955,13 @@ declare interface TableTagsCellProps {
|
|
|
2955
2955
|
customStyles?: React_2.CSSProperties;
|
|
2956
2956
|
}
|
|
2957
2957
|
|
|
2958
|
-
export declare function TableUserCell({ user, onClick, showCopy, }: TableUserCellProps): React.ReactElement | null;
|
|
2958
|
+
export declare function TableUserCell({ user, onClick, showCopy, isMobile, }: TableUserCellProps): React.ReactElement | null;
|
|
2959
2959
|
|
|
2960
2960
|
declare interface TableUserCellProps {
|
|
2961
2961
|
user: any;
|
|
2962
2962
|
onClick: any;
|
|
2963
2963
|
showCopy?: boolean;
|
|
2964
|
+
isMobile?: boolean;
|
|
2964
2965
|
}
|
|
2965
2966
|
|
|
2966
2967
|
export declare interface TabProps {
|