tempest-react-sdk 0.19.1 → 0.20.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.
@@ -6919,6 +6919,15 @@ export declare interface UseOAuthCallbackResult<T> {
6919
6919
  status: "pending" | "success" | "error";
6920
6920
  }
6921
6921
 
6922
+ /**
6923
+ * Create an object URL for a `Blob` (or `File`) and revoke it automatically on
6924
+ * unmount or whenever the blob changes. Returns `null` for nullish input.
6925
+ *
6926
+ * @param blob - the blob to expose as an object URL, or `null`/`undefined`.
6927
+ * @returns The object URL string, or `null` when there is no blob.
6928
+ */
6929
+ export declare function useObjectUrl(blob: Blob | null | undefined): string | null;
6930
+
6922
6931
  /**
6923
6932
  * Query a single record by id through the active {@link useDataProvider}.
6924
6933
  *