@osmandvc/react-upload-control 0.2.1 → 0.3.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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license @tabler/icons-react v3.24.0 - MIT
2
+ * @license @tabler/icons-react v3.26.0 - MIT
3
3
  *
4
4
  * This source code is licensed under the MIT license.
5
5
  * See the LICENSE file in the root directory of this source tree.
package/package.json CHANGED
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "@osmandvc/react-upload-control",
3
- "version": "0.2.1",
3
+ "version": "0.3.1",
4
4
  "description": "A completely free and open-source file uploader library designed for modern react applications. This package focuses on delivering a feature-rich experience while prioritizing an exceptional developer experience (DX). Whether you're handling simple uploads or complex multi-file scenarios, this library offers powerful customization, seamless integration, and a smooth workflow for developers. Perfect for those who need an efficient, flexible, and easy-to-use file uploader solution in their projects.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/osmandvc/react-upload-control.git"
10
+ },
7
11
  "files": [
8
12
  "dist",
9
13
  "dist/**/*.d.ts",
@@ -16,7 +20,8 @@
16
20
  "test": "jest",
17
21
  "lint": "eslint src/**/*.ts src/**/*.tsx",
18
22
  "storybook": "storybook dev -p 6006",
19
- "build-storybook": "storybook build"
23
+ "build-storybook": "storybook build",
24
+ "prepublishOnly": "npm run build"
20
25
  },
21
26
  "publishConfig": {
22
27
  "access": "public"
@@ -102,6 +107,7 @@
102
107
  "webpack": "^5.95.0",
103
108
  "webpack-bundle-analyzer": "^4.10.2",
104
109
  "webpack-cli": "^5.1.4",
105
- "webpack-dev-server": "^5.1.0"
110
+ "webpack-dev-server": "^5.1.0",
111
+ "@osmandvc/react-upload-control-processors": "file:../processors/osmandvc-react-upload-control-processors-0.0.1.tgz"
106
112
  }
107
113
  }
@@ -1,3 +0,0 @@
1
- import { PropsWithChildren } from "react";
2
- declare function FileUploadControlSimple(props: PropsWithChildren): import("react/jsx-runtime").JSX.Element;
3
- export default FileUploadControlSimple;
@@ -1,3 +0,0 @@
1
- import { PropsWithChildren } from "react";
2
- declare function FileUploadControlSmall(props: PropsWithChildren): import("react/jsx-runtime").JSX.Element;
3
- export default FileUploadControlSmall;
@@ -1,3 +0,0 @@
1
- import { PropsWithChildren } from "react";
2
- declare function FileUploadControlWithProgress(props: PropsWithChildren): import("react/jsx-runtime").JSX.Element;
3
- export default FileUploadControlWithProgress;