51 lines
924 B
TypeScript
51 lines
924 B
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { __ } from '@wordpress/i18n';
|
|
import { Icon, cart } from '@woocommerce/icons';
|
|
import { registerFeaturePluginBlockType } from '@woocommerce/block-settings';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import edit from './edit';
|
|
|
|
const settings = {
|
|
apiVersion: 2,
|
|
title: __( 'Mini Cart', 'woo-gutenberg-products-block' ),
|
|
icon: {
|
|
src: <Icon srcElement={ cart } />,
|
|
foreground: '#96588a',
|
|
},
|
|
category: 'woocommerce',
|
|
keywords: [ __( 'WooCommerce', 'woo-gutenberg-products-block' ) ],
|
|
description: __(
|
|
'Display a mini cart widget.',
|
|
'woo-gutenberg-products-block'
|
|
),
|
|
supports: {
|
|
html: false,
|
|
multiple: false,
|
|
},
|
|
example: {
|
|
attributes: {
|
|
isPreview: true,
|
|
},
|
|
},
|
|
attributes: {
|
|
isPreview: {
|
|
type: 'boolean',
|
|
default: false,
|
|
save: false,
|
|
},
|
|
},
|
|
|
|
edit,
|
|
|
|
save() {
|
|
return null;
|
|
},
|
|
};
|
|
|
|
registerFeaturePluginBlockType( 'woocommerce/mini-cart', settings );
|