@uniai-fe/uds-primitives 0.3.15 → 0.3.16
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/package.json
CHANGED
|
@@ -20,13 +20,15 @@ export default function CalendarCore({
|
|
|
20
20
|
onChange,
|
|
21
21
|
datePickerProps,
|
|
22
22
|
}: CalendarGridProps) {
|
|
23
|
-
const { valueFormat
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
23
|
+
const { valueFormat, ...safeDatePickerProps } = (datePickerProps ??
|
|
24
|
+
{}) as CalendarDatePickerProps & {
|
|
25
|
+
/**
|
|
26
|
+
* deprecated DatePicker 표시 포맷 옵션
|
|
27
|
+
*/
|
|
28
|
+
valueFormat?: unknown;
|
|
29
|
+
};
|
|
30
|
+
// 변경: valueFormat은 의도적으로 폐기된 옵션이므로 명시적으로 무시한다.
|
|
31
|
+
void valueFormat;
|
|
30
32
|
|
|
31
33
|
// 기본 DatePicker 옵션/스타일 책임을 Calendar.Core에 고정한다.
|
|
32
34
|
const resolvedDatePickerProps = {
|