@hybr1d-tech/charizard 1.1.106 → 1.1.108
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 +107 -107
- package/dist/hybr1d-ui.umd.cjs +2 -2
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -277,7 +277,7 @@ declare interface CheckboxProps {
|
|
|
277
277
|
}
|
|
278
278
|
|
|
279
279
|
declare interface CheckboxProps_2 {
|
|
280
|
-
label: string;
|
|
280
|
+
label: string | React_2.ReactNode;
|
|
281
281
|
checked?: boolean;
|
|
282
282
|
indeterminate?: boolean;
|
|
283
283
|
disabled?: boolean;
|
|
@@ -760,7 +760,7 @@ declare interface DropdownProps extends BaseInputAdornmentProps {
|
|
|
760
760
|
onOptionSelect: (value: string) => void;
|
|
761
761
|
hideSearch?: boolean;
|
|
762
762
|
isLoading?: boolean;
|
|
763
|
-
onclick?: () => void;
|
|
763
|
+
onclick?: (e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
|
764
764
|
}
|
|
765
765
|
|
|
766
766
|
/**
|
|
@@ -1933,7 +1933,7 @@ declare interface NonDropdownProps extends BaseInputAdornmentProps {
|
|
|
1933
1933
|
hideSearch?: never;
|
|
1934
1934
|
onOptionSelect?: never;
|
|
1935
1935
|
isLoading?: never;
|
|
1936
|
-
onclick?: () => void;
|
|
1936
|
+
onclick?: (e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
|
1937
1937
|
}
|
|
1938
1938
|
|
|
1939
1939
|
declare interface NonIconBadgeProps extends BaseBadgeProps {
|