Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions workspaces/lightspeed/.changeset/bright-waves-flow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@red-hat-developer-hub/backstage-plugin-lightspeed': minor
---

Graduate the New Frontend System (NFS) plugin from the `./alpha` export to the primary `./` entry point. OFS (legacy) exports are now available at `./legacy`. Translations remain at `./alpha`.
2 changes: 2 additions & 0 deletions workspaces/lightspeed/app-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ app:
baseUrl: http://localhost:3000
packages: all
extensions:
- app-root-wrapper:app/drawer
- app-root-wrapper:app/lightspeed-fab
- api:app/app-language:
config:
availableLanguages: ['en', 'de', 'es', 'fr', 'it', 'ja']
Expand Down
8 changes: 7 additions & 1 deletion workspaces/lightspeed/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@
"typescript": "~5.8.0"
},
"dependencies": {
"@react-stately/layout": "^3.6.0",
"@react-stately/overlays": "^3.6.0",
"react": "^18.3.1"
},
"resolutions": {
Expand All @@ -74,9 +76,13 @@
"@types/react-dom": "^18",
"refractor@npm:3.6.0/prismjs": "^1.30.0",
"@backstage/frontend-plugin-api": "0.15.1",
"@backstage/plugin-catalog": "2.0.1",
"infinispan": "0.13.0",
"@protobufjs/inquire": "1.1.0",
"langsmith": "^0.6.0"
"langsmith": "^0.6.0",
"react-router": "6.30.4",
"react-router-dom": "6.30.4",
"@remix-run/router": "1.23.3"
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
Expand Down
2 changes: 1 addition & 1 deletion workspaces/lightspeed/packages/app-legacy/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ import { githubAuthApiRef } from '@backstage/core-plugin-api';
import {
LightspeedPage,
LightspeedDrawerProvider,
} from '@red-hat-developer-hub/backstage-plugin-lightspeed';
} from '@red-hat-developer-hub/backstage-plugin-lightspeed/legacy';
import { RbacPage } from '@backstage-community/plugin-rbac';

const LightspeedRedirect = () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import {
LightspeedChatContainer,
LightspeedDrawerStateExposer,
LightspeedFAB,
} from '@red-hat-developer-hub/backstage-plugin-lightspeed';
} from '@red-hat-developer-hub/backstage-plugin-lightspeed/legacy';
import { Administration } from '@backstage-community/plugin-rbac';
import { ApplicationDrawer } from './ApplicationDrawer';
import LogoFull from './LogoFull';
Expand Down
2 changes: 1 addition & 1 deletion workspaces/lightspeed/packages/app/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
lightspeedFABModule,
lightspeedRedirectModule,
lightspeedTranslationsModule,
} from '@red-hat-developer-hub/backstage-plugin-lightspeed/alpha';
} from '@red-hat-developer-hub/backstage-plugin-lightspeed';
import { rhdhThemeModule } from '@red-hat-developer-hub/backstage-plugin-theme/alpha';

import { navModule } from './modules/nav';
Expand Down
Loading
Loading