@backstage/core-compat-api 0.0.0-nightly-20241115023545 → 0.0.0-nightly-20241117023529
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 +3 -3
- package/dist/collectLegacyRoutes.esm.js +1 -1
- package/dist/compatWrapper/BackwardsCompatProvider.esm.js +1 -1
- package/dist/compatWrapper/ForwardsCompatProvider.esm.js +1 -1
- package/dist/convertLegacyApp.esm.js +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# @backstage/core-compat-api
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20241117023529
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- Updated dependencies
|
|
8
|
-
- @backstage/core-plugin-api@
|
|
9
|
-
- @backstage/frontend-plugin-api@0.0.0-nightly-
|
|
8
|
+
- @backstage/core-plugin-api@0.0.0-nightly-20241117023529
|
|
9
|
+
- @backstage/frontend-plugin-api@0.0.0-nightly-20241117023529
|
|
10
10
|
- @backstage/version-bridge@1.0.10
|
|
11
11
|
|
|
12
12
|
## 0.3.2-next.2
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { getComponentData } from '@backstage/core-plugin-api';
|
|
2
|
-
import { PageBlueprint, createExtensionInput, coreExtensionData, createFrontendPlugin, ApiBlueprint
|
|
2
|
+
import { PageBlueprint, createExtensionInput, coreExtensionData, createExtension, createFrontendPlugin, ApiBlueprint } from '@backstage/frontend-plugin-api';
|
|
3
3
|
import React, { Children, isValidElement } from 'react';
|
|
4
4
|
import { Route, Routes } from 'react-router-dom';
|
|
5
5
|
import { convertLegacyRouteRef, convertLegacyRouteRefs } from './convertLegacyRouteRef.esm.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React, { useMemo } from 'react';
|
|
2
2
|
import { AppContextProvider } from '../core-app-api/src/app/AppContext.esm.js';
|
|
3
|
-
import { useApi, appTreeApiRef, componentsApiRef, iconsApiRef, coreComponentRefs,
|
|
3
|
+
import { useApi, routeResolutionApiRef, appTreeApiRef, componentsApiRef, iconsApiRef, coreComponentRefs, createFrontendPlugin } from '@backstage/frontend-plugin-api';
|
|
4
4
|
import { getOrCreateGlobalSingleton, createVersionedContext, createVersionedValueMap } from '@backstage/version-bridge';
|
|
5
5
|
import { convertLegacyRouteRef } from '../convertLegacyRouteRef.esm.js';
|
|
6
6
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { useApp } from '@backstage/core-plugin-api';
|
|
2
|
-
import { componentsApiRef, iconsApiRef, routeResolutionApiRef
|
|
2
|
+
import { coreComponentRefs, componentsApiRef, iconsApiRef, routeResolutionApiRef } from '@backstage/frontend-plugin-api';
|
|
3
3
|
import React, { useMemo } from 'react';
|
|
4
4
|
import { toLegacyPlugin } from './BackwardsCompatProvider.esm.js';
|
|
5
5
|
import { ApiProvider } from '../core-app-api/src/apis/system/ApiProvider.esm.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React, { Children, isValidElement, Fragment } from 'react';
|
|
2
|
-
import { createExtension,
|
|
2
|
+
import { createExtension, coreExtensionData, createExtensionInput, createFrontendModule } from '@backstage/frontend-plugin-api';
|
|
3
3
|
import { getComponentData } from '@backstage/core-plugin-api';
|
|
4
4
|
import { collectLegacyRoutes } from './collectLegacyRoutes.esm.js';
|
|
5
5
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React, { ReactNode, ComponentType } from 'react';
|
|
2
|
-
import { AnalyticsApi, AnalyticsEvent, BackstagePlugin, RouteRef, SubRouteRef, ExternalRouteRef
|
|
2
|
+
import { AnalyticsApi, AnalyticsEvent, BackstagePlugin, AnyRouteRefParams, RouteRef, SubRouteRef, ExternalRouteRef } from '@backstage/core-plugin-api';
|
|
3
3
|
import { AnalyticsApi as AnalyticsApi$1, AnalyticsEvent as AnalyticsEvent$1, FrontendPlugin, FrontendModule, ExtensionOverrides, ExtensionDefinition, RouteRef as RouteRef$1, SubRouteRef as SubRouteRef$1, ExternalRouteRef as ExternalRouteRef$1 } from '@backstage/frontend-plugin-api';
|
|
4
4
|
|
|
5
5
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/core-compat-api",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20241117023529",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "web-library"
|
|
6
6
|
},
|
|
@@ -31,21 +31,21 @@
|
|
|
31
31
|
"test": "backstage-cli package test"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@backstage/core-plugin-api": "
|
|
35
|
-
"@backstage/frontend-plugin-api": "0.0.0-nightly-
|
|
34
|
+
"@backstage/core-plugin-api": "0.0.0-nightly-20241117023529",
|
|
35
|
+
"@backstage/frontend-plugin-api": "0.0.0-nightly-20241117023529",
|
|
36
36
|
"@backstage/version-bridge": "1.0.10",
|
|
37
37
|
"lodash": "^4.17.21"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@backstage-community/plugin-puppetdb": "^0.1.18",
|
|
41
41
|
"@backstage-community/plugin-stackstorm": "^0.1.16",
|
|
42
|
-
"@backstage/cli": "0.0.0-nightly-
|
|
43
|
-
"@backstage/core-app-api": "
|
|
44
|
-
"@backstage/frontend-app-api": "0.0.0-nightly-
|
|
45
|
-
"@backstage/frontend-test-utils": "0.0.0-nightly-
|
|
46
|
-
"@backstage/plugin-catalog": "0.0.0-nightly-
|
|
47
|
-
"@backstage/test-utils": "0.0.0-nightly-
|
|
48
|
-
"@backstage/types": "
|
|
42
|
+
"@backstage/cli": "0.0.0-nightly-20241117023529",
|
|
43
|
+
"@backstage/core-app-api": "0.0.0-nightly-20241117023529",
|
|
44
|
+
"@backstage/frontend-app-api": "0.0.0-nightly-20241117023529",
|
|
45
|
+
"@backstage/frontend-test-utils": "0.0.0-nightly-20241117023529",
|
|
46
|
+
"@backstage/plugin-catalog": "0.0.0-nightly-20241117023529",
|
|
47
|
+
"@backstage/test-utils": "0.0.0-nightly-20241117023529",
|
|
48
|
+
"@backstage/types": "0.0.0-nightly-20241117023529",
|
|
49
49
|
"@oriflame/backstage-plugin-score-card": "^0.8.0",
|
|
50
50
|
"@testing-library/jest-dom": "^6.0.0",
|
|
51
51
|
"@testing-library/react": "^16.0.0",
|