@backstage/frontend-app-api 0.3.1-next.0 → 0.4.0-next.2
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 +46 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +514 -238
- package/dist/index.esm.js.map +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,51 @@
|
|
|
1
1
|
# @backstage/frontend-app-api
|
|
2
2
|
|
|
3
|
+
## 0.4.0-next.2
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- ea06590: The app no longer provides the `AppContext` from `@backstage/core-plugin-api`. Components that require this context to be available should use the `compatWrapper` helper from `@backstage/core-compat-api`.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- aeb8008: Add support for translation extensions.
|
|
12
|
+
- b7adf24: Use the new plugin type for error boundary components.
|
|
13
|
+
- 8f5d6c1: Updates to match the new extension input wrapping.
|
|
14
|
+
- cb4197a: Forward ` node`` instead of `extensionId` to resolved extension inputs.
|
|
15
|
+
- 8837a96: Updates to match the introduction of `ExtensionDefinition` and new extension ID naming patterns.
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @backstage/frontend-plugin-api@0.4.0-next.2
|
|
18
|
+
- @backstage/theme@0.5.0-next.1
|
|
19
|
+
- @backstage/config@1.1.1
|
|
20
|
+
- @backstage/core-app-api@1.11.2-next.1
|
|
21
|
+
- @backstage/core-components@0.13.9-next.2
|
|
22
|
+
- @backstage/core-plugin-api@1.8.1-next.1
|
|
23
|
+
- @backstage/types@1.1.1
|
|
24
|
+
- @backstage/version-bridge@1.0.7
|
|
25
|
+
|
|
26
|
+
## 0.4.0-next.1
|
|
27
|
+
|
|
28
|
+
### Minor Changes
|
|
29
|
+
|
|
30
|
+
- e539735435: Updated core extension structure to make space for the sign-in page by adding `core.router`.
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- 5eb6b8a7bc: Added the nav logo extension for customization of sidebar logo
|
|
35
|
+
- 1f12fb762c: Create a core components extension that allows adopters to override core app components such as `Progress`, `BootErrorPage`, `NotFoundErrorPage` and `ErrorBoundaryFallback`.
|
|
36
|
+
- 59709286b3: Collect and register feature flags from plugins and extension overrides.
|
|
37
|
+
- f27ee7d937: Migrate analytics route tracker component.
|
|
38
|
+
- a5a04739e1: Updates to provide `node` to extension factories instead of `id` and `source`.
|
|
39
|
+
- Updated dependencies
|
|
40
|
+
- @backstage/frontend-plugin-api@0.4.0-next.1
|
|
41
|
+
- @backstage/core-components@0.13.9-next.1
|
|
42
|
+
- @backstage/core-plugin-api@1.8.1-next.1
|
|
43
|
+
- @backstage/core-app-api@1.11.2-next.1
|
|
44
|
+
- @backstage/config@1.1.1
|
|
45
|
+
- @backstage/theme@0.5.0-next.0
|
|
46
|
+
- @backstage/types@1.1.1
|
|
47
|
+
- @backstage/version-bridge@1.0.7
|
|
48
|
+
|
|
3
49
|
## 0.3.1-next.0
|
|
4
50
|
|
|
5
51
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { ExternalRouteRef, RouteRef, SubRouteRef, ExtensionDataRef, BackstagePlugin, ExtensionOverrides } from '@backstage/frontend-plugin-api';
|
|
1
2
|
import { JSX } from 'react';
|
|
2
3
|
import { Config } from '@backstage/config';
|
|
3
|
-
import { ExternalRouteRef, RouteRef, SubRouteRef, ExtensionDataRef, BackstagePlugin, ExtensionOverrides } from '@backstage/frontend-plugin-api';
|
|
4
4
|
import { ConfigApi } from '@backstage/core-plugin-api';
|
|
5
5
|
|
|
6
6
|
/**
|