Skip to content

Releases: patternfly/patternfly-elements

@patternfly/[email protected]

09 Mar 21:04

Choose a tag to compare

Pre-release

Patch Changes

@patternfly/[email protected]

08 Mar 23:18

Choose a tag to compare

Pre-release

Minor Changes

  • cd6ca2f: minify lit-html template literals in builds

Patch Changes

  • a6253d3: Generate the single-file bundle entrypoint at runtime

@patternfly/[email protected]

08 Mar 23:18

Choose a tag to compare

Pre-release

Major Changes

  • 62a5d64: Remove focus-ring, pfe-typography, and pfe-c-typogrpahy mixins

    To implement focus-ring, see pfe-accordion-header or pfe-jump-links.

    outline: none;
    position: relative;
    
    &::before {
      position: absolute;
      content: "";
      top: -2px;
      left: -2px;
      width: calc(100% + #{pfe-var(ui--border-width--active)});
      height: calc(100% + #{pfe-var(ui--border-width--active)});
      border-radius: pfe-var(ui--border-radius);
      border: pfe-var(ui--border-width--md) pfe-var(ui--border-style) transparent;
    }
    
    &:focus::before {
      border-color: #6b9ff0;
    }
    
    &:focus:not(:focus-visible)::before {
      border: unset;
    }

    To implement typography, see core/pfe-sass/extends/_typography_extends.scss

@patternfly/[email protected]

08 Mar 23:18

Choose a tag to compare

Pre-release

Patch Changes

@patternfly/[email protected]

08 Mar 23:18

Choose a tag to compare

Pre-release

Patch Changes

  • 999cdfd: Register context providers even if they upgrade after the consumers

@patternfly/[email protected]

08 Mar 23:18

Choose a tag to compare

Pre-release

Patch Changes

@patternfly/[email protected]

08 Mar 23:18

Choose a tag to compare

Pre-release

Patch Changes

  • 56baa0e: update components entrypoint filename
  • a6253d3: Generate the single-file bundle entrypoint at runtime

@patternfly/[email protected]

04 Mar 20:59

Choose a tag to compare

Pre-release

Minor Changes

  • cfd010f: add singleFileBuild to esbuild helpers

@patternfly/[email protected]

04 Mar 00:56

Choose a tag to compare

Pre-release

Patch Changes

@patternfly/[email protected]

04 Mar 21:55

Choose a tag to compare

Pre-release

Patch Changes

  • 8771887: Restores chevrom in pfe-select, and passes click events on it to the select menu.