@apolitical/component-library 7.0.3-ac.0 → 7.0.3-ac.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.
@@ -1,5 +1,5 @@
1
1
  import { IMemberComponentProps } from '../member.types';
2
- export interface Props {
2
+ export interface IConnectionCtaProps {
3
3
  functions: {
4
4
  onAccept?: () => void;
5
5
  onDecline?: () => void;
@@ -10,4 +10,4 @@ export interface Props {
10
10
  connection: IMemberComponentProps['connection'];
11
11
  topLevelButton?: boolean;
12
12
  }
13
- export declare const ConnectionCta: ({ functions, connection, topLevelButton, }: Props) => import("react/jsx-runtime").JSX.Element;
13
+ export declare const ConnectionCta: ({ functions, connection, topLevelButton, }: IConnectionCtaProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,4 @@
1
1
  export { default as Member } from './member';
2
- export type { IMemberComponentProps, MemberProps, MemberDetailsProps, } from './member.types';
2
+ export { ConnectionCta, type IConnectionCtaProps } from './components';
3
+ export { ConnectionStatusType, ConnectionDirectionType, type IMemberComponentProps, type MemberProps, type MemberDetailsProps, } from './member.types';
3
4
  export { getMember } from './member.helpers';