PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 2.25.0
Block Animations, Motion & Scroll Effects – Ghost Kit v2.25.0
3.7.2 3.7.1 3.7.0 3.6.1 trunk 1.6.3 2.25.0 3.3.0 3.3.1 3.3.2 3.3.3 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.5.0 3.5.1 3.6.0
ghostkit / gutenberg / store / base / components / selectors.js

selectors.js in Block Animations, Motion & Scroll Effects – Ghost Kit 2.25.0, at gutenberg/store/base/components/selectors.js

37 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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