[docs]@dataclasses.dataclass(frozen=True)classMarkBreakoutAttrs(Base):""" Attributes for :class:`MarkBreakout`. :param mode: Required. Breakout mode. Valid values are ``"wide"`` or ``"full-width"``. :param width: Optional. Width value. """mode:T.Literal["wide","full-width"]width:int=OPT
[docs]@dataclasses.dataclass(frozen=True)classMarkBreakout(BaseMark):""" Breakout mark for layout width control. This mark controls the layout breakout mode of elements, allowing them to extend beyond the normal content width. """type:str=TypeEnum.breakout.valueattrs:MarkBreakoutAttrs=REQ