diff --git a/plugins/jenkins/src/components/BuildsPage/lib/CITable/index.ts b/plugins/jenkins/src/components/BuildsPage/lib/CITable/index.ts index 3be4dae9ce..cb00501bb9 100644 --- a/plugins/jenkins/src/components/BuildsPage/lib/CITable/index.ts +++ b/plugins/jenkins/src/components/BuildsPage/lib/CITable/index.ts @@ -14,3 +14,5 @@ * limitations under the License. */ export { CITable } from './CITable'; +export { columnFactories as ciTableColumnFactories } from './columns'; +export { defaultCITableColumns } from './presets'; diff --git a/plugins/jenkins/src/index.ts b/plugins/jenkins/src/index.ts index 7562026bdc..d1f2b6d8c9 100644 --- a/plugins/jenkins/src/index.ts +++ b/plugins/jenkins/src/index.ts @@ -34,3 +34,7 @@ export { } from './components/Router'; export { JENKINS_ANNOTATION, LEGACY_JENKINS_ANNOTATION } from './constants'; export * from './api'; +export { + ciTableColumnFactories, + defaultCITableColumns, +} from './components/BuildsPage/lib/CITable';