Skip to main content

react-ui

package @remirror/react-ui

variable BaselineButtonGroup

Signature:

BaselineButtonGroup: FC<BaselineButtonGroupProps>

variable BasicFormattingButtonGroup

Signature:

BasicFormattingButtonGroup: FC<BasicFormattingButtonGroupProps>

variable CalloutTypeButtonGroup

Signature:

CalloutTypeButtonGroup: FC<CalloutTypeButtonGroupProps>

variable CenterAlignButton

Signature:

CenterAlignButton: FC<CenterAlignButtonProps>

variable CodeBlockFormatButton

Signature:

CodeBlockFormatButton: ({ text, className, onClick, }: CodeBlockFormatButtonProps) => JSX.Element | null

variable CodeBlockLanguageSelect

Signature:

CodeBlockLanguageSelect: ({ languages, className, onLanguageChange, onPointerDownSelect, onSelectChange, }: CodeBlockLanguageSelectProps) => JSX.Element | null

variable CodeBlockTools

Signature:

CodeBlockTools: ({ position, offset, className, children, }: CodeBlockToolsProps) => JSX.Element | null

variable CommandButton

Signature:

CommandButton: FC<CommandButtonProps>

variable CommandButtonGroup

Signature:

CommandButtonGroup: FC<CommandButtonGroupProps>

variable CommandMenuItem

Signature:

CommandMenuItem: FC<CommandMenuItemProps>

variable CopyButton

Signature:

CopyButton: FC<CopyButtonProps>

variable CreateTableButton

Signature:

CreateTableButton: FC<CreateTableButtonProps>

variable CutButton

Signature:

CutButton: FC<CutButtonProps>

variable DataTransferButtonGroup

Signature:

DataTransferButtonGroup: FC<DataTransferButtonGroupProps>

variable DecreaseFontSizeButton

Signature:

DecreaseFontSizeButton: FC<DecreaseFontSizeButtonProps>

variable DecreaseIndentButton

Signature:

DecreaseIndentButton: FC<DecreaseIndentButtonProps>

variable DropdownButton

Signature:

DropdownButton: FC<DropdownButtonProps>

variable FindButton

Signature:

FindButton: FC<FindButtonProps>

variable FindReplaceComponent

Signature:

FindReplaceComponent: FC<FindReplaceComponentProps>

variable FloatingToolbar

Signature:

FloatingToolbar: FC<FloatingToolbarProps>

variable FormattingButtonGroup

Signature:

FormattingButtonGroup: FC<FormattingButtonGroupProps>

variable HeadingLevelButtonGroup

Signature:

HeadingLevelButtonGroup: FC<HeadingLevelButtonGroupProps>

variable HistoryButtonGroup

Signature:

HistoryButtonGroup: FC<HistoryButtonGroupProps>

variable IncreaseFontSizeButton

Signature:

IncreaseFontSizeButton: FC<IncreaseFontSizeButtonProps>

variable IncreaseIndentButton

Signature:

IncreaseIndentButton: FC<IncreaseIndentButtonProps>

variable IndentationButtonGroup

Signature:

IndentationButtonGroup: FC<IndentationButtonGroupProps>

variable InsertHorizontalRuleButton

Signature:

InsertHorizontalRuleButton: FC<InsertHorizontalRuleButtonProps>

variable JustifyAlignButton

Signature:

JustifyAlignButton: FC<JustifyAlignButtonProps>

variable LeftAlignButton

Signature:

LeftAlignButton: FC<LeftAlignButtonProps>

variable ListButtonGroup

Signature:

ListButtonGroup: FC<ListButtonGroupProps>

variable MarkdownToolbar

Signature:

MarkdownToolbar: FC

variable PasteButton

Signature:

PasteButton: FC<PasteButtonProps>

variable RedoButton

Signature:

RedoButton: FC<RedoButtonProps>

variable RightAlignButton

Signature:

RightAlignButton: FC<RightAlignButtonProps>

variable TextAlignmentButtonGroup

Signature:

TextAlignmentButtonGroup: FC<TextAlignmentButtonGroupProps>

variable ToggleBlockquoteButton

Signature:

