| 1 |
/** |
| 2 |
* Internal dependencies |
| 3 |
*/ |
| 4 |
import ApplyFilters from '../../../components/apply-filters'; |
| 5 |
import CodeEditor from '../../../components/code-editor'; |
| 6 |
import ColorIndicator from '../../../components/color-indicator'; |
| 7 |
import ColorPicker from '../../../components/color-picker'; |
| 8 |
import IconPicker from '../../../components/icon-picker'; |
| 9 |
import ImagePicker from '../../../components/image-picker'; |
| 10 |
import InputDrag from '../../../components/input-drag'; |
| 11 |
import Modal from '../../../components/modal'; |
| 12 |
import RangeControl from '../../../components/range-control'; |
| 13 |
import RemoveButton from '../../../components/remove-button'; |
| 14 |
import ResponsiveTabPanel from '../../../components/responsive-tab-panel'; |
| 15 |
import ToggleGroup from '../../../components/toggle-group'; |
| 16 |
import URLPicker from '../../../components/url-picker'; |
| 17 |
import Typography from '../../../components/typography'; |
| 18 |
|
| 19 |
export function get() { |
| 20 |
return { |
| 21 |
ApplyFilters, |
| 22 |
CodeEditor, |
| 23 |
ColorIndicator, |
| 24 |
ColorPicker, |
| 25 |
IconPicker, |
| 26 |
ImagePicker, |
| 27 |
InputDrag, |
| 28 |
Modal, |
| 29 |
RangeControl, |
| 30 |
RemoveButton, |
| 31 |
ResponsiveTabPanel, |
| 32 |
ToggleGroup, |
| 33 |
URLPicker, |
| 34 |
Typography, |
| 35 |
}; |
| 36 |
} |
| 37 |
|