pollination-react-io 1.1.0 → 1.2.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.
- package/build/GetGeometry/GetGeometry.types.d.ts +5 -1
- package/build/GetModel/GetModel.types.d.ts +5 -1
- package/build/RecipeInputsForm/RecipeInputsForm.d.ts +1 -0
- package/build/SelectAccount/SelectAccount.d.ts +1 -1
- package/build/SelectAccount/SelectAccount.types.d.ts +0 -1
- package/build/SelectProject/SelectProject.d.ts +1 -1
- package/build/SelectProject/SelectProject.types.d.ts +1 -2
- package/build/SelectStudy/SelectStudy.d.ts +1 -1
- package/build/SelectStudy/SelectStudy.types.d.ts +0 -1
- package/build/SendGeometry/SendGeometry.types.d.ts +1 -0
- package/build/SendModel/SendModel.types.d.ts +1 -0
- package/build/SendResults/SendResults.d.ts +1 -1
- package/build/atoms/ComboBox/ComboBox.types.d.ts +0 -1
- package/build/atoms/ConditionalWrapper/index.d.ts +7 -5
- package/build/atoms/InputDescription/InputDescription.d.ts +4 -0
- package/build/atoms/InputDescription/InputDescriptionTypes.d.ts +4 -0
- package/build/atoms/SettingsButton/index.d.ts +1 -1
- package/build/atoms/TextInput/TextInput.types.d.ts +1 -1
- package/build/atoms/index.d.ts +1 -0
- package/build/index.esm.js +128 -88
- package/build/index.esm.js.map +1 -1
- package/build/index.js +128 -88
- package/build/index.js.map +1 -1
- package/package.json +3 -1
|
@@ -5,6 +5,10 @@ export declare enum GetModelActions {
|
|
|
5
5
|
export interface GetGeometryProps {
|
|
6
6
|
setParentState?: (data: any) => void;
|
|
7
7
|
optionsConfig?: {
|
|
8
|
-
[index in GetModelActions]:
|
|
8
|
+
[index in GetModelActions]: {
|
|
9
|
+
show?: boolean;
|
|
10
|
+
selected?: boolean;
|
|
11
|
+
};
|
|
9
12
|
};
|
|
13
|
+
buttonLabel?: string;
|
|
10
14
|
}
|
|
@@ -5,6 +5,10 @@ export declare enum GetModelActions {
|
|
|
5
5
|
export interface GetModelProps {
|
|
6
6
|
setParentState?: (data: any) => any;
|
|
7
7
|
optionsConfig?: {
|
|
8
|
-
[index in GetModelActions]:
|
|
8
|
+
[index in GetModelActions]: {
|
|
9
|
+
show?: boolean;
|
|
10
|
+
selected?: boolean;
|
|
11
|
+
};
|
|
9
12
|
};
|
|
13
|
+
buttonLabel?: string;
|
|
10
14
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { SelectAccountProps } from './SelectAccount.types';
|
|
3
|
-
import '../styles/buttons.scss';
|
|
3
|
+
import '../styles/buttons-group.scss';
|
|
4
4
|
import '../styles/variables.scss';
|
|
5
5
|
export declare const SelectAccount: React.FC<SelectAccountProps>;
|
|
6
6
|
export default SelectAccount;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { SelectProjectProps } from './SelectProject.types';
|
|
3
|
-
import '../styles/buttons.scss';
|
|
3
|
+
import '../styles/buttons-group.scss';
|
|
4
4
|
import '../styles/variables.scss';
|
|
5
5
|
export declare const SelectProject: React.FC<SelectProjectProps>;
|
|
6
6
|
export default SelectProject;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { SelectStudyProps } from './SelectStudy.types';
|
|
3
|
-
import '../styles/buttons.scss';
|
|
3
|
+
import '../styles/buttons-group.scss';
|
|
4
4
|
import '../styles/variables.scss';
|
|
5
5
|
export declare const SelectStudy: React.FC<SelectStudyProps>;
|
|
6
6
|
export default SelectStudy;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
children: any;
|
|
5
|
-
}
|
|
1
|
+
import { FC, ReactNode } from 'react';
|
|
2
|
+
interface ConditionalWrapperProps {
|
|
3
|
+
condition: boolean;
|
|
4
|
+
wrapper: (children: ReactNode) => any;
|
|
5
|
+
}
|
|
6
|
+
export declare const ConditionalWrapper: FC<ConditionalWrapperProps>;
|
|
7
|
+
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React, { FC, ReactNode } from 'react';
|
|
2
2
|
import { OptionGroup } from '../Dropdown/Dropdown';
|
|
3
|
-
import '../../styles/buttons.scss';
|
|
3
|
+
import '../../styles/buttons-group.scss';
|
|
4
4
|
export interface SettingsButtonProps {
|
|
5
5
|
onClick: () => void;
|
|
6
6
|
label: string | ReactNode;
|
package/build/atoms/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export * from './ConditionalWrapper';
|
|
|
3
3
|
export * from './ComboBox/ComboBox';
|
|
4
4
|
export * from './Dropdown/Dropdown';
|
|
5
5
|
export * from './FileInput/FileInput';
|
|
6
|
+
export * from './InputDescription/InputDescription';
|
|
6
7
|
export * from './Label/Label';
|
|
7
8
|
export * from './Logo';
|
|
8
9
|
export * from './SettingsButton';
|