Skip to content

@patternfly/[email protected]

Choose a tag to compare

@github-actions github-actions released this 27 Mar 15:58
· 407 commits to main since this release
c4bcf84

Minor Changes

  • 79f30b8: 11ty/plugins/custom-elements-manifest.cjs: added renderTitleInOverview
    option, a boolean flag which defaults to true.

    When true, this option renders an <h1> in the element's docs page's "Overview"
    section.

    Note: the next major release will switch this option to false by default, so
    to prepare your docs pages, add your own headings:

    BEFORE:

    {% renderOverview %}
    <pf-jazz-hands></pf-jazz-hands>
    {% endrenderOverview %}

    AFTER:

    <section class="band">
      <h1 id="jazz-hands">Jazz Hands</h1>
    </section>
    
    {% renderOverview %}
    <pf-jazz-hands></pf-jazz-hands>
    {% endrenderOverview %}