_id
stringlengths
21
254
text
stringlengths
1
93.7k
metadata
dict
angular/adev/src/content/api-examples/forms/ts/reactiveRadioButtons/module.ts_0_651
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {NgModule} from '@angular/core'; import {ReactiveFormsModule} from '@angular/forms'; import {BrowserModule} f...
{ "end_byte": 651, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/reactiveRadioButtons/module.ts" }
angular/adev/src/content/api-examples/forms/ts/reactiveRadioButtons/reactive_radio_button_example.ts_0_878
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ // #docregion Reactive import {Component} from '@angular/core'; import {FormControl, FormGroup} from '@angular/forms...
{ "end_byte": 878, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/reactiveRadioButtons/reactive_radio_button_example.ts" }
angular/adev/src/content/api-examples/forms/ts/reactiveRadioButtons/e2e_test/reactive_radio_button_spec.ts_0_1341
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {browser, by, element, ElementArrayFinder} from 'protractor'; import {verifyNoBrowserErrors} from '../../../...
{ "end_byte": 1341, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/reactiveRadioButtons/e2e_test/reactive_radio_button_spec.ts" }
angular/adev/src/content/api-examples/forms/ts/formBuilder/module.ts_0_670
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {NgModule} from '@angular/core'; import {ReactiveFormsModule} from '@angular/forms'; import {BrowserModule} f...
{ "end_byte": 670, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/formBuilder/module.ts" }
angular/adev/src/content/api-examples/forms/ts/formBuilder/form_builder_example.ts_0_1643
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ // #docregion disabled-control import {Component, Inject} from '@angular/core'; import {FormBuilder, FormControl, Fo...
{ "end_byte": 1643, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/formBuilder/form_builder_example.ts" }
angular/adev/src/content/api-examples/forms/ts/formBuilder/e2e_test/form_builder_spec.ts_0_1172
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {browser, by, element, ElementArrayFinder} from 'protractor'; import {verifyNoBrowserErrors} from '../../../...
{ "end_byte": 1172, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/formBuilder/e2e_test/form_builder_spec.ts" }
angular/adev/src/content/api-examples/forms/ts/nestedFormArray/module.ts_0_615
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {NgModule} from '@angular/core'; import {ReactiveFormsModule} from '@angular/forms'; import {BrowserModule} f...
{ "end_byte": 615, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/nestedFormArray/module.ts" }
angular/adev/src/content/api-examples/forms/ts/nestedFormArray/nested_form_array_example.ts_0_1336
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ /* tslint:disable:no-console */ // #docregion Component import {Component} from '@angular/core'; import {FormArray,...
{ "end_byte": 1336, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/nestedFormArray/nested_form_array_example.ts" }
angular/adev/src/content/api-examples/forms/ts/nestedFormArray/e2e_test/nested_form_array_spec.ts_0_1290
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {browser, by, element, ElementArrayFinder} from 'protractor'; import {verifyNoBrowserErrors} from '../../../...
{ "end_byte": 1290, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/nestedFormArray/e2e_test/nested_form_array_spec.ts" }
angular/adev/src/content/api-examples/forms/ts/simpleFormGroup/module.ts_0_615
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {NgModule} from '@angular/core'; import {ReactiveFormsModule} from '@angular/forms'; import {BrowserModule} f...
{ "end_byte": 615, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/simpleFormGroup/module.ts" }
angular/adev/src/content/api-examples/forms/ts/simpleFormGroup/simple_form_group_example.ts_0_1221
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ /* tslint:disable:no-console */ // #docregion Component import {Component} from '@angular/core'; import {FormContro...
{ "end_byte": 1221, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/simpleFormGroup/simple_form_group_example.ts" }
angular/adev/src/content/api-examples/forms/ts/simpleFormGroup/e2e_test/simple_form_group_spec.ts_0_1459
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {browser, by, element, ElementFinder} from 'protractor'; import {verifyNoBrowserErrors} from '../../../../.....
{ "end_byte": 1459, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/simpleFormGroup/e2e_test/simple_form_group_spec.ts" }
angular/adev/src/content/api-examples/forms/ts/selectControl/module.ts_0_604
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {NgModule} from '@angular/core'; import {FormsModule} from '@angular/forms'; import {BrowserModule} from '@an...
{ "end_byte": 604, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/selectControl/module.ts" }
angular/adev/src/content/api-examples/forms/ts/selectControl/select_control_example.ts_0_990
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ // #docregion Component import {Component} from '@angular/core'; @Component({ selector: 'example-app', template...
{ "end_byte": 990, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/selectControl/select_control_example.ts" }
angular/adev/src/content/api-examples/forms/ts/selectControl/e2e_test/select_control_spec.ts_0_1100
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {browser, by, element, ElementArrayFinder, ElementFinder} from 'protractor'; import {verifyNoBrowserErrors} ...
{ "end_byte": 1100, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/selectControl/e2e_test/select_control_spec.ts" }
angular/adev/src/content/api-examples/forms/ts/reactiveSelectControl/module.ts_0_633
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {NgModule} from '@angular/core'; import {ReactiveFormsModule} from '@angular/forms'; import {BrowserModule} f...
{ "end_byte": 633, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/reactiveSelectControl/module.ts" }
angular/adev/src/content/api-examples/forms/ts/reactiveSelectControl/reactive_select_control_example.ts_0_1062
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ // #docregion Component import {Component} from '@angular/core'; import {FormControl, FormGroup} from '@angular/form...
{ "end_byte": 1062, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/reactiveSelectControl/reactive_select_control_example.ts" }
angular/adev/src/content/api-examples/forms/ts/reactiveSelectControl/e2e_test/reactive_select_control_spec.ts_0_1170
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {browser, by, element, ElementArrayFinder, ElementFinder} from 'protractor'; import {verifyNoBrowserErrors} ...
{ "end_byte": 1170, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/reactiveSelectControl/e2e_test/reactive_select_control_spec.ts" }
angular/adev/src/content/api-examples/forms/ts/radioButtons/module.ts_0_594
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {NgModule} from '@angular/core'; import {FormsModule} from '@angular/forms'; import {BrowserModule} from '@an...
{ "end_byte": 594, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/radioButtons/module.ts" }
angular/adev/src/content/api-examples/forms/ts/radioButtons/radio_button_example.ts_0_805
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component} from '@angular/core'; @Component({ selector: 'example-app', template: ` <form #f="ngForm"...
{ "end_byte": 805, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/radioButtons/radio_button_example.ts" }
angular/adev/src/content/api-examples/forms/ts/radioButtons/e2e_test/radio_button_spec.ts_0_1550
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {browser, by, element, ElementArrayFinder} from 'protractor'; import {verifyNoBrowserErrors} from '../../../...
{ "end_byte": 1550, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/radioButtons/e2e_test/radio_button_spec.ts" }
angular/adev/src/content/api-examples/forms/ts/simpleNgModel/module.ts_0_605
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {NgModule} from '@angular/core'; import {FormsModule} from '@angular/forms'; import {BrowserModule} from '@an...
{ "end_byte": 605, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/simpleNgModel/module.ts" }
angular/adev/src/content/api-examples/forms/ts/simpleNgModel/simple_ng_model_example.ts_0_647
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ // #docregion Component import {Component} from '@angular/core'; @Component({ selector: 'example-app', template...
{ "end_byte": 647, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/simpleNgModel/simple_ng_model_example.ts" }
angular/adev/src/content/api-examples/forms/ts/simpleNgModel/e2e_test/simple_ng_model_spec.ts_0_1316
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {browser, by, element, ElementArrayFinder, ElementFinder} from 'protractor'; import {verifyNoBrowserErrors} ...
{ "end_byte": 1316, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/simpleNgModel/e2e_test/simple_ng_model_spec.ts" }
angular/adev/src/content/api-examples/forms/ts/simpleForm/module.ts_0_589
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {NgModule} from '@angular/core'; import {FormsModule} from '@angular/forms'; import {BrowserModule} from '@an...
{ "end_byte": 589, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/simpleForm/module.ts" }
angular/adev/src/content/api-examples/forms/ts/simpleForm/simple_form_example.ts_0_966
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ /* tslint:disable:no-console */ // #docregion Component import {Component} from '@angular/core'; import {NgForm} fr...
{ "end_byte": 966, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/simpleForm/simple_form_example.ts" }
angular/adev/src/content/api-examples/forms/ts/simpleForm/e2e_test/simple_form_spec.ts_0_1453
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {browser, by, element, ElementArrayFinder} from 'protractor'; import {verifyNoBrowserErrors} from '../../../...
{ "end_byte": 1453, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/simpleForm/e2e_test/simple_form_spec.ts" }
angular/adev/src/content/api-examples/forms/ts/nestedFormGroup/module.ts_0_631
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {NgModule} from '@angular/core'; import {ReactiveFormsModule} from '@angular/forms'; import {BrowserModule} f...
{ "end_byte": 631, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/nestedFormGroup/module.ts" }
angular/adev/src/content/api-examples/forms/ts/nestedFormGroup/nested_form_group_example.ts_0_1647
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ /* tslint:disable:no-console */ // #docregion Component import {Component} from '@angular/core'; import {FormContro...
{ "end_byte": 1647, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/nestedFormGroup/nested_form_group_example.ts" }
angular/adev/src/content/api-examples/forms/ts/nestedFormGroup/e2e_test/nested_form_group_spec.ts_0_1409
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {browser, by, element, ElementFinder} from 'protractor'; import {verifyNoBrowserErrors} from '../../../../.....
{ "end_byte": 1409, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/forms/ts/nestedFormGroup/e2e_test/nested_form_group_spec.ts" }
angular/adev/src/content/api-examples/core/main.ts_0_481
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import 'zone.js/lib/browser/rollup-main'; import 'zone.js/lib/zone-spec/task-tracking'; // okd import {platformBro...
{ "end_byte": 481, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/main.ts" }
angular/adev/src/content/api-examples/core/start-server.js_0_552
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ const protractorUtils = require('@bazel/protractor/protractor-utils'); const protractor = require('protractor'); mo...
{ "end_byte": 552, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/start-server.js" }
angular/adev/src/content/api-examples/core/test_module.ts_0_1866
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component, NgModule} from '@angular/core'; import {RouterModule} from '@angular/router'; import * as animat...
{ "end_byte": 1866, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/test_module.ts" }
angular/adev/src/content/api-examples/core/di/ts/metadata_spec.ts_0_5289
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import { Component, Directive, Host, Injectable, Injector, Optional, Self, SkipSelf, } from '@angula...
{ "end_byte": 5289, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/di/ts/metadata_spec.ts" }
angular/adev/src/content/api-examples/core/di/ts/injector_spec.ts_0_3039
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import { inject, InjectFlags, InjectionToken, InjectOptions, Injector, ProviderToken, ɵsetCurrentInjec...
{ "end_byte": 3039, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/di/ts/injector_spec.ts" }
angular/adev/src/content/api-examples/core/di/ts/provider_spec.ts_0_6666
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Injectable, InjectionToken, Injector, Optional} from '@angular/core'; { describe('Provider examples', () ...
{ "end_byte": 6666, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/di/ts/provider_spec.ts" }
angular/adev/src/content/api-examples/core/di/ts/forward_ref/forward_ref_spec.ts_0_1621
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {forwardRef, Inject, Injectable, Injector, resolveForwardRef} from '@angular/core'; { describe('forwardRef...
{ "end_byte": 1621, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/di/ts/forward_ref/forward_ref_spec.ts" }
angular/adev/src/content/api-examples/core/di/ts/contentChild/content_child_howto.ts_0_634
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ // #docregion HowTo import {AfterContentInit, ContentChild, Directive} from '@angular/core'; @Directive({ selecto...
{ "end_byte": 634, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/di/ts/contentChild/content_child_howto.ts" }
angular/adev/src/content/api-examples/core/di/ts/contentChild/module.ts_0_564
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {NgModule} from '@angular/core'; import {BrowserModule} from '@angular/platform-browser'; import {ContentChil...
{ "end_byte": 564, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/di/ts/contentChild/module.ts" }
angular/adev/src/content/api-examples/core/di/ts/contentChild/content_child_example.ts_0_949
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ // #docregion Component import {Component, ContentChild, Directive, Input} from '@angular/core'; @Directive({ sel...
{ "end_byte": 949, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/di/ts/contentChild/content_child_example.ts" }
angular/adev/src/content/api-examples/core/di/ts/contentChild/e2e_test/content_child_spec.ts_0_822
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {browser, by, element, ElementFinder} from 'protractor'; import {verifyNoBrowserErrors} from '../../../../.....
{ "end_byte": 822, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/di/ts/contentChild/e2e_test/content_child_spec.ts" }
angular/adev/src/content/api-examples/core/di/ts/viewChild/module.ts_0_540
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {NgModule} from '@angular/core'; import {BrowserModule} from '@angular/platform-browser'; import {Pane, View...
{ "end_byte": 540, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/di/ts/viewChild/module.ts" }
angular/adev/src/content/api-examples/core/di/ts/viewChild/view_child_example.ts_0_934
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ // #docregion Component import {Component, Directive, Input, ViewChild} from '@angular/core'; @Directive({ select...
{ "end_byte": 934, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/di/ts/viewChild/view_child_example.ts" }
angular/adev/src/content/api-examples/core/di/ts/viewChild/view_child_howto.ts_0_647
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ // #docregion HowTo import {AfterViewInit, Component, Directive, ViewChild} from '@angular/core'; @Directive({ se...
{ "end_byte": 647, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/di/ts/viewChild/view_child_howto.ts" }
angular/adev/src/content/api-examples/core/di/ts/viewChild/e2e_test/view_child_spec.ts_0_821
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {browser, by, element, ElementFinder} from 'protractor'; import {verifyNoBrowserErrors} from '../../../../.....
{ "end_byte": 821, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/di/ts/viewChild/e2e_test/view_child_spec.ts" }
angular/adev/src/content/api-examples/core/di/ts/contentChildren/module.ts_0_579
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {NgModule} from '@angular/core'; import {BrowserModule} from '@angular/platform-browser'; import {ContentChil...
{ "end_byte": 579, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/di/ts/contentChildren/module.ts" }
angular/adev/src/content/api-examples/core/di/ts/contentChildren/content_children_example.ts_0_1554
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ // #docregion Component import {Component, ContentChildren, Directive, Input, QueryList} from '@angular/core'; @Dir...
{ "end_byte": 1554, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/di/ts/contentChildren/content_children_example.ts" }
angular/adev/src/content/api-examples/core/di/ts/contentChildren/content_children_howto.ts_0_668
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ // #docregion HowTo import {AfterContentInit, ContentChildren, Directive, QueryList} from '@angular/core'; @Directi...
{ "end_byte": 668, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/di/ts/contentChildren/content_children_howto.ts" }
angular/adev/src/content/api-examples/core/di/ts/contentChildren/e2e_test/content_children_spec.ts_0_1230
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {browser, by, element, ElementFinder} from 'protractor'; import {verifyNoBrowserErrors} from '../../../../.....
{ "end_byte": 1230, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/di/ts/contentChildren/e2e_test/content_children_spec.ts" }
angular/adev/src/content/api-examples/core/di/ts/viewChildren/view_children_howto.ts_0_689
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ // #docregion HowTo import {AfterViewInit, Component, Directive, QueryList, ViewChildren} from '@angular/core'; @Di...
{ "end_byte": 689, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/di/ts/viewChildren/view_children_howto.ts" }
angular/adev/src/content/api-examples/core/di/ts/viewChildren/module.ts_0_555
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {NgModule} from '@angular/core'; import {BrowserModule} from '@angular/platform-browser'; import {Pane, View...
{ "end_byte": 555, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/di/ts/viewChildren/module.ts" }
angular/adev/src/content/api-examples/core/di/ts/viewChildren/view_children_example.ts_0_1214
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ // #docregion Component import {AfterViewInit, Component, Directive, Input, QueryList, ViewChildren} from '@angular/...
{ "end_byte": 1214, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/di/ts/viewChildren/view_children_example.ts" }
angular/adev/src/content/api-examples/core/di/ts/viewChildren/e2e_test/view_children_spec.ts_0_833
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {browser, by, element, ElementFinder} from 'protractor'; import {verifyNoBrowserErrors} from '../../../../.....
{ "end_byte": 833, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/di/ts/viewChildren/e2e_test/view_children_spec.ts" }
angular/adev/src/content/api-examples/core/testability/ts/whenStable/testability_example.ts_0_815
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component, NgModule} from '@angular/core'; import {BrowserModule} from '@angular/platform-browser'; @Compon...
{ "end_byte": 815, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/testability/ts/whenStable/testability_example.ts" }
angular/adev/src/content/api-examples/core/testability/ts/whenStable/module.ts_0_283
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ export {AppModule, StableTestCmp as AppComponent} from './testability_example';
{ "end_byte": 283, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/testability/ts/whenStable/module.ts" }
angular/adev/src/content/api-examples/core/testability/ts/whenStable/e2e_test/testability_example_spec.ts_0_1561
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {browser, by, element} from 'protractor'; import {verifyNoBrowserErrors} from '../../../../../../../../../pac...
{ "end_byte": 1561, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/testability/ts/whenStable/e2e_test/testability_example_spec.ts" }
angular/adev/src/content/api-examples/core/animation/ts/dsl/module.ts_0_281
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ export {AppModule, MyExpandoCmp as AppComponent} from './animation_example';
{ "end_byte": 281, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/animation/ts/dsl/module.ts" }
angular/adev/src/content/api-examples/core/animation/ts/dsl/animation_example.ts_0_1712
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {animate, state, style, transition, trigger} from '@angular/animations'; import {Component, NgModule} from '@...
{ "end_byte": 1712, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/animation/ts/dsl/animation_example.ts" }
angular/adev/src/content/api-examples/core/animation/ts/dsl/e2e_test/animation_example_spec.ts_0_973
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {$, browser, by, element, ExpectedConditions} from 'protractor'; import {verifyNoBrowserErrors} from '../../...
{ "end_byte": 973, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/animation/ts/dsl/e2e_test/animation_example_spec.ts" }
angular/adev/src/content/api-examples/core/testing/ts/fake_async.ts_0_1062
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {discardPeriodicTasks, fakeAsync, tick} from '@angular/core/testing'; // #docregion basic describe('this tes...
{ "end_byte": 1062, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/testing/ts/fake_async.ts" }
angular/adev/src/content/api-examples/core/testing/ts/example_spec.ts_0_520
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ // Import the "fake_async" example that registers tests which are shown as examples. These need // to be valid tests...
{ "end_byte": 520, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/testing/ts/example_spec.ts" }
angular/adev/src/content/api-examples/core/ts/prod_mode/my_component.ts_0_376
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component} from '@angular/core'; @Component({ selector: 'my-component', template: '<h1>My Component</h1...
{ "end_byte": 376, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/ts/prod_mode/my_component.ts" }
angular/adev/src/content/api-examples/core/ts/prod_mode/prod_mode_example.ts_0_629
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {enableProdMode, NgModule} from '@angular/core'; import {BrowserModule} from '@angular/platform-browser'; imp...
{ "end_byte": 629, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/ts/prod_mode/prod_mode_example.ts" }
angular/adev/src/content/api-examples/core/ts/bootstrap/bootstrap.ts_0_684
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component, NgModule} from '@angular/core'; import {BrowserModule} from '@angular/platform-browser'; import {...
{ "end_byte": 684, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/ts/bootstrap/bootstrap.ts" }
angular/adev/src/content/api-examples/core/ts/platform/platform.ts_0_2124
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {ApplicationRef, Component, DoBootstrap, NgModule} from '@angular/core'; import {BrowserModule} from '@angula...
{ "end_byte": 2124, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/ts/platform/platform.ts" }
angular/adev/src/content/api-examples/core/ts/pipes/pipeTransFormEx_module.ts_0_449
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {NgModule} from '@angular/core'; import {TruncatePipe as SimpleTruncatePipe} from './simple_truncate'; import...
{ "end_byte": 449, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/ts/pipes/pipeTransFormEx_module.ts" }
angular/adev/src/content/api-examples/core/ts/pipes/truncate.ts_0_506
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ // #docregion import {Pipe, PipeTransform} from '@angular/core'; @Pipe({ name: 'truncate', standalone: false, })...
{ "end_byte": 506, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/ts/pipes/truncate.ts" }
angular/adev/src/content/api-examples/core/ts/pipes/simple_truncate.ts_0_468
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ // #docregion import {Pipe, PipeTransform} from '@angular/core'; @Pipe({ name: 'truncate', standalone: false, })...
{ "end_byte": 468, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/ts/pipes/simple_truncate.ts" }
angular/adev/src/content/api-examples/core/ts/metadata/directives.ts_0_1958
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ /* tslint:disable:no-console */ import {Component, Directive, EventEmitter, NgModule} from '@angular/core'; // #doc...
{ "end_byte": 1958, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/ts/metadata/directives.ts" }
angular/adev/src/content/api-examples/core/ts/metadata/metadata.ts_0_1187
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Attribute, Component, Directive, Pipe} from '@angular/core'; class CustomDirective {} @Component({ selec...
{ "end_byte": 1187, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/ts/metadata/metadata.ts" }
angular/adev/src/content/api-examples/core/ts/metadata/lifecycle_hooks_spec.ts_0_5321
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import { AfterContentChecked, AfterContentInit, AfterViewChecked, AfterViewInit, Component, DoCheck, I...
{ "end_byte": 5321, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/ts/metadata/lifecycle_hooks_spec.ts" }
angular/adev/src/content/api-examples/core/ts/metadata/encapsulation.ts_0_720
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component, ViewEncapsulation} from '@angular/core'; // #docregion longform @Component({ selector: 'app-ro...
{ "end_byte": 720, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/ts/metadata/encapsulation.ts" }
angular/adev/src/content/api-examples/core/ts/change_detect/change-detection.ts_0_2472
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ /* tslint:disable:no-console */ import { ChangeDetectionStrategy, ChangeDetectorRef, Component, Input, NgM...
{ "end_byte": 2472, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/ts/change_detect/change-detection.ts" }
angular/adev/src/content/api-examples/core/debug/ts/debug_element/debug_element.ts_0_346
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {DebugElement} from '@angular/core'; let debugElement: DebugElement = undefined!; let predicate: any; debug...
{ "end_byte": 346, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/core/debug/ts/debug_element/debug_element.ts" }
angular/adev/src/content/api-examples/testing/ts/testing.ts_0_1646
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ let db: any; class MyService {} class MyMockService implements MyService {} describe('some component', () => { it...
{ "end_byte": 1646, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/testing/ts/testing.ts" }
angular/adev/src/content/api-examples/common/main.ts_0_427
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import 'zone.js/lib/browser/rollup-main'; import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';...
{ "end_byte": 427, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/main.ts" }
angular/adev/src/content/api-examples/common/start-server.js_0_552
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ const protractorUtils = require('@bazel/protractor/protractor-utils'); const protractor = require('protractor'); mo...
{ "end_byte": 552, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/start-server.js" }
angular/adev/src/content/api-examples/common/test_module.ts_0_1551
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component, NgModule} from '@angular/core'; import {RouterModule} from '@angular/router'; import * as locati...
{ "end_byte": 1551, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/test_module.ts" }
angular/adev/src/content/api-examples/common/ngComponentOutlet/ts/module.ts_0_3039
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import { Component, Injectable, Injector, Input, NgModule, OnInit, TemplateRef, ViewChild, ViewCon...
{ "end_byte": 3039, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/ngComponentOutlet/ts/module.ts" }
angular/adev/src/content/api-examples/common/ngComponentOutlet/ts/e2e_test/ngComponentOutlet_spec.ts_0_962
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {$, browser, by, element, ExpectedConditions} from 'protractor'; import {verifyNoBrowserErrors} from '../../...
{ "end_byte": 962, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/ngComponentOutlet/ts/e2e_test/ngComponentOutlet_spec.ts" }
angular/adev/src/content/api-examples/common/location/ts/module.ts_0_879
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {APP_BASE_HREF} from '@angular/common'; import {Component, NgModule} from '@angular/core'; import {BrowserMod...
{ "end_byte": 879, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/location/ts/module.ts" }
angular/adev/src/content/api-examples/common/location/ts/path_location_component.ts_0_897
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ // #docregion LocationComponent import {Location, LocationStrategy, PathLocationStrategy} from '@angular/common'; im...
{ "end_byte": 897, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/location/ts/path_location_component.ts" }
angular/adev/src/content/api-examples/common/location/ts/hash_location_component.ts_0_897
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ // #docregion LocationComponent import {HashLocationStrategy, Location, LocationStrategy} from '@angular/common'; im...
{ "end_byte": 897, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/location/ts/hash_location_component.ts" }
angular/adev/src/content/api-examples/common/location/ts/e2e_test/location_component_spec.ts_0_958
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {$, browser, by, element, protractor} from 'protractor'; import {verifyNoBrowserErrors} from '../../../../.....
{ "end_byte": 958, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/location/ts/e2e_test/location_component_spec.ts" }
angular/adev/src/content/api-examples/common/ngTemplateOutlet/ts/module.ts_0_1351
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component, NgModule} from '@angular/core'; import {BrowserModule} from '@angular/platform-browser'; // #doc...
{ "end_byte": 1351, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/ngTemplateOutlet/ts/module.ts" }
angular/adev/src/content/api-examples/common/ngTemplateOutlet/ts/e2e_test/ngTemplateOutlet_spec.ts_0_1020
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {$, browser, by, element, ExpectedConditions} from 'protractor'; import {verifyNoBrowserErrors} from '../../...
{ "end_byte": 1020, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/ngTemplateOutlet/ts/e2e_test/ngTemplateOutlet_spec.ts" }
angular/adev/src/content/api-examples/common/pipes/ts/percent_pipe.ts_0_894
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {registerLocaleData} from '@angular/common'; import {Component} from '@angular/core'; // we need to import da...
{ "end_byte": 894, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/pipes/ts/percent_pipe.ts" }
angular/adev/src/content/api-examples/common/pipes/ts/locale-fr.ts_0_2674
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ // THIS CODE IS GENERATED - DO NOT MODIFY // See angular/tools/gulp-tasks/cldr/extract.js const u = undefined; fun...
{ "end_byte": 2674, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/pipes/ts/locale-fr.ts" }
angular/adev/src/content/api-examples/common/pipes/ts/currency_pipe.ts_0_1300
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {registerLocaleData} from '@angular/common'; import {Component} from '@angular/core'; // we need to import da...
{ "end_byte": 1300, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/pipes/ts/currency_pipe.ts" }
angular/adev/src/content/api-examples/common/pipes/ts/module.ts_0_2566
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component, NgModule} from '@angular/core'; import {BrowserModule} from '@angular/platform-browser'; import ...
{ "end_byte": 2566, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/pipes/ts/module.ts" }
angular/adev/src/content/api-examples/common/pipes/ts/async_pipe.ts_0_2046
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component} from '@angular/core'; import {Observable, Observer} from 'rxjs'; // #docregion AsyncPipePromise ...
{ "end_byte": 2046, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/pipes/ts/async_pipe.ts" }
angular/adev/src/content/api-examples/common/pipes/ts/lowerupper_pipe.ts_0_747
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component} from '@angular/core'; // #docregion LowerUpperPipe @Component({ selector: 'lowerupper-pipe', ...
{ "end_byte": 747, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/pipes/ts/lowerupper_pipe.ts" }
angular/adev/src/content/api-examples/common/pipes/ts/slice_pipe.ts_0_1324
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component} from '@angular/core'; // #docregion SlicePipe_string @Component({ selector: 'slice-string-pipe...
{ "end_byte": 1324, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/pipes/ts/slice_pipe.ts" }
angular/adev/src/content/api-examples/common/pipes/ts/keyvalue_pipe.ts_0_879
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component} from '@angular/core'; // #docregion KeyValuePipe @Component({ selector: 'keyvalue-pipe', tem...
{ "end_byte": 879, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/pipes/ts/keyvalue_pipe.ts" }
angular/adev/src/content/api-examples/common/pipes/ts/titlecase_pipe.ts_0_1073
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component} from '@angular/core'; // #docregion TitleCasePipe @Component({ selector: 'titlecase-pipe', t...
{ "end_byte": 1073, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/pipes/ts/titlecase_pipe.ts" }
angular/adev/src/content/api-examples/common/pipes/ts/i18n_pipe.ts_0_1019
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component} from '@angular/core'; // #docregion I18nPluralPipeComponent @Component({ selector: 'i18n-plura...
{ "end_byte": 1019, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/pipes/ts/i18n_pipe.ts" }
angular/adev/src/content/api-examples/common/pipes/ts/date_pipe.ts_0_2097
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {registerLocaleData} from '@angular/common'; import {Component} from '@angular/core'; // we need to import da...
{ "end_byte": 2097, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/pipes/ts/date_pipe.ts" }
angular/adev/src/content/api-examples/common/pipes/ts/json_pipe.ts_0_640
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component} from '@angular/core'; // #docregion JsonPipe @Component({ selector: 'json-pipe', template: `...
{ "end_byte": 640, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/pipes/ts/json_pipe.ts" }
angular/adev/src/content/api-examples/common/pipes/ts/number_pipe.ts_0_1044
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {registerLocaleData} from '@angular/common'; import {Component} from '@angular/core'; // we need to import da...
{ "end_byte": 1044, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/pipes/ts/number_pipe.ts" }
angular/adev/src/content/api-examples/common/pipes/ts/e2e_test/pipe_spec.ts_0_4452
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {$, browser, by, element, ExpectedConditions} from 'protractor'; import {verifyNoBrowserErrors} from '../../...
{ "end_byte": 4452, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/api-examples/common/pipes/ts/e2e_test/pipe_spec.ts" }