Files
directus/src/interfaces/index.ts
Rijk van Zanten 085f6dc581 Module collections override (#614)
* Fix errors in repeater

* Use custom module listing in sidebar

* Refresh user store on role update

* Add custom module info to type

* Add collections interface

* Add collections interface translations

* Add collections listing types

* Use custom collections listing in collections module nav

* Remove outdated nav test
2020-05-22 17:04:20 -04:00

58 lines
1.6 KiB
TypeScript

import InterfaceTextInput from './text-input/';
import InterfaceTextarea from './textarea/';
import InterfaceDivider from './divider/';
import InterfaceNumeric from './numeric/';
import InterfaceSlider from './slider/';
import InterfaceToggle from './toggle/';
import InterfaceWYSIWYG from './wysiwyg/';
import InterfaceDropdown from './dropdown/';
import InterfaceDropdownMultiselect from './dropdown-multiselect/';
import InterfaceRadioButtons from './radio-buttons';
import InterfaceCheckboxes from './checkboxes';
import InterfaceStatus from './status';
import InterfaceDateTime from './datetime';
import InterfaceImage from './image';
import InterfaceIcon from './icon';
import InterfaceNotice from './notice';
import InterfaceManyToOne from './many-to-one';
import InterfaceOneToMany from './one-to-many';
import InterfaceColor from './color';
import InterfaceHash from './hash';
import InterfaceSlug from './slug';
import InterfaceUser from './user';
import InterfaceTags from './tags';
import InterfaceRepeater from './repeater';
import InterfaceFile from './file';
import InterfaceCollections from './collections';
export const interfaces = [
InterfaceTextInput,
InterfaceTextarea,
InterfaceNumeric,
InterfaceSlider,
InterfaceDivider,
InterfaceToggle,
InterfaceWYSIWYG,
InterfaceDropdown,
InterfaceDropdownMultiselect,
InterfaceRadioButtons,
InterfaceCheckboxes,
InterfaceStatus,
InterfaceDateTime,
InterfaceImage,
InterfaceIcon,
InterfaceNotice,
InterfaceManyToOne,
InterfaceOneToMany,
InterfaceColor,
InterfaceHash,
InterfaceSlug,
InterfaceUser,
InterfaceTags,
InterfaceRepeater,
InterfaceFile,
InterfaceCollections,
];
export default interfaces;