From af1d30064ca0123741d53f65750690c02e52f148 Mon Sep 17 00:00:00 2001 From: benjdlambert Date: Wed, 6 Aug 2025 11:35:38 +0200 Subject: [PATCH] chore: fixing docs Signed-off-by: benjdlambert --- .../building-plugins/03-common-extension-blueprints.md | 4 ++-- .../ComponentsApi/DefaultComponentsApi.test.tsx | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/frontend-system/building-plugins/03-common-extension-blueprints.md b/docs/frontend-system/building-plugins/03-common-extension-blueprints.md index e1e903eadd..11114047cb 100644 --- a/docs/frontend-system/building-plugins/03-common-extension-blueprints.md +++ b/docs/frontend-system/building-plugins/03-common-extension-blueprints.md @@ -17,9 +17,9 @@ These are the [extension blueprints](../architecture/23-extension-blueprints.md) An API extension is used to add or override [Utility API factories](../utility-apis/01-index.md) in the app. They are commonly used by plugins for both internal and shared APIs. There are also many built-in Api extensions provided by the framework that you are able to override. -### Component - [Reference](../../reference/frontend-plugin-api.createcomponentextension.md) +### AdaptableComponent - [Reference](../../reference/frontend-plugin-api.adaptablecomponentblueprint.md) -Components extensions are used to override the component associated with a component reference throughout the app. This uses an extension creator function rather than a blueprint, but will likely be migrated to a blueprint in the future. +Adaptable Components are extensions that are used to override implementation of components in the app and plugins. ### NavItem - [Reference](../../reference/frontend-plugin-api.navitemblueprint.md) diff --git a/packages/frontend-app-api/src/apis/implementations/ComponentsApi/DefaultComponentsApi.test.tsx b/packages/frontend-app-api/src/apis/implementations/ComponentsApi/DefaultComponentsApi.test.tsx index 9602fc382f..a5b219ec27 100644 --- a/packages/frontend-app-api/src/apis/implementations/ComponentsApi/DefaultComponentsApi.test.tsx +++ b/packages/frontend-app-api/src/apis/implementations/ComponentsApi/DefaultComponentsApi.test.tsx @@ -17,7 +17,6 @@ import { createAdaptableComponent } from '@backstage/frontend-plugin-api'; import { DefaultComponentsApi } from './DefaultComponentsApi'; import { render, screen } from '@testing-library/react'; -import { getJSDocOverrideTagNoCache } from 'typescript'; const { ref: testRefA } = createAdaptableComponent({ id: 'test.a' }); const { ref: testRefB1 } = createAdaptableComponent({ id: 'test.b' });