@uploadista/react-native-core 0.0.20-beta.3 → 0.0.20-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 +7 -7
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -4,7 +4,7 @@ import * as _uploadista_client_core3 from "@uploadista/client-core";
|
|
|
4
4
|
import { Base64Service, ConnectionMetrics, ConnectionPoolConfig, ConnectionPoolConfig as ConnectionPoolConfig$1, DetailedConnectionMetrics, FileReaderService, FlowManager, FlowManagerCallbacks, FlowUploadOptions, FlowUploadState, FlowUploadStatus, HttpClient, IdGenerationService, InputExecutionState, ServiceContainer, ServiceContainer as ServiceContainer$1, StorageService, UploadState, UploadStatus, UploadistaClientOptions, UploadistaEvent } from "@uploadista/client-core";
|
|
5
5
|
import { TypedOutput } from "@uploadista/core/flow";
|
|
6
6
|
import { UploadFile } from "@uploadista/core/types";
|
|
7
|
-
import * as
|
|
7
|
+
import * as react_jsx_runtime1 from "react/jsx-runtime";
|
|
8
8
|
import * as _uploadista_core0 from "@uploadista/core";
|
|
9
9
|
|
|
10
10
|
//#region src/types/types.d.ts
|
|
@@ -283,7 +283,7 @@ declare function CameraUploadButton({
|
|
|
283
283
|
onError,
|
|
284
284
|
onCancel,
|
|
285
285
|
showProgress
|
|
286
|
-
}: CameraUploadButtonProps):
|
|
286
|
+
}: CameraUploadButtonProps): react_jsx_runtime1.JSX.Element;
|
|
287
287
|
//#endregion
|
|
288
288
|
//#region src/components/FileUploadButton.d.ts
|
|
289
289
|
interface FileUploadButtonProps {
|
|
@@ -314,7 +314,7 @@ declare function FileUploadButton({
|
|
|
314
314
|
onError,
|
|
315
315
|
onCancel,
|
|
316
316
|
showProgress
|
|
317
|
-
}: FileUploadButtonProps):
|
|
317
|
+
}: FileUploadButtonProps): react_jsx_runtime1.JSX.Element;
|
|
318
318
|
//#endregion
|
|
319
319
|
//#region src/components/GalleryUploadButton.d.ts
|
|
320
320
|
interface GalleryUploadButtonProps {
|
|
@@ -345,7 +345,7 @@ declare function GalleryUploadButton({
|
|
|
345
345
|
onError,
|
|
346
346
|
onCancel,
|
|
347
347
|
showProgress
|
|
348
|
-
}: GalleryUploadButtonProps):
|
|
348
|
+
}: GalleryUploadButtonProps): react_jsx_runtime1.JSX.Element;
|
|
349
349
|
//#endregion
|
|
350
350
|
//#region src/components/UploadList.d.ts
|
|
351
351
|
interface UploadListProps {
|
|
@@ -367,7 +367,7 @@ declare function UploadList({
|
|
|
367
367
|
onRemove,
|
|
368
368
|
onItemPress,
|
|
369
369
|
showRemoveButton
|
|
370
|
-
}: UploadListProps):
|
|
370
|
+
}: UploadListProps): react_jsx_runtime1.JSX.Element;
|
|
371
371
|
//#endregion
|
|
372
372
|
//#region src/components/UploadProgress.d.ts
|
|
373
373
|
interface UploadProgressProps {
|
|
@@ -382,7 +382,7 @@ interface UploadProgressProps {
|
|
|
382
382
|
declare function UploadProgress({
|
|
383
383
|
state,
|
|
384
384
|
label
|
|
385
|
-
}: UploadProgressProps):
|
|
385
|
+
}: UploadProgressProps): react_jsx_runtime1.JSX.Element;
|
|
386
386
|
//#endregion
|
|
387
387
|
//#region src/contexts/flow-manager-context.d.ts
|
|
388
388
|
/**
|
|
@@ -432,7 +432,7 @@ interface FlowManagerProviderProps {
|
|
|
432
432
|
*/
|
|
433
433
|
declare function FlowManagerProvider({
|
|
434
434
|
children
|
|
435
|
-
}: FlowManagerProviderProps):
|
|
435
|
+
}: FlowManagerProviderProps): react_jsx_runtime1.JSX.Element;
|
|
436
436
|
/**
|
|
437
437
|
* Hook to access the FlowManager context.
|
|
438
438
|
* Must be used within a FlowManagerProvider.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uploadista/react-native-core",
|
|
3
|
-
"version": "0.0.20-beta.
|
|
3
|
+
"version": "0.0.20-beta.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Core React Native client for Uploadista",
|
|
6
6
|
"license": "MIT",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"uuid": "^13.0.0",
|
|
17
17
|
"js-base64": "^3.7.7",
|
|
18
|
-
"@uploadista/core": "0.0.20-beta.
|
|
19
|
-
"@uploadista/client-core": "0.0.20-beta.
|
|
18
|
+
"@uploadista/core": "0.0.20-beta.4",
|
|
19
|
+
"@uploadista/client-core": "0.0.20-beta.4"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"react": ">=16.8.0",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/react": ">=18.0.0",
|
|
33
33
|
"tsdown": "0.17.2",
|
|
34
|
-
"@uploadista/typescript-config": "0.0.20-beta.
|
|
34
|
+
"@uploadista/typescript-config": "0.0.20-beta.4"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"build": "tsdown",
|