@hybr1d-tech/charizard 0.7.176 → 0.7.177
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.js +12 -12
- 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
|
@@ -2404,11 +2404,12 @@ export declare interface SearchProps {
|
|
|
2404
2404
|
* placeholder="Search..."
|
|
2405
2405
|
* />
|
|
2406
2406
|
*/
|
|
2407
|
-
export declare function SearchV2({ search, setSearch, ...props }: SearchV2Props): JSX_2.Element;
|
|
2407
|
+
export declare function SearchV2({ search, setSearch, inputGroupProps, ...props }: SearchV2Props): JSX_2.Element;
|
|
2408
2408
|
|
|
2409
2409
|
declare interface SearchV2Props extends InputV2Props {
|
|
2410
2410
|
search?: string;
|
|
2411
2411
|
setSearch?: React.Dispatch<React.SetStateAction<string>>;
|
|
2412
|
+
inputGroupProps?: Omit<InputGroupPropsV2, 'children'>;
|
|
2412
2413
|
}
|
|
2413
2414
|
|
|
2414
2415
|
/**
|