diff --git a/polaris-react/src/components/Page/components/Header/Header.tsx b/polaris-react/src/components/Page/components/Header/Header.tsx
index 720c7941bea..ffba84660e0 100644
--- a/polaris-react/src/components/Page/components/Header/Header.tsx
+++ b/polaris-react/src/components/Page/components/Header/Header.tsx
@@ -29,6 +29,7 @@ import {isReactElement} from '../../../../utilities/is-react-element';
import {Box} from '../../../Box';
import {HorizontalStack} from '../../../HorizontalStack';
import {useFeatures} from '../../../../utilities/features';
+import {FilterActionsProvider} from '../../../FilterActionsProvider';
import {Title} from './components';
import type {TitleProps} from './components';
@@ -49,6 +50,8 @@ interface PrimaryAction
export interface HeaderProps extends TitleProps {
/** Visually hide the title */
titleHidden?: boolean;
+ /** Enables filtering action list items */
+ filterActions?: boolean;
/** Primary page-level action */
primaryAction?: PrimaryAction | React.ReactNode;
/** Page-level pagination */
@@ -79,6 +82,7 @@ export function Header({
titleHidden = false,
primaryAction,
pagination,
+ filterActions,
additionalNavigation,
backAction,
secondaryActions = [],
@@ -229,35 +233,37 @@ export function Header({
visuallyHidden={titleHidden}
>
-
-
- {slot1}
- {slot2}
-
-
-
(
- {children}
- )}
- >
- {slot3}
- {slot4}
-
-
-
-
-
-
-
-
{slot5}
-
- {slot6}
-
-
-
+
+
+
+ {slot1}
+ {slot2}
+
+
+
(
+ {children}
+ )}
+ >
+ {slot3}
+ {slot4}
+
+
+
+
+
+
+
+
{slot5}
+
+ {slot6}
+
+
+
+
);