Skip to content

Commit 54b8a63

Browse files
authored
fix(multiple): not all symbols exported in some aria packages (angular#32591)
Fixes that a couple of Aria packages weren't exporting all the necessary symbols. Fixes angular#32584.
1 parent c27b1b4 commit 54b8a63

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

src/aria/accordion/index.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,4 @@
66
* found in the LICENSE file at https://angular.dev/license
77
*/
88

9-
export {AccordionPanel} from './accordion-panel';
10-
export {AccordionGroup} from './accordion-group';
11-
export {AccordionTrigger} from './accordion-trigger';
12-
export {AccordionContent} from './accordion-content';
13-
14-
// This needs to be re-exported, because it's used by the accordion components.
15-
// See: https://github.com/angular/components/issues/30663.
16-
export {DeferredContent as ɵɵDeferredContent} from '../private';
9+
export * from './public-api';

src/aria/grid/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,4 @@
66
* found in the LICENSE file at https://angular.dev/license
77
*/
88

9-
export {Grid} from './grid';
10-
export {GridCell} from './grid-cell';
11-
export {GridRow} from './grid-row';
12-
export {GridCellWidget} from './grid-cell-widget';
9+
export * from './public-api';

0 commit comments

Comments
 (0)