@croquiscom/pds 2.4.0 → 2.4.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 +15 -0
- package/dist/components/date-picker/DateRangePicker.d.ts +1 -0
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @croquiscom/pds
|
|
2
2
|
|
|
3
|
+
## 2.4.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 903194d: DateRangePicker initialDays 싱크 open 디펜던시 추가
|
|
8
|
+
|
|
9
|
+
## 2.4.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- dcd7ac8: DateRangePicker displayMode 속성 제어값 변경
|
|
14
|
+
|
|
15
|
+
- displayMode 'popover'인 경우 numberOfMonths는 최소 2개 이상 제한 추가
|
|
16
|
+
- displayMode 'bottomSheet'인 경우 currentMonth는 선택된 기간의 종료날짜로 달력으로 세팅하도록 수정
|
|
17
|
+
|
|
3
18
|
## 2.4.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
|
@@ -38,6 +38,7 @@ export interface DateRangePickerProps extends DatePickerBaseProps {
|
|
|
38
38
|
/**
|
|
39
39
|
* 지정해서 보여지는 개월의 개수를 임의로 조정할 수 있습니다.
|
|
40
40
|
* - displayMode 'bottomSheet'인 경우 numberOfMonths는 1로 고정입니다.
|
|
41
|
+
* - displayMode 'popover'인 경우 numberOfMonths는 최소 2개 이상 이여야 합니다.
|
|
41
42
|
* @default 2
|
|
42
43
|
*/
|
|
43
44
|
numberOfMonths?: number;
|