@croquiscom/pds 8.12.0 → 8.13.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/dist/components/date-picker/DateRangeInput.d.ts +1 -0
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @croquiscom/pds
|
|
2
2
|
|
|
3
|
+
## 8.13.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 2edad6e: sideEffects: false 트리셰이킹 지원 추가
|
|
8
|
+
|
|
9
|
+
## 8.12.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- dd26d2b: DateRangePicker에서 showTimePicker 옵션 사용시 TimePicker 텍스트 미기입 활성화 이슈 수정
|
|
14
|
+
|
|
3
15
|
## 8.12.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -18,5 +18,6 @@ export interface DateRangeInputProps extends Omit<InputBaseProps, 'leftAddon' |
|
|
|
18
18
|
}>>;
|
|
19
19
|
modalOpen: boolean;
|
|
20
20
|
disabled?: [boolean, boolean];
|
|
21
|
+
isTimePickerFocused?: boolean;
|
|
21
22
|
}
|
|
22
23
|
export declare const DateRangeInput: React.ForwardRefExoticComponent<DateRangeInputProps & DatePickerIconProps & React.RefAttributes<HTMLInputElement>>;
|