ToggleBlockquoteButton: FC<ToggleBlockquoteButtonProps>

variable ToggleBoldButton

Signature:

ToggleBoldButton: FC<ToggleBoldButtonProps>

variable ToggleBulletListButton

Signature:

ToggleBulletListButton: FC<ToggleBulletListButtonProps>

variable ToggleCalloutButton

Signature:

ToggleCalloutButton: FC<ToggleCalloutButtonProps>

variable ToggleCalloutMenuItem

Signature:

ToggleCalloutMenuItem: FC<ToggleCalloutMenuItemProps>

variable ToggleCodeBlockButton

Signature:

ToggleCodeBlockButton: FC<ToggleCodeBlockButtonProps>

variable ToggleCodeButton

Signature:

ToggleCodeButton: FC<ToggleCodeButtonProps>

variable ToggleColumnsButton

Signature:

ToggleColumnsButton: FC<ToggleColumnsButtonProps>

variable ToggleHeadingButton

Signature:

ToggleHeadingButton: FC<ToggleHeadingButtonProps>

variable ToggleHeadingMenuItem

Signature:

ToggleHeadingMenuItem: FC<ToggleHeadingMenuItemProps>

variable ToggleItalicButton

Signature:

ToggleItalicButton: FC<ToggleItalicButtonProps>

variable ToggleOrderedListButton

Signature:

ToggleOrderedListButton: FC<ToggleOrderedListButtonProps>

variable ToggleStrikeButton

Signature:

ToggleStrikeButton: FC<ToggleStrikeButtonProps>

variable ToggleSubscriptButton

Signature:

ToggleSubscriptButton: FC<ToggleSubscriptButtonProps>

variable ToggleSuperscriptButton

Signature:

ToggleSuperscriptButton: FC<ToggleSuperscriptButtonProps>

variable ToggleTaskListButton

Signature:

ToggleTaskListButton: FC<ToggleTaskListButtonProps>

variable ToggleUnderlineButton

Signature:

ToggleUnderlineButton: FC<ToggleUnderlineButtonProps>

variable ToggleWhitespaceButton

Signature:

ToggleWhitespaceButton: FC<ToggleWhitespaceButtonProps>

variable Toolbar

Signature:

Toolbar: FC<StackProps>

variable UndoButton

Signature:

UndoButton: FC<UndoButtonProps>

variable VerticalDivider

Signature:

VerticalDivider: FC<VerticalDividerProps>

variable WysiwygToolbar

Signature:

WysiwygToolbar: FC

interface BaselineButtonGroupProps

Signature:

export interface BaselineButtonGroupProps 

property children

Signature:

children?: ReactNode | ReactNode[];

interface BasicFormattingButtonGroupProps

Signature:

export interface BasicFormattingButtonGroupProps 

property children

Signature:

children?: ReactNode | ReactNode[];

interface CalloutTypeButtonGroupProps

Signature:

export interface CalloutTypeButtonGroupProps 

property children

Signature:

children?: ReactNode | ReactNode[];

interface CenterAlignButtonProps

Signature:

export interface CenterAlignButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface CodeBlockFormatButtonProps

Signature:

export interface CodeBlockFormatButtonProps 

property className

Signature:

className?: string;

property onClick

Signature:

onClick?: (event: MouseEvent<HTMLButtonElement>) => boolean;

property text

Signature:

text?: string;

interface CodeBlockLanguageSelectProps

Signature:

export interface CodeBlockLanguageSelectProps 

property className

Signature:

className?: string;

property languages

Signature:

languages?: Array<{
displayName: string;
value?: string;
}>;

property onLanguageChange

Signature:

onLanguageChange?: (language: string, element: HTMLElement | undefined) => boolean;

property onPointerDownSelect

Signature:

onPointerDownSelect?: (event: PointerEvent<HTMLDivElement>) => boolean;

property onSelectChange

Signature:

onSelectChange?: (event: SelectChangeEvent) => boolean;

interface CodeBlockToolsProps

Signature:

export interface CodeBlockToolsProps 

property children

Signature:

children: React.ReactNode | React.ReactNode[];

property className

Signature:

className?: string;

property offset

Signature:

