pollination-react-io 1.16.0 → 1.16.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 React from 'react';
2
2
  import { RunCardProps } from './RunCard.types';
3
3
  import './RunCard.scss';
4
- declare const RunCard: React.FC<RunCardProps>;
4
+ export declare const RunCard: React.FC<RunCardProps>;
5
5
  export default RunCard;
@@ -1,10 +1,12 @@
1
1
  import { Run, UserPrivate } from '@pollination-solutions/pollination-sdk';
2
+ import { CSSProperties } from 'react';
2
3
  import { APIClient } from '../hooks';
3
4
  export interface RunCardProps {
4
5
  projectOwner: string;
5
6
  projectName: string;
6
7
  jobId: string;
7
8
  run: Run;
9
+ style?: CSSProperties;
8
10
  client?: APIClient;
9
11
  authUser?: UserPrivate;
10
12
  }
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
2
  import { StudyCardProps } from './StudyCard.types';
3
3
  import './StudyCard.scss';
4
- declare const StudyCard: React.FC<StudyCardProps>;
4
+ export declare const StudyCard: React.FC<StudyCardProps>;
5
5
  export default StudyCard;
@@ -1,9 +1,11 @@
1
1
  import { CloudJob, UserPrivate } from '@pollination-solutions/pollination-sdk';
2
+ import { CSSProperties } from 'react';
2
3
  import { APIClient } from '../hooks';
3
4
  export interface StudyCardProps {
4
5
  projectOwner: string;
5
6
  projectName: string;
6
7
  study: CloudJob;
8
+ style?: CSSProperties;
7
9
  authUser?: UserPrivate;
8
10
  client: APIClient;
9
11
  }
@@ -1,19 +1,21 @@
1
1
  export * from './Avatar/Avatar';
2
- export * from './ConditionalWrapper';
2
+ export * from './Button/Button';
3
+ export * from './ButtonGroup/ButtonGroup';
3
4
  export * from './ComboBox/ComboBox';
5
+ export * from './ConditionalWrapper';
4
6
  export * from './Dropdown/Dropdown';
5
7
  export * from './FileInput/FileInput';
6
8
  export * from './InputDescription/InputDescription';
7
- export * from './RadioList/RadioList';
8
9
  export * from './Label/Label';
9
10
  export * from './LoadingIcon/LoadingIcon';
10
11
  export * from './Logo';
11
12
  export * from './NumberInput/NumberInput';
13
+ export * from './RadioList/RadioList';
14
+ export * from './ScrollZone/ScrollZone';
12
15
  export * from './SettingsButton';
13
16
  export * from './Tag/Tag';
14
17
  export * from './TextInput/TextInput';
15
18
  export * from './Tooltip';
16
- export { AvatarProps } from './Avatar/Avatar';
17
19
  export { ButtonProps } from './Button/Button.types';
18
20
  export { ComboBoxProps } from './ComboBox/ComboBox.types';
19
21
  export { FileInputProps } from './FileInput/FileInput.types';
@@ -1,13 +1,14 @@
1
- export type { PanelMessageIn, PanelMessageOut, Coordinates, SettingsOptions, } from './types';
1
+ export * from './types';
2
2
  export * from './useAPIClient';
3
+ export * from './useArtifacts';
3
4
  export * from './useCreateStudy';
4
- export * from './useGetHbjson';
5
5
  export * from './useGetGeometry';
6
- export * from './useSendHbjson';
7
- export * from './useSendMessage';
6
+ export * from './useGetHbjson';
7
+ export * from './useHbjsontoVTK';
8
+ export * from './useJobs';
9
+ export * from './useManageSettings';
8
10
  export * from './useRunCommand';
9
11
  export * from './useRuns';
10
- export * from './useManageSettings';
11
- export * from './useHbjsontoVTK';
12
- export * from './useArtifacts';
12
+ export * from './useSendHbjson';
13
+ export * from './useSendMessage';
13
14
  export * from './utilities';
package/build/index.d.ts CHANGED
@@ -1,19 +1,22 @@
1
1
  export * from './hooks';
2
2
  export * from './AuthUser/AuthUser';
3
- export * from './CreateStudy/CreateStudy';
4
3
  export * from './ComboFileSelector/ComboFileSelector';
5
4
  export * from './ConfigureLocalRun/ConfigureLocalRun';
5
+ export * from './CreateStudy/CreateStudy';
6
6
  export * from './GetGeometry/GetGeometry';
7
7
  export * from './GetModel/GetModel';
8
8
  export * from './RecipeInputsForm/RecipeInputsForm';
9
+ export * from './RunCard/RunCard';
9
10
  export * from './RunCommand/RunCommand';
11
+ export * from './RunsList/RunsList';
10
12
  export * from './SelectAccount/SelectAccount';
11
13
  export * from './SelectCloudArtifacts/SelectCloudArtifacts';
12
14
  export * from './SelectLocalArtifacts/SelectLocalArtifacts';
13
- export * from './SelectStudy/SelectStudy';
14
15
  export * from './SelectProject/SelectProject';
15
16
  export * from './SelectRecipe/SelectRecipe';
16
17
  export * from './SelectRun/SelectRun';
18
+ export * from './SelectStudy/SelectStudy';
17
19
  export * from './SendGeometry/SendGeometry';
18
20
  export * from './SendModel/SendModel';
19
21
  export * from './SendResults/SendResults';
22
+ export * from './StudyCard/StudyCard';