@uploadista/react-native-core 0.0.20-beta.8 → 0.0.20

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@uploadista/react-native-core",
3
- "version": "0.0.20-beta.8",
3
+ "version": "0.0.20",
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.8",
19
- "@uploadista/client-core": "0.0.20-beta.8"
18
+ "@uploadista/core": "0.0.20",
19
+ "@uploadista/client-core": "0.0.20"
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.18.0",
34
- "@uploadista/typescript-config": "0.0.20-beta.8"
34
+ "@uploadista/typescript-config": "0.0.20"
35
35
  },
36
36
  "scripts": {
37
37
  "build": "tsc --noEmit && tsdown",
@@ -49,3 +49,37 @@ export {
49
49
  type FlowQuickUploadProps,
50
50
  type FlowQuickUploadRenderProps,
51
51
  } from "./flow-primitives";
52
+
53
+ // Upload compound components
54
+ export {
55
+ Upload,
56
+ useUploadContext,
57
+ useUploadItemContext,
58
+ type UploadProps,
59
+ type UploadRenderProps,
60
+ type UploadContextValue,
61
+ type UploadItemContextValue,
62
+ type UploadFilePickerProps,
63
+ type UploadFilePickerRenderProps,
64
+ type UploadGalleryPickerProps,
65
+ type UploadGalleryPickerRenderProps,
66
+ type UploadCameraPickerProps,
67
+ type UploadCameraPickerRenderProps,
68
+ type UploadItemsProps,
69
+ type UploadItemsRenderProps,
70
+ type UploadItemProps,
71
+ type UploadProgressProps as UploadCompoundProgressProps,
72
+ type UploadProgressRenderProps as UploadCompoundProgressRenderProps,
73
+ type UploadStatusProps,
74
+ type UploadStatusRenderProps,
75
+ type UploadErrorProps,
76
+ type UploadErrorRenderProps,
77
+ type UploadCancelProps,
78
+ type UploadCancelRenderProps,
79
+ type UploadRetryProps,
80
+ type UploadRetryRenderProps,
81
+ type UploadResetProps,
82
+ type UploadResetRenderProps,
83
+ type UploadStartAllProps,
84
+ type UploadStartAllRenderProps,
85
+ } from "./upload-primitives";