pollination-react-io 1.92.9 → 1.93.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/package.json CHANGED
@@ -127,5 +127,5 @@
127
127
  "slugify": "^1.6.5",
128
128
  "swr": "^1.3.0"
129
129
  },
130
- "version": "1.92.9"
130
+ "version": "1.93.0"
131
131
  }
@@ -1,5 +0,0 @@
1
- import React from 'react';
2
- import { FilePreviewProps } from './FilePreview.types';
3
- import './FilePreview.scss';
4
- export declare const FilePreview: React.FC<FilePreviewProps>;
5
- export default FilePreview;
@@ -1,14 +0,0 @@
1
- import { FileMeta } from "@pollination-solutions/pollination-sdk";
2
- import { HTMLProps } from "react";
3
- import { APIClient } from "../hooks";
4
- export declare type FilePreviewProps = {
5
- projectOwner?: string;
6
- projectName?: string;
7
- jobId?: string;
8
- value?: FileMeta;
9
- inputProps?: HTMLProps<HTMLInputElement>;
10
- onPreviewChange?: (...any: any) => void;
11
- client?: APIClient;
12
- enableFilePicker?: boolean;
13
- localPath?: string;
14
- };
@@ -1,5 +0,0 @@
1
- import React from 'react';
2
- import { RunViewProps } from './RunView.types';
3
- import './RunView.scss';
4
- import 'react-circular-progressbar/dist/styles.css';
5
- export declare const CloudRunView: React.FC<RunViewProps>;
@@ -1,4 +0,0 @@
1
- import React from 'react';
2
- import { RunViewProps } from './RunView.types';
3
- import './RunView.scss';
4
- export declare const LocalRunView: React.FC<RunViewProps>;
File without changes
@@ -1,4 +0,0 @@
1
- import React from 'react';
2
- import { RunViewProps } from './RunView.types';
3
- import './RunView.scss';
4
- export declare const RunView: React.FC<RunViewProps>;
@@ -1,11 +0,0 @@
1
- import type { UserPrivate } from '@pollination-solutions/pollination-sdk';
2
- import { APIClient } from '../hooks';
3
- import { TreeUnit } from '../atoms/TreeView/Tree.types';
4
- export declare type RunViewProps = {
5
- projectName: string;
6
- projectOwner: string | undefined;
7
- authUser?: UserPrivate;
8
- client?: APIClient;
9
- runId?: string | undefined;
10
- getNodeFromTree?: (node: TreeUnit) => any;
11
- };