Skip to content

Releases: patternfly/patternfly-elements

@patternfly/[email protected]

27 Apr 13:51
f4f8e95

Choose a tag to compare

Minor Changes

  • 4832b29: Test Helpers: Added allUpdates test helper, which waits until an element
    completely finishes updating.

    const element = await fixture(html`<my-el></my-el>`);
    await allUpdates(element);

Patch Changes

  • a4c20b7: Dev Server: updates router to use project subpath configuration

@patternfly/[email protected]

27 Apr 13:51
f4f8e95

Choose a tag to compare

Minor Changes

  • 78c8e44: Added StringListConverter for managing comma-separated list attributes.

Patch Changes

  • 37c23c3: overflow-controller:
    • improves display calculations for overflow scroll buttons
    • adds smooth scroll behavior

@patternfly/[email protected]

27 Apr 13:51
f4f8e95

Choose a tag to compare

Minor Changes

  • 78c8e44: ✨ Added <pf-popover>

    <pf-popover
      heading="Popover heading"
      body="Popovers are triggered by click rather than hover."
      footer="Popover footer"
    >
      <pf-button>Toggle popover</pf-button>
    </pf-popover>
  • 9266ee5: <pf-button>: expose button part for styling the internal button element

Patch Changes

  • 5a6683b: <pf-tabs>: improved accessibility for elements extending BaseTab and
    BaseTabPanel by assigning random IDs when no exists.
  • 32eecd6: BaseTab:
    • fixed Safari focus issue on keyboard navigation
    • fixed Safari focus issue on mouse click
  • Updated dependencies [78c8e44]
  • Updated dependencies [37c23c3]

@patternfly/[email protected]

30 Mar 14:45
09c65fc

Choose a tag to compare

Minor Changes

  • 69e7f5b: Added site.componentSubpath config to .pfe.config.json, representing the
    site subpath for component pages and demos. Default is 'components'.

@patternfly/[email protected]

30 Mar 10:25
8f4aaf5

Choose a tag to compare

Patch Changes

  • 90b3ade: Removes special characters from component slugs ie. special (characters) becomes special-characters

@patternfly/[email protected]

30 Mar 14:45
09c65fc

Choose a tag to compare

Patch Changes

  • 0895f50: <pf-accordion>: prevented expanded accordion headers from stealing focus when the page loads.

@patternfly/[email protected]

28 Mar 14:10
8ff162a

Choose a tag to compare

Minor Changes

  • 83024fe: roving-tabindex-controller: notify the host when the focused item changes.
  • 83024fe: roving-tabindex-controller: allow component authors to specify the type of items.

@patternfly/[email protected]

28 Mar 14:10
8ff162a

Choose a tag to compare

Patch Changes

@patternfly/[email protected]

27 Mar 15:58
c4bcf84

Choose a tag to compare

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 %}

@patternfly/[email protected]

27 Mar 15:58
c4bcf84

Choose a tag to compare

Patch Changes

  • 9fd329e: <pf-panel>: fixed raised and bordered variants