pollination-react-io 1.83.0 → 1.85.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.
@@ -16,6 +16,6 @@ export interface SendGeometryProps {
16
16
  [index in Action]: boolean;
17
17
  };
18
18
  geometryOptions?: GeometryOptions;
19
- onVisibleChange?: (visible: boolean) => any;
19
+ onOverlayHeightChange?: (height: number) => any;
20
20
  }
21
21
  export {};
@@ -13,5 +13,5 @@ export interface SendModelProps {
13
13
  optionsConfig?: {
14
14
  [index in Action]: boolean;
15
15
  };
16
- onVisibleChange?: (visible: boolean) => any;
16
+ onOverlayHeightChange?: (height: number) => any;
17
17
  }
@@ -17,6 +17,6 @@ export interface SendResultsProps {
17
17
  [index in Action]: boolean;
18
18
  };
19
19
  geometryOptions?: ResultsOptions;
20
- onVisibleChange?: (visible: boolean) => any;
20
+ onOverlayHeightChange?: (height: number) => any;
21
21
  }
22
22
  export {};
@@ -21,6 +21,6 @@ export interface BaseDropdownProps {
21
21
  action?: 'hover' | 'click';
22
22
  activeId?: string;
23
23
  selectedStyle?: CSSProperties;
24
- onVisibleChange?: (visible: boolean) => any;
24
+ onOverlayHeightChange?: (height: number) => any;
25
25
  }
26
26
  export declare const BaseDropdown: FC<BaseDropdownProps>;
@@ -5,6 +5,7 @@ export declare const useRuns: (client: APIClient) => {
5
5
  listRuns: (projectOwner: string, projectName: string, jobId?: string[], page?: number, perPage?: number, statusFilter?: RunStatusEnum) => Promise<import("@pollination-solutions/pollination-sdk").RunList>;
6
6
  fetchRun: (projectOwner: string, projectName: string, runId: string) => Promise<Run>;
7
7
  cancelRun: (projectOwner: string, projectName: string, runId: string) => Promise<any>;
8
+ retryRun: (projectOwner: string, projectName: string, runId: string) => Promise<any>;
8
9
  statusMap: {
9
10
  Created: {
10
11
  color: string;