如何启用 DImension Control Gutenberg?

How to enable DImension Control Gutenberg?

https://developer.wordpress.org/block-editor/reference-guides/components/dimension-control/ 文档说 DimensionControl 被 wp.blockEditor 使用。但我在 wp.blockEditor 或 wp.components 或 wp.element 中没有 DimensionControl。该组件是默认启用还是需要手动启用?

尺寸控制组件现在位于@wordpress-components 库或包中。

// https://github.com/WordPress/gutenberg/tree/trunk/packages/components/src

您也许可以像这样导入它。

import { DimensionControl } from '@wordpress/components';

import { __experimentalDimensionControl } from '@wordpress/components';

而且显然它还不稳定,因此您可能需要等待才能实际在生产中使用它。