Merge pull request #26414 from backstage/blam/remove-namespace-where-possible

NFS: Removing `namespace` where possible as it's now deprecated
This commit is contained in:
Ben Lambert
2024-09-03 14:11:39 +02:00
committed by GitHub
25 changed files with 79 additions and 130 deletions
-24
View File
@@ -29,30 +29,6 @@ const appPlugin: FrontendPlugin<
{},
{},
{
[x: `component:app/${string}`]: ExtensionDefinition<{
config: {};
configInput: {};
output: ConfigurableExtensionDataRef<
{
ref: ComponentRef;
impl: ComponentType;
},
'core.component.component',
{}
>;
inputs: {
[x: string]: ExtensionInput<
AnyExtensionDataRef,
{
optional: boolean;
singleton: boolean;
}
>;
};
kind: 'component';
namespace: string;
name: string;
}>;
app: ExtensionDefinition<{
config: {};
configInput: {};
@@ -87,7 +87,7 @@ describe('SearchResultListItemBlueprint', () => {
});
const mockSearchPage = PageBlueprint.makeWithOverrides({
namespace: 'search',
name: 'search',
inputs: {
items: createExtensionInput([searchResultListItemDataRef]),
},