@uploadista/react 0.0.11 → 0.0.13-beta.1

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uploadista/react",
3
3
  "type": "module",
4
- "version": "0.0.11",
4
+ "version": "0.0.13-beta.1",
5
5
  "description": "React client for Uploadista",
6
6
  "license": "MIT",
7
7
  "author": "Uploadista",
@@ -22,16 +22,16 @@
22
22
  "dependencies": {
23
23
  "react": "19.2.0",
24
24
  "react-dom": "19.2.0",
25
- "@uploadista/core": "0.0.11",
26
- "@uploadista/client-core": "0.0.11",
27
- "@uploadista/client-browser": "0.0.11"
25
+ "@uploadista/core": "0.0.13-beta.1",
26
+ "@uploadista/client-core": "0.0.13-beta.1",
27
+ "@uploadista/client-browser": "0.0.13-beta.1"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/react": "19.2.2",
31
31
  "@types/react-dom": "19.2.2",
32
32
  "tsdown": "0.16.0",
33
33
  "vitest": "4.0.7",
34
- "@uploadista/typescript-config": "0.0.11"
34
+ "@uploadista/typescript-config": "0.0.13-beta.1"
35
35
  },
36
36
  "scripts": {
37
37
  "build": "tsdown",
@@ -1,13 +1,4 @@
1
1
  // Flow Upload Hooks
2
- export type {
3
- FlowUploadState,
4
- FlowUploadStatus,
5
- UseFlowUploadReturn,
6
- } from "./use-flow-upload";
7
- export { useFlowUpload } from "./use-flow-upload";
8
-
9
- export type { UseMultiFlowUploadReturn } from "./use-multi-flow-upload";
10
- export { useMultiFlowUpload } from "./use-multi-flow-upload";
11
2
 
12
3
  // Upload Hooks
13
4
  export type {
@@ -16,6 +7,14 @@ export type {
16
7
  UseDragDropReturn,
17
8
  } from "./use-drag-drop";
18
9
  export { useDragDrop } from "./use-drag-drop";
10
+ export type {
11
+ FlowUploadState,
12
+ FlowUploadStatus,
13
+ UseFlowUploadReturn,
14
+ } from "./use-flow-upload";
15
+ export { useFlowUpload } from "./use-flow-upload";
16
+ export type { UseMultiFlowUploadReturn } from "./use-multi-flow-upload";
17
+ export { useMultiFlowUpload } from "./use-multi-flow-upload";
19
18
 
20
19
  export type {
21
20
  MultiUploadOptions,