diff options
author | 2020-01-06 14:32:30 -0500 | |
---|---|---|
committer | 2020-01-06 14:32:30 -0500 | |
commit | 10ef81bf85ad0a4bad0d204838e14c99ca2526f7 (patch) | |
tree | b4bb36a326d41de12d1a6181d2a2baf34696ac24 /plugins/jetpack/extensions/blocks/contact-info/address/index.js | |
parent | Updating script for Update (diff) | |
download | blogs-gentoo-10ef81bf85ad0a4bad0d204838e14c99ca2526f7.tar.gz blogs-gentoo-10ef81bf85ad0a4bad0d204838e14c99ca2526f7.tar.bz2 blogs-gentoo-10ef81bf85ad0a4bad0d204838e14c99ca2526f7.zip |
Update jetpack 8.0
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'plugins/jetpack/extensions/blocks/contact-info/address/index.js')
-rw-r--r-- | plugins/jetpack/extensions/blocks/contact-info/address/index.js | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/plugins/jetpack/extensions/blocks/contact-info/address/index.js b/plugins/jetpack/extensions/blocks/contact-info/address/index.js deleted file mode 100644 index f94259f4..00000000 --- a/plugins/jetpack/extensions/blocks/contact-info/address/index.js +++ /dev/null @@ -1,71 +0,0 @@ -/** - * External dependencies - */ -import { __, _x } from '@wordpress/i18n'; -import { Fragment } from '@wordpress/element'; -import { Path, Circle } from '@wordpress/components'; - -/** - * Internal dependencies - */ -import edit from './edit'; -import save from './save'; -import renderMaterialIcon from '../../../shared/render-material-icon'; - -const attributes = { - address: { - type: 'string', - default: '', - }, - addressLine2: { - type: 'string', - default: '', - }, - addressLine3: { - type: 'string', - default: '', - }, - city: { - type: 'string', - default: '', - }, - region: { - type: 'string', - default: '', - }, - postal: { - type: 'string', - default: '', - }, - country: { - type: 'string', - default: '', - }, - linkToGoogleMaps: { - type: 'boolean', - default: false, - }, -}; - -export const name = 'address'; - -export const settings = { - title: __( 'Address', 'jetpack' ), - description: __( 'Lets you add a physical address with Schema markup.', 'jetpack' ), - keywords: [ - _x( 'location', 'block search term', 'jetpack' ), - _x( 'direction', 'block search term', 'jetpack' ), - _x( 'place', 'block search term', 'jetpack' ), - ], - icon: renderMaterialIcon( - <Fragment> - <Path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zM7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.88-2.88 7.19-5 9.88C9.92 16.21 7 11.85 7 9z" /> - <Circle cx="12" cy="9" r="2.5" /> - </Fragment> - ), - category: 'jetpack', - attributes, - parent: [ 'jetpack/contact-info' ], - edit, - save, -}; |