diff --git a/src/settings/global-settings/help-modal.tsx b/src/settings/global-settings/help-modal.tsx index 50aae51..3029a24 100644 --- a/src/settings/global-settings/help-modal.tsx +++ b/src/settings/global-settings/help-modal.tsx @@ -8,7 +8,13 @@ import type { Dispatch, SetStateAction } from 'react'; */ import { __ } from '@wordpress/i18n'; import { createInterpolateElement } from '@wordpress/element'; -import { Modal, ExternalLink } from '@wordpress/components'; +import { + Modal, + ExternalLink, + __experimentalVStack as VStack, + __experimentalText as Text, + __experimentalHeading as Heading, +} from '@wordpress/components'; type Props = { setIsHelpModalOpen: Dispatch< SetStateAction< boolean > >; @@ -21,59 +27,71 @@ export default function HelpModal( { setIsHelpModalOpen }: Props ) { className="ftb-global-help-modal" onRequestClose={ () => setIsHelpModalOpen( false ) } > -
- { __( - 'Flexible Table Block is a block that allows you to create tables in various styles. First of all, it is recommended to set the default style of the table from "Global Setting".', - 'flexible-table-block' - ) } -
-
- { createInterpolateElement(
- __(
- 'Hold Ctrl
key to select multiple cells or hold Shift
key to select the range. Selecting multiple cells is used to merge cells or to change styles of multiple cells.',
- 'flexible-table-block'
- ),
- { code: }
- ) }
-
- { __( - 'If table scrolling is enabled, set "Table Width" or "Table Min Width" larger than the content width.', - 'flexible-table-block' - ) } -
-
- { createInterpolateElement(
- __(
- 'You can tell screenreaders exactly by properly defining id
, headers
, and scope
attributes for each cell.',
- 'flexible-table-block'
- ),
- { code: }
- ) }
-
- { createInterpolateElement(
- __(
- 'Refer to this page for the specifications of each attribute.',
- 'flexible-table-block'
- ),
- {
- Link: (
- // @ts-ignore
-
Ctrl
key to select multiple cells or hold Shift
key to select the range. Selecting multiple cells is used to merge cells or to change styles of multiple cells.',
+ 'flexible-table-block'
+ ),
+ { code:
}
+ ) }
+ id
, headers
, and scope
attributes for each cell.',
+ 'flexible-table-block'
+ ),
+ { code:
}
+ ) }
+