import type { FormContextType, RJSFSchema, StrictRJSFSchema, WidgetProps } from '@rjsf/utils'; import { DateElement, TranslatableString, useAltDateWidgetProps } from '@rjsf/utils'; /** The `AltDateWidget` is an alternative widget for rendering date properties. * @param props - The `WidgetProps` for this component */ function AltDateWidget( props: WidgetProps, ) { const { disabled = false, readonly = false, autofocus = false, options, id, name, registry, onBlur, onFocus } = props; const { translateString } = registry; const { elements, handleChange, handleClear, handleSetNow } = useAltDateWidgetProps(props); return ( ); } export default AltDateWidget;