mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This allows Angular to error on unknown properties, allowing applications that don’t use custom elements to get better error reporting. Part of #10043 BREAKING CHANGE: - By default, Angular will error during parsing on unknown properties, even if they are on elements with a `-` in their name (aka custom elements). If you application is using custom elements, fill the new parameter `@NgModule.schemas` with the value `[CUSTOM_ELEMENTS_SCHEMA]`. E.g. for bootstrap: ``` bootstrap(MyComponent, {schemas: [CUSTOM_ELEMENTS_SCHEMA]}); ``` |
||
|---|---|---|
| .. | ||
| change_detection_integration_spec.ts | ||
| dynamic_component_loader_spec.ts | ||
| entry_components_integration_spec.ts | ||
| integration_spec.ts | ||
| ng_container_integration_spec.ts | ||
| ng_module_integration_spec.ts | ||
| projection_integration_spec.ts | ||
| query_integration_spec.ts | ||
| query_list_spec.ts | ||
| regression_integration_spec.ts | ||
| security_integration_spec.ts | ||
| view_injector_integration_spec.ts | ||