UNPKG

@react-form-builder/core

Version:

React JSON Schema Form Builder to create complex, validated, reusable forms with no deep React knowledge required

23 lines (22 loc) 553 B
import { QuantifierBuilder as r } from "./QuantifierBuilder.js"; class u extends r { /** * Sets the radio buttons as the component's property editor. * @returns the modified instance of the builder. */ radio() { return this.setup({ editor: "radio" }); } /** * Sets the default value for the component property. * @param value the default value. * @returns the modified instance of the builder. */ default(e) { return super.default(e); } } export { u as OneOfBuilder }; //# sourceMappingURL=OneOfBuilder.js.map