/home/crealab/moon.brainware.com.co/wp-content/themes/yith-wonder/assets/js/block-variations.js
const { __ } = wp.i18n;
/* Default header. */
wp.blocks.registerBlockVariation( 'core/template-part', {
name: 'header-default',
title: __( 'Default style' ),
description: __( 'Default style' ),
scope: [ 'transform' ],
attributes: {
className: 'is-style-default'
},
});
/* Sticky header. */
wp.blocks.registerBlockVariation( 'core/template-part', {
name: 'header-sticky',
title: __( 'Sticky header' ),
description: __( 'Sticky header' ),
scope: [ 'transform' ],
attributes: {
className: 'is-style-yith-wonder-sticky-header',
},
});
/* Transparent header. */
wp.blocks.registerBlockVariation( 'core/template-part', {
name: 'header-overlay',
title: __( 'Overlay header' ),
description: __( 'Overlay header' ),
scope: [ 'transform' ],
attributes: {
className: 'is-style-yith-wonder-overlay-header',
},
});