PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 3.4.1
Block Animations, Motion & Scroll Effects – Ghost Kit v3.4.1
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 / settings / pages / index.js

index.js in Block Animations, Motion & Scroll Effects – Ghost Kit 3.4.1, at settings/pages/index.js

39 lines 830 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { applyFilters } from '@wordpress/hooks';
2 import { __ } from '@wordpress/i18n';
3
4 import Blocks from './blocks';
5 import Breakpoints from './breakpoints';
6 import CssJs from './css-js';
7 import Fonts from './fonts';
8 import Icons from './icons';
9 import Typography from './typography';
10
11 export default function () {
12 return applyFilters('ghostkit.settings.pages', {
13 blocks: {
14 label: __('Blocks', 'ghostkit'),
15 block: Blocks,
16 },
17 icons: {
18 label: __('Icons', 'ghostkit'),
19 block: Icons,
20 },
21 typography: {
22 label: __('Typography', 'ghostkit'),
23 block: Typography,
24 },
25 fonts: {
26 label: __('Fonts', 'ghostkit'),
27 block: Fonts,
28 },
29 breakpoints: {
30 label: __('Breakpoints', 'ghostkit'),
31 block: Breakpoints,
32 },
33 css_js: {
34 label: __('CSS & JavaScript', 'ghostkit'),
35 block: CssJs,
36 },
37 });
38 }
39