@backstage/frontend-plugin-api 0.14.0 → 0.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @backstage/frontend-plugin-api
|
|
2
2
|
|
|
3
|
+
## 0.14.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f06ba7f: Made the `pluginId` property optional in the `FrontendFeature` type, allowing plugins published against older versions of the framework to be used without type errors.
|
|
8
|
+
|
|
3
9
|
## 0.14.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -729,7 +729,9 @@ type ExtensionFactoryMiddleware = (originalFactory: (contextOverrides?: {
|
|
|
729
729
|
config?: JsonObject;
|
|
730
730
|
}) => Iterable<ExtensionDataValue<any, any>>;
|
|
731
731
|
/** @public */
|
|
732
|
-
type FrontendFeature = FrontendPlugin
|
|
732
|
+
type FrontendFeature = (Omit<FrontendPlugin, 'pluginId'> & {
|
|
733
|
+
pluginId?: string;
|
|
734
|
+
}) | FrontendModule;
|
|
733
735
|
|
|
734
736
|
/**
|
|
735
737
|
* A function used to define a parameter mapping function in order to facilitate
|