diff --git a/api-generator/components/blockui.js b/api-generator/components/blockui.js index e674937f4e..1517d52ff0 100644 --- a/api-generator/components/blockui.js +++ b/api-generator/components/blockui.js @@ -41,6 +41,18 @@ const BlockUIProps = [ default: 'null', description: 'Inline style of the element.' }, + { + name: 'containerClassName', + type: 'string', + default: 'null', + description: 'Style class of the container element.' + }, + { + name: 'containerStyle', + type: 'React.CSSProperties', + default: 'null', + description: 'Inline style of the container element.' + }, { name: 'template', type: 'any', diff --git a/components/doc/blockui/index.js b/components/doc/blockui/index.js index c0bf7193a7..c42da3b88f 100644 --- a/components/doc/blockui/index.js +++ b/components/doc/blockui/index.js @@ -1,9 +1,9 @@ -import React, { memo } from 'react'; import Link from 'next/link'; -import { TabView, TabPanel } from '../../lib/tabview/TabView'; -import { useLiveEditorTabs } from '../common/liveeditor'; +import React, { memo } from 'react'; +import { TabPanel, TabView } from '../../lib/tabview/TabView'; import { CodeHighlight } from '../common/codehighlight'; import { DevelopmentSection } from '../common/developmentsection'; +import { useLiveEditorTabs } from '../common/liveeditor'; const BlockUIDoc = memo(() => { const sources = { @@ -437,6 +437,18 @@ export const BlockUIDemo = () => {