2019-03-16 15:44:29 -07:00
|
|
|
import Dropdown, { DropdownItem, DropdownButton, StyledDropdownButton } from './Dropdown';
|
|
|
|
import Icon from './Icon';
|
|
|
|
import ListItemTopBar from './ListItemTopBar';
|
|
|
|
import Loader from './Loader';
|
2019-12-16 12:17:37 -05:00
|
|
|
import FieldLabel from './FieldLabel';
|
|
|
|
import IconButton from './IconButton';
|
2019-03-16 15:44:29 -07:00
|
|
|
import Toggle, { ToggleContainer, ToggleBackground, ToggleHandle } from './Toggle';
|
|
|
|
import AuthenticationPage from './AuthenticationPage';
|
|
|
|
import WidgetPreviewContainer from './WidgetPreviewContainer';
|
|
|
|
import ObjectWidgetTopBar from './ObjectWidgetTopBar';
|
2019-10-28 20:20:41 +01:00
|
|
|
import GoBackButton from './GoBackButton';
|
2019-12-18 18:16:02 +02:00
|
|
|
import Asset from './Asset';
|
2019-03-16 15:44:29 -07:00
|
|
|
import {
|
2018-07-17 19:13:52 -04:00
|
|
|
fonts,
|
|
|
|
colorsRaw,
|
|
|
|
colors,
|
|
|
|
lengths,
|
|
|
|
components,
|
|
|
|
buttons,
|
2019-12-16 12:17:37 -05:00
|
|
|
text,
|
2018-07-17 19:13:52 -04:00
|
|
|
shadows,
|
|
|
|
borders,
|
|
|
|
transitions,
|
2019-03-14 13:52:40 -05:00
|
|
|
effects,
|
2019-02-19 20:11:38 +01:00
|
|
|
reactSelectStyles,
|
2019-03-15 10:19:57 -04:00
|
|
|
GlobalStyles,
|
2018-07-17 19:13:52 -04:00
|
|
|
} from './styles';
|
2019-03-16 15:44:29 -07:00
|
|
|
|
|
|
|
export const NetlifyCmsUiDefault = {
|
|
|
|
Dropdown,
|
|
|
|
DropdownItem,
|
|
|
|
DropdownButton,
|
|
|
|
StyledDropdownButton,
|
|
|
|
ListItemTopBar,
|
2019-12-16 12:17:37 -05:00
|
|
|
FieldLabel,
|
2019-03-16 15:44:29 -07:00
|
|
|
Icon,
|
2019-12-16 12:17:37 -05:00
|
|
|
IconButton,
|
2019-03-16 15:44:29 -07:00
|
|
|
Loader,
|
|
|
|
Toggle,
|
|
|
|
ToggleContainer,
|
|
|
|
ToggleBackground,
|
|
|
|
ToggleHandle,
|
|
|
|
AuthenticationPage,
|
|
|
|
WidgetPreviewContainer,
|
|
|
|
ObjectWidgetTopBar,
|
|
|
|
fonts,
|
|
|
|
colorsRaw,
|
|
|
|
colors,
|
|
|
|
lengths,
|
|
|
|
components,
|
|
|
|
buttons,
|
|
|
|
shadows,
|
2019-12-16 12:17:37 -05:00
|
|
|
text,
|
2019-03-16 15:44:29 -07:00
|
|
|
borders,
|
|
|
|
transitions,
|
|
|
|
effects,
|
|
|
|
reactSelectStyles,
|
|
|
|
GlobalStyles,
|
2019-12-18 18:16:02 +02:00
|
|
|
Asset,
|
2019-03-16 15:44:29 -07:00
|
|
|
};
|
|
|
|
export {
|
|
|
|
Dropdown,
|
|
|
|
DropdownItem,
|
|
|
|
DropdownButton,
|
|
|
|
StyledDropdownButton,
|
|
|
|
ListItemTopBar,
|
2019-12-16 12:17:37 -05:00
|
|
|
FieldLabel,
|
2019-03-16 15:44:29 -07:00
|
|
|
Icon,
|
2019-12-16 12:17:37 -05:00
|
|
|
IconButton,
|
2019-03-16 15:44:29 -07:00
|
|
|
Loader,
|
|
|
|
Toggle,
|
|
|
|
ToggleContainer,
|
|
|
|
ToggleBackground,
|
|
|
|
ToggleHandle,
|
|
|
|
AuthenticationPage,
|
|
|
|
WidgetPreviewContainer,
|
|
|
|
ObjectWidgetTopBar,
|
|
|
|
fonts,
|
|
|
|
colorsRaw,
|
|
|
|
colors,
|
|
|
|
lengths,
|
|
|
|
components,
|
|
|
|
buttons,
|
|
|
|
shadows,
|
2019-12-16 12:17:37 -05:00
|
|
|
text,
|
2019-03-16 15:44:29 -07:00
|
|
|
borders,
|
|
|
|
transitions,
|
|
|
|
effects,
|
|
|
|
reactSelectStyles,
|
|
|
|
GlobalStyles,
|
2019-10-28 20:20:41 +01:00
|
|
|
GoBackButton,
|
2019-12-18 18:16:02 +02:00
|
|
|
Asset,
|
2019-03-16 15:44:29 -07:00
|
|
|
};
|