UNPKG

965 BJavaScriptView Raw
1"use strict";
2
3var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
5Object.defineProperty(exports, "__esModule", {
6 value: true
7});
8exports.settings = exports.name = void 0;
9
10var _i18n = require("@wordpress/i18n");
11
12var _edit = _interopRequireDefault(require("./edit"));
13
14/**
15 * WordPress dependencies
16 */
17
18/**
19 * Internal dependencies
20 */
21var name = 'core/block';
22exports.name = name;
23var settings = {
24 title: (0, _i18n.__)('Reusable Block'),
25 category: 'reusable',
26 description: (0, _i18n.__)('Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.'),
27 attributes: {
28 ref: {
29 type: 'number'
30 }
31 },
32 supports: {
33 customClassName: false,
34 html: false,
35 inserter: false
36 },
37 edit: _edit.default,
38 save: function save() {
39 return null;
40 }
41};
42exports.settings = settings;
43//# sourceMappingURL=index.js.map
\No newline at end of file