@hybr1d-tech/charizard 1.1.91 → 1.1.93
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 +307 -305
- package/dist/hybr1d-ui.umd.cjs +6 -6
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -759,6 +759,7 @@ declare interface DropdownProps extends BaseInputAdornmentProps {
|
|
|
759
759
|
onOptionSelect: (value: string) => void;
|
|
760
760
|
hideSearch?: boolean;
|
|
761
761
|
isLoading?: boolean;
|
|
762
|
+
onclick?: () => void;
|
|
762
763
|
}
|
|
763
764
|
|
|
764
765
|
/**
|
|
@@ -1308,7 +1309,7 @@ export declare namespace InputLeftAddon {
|
|
|
1308
1309
|
* <InputV2 />
|
|
1309
1310
|
* </InputGroupV2>
|
|
1310
1311
|
*/
|
|
1311
|
-
export declare function InputLeftAdornment({ children, isLoading, disabled, isDropdown, options, hideSearch, onOptionSelect, }: InputAdornmentProps): JSX_2.Element;
|
|
1312
|
+
export declare function InputLeftAdornment({ children, isLoading, disabled, isDropdown, options, hideSearch, onOptionSelect, onclick, }: InputAdornmentProps): JSX_2.Element;
|
|
1312
1313
|
|
|
1313
1314
|
export declare namespace InputLeftAdornment {
|
|
1314
1315
|
var displayName: INPUT_COMPONENTS;
|
|
@@ -1931,6 +1932,7 @@ declare interface NonDropdownProps extends BaseInputAdornmentProps {
|
|
|
1931
1932
|
hideSearch?: never;
|
|
1932
1933
|
onOptionSelect?: never;
|
|
1933
1934
|
isLoading?: never;
|
|
1935
|
+
onclick?: () => void;
|
|
1934
1936
|
}
|
|
1935
1937
|
|
|
1936
1938
|
declare interface NonIconBadgeProps extends BaseBadgeProps {
|