@wordpress/block-editor
Version:
27 lines (24 loc) • 568 B
JavaScript
/**
* Internal dependencies
*/
import {
PREFERENCES_DEFAULTS,
SETTINGS_DEFAULTS as SETTINGS,
} from './defaults.js';
const SETTINGS_DEFAULTS = {
...SETTINGS,
// Don't add the default font sizes for standard themes
fontSizes: undefined,
// FOR TESTING ONLY - Later, this will come from a REST API
// eslint-disable-next-line no-undef
__unstableGalleryWithImageBlocks: __DEV__,
alignWide: true,
supportsLayout: false,
__experimentalFeatures: {
color: {
text: true,
background: true,
},
},
};
export { PREFERENCES_DEFAULTS, SETTINGS_DEFAULTS };