@apolitical/component-library 5.0.2-jc.0 → 5.0.2

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.
@@ -16,7 +16,6 @@ $general: (
16
16
  time-to-complete: get-map($c, 'p500'),
17
17
  tooltip: get-map($c, 'white'),
18
18
  tooltip_bg: color.adjust(get-map($c, 'n900'), $alpha: -0.1),
19
- tooltip_button: get-map($c, 'white'),
20
19
  progress_tracker_line_bg: get-map($c, 'n100'),
21
20
  progress_tracker_line_bg_active: get-map($c, 'b700'),
22
21
  progress_tracker_dot_bg: get-map($c, 'n100'),
@@ -1,25 +0,0 @@
1
- import { MemberProps } from '../../../user';
2
- import { IBadgesOption } from '../../../user/badges';
3
- export interface ILikesModalProps {
4
- /** Whether the modal is open on page load */
5
- showModal?: boolean;
6
- /** The number of likes */
7
- likes?: number;
8
- /** Information about the people who have liked the content */
9
- peopleWhoLiked?: false | MemberProps[];
10
- /** The ID of the post to show likes for */
11
- postId?: string;
12
- /** Whether to show badges and the scope of the badge */
13
- badges?: IBadgesOption;
14
- /** The ID of the comment to show likes for */
15
- commentId?: string;
16
- /** Functions used inside the modal */
17
- functions: {
18
- /** Function to call when the modal is closed */
19
- onClose?: () => void;
20
- };
21
- /** Additional classes */
22
- className?: string;
23
- }
24
- declare const LikesModal: ({ showModal, functions: modalFunctions, peopleWhoLiked, badges, likes, className, }: ILikesModalProps) => import("react/jsx-runtime").JSX.Element;
25
- export default LikesModal;
@@ -1 +0,0 @@
1
- export declare function useTooltipLinkset(setTooltipLink: (index: number) => void): (e: React.KeyboardEvent<HTMLElement> | undefined) => void;