pollination-react-io 1.38.2 → 1.40.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.
@@ -4,6 +4,7 @@ import { APIClient } from '../hooks';
4
4
  export interface RunCardProps {
5
5
  projectOwner: string;
6
6
  projectName: string;
7
+ enableClick?: boolean;
7
8
  run?: Run;
8
9
  style?: CSSProperties;
9
10
  authUser?: UserPrivate;
@@ -8,4 +8,5 @@ export interface StudyCardProps {
8
8
  style?: CSSProperties;
9
9
  authUser?: UserPrivate;
10
10
  client?: APIClient;
11
+ enableClick?: boolean;
11
12
  }
@@ -1,11 +1,14 @@
1
+ import { CSSProperties } from 'react';
1
2
  import { APIClient } from '../hooks';
2
3
  import { FileCardProps } from './Cards/FileCard';
3
4
  export interface RunContentProps {
5
+ title: string;
4
6
  inputData: any[];
5
7
  studyId?: string;
6
8
  runId?: string;
7
9
  projectOwner?: string;
8
10
  projectName?: string;
9
11
  client?: APIClient;
12
+ style?: CSSProperties;
10
13
  getCardValue?: (card: FileCardProps) => any;
11
14
  }
@@ -1,4 +1,5 @@
1
1
  import { Run, UserPrivate } from '@pollination-solutions/pollination-sdk';
2
+ import { CSSProperties } from 'react';
2
3
  import { APIClient } from '../hooks';
3
4
  import { FileCardProps } from './Cards/FileCard';
4
5
  export interface LocalRun {
@@ -14,5 +15,6 @@ export interface RunDetailsProps {
14
15
  runId?: string;
15
16
  authUser?: UserPrivate;
16
17
  client?: APIClient;
18
+ style?: CSSProperties;
17
19
  getCardValue?: (card: FileCardProps) => any;
18
20
  }
@@ -6,6 +6,7 @@ export interface AvatarProps {
6
6
  src?: string;
7
7
  size?: number;
8
8
  style?: CSSProperties;
9
+ color?: string;
9
10
  }
10
11
  export declare const Avatar: React.FC<AvatarProps>;
11
12
  export default Avatar;