Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .changeset/cold-tools-follow.md

This file was deleted.

20 changes: 0 additions & 20 deletions .changeset/famous-parts-add.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/little-lizards-jog.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/small-trees-invite.md

This file was deleted.

25 changes: 25 additions & 0 deletions elements/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# @patternfly/elements

## 4.2.0
### Minor Changes

- bd40a73: ✨ Added `<pf-search-input>`.

A search input consists of a text field where users can type to find specific content or items. Unlike selects or dropdowns, which offer predefined options, a search input lets users enter their own keywords to filter or locate results. It includes a clear (×) button to easily remove the current input, allowing users to start a new search quickly.

Use this when users need to search freely using their own terms — ideal for large or frequently changing sets of content.
Do not use when the options are limited and known ahead of time — consider a dropdown or select instead

```html
<pf-search-input>
<pf-option value="Alabama"> Alabama </pf-option>
<pf-option value="New Jersey"> New Jersey </pf-option>
<pf-option value="New York"> New York </pf-option>
<pf-option value="New Mexico"> New Mexico </pf-option>
<pf-option value="North Carolina"> North Carolina </pf-option>
</pf-search-input>
```

### Patch Changes

- f35d4fa: Use inline slot documentation instead of JSDoc
- d36adee: `<pf-tooltip>`: hide content when copy/pasting tooltip elements

## 4.1.0
### Minor Changes

Expand Down
2 changes: 1 addition & 1 deletion elements/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@patternfly/elements",
"license": "MIT",
"version": "4.1.0",
"version": "4.2.0",
"description": "PatternFly Elements",
"customElements": "custom-elements.json",
"type": "module",
Expand Down
5 changes: 5 additions & 0 deletions tools/pfe-tools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# @patternfly/pfe-tools

## 5.0.4
### Patch Changes

- f35d4fa: Adjust dev server for new cem output

## 5.0.3
### Patch Changes

Expand Down
2 changes: 1 addition & 1 deletion tools/pfe-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@patternfly/pfe-tools",
"version": "5.0.3",
"version": "5.0.4",
"type": "module",
"description": "Development and build tools for PatternFly Elements and related projects",
"keywords": [
Expand Down
Loading