From b3eea5611272a1939d42cea075539d3dc2e92028 Mon Sep 17 00:00:00 2001 From: Divyanshi Gupta Date: Thu, 23 Jul 2026 19:18:11 +0530 Subject: [PATCH 1/2] chore(quickstart): remove OFS re-exports from main entry point --- .../.changeset/remove-ofs-reexports.md | 10 ++ .../components/Root/QuickstartSidebarItem.tsx | 8 +- .../app-legacy/src/components/Root/Root.tsx | 2 +- .../quickstart/plugins/quickstart/README.md | 24 +++- .../quickstart/app-config.dynamic.yaml | 5 + .../plugins/quickstart/package.json | 2 +- .../plugins/quickstart/report-alpha.api.md | 28 ++--- .../plugins/quickstart/report-legacy.api.md | 28 ++--- .../plugins/quickstart/report.api.md | 116 +++--------------- .../plugins/quickstart/src/index.tsx | 2 - 10 files changed, 83 insertions(+), 142 deletions(-) create mode 100644 workspaces/quickstart/.changeset/remove-ofs-reexports.md diff --git a/workspaces/quickstart/.changeset/remove-ofs-reexports.md b/workspaces/quickstart/.changeset/remove-ofs-reexports.md new file mode 100644 index 00000000000..86d583ba6ec --- /dev/null +++ b/workspaces/quickstart/.changeset/remove-ofs-reexports.md @@ -0,0 +1,10 @@ +--- +'@red-hat-developer-hub/backstage-plugin-quickstart': major +--- + +**Breaking:** Legacy (OFS) component exports have been removed from the main `./` entry point and are now exclusively available at the `./legacy` subpath. OFS consumers must update their imports: + +```diff +- import { QuickstartDrawerProvider } from '@red-hat-developer-hub/backstage-plugin-quickstart'; ++ import { QuickstartDrawerProvider } from '@red-hat-developer-hub/backstage-plugin-quickstart/legacy'; +``` diff --git a/workspaces/quickstart/packages/app-legacy/src/components/Root/QuickstartSidebarItem.tsx b/workspaces/quickstart/packages/app-legacy/src/components/Root/QuickstartSidebarItem.tsx index dbb4077b6b9..5a6488cfff0 100644 --- a/workspaces/quickstart/packages/app-legacy/src/components/Root/QuickstartSidebarItem.tsx +++ b/workspaces/quickstart/packages/app-legacy/src/components/Root/QuickstartSidebarItem.tsx @@ -16,13 +16,13 @@ import { SidebarItem } from '@backstage/core-components'; import WavingHandOutlinedIcon from '@mui/icons-material/WavingHandOutlined'; -import { useQuickstartDrawerContext } from '@red-hat-developer-hub/backstage-plugin-quickstart'; -import { configApiRef, useApi } from '@backstage/core-plugin-api'; -import { useMemo } from 'react'; import { + useQuickstartDrawerContext, filterQuickstartItemsByRole, QuickstartItemData, -} from '@red-hat-developer-hub/backstage-plugin-quickstart'; +} from '@red-hat-developer-hub/backstage-plugin-quickstart/legacy'; +import { configApiRef, useApi } from '@backstage/core-plugin-api'; +import { useMemo } from 'react'; export const QuickstartSidebarItem = () => { const configApi = useApi(configApiRef); diff --git a/workspaces/quickstart/packages/app-legacy/src/components/Root/Root.tsx b/workspaces/quickstart/packages/app-legacy/src/components/Root/Root.tsx index 8c882d34965..fc02027a3af 100644 --- a/workspaces/quickstart/packages/app-legacy/src/components/Root/Root.tsx +++ b/workspaces/quickstart/packages/app-legacy/src/components/Root/Root.tsx @@ -45,7 +45,7 @@ import { QuickstartDrawerProvider, QuickstartDrawerContent, QuickstartDrawerStateExposer, -} from '@red-hat-developer-hub/backstage-plugin-quickstart'; +} from '@red-hat-developer-hub/backstage-plugin-quickstart/legacy'; import { QuickstartSidebarItem } from './QuickstartSidebarItem'; import { Administration } from '@backstage-community/plugin-rbac'; import { ApplicationDrawer } from './ApplicationDrawer'; diff --git a/workspaces/quickstart/plugins/quickstart/README.md b/workspaces/quickstart/plugins/quickstart/README.md index 77d7eb7b9b8..6ad1aa2ec2b 100644 --- a/workspaces/quickstart/plugins/quickstart/README.md +++ b/workspaces/quickstart/plugins/quickstart/README.md @@ -20,9 +20,9 @@ If you want to install the plugin as a dynamic plugin in Red Hat Developer Hub: - Follow the [Installing plugins guide](https://github.com/redhat-developer/rhdh/blob/main/docs/dynamic-plugins/installing-plugins.md) - Add the content of `app-config.dynamic.yaml` into your `app-config.local.yaml` -#### Dynamic plugin configuration +#### Dynamic plugin configuration (OFS) -Add the extension point inside your `app-config.yaml` or `app-config.local.yaml` file: +Legacy exports require `module: Legacy`. Add the extension point inside your `app-config.yaml` or `app-config.local.yaml` file: ```yaml dynamicPlugins: @@ -34,18 +34,34 @@ dynamicPlugins: mountPoints: - mountPoint: application/provider importName: QuickstartDrawerProvider + module: Legacy - mountPoint: application/internal/drawer-state importName: QuickstartDrawerStateExposer + module: Legacy - mountPoint: application/internal/drawer-content importName: QuickstartDrawerContent + module: Legacy config: id: quickstart - mountPoint: global.header/help importName: QuickstartButton + module: Legacy config: priority: 100 ``` +### Legacy / OFS consumers + +Legacy component imports have been **removed from the main package path**. OFS consumers must update imports to use the `./legacy` subpath: + +```ts +// Before (no longer works) +import { QuickstartDrawerProvider } from '@red-hat-developer-hub/backstage-plugin-quickstart'; + +// After (required) +import { QuickstartDrawerProvider } from '@red-hat-developer-hub/backstage-plugin-quickstart/legacy'; +``` + ### Static Installation 1. Install the plugin package: @@ -58,7 +74,7 @@ yarn add --cwd packages/app @red-hat-developer-hub/backstage-plugin-quickstart 2. Add the plugin to your Backstage app by modifying `packages/app/src/App.tsx`: ```tsx -import { QuickstartDrawerProvider } from '@red-hat-developer-hub/backstage-plugin-quickstart'; +import { QuickstartDrawerProvider } from '@red-hat-developer-hub/backstage-plugin-quickstart/legacy'; // Wrap your app with the QuickstartDrawerProvider const App = () => ( @@ -171,7 +187,7 @@ app: Access quickstart drawer functionality in your components: ```tsx -import { useQuickstartDrawerContext } from '@red-hat-developer-hub/backstage-plugin-quickstart'; +import { useQuickstartDrawerContext } from '@red-hat-developer-hub/backstage-plugin-quickstart/legacy'; const MyComponent = () => { const { openDrawer, closeDrawer, isDrawerOpen } = diff --git a/workspaces/quickstart/plugins/quickstart/app-config.dynamic.yaml b/workspaces/quickstart/plugins/quickstart/app-config.dynamic.yaml index 177ced9f062..9f38ca3cd58 100644 --- a/workspaces/quickstart/plugins/quickstart/app-config.dynamic.yaml +++ b/workspaces/quickstart/plugins/quickstart/app-config.dynamic.yaml @@ -1,19 +1,24 @@ dynamicPlugins: frontend: red-hat-developer-hub.backstage-plugin-quickstart: + # Legacy exports require `module: Legacy` — they are not available on the default module. translationResources: - importName: quickstartTranslations ref: quickstartTranslationRef mountPoints: - mountPoint: application/provider importName: QuickstartDrawerProvider + module: Legacy - mountPoint: application/internal/drawer-state importName: QuickstartDrawerStateExposer + module: Legacy - mountPoint: application/internal/drawer-content importName: QuickstartDrawerContent + module: Legacy config: id: quickstart - mountPoint: global.header/help importName: QuickstartButton + module: Legacy config: priority: 100 diff --git a/workspaces/quickstart/plugins/quickstart/package.json b/workspaces/quickstart/plugins/quickstart/package.json index c073688575a..cd661acb106 100644 --- a/workspaces/quickstart/plugins/quickstart/package.json +++ b/workspaces/quickstart/plugins/quickstart/package.json @@ -110,7 +110,7 @@ "name": "red-hat-developer-hub.backstage-plugin-quickstart", "exposedModules": { "PluginRoot": "./src/index.tsx", - "QuickstartPlugin": "./src/index.tsx", + "Legacy": "./src/legacyExports.ts", "Alpha": "./src/alpha.ts" } }, diff --git a/workspaces/quickstart/plugins/quickstart/report-alpha.api.md b/workspaces/quickstart/plugins/quickstart/report-alpha.api.md index 82dc99e5427..a3fb71e8418 100644 --- a/workspaces/quickstart/plugins/quickstart/report-alpha.api.md +++ b/workspaces/quickstart/plugins/quickstart/report-alpha.api.md @@ -10,8 +10,22 @@ import { TranslationResource } from '@backstage/frontend-plugin-api'; export const quickstartTranslationRef: TranslationRef< 'plugin.quickstart', { + readonly 'button.quickstart': string; + readonly 'button.openQuickstartGuide': string; + readonly 'button.closeDrawer': string; + readonly 'button.gotIt': string; + readonly 'item.expandAriaLabel': string; + readonly 'item.collapseAriaLabel': string; + readonly 'item.expandButtonAriaLabel': string; + readonly 'item.collapseButtonAriaLabel': string; + readonly 'content.loading': string; + readonly 'content.emptyState.title': string; + readonly 'footer.progress': string; + readonly 'footer.hide': string; + readonly 'footer.notStarted': string; readonly 'header.title': string; readonly 'header.subtitle': string; + readonly 'snackbar.helpPrompt': string; readonly 'steps.setupAuthentication.title': string; readonly 'steps.setupAuthentication.description': string; readonly 'steps.setupAuthentication.ctaTitle': string; @@ -42,20 +56,6 @@ export const quickstartTranslationRef: TranslationRef< readonly 'steps.getStartedWithLightspeed.title': string; readonly 'steps.getStartedWithLightspeed.description': string; readonly 'steps.getStartedWithLightspeed.ctaTitle': string; - readonly 'button.quickstart': string; - readonly 'button.openQuickstartGuide': string; - readonly 'button.closeDrawer': string; - readonly 'button.gotIt': string; - readonly 'snackbar.helpPrompt': string; - readonly 'footer.progress': string; - readonly 'footer.notStarted': string; - readonly 'footer.hide': string; - readonly 'content.loading': string; - readonly 'content.emptyState.title': string; - readonly 'item.expandAriaLabel': string; - readonly 'item.collapseAriaLabel': string; - readonly 'item.expandButtonAriaLabel': string; - readonly 'item.collapseButtonAriaLabel': string; readonly 'dev.pageTitle': string; readonly 'dev.pageDescription': string; readonly 'dev.drawerControls': string; diff --git a/workspaces/quickstart/plugins/quickstart/report-legacy.api.md b/workspaces/quickstart/plugins/quickstart/report-legacy.api.md index 0785b8df011..505140c1761 100644 --- a/workspaces/quickstart/plugins/quickstart/report-legacy.api.md +++ b/workspaces/quickstart/plugins/quickstart/report-legacy.api.md @@ -92,8 +92,22 @@ export const quickstartPlugin: BackstagePlugin<{}, {}, {}>; export const quickstartTranslationRef: TranslationRef< 'plugin.quickstart', { + readonly 'button.quickstart': string; + readonly 'button.openQuickstartGuide': string; + readonly 'button.closeDrawer': string; + readonly 'button.gotIt': string; + readonly 'item.expandAriaLabel': string; + readonly 'item.collapseAriaLabel': string; + readonly 'item.expandButtonAriaLabel': string; + readonly 'item.collapseButtonAriaLabel': string; + readonly 'content.loading': string; + readonly 'content.emptyState.title': string; + readonly 'footer.progress': string; + readonly 'footer.hide': string; + readonly 'footer.notStarted': string; readonly 'header.title': string; readonly 'header.subtitle': string; + readonly 'snackbar.helpPrompt': string; readonly 'steps.setupAuthentication.title': string; readonly 'steps.setupAuthentication.description': string; readonly 'steps.setupAuthentication.ctaTitle': string; @@ -124,20 +138,6 @@ export const quickstartTranslationRef: TranslationRef< readonly 'steps.getStartedWithLightspeed.title': string; readonly 'steps.getStartedWithLightspeed.description': string; readonly 'steps.getStartedWithLightspeed.ctaTitle': string; - readonly 'button.quickstart': string; - readonly 'button.openQuickstartGuide': string; - readonly 'button.closeDrawer': string; - readonly 'button.gotIt': string; - readonly 'snackbar.helpPrompt': string; - readonly 'footer.progress': string; - readonly 'footer.notStarted': string; - readonly 'footer.hide': string; - readonly 'content.loading': string; - readonly 'content.emptyState.title': string; - readonly 'item.expandAriaLabel': string; - readonly 'item.collapseAriaLabel': string; - readonly 'item.expandButtonAriaLabel': string; - readonly 'item.collapseButtonAriaLabel': string; readonly 'dev.pageTitle': string; readonly 'dev.pageDescription': string; readonly 'dev.drawerControls': string; diff --git a/workspaces/quickstart/plugins/quickstart/report.api.md b/workspaces/quickstart/plugins/quickstart/report.api.md index 08259cb4b9e..034d8f09aeb 100644 --- a/workspaces/quickstart/plugins/quickstart/report.api.md +++ b/workspaces/quickstart/plugins/quickstart/report.api.md @@ -4,16 +4,12 @@ ```ts import { AppDrawerContent } from '@red-hat-developer-hub/backstage-plugin-app-react'; -import { BackstagePlugin } from '@backstage/core-plugin-api'; -import { CSSProperties } from 'react'; import { ExtensionDataRef } from '@backstage/frontend-plugin-api'; import { FrontendModule } from '@backstage/frontend-plugin-api'; import { GlobalHeaderMenuItemData } from '@red-hat-developer-hub/backstage-plugin-global-header/alpha'; -import { JSX as JSX_2 } from 'react/jsx-runtime'; import { MenuItemParams } from '@red-hat-developer-hub/backstage-plugin-global-header/alpha'; import { OverridableExtensionDefinition } from '@backstage/frontend-plugin-api'; import { OverridableFrontendPlugin } from '@backstage/frontend-plugin-api'; -import { PropsWithChildren } from 'react'; import { TranslationRef } from '@backstage/frontend-plugin-api'; import { TranslationResource } from '@backstage/frontend-plugin-api'; @@ -80,93 +76,29 @@ const _default: OverridableFrontendPlugin< >; export default _default; -// @public -export type DrawerPartialState = { - id: string; - isDrawerOpen: boolean; - drawerWidth: number; - setDrawerWidth: (width: number) => void; - closeDrawer: () => void; -}; - -// @public -export type DrawerStateExposerProps = { - onStateChange: (state: DrawerPartialState) => void; -}; - -// @public -export const filterQuickstartItemsByRole: ( - items: QuickstartItemData[], - userRole: string, -) => QuickstartItemData[]; - -// @public -export const QuickstartButton: ( - input: QuickstartButtonProps, -) => JSX_2.Element | null; - -// @public -export interface QuickstartButtonProps { - onClick?: () => void; - style?: CSSProperties; - title?: string; -} - -// @public -export const QuickstartDrawerContent: () => JSX_2.Element | null; - -// @public -export interface QuickstartDrawerContextType { - closeDrawer: () => void; - drawerWidth: number; - isDrawerOpen: boolean; - openDrawer: () => void; - roleLoading: boolean; - setDrawerWidth: React.Dispatch>; - toggleDrawer: () => void; - userRole: UserRole | null; -} - -// @public -export const QuickstartDrawerProvider: ( - input: PropsWithChildren, -) => JSX_2.Element; - -// @public -export const QuickstartDrawerStateExposer: ( - input: DrawerStateExposerProps, -) => null; - // @public export const quickstartInitModule: FrontendModule; -// @public -export interface QuickstartItemCtaData { - link: string; - text: string; - textKey?: string; -} - -// @public -export interface QuickstartItemData { - cta?: QuickstartItemCtaData; - description: string; - descriptionKey?: string; - icon?: string; - roles?: string[]; - title: string; - titleKey?: string; -} - -// @public -export const quickstartPlugin: BackstagePlugin<{}, {}, {}>; - // @public export const quickstartTranslationRef: TranslationRef< 'plugin.quickstart', { + readonly 'button.quickstart': string; + readonly 'button.openQuickstartGuide': string; + readonly 'button.closeDrawer': string; + readonly 'button.gotIt': string; + readonly 'item.expandAriaLabel': string; + readonly 'item.collapseAriaLabel': string; + readonly 'item.expandButtonAriaLabel': string; + readonly 'item.collapseButtonAriaLabel': string; + readonly 'content.loading': string; + readonly 'content.emptyState.title': string; + readonly 'footer.progress': string; + readonly 'footer.hide': string; + readonly 'footer.notStarted': string; readonly 'header.title': string; readonly 'header.subtitle': string; + readonly 'snackbar.helpPrompt': string; readonly 'steps.setupAuthentication.title': string; readonly 'steps.setupAuthentication.description': string; readonly 'steps.setupAuthentication.ctaTitle': string; @@ -197,20 +129,6 @@ export const quickstartTranslationRef: TranslationRef< readonly 'steps.getStartedWithLightspeed.title': string; readonly 'steps.getStartedWithLightspeed.description': string; readonly 'steps.getStartedWithLightspeed.ctaTitle': string; - readonly 'button.quickstart': string; - readonly 'button.openQuickstartGuide': string; - readonly 'button.closeDrawer': string; - readonly 'button.gotIt': string; - readonly 'snackbar.helpPrompt': string; - readonly 'footer.progress': string; - readonly 'footer.notStarted': string; - readonly 'footer.hide': string; - readonly 'content.loading': string; - readonly 'content.emptyState.title': string; - readonly 'item.expandAriaLabel': string; - readonly 'item.collapseAriaLabel': string; - readonly 'item.expandButtonAriaLabel': string; - readonly 'item.collapseButtonAriaLabel': string; readonly 'dev.pageTitle': string; readonly 'dev.pageDescription': string; readonly 'dev.drawerControls': string; @@ -232,11 +150,5 @@ export const quickstartTranslations: TranslationResource<'plugin.quickstart'>; // @public export const quickstartTranslationsModule: FrontendModule; -// @public -export const useQuickstartDrawerContext: () => QuickstartDrawerContextType; - -// @public -export type UserRole = 'admin' | 'developer'; - // (No @packageDocumentation comment for this package) ``` diff --git a/workspaces/quickstart/plugins/quickstart/src/index.tsx b/workspaces/quickstart/plugins/quickstart/src/index.tsx index e335ce66cdd..e81c949e7b8 100644 --- a/workspaces/quickstart/plugins/quickstart/src/index.tsx +++ b/workspaces/quickstart/plugins/quickstart/src/index.tsx @@ -97,5 +97,3 @@ export { quickstartTranslationRef, quickstartTranslations, } from './translations'; - -export * from './legacyExports'; From 5f80526e9280f94d9e35ceb0a7353454e83e1049 Mon Sep 17 00:00:00 2001 From: Divyanshi Gupta Date: Thu, 23 Jul 2026 19:32:55 +0530 Subject: [PATCH 2/2] update api-reports --- .../plugins/quickstart/report-alpha.api.md | 28 +++++++++---------- .../plugins/quickstart/report-legacy.api.md | 28 +++++++++---------- .../plugins/quickstart/report.api.md | 28 +++++++++---------- 3 files changed, 42 insertions(+), 42 deletions(-) diff --git a/workspaces/quickstart/plugins/quickstart/report-alpha.api.md b/workspaces/quickstart/plugins/quickstart/report-alpha.api.md index a3fb71e8418..82dc99e5427 100644 --- a/workspaces/quickstart/plugins/quickstart/report-alpha.api.md +++ b/workspaces/quickstart/plugins/quickstart/report-alpha.api.md @@ -10,22 +10,8 @@ import { TranslationResource } from '@backstage/frontend-plugin-api'; export const quickstartTranslationRef: TranslationRef< 'plugin.quickstart', { - readonly 'button.quickstart': string; - readonly 'button.openQuickstartGuide': string; - readonly 'button.closeDrawer': string; - readonly 'button.gotIt': string; - readonly 'item.expandAriaLabel': string; - readonly 'item.collapseAriaLabel': string; - readonly 'item.expandButtonAriaLabel': string; - readonly 'item.collapseButtonAriaLabel': string; - readonly 'content.loading': string; - readonly 'content.emptyState.title': string; - readonly 'footer.progress': string; - readonly 'footer.hide': string; - readonly 'footer.notStarted': string; readonly 'header.title': string; readonly 'header.subtitle': string; - readonly 'snackbar.helpPrompt': string; readonly 'steps.setupAuthentication.title': string; readonly 'steps.setupAuthentication.description': string; readonly 'steps.setupAuthentication.ctaTitle': string; @@ -56,6 +42,20 @@ export const quickstartTranslationRef: TranslationRef< readonly 'steps.getStartedWithLightspeed.title': string; readonly 'steps.getStartedWithLightspeed.description': string; readonly 'steps.getStartedWithLightspeed.ctaTitle': string; + readonly 'button.quickstart': string; + readonly 'button.openQuickstartGuide': string; + readonly 'button.closeDrawer': string; + readonly 'button.gotIt': string; + readonly 'snackbar.helpPrompt': string; + readonly 'footer.progress': string; + readonly 'footer.notStarted': string; + readonly 'footer.hide': string; + readonly 'content.loading': string; + readonly 'content.emptyState.title': string; + readonly 'item.expandAriaLabel': string; + readonly 'item.collapseAriaLabel': string; + readonly 'item.expandButtonAriaLabel': string; + readonly 'item.collapseButtonAriaLabel': string; readonly 'dev.pageTitle': string; readonly 'dev.pageDescription': string; readonly 'dev.drawerControls': string; diff --git a/workspaces/quickstart/plugins/quickstart/report-legacy.api.md b/workspaces/quickstart/plugins/quickstart/report-legacy.api.md index 505140c1761..0785b8df011 100644 --- a/workspaces/quickstart/plugins/quickstart/report-legacy.api.md +++ b/workspaces/quickstart/plugins/quickstart/report-legacy.api.md @@ -92,22 +92,8 @@ export const quickstartPlugin: BackstagePlugin<{}, {}, {}>; export const quickstartTranslationRef: TranslationRef< 'plugin.quickstart', { - readonly 'button.quickstart': string; - readonly 'button.openQuickstartGuide': string; - readonly 'button.closeDrawer': string; - readonly 'button.gotIt': string; - readonly 'item.expandAriaLabel': string; - readonly 'item.collapseAriaLabel': string; - readonly 'item.expandButtonAriaLabel': string; - readonly 'item.collapseButtonAriaLabel': string; - readonly 'content.loading': string; - readonly 'content.emptyState.title': string; - readonly 'footer.progress': string; - readonly 'footer.hide': string; - readonly 'footer.notStarted': string; readonly 'header.title': string; readonly 'header.subtitle': string; - readonly 'snackbar.helpPrompt': string; readonly 'steps.setupAuthentication.title': string; readonly 'steps.setupAuthentication.description': string; readonly 'steps.setupAuthentication.ctaTitle': string; @@ -138,6 +124,20 @@ export const quickstartTranslationRef: TranslationRef< readonly 'steps.getStartedWithLightspeed.title': string; readonly 'steps.getStartedWithLightspeed.description': string; readonly 'steps.getStartedWithLightspeed.ctaTitle': string; + readonly 'button.quickstart': string; + readonly 'button.openQuickstartGuide': string; + readonly 'button.closeDrawer': string; + readonly 'button.gotIt': string; + readonly 'snackbar.helpPrompt': string; + readonly 'footer.progress': string; + readonly 'footer.notStarted': string; + readonly 'footer.hide': string; + readonly 'content.loading': string; + readonly 'content.emptyState.title': string; + readonly 'item.expandAriaLabel': string; + readonly 'item.collapseAriaLabel': string; + readonly 'item.expandButtonAriaLabel': string; + readonly 'item.collapseButtonAriaLabel': string; readonly 'dev.pageTitle': string; readonly 'dev.pageDescription': string; readonly 'dev.drawerControls': string; diff --git a/workspaces/quickstart/plugins/quickstart/report.api.md b/workspaces/quickstart/plugins/quickstart/report.api.md index 034d8f09aeb..113d5accf19 100644 --- a/workspaces/quickstart/plugins/quickstart/report.api.md +++ b/workspaces/quickstart/plugins/quickstart/report.api.md @@ -83,22 +83,8 @@ export const quickstartInitModule: FrontendModule; export const quickstartTranslationRef: TranslationRef< 'plugin.quickstart', { - readonly 'button.quickstart': string; - readonly 'button.openQuickstartGuide': string; - readonly 'button.closeDrawer': string; - readonly 'button.gotIt': string; - readonly 'item.expandAriaLabel': string; - readonly 'item.collapseAriaLabel': string; - readonly 'item.expandButtonAriaLabel': string; - readonly 'item.collapseButtonAriaLabel': string; - readonly 'content.loading': string; - readonly 'content.emptyState.title': string; - readonly 'footer.progress': string; - readonly 'footer.hide': string; - readonly 'footer.notStarted': string; readonly 'header.title': string; readonly 'header.subtitle': string; - readonly 'snackbar.helpPrompt': string; readonly 'steps.setupAuthentication.title': string; readonly 'steps.setupAuthentication.description': string; readonly 'steps.setupAuthentication.ctaTitle': string; @@ -129,6 +115,20 @@ export const quickstartTranslationRef: TranslationRef< readonly 'steps.getStartedWithLightspeed.title': string; readonly 'steps.getStartedWithLightspeed.description': string; readonly 'steps.getStartedWithLightspeed.ctaTitle': string; + readonly 'button.quickstart': string; + readonly 'button.openQuickstartGuide': string; + readonly 'button.closeDrawer': string; + readonly 'button.gotIt': string; + readonly 'snackbar.helpPrompt': string; + readonly 'footer.progress': string; + readonly 'footer.notStarted': string; + readonly 'footer.hide': string; + readonly 'content.loading': string; + readonly 'content.emptyState.title': string; + readonly 'item.expandAriaLabel': string; + readonly 'item.collapseAriaLabel': string; + readonly 'item.expandButtonAriaLabel': string; + readonly 'item.collapseButtonAriaLabel': string; readonly 'dev.pageTitle': string; readonly 'dev.pageDescription': string; readonly 'dev.drawerControls': string;