pollination-react-io 1.9.1 → 1.9.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/ComboFileSelector/ComboFileSelector.d.ts +1 -0
- package/build/ComboFileSelector/ComboFileSelector.types.d.ts +1 -0
- package/build/ConfigureLocalRun/ConfigureLocalRun.types.d.ts +1 -0
- package/build/SelectCloudArtifacts/SelectCloudArtifacts.types.d.ts +1 -1
- package/build/SelectStudy/SelectStudy.types.d.ts +1 -2
- package/build/atoms/Avatar/Avatar.d.ts +1 -1
- package/build/atoms/Dropdown/Dropdown.d.ts +2 -2
- package/build/atoms/Logo/index.d.ts +6 -2
- package/build/atoms/RadioList/RadioList.types.d.ts +0 -1
- package/build/atoms/index.d.ts +2 -0
- package/build/index.esm.js +98 -86
- package/build/index.esm.js.map +1 -1
- package/build/index.js +98 -86
- package/build/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Project,
|
|
1
|
+
import { Project, UserPrivate } from '@pollination-solutions/pollination-sdk';
|
|
2
2
|
import { APIClient } from '../hooks';
|
|
3
3
|
export interface SelectStudyProps {
|
|
4
4
|
projectName?: string;
|
|
@@ -6,5 +6,4 @@ export interface SelectStudyProps {
|
|
|
6
6
|
authUser?: UserPrivate;
|
|
7
7
|
client?: APIClient;
|
|
8
8
|
setSelStudy?: (project: Project) => void;
|
|
9
|
-
queryConfig?: Partial<ProjectsApiListProjectsRequest>;
|
|
10
9
|
}
|
|
@@ -16,7 +16,7 @@ export declare type OptionGroup = {
|
|
|
16
16
|
type?: 'radio' | 'default';
|
|
17
17
|
value?: string;
|
|
18
18
|
};
|
|
19
|
-
interface DropdownProps {
|
|
19
|
+
export interface DropdownProps {
|
|
20
20
|
optionGroups: OptionGroup[];
|
|
21
21
|
trigger: React.ReactNode;
|
|
22
22
|
open?: boolean;
|
|
@@ -26,4 +26,4 @@ interface DropdownProps {
|
|
|
26
26
|
disabled?: boolean;
|
|
27
27
|
}
|
|
28
28
|
export declare const Dropdown: FC<DropdownProps>;
|
|
29
|
-
export
|
|
29
|
+
export default Dropdown;
|
package/build/atoms/index.d.ts
CHANGED
|
@@ -11,6 +11,8 @@ export * from './NumberInput/NumberInput';
|
|
|
11
11
|
export * from './SettingsButton';
|
|
12
12
|
export * from './TextInput/TextInput';
|
|
13
13
|
export * from './Tooltip';
|
|
14
|
+
export { AvatarProps } from './Avatar/Avatar';
|
|
15
|
+
export { ButtonProps } from './Button/Button.types';
|
|
14
16
|
export { ComboBoxProps } from './ComboBox/ComboBox.types';
|
|
15
17
|
export { FileInputProps } from './FileInput/FileInput.types';
|
|
16
18
|
export { LabelProps } from './Label/Label.types';
|