@croquiscom/pds 8.11.0 → 8.12.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 -0
- package/dist/components/date-picker/DateRangeInput.d.ts +1 -0
- package/dist/index.es.js +5 -5
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @croquiscom/pds
|
|
2
2
|
|
|
3
|
+
## 8.12.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- dd26d2b: DateRangePicker에서 showTimePicker 옵션 사용시 TimePicker 텍스트 미기입 활성화 이슈 수정
|
|
8
|
+
|
|
9
|
+
## 8.12.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 09ba973: Timepicker 텍스트 기입 활성화
|
|
14
|
+
|
|
3
15
|
## 8.11.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>>;
|