| 1 |
import ActiveIndicator from '../../../components/active-indicator'; |
| 2 |
import ApplyFilters from '../../../components/apply-filters'; |
| 3 |
import CodeEditor from '../../../components/code-editor'; |
| 4 |
import ColorIndicator from '../../../components/color-indicator'; |
| 5 |
import ColorPalette from '../../../components/color-palette'; |
| 6 |
import ColorPicker from '../../../components/color-picker'; |
| 7 |
import DateTimePicker from '../../../components/date-time-picker'; |
| 8 |
import DropdownPicker from '../../../components/dropdown-picker'; |
| 9 |
import EditorStyles from '../../../components/editor-styles'; |
| 10 |
import ElementStateToggle from '../../../components/element-state-toggle'; |
| 11 |
import FocalPointPicker from '../../../components/focal-point-picker'; |
| 12 |
import GoogleFonts from '../../../components/google-fonts'; |
| 13 |
import IconPicker from '../../../components/icon-picker'; |
| 14 |
import ImagePicker from '../../../components/image-picker'; |
| 15 |
import ImportantToggle from '../../../components/important-toggle'; |
| 16 |
import InputDrag from '../../../components/input-drag'; |
| 17 |
import InputGroup from '../../../components/input-group'; |
| 18 |
import MediaSizeSelector from '../../../components/media-size-selector'; |
| 19 |
import Modal from '../../../components/modal'; |
| 20 |
import Notice from '../../../components/notice'; |
| 21 |
import RangeControl from '../../../components/range-control'; |
| 22 |
import RemoveButton from '../../../components/remove-button'; |
| 23 |
import ResponsiveTabPanel from '../../../components/responsive-tab-panel'; |
| 24 |
import ResponsiveToggle from '../../../components/responsive-toggle'; |
| 25 |
import Select from '../../../components/select'; |
| 26 |
import ToggleGroup from '../../../components/toggle-group'; |
| 27 |
import * as transitionEasingControls from '../../../components/transition-easing-controls'; |
| 28 |
import TransitionPresetsControl from '../../../components/transition-presets-control'; |
| 29 |
import TransitionPreview from '../../../components/transition-preview'; |
| 30 |
import TransitionSelector from '../../../components/transition-selector'; |
| 31 |
import * as transitionSpringControls from '../../../components/transition-spring-controls'; |
| 32 |
import Typography from '../../../components/typography'; |
| 33 |
import URLPicker from '../../../components/url-picker'; |
| 34 |
|
| 35 |
export function get() { |
| 36 |
return { |
| 37 |
ActiveIndicator, |
| 38 |
ApplyFilters, |
| 39 |
CodeEditor, |
| 40 |
ColorIndicator, |
| 41 |
ColorPalette, |
| 42 |
ColorPicker, |
| 43 |
DateTimePicker, |
| 44 |
DropdownPicker, |
| 45 |
EditorStyles, |
| 46 |
ElementStateToggle, |
| 47 |
FocalPointPicker, |
| 48 |
GoogleFonts, |
| 49 |
IconPicker, |
| 50 |
ImagePicker, |
| 51 |
ImportantToggle, |
| 52 |
InputDrag, |
| 53 |
InputGroup, |
| 54 |
MediaSizeSelector, |
| 55 |
Modal, |
| 56 |
Notice, |
| 57 |
RangeControl, |
| 58 |
RemoveButton, |
| 59 |
ResponsiveTabPanel, |
| 60 |
ResponsiveToggle, |
| 61 |
Select, |
| 62 |
ToggleGroup, |
| 63 |
transitionEasingControls, |
| 64 |
TransitionPresetsControl, |
| 65 |
TransitionPreview, |
| 66 |
TransitionSelector, |
| 67 |
transitionSpringControls, |
| 68 |
Typography, |
| 69 |
URLPicker, |
| 70 |
}; |
| 71 |
} |
| 72 |
|