@useloops/design-system 1.4.433 → 1.4.435

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
@@ -1950,23 +1950,21 @@ interface AuthContainerSurfaceProps extends SurfaceProps {
1950
1950
  declare const AuthContainerSurface: FunctionComponent<AuthContainerSurfaceProps>;
1951
1951
 
1952
1952
  interface CommentCardProps {
1953
- comment: {
1954
- original: string;
1955
- translation?: string;
1956
- sentimentScore: number;
1957
- author: string;
1958
- error?: boolean;
1959
- };
1960
- isStarred?: boolean;
1953
+ author: string;
1954
+ copyLoading?: boolean;
1955
+ favouriteLoading?: boolean;
1961
1956
  isActive?: boolean;
1957
+ isStarred?: boolean;
1962
1958
  moreMenuItems?: MenuProps['menuItems'];
1963
1959
  moreMenuState?: MenuProps['state'];
1964
- onFavouritePress?: () => void;
1960
+ onClick?: () => void;
1965
1961
  onCopyPress?: (element: HTMLElement) => void;
1962
+ onFavouritePress?: () => void;
1966
1963
  onMorePress?: () => void;
1967
- onClick?: () => void;
1968
- copyLoading?: boolean;
1969
- favouriteLoading?: boolean;
1964
+ original: string;
1965
+ sentimentScore: number;
1966
+ translation?: string;
1967
+ translationError?: string;
1970
1968
  }
1971
1969
  declare const CommentCard: FunctionComponent<CommentCardProps>;
1972
1970