Skip to content

@patternfly/[email protected]

Choose a tag to compare

@github-actions github-actions released this 25 Dec 19:20
· 2 commits to main since this release

Minor Changes

  • 280ef9b: ✨ Added <pf-alert> component

    An alert is a notification that provides brief information to the user without blocking their workflow.

    <pf-alert variant="warning"
              title-text="Custom alert title"
              dismissable>
      This is the alert description.
      <pf-button slot="actions">Ok</pf-button>
      <pf-button slot="actions">Cancel</pf-button>
    </pf-alert>
  • 1eea604: ✨ Added <pf-helper-text> component

    Helper text is an on-screen field guideline that helps provide context regarding field inputs.

    <pf-helper-text variant="error">You must include an email address</pf-helper-text>
  • 26b1faa: ✨ Added <pf-hint> component

    A hint is in-app messaging that provides a one-step reminder, explanation,
    or call to action for a page or modal. Hints provide information about an
    interaction or prerequisite step that might not be immediately obvious to the
    user.

    <pf-hint>
      Welcome to the new documentation experience.
      <a href="#">Learn more about the improved features</a>.
    </pf-hint>

Patch Changes