From 013ce8dd8194726596454b614a404dc9dbe1b8d6 Mon Sep 17 00:00:00 2001 From: Kristiyan Kostadinov Date: Thu, 31 Jul 2025 09:28:27 +0200 Subject: [PATCH] docs(cdk/drag-drop): scrollable example not showing Fixes that the scrollable example wasn't showing up properly, because it wasn't exported from the index file. Fixes #31619. --- src/components-examples/cdk/drag-drop/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components-examples/cdk/drag-drop/index.ts b/src/components-examples/cdk/drag-drop/index.ts index e54c8b6a3f8d..de8bfb538f06 100644 --- a/src/components-examples/cdk/drag-drop/index.ts +++ b/src/components-examples/cdk/drag-drop/index.ts @@ -19,3 +19,4 @@ export {CdkDragDropTableExample} from './cdk-drag-drop-table/cdk-drag-drop-table export {CdkDragDropMixedSortingExample} from './cdk-drag-drop-mixed-sorting/cdk-drag-drop-mixed-sorting-example'; export {CdkDragDropTabsExample} from './cdk-drag-drop-tabs/cdk-drag-drop-tabs-example'; export {CdkDragDropCopyListExample} from './cdk-drag-drop-copy-list/cdk-drag-drop-copy-list-example'; +export {CdkDragDropScrollableExample} from './cdk-drag-drop-scrollable/cdk-drag-drop-scrollable-example';