UNPKG

1.37 kBSource Map (JSON)View Raw
1{"version":3,"sources":["@wordpress/block-library/src/block/index.js"],"names":["name","settings","title","category","description","attributes","ref","type","supports","customClassName","html","inserter","edit","save"],"mappings":";;;;;;;;;AAGA;;AAKA;;AARA;;;;AAKA;;;AAKO,IAAMA,IAAI,GAAG,YAAb;;AAEA,IAAMC,QAAQ,GAAG;AACvBC,EAAAA,KAAK,EAAE,cAAI,gBAAJ,CADgB;AAGvBC,EAAAA,QAAQ,EAAE,UAHa;AAKvBC,EAAAA,WAAW,EAAE,cAAI,qJAAJ,CALU;AAOvBC,EAAAA,UAAU,EAAE;AACXC,IAAAA,GAAG,EAAE;AACJC,MAAAA,IAAI,EAAE;AADF;AADM,GAPW;AAavBC,EAAAA,QAAQ,EAAE;AACTC,IAAAA,eAAe,EAAE,KADR;AAETC,IAAAA,IAAI,EAAE,KAFG;AAGTC,IAAAA,QAAQ,EAAE;AAHD,GAba;AAmBvBC,EAAAA,IAAI,EAAJA,aAnBuB;AAqBvBC,EAAAA,IAAI,EAAE;AAAA,WAAM,IAAN;AAAA;AArBiB,CAAjB","sourcesContent":["/**\n * WordPress dependencies\n */\nimport { __ } from '@wordpress/i18n';\n\n/**\n * Internal dependencies\n */\nimport edit from './edit';\n\nexport const name = 'core/block';\n\nexport const settings = {\n\ttitle: __( 'Reusable Block' ),\n\n\tcategory: 'reusable',\n\n\tdescription: __( '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.' ),\n\n\tattributes: {\n\t\tref: {\n\t\t\ttype: 'number',\n\t\t},\n\t},\n\n\tsupports: {\n\t\tcustomClassName: false,\n\t\thtml: false,\n\t\tinserter: false,\n\t},\n\n\tedit,\n\n\tsave: () => null,\n};\n"]}
\No newline at end of file