@osmandvc/react-upload-control 0.2.1 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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,6 +1,6 @@
1
1
  {
2
2
  "name": "@osmandvc/react-upload-control",
3
- "version": "0.2.1",
3
+ "version": "0.3.0",
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",
@@ -16,7 +16,8 @@
16
16
  "test": "jest",
17
17
  "lint": "eslint src/**/*.ts src/**/*.tsx",
18
18
  "storybook": "storybook dev -p 6006",
19
- "build-storybook": "storybook build"
19
+ "build-storybook": "storybook build",
20
+ "prepublishOnly": "npm run build"
20
21
  },
21
22
  "publishConfig": {
22
23
  "access": "public"
@@ -102,6 +103,7 @@
102
103
  "webpack": "^5.95.0",
103
104
  "webpack-bundle-analyzer": "^4.10.2",
104
105
  "webpack-cli": "^5.1.4",
105
- "webpack-dev-server": "^5.1.0"
106
+ "webpack-dev-server": "^5.1.0",
107
+ "@osmandvc/react-upload-control-processors": "file:../processors/osmandvc-react-upload-control-processors-0.0.1.tgz"
106
108
  }
107
109
  }
@@ -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;