28 lines
449 B
TypeScript
28 lines
449 B
TypeScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import { __ } from '@wordpress/i18n';
|
||
|
|
||
|
/**
|
||
|
* Internal dependencies
|
||
|
*/
|
||
|
import formStepAttributes from '../../form-step/attributes';
|
||
|
|
||
|
export default {
|
||
|
...formStepAttributes( {
|
||
|
defaultTitle: __( 'Pickup options', 'woo-gutenberg-products-block' ),
|
||
|
defaultDescription: '',
|
||
|
} ),
|
||
|
className: {
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
},
|
||
|
lock: {
|
||
|
type: 'object',
|
||
|
default: {
|
||
|
move: true,
|
||
|
remove: true,
|
||
|
},
|
||
|
},
|
||
|
};
|