Skip to content

Commit 8dab656

Browse files
committed
Pull in updates and bump core version
1 parent 6dbd3b4 commit 8dab656

9 files changed

Lines changed: 15 additions & 24 deletions

File tree

packages/react-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"tslib": "^2.8.1"
5555
},
5656
"devDependencies": {
57-
"@patternfly/patternfly": "6.3.0-prerelease.55",
57+
"@patternfly/patternfly": "6.5.0-prerelease.27",
5858
"case-anything": "^3.1.2",
5959
"css": "^3.0.0",
6060
"fs-extra": "^11.3.0"

packages/react-core/src/deprecated/components/Modal/examples/Modal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ To guide users through a series of steps in a modal, you can add a [wizard](/com
127127

128128
### With dropdown
129129

130-
To present a menu of actions or links to a user, you can add a [dropdown](/components/dropdown) to a modal. To allow the dropdown to visually break out of the modal container, set the `menuAppendTo` property to “parent”. Handle the modal’s closing behavior by listening to the `onEscapePress` callback on the `<Modal>` component. This allows the "escape" key to collapse the dropdown without closing the entire modal.
130+
To present a menu of actions or links to a user, you can add a [dropdown](/components/menus/dropdown) to a modal. To allow the dropdown to visually break out of the modal container, set the `menuAppendTo` property to “parent”. Handle the modal’s closing behavior by listening to the `onEscapePress` callback on the `<Modal>` component. This allows the "escape" key to collapse the dropdown without closing the entire modal.
131131

132132
```ts file="./ModalWithDropdown.tsx"
133133

@@ -143,7 +143,7 @@ To help simplify and explain complex models, add a help [popover](/components/po
143143

144144
### With form
145145

146-
To collect user input within a modal, you can add a [form](/components/form).
146+
To collect user input within a modal, you can add a [form](/components/forms/form).
147147

148148
To submit the form from a button in the modal's footer (outside of the `<Form>`), set the button's `form` property equal to the form's id.
149149

packages/react-core/src/deprecated/components/Tile/examples/Tile.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ import './Tile.css';
1515

1616
## Examples
1717

18-
Keyboard interaction patterns and a11y is implemented in the Tile demos, located in the [Demo section](/components/tile/react-demos).
19-
2018
### Basic tile
2119

2220
Basic tiles can appear in one of three states: a default state, selected state, and a disabled state. To change the state of a tile, use the properties `isSelected` and `isDisabled`.

packages/react-core/src/helpers/OUIA/OUIA.md

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,8 @@ component.
4040

4141
### Example
4242

43-
```js
44-
import { Fragment } from 'react';
45-
import { Button } from '@patternfly/react-core';
46-
47-
<Fragment>
48-
<Button>Button</Button>
49-
<br />
50-
<br />
51-
<Button ouiaId="static_id">Button with ouiaId</Button>
52-
</Fragment>
43+
```ts file="examples/OuiaExample.tsx"
44+
5345
```
5446

5547
## OUIA-compliant PatternFly 5 components
@@ -62,6 +54,7 @@ import { Button } from '@patternfly/react-core';
6254
* [Card](/components/card)
6355
* [Checkbox](/components/forms/checkbox)
6456
* [Chip](/components/chip)
57+
* [Content](/components/content)
6558
* [Dropdown](/components/menus/dropdown)
6659
* [DropdownItem](/components/menus/dropdown)
6760
* [FormSelect](/components/forms/form-select)
@@ -76,7 +69,6 @@ import { Button } from '@patternfly/react-core';
7669
* [Switch](/components/switch)
7770
* [TabContent](/components/tabs)
7871
* [Tabs](/components/tabs)
79-
* [Text](/components/text)
8072
* [TextInput](/components/forms/text-input)
8173
* [Title](/components/title)
8274
* [Toolbar](/components/toolbar)

packages/react-docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"test:a11y": "patternfly-a11y --config patternfly-a11y.config"
2424
},
2525
"dependencies": {
26-
"@patternfly/patternfly": "6.3.0-prerelease.55",
26+
"@patternfly/patternfly": "6.5.0-prerelease.27",
2727
"@patternfly/react-charts": "workspace:^",
2828
"@patternfly/react-code-editor": "workspace:^",
2929
"@patternfly/react-core": "workspace:^",

packages/react-docs/patternfly-docs/patternfly-docs.config.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@ module.exports = {
55
hasFooter: false,
66
hasVersionSwitcher: false,
77
hasThemeSwitcher: true,
8+
hasHighContrastSwitcher: true,
89
hasRTLSwitcher: true,
910
hasDesignGuidelines: false,
1011
sideNavItems: [
11-
{ section: 'get-started' },
12-
{ section: 'developer-guides' },
13-
{ section: 'foundations-and-styles' },
1412
{ section: 'components' },
15-
{ section: 'patterns' }
13+
{ section: 'patterns' },
14+
{ section: 'foundations-and-styles' },
15+
{ section: 'AI' },
16+
{ section: 'developer-guides' }
1617
],
1718
topNavItems: [{ text: 'Icons', path: '/icons' }],
1819
port: 8002

packages/react-icons/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"@fortawesome/free-brands-svg-icons": "^5.15.4",
3434
"@fortawesome/free-regular-svg-icons": "^5.15.4",
3535
"@fortawesome/free-solid-svg-icons": "^5.15.4",
36-
"@patternfly/patternfly": "6.3.0-prerelease.55",
36+
"@patternfly/patternfly": "6.5.0-prerelease.27",
3737
"fs-extra": "^11.3.0",
3838
"tslib": "^2.8.1"
3939
},

packages/react-styles/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"clean": "rimraf dist css"
2020
},
2121
"devDependencies": {
22-
"@patternfly/patternfly": "6.3.0-prerelease.55",
22+
"@patternfly/patternfly": "6.5.0-prerelease.27",
2323
"change-case": "^5.4.4",
2424
"fs-extra": "^11.3.0"
2525
},

packages/react-tokens/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
},
3131
"devDependencies": {
3232
"@adobe/css-tools": "^4.4.2",
33-
"@patternfly/patternfly": "6.3.0-prerelease.55",
33+
"@patternfly/patternfly": "6.5.0-prerelease.27",
3434
"fs-extra": "^11.3.0"
3535
}
3636
}

0 commit comments

Comments
 (0)