@useloops/design-system 1.4.426 → 1.4.428

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;
@@ -2050,9 +2051,9 @@ interface FilterGroupAccordionProps extends PropsWithChildren {
2050
2051
  heading?: string;
2051
2052
  showIndicator?: boolean;
2052
2053
  slotProps?: {
2053
- accordion?: AccordionProps$1;
2054
- summary?: AccordionSummaryProps;
2055
- details?: AccordionDetailsProps;
2054
+ accordion?: Partial<AccordionProps$1>;
2055
+ summary?: Partial<AccordionSummaryProps>;
2056
+ details?: Partial<AccordionDetailsProps>;
2056
2057
  };
2057
2058
  }
2058
2059
  declare const FilterGroupAccordion: FunctionComponent<FilterGroupAccordionProps>;
@@ -2386,6 +2387,9 @@ 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;
2389
2393
  }
2390
2394
  declare const SearchInput: FunctionComponent<SearchInputProps>;
2391
2395