@apolitical/component-library 2.0.2-beta.0 → 2.0.3-beta.0

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.
@@ -2,7 +2,7 @@ interface Props {
2
2
  /** The type of response */
3
3
  type?: 'answer' | 'comment';
4
4
  /** The number of responses to show */
5
- responses: number | string;
5
+ responses: number;
6
6
  /** The language to use for the text */
7
7
  locale?: string;
8
8
  }
@@ -5,10 +5,6 @@ export namespace authors {
5
5
  namespace image {
6
6
  let thumbnail: string;
7
7
  }
8
- let jobTitle: string;
9
- namespace location {
10
- let country: string;
11
- }
12
8
  }
13
9
  namespace otherUser {
14
10
  let id_1: string;
@@ -7,9 +7,6 @@ export declare const activitySectionMock: {
7
7
  jobTitle: string;
8
8
  name: string;
9
9
  organization: string;
10
- location: {
11
- country: string;
12
- };
13
10
  };
14
11
  };
15
12
  content: string;
@@ -4,9 +4,6 @@ export interface IUser extends EnrichedUser {
4
4
  name?: string;
5
5
  organization?: string;
6
6
  jobTitle?: string;
7
- location?: {
8
- country?: string;
9
- };
10
7
  thumbnail?: string;
11
8
  };
12
9
  }