@cyber-harbour/ui 2.1.26-beta.3 → 2.1.26-beta.4
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/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +40 -35
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +40 -35
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2008,6 +2008,7 @@ type FileViewerProps = {
|
|
|
2008
2008
|
extension: SupportedFileExtension;
|
|
2009
2009
|
not_supported_message?: string;
|
|
2010
2010
|
csvLabels?: CsvDriverLabels;
|
|
2011
|
+
onCsvRetry?: () => Promise<ReadableStream<Uint8Array>> | ReadableStream<Uint8Array>;
|
|
2011
2012
|
};
|
|
2012
2013
|
declare const FileViewer: (props: FileViewerProps) => react_jsx_runtime.JSX.Element;
|
|
2013
2014
|
|
package/dist/index.d.ts
CHANGED
|
@@ -2008,6 +2008,7 @@ type FileViewerProps = {
|
|
|
2008
2008
|
extension: SupportedFileExtension;
|
|
2009
2009
|
not_supported_message?: string;
|
|
2010
2010
|
csvLabels?: CsvDriverLabels;
|
|
2011
|
+
onCsvRetry?: () => Promise<ReadableStream<Uint8Array>> | ReadableStream<Uint8Array>;
|
|
2011
2012
|
};
|
|
2012
2013
|
declare const FileViewer: (props: FileViewerProps) => react_jsx_runtime.JSX.Element;
|
|
2013
2014
|
|