offset?: {
x: number;
y: number;
};

property position

Signature:

position?: 'left' | 'right';

interface CommandButtonGroupProps

Signature:

export interface CommandButtonGroupProps extends Omit<BoxProps, 'children'> 

Extends: Omit<BoxProps, 'children'>

(Some inherited members may not be shown because they are not represented in the documentation.)

property children

Signature:

children: ReactNode | ReactNode[];

interface CommandButtonProps

Signature:

export interface CommandButtonProps extends Omit<ToggleButtonProps, 'value' | 'aria-label'>, Omit<UseCommandOptionValuesParams, 'active' | 'attrs'> 

Extends: Omit<ToggleButtonProps, 'value' | 'aria-label'>, Omit<UseCommandOptionValuesParams, 'active' | 'attrs'>

(Some inherited members may not be shown because they are not represented in the documentation.)

property "aria-label"

Signature:

'aria-label'?: string;

property active

Signature:

active?: UseCommandOptionValuesParams['active'];

property attrs

Signature:

attrs?: UseCommandOptionValuesParams['attrs'];

property commandName

Signature:

commandName: string;

property displayShortcut

Signature:

displayShortcut?: boolean;

property icon

Signature:

icon?: CoreIcon | JSX.Element;

property label

Signature:

label?: NonNullable<ReactNode>;

property onSelect

Signature:

onSelect: () => void;

interface CommandMenuItemProps

Signature:

export interface CommandMenuItemProps extends MenuItemProps, Omit<UseCommandOptionValuesParams, 'active' | 'attrs'> 

Extends: MenuItemProps, Omit<UseCommandOptionValuesParams, 'active' | 'attrs'>

(Some inherited members may not be shown because they are not represented in the documentation.)

property active

Signature:

active?: UseCommandOptionValuesParams['active'];

property attrs

Signature:

attrs?: UseCommandOptionValuesParams['attrs'];

property commandName

Signature:

commandName: string;

property description

Signature:

description?: NonNullable<ReactNode>;

property displayDescription

Signature:

displayDescription?: boolean;

property displayShortcut

Signature:

displayShortcut?: boolean;

property icon

Signature:

icon?: CoreIcon | JSX.Element | null;

property label

Signature:

label?: NonNullable<ReactNode>;

property onSelect

Signature:

onSelect: () => void;

interface CopyButtonProps

Signature:

export interface CopyButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface CreateTableButtonProps

Signature:

export interface CreateTableButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface CutButtonProps

Signature:

export interface CutButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface DataTransferButtonGroupProps

Signature:

export interface DataTransferButtonGroupProps 

property children

Signature:

children?: ReactNode | ReactNode[];

interface DecreaseFontSizeButtonProps

Signature:

export interface DecreaseFontSizeButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface DecreaseIndentButtonProps

Signature:

export interface DecreaseIndentButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface DropdownButtonProps

Signature:

export interface DropdownButtonProps extends Omit<MenuProps, 'open' | 'anchorEl' | 'id'> 

Extends: Omit<MenuProps, 'open' | 'anchorEl' | 'id'>

(Some inherited members may not be shown because they are not represented in the documentation.)

property "aria-label"

Signature:

'aria-label': string;

property icon

Signature:

icon?: CoreIcon | JSX.Element;

property label

Signature:

label?: NonNullable<ReactNode>;

interface FindButtonProps

Signature:

export interface FindButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface FindReplaceComponentProps

Signature:

export interface FindReplaceComponentProps 

property canToggleReplace

Signature:

canToggleReplace?: boolean;

property onDismiss

Signature:

onDismiss?: () => void;

interface FloatingToolbarProps

Signature:

export interface FloatingToolbarProps extends Omit<PopperProps, 'open' | 'anchorEl'> 

Extends: Omit<PopperProps, 'open' | 'anchorEl'>

(Some inherited members may not be shown because they are not represented in the documentation.)

property positioner

Signature:

positioner?: PositionerParam;

interface FormattingButtonGroupProps

Signature:

export interface FormattingButtonGroupProps 

property children

Signature:

children?: ReactNode | ReactNode[];

interface HeadingLevelButtonGroupProps

Signature:

