diff --git a/plugins/scaffolder/src/alpha.ts b/plugins/scaffolder/src/alpha.ts index 72eb073fba..b2eac4a0c8 100644 --- a/plugins/scaffolder/src/alpha.ts +++ b/plugins/scaffolder/src/alpha.ts @@ -16,7 +16,14 @@ export { NextScaffolderPage } from './plugin'; export { + TemplateGroups, type TemplateGroupFilter, + type TemplateGroupsProps, type NextRouterProps, type FormProps, + CategoryPicker, + RegisterExistingButton, + type RegisterExistingButtonProps, + ContextMenu, } from './next'; +export { registerComponentRouteRef } from './routes'; diff --git a/plugins/scaffolder/src/next/TemplateListPage/index.ts b/plugins/scaffolder/src/next/TemplateListPage/index.ts index c404a9352a..74efbef813 100644 --- a/plugins/scaffolder/src/next/TemplateListPage/index.ts +++ b/plugins/scaffolder/src/next/TemplateListPage/index.ts @@ -15,3 +15,16 @@ */ export { TemplateListPage } from './TemplateListPage'; export type { TemplateListPageProps } from './TemplateListPage'; + +export { TemplateGroups } from './TemplateGroups'; +export type { + TemplateGroupFilter, + TemplateGroupsProps, +} from './TemplateGroups'; + +export { CategoryPicker } from './CategoryPicker'; + +export { RegisterExistingButton } from './RegisterExistingButton'; +export type { RegisterExistingButtonProps } from './RegisterExistingButton'; + +export { ContextMenu } from './ContextMenu';