2020-03-13 13:41:59 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import {
|
|
|
|
IS_SHIPPING_CALCULATOR_ENABLED,
|
|
|
|
IS_SHIPPING_COST_HIDDEN,
|
2020-08-14 11:08:16 +00:00
|
|
|
HAS_DARK_EDITOR_STYLE_SUPPORT,
|
2020-03-13 13:41:59 +00:00
|
|
|
} from '@woocommerce/block-settings';
|
|
|
|
|
|
|
|
const blockAttributes = {
|
2020-04-08 15:03:39 +00:00
|
|
|
isPreview: {
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
save: false,
|
|
|
|
},
|
2020-03-13 13:41:59 +00:00
|
|
|
isShippingCalculatorEnabled: {
|
|
|
|
type: 'boolean',
|
|
|
|
default: IS_SHIPPING_CALCULATOR_ENABLED,
|
|
|
|
},
|
|
|
|
isShippingCostHidden: {
|
|
|
|
type: 'boolean',
|
|
|
|
default: IS_SHIPPING_COST_HIDDEN,
|
|
|
|
},
|
2020-03-17 10:30:52 +00:00
|
|
|
checkoutPageId: {
|
|
|
|
type: 'number',
|
|
|
|
default: 0,
|
|
|
|
},
|
2020-08-14 11:08:16 +00:00
|
|
|
hasDarkControls: {
|
|
|
|
type: 'boolean',
|
|
|
|
default: HAS_DARK_EDITOR_STYLE_SUPPORT,
|
|
|
|
},
|
2020-03-13 13:41:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default blockAttributes;
|