Skip to content

Releases: patternfly-java/patternfly-java

PatternFly Java 0.7.3

02 Apr 11:09
d454b1d

Choose a tag to compare

v0.7.3

Release 0.7.3

PatternFly Java 0.7.1

02 Apr 10:12
6c837a7

Choose a tag to compare

Fixed

  • Fix vulnerabilities in the NPM dependencies of the charts module.

PatternFly Java 0.7.0

02 Apr 09:43
c2100b9

Choose a tag to compare

Important

This release deprecates components based on PopperJS and adds alternatives using the popover API and CSS anchor positioning. The PopperJS based components have been renamed to PopperJS<ComponentName> and reimplemented <ComponentName> components are the replacements. This might break existing code!

  • org.patternfly.component.popover.PopperPopoverorg.patternfly.component.popover.Popover
  • org.patternfly.component.tooltip.PopperTooltiporg.patternfly.component.tooltip.Tooltip
  • org.patternfly.component.menu.PopperDropdownorg.patternfly.component.menu.Dropdown
  • org.patternfly.component.menu.PopperMultiSelectorg.patternfly.component.menu.MultiSelect
  • org.patternfly.component.menu.PopperMultiTypeaheadorg.patternfly.component.menu.MultiTypeahead
  • org.patternfly.component.menu.PopperSingleSelectorg.patternfly.component.menu.SingleSelect
  • org.patternfly.component.menu.PopperSingleTypeaheadorg.patternfly.component.menu.SingleTypeahead

If the browser does not support CSS anchor positioning or anchor-based container queries, the placement of the popover is calculated using the new Overlay class. The only requirement is that the browser supports the popover API, which is available now in all major browsers.

Added

  • Add native alternatives for dropdown, single and multi-select, and single and multi-type-ahead components
  • Deprecate components based on PopperJS
  • Add new Overlay class replacing the deprecated PopperBuilder

PatternFly Java 0.6.16

26 Mar 22:42
1a29377

Choose a tag to compare

Added

Fixed

  • Fix loading finder items

PatternFly Java 0.6.15

25 Mar 08:13
d619b0a

Choose a tag to compare

Added

  • Make finder column and preview responsive using container queries

PatternFly Java 0.6.14

24 Mar 21:17
404389e

Choose a tag to compare

Added

  • Add FinderColumn.showSearchThreshold(int)

Changed

  • Add padding to the finder preview matching the padding of the finder columns and items

PatternFly Java 0.6.10

24 Mar 06:59
5831aab

Choose a tag to compare

Added

  • Add FinderColumn.finderColumn(String identifier, String header)
  • Add FinderColumn.defaultSearch(String)
  • Add FinderColumn.toggleSearch(Predicate<FinderColumn>)

Fixed

  • Hide item actions in inactive columns

Removed

  • Remove FinderItem.nextColumn(FinderColumn column). Next columns can only be added lazily using FinderItem.nextColumn(Supplier<FinderColumn> column) (otherwise the component lookup of finder columns won't work).

PatternFly Java 0.6.8

23 Mar 10:35
c8a6609

Choose a tag to compare

Added

  • Add FinderPath and FinderSegment with FinderPath implementing Iterable<FinderSegment>
  • Add FinderPath Finder.path()
  • Add getters for the finder and finder column:
    • FinderColumn FinderItem.column()
    • Finder FinderItem.finder()
    • Finder FinderColumn.finder()

Fixed

  • Fix selection of already selected finder items

PatternFly Java 0.6.7

22 Mar 18:38
25552db

Choose a tag to compare

Added

  • Add support for BiPredicate<FinderItem, String> in FinderColumnSearch

Fixed

  • Fix finder item icons
  • Fix colors for finder item actions
  • Fix finder preview handlers

PatternFly Java 0.6.6

20 Mar 17:44
4e5956f

Choose a tag to compare

Added

  • Add support for finder item actions
  • Add Finder.bordered(boolean)
  • Add Finder.pinnable(boolean)