From 2102452e721d208673889ec3130afb1020300e7d Mon Sep 17 00:00:00 2001 From: bnechyporenko Date: Fri, 8 Jul 2022 10:45:19 +0200 Subject: [PATCH] Updated fast-walls-carry.md Signed-off-by: bnechyporenko --- .changeset/fast-walls-carry.md | 50 +++++----------------------------- 1 file changed, 7 insertions(+), 43 deletions(-) diff --git a/.changeset/fast-walls-carry.md b/.changeset/fast-walls-carry.md index 8c31d96326..1da91b4ef8 100644 --- a/.changeset/fast-walls-carry.md +++ b/.changeset/fast-walls-carry.md @@ -1,56 +1,17 @@ --- -'@internal/plugin-catalog-customized': patch +'@backstage/app-defaults': none +'@backstage/core-app-api': none +'@backstage/core-plugin-api': none +'@backstage/plugin-catalog': none --- Introduced plugin options for the components, to be able to customise existing components. The author of the component might define the configurable places of the component, and the user of this component can reconfigure it if necessary. ---- - -## @backstage/app-defaults - ---- - -Introduced an extra parameter in BackstagePlugin. -This optional parameter is responsible for providing a type for input options for the plugin. - ---- - -## @backstage/core-app-api - ---- - -Introduced an extra parameter in BackstagePlugin. -This optional parameter is responsible for providing a type for input options for the plugin. - ---- - -## @backstage/core-plugin-api - ---- - -Introduced plugin options for the components, to be able to customise existing components. -Those customizations are stored in React context of the plugin. The configurable options could be defined during the creation of the plugin via `__experimentalConfigure` method. And the user of the plugin can redefine it with -``` -myPlugin.__experimentalReconfigure({ -... -}); -``` - ---- - -## @backstage/plugin-catalog - ---- - -Plugin catalog has been modified to use an experimental feature where you can customize the title of the create button. - -You can modify it by doing next: - ```typescript jsx import { catalogPlugin } from '@backstage/plugin-catalog'; @@ -58,3 +19,6 @@ catalogPlugin.__experimentalReconfigure({ createButtonTitle: 'New', }); ``` + +Also introduced an extra parameter in BackstagePlugin. +This optional parameter is responsible for providing a type for input options for the plugin.