Run yarn dedupe and upgrade TS (#13853)

Upgrading TS to the latest version, and cleaning up packages with yarn
dedupe
This commit is contained in:
Félix Malfait
2025-08-12 15:18:59 +02:00
committed by GitHub
parent 62352901ba
commit 3c0f3fd2ae
17 changed files with 330 additions and 4909 deletions
@@ -331,11 +331,10 @@ type DatePickerPropsType = ReactDatePickerLibProps<
boolean | undefined
>;
const ReactDatePicker = lazy(
() =>
import('react-datepicker') as Promise<{
default: ComponentType<DatePickerPropsType>;
}>,
const ReactDatePicker = lazy<ComponentType<DatePickerPropsType>>(() =>
import('react-datepicker').then((mod) => ({
default: mod.default as unknown as ComponentType<DatePickerPropsType>,
})),
);
export const DateTimePicker = ({