@aokiapp/rjsf-mantine-theme
Version:
Mantine theme, fields and widgets for react-jsonschema-form
12 lines • 538 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
/** The `AltDateTimeWidget` is an alternative widget for rendering datetime properties.
* It uses the AltDateWidget for rendering, with the `time` prop set to true by default.
*
* @param props - The `WidgetProps` for this component
*/
function AltDateTimeWidget({ time = true, ...props }) {
const { AltDateWidget } = props.registry.widgets;
return _jsx(AltDateWidget, { time: time, ...props });
}
export default AltDateTimeWidget;
//# sourceMappingURL=AltDateTimeWidget.js.map