Skip to content

Latest commit

History

History
39 lines (22 loc) 路 989 Bytes

CHANGELOG.md

File metadata and controls

39 lines (22 loc) 路 989 Bytes

scoobie

15.3.0

Minor Changes

  • Add components override to MdxProvider (#617)

15.2.0

Minor Changes

  • MdxProvider: Set Tables to overflowX="scroll" width="full" (#605)

Patch Changes

  • Table: Restore type="stripe" styling (#605)

  • CodeBlock: Restore bash and shell syntax highlighting (#605)

  • mermaid: Colour flowchart circle nodes (#605)

15.1.0

Minor Changes

  • Table: Add overflowX and whiteSpace props (#603)

    These allow you to control overflow and wrapping behaviour when width is constrained.

    <>
      <Table />
    
      <Table overflowX="scroll" />
    
      <Table overflowX="scroll" whiteSpace="nowrap" />
    </>