@croquiscom/pds 8.3.0 → 8.4.0-next.0
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 -0
- package/bundle-report.html +4034 -0
- package/dist/components/modal/Modal.stories.d.ts +1 -0
- package/dist/components/modal/useManualDismiss.d.ts +4 -12
- package/dist/components/table/TableHeader.d.ts +9 -0
- package/dist/components/table/TableRows.d.ts +11 -0
- package/dist/components/time-picker/TimePicker.d.ts +3 -1
- package/dist/components/time-picker/TimePicker.stories.d.ts +1 -1
- package/dist/components/time-picker/TimePickerOverlay.d.ts +3 -1
- package/dist/index.es.js +11 -6
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +10 -5
- package/dist/index.js.map +1 -1
- package/locales/en.d.ts +79 -0
- package/locales/en.esm.d.ts +79 -0
- package/locales/ja.d.ts +79 -0
- package/locales/ja.esm.d.ts +79 -0
- package/locales/ko.d.ts +79 -0
- package/locales/ko.esm.d.ts +79 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @croquiscom/pds
|
|
2
2
|
|
|
3
|
+
## 8.4.0-next.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 86fd771: @floating-ui/react ^0.18.0 -> ^0.26.9 업데이트
|
|
8
|
+
|
|
9
|
+
- DropdownInput, Popover, Tooltip에서 FloatingPortal 조건부로 렌더링되도록 변경
|
|
10
|
+
- DateRangePicker에서 TimePicker 클릭시 focusout 이벤트로 닫히는 이슈 수정
|
|
11
|
+
- TimePicker 키보드 네비게이션 추가
|
|
12
|
+
- FloatingFocusManager 변경사항에 따른 useManualDismiss 동작 수정
|
|
13
|
+
- 서브루트 적용에 따라 이전 ConfirmModal 이슈가 해소되어 수정
|
|
14
|
+
|
|
3
15
|
## 8.3.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|