@connectif/ui-components 5.4.2 → 5.5.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.
- package/CHANGELOG.md +17 -0
- package/dist/components/input/UploadClickableArea.d.ts +5 -1
- package/dist/index.js +299 -245
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [5.5.1] - 2026-03-10
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Fixed an issue that caused some `Select` options to have an internal scroll bar.
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- Added drag and drop support for `UploadClickableArea`. The element to show while dragging over the component can be set by a new optional property `draggingOverElement`.
|
|
12
|
+
|
|
13
|
+
## [5.5.0] - 2026-03-02
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- Fixed issue with `TimeField` component where input events were not working properly.
|
|
18
|
+
- Updated input components styles when `disabled` is true.
|
|
19
|
+
|
|
3
20
|
## [5.4.2] - 2026-02-26
|
|
4
21
|
|
|
5
22
|
### Fixed
|
|
@@ -9,6 +9,10 @@ export type UploadClickableAreaProps = React.PropsWithChildren<{
|
|
|
9
9
|
* Raised when a file is uploaded. The file is passed as the argument.
|
|
10
10
|
*/
|
|
11
11
|
onFilesChanged: (file: FileList) => void;
|
|
12
|
+
/**
|
|
13
|
+
* Component to be rendered inside the upload area while dragging files over it.
|
|
14
|
+
*/
|
|
15
|
+
draggingOverElement?: React.ReactNode;
|
|
12
16
|
}>;
|
|
13
|
-
declare const UploadClickableArea: ({ accept, onFilesChanged, children }: UploadClickableAreaProps) => import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
declare const UploadClickableArea: ({ accept, onFilesChanged, children, draggingOverElement }: UploadClickableAreaProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
18
|
export default UploadClickableArea;
|