@useloops/design-system 1.4.428 → 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,7 +1960,7 @@ interface CommentCardProps {
1960
1960
  isStarred?: boolean;
1961
1961
  isActive?: boolean;
1962
1962
  moreMenuItems?: MenuProps['menuItems'];
1963
- moreMenuState: MenuProps['state'];
1963
+ moreMenuState?: MenuProps['state'];
1964
1964
  onFavouritePress?: () => void;
1965
1965
  onCopyPress?: (element: HTMLElement) => void;
1966
1966
  onMorePress?: () => void;
@@ -2390,6 +2390,7 @@ interface SearchInputProps {
2390
2390
  onFocus?: (event: react__default.FocusEvent<HTMLInputElement>) => void;
2391
2391
  onClear?: () => void;
2392
2392
  placeholder?: string;
2393
+ sx?: SxProps<Theme>;
2393
2394
  }
2394
2395
  declare const SearchInput: FunctionComponent<SearchInputProps>;
2395
2396