@synerise/ds-file-uploader 2.1.2 → 2.1.4
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/CHANGELOG.md +12 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +4 -4
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.1.4](https://github.com/Synerise/synerise-design/compare/@synerise/ds-file-uploader@2.1.3...@synerise/ds-file-uploader@2.1.4) (2026-09-18)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @synerise/ds-file-uploader
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [2.1.3](https://github.com/Synerise/synerise-design/compare/@synerise/ds-file-uploader@2.1.2...@synerise/ds-file-uploader@2.1.3) (2026-09-16)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @synerise/ds-file-uploader
|
|
17
|
+
|
|
6
18
|
## [2.1.2](https://github.com/Synerise/synerise-design/compare/@synerise/ds-file-uploader@2.1.1...@synerise/ds-file-uploader@2.1.2) (2026-09-08)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @synerise/ds-file-uploader
|
package/dist/index.d.ts
CHANGED
|
@@ -2,11 +2,11 @@ import * as AvatarUploaderStyles from './AvatarUploader/AvatarUploader.styles';
|
|
|
2
2
|
import * as Styles from './FileUploader.styles';
|
|
3
3
|
import * as FileViewStyles from './FileView/FileView.styles';
|
|
4
4
|
import * as ItemUploaderStyles from './ItemUploader/ItemUploader.styles';
|
|
5
|
-
export { default } from './FileUploader';
|
|
6
5
|
export { default as AvatarUploader } from './AvatarUploader/AvatarUploader';
|
|
6
|
+
export { default } from './FileUploader';
|
|
7
|
+
export type { ExtendedFile, FileContent, FileUploaderProps, FileUploaderRef, FileWithContent, } from './FileUploader.types';
|
|
7
8
|
export { default as ItemUploader } from './ItemUploader/ItemUploader';
|
|
8
9
|
export type { ItemUploaderProps } from './ItemUploader/ItemUploader.types';
|
|
9
|
-
export type { FileUploaderProps, ExtendedFile, FileWithContent, FileUploaderRef, FileContent, } from './FileUploader.types';
|
|
10
10
|
export declare const FileUploaderStyles: {
|
|
11
11
|
FileUploader: typeof Styles;
|
|
12
12
|
FileView: typeof FileViewStyles;
|
package/dist/index.js
CHANGED
|
@@ -2,8 +2,8 @@ import * as AvatarUploader_AvatarUploader_styles from "./AvatarUploader/AvatarUp
|
|
|
2
2
|
import * as FileUploader_styles from "./FileUploader.styles.js";
|
|
3
3
|
import * as FileView_FileView_styles from "./FileView/FileView.styles.js";
|
|
4
4
|
import * as ItemUploader_ItemUploader_styles from "./ItemUploader/ItemUploader.styles.js";
|
|
5
|
-
import { default as default2 } from "./
|
|
6
|
-
import { default as default3 } from "./
|
|
5
|
+
import { default as default2 } from "./AvatarUploader/AvatarUploader.js";
|
|
6
|
+
import { default as default3 } from "./FileUploader.js";
|
|
7
7
|
import { default as default4 } from "./ItemUploader/ItemUploader.js";
|
|
8
8
|
const FileUploaderStyles = {
|
|
9
9
|
FileUploader: FileUploader_styles,
|
|
@@ -12,8 +12,8 @@ const FileUploaderStyles = {
|
|
|
12
12
|
AvatarUploader: AvatarUploader_AvatarUploader_styles
|
|
13
13
|
};
|
|
14
14
|
export {
|
|
15
|
-
|
|
15
|
+
default2 as AvatarUploader,
|
|
16
16
|
FileUploaderStyles,
|
|
17
17
|
default4 as ItemUploader,
|
|
18
|
-
|
|
18
|
+
default3 as default
|
|
19
19
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@synerise/ds-file-uploader",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.4",
|
|
4
4
|
"description": "FileUploader UI Component for the Synerise Design System",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"repository": "Synerise/synerise-design",
|
|
@@ -42,14 +42,14 @@
|
|
|
42
42
|
],
|
|
43
43
|
"types": "dist/index.d.ts",
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@synerise/ds-button": "^2.0.
|
|
46
|
-
"@synerise/ds-icon": "^2.1.
|
|
47
|
-
"@synerise/ds-loader": "^2.0.
|
|
48
|
-
"@synerise/ds-popconfirm": "^2.0.
|
|
49
|
-
"@synerise/ds-progress-bar": "^2.0.
|
|
50
|
-
"@synerise/ds-tooltip": "^2.0.
|
|
51
|
-
"@synerise/ds-typography": "^2.0.
|
|
52
|
-
"@synerise/ds-utils": "^2.
|
|
45
|
+
"@synerise/ds-button": "^2.0.4",
|
|
46
|
+
"@synerise/ds-icon": "^2.1.2",
|
|
47
|
+
"@synerise/ds-loader": "^2.0.1",
|
|
48
|
+
"@synerise/ds-popconfirm": "^2.0.4",
|
|
49
|
+
"@synerise/ds-progress-bar": "^2.0.4",
|
|
50
|
+
"@synerise/ds-tooltip": "^2.0.4",
|
|
51
|
+
"@synerise/ds-typography": "^2.0.4",
|
|
52
|
+
"@synerise/ds-utils": "^2.1.1",
|
|
53
53
|
"filesize.js": "^2.0.0",
|
|
54
54
|
"react-dropzone": "^10.2.1"
|
|
55
55
|
},
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"styled-components": "^5.3.3",
|
|
61
61
|
"vitest": "4"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "b1d905617dfb186b5d80966d63ce55bf29df743d"
|
|
64
64
|
}
|