-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
index.js
55 lines (50 loc) · 1.03 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
import { cover as icon } from '@wordpress/icons';
/**
* Internal dependencies
*/
import initBlock from '../utils/init-block';
import deprecated from './deprecated';
import edit from './edit';
import metadata from './block.json';
import save from './save';
import transforms from './transforms';
import variations from './variations';
const { name } = metadata;
export { metadata, name };
export const settings = {
icon,
example: {
attributes: {
customOverlayColor: '#065174',
dimRatio: 40,
url: 'https://s.w.org/images/core/5.3/Windbuchencom.jpg',
},
innerBlocks: [
{
name: 'core/paragraph',
attributes: {
content: __( '<strong>Snow Patrol</strong>' ),
align: 'center',
style: {
typography: {
fontSize: 48,
},
color: {
text: 'white',
},
},
},
},
],
},
transforms,
save,
edit,
deprecated,
variations,
};
export const init = () => initBlock( { name, metadata, settings } );