Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions adev/src/content/guide/templates/control-flow.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

Angular templates support *control flow blocks* that let you conditionally show, hide, and repeat elements.

IMPORTANT: Angular built-in control flow is in [developer preview](reference/releases#developer-preview). It is ready to
try, but may change before becoming stable.

## `@if` block conditionals

The `@if` block conditionally displays its content when its condition expression is truthy:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ the template. It has the following option:
* `path` - Relative path within the project that the migration should apply to. Can be used to
migrate specific sub-directories individually. Defaults to the project root.

NOTE: This is a developer preview migration

#### Before
```ts
import {Component} from '@angular/core';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ export default function(options: Options): Rule {
'Could not find any tsconfig file. Cannot run the control flow migration.');
}

context.logger.warn('IMPORTANT! This migration is in developer preview. Use with caution.');
let errors: string[] = [];

for (const tsconfigPath of allPaths) {
Expand Down
3 changes: 0 additions & 3 deletions packages/core/schematics/test/control_flow_migration_spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3588,9 +3588,6 @@ describe('control flow migration', () => {

await runMigration();
tree.readContent('/comp.ts');

expect(warnOutput.join(' '))
.toContain('IMPORTANT! This migration is in developer preview. Use with caution.');
});

it('should log a migration error when duplicate ng-template names are detected', async () => {
Expand Down