export interface HeadingLevelButtonGroupProps 

property children

Signature:

children?: ReactNode | ReactNode[];

property showAll

Signature:

showAll?: boolean;

interface HistoryButtonGroupProps

Signature:

export interface HistoryButtonGroupProps 

property children

Signature:

children?: ReactNode | ReactNode[];

interface IncreaseFontSizeButtonProps

Signature:

export interface IncreaseFontSizeButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface IncreaseIndentButtonProps

Signature:

export interface IncreaseIndentButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface IndentationButtonGroupProps

Signature:

export interface IndentationButtonGroupProps 

property children

Signature:

children?: ReactNode | ReactNode[];

interface InsertHorizontalRuleButtonProps

Signature:

export interface InsertHorizontalRuleButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface JustifyAlignButtonProps

Signature:

export interface JustifyAlignButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface LeftAlignButtonProps

Signature:

export interface LeftAlignButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface ListButtonGroupProps

Signature:

export interface ListButtonGroupProps 

property children

Signature:

children?: ReactNode | ReactNode[];

interface PasteButtonProps

Signature:

export interface PasteButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface RedoButtonProps

Signature:

export interface RedoButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface RightAlignButtonProps

Signature:

export interface RightAlignButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface TextAlignmentButtonGroupProps

Signature:

export interface TextAlignmentButtonGroupProps 

property children

Signature:

children?: ReactNode | ReactNode[];

property showAll

Signature:

showAll?: boolean;

interface ToggleBlockquoteButtonProps

Signature:

export interface ToggleBlockquoteButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface ToggleBoldButtonProps

Signature:

export interface ToggleBoldButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface ToggleBulletListButtonProps

Signature:

export interface ToggleBulletListButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface ToggleCalloutButtonProps

Signature:

export interface ToggleCalloutButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

property attrs

Signature:

attrs?: Partial<CalloutExtensionAttributes>;

interface ToggleCalloutMenuItemProps

Signature:

export interface ToggleCalloutMenuItemProps extends Omit<CommandMenuItemProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandMenuItemProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

property attrs

Signature:

attrs?: Partial<CalloutExtensionAttributes>;

interface ToggleCodeBlockButtonProps

Signature:

export interface ToggleCodeBlockButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

property attrs

Signature:

attrs?: Partial<CodeBlockAttributes>;

interface ToggleCodeButtonProps

Signature:

export interface ToggleCodeButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface ToggleColumnsButtonProps

Signature:

export interface ToggleColumnsButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

property attrs

Signature:

attrs?: Partial<ColumnAttributes>;

interface ToggleHeadingButtonProps

Signature:

export interface ToggleHeadingButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

property attrs

Signature:

attrs?: Partial<HeadingExtensionAttributes>;

interface ToggleHeadingMenuItemProps

Signature:

export interface ToggleHeadingMenuItemProps extends Omit<CommandMenuItemProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandMenuItemProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

property attrs

Signature:

attrs?: Partial<HeadingExtensionAttributes>;

interface ToggleItalicButtonProps

Signature:

export interface ToggleItalicButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface ToggleOrderedListButtonProps

Signature:

export interface ToggleOrderedListButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface ToggleStrikeButtonProps

Signature:

export interface ToggleStrikeButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface ToggleSubscriptButtonProps

Signature:

export interface ToggleSubscriptButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface ToggleSuperscriptButtonProps

Signature:

export interface ToggleSuperscriptButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface ToggleTaskListButtonProps

Signature:

export interface ToggleTaskListButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface ToggleUnderlineButtonProps

Signature:

export interface ToggleUnderlineButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface ToggleWhitespaceButtonProps

Signature:

export interface ToggleWhitespaceButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

interface UndoButtonProps

Signature:

export interface UndoButtonProps extends Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'> 

Extends: Omit<CommandButtonProps, 'commandName' | 'active' | 'enabled' | 'attrs' | 'onSelect'>

(Some inherited members may not be shown because they are not represented in the documentation.)

type VerticalDividerProps

Signature:

export type VerticalDividerProps = Omit<DividerProps, 'orientation'>;