@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 +12 -2
- package/dist/components/date-picker/DayPickerOverlay.d.ts +1 -2
- package/dist/index.es.js +6 -11
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +5 -10
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/bundle-report.html +0 -4034
- package/locales/en.d.ts +0 -79
- package/locales/en.esm.d.ts +0 -79
- package/locales/ja.d.ts +0 -79
- package/locales/ja.esm.d.ts +0 -79
- package/locales/ko.d.ts +0 -79
- package/locales/ko.esm.d.ts +0 -79
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,20 @@
|
|
|
1
1
|
# @croquiscom/pds
|
|
2
2
|
|
|
3
|
-
## 7.3.
|
|
3
|
+
## 7.3.1
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
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,
|
|
19
|
+
export declare const DayPickerOverlay: ({ children, className, content, zIndex, opened: openProp, disabled, onClose, onOpen, onCloseOutsidePress, setOpened, }: DayPickerOverlayProps) => JSX.Element;
|
|
21
20
|
export {};
|