frontend-plugin-api: drop match strategy from PageLayout tabs

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2026-02-17 13:14:45 +01:00
parent b2dc178fb6
commit 40dfe4a00f
4 changed files with 12 additions and 6 deletions
@@ -1825,8 +1825,6 @@ export interface PageTab {
id: string;
// (undocumented)
label: string;
// (undocumented)
matchStrategy?: 'prefix' | 'exact';
}
// @public
@@ -110,7 +110,6 @@ export const PageBlueprint = createExtensionBlueprint({
label: tabTitle || path,
icon: tabIcon,
href: path,
matchStrategy: 'prefix' as const,
};
});
@@ -27,7 +27,6 @@ export interface PageTab {
label: string;
icon?: IconElement;
href: string;
matchStrategy?: 'prefix' | 'exact';
}
/**