@croquiscom/pds 7.3.0-next.2 → 7.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.
package/CHANGELOG.md CHANGED
@@ -1,10 +1,20 @@
1
1
  # @croquiscom/pds
2
2
 
3
- ## 7.3.0-next.2
3
+ ## 7.3.1
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - c05eeaf: DateRangePicker에서 TimePicker 클릭시 닫히는 이슈 수정
7
+ - c01f653: @floating-ui/react ^0.18.0 -> ^0.26.4 업데이트건 리버트 (https://github.com/croquiscom/partner/pull/7600)
8
+
9
+ ## 7.3.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 10425dc: @floating-ui/react ^0.18.0 -> ^0.26.4 업데이트
14
+
15
+ ### Patch Changes
16
+
17
+ - 10425dc: FloaingPortal은 조건부로 렌더링되도록 수정
8
18
 
9
19
  ## 7.3.0-next.1
10
20
 
@@ -11,11 +11,10 @@ export interface DayPickerOverlayProps {
11
11
  zIndex?: number;
12
12
  opened?: boolean;
13
13
  disabled?: boolean;
14
- closeOnFocusOut?: boolean;
15
14
  onClose?: () => void;
16
15
  onOpen?: () => void;
17
16
  onCloseOutsidePress?: () => void;
18
17
  setOpened: Dispatch<SetStateAction<boolean>>;
19
18
  }
20
- export declare const DayPickerOverlay: ({ children, className, content, zIndex, opened: openProp, disabled, closeOnFocusOut, onClose, onOpen, onCloseOutsidePress, setOpened, }: DayPickerOverlayProps) => JSX.Element;
19
+ export declare const DayPickerOverlay: ({ children, className, content, zIndex, opened: openProp, disabled, onClose, onOpen, onCloseOutsidePress, setOpened, }: DayPickerOverlayProps) => JSX.Element;
21
20
  export {};