// NL Design System building blocks — Utrecht is NL DS's reference Angular implementation // (docs/frontend-decisions.md). The portals depend on the design system through this one lib. // The design tokens/theme CSS is imported once, at the app level (apps/*/src/styles.css). // // The Utrecht v3 components are NgModule-based (not standalone), so we re-export the module. // A standalone component consumes them by importing UtrechtComponentsModule in its `imports` // (CLAUDE.md §10 forbids *declaring* NgModules in our code, not consuming a third-party one). // Re-export the whole Utrecht package: importing UtrechtComponentsModule pulls every component it // exports into the compiler's scope, so the AOT build needs all of them resolvable through this // barrel (a partial re-export fails with NG3004 for the first unused component). export * from '@utrecht/component-library-angular';