Skip to content

Commit

Permalink
Merge branch 'v5' into 11053
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrewgdewar authored Oct 17, 2024
2 parents 6c5abac + 11da2f2 commit 38c3fbe
Show file tree
Hide file tree
Showing 16 changed files with 39 additions and 9 deletions.
4 changes: 4 additions & 0 deletions packages/react-code-editor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.4.8](https://github.com/patternfly/patternfly-react/compare/@patternfly/[email protected]...@patternfly/[email protected]) (2024-10-17)

**Note:** Version bump only for package @patternfly/react-code-editor

## [5.4.7](https://github.com/patternfly/patternfly-react/compare/@patternfly/[email protected]...@patternfly/[email protected]) (2024-10-09)

**Note:** Version bump only for package @patternfly/react-code-editor
Expand Down
2 changes: 1 addition & 1 deletion packages/react-code-editor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@patternfly/react-code-editor",
"version": "5.4.7",
"version": "5.4.8",
"description": "This package provides a PatternFly wrapper for the Monaco code editor\n",
"main": "dist/js/index.js",
"module": "dist/esm/index.js",
Expand Down
6 changes: 6 additions & 0 deletions packages/react-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.4.6](https://github.com/patternfly/patternfly-react/compare/@patternfly/[email protected]...@patternfly/[email protected]) (2024-10-17)

### Bug Fixes

- **Select/Dropdown:** updated autofocus to false by default in v5 ([#11114](https://github.com/patternfly/patternfly-react/issues/11114)) ([408b802](https://github.com/patternfly/patternfly-react/commit/408b802f12e2dd01457a13ef9b9e29b806cd0b1e))

## [5.4.5](https://github.com/patternfly/patternfly-react/compare/@patternfly/[email protected]...@patternfly/[email protected]) (2024-10-09)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/react-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@patternfly/react-core",
"version": "5.4.5",
"version": "5.4.6",
"description": "This library provides a set of common React components for use with the PatternFly reference implementation.",
"main": "dist/js/index.js",
"module": "dist/esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-core/src/components/Dropdown/Dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const DropdownBase: React.FunctionComponent<DropdownProps> = ({
onOpenChangeKeys = ['Escape', 'Tab'],
menuHeight,
maxMenuHeight,
shouldFocusFirstItemOnOpen = true,
shouldFocusFirstItemOnOpen = false,
shouldPreventScrollOnItemFocus = true,
focusTimeoutDelay = 0,
...props
Expand Down
2 changes: 1 addition & 1 deletion packages/react-core/src/components/Select/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const SelectBase: React.FunctionComponent<SelectProps & OUIAProps> = ({
selected,
toggle,
shouldFocusToggleOnSelect = false,
shouldFocusFirstItemOnOpen = true,
shouldFocusFirstItemOnOpen = false,
onOpenChange,
onOpenChangeKeys = ['Escape', 'Tab'],
isPlain,
Expand Down
4 changes: 4 additions & 0 deletions packages/react-docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [6.4.10](https://github.com/patternfly/patternfly-react/compare/@patternfly/[email protected]...@patternfly/[email protected]) (2024-10-17)

**Note:** Version bump only for package @patternfly/react-docs

## [6.4.9](https://github.com/patternfly/patternfly-react/compare/@patternfly/[email protected]...@patternfly/[email protected]) (2024-10-09)

**Note:** Version bump only for package @patternfly/react-docs
Expand Down
2 changes: 1 addition & 1 deletion packages/react-docs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@patternfly/react-docs",
"description": "PatternFly React Docs",
"version": "6.4.9",
"version": "6.4.10",
"publishConfig": {
"access": "public"
},
Expand Down
4 changes: 4 additions & 0 deletions packages/react-drag-drop/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.4.6](https://github.com/patternfly/patternfly-react/compare/@patternfly/[email protected]...@patternfly/[email protected]) (2024-10-17)

**Note:** Version bump only for package @patternfly/react-drag-drop

## [5.4.5](https://github.com/patternfly/patternfly-react/compare/@patternfly/[email protected]...@patternfly/[email protected]) (2024-10-09)

**Note:** Version bump only for package @patternfly/react-drag-drop
Expand Down
2 changes: 1 addition & 1 deletion packages/react-drag-drop/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@patternfly/react-drag-drop",
"version": "5.4.5",
"version": "5.4.6",
"description": "PatternFly drag and drop solution",
"main": "dist/js/index.js",
"module": "dist/esm/index.js",
Expand Down
4 changes: 4 additions & 0 deletions packages/react-integration/demo-app-ts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.4.9](https://github.com/patternfly/patternfly-react/compare/[email protected]@5.4.9) (2024-10-17)

**Note:** Version bump only for package demo-app-ts

## [5.4.8](https://github.com/patternfly/patternfly-react/compare/[email protected]@5.4.8) (2024-10-09)

**Note:** Version bump only for package demo-app-ts
Expand Down
2 changes: 1 addition & 1 deletion packages/react-integration/demo-app-ts/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "demo-app-ts",
"private": true,
"version": "5.4.8",
"version": "5.4.9",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
4 changes: 4 additions & 0 deletions packages/react-table/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.4.6](https://github.com/patternfly/patternfly-react/compare/@patternfly/[email protected]...@patternfly/[email protected]) (2024-10-17)

**Note:** Version bump only for package @patternfly/react-table

## [5.4.5](https://github.com/patternfly/patternfly-react/compare/@patternfly/[email protected]...@patternfly/[email protected]) (2024-10-09)

**Note:** Version bump only for package @patternfly/react-table
Expand Down
2 changes: 1 addition & 1 deletion packages/react-table/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@patternfly/react-table",
"version": "5.4.5",
"version": "5.4.6",
"description": "This library provides a set of React table components for use with the PatternFly 4",
"main": "dist/js/index.js",
"module": "dist/esm/index.js",
Expand Down
4 changes: 4 additions & 0 deletions packages/react-templates/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.1.6](https://github.com/patternfly/patternfly-react/compare/@patternfly/[email protected]...@patternfly/[email protected]) (2024-10-17)

**Note:** Version bump only for package @patternfly/react-templates

## [1.1.5](https://github.com/patternfly/patternfly-react/compare/@patternfly/[email protected]...@patternfly/[email protected]) (2024-10-09)

**Note:** Version bump only for package @patternfly/react-templates
Expand Down
2 changes: 1 addition & 1 deletion packages/react-templates/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@patternfly/react-templates",
"version": "1.1.5",
"version": "1.1.6",
"description": "This package provides wrapped component demos for ease of use\n",
"main": "dist/js/index.js",
"module": "dist/esm/index.js",
Expand Down

0 comments on commit 38c3fbe

Please sign in to comment.