@useloops/design-system 1.4.427 → 1.4.429

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/index.d.ts CHANGED
@@ -1960,6 +1960,7 @@ interface CommentCardProps {
1960
1960
  isStarred?: boolean;
1961
1961
  isActive?: boolean;
1962
1962
  moreMenuItems?: MenuProps['menuItems'];
1963
+ moreMenuState?: MenuProps['state'];
1963
1964
  onFavouritePress?: () => void;
1964
1965
  onCopyPress?: (element: HTMLElement) => void;
1965
1966
  onMorePress?: () => void;
@@ -2386,6 +2387,10 @@ declare const _default: react.MemoExoticComponent<react.ForwardRefExoticComponen
2386
2387
 
2387
2388
  interface SearchInputProps {
2388
2389
  onChange?: (event: react__default.ChangeEvent<HTMLInputElement>) => void;
2390
+ onFocus?: (event: react__default.FocusEvent<HTMLInputElement>) => void;
2391
+ onClear?: () => void;
2392
+ placeholder?: string;
2393
+ sx?: SxProps<Theme>;
2389
2394
  }
2390
2395
  declare const SearchInput: FunctionComponent<SearchInputProps>;
2391
2396