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.
- package/build/RunCard/RunCard.d.ts +1 -1
- package/build/RunCard/RunCard.types.d.ts +2 -0
- package/build/StudyCard/StudyCard.d.ts +1 -1
- package/build/StudyCard/StudyCard.types.d.ts +2 -0
- package/build/atoms/index.d.ts +5 -3
- package/build/hooks/index.d.ts +8 -7
- package/build/index.d.ts +5 -2
- package/build/index.esm.js +6672 -4910
- package/build/index.esm.js.map +1 -1
- package/build/index.js +6673 -4908
- package/build/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -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,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
|
}
|
package/build/atoms/index.d.ts
CHANGED
|
@@ -1,19 +1,21 @@
|
|
|
1
1
|
export * from './Avatar/Avatar';
|
|
2
|
-
export * from './
|
|
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';
|
package/build/hooks/index.d.ts
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
export
|
|
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 './
|
|
7
|
-
export * from './
|
|
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 './
|
|
11
|
-
export * from './
|
|
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';
|