@uploadista/react-native-core 0.0.20-beta.9 → 0.1.0-beta.5
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 +762 -155
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
- package/src/components/flow-primitives.tsx +11 -4
- package/src/components/index.ts +55 -22
- package/src/components/upload-primitives.tsx +994 -0
- package/src/index.ts +52 -21
package/src/index.ts
CHANGED
|
@@ -33,41 +33,72 @@ export {
|
|
|
33
33
|
type CameraUploadButtonProps,
|
|
34
34
|
FileUploadButton,
|
|
35
35
|
type FileUploadButtonProps,
|
|
36
|
-
GalleryUploadButton,
|
|
37
|
-
type GalleryUploadButtonProps,
|
|
38
|
-
UploadList,
|
|
39
|
-
type UploadListProps,
|
|
40
|
-
UploadProgress,
|
|
41
|
-
type UploadProgressProps,
|
|
42
36
|
// Flow compound components
|
|
43
37
|
Flow,
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
type FlowProps,
|
|
47
|
-
type FlowRenderProps,
|
|
38
|
+
type FlowCancelProps,
|
|
39
|
+
type FlowCancelRenderProps,
|
|
48
40
|
type FlowContextValue,
|
|
41
|
+
type FlowErrorProps,
|
|
42
|
+
type FlowErrorRenderProps,
|
|
49
43
|
type FlowInputContextValue,
|
|
50
|
-
type FlowInputsProps,
|
|
51
|
-
type FlowInputsRenderProps,
|
|
52
|
-
type FlowInputProps,
|
|
53
44
|
type FlowInputFilePickerProps,
|
|
54
45
|
type FlowInputFilePickerRenderProps,
|
|
55
46
|
type FlowInputPreviewProps,
|
|
56
47
|
type FlowInputPreviewRenderProps,
|
|
48
|
+
type FlowInputProps,
|
|
49
|
+
type FlowInputsProps,
|
|
50
|
+
type FlowInputsRenderProps,
|
|
57
51
|
type FlowProgressProps,
|
|
58
52
|
type FlowProgressRenderProps,
|
|
53
|
+
type FlowProps,
|
|
54
|
+
type FlowQuickUploadProps,
|
|
55
|
+
type FlowQuickUploadRenderProps,
|
|
56
|
+
type FlowRenderProps,
|
|
57
|
+
type FlowResetProps,
|
|
58
|
+
type FlowResetRenderProps,
|
|
59
59
|
type FlowStatusProps,
|
|
60
60
|
type FlowStatusRenderProps,
|
|
61
|
-
type FlowErrorProps,
|
|
62
|
-
type FlowErrorRenderProps,
|
|
63
61
|
type FlowSubmitProps,
|
|
64
62
|
type FlowSubmitRenderProps,
|
|
65
|
-
|
|
66
|
-
type
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
type
|
|
70
|
-
type
|
|
63
|
+
GalleryUploadButton,
|
|
64
|
+
type GalleryUploadButtonProps,
|
|
65
|
+
// Upload compound components
|
|
66
|
+
Upload,
|
|
67
|
+
type UploadCameraPickerProps,
|
|
68
|
+
type UploadCameraPickerRenderProps,
|
|
69
|
+
type UploadCancelProps,
|
|
70
|
+
type UploadCancelRenderProps,
|
|
71
|
+
type UploadCompoundProgressProps,
|
|
72
|
+
type UploadCompoundProgressRenderProps,
|
|
73
|
+
type UploadContextValue,
|
|
74
|
+
type UploadErrorProps,
|
|
75
|
+
type UploadErrorRenderProps,
|
|
76
|
+
type UploadFilePickerProps,
|
|
77
|
+
type UploadFilePickerRenderProps,
|
|
78
|
+
type UploadGalleryPickerProps,
|
|
79
|
+
type UploadGalleryPickerRenderProps,
|
|
80
|
+
type UploadItemContextValue,
|
|
81
|
+
type UploadItemProps,
|
|
82
|
+
type UploadItemsProps,
|
|
83
|
+
type UploadItemsRenderProps,
|
|
84
|
+
UploadList,
|
|
85
|
+
type UploadListProps,
|
|
86
|
+
UploadProgress,
|
|
87
|
+
type UploadProgressProps,
|
|
88
|
+
type UploadProps,
|
|
89
|
+
type UploadRenderProps,
|
|
90
|
+
type UploadResetProps,
|
|
91
|
+
type UploadResetRenderProps,
|
|
92
|
+
type UploadRetryProps,
|
|
93
|
+
type UploadRetryRenderProps,
|
|
94
|
+
type UploadStartAllProps,
|
|
95
|
+
type UploadStartAllRenderProps,
|
|
96
|
+
type UploadStatusProps,
|
|
97
|
+
type UploadStatusRenderProps,
|
|
98
|
+
useFlowContext,
|
|
99
|
+
useFlowInputContext,
|
|
100
|
+
useUploadContext,
|
|
101
|
+
useUploadItemContext,
|
|
71
102
|
} from "./components";
|
|
72
103
|
// Export contexts
|
|
73
104
|
export {
|