@connectif/ui-components 6.0.2 → 6.0.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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [6.0.4] - 2026-03-26
4
+
5
+ ### Fixed
6
+
7
+ - Fixed an issue with the position of the `MinimizableWindow` component.
8
+
9
+ ## [6.0.3] - 2026-03-24
10
+
11
+ ### Fixed
12
+
13
+ - Fixed min width in `input` variant on `DateIntervalPicker` component.
14
+
3
15
  ## [6.0.2] - 2026-03-24
4
16
 
5
17
  ### Fixed
package/dist/index.js CHANGED
@@ -21342,6 +21342,9 @@ var DateIntervalPickerInputButton = ({
21342
21342
  {
21343
21343
  ref: inputRef,
21344
21344
  placeholder: dateInputFormatPlaceholder,
21345
+ inputSx: {
21346
+ minWidth: "166px"
21347
+ },
21345
21348
  endAdornment: /* @__PURE__ */ jsx115(
21346
21349
  Icon_default,
21347
21350
  {
@@ -28746,7 +28749,7 @@ var MinimizableWindow = React98.forwardRef(function MinimizableWindow2({
28746
28749
  Box_default2,
28747
28750
  {
28748
28751
  sx: {
28749
- position: "absolute",
28752
+ position: "fixed",
28750
28753
  zIndex: 999999,
28751
28754
  width: window.innerWidth,
28752
28755
  height: window.innerHeight,
@@ -28763,7 +28766,7 @@ var MinimizableWindow = React98.forwardRef(function MinimizableWindow2({
28763
28766
  {
28764
28767
  ref: overlayRef,
28765
28768
  sx: {
28766
- position: "absolute",
28769
+ position: "fixed",
28767
28770
  zIndex: 999998,
28768
28771
  bottom: "8px",
28769
28772
  left: window.innerWidth / 2 - sizes7[size] / 2,