mirror of
https://github.com/directus/directus.git
synced 2026-02-18 03:01:20 -05:00
* 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
58 lines
1.6 KiB
TypeScript
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;
|