mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
17 lines
652 B
JavaScript
17 lines
652 B
JavaScript
if (typeof SimpleSchema !== "undefined") {
|
|
SimpleSchema.extendOptions({
|
|
control: Match.Optional(Match.Any), // NovaForm control (String or React component)
|
|
order: Match.Optional(Number), // order in the form
|
|
group: Match.Optional(Object), // form fieldset group
|
|
insertableIf: Match.Optional(Function),
|
|
editableIf: Match.Optional(Function),
|
|
beforeComponent: Match.Optional(Match.Any),
|
|
afterComponent: Match.Optional(Match.Any)
|
|
});
|
|
}
|
|
|
|
// import FormWithMutation from "./FormWithMutation.jsx";
|
|
|
|
import FormWrapper from './FormWrapper.jsx'
|
|
export default FormWrapper;
|
|
// export { FormWithMutation as default, FormWrapper };
|