@croquiscom/pds 7.3.0-next.1 → 7.3.0-next.2

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,11 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 7.3.0-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - c05eeaf: DateRangePicker에서 TimePicker 클릭시 닫히는 이슈 수정
8
+
3
9
  ## 7.3.0-next.1
4
10
 
5
11
  ### Patch Changes
@@ -11,10 +11,11 @@ export interface DayPickerOverlayProps {
11
11
  zIndex?: number;
12
12
  opened?: boolean;
13
13
  disabled?: boolean;
14
+ closeOnFocusOut?: boolean;
14
15
  onClose?: () => void;
15
16
  onOpen?: () => void;
16
17
  onCloseOutsidePress?: () => void;
17
18
  setOpened: Dispatch<SetStateAction<boolean>>;
18
19
  }
19
- export declare const DayPickerOverlay: ({ children, className, content, zIndex, opened: openProp, disabled, onClose, onOpen, onCloseOutsidePress, setOpened, }: DayPickerOverlayProps) => JSX.Element;
20
+ export declare const DayPickerOverlay: ({ children, className, content, zIndex, opened: openProp, disabled, closeOnFocusOut, onClose, onOpen, onCloseOutsidePress, setOpened, }: DayPickerOverlayProps) => JSX.Element;
20
21
  export {};