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]}); ``` |
||
|---|---|---|
| .. | ||
| async.ts | ||
| async_test_completer.ts | ||
| component_fixture.ts | ||
| fake_async.ts | ||
| lang_utils.ts | ||
| logger.ts | ||
| mock_animation_player.ts | ||
| mock_application_ref.ts | ||
| ng_zone_mock.ts | ||
| test_bed.ts | ||
| test_component_builder.ts | ||
| testing.ts | ||
| testing_internal.ts | ||