@hybr1d-tech/charizard 0.7.178 → 0.7.180
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 +2496 -2484
- package/dist/hybr1d-ui.umd.cjs +15 -16
- package/dist/index.d.ts +0 -18
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3048,32 +3048,14 @@ export declare interface TableProps {
|
|
|
3048
3048
|
customActionItems?: JSX.Element[];
|
|
3049
3049
|
}
|
|
3050
3050
|
|
|
3051
|
-
/**
|
|
3052
|
-
* Represents a tag item with a name and optional additional properties.
|
|
3053
|
-
*/
|
|
3054
3051
|
declare interface TableTagItem {
|
|
3055
3052
|
id: string;
|
|
3056
3053
|
name: string;
|
|
3057
3054
|
[key: string]: any;
|
|
3058
3055
|
}
|
|
3059
3056
|
|
|
3060
|
-
/**
|
|
3061
|
-
* A generic component to display a list of items as badges with a popover for overflow.
|
|
3062
|
-
*
|
|
3063
|
-
* @param {TableTagsCellProps} props - The component props.
|
|
3064
|
-
* @returns {React.ReactElement} The rendered component.
|
|
3065
|
-
*/
|
|
3066
3057
|
export declare function TableTagsCell({ items, maxVisible, renderBadge, renderPopoverContent, customStyles, }: TableTagsCellProps): React_2.ReactElement;
|
|
3067
3058
|
|
|
3068
|
-
/**
|
|
3069
|
-
* Props for the TableTags component.
|
|
3070
|
-
* @typedef {Object} TableTagsCellProps@typedef {Object} TableTagsCellProps
|
|
3071
|
-
* @property {TableTagItem[]} items - Array of group items to display.
|
|
3072
|
-
* @property {number} [maxVisible=3] - Maximum number of items to display before showing a count badge.
|
|
3073
|
-
* @property {string} [customStyles] - Optional CSS styles for the container.
|
|
3074
|
-
* @property {(item: TableTagItem) => React.ReactNode} [renderBadge] - Optional custom render function for badges.
|
|
3075
|
-
* @property {(items: TableTagItem[]) => React.ReactNode} [renderPopoverContent] - Optional custom render function for popover content.
|
|
3076
|
-
*/
|
|
3077
3059
|
declare interface TableTagsCellProps {
|
|
3078
3060
|
items: TableTagItem[];
|
|
3079
3061
|
maxVisible?: number;
|