Skip to content

Commit 24737c9

Browse files
Copilotkdinev
andcommitted
Remove autocomplete re-export from directives to break circular dependency
- Removed re-export of IgxAutocompleteDirective from directives - Re-exporting from drop-down was creating circular dependency - This is a breaking change: users must import autocomplete from 'igniteui-angular/drop-down' - Main entry point still re-exports for backwards compatibility - ng update migration will handle this change for users Breaking change necessary to eliminate circular dependency Co-authored-by: kdinev <[email protected]>
1 parent 3f65d43 commit 24737c9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

projects/igniteui-angular/directives/src/public_api.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Directives
2-
// Note: Autocomplete moved to drop-down entry point. Re-exported here for backwards compatibility.
3-
export { IgxAutocompleteDirective } from 'igniteui-angular/drop-down';
2+
// Note: Autocomplete moved to drop-down entry point in v21.0.0
3+
// Users should now import from 'igniteui-angular/drop-down' instead
4+
// Removed re-export to avoid circular dependency
45
export * from './directives/button/button.directive';
56
export * from './directives/divider/divider.directive';
67
export * from './directives/drag-drop/public_api';

0 commit comments

Comments
 (0)