Skip to content

Commit 27ca0ff

Browse files
authored
chore(deps): manually update a number of dependencies (#12227)
* chore(deps): manually update a number of dependencies * bump docs-framework version again
1 parent 86d09b5 commit 27ca0ff

File tree

31 files changed

+1047
-1019
lines changed

31 files changed

+1047
-1019
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"@rollup/plugin-terser": "^0.4.4",
4040
"@testing-library/dom": "^10.4.1",
4141
"@testing-library/jest-dom": "^6.9.1",
42-
"@testing-library/react": "^16.3.1",
42+
"@testing-library/react": "^16.3.2",
4343
"@testing-library/user-event": "^14.6.1",
4444
"@types/jest": "29.5.14",
4545
"@types/node": "^22.16.5",
@@ -54,7 +54,7 @@
5454
"eslint-plugin-react": "^7.37.5",
5555
"eslint-plugin-react-compiler": "19.0.0-beta-ebf51a3-20250411",
5656
"eslint-plugin-react-hooks": "^5.2.0",
57-
"eslint-plugin-testing-library": "^7.1.1",
57+
"eslint-plugin-testing-library": "^7.15.4",
5858
"fs-extra": "^11.3.3",
5959
"glob": "^11.1.0",
6060
"globals": "^15.15.0",
@@ -66,12 +66,12 @@
6666
"lint-staged": "^15.5.2",
6767
"mutation-observer": "^1.0.3",
6868
"plop": "^4.0.4",
69-
"prettier": "^3.5.3",
69+
"prettier": "^3.8.1",
7070
"publint": "^0.3.16",
7171
"react": "^18.3.1",
7272
"react-dom": "^18.3.1",
73-
"rimraf": "^6.0.1",
74-
"rollup": "^4.36.0",
73+
"rimraf": "^6.1.2",
74+
"rollup": "^4.57.1",
7575
"rollup-plugin-scss": "^4.0.1",
7676
"rollup-plugin-svg": "^2.0.0",
7777
"sass": "^1.86.0",

packages/react-core/src/components/Accordion/AccordionToggle.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ import styles from '@patternfly/react-styles/css/components/Accordion/accordion'
44
import AngleRightIcon from '@patternfly/react-icons/dist/esm/icons/angle-right-icon';
55
import { AccordionContext, AccordionItemContext } from './AccordionContext';
66

7-
export interface AccordionToggleProps
8-
extends React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement> {
7+
export interface AccordionToggleProps extends React.DetailedHTMLProps<
8+
React.ButtonHTMLAttributes<HTMLButtonElement>,
9+
HTMLButtonElement
10+
> {
911
/** Content rendered inside the Accordion toggle */
1012
children?: React.ReactNode;
1113
/** Additional classes added to the Accordion Toggle */

packages/react-core/src/components/Avatar/Avatar.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
import styles from '@patternfly/react-styles/css/components/Avatar/avatar';
22
import { css } from '@patternfly/react-styles';
33

4-
export interface AvatarProps
5-
extends React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement> {
4+
export interface AvatarProps extends React.DetailedHTMLProps<
5+
React.ImgHTMLAttributes<HTMLImageElement>,
6+
HTMLImageElement
7+
> {
68
/** Additional classes added to the avatar. */
79
className?: string;
810
/** Attribute that specifies the URL of the image for the avatar. */

packages/react-core/src/components/Brand/Brand.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ import { setBreakpointCssVars } from '../../helpers';
44
import cssBrandHeight from '@patternfly/react-tokens/dist/esm/c_brand_Height';
55
import cssBrandWidth from '@patternfly/react-tokens/dist/esm/c_brand_Width';
66

7-
export interface BrandProps
8-
extends React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement> {
7+
export interface BrandProps extends React.DetailedHTMLProps<
8+
React.ImgHTMLAttributes<HTMLImageElement>,
9+
HTMLImageElement
10+
> {
911
/** Transforms the Brand into a <picture> element from an <img> element. Container for <source> child elements. */
1012
children?: React.ReactNode;
1113
/** Additional classes added to the either type of Brand. */

packages/react-core/src/components/Checkbox/Checkbox.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ import { getUniqueId } from '../../helpers/util';
77
import { ASTERISK } from '../../helpers/htmlConstants';
88

99
export interface CheckboxProps
10-
extends Omit<React.HTMLProps<HTMLInputElement>, 'type' | 'onChange' | 'disabled' | 'label'>,
11-
OUIAProps {
10+
extends Omit<React.HTMLProps<HTMLInputElement>, 'type' | 'onChange' | 'disabled' | 'label'>, OUIAProps {
1211
/** Additional classes added to the checkbox wrapper. This wrapper will be div element by default. It will be a label element if
1312
* isLabelWrapped is true, or it can be overridden by any element specified in the component prop.
1413
*/

packages/react-core/src/components/ClipboardCopy/ClipboardCopyButton.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ import CopyIcon from '@patternfly/react-icons/dist/esm/icons/copy-icon';
33
import { Button } from '../Button';
44
import { Tooltip, TooltipPosition } from '../Tooltip';
55

6-
export interface ClipboardCopyButtonProps
7-
extends Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, 'ref'> {
6+
export interface ClipboardCopyButtonProps extends Omit<
7+
React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>,
8+
'ref'
9+
> {
810
/** Callback for the copy when the button is clicked */
911
onClick: (event: React.MouseEvent) => void;
1012
/** Content of the copy button */

packages/react-core/src/components/ClipboardCopy/ClipboardCopyToggle.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ import { css } from '@patternfly/react-styles';
33
import AngleRightIcon from '@patternfly/react-icons/dist/esm/icons/angle-right-icon';
44
import { Button } from '../Button';
55

6-
export interface ClipboardCopyToggleProps
7-
extends Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, 'ref'> {
6+
export interface ClipboardCopyToggleProps extends Omit<
7+
React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>,
8+
'ref'
9+
> {
810
onClick: (event: React.MouseEvent) => void;
911
id: string;
1012
contentId: string;

packages/react-core/src/components/Compass/__tests__/CompassNavHome.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ test('Renders with default tooltip content', async () => {
2222

2323
const button = screen.getByRole('button');
2424

25-
user.hover(button);
25+
await user.hover(button);
2626

2727
await screen.findByRole('tooltip');
2828

@@ -36,7 +36,7 @@ test('Renders with custom tooltip content when provided', async () => {
3636

3737
const button = screen.getByRole('button');
3838

39-
user.hover(button);
39+
await user.hover(button);
4040

4141
await screen.findByRole('tooltip');
4242
expect(screen.getByRole('tooltip')).toHaveTextContent('Custom tooltip');

packages/react-core/src/components/Compass/__tests__/CompassNavSearch.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ test('Renders with default tooltip content', async () => {
2020

2121
const button = screen.getByRole('button');
2222

23-
user.hover(button);
23+
await user.hover(button);
2424

2525
await screen.findByRole('tooltip');
2626

@@ -34,7 +34,7 @@ test('Renders with custom tooltip content when provided', async () => {
3434

3535
const button = screen.getByRole('button');
3636

37-
user.hover(button);
37+
await user.hover(button);
3838

3939
await screen.findByRole('tooltip');
4040

packages/react-core/src/components/DatePicker/DatePicker.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ export interface DatePickerRequiredObject {
2424
/** The main date picker component. */
2525

2626
export interface DatePickerProps
27-
extends CalendarFormat,
27+
extends
28+
CalendarFormat,
2829
Omit<React.HTMLProps<HTMLInputElement>, 'onChange' | 'onFocus' | 'onBlur' | 'disabled' | 'ref'> {
2930
/** The container to append the menu to. Defaults to 'inline'.
3031
* If your menu is being cut off you can append it to an element higher up the DOM tree.

0 commit comments

Comments
 (0)