@tomino/dynamic-form-semantic-ui
Version:
Semantic UI form renderer based on dynamic form generation
20 lines (16 loc) • 697 B
text/typescript
import { EditorComponentCatalogue } from '@tomino/dynamic-form';
import { catalogueEditor as vanilla } from './vanilla/catalogue_editor';
import { catalogueEditor as semantic } from './semantic/catalogue_editor';
import { catalogueEditor as apollo } from './apollo/catalogue_editor';
import { catalogueEditor as router } from './react-router/catalogue_editor';
import { catalogueEditor as alert } from './react-alert/catalogue_editor';
import { catalogueEditor as auth } from './semantic/auth-graphql-react-router/catalogue_editor';
import { merge } from './helpers';
export const catalogueEditor: EditorComponentCatalogue = merge(
vanilla,
semantic,
apollo,
router,
alert,
auth
);