_id
stringlengths
21
254
text
stringlengths
1
93.7k
metadata
dict
angular/adev/src/content/best-practices/style-guide.md_0_3868
# Angular coding style guide Looking for an opinionated guide to Angular syntax, conventions, and application structure? Step right in. This style guide presents preferred conventions and, as importantly, explains why. ## Style vocabulary Each guideline describes either a good or bad practice, and all have a consistent presentation. The wording of each guideline indicates how strong the recommendation is. **Do** is one that should always be followed. *Always* might be a bit too strong of a word. Guidelines that literally should always be followed are extremely rare. On the other hand, you need a really unusual case for breaking a *Do* guideline. **Consider** guidelines should generally be followed. If you fully understand the meaning behind the guideline and have a good reason to deviate, then do so. Aim to be consistent. **Avoid** indicates something you should almost never do. Code examples to *avoid* have an unmistakable red header. **Why**? <br /> Gives reasons for following the previous recommendations. ## File structure conventions Some code examples display a file that has one or more similarly named companion files. For example, `hero.component.ts` and `hero.component.html`. The guideline uses the shortcut `hero.component.ts|html|css|spec` to represent those various files. Using this shortcut makes this guide's file structures easier to read and more terse. ## Single responsibility Apply the [*single responsibility principle (SRP)*](https://wikipedia.org/wiki/Single_responsibility_principle) to all components, services, and other symbols. This helps make the application cleaner, easier to read and maintain, and more testable. ### Rule of One #### Style 01-01 **Do** define one thing, such as a service or component, per file. **Consider** limiting files to 400 lines of code. **Why**? <br /> One component per file makes it far easier to read, maintain, and avoid collisions with teams in source control. **Why**? <br /> One component per file avoids hidden bugs that often arise when combining components in a file where they may share variables, create unwanted closures, or unwanted coupling with dependencies. **Why**? <br /> A single component can be the default export for its file which facilitates lazy loading with the router. The key is to make the code more reusable, easier to read, and less mistake-prone. The following *negative* example defines the `AppComponent`, bootstraps the app, defines the `Hero` model object, and loads heroes from the server all in the same file. *Don't do this*. <docs-code path="adev/src/content/examples/styleguide/src/01-01/app/heroes/hero.component.avoid.ts" language="typescript" header="app/heroes/hero.component.ts"/> It is a better practice to redistribute the component and its supporting classes into their own, dedicated files. <docs-code-multifile> <docs-code header="main.ts" path="adev/src/content/examples/styleguide/src/01-01/main.ts"/> <docs-code header="app/app.module.ts" path="adev/src/content/examples/styleguide/src/01-01/app/app.module.ts"/> <docs-code header="app/app.component.ts" path="adev/src/content/examples/styleguide/src/01-01/app/app.component.ts"/> <docs-code header="app/heroes/heroes.component.ts" path="adev/src/content/examples/styleguide/src/01-01/app/heroes/heroes.component.ts"/> <docs-code header="app/heroes/shared/hero.service.ts" path="adev/src/content/examples/styleguide/src/01-01/app/heroes/shared/hero.service.ts"/> <docs-code header="app/heroes/shared/hero.model.ts" path="adev/src/content/examples/styleguide/src/01-01/app/heroes/shared/hero.model.ts"/> <docs-code header="app/heroes/shared/mock-heroes.ts" path="adev/src/content/examples/styleguide/src/01-01/app/heroes/shared/mock-heroes.ts"/> </docs-code-multifile> As the application grows, this rule becomes even more important.
{ "end_byte": 3868, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/best-practices/style-guide.md" }
angular/adev/src/content/best-practices/style-guide.md_3868_12677
## Naming Naming conventions are hugely important to maintainability and readability. This guide recommends naming conventions for the file name and the symbol name. ### General Naming Guidelines #### Style 02-01 **Do** use consistent names for all symbols. **Do** follow a pattern that describes the symbol's feature then its type. The recommended pattern is `feature.type.ts`. **Why**? <br /> Naming conventions help provide a consistent way to find content at a glance. Consistency within the project is vital. Consistency with a team is important. Consistency across a company provides tremendous efficiency. **Why**? <br /> The naming conventions should help find desired code faster and make it easier to understand. **Why**? <br /> Names of folders and files should clearly convey their intent. For example, `app/heroes/hero-list.component.ts` may contain a component that manages a list of heroes. ### Separate file names with dots and dashes #### Style 02-02 **Do** use dashes to separate words in the descriptive name. **Do** use dots to separate the descriptive name from the type. **Do** use consistent type names for all components following a pattern that describes the component's feature then its type. A recommended pattern is `feature.type.ts`. **Do** use conventional type names including `.service`, `.component`, `.pipe`, `.module`, and `.directive`. Invent additional type names if you must but take care not to create too many. **Why**? <br /> Type names provide a consistent way to quickly identify what is in the file. **Why**? <br /> Type names make it easy to find a specific file type using an editor or IDE's fuzzy search techniques. **Why**? <br /> Unabbreviated type names such as `.service` are descriptive and unambiguous. Abbreviations such as `.srv`, `.svc`, and `.serv` can be confusing. **Why**? <br /> Type names provide pattern matching for any automated tasks. ### Symbols and file names #### Style 02-03 **Do** use consistent names for all assets named after what they represent. **Do** use upper camel case for class names. **Do** match the name of the symbol to the name of the file. **Do** append the symbol name with the conventional suffix \(such as `Component`, `Directive`, `Module`, `Pipe`, or `Service`\) for a thing of that type. **Do** give the filename the conventional suffix \(such as `.component.ts`, `.directive.ts`, `.module.ts`, `.pipe.ts`, or `.service.ts`\) for a file of that type. **Why**? <br /> Consistent conventions make it easy to quickly identify and reference assets of different types. | Symbol name | File name | |:--- |:--- | | <docs-code hideCopy language="typescript"> @Component({ … }) <br>export class AppComponent { } </docs-code> | app.component.ts | | <docs-code hideCopy language="typescript"> @Component({ … }) <br>export class HeroesComponent { } </docs-code> | heroes.component.ts | | <docs-code hideCopy language="typescript"> @Component({ … }) <br>export class HeroListComponent { } </docs-code> | hero-list.component.ts | | <docs-code hideCopy language="typescript"> @Component({ … }) <br>export class HeroDetailComponent { } </docs-code> | hero-detail.component.ts | | <docs-code hideCopy language="typescript"> @Directive({ … }) <br>export class ValidationDirective { } </docs-code> | validation.directive.ts | | <docs-code hideCopy language="typescript"> @NgModule({ … }) <br>export class AppModule </docs-code> | app.module.ts | | <docs-code hideCopy language="typescript"> @Pipe({ name: 'initCaps' }) <br>export class InitCapsPipe implements PipeTransform { } </docs-code> | init-caps.pipe.ts | | <docs-code hideCopy language="typescript"> @Injectable() <br>export class UserProfileService { } </docs-code> | user-profile.service.ts | ### Service names #### Style 02-04 **Do** use consistent names for all services named after their feature. **Do** suffix a service class name with `Service`. For example, something that gets data or heroes should be called a `DataService` or a `HeroService`. A few terms are unambiguously services. They typically indicate agency by ending in "-er". You may prefer to name a service that logs messages `Logger` rather than `LoggerService`. Decide if this exception is agreeable in your project. As always, strive for consistency. **Why**? <br /> Provides a consistent way to quickly identify and reference services. **Why**? <br /> Clear service names such as `Logger` do not require a suffix. **Why**? <br /> Service names such as `Credit` are nouns and require a suffix and should be named with a suffix when it is not obvious if it is a service or something else. | Symbol name | File name | |:--- |:--- | | <docs-code hideCopy language="typescript"> @Injectable() <br>export class HeroDataService { } </docs-code> | hero-data.service.ts | | <docs-code hideCopy language="typescript"> @Injectable() <br>export class CreditService { } </docs-code> | credit.service.ts | | <docs-code hideCopy language="typescript"> @Injectable() <br>export class Logger { } </docs-code> | logger.service.ts | ### Bootstrapping #### Style 02-05 **Do** put bootstrapping and platform logic for the application in a file named `main.ts`. **Do** include error handling in the bootstrapping logic. **Avoid** putting application logic in `main.ts`. Instead, consider placing it in a component or service. **Why**? <br /> Follows a consistent convention for the startup logic of an app. **Why**? <br /> Follows a familiar convention from other technology platforms. <docs-code header="main.ts" path="adev/src/content/examples/styleguide/src/02-05/main.ts"/> ### Component selectors #### Style 05-02 **Do** use *dashed-case* or *kebab-case* for naming the element selectors of components. **Why**? <br /> Keeps the element names consistent with the specification for [Custom Elements](https://www.w3.org/TR/custom-elements). <docs-code header="app/heroes/shared/hero-button/hero-button.component.ts" path="adev/src/content/examples/styleguide/src/05-02/app/heroes/shared/hero-button/hero-button.component.avoid.ts" visibleRegion="example"/> <docs-code-multifile> <docs-code header="app/heroes/shared/hero-button/hero-button.component.ts" path="adev/src/content/examples/styleguide/src/05-02/app/heroes/shared/hero-button/hero-button.component.ts" visibleRegion="example"/> <docs-code header="app/app.component.html" path="adev/src/content/examples/styleguide/src/05-02/app/app.component.html"/> </docs-code-multifile> ### Component custom prefix #### Style 02-07 **Do** use a hyphenated, lowercase element selector value; for example, `admin-users`. **Do** use a prefix that identifies the feature area or the application itself. **Why**? <br /> Prevents element name collisions with components in other applications and with native HTML elements. **Why**? <br /> Makes it easier to promote and share the component in other applications. **Why**? <br /> Components are easy to identify in the DOM. <docs-code header="app/heroes/hero.component.ts" path="adev/src/content/examples/styleguide/src/02-07/app/heroes/hero.component.avoid.ts" visibleRegion="example"/> <docs-code header="app/users/users.component.ts" path="adev/src/content/examples/styleguide/src/02-07/app/users/users.component.avoid.ts" visibleRegion="example"/> <docs-code header="app/heroes/hero.component.ts" path="adev/src/content/examples/styleguide/src/02-07/app/heroes/hero.component.ts" visibleRegion="example"/> <docs-code header="app/users/users.component.ts" path="adev/src/content/examples/styleguide/src/02-07/app/users/users.component.ts" visibleRegion="example"/> ### Directive selectors #### Style 02-06 **Do** Use lower camel case for naming the selectors of directives. **Why**? <br /> Keeps the names of the properties defined in the directives that are bound to the view consistent with the attribute names. **Why**? <br /> The Angular HTML parser is case-sensitive and recognizes lower camel case. ### Directiv
{ "end_byte": 12677, "start_byte": 3868, "url": "https://github.com/angular/angular/blob/main/adev/src/content/best-practices/style-guide.md" }
angular/adev/src/content/best-practices/style-guide.md_12677_20890
e custom prefix #### Style 02-08 **Do** spell non-element selectors in lower camel case unless the selector is meant to match a native HTML attribute. **Don't** prefix a directive name with `ng` because that prefix is reserved for Angular and using it could cause bugs that are difficult to diagnose. **Why**? <br /> Prevents name collisions. **Why**? <br /> Directives are easily identified. <docs-code header="app/shared/validate.directive.ts" path="adev/src/content/examples/styleguide/src/02-08/app/shared/validate.directive.avoid.ts" visibleRegion="example"/> <docs-code header="app/shared/validate.directive.ts" path="adev/src/content/examples/styleguide/src/02-08/app/shared/validate.directive.ts" visibleRegion="example"/> ### Pipe names #### Style 02-09 **Do** use consistent names for all pipes, named after their feature. The pipe class name should use `UpperCamelCase` \(the general convention for class names\), and the corresponding `name` string should use *lowerCamelCase*. The `name` string cannot use hyphens \("dash-case" or "kebab-case"\). **Why**? <br /> Provides a consistent way to quickly identify and reference pipes. | Symbol name | File name | |:--- |:--- | | <docs-code hideCopy language="typescript"> @Pipe({ standalone: true, name: 'ellipsis' }) <br>export class EllipsisPipe implements PipeTransform { } </docs-code> | ellipsis.pipe.ts | | <docs-code hideCopy language="typescript"> @Pipe({ standalone: true, name: 'initCaps' }) <br>export class InitCapsPipe implements PipeTransform { } </docs-code> | init-caps.pipe.ts | ### Unit test file names #### Style 02-10 **Do** name test specification files the same as the component they test. **Do** name test specification files with a suffix of `.spec`. **Why**? <br /> Provides a consistent way to quickly identify tests. **Why**? <br /> Provides pattern matching for [karma](https://karma-runner.github.io) or other test runners. | Test type | File names | |:--- |:--- | | Components | heroes.component.spec.ts <br /> hero-list.component.spec.ts <br /> hero-detail.component.spec.ts | | Services | logger.service.spec.ts <br /> hero.service.spec.ts <br /> filter-text.service.spec.ts | | Pipes | ellipsis.pipe.spec.ts <br /> init-caps.pipe.spec.ts | ## Application structure and NgModules Have a near-term view of implementation and a long-term vision. Start small but keep in mind where the application is heading. All of the application's code goes in a folder named `src`. All feature areas are in their own folder. All content is one asset per file. Each component, service, and pipe is in its own file. All third party vendor scripts are stored in another folder and not in the `src` folder. Use the naming conventions for files in this guide. ### Overall structural guidelines #### Style 04-06 **Do** start small but keep in mind where the application is heading down the road. **Do** have a near term view of implementation and a long term vision. **Do** put all of the application's code in a folder named `src`. **Consider** creating a folder for a component when it has multiple accompanying files \(`.ts`, `.html`, `.css`, and `.spec`\). **Why**? <br /> Helps keep the application structure small and easy to maintain in the early stages, while being easy to evolve as the application grows. **Why**? <br /> Components often have four files \(for example, `*.html`, `*.css`, `*.ts`, and `*.spec.ts`\) and can clutter a folder quickly. Here is a compliant folder and file structure: ```markdown project root β”œβ”€β”€ src β”‚ β”œβ”€β”€ app β”‚ β”‚ β”œβ”€β”€ core β”‚ β”‚ β”‚ └── exception.service.ts|spec.ts β”‚ β”‚ β”‚ └── user-profile.service.ts|spec.ts β”‚ β”‚ β”œβ”€β”€ heroes β”‚ β”‚ β”‚ β”œβ”€β”€ hero β”‚ β”‚ β”‚ β”‚ └── hero.component.ts|html|css|spec.ts β”‚ β”‚ β”‚ β”œβ”€β”€ hero-list β”‚ β”‚ β”‚ β”‚ └── hero-list.component.ts|html|css|spec.ts β”‚ β”‚ β”‚ β”œβ”€β”€ shared β”‚ β”‚ β”‚ β”‚ └── hero-button.component.ts|html|css|spec.ts β”‚ β”‚ β”‚ β”‚ └── hero.model.ts β”‚ β”‚ β”‚ β”‚ └── hero.service.ts|spec.ts β”‚ β”‚ β”‚ └── heroes.component.ts|html|css|spec.ts β”‚ β”‚ β”‚ └── heroes.routes.ts β”‚ β”‚ β”œβ”€β”€ shared β”‚ β”‚ β”‚ └── init-caps.pipe.ts|spec.ts β”‚ β”‚ β”‚ └── filter-text.component.ts|spec.ts β”‚ β”‚ β”‚ └── filter-text.service.ts|spec.ts β”‚ β”‚ β”œβ”€β”€ villains β”‚ β”‚ β”‚ β”œβ”€β”€ villain β”‚ β”‚ β”‚ β”‚ └── … β”‚ β”‚ β”‚ β”œβ”€β”€ villain-list β”‚ β”‚ β”‚ β”‚ └── … β”‚ β”‚ β”‚ β”œβ”€β”€ shared β”‚ β”‚ β”‚ β”‚ └── … β”‚ β”‚ β”‚ └── villains.component.ts|html|css|spec.ts β”‚ β”‚ β”‚ └── villains.module.ts β”‚ β”‚ β”‚ └── villains-routing.module.ts β”‚ β”‚ └── app.component.ts|html|css|spec.ts β”‚ β”‚ └── app.routes.ts β”‚ └── main.ts β”‚ └── index.html β”‚ └── … └── node_modules/… └── … ``` HELPFUL: While components in dedicated folders are widely preferred, another option for small applications is to keep components flat \(not in a dedicated folder\). This adds up to four files to the existing folder, but also reduces the folder nesting. Whatever you choose, be consistent. ### *Folders-by-feature* structure #### Style 04-07 **Do** create folders named for the feature area they represent. **Why**? <br /> A developer can locate the code and identify what each file represents at a glance. The structure is as flat as it can be and there are no repetitive or redundant names. **Why**? <br /> Helps reduce the application from becoming cluttered through organizing the content. **Why**? <br /> When there are a lot of files, for example 10+, locating them is easier with a consistent folder structure and more difficult in a flat structure. For more information, refer to [this folder and file structure example](#overall-structural-guidelines). ### App *root module* IMPORTANT: The following style guide recommendations are for applications based on `NgModule`. New applications should use standalone components, directives, and pipes instead. #### Style 04-08 **Do** create an NgModule in the application's root folder, for example, in `/src/app` if creating a `NgModule` based app. **Why**? <br /> Every `NgModule` based application requires at least one root NgModule. **Consider** naming the root module `app.module.ts`. **Why**? <br /> Makes it easier to locate and identify the root module. <docs-code path="adev/src/content/examples/styleguide/src/04-08/app/app.module.ts" language="typescript" visibleRegion="example" header="app/app.module.ts"/> ### Feature modules #### Style 04-09 **Do** create an NgModule for all distinct features in an application; for example, a `Heroes` feature. **Do** place the feature module in the same named folder as the feature area; for example, in `app/heroes`. **Do** name the feature module file reflecting the name of the feature area and folder; for example, `app/heroes/heroes.module.ts`. **Do** name the feature module symbol reflecting the name of the feature area, folder, and file; for example, `app/heroes/heroes.module.ts` defines `HeroesModule`. **Why**? <br /> A feature module can expose or hide its implementation from other modules. **Why**? <br /> A feature module identifies distinct sets of related components that comprise the feature area. **Why**? <br /> A feature module can easily be routed to both eagerly and lazily. **Why**? <br /> A feature module defines clear boundaries between specific functionality and other application features. **Why**? <br /> A feature module helps clarify and make it easier to assign development responsibilities to different teams. **Why**? <br /> A feature module can easily be isolated for testing. ### Shared feature module #### Style 04-10 **Do** create a feature module named `SharedModule` in a `shared` folder; for example, `app/shared/shared.module.ts` defines `SharedModule`. **Do** declare components, directives, and pipes in a shared module when those items will be re-used and referenced by the components declared in other feature modules. **Consider** using the name SharedModule when the contents of a shared module are
{ "end_byte": 20890, "start_byte": 12677, "url": "https://github.com/angular/angular/blob/main/adev/src/content/best-practices/style-guide.md" }
angular/adev/src/content/best-practices/style-guide.md_20890_24875
referenced across the entire application. **Consider** *not* providing services in shared modules. Services are usually singletons that are provided once for the entire application or in a particular feature module. There are exceptions, however. For example, in the sample code that follows, notice that the `SharedModule` provides `FilterTextService`. This is acceptable here because the service is stateless;that is, the consumers of the service aren't impacted by new instances. **Do** import all modules required by the assets in the `SharedModule`; for example, `CommonModule` and `FormsModule`. **Why**? <br /> `SharedModule` will contain components, directives, and pipes that may need features from another common module; for example, `ngFor` in `CommonModule`. **Do** declare all components, directives, and pipes in the `SharedModule`. **Do** export all symbols from the `SharedModule` that other feature modules need to use. **Why**? <br /> `SharedModule` exists to make commonly used components, directives, and pipes available for use in the templates of components in many other modules. **Avoid** specifying app-wide singleton providers in a `SharedModule`. Intentional singletons are OK. Take care. **Why**? <br /> A lazy loaded feature module that imports that shared module will make its own copy of the service and likely have undesirable results. **Why**? <br /> You don't want each module to have its own separate instance of singleton services. Yet there is a real danger of that happening if the `SharedModule` provides a service. ```markdown project root β”œβ”€β”€src β”œβ”€β”€β”œβ”€β”€app β”œβ”€β”€β”œβ”€β”€β”œβ”€β”€ shared β”œβ”€β”€β”œβ”€β”€β”œβ”€β”€β””β”€β”€ shared.module.ts β”œβ”€β”€β”œβ”€β”€β”œβ”€β”€β””β”€β”€ init-caps.pipe.ts|spec.ts β”œβ”€β”€β”œβ”€β”€β”œβ”€β”€β””β”€β”€ filter-text.component.ts|spec.ts β”œβ”€β”€β”œβ”€β”€β”œβ”€β”€β””β”€β”€ filter-text.service.ts|spec.ts β”œβ”€β”€β”œβ”€β”€β””β”€β”€ app.component.ts|html|css|spec.ts β”œβ”€β”€β”œβ”€β”€β””β”€β”€ app.module.ts β”œβ”€β”€β”œβ”€β”€β””β”€β”€ app-routing.module.ts β”œβ”€β”€β””β”€β”€ main.ts β”œβ”€β”€β””β”€β”€ index.html └── … ``` <docs-code-multifile> <docs-code header="app/shared/shared.module.ts" path="adev/src/content/examples/styleguide/src/04-10/app/shared/shared.module.ts"/> <docs-code header="app/shared/init-caps.pipe.ts" path="adev/src/content/examples/styleguide/src/04-10/app/shared/init-caps.pipe.ts"/> <docs-code header="app/shared/filter-text/filter-text.component.ts" path="adev/src/content/examples/styleguide/src/04-10/app/shared/filter-text/filter-text.component.ts"/> <docs-code header="app/shared/filter-text/filter-text.service.ts" path="adev/src/content/examples/styleguide/src/04-10/app/shared/filter-text/filter-text.service.ts"/> <docs-code header="app/heroes/heroes.component.ts" path="adev/src/content/examples/styleguide/src/04-10/app/heroes/heroes.component.ts"/> <docs-code header="app/heroes/heroes.component.html" path="adev/src/content/examples/styleguide/src/04-10/app/heroes/heroes.component.html"/> </docs-code-multifile> ### Lazy Loaded folders #### Style 04-11 A distinct application feature or workflow may be *lazy loaded* or *loaded on demand* rather than when the application starts. **Do** put the contents of lazy loaded features in a *lazy loaded folder*. A typical *lazy loaded folder* contains a *routing component*, its child components, and their related assets. **Why**? <br /> The folder makes it easy to identify and isolate the feature content. ## Components ### Components as elements #### Style 05-03 **Consider** giving components an *element* selector, as opposed to *attribute* or *class* selectors. **Why**? <br /> Components have templates containing HTML and optional Angular template syntax. They display content. Developers place components on the page as they would native HTML elements and web components. **Why**? <br /> It is easier to recognize that a symbol is a component by looking at the template's html. HELPFUL: There are a few cases where you give a component an attribute, such as when you want to augment a built-in element. For example, [Material Design](https://materia
{ "end_byte": 24875, "start_byte": 20890, "url": "https://github.com/angular/angular/blob/main/adev/src/content/best-practices/style-guide.md" }
angular/adev/src/content/best-practices/style-guide.md_24875_33029
l.angular.io/components/button/overview) uses this technique with `<button mat-button>`. However, you wouldn't use this technique on a custom element. <docs-code header="app/heroes/hero-button/hero-button.component.ts" path="adev/src/content/examples/styleguide/src/05-03/app/heroes/shared/hero-button/hero-button.component.avoid.ts" visibleRegion="example"/> <docs-code header="app/app.component.html" path="adev/src/content/examples/styleguide/src/05-03/app/app.component.avoid.html"/> <docs-code-multifile> <docs-code header="app/heroes/shared/hero-button/hero-button.component.ts" path="adev/src/content/examples/styleguide/src/05-03/app/heroes/shared/hero-button/hero-button.component.ts" visibleRegion="example"/> <docs-code header="app/app.component.html" path="adev/src/content/examples/styleguide/src/05-03/app/app.component.html"/> </docs-code-multifile> ### Extract templates and styles to their own files #### Style 05-04 **Do** extract templates and styles into a separate file, when more than 3 lines. **Do** name the template file `[component-name].component.html`, where [component-name] is the component name. **Do** name the style file `[component-name].component.css`, where [component-name] is the component name. **Do** specify *component-relative* URLs, prefixed with `./`. **Why**? <br /> Large, inline templates and styles obscure the component's purpose and implementation, reducing readability and maintainability. **Why**? <br /> In most editors, syntax hints and code snippets aren't available when developing inline templates and styles. The Angular TypeScript Language Service \(forthcoming\) promises to overcome this deficiency for HTML templates in those editors that support it; it won't help with CSS styles. **Why**? <br /> A *component relative* URL requires no change when you move the component files, as long as the files stay together. **Why**? <br /> The `./` prefix is standard syntax for relative URLs; don't depend on Angular's current ability to do without that prefix. <docs-code header="app/heroes/heroes.component.ts" path="adev/src/content/examples/styleguide/src/05-04/app/heroes/heroes.component.avoid.ts" visibleRegion="example"/> <docs-code-multifile> <docs-code header="app/heroes/heroes.component.ts" path="adev/src/content/examples/styleguide/src/05-04/app/heroes/heroes.component.ts" visibleRegion="example"/> <docs-code header="app/heroes/heroes.component.html" path="adev/src/content/examples/styleguide/src/05-04/app/heroes/heroes.component.html"/> <docs-code header="app/heroes/heroes.component.css" path="adev/src/content/examples/styleguide/src/05-04/app/heroes/heroes.component.css"/> </docs-code-multifile> ### Decorate `input` and `output` properties #### Style 05-12 **Do** use the `@Input()` and `@Output()` class decorators instead of the `inputs` and `outputs` properties of the `@Directive` and `@Component` metadata: **Consider** placing `@Input()` or `@Output()` on the same line as the property it decorates. **Why**? <br /> It is easier and more readable to identify which properties in a class are inputs or outputs. **Why**? <br /> If you ever need to rename the property or event name associated with `@Input()` or `@Output()`, you can modify it in a single place. **Why**? <br /> The metadata declaration attached to the directive is shorter and thus more readable. **Why**? <br /> Placing the decorator on the same line *usually* makes for shorter code and still easily identifies the property as an input or output. Put it on the line above when doing so is clearly more readable. <docs-code header="app/heroes/shared/hero-button/hero-button.component.ts" path="adev/src/content/examples/styleguide/src/05-12/app/heroes/shared/hero-button/hero-button.component.avoid.ts" visibleRegion="example"/> <docs-code header="app/heroes/shared/hero-button/hero-button.component.ts" path="adev/src/content/examples/styleguide/src/05-12/app/heroes/shared/hero-button/hero-button.component.ts" visibleRegion="example"/> ### Avoid aliasing `inputs` and `outputs` #### Style 05-13 **Avoid** `input` and `output` aliases except when it serves an important purpose. **Why**? <br /> Two names for the same property \(one private, one public\) is inherently confusing. **Why**? <br /> You should use an alias when the directive name is also an `input` property, and the directive name doesn't describe the property. <docs-code header="app/heroes/shared/hero-button/hero-button.component.ts" path="adev/src/content/examples/styleguide/src/05-13/app/heroes/shared/hero-button/hero-button.component.avoid.ts" visibleRegion="example"/> <docs-code header="app/app.component.html" path="adev/src/content/examples/styleguide/src/05-13/app/app.component.avoid.html"/> <docs-code-multifile> <docs-code header="app/heroes/shared/hero-button/hero-button.component.ts" path="adev/src/content/examples/styleguide/src/05-13/app/heroes/shared/hero-button/hero-button.component.ts" visibleRegion="example"/> <docs-code header="app/heroes/shared/hero-button/hero-highlight.directive.ts" path="adev/src/content/examples/styleguide/src/05-13/app/heroes/shared/hero-highlight.directive.ts"/> <docs-code header="app/app.component.html" path="adev/src/content/examples/styleguide/src/05-13/app/app.component.html"/> </docs-code-multifile> ### Delegate complex component logic to services #### Style 05-15 **Do** limit logic in a component to only that required for the view. All other logic should be delegated to services. **Do** move reusable logic to services and keep components simple and focused on their intended purpose. **Why**? <br /> Logic may be reused by multiple components when placed within a service and exposed as a function. **Why**? <br /> Logic in a service can more easily be isolated in a unit test, while the calling logic in the component can be easily mocked. **Why**? <br /> Removes dependencies and hides implementation details from the component. **Why**? <br /> Keeps the component slim, trim, and focused. <docs-code header="app/heroes/hero-list/hero-list.component.ts" path="adev/src/content/examples/styleguide/src/05-15/app/heroes/hero-list/hero-list.component.avoid.ts"/> <docs-code header="app/heroes/hero-list/hero-list.component.ts" path="adev/src/content/examples/styleguide/src/05-15/app/heroes/hero-list/hero-list.component.ts" visibleRegion="example"/> ### Don't prefix `output` properties #### Style 05-16 **Do** name events without the prefix `on`. **Do** name event handler methods with the prefix `on` followed by the event name. **Why**? <br /> This is consistent with built-in events such as button clicks. **Why**? <br /> Angular allows for an [alternative syntax](guide/templates/binding) `on-*`. If the event itself was prefixed with `on` this would result in an `on-onEvent` binding expression. <docs-code header="app/heroes/hero.component.ts" path="adev/src/content/examples/styleguide/src/05-16/app/heroes/hero.component.avoid.ts" visibleRegion="example"/> <docs-code header="app/app.component.html" path="adev/src/content/examples/styleguide/src/05-16/app/app.component.avoid.html"/> <docs-code-multifile> <docs-code header="app/heroes/hero.component.ts" path="adev/src/content/examples/styleguide/src/05-16/app/heroes/hero.component.ts" visibleRegion="example"/> <docs-code header="app/app.component.html" path="adev/src/content/examples/styleguide/src/05-16/app/app.component.html"/> </docs-code-multifile> ### Put presentation logic in the component class #### Style 05-17 **Do** put presentation logic in the component class, and not in the template. **Why**? <br /> Logic will be contained in one place \(the component class\) instead of being spread in two places. **Why**? <br /> Keeping the component's presentation logic in the class instead of the template improves testability, maintainability, and reusability. <docs-code header="app/heroes/hero-list/hero-list.component.ts" path="adev/src/content/examples/styleguide/src/05-17/app/heroes/hero-list/hero-list.component.avoid.ts" visibleRegion="example"/> <docs-code header="app/heroes/hero-list/he
{ "end_byte": 33029, "start_byte": 24875, "url": "https://github.com/angular/angular/blob/main/adev/src/content/best-practices/style-guide.md" }
angular/adev/src/content/best-practices/style-guide.md_33029_42342
ro-list.component.ts" path="adev/src/content/examples/styleguide/src/05-17/app/heroes/hero-list/hero-list.component.ts" visibleRegion="example"/> ### Initialize inputs #### Style 05-18 TypeScript's `--strictPropertyInitialization` compiler option ensures that a class initializes its properties during construction. When enabled, this option causes the TypeScript compiler to report an error if the class does not set a value to any property that is not explicitly marked as optional. By design, Angular treats all `@Input` properties as optional. When possible, you should satisfy `--strictPropertyInitialization` by providing a default value. <docs-code header="app/heroes/hero/hero.component.ts" path="adev/src/content/examples/styleguide/src/05-18/app/heroes/hero/hero.component.ts" visibleRegion="example"/> If the property is hard to construct a default value for, use `?` to explicitly mark the property as optional. <docs-code header="app/heroes/hero/hero.component.ts" path="adev/src/content/examples/styleguide/src/05-18/app/heroes/hero/hero.component.optional.ts" visibleRegion="example"/> You may want to have a required `@Input` field, meaning all your component users are required to pass that attribute. In such cases, use a default value. Just suppressing the TypeScript error with `!` is insufficient and should be avoided because it will prevent the type checker from ensuring the input value is provided. <docs-code header="app/heroes/hero/hero.component.ts" path="adev/src/content/examples/styleguide/src/05-18/app/heroes/hero/hero.component.avoid.ts" visibleRegion="example"/> ## Directives ### Use directives to enhance an element #### Style 06-01 **Do** use attribute directives when you have presentation logic without a template. **Why**? <br /> Attribute directives don't have an associated template. **Why**? <br /> An element may have more than one attribute directive applied. <docs-code header="app/shared/highlight.directive.ts" path="adev/src/content/examples/styleguide/src/06-01/app/shared/highlight.directive.ts" visibleRegion="example"/> <docs-code header="app/app.component.html" path="adev/src/content/examples/styleguide/src/06-01/app/app.component.html"/> ### `HostListener`/`HostBinding` decorators versus `host` metadata #### Style 06-03 **Consider** preferring the `@HostListener` and `@HostBinding` to the `host` property of the `@Directive` and `@Component` decorators. **Do** be consistent in your choice. **Why**? <br /> The property associated with `@HostBinding` or the method associated with `@HostListener` can be modified only in a single place β€”in the directive's class. If you use the `host` metadata property, you must modify both the property/method declaration in the directive's class and the metadata in the decorator associated with the directive. <docs-code header="app/shared/validator.directive.ts" path="adev/src/content/examples/styleguide/src/06-03/app/shared/validator.directive.ts"/> Compare with the less preferred `host` metadata alternative. **Why**? <br /> The `host` metadata is only one term to remember and doesn't require extra ES imports. <docs-code header="app/shared/validator2.directive.ts" path="adev/src/content/examples/styleguide/src/06-03/app/shared/validator2.directive.ts"/> ## Services ### Services are singletons #### Style 07-01 **Do** use services as singletons within the same injector. Use them for sharing data and functionality. **Why**? <br /> Services are ideal for sharing methods across a feature area or an app. **Why**? <br /> Services are ideal for sharing stateful in-memory data. <docs-code header="app/heroes/shared/hero.service.ts" path="adev/src/content/examples/styleguide/src/07-01/app/heroes/shared/hero.service.ts" visibleRegion="example"/> ### Providing a service #### Style 07-03 **Do** provide a service with the application root injector in the `@Injectable` decorator of the service. **Why**? <br /> The Angular injector is hierarchical. **Why**? <br /> When you provide the service to a root injector, that instance of the service is shared and available in every class that needs the service. This is ideal when a service is sharing methods or state. **Why**? <br /> When you register a service in the `@Injectable` decorator of the service, optimization tools such as those used by the [Angular CLI's](cli) production builds can perform tree shaking and remove services that aren't used by your app. **Why**? <br /> This is not ideal when two different components need different instances of a service. In this scenario it would be better to provide the service at the component level that needs the new and separate instance. <docs-code header="src/app/treeshaking/service.ts" path="adev/src/content/examples/dependency-injection/src/app/tree-shaking/service.ts"/> ### Use the @Injectable() class decorator #### Style 07-04 **Do** use the `@Injectable()` class decorator instead of the `@Inject` parameter decorator when using types as tokens for the dependencies of a service. **Why**? <br /> The Angular Dependency Injection \(DI\) mechanism resolves a service's own dependencies based on the declared types of that service's constructor parameters. **Why**? <br /> When a service accepts only dependencies associated with type tokens, the `@Injectable()` syntax is much less verbose compared to using `@Inject()` on each individual constructor parameter. <docs-code header="app/heroes/shared/hero-arena.service.ts" path="adev/src/content/examples/styleguide/src/07-04/app/heroes/shared/hero-arena.service.avoid.ts" visibleRegion="example"/> <docs-code header="app/heroes/shared/hero-arena.service.ts" path="adev/src/content/examples/styleguide/src/07-04/app/heroes/shared/hero-arena.service.ts" visibleRegion="example"/> ## Data Services ### Talk to the server through a service #### Style 08-01 **Do** refactor logic for making data operations and interacting with data to a service. **Do** make data services responsible for XHR calls, local storage, stashing in memory, or any other data operations. **Why**? <br /> The component's responsibility is for the presentation and gathering of information for the view. It should not care how it gets the data, just that it knows who to ask for it. Separating the data services moves the logic on how to get it to the data service, and lets the component be simpler and more focused on the view. **Why**? <br /> This makes it easier to test \(mock or real\) the data calls when testing a component that uses a data service. **Why**? <br /> The details of data management, such as headers, HTTP methods, caching, error handling, and retry logic, are irrelevant to components and other data consumers. A data service encapsulates these details. It's easier to evolve these details inside the service without affecting its consumers. And it's easier to test the consumers with mock service implementations. ## Lifecycle hooks Use Lifecycle hooks to tap into important events exposed by Angular. ### Implement lifecycle hook interfaces #### Style 09-01 **Do** implement the lifecycle hook interfaces. **Why**? <br /> Lifecycle interfaces prescribe typed method signatures. Use those signatures to flag spelling and syntax mistakes. <docs-code header="app/heroes/shared/hero-button/hero-button.component.ts" path="adev/src/content/examples/styleguide/src/09-01/app/heroes/shared/hero-button/hero-button.component.avoid.ts" visibleRegion="example"/> <docs-code header="app/heroes/shared/hero-button/hero-button.component.ts" path="adev/src/content/examples/styleguide/src/09-01/app/heroes/shared/hero-button/hero-button.component.ts" visibleRegion="example"/> ## Appendix Useful tools and tips for Angular. ### File templates and snippets #### Style A-02 **Do** use file templates or snippets to help follow consistent styles and patterns. Here are templates and/or snippets for some of the web development editors and IDEs. **Consider** using [snippets](https://marketplace.visualstudio.com/items?itemName=johnpapa.Angular2) for [Visual Studio Code](https://code.visualstudio.com) that follow these styles and guidelines. <a href="https://marketplace.visualstudio.com/items?itemName=johnpapa.Angular2"> <img alt="Use Extension" src="assets/images/guide/styleguide/use-extension.gif"> </a> **Consider** using [snippets](https://github.com/orizens/sublime-angular2-snippets) for [Sublime Text](https://www.sublimetext.com) that follow these styles and guidelines. **Consider** using [snippets](https://github.com/mhartington/vim-angular2-snippets) for [Vim](https://www.vim.org) that follow these styles and guidelines.
{ "end_byte": 42342, "start_byte": 33029, "url": "https://github.com/angular/angular/blob/main/adev/src/content/best-practices/style-guide.md" }
angular/adev/src/content/best-practices/runtime-performance/overview.md_0_1451
# Runtime performance optimization Fast rendering is critical for Angular and we've built the framework with a lot of optimizations in mind to help you develop performant apps. To better understand the performance of your app we offer [Angular DevTools](tools/devtools) and a [video guide](https://www.youtube.com/watch?v=FjyX_hkscII) on how to use Chrome DevTools for profiling. In this section we cover the most common performance optimization techniques. **Change detection** is the process through which Angular checks to see whether your application state has changed, and if any DOM needs to be updated. At a high level, Angular walks your components from top to bottom, looking for changes. Angular runs its change detection mechanism periodically so that changes to the data model are reflected in an application’s view. Change detection can be triggered either manually or through an asynchronous event (for example, a user interaction or an XMLHttpRequest completion). Change detection is highly optimized and performant, but it can still cause slowdowns if the application runs it too frequently. In this guide, you’ll learn how to control and optimize the change detection mechanism by skipping parts of your application and running change detection only when necessary. Watch this video if you prefer to learn more about performance optimizations in a media format: <docs-video src="https://www.youtube.com/embed/f8sA-i6gkGQ"/>
{ "end_byte": 1451, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/best-practices/runtime-performance/overview.md" }
angular/adev/src/content/best-practices/runtime-performance/zone-pollution.md_0_5864
# Resolving zone pollution **Zone.js** is a signaling mechanism that Angular uses to detect when an application state might have changed. It captures asynchronous operations like `setTimeout`, network requests, and event listeners. Angular schedules change detection based on signals from Zone.js. In some cases scheduled [tasks](https://developer.mozilla.org/docs/Web/API/HTML_DOM_API/Microtask_guide#tasks) or [microtasks](https://developer.mozilla.org/docs/Web/API/HTML_DOM_API/Microtask_guide#microtasks) don’t make any changes in the data model, which makes running change detection unnecessary. Common examples are: * `requestAnimationFrame`, `setTimeout` or `setInterval` * Task or microtask scheduling by third-party libraries This section covers how to identify such conditions, and how to run code outside the Angular zone to avoid unnecessary change detection calls. ## Identifying unnecessary change detection calls You can detect unnecessary change detection calls using Angular DevTools. Often they appear as consecutive bars in the profiler’s timeline with source `setTimeout`, `setInterval`, `requestAnimationFrame`, or an event handler. When you have limited calls within your application of these APIs, the change detection invocation is usually caused by a third-party library. <img alt="Angular DevTools profiler preview showing Zone pollution" src="assets/images/best-practices/runtime-performance/zone-pollution.png"> In the image above, there is a series of change detection calls triggered by event handlers associated with an element. That’s a common challenge when using third-party, non-native Angular components, which do not alter the default behavior of `NgZone`. ## Run tasks outside `NgZone` In such cases, you can instruct Angular to avoid calling change detection for tasks scheduled by a given piece of code using [NgZone](/api/core/NgZone). <docs-code header="Run outside of the Zone" language='ts' linenums> import { Component, NgZone, OnInit } from '@angular/core'; @Component(...) class AppComponent implements OnInit { constructor(private ngZone: NgZone) {} ngOnInit() { this.ngZone.runOutsideAngular(() => setInterval(pollForUpdates), 500); } } </docs-code> The preceding snippet instructs Angular to call `setInterval` outside the Angular Zone and skip running change detection after `pollForUpdates` runs. Third-party libraries commonly trigger unnecessary change detection cycles when their APIs are invoked within the Angular zone. This phenomenon particularly affects libraries that setup event listeners or initiate other tasks (such as timers, XHR requests, etc.). Avoid these extra cycles by calling library APIs outside the Angular zone: <docs-code header="Move the plot initialization outside of the Zone" language='ts' linenums> import { Component, NgZone, OnInit } from '@angular/core'; import * as Plotly from 'plotly.js-dist-min'; @Component(...) class AppComponent implements OnInit { constructor(private ngZone: NgZone) {} ngOnInit() { this.ngZone.runOutsideAngular(() => { Plotly.newPlot('chart', data); }); } } </docs-code> Running `Plotly.newPlot('chart', data);` within `runOutsideAngular` instructs the framework that it shouldn’t run change detection after the execution of tasks scheduled by the initialization logic. For example, if `Plotly.newPlot('chart', data)` adds event listeners to a DOM element, Angular does not run change detection after the execution of their handlers. But sometimes, you may need to listen to events dispatched by third-party APIs. In such cases, it's important to remember that those event listeners will also execute outside of the Angular zone if the initialization logic was done there: <docs-code header="Check whether the handler is called outside of the Zone" language='ts' linenums> import { Component, NgZone, OnInit, output } from '@angular/core'; import * as Plotly from 'plotly.js-dist-min'; @Component(...) class AppComponent implements OnInit { plotlyClick = output<Plotly.PlotMouseEvent>(); constructor(private ngZone: NgZone) {} ngOnInit() { this.ngZone.runOutsideAngular(() => { this.createPlotly(); }); } private async createPlotly() { const plotly = await Plotly.newPlot('chart', data); plotly.on('plotly_click', (event: Plotly.PlotMouseEvent) => { // This handler will be called outside of the Angular zone because // the initialization logic is also called outside of the zone. To check // whether we're in the Angular zone, we can call the following: console.log(NgZone.isInAngularZone()); this.plotlyClick.emit(event); }); } } </docs-code> If you need to dispatch events to parent components and execute specific view update logic, you should consider re-entering the Angular zone to instruct the framework to run change detection or run change detection manually: <docs-code header="Re-enter the Angular zone when dispatching event" language='ts' linenums> import { Component, NgZone, OnInit, output } from '@angular/core'; import * as Plotly from 'plotly.js-dist-min'; @Component(...) class AppComponent implements OnInit { plotlyClick = output<Plotly.PlotMouseEvent>(); constructor(private ngZone: NgZone) {} ngOnInit() { this.ngZone.runOutsideAngular(() => { this.createPlotly(); }); } private async createPlotly() { const plotly = await Plotly.newPlot('chart', data); plotly.on('plotly_click', (event: Plotly.PlotMouseEvent) => { this.ngZone.run(() => { this.plotlyClick.emit(event); }); }); } } </docs-code> The scenario of dispatching events outside of the Angular zone may also arise. It's important to remember that triggering change detection (for example, manually) may result to the creation/update of views outside of the Angular zone.
{ "end_byte": 5864, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/best-practices/runtime-performance/zone-pollution.md" }
angular/adev/src/content/best-practices/runtime-performance/BUILD.bazel_0_224
load("//adev/shared-docs:index.bzl", "generate_guides") generate_guides( name = "runtime-performance", srcs = glob([ "*.md", ]), mermaid_blocks = True, visibility = ["//adev:__subpackages__"], )
{ "end_byte": 224, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/best-practices/runtime-performance/BUILD.bazel" }
angular/adev/src/content/best-practices/runtime-performance/slow-computations.md_0_2818
# Slow computations On every change detection cycle, Angular synchronously: * Evaluates all template expressions in all components, unless specified otherwise, based on that each component's detection strategy * Executes the `ngDoCheck`, `ngAfterContentChecked`, `ngAfterViewChecked`, and `ngOnChanges` lifecycle hooks. A single slow computation within a template or a lifecycle hook can slow down the entire change detection process because Angular runs the computations sequentially. ## Identifying slow computations You can identify heavy computations with Angular DevTools’ profiler. In the performance timeline, click a bar to preview a particular change detection cycle. This displays a bar chart, which shows how long the framework spent in change detection for each component. When you click a component, you can preview how long Angular spent evaluating its template and lifecycle hooks. <img alt="Angular DevTools profiler preview showing slow computation" src="assets/images/best-practices/runtime-performance/slow-computations.png"> For example, in the preceding screenshot, the second recorded change detection cycle is selected. Angular spent over 573 ms on this cycle, with the most time spent in the `EmployeeListComponent`. In the details panel, you can see that Angular spent over 297 ms evaluating the template of the `EmployeeListComponent`. ## Optimizing slow computations Here are several techniques to remove slow computations: * **Optimizing the underlying algorithm**. This is the recommended approach. If you can speed up the algorithm that is causing the problem, you can speed up the entire change detection mechanism. * **Caching using pure pipes**. You can move the heavy computation to a pure [pipe](guide/pipes). Angular reevaluates a pure pipe only if it detects that its inputs have changed, compared to the previous time Angular called it. * **Using memoization**. [Memoization](https://en.wikipedia.org/wiki/Memoization) is a similar technique to pure pipes, with the difference that pure pipes preserve only the last result from the computation where memoization could store multiple results. * **Avoid repaints/reflows in lifecycle hooks**. Certain [operations](https://web.dev/avoid-large-complex-layouts-and-layout-thrashing/) cause the browser to either synchronously recalculate the layout of the page or re-render it. Since reflows and repaints are generally slow, you want to avoid performing them in every change detection cycle. Pure pipes and memoization have different trade-offs. Pure pipes are an Angular built-in concept compared to memoization, which is a general software engineering practice for caching function results. The memory overhead of memoization could be significant if you invoke the heavy computation frequently with different arguments.
{ "end_byte": 2818, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/best-practices/runtime-performance/slow-computations.md" }
angular/adev/src/content/best-practices/runtime-performance/skipping-subtrees.md_0_6802
# Skipping component subtrees JavaScript, by default, uses mutable data structures that you can reference from multiple different components. Angular runs change detection over your entire component tree to make sure that the most up-to-date state of your data structures is reflected in the DOM. Change detection is sufficiently fast for most applications. However, when an application has an especially large component tree, running change detection across the whole application can cause performance issues. You can address this by configuring change detection to only run on a subset of the component tree. If you are confident that a part of the application is not affected by a state change, you can use [OnPush](/api/core/ChangeDetectionStrategy) to skip change detection in an entire component subtree. ## Using `OnPush` OnPush change detection instructs Angular to run change detection for a component subtree **only** when: * The root component of the subtree receives new inputs as the result of a template binding. Angular compares the current and past value of the input with `==`. * Angular handles an event _(for example using event binding, output binding, or `@HostListener` )_ in the subtree's root component or any of its children whether they are using OnPush change detection or not. You can set the change detection strategy of a component to `OnPush` in the `@Component` decorator: ```ts import { ChangeDetectionStrategy, Component } from '@angular/core'; @Component({ changeDetection: ChangeDetectionStrategy.OnPush, }) export class MyComponent {} ``` ## Common change detection scenarios This section examines several common change detection scenarios to illustrate Angular's behavior. ### An event is handled by a component with default change detection If Angular handles an event within a component without `OnPush` strategy, the framework executes change detection on the entire component tree. Angular will skip descendant component subtrees with roots using `OnPush`, which have not received new inputs. As an example, if we set the change detection strategy of `MainComponent` to `OnPush` and the user interacts with a component outside the subtree with root `MainComponent`, Angular will check all the pink components from the diagram below (`AppComponent`, `HeaderComponent`, `SearchComponent`, `ButtonComponent`) unless `MainComponent` receives new inputs: ```mermaid graph TD; app[AppComponent] --- header[HeaderComponent]; app --- main["MainComponent (OnPush)"]; header --- search[SearchComponent]; header --- button[ButtonComponent]; main --- login["LoginComponent (OnPush)"]; main --- details[DetailsComponent]; event>Event] --- search class app checkedNode class header checkedNode class button checkedNode class search checkedNode class event eventNode ``` ## An event is handled by a component with OnPush If Angular handles an event within a component with OnPush strategy, the framework will execute change detection within the entire component tree. Angular will ignore component subtrees with roots using OnPush, which have not received new inputs and are outside the component which handled the event. As an example, if Angular handles an event within `MainComponent`, the framework will run change detection in the entire component tree. Angular will ignore the subtree with root `LoginComponent` because it has `OnPush` and the event happened outside of its scope. ```mermaid graph TD; app[AppComponent] --- header[HeaderComponent]; app --- main["MainComponent (OnPush)"]; header --- search[SearchComponent]; header --- button[ButtonComponent]; main --- login["LoginComponent (OnPush)"]; main --- details[DetailsComponent]; event>Event] --- main class app checkedNode class header checkedNode class button checkedNode class search checkedNode class main checkedNode class details checkedNode class event eventNode ``` ## An event is handled by a descendant of a component with OnPush If Angular handles an event in a component with OnPush, the framework will execute change detection in the entire component tree, including the component’s ancestors. As an example, in the diagram below, Angular handles an event in `LoginComponent` which uses OnPush. Angular will invoke change detection in the entire component subtree including `MainComponent` (`LoginComponent`’s parent), even though `MainComponent` has `OnPush` as well. Angular checks `MainComponent` as well because `LoginComponent` is part of its view. ```mermaid graph TD; app[AppComponent] --- header[HeaderComponent]; app --- main["MainComponent (OnPush)"]; header --- search[SearchComponent]; header --- button[ButtonComponent]; main --- login["LoginComponent (OnPush)"]; main --- details[DetailsComponent]; event>Event] --- login class app checkedNode class header checkedNode class button checkedNode class search checkedNode class login checkedNode class main checkedNode class details checkedNode class event eventNode ``` ## New inputs to component with OnPush Angular will run change detection within a child component with `OnPush` when setting an input property as result of a template binding. For example, in the diagram below, `AppComponent` passes a new input to `MainComponent`, which has `OnPush`. Angular will run change detection in `MainComponent` but will not run change detection in `LoginComponent`, which also has `OnPush`, unless it receives new inputs as well. ```mermaid graph TD; app[AppComponent] --- header[HeaderComponent]; app --- main["MainComponent (OnPush)"]; header --- search[SearchComponent]; header --- button[ButtonComponent]; main --- login["LoginComponent (OnPush)"]; main --- details[DetailsComponent]; event>Parent passes new input to MainComponent] class app checkedNode class header checkedNode class button checkedNode class search checkedNode class main checkedNode class details checkedNode class event eventNode ``` ## Edge cases * **Modifying input properties in TypeScript code**. When you use an API like `@ViewChild` or `@ContentChild` to get a reference to a component in TypeScript and manually modify an `@Input` property, Angular will not automatically run change detection for OnPush components. If you need Angular to run change detection, you can inject `ChangeDetectorRef` in your component and call `changeDetectorRef.markForCheck()` to tell Angular to schedule a change detection. * **Modifying object references**. In case an input receives a mutable object as value and you modify the object but preserve the reference, Angular will not invoke change detection. That’s the expected behavior because the previous and the current value of the input point to the same reference.
{ "end_byte": 6802, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/content/best-practices/runtime-performance/skipping-subtrees.md" }
angular/adev/src/styles/_xterm.scss_0_2252
.xterm-viewport, .xterm-screen { &::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0); cursor: pointer; margin: 2px; } &::-webkit-scrollbar { width: 6px; height: 6px; } &::-webkit-scrollbar-thumb { background-color: var(--senary-contrast); border-radius: 10px; transition: background-color 0.3s ease; } &::-webkit-scrollbar-thumb:hover { background-color: var(--quaternary-contrast); } } // Override terminal styles .xterm { height: 100%; width: 100%; padding: 10px; } .xterm-viewport { overflow-y: auto !important; height: 100% !important; width: 100% !important; background-color: var(--octonary-contrast) !important; transition: background-color 0.3s ease; } .xterm-screen { box-sizing: border-box; overflow: visible !important; height: 100% !important; width: 100% !important; } .xterm-rows { height: 100% !important; overflow: visible !important; color: var(--primary-contrast) !important; transition: color 0.3s ease; // It is important to not alter the font-size or the selection would lose in precision .xterm-cursor { &.xterm-cursor-outline { outline-color: var(--primary-contrast) !important; } &.xterm-cursor-block { background: var(--primary-contrast) !important; } } } .xterm-selection { top: 10px !important; left: 10px !important; div { background-color: transparent !important; } } .xterm-decoration-top { background-color: var(--quinary-contrast) !important; } .xterm-fg-11 { color: var(--electric-violet) !important; } .xterm-fg-4 { color: var(--bright-blue) !important; } // progress ### .xterm-fg-15 { color: var(--secondary-contrast) !important; } .xterm-fg-14 { color: var(--vivid-pink) !important; } // > in terminal .xterm-fg-5 { color: var(--electric-violet) !important; } // error text, warning text .xterm-fg-9, .xterm-fg-3 { color: var(--vivid-pink) !important; } .xterm-fg-10, .xterm-fg-2 { color: var(--symbolic-green) !important; } // error bg .xterm-bg-1 { background-color: var(--orange-red) !important; } // error text .xterm-fg-257 { color: var(--octonary-contrast) !important; } .xterm-fg-8 { color: var(--tertiary-contrast) !important; }
{ "end_byte": 2252, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/styles/_xterm.scss" }
angular/adev/src/assets/BUILD.bazel_0_4567
load("@aspect_bazel_lib//lib:copy_to_directory.bzl", "copy_to_directory") package(default_visibility = ["//adev:__subpackages__"]) copy_to_directory( name = "content", srcs = [ "//adev/src/content", "//adev/src/content/best-practices", "//adev/src/content/best-practices/runtime-performance", "//adev/src/content/cli/help:cli_docs", "//adev/src/content/ecosystem", "//adev/src/content/ecosystem/service-workers", "//adev/src/content/guide", "//adev/src/content/guide/animations", "//adev/src/content/guide/components", "//adev/src/content/guide/di", "//adev/src/content/guide/directives", "//adev/src/content/guide/forms", "//adev/src/content/guide/http", "//adev/src/content/guide/i18n", "//adev/src/content/guide/ngmodules", "//adev/src/content/guide/performance", "//adev/src/content/guide/routing", "//adev/src/content/guide/signals", "//adev/src/content/guide/templates", "//adev/src/content/guide/testing", "//adev/src/content/introduction", "//adev/src/content/introduction/essentials", "//adev/src/content/reference", "//adev/src/content/reference/concepts", "//adev/src/content/reference/configs", "//adev/src/content/reference/errors", "//adev/src/content/reference/extended-diagnostics", "//adev/src/content/reference/migrations", "//adev/src/content/tools", "//adev/src/content/tools/cli", "//adev/src/content/tools/libraries", "//adev/src/content/tutorials", "//adev/src/content/tutorials/deferrable-views:deferrable-views-guides", "//adev/src/content/tutorials/first-app:first-app-guides", "//adev/src/content/tutorials/learn-angular:learn-angular-guides", "//packages/animations:animations_docs", "//packages/animations/browser:animations_browser_docs", "//packages/animations/browser/testing:animations_browser_testing_docs", "//packages/common:common_docs", "//packages/common/http:http_docs", "//packages/common/http/testing:http_testing_docs", "//packages/common/testing:common_testing_docs", "//packages/common/upgrade:common_upgrade_docs", "//packages/core:core_docs", "//packages/core/global:core_global_docs", "//packages/core/rxjs-interop:core_rxjs-interop_docs", "//packages/core/testing:core_testing_docs", "//packages/elements:elements_docs", "//packages/forms:forms_docs", "//packages/localize:localize_docs", "//packages/localize/src/localize:localize_init_docs", "//packages/platform-browser:platform-browser_docs", "//packages/platform-browser-dynamic:platform-browser_dynamic_docs", "//packages/platform-browser-dynamic/testing:platform-browser_dynamic_testing_docs", "//packages/platform-browser/animations:platform-browser_animations_docs", "//packages/platform-browser/animations/async:platform-browser_animations_async_docs", "//packages/platform-browser/testing:platform-browser_testing_docs", "//packages/platform-server:platform-server_docs", "//packages/platform-server/testing:platform-server_testing_docs", "//packages/router:router_docs", "//packages/router/testing:router_testing_docs", "//packages/router/upgrade:router_upgrade_docs", "//packages/service-worker:service-worker_docs", "//packages/upgrade:upgrade_docs", "//packages/upgrade/static:upgrade_static_docs", "//packages/upgrade/static/testing:upgrade_static_testing_docs", "//tools/manual_api_docs/blocks:blocks_docs", "//tools/manual_api_docs/elements:elements_docs", ], replace_prefixes = { "adev/src/content/cli/help/cli_docs_html": "cli/", "adev/src/content": "", "packages/**/": "api/", "tools/**/": "api/", }, ) copy_to_directory( name = "tutorials", srcs = [ "//adev/src/content/tutorials/deferrable-views", "//adev/src/content/tutorials/first-app", "//adev/src/content/tutorials/homepage", "//adev/src/content/tutorials/learn-angular", "//adev/src/content/tutorials/playground", ], replace_prefixes = { "adev/**/tutorials/*/": "", }, ) copy_to_directory( name = "api", srcs = [ "//packages:docs_api_manifest", ], replace_prefixes = { "**/": "", }, )
{ "end_byte": 4567, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/BUILD.bazel" }
angular/adev/src/assets/textures/build-for-everyone.svg_0_97
<svg width="433" height="58" viewBox="0 0 433 58" fill="none" xmlns="http://www.w3.org/2000/svg">
{ "end_byte": 97, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/textures/build-for-everyone.svg" }
angular/adev/src/assets/textures/build-for-everyone.svg_98_3410
<path d="M0.905865 45V2.2207H17.3285C20.4102 2.2207 22.975 2.70879 25.0231 3.68496C27.0711 4.64199 28.6023 5.9627 29.6168 7.64707C30.6313 9.31231 31.1385 11.1977 31.1385 13.3031C31.1385 15.0449 30.8035 16.5379 30.1336 17.782C29.4828 19.007 28.5928 20.0023 27.4635 20.768C26.3342 21.5336 25.0709 22.0887 23.6736 22.4332V22.8639C25.2049 22.9213 26.6596 23.3807 28.0377 24.242C29.435 25.0842 30.5738 26.2709 31.4543 27.8021C32.3539 29.3334 32.8037 31.1805 32.8037 33.3434C32.8037 35.5637 32.2678 37.5543 31.1959 39.3152C30.1432 41.057 28.5354 42.4447 26.3725 43.4783C24.2287 44.4928 21.5203 45 18.2473 45H0.905865ZM8.65782 38.54H16.984C19.7977 38.54 21.8266 37.9945 23.0707 36.9035C24.334 35.8125 24.9656 34.4248 24.9656 32.7404C24.9656 31.458 24.6498 30.3096 24.0182 29.2951C23.3865 28.2807 22.4869 27.4768 21.3193 26.8834C20.1709 26.29 18.8119 25.9934 17.2424 25.9934H8.65782V38.54ZM8.65782 20.4234H16.3523C17.6731 20.4234 18.8693 20.1746 19.9412 19.677C21.0131 19.1793 21.8553 18.4807 22.4678 17.5811C23.0994 16.6623 23.4152 15.5809 23.4152 14.3367C23.4152 12.6906 22.8315 11.3316 21.6639 10.2598C20.4963 9.16875 18.7832 8.62324 16.5246 8.62324H8.65782V20.4234ZM55.1431 31.5346V12.9012H62.6941V45H55.3728V39.2865H55.0283C54.3009 41.0857 53.1142 42.5596 51.4681 43.708C49.822 44.8564 47.7931 45.4211 45.3814 45.402C43.2759 45.402 41.4193 44.9426 39.8115 44.0238C38.2228 43.0859 36.9691 41.7174 36.0503 39.9182C35.1507 38.0998 34.7009 35.9082 34.7009 33.3434V12.9012H42.2519V32.1949C42.2519 34.2047 42.807 35.8125 43.9171 37.0184C45.0464 38.2242 46.5203 38.8176 48.3386 38.7984C49.4488 38.7984 50.5206 38.5305 51.5542 37.9945C52.607 37.4586 53.4683 36.6547 54.1382 35.5828C54.8081 34.5109 55.1431 33.1615 55.1431 31.5346ZM65.9407 45V12.9012H73.4917V45H65.9407ZM69.7306 8.39356C68.5247 8.39356 67.4911 7.9916 66.6298 7.1877C65.7685 6.38379 65.3378 5.41719 65.3378 4.28789C65.3378 3.13945 65.7685 2.16328 66.6298 1.35938C67.4911 0.555469 68.5247 0.153516 69.7306 0.153516C70.9173 0.153516 71.9413 0.555469 72.8026 1.35938C73.664 2.16328 74.0946 3.12988 74.0946 4.25918C74.0946 5.40762 73.664 6.38379 72.8026 7.1877C71.9413 7.9916 70.9173 8.39356 69.7306 8.39356ZM84.2893 2.2207V45H76.7383V2.2207H84.2893ZM99.3648 45.5742C96.8574 45.5742 94.5988 44.933 92.5891 43.6506C90.5984 42.349 89.0289 40.4637 87.8805 37.9945C86.732 35.5254 86.1578 32.5299 86.1578 29.008C86.1578 25.4287 86.7416 22.4141 87.9092 19.9641C89.0959 17.5141 90.6846 15.6574 92.6752 14.3941C94.6658 13.1309 96.8957 12.4992 99.3648 12.4992C101.26 12.4992 102.81 12.815 104.016 13.4467C105.222 14.0783 106.179 14.8439 106.887 15.7436C107.614 16.624 108.17 17.4471 108.552 18.2127H108.868V2.2207H116.39V45H109.012V39.9182H108.552C108.15 40.7029 107.586 41.5355 106.858 42.416C106.131 43.2773 105.164 44.0238 103.959 44.6555C102.753 45.268 101.221 45.5742 99.3648 45.5742ZM101.461 39.3727C103.069 39.3727 104.428 38.942 105.538 38.0807C106.667 37.2002 107.528 35.9848 108.122 34.4344C108.715 32.8648 109.012 31.0465 109.012 28.9793C109.012 26.893 108.715 25.0842 108.122 23.5529C107.547 22.0025 106.696 20.8063 105.566 19.9641C104.456 19.1219 103.088 18.7008 101.461 18.7008C99.7955 18.7008 98.3982 19.141 97.2689 20.0215C96.1396 20.902 95.2879 22.1174 94.7137 23.6678C94.1586 25.2182 93.8811 26.9887 93.8811 28.9793C93.8811 30.9699 94.1682 32.75 94.7424
{ "end_byte": 3410, "start_byte": 98, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/textures/build-for-everyone.svg" }
angular/adev/src/assets/textures/build-for-everyone.svg_3411_7006
34.3195C95.3166 35.8891 96.1588 37.1236 97.2689 38.0232C98.3982 38.9229 99.7955 39.3727 101.461 39.3727ZM145.996 12.9012V18.7582H127.076V12.9012H145.996ZM131.784 45V9.88652C131.784 7.72363 132.234 5.92441 133.134 4.48887C134.033 3.05332 135.239 1.98145 136.751 1.27324C138.282 0.56504 139.967 0.210938 141.804 0.210938C143.125 0.210938 144.293 0.316212 145.307 0.526758C146.341 0.737305 147.097 0.928712 147.575 1.10098L146.025 6.95801C145.718 6.84316 145.326 6.73789 144.848 6.64219C144.369 6.52734 143.824 6.46992 143.211 6.46992C141.814 6.46992 140.809 6.81445 140.196 7.50352C139.603 8.19258 139.306 9.16875 139.306 10.432V45H131.784ZM160.21 45.6316C157.071 45.6316 154.353 44.9426 152.056 43.5645C149.759 42.1863 147.979 40.2531 146.716 37.7648C145.472 35.2766 144.85 32.3863 144.85 29.0941C144.85 25.7828 145.472 22.883 146.716 20.3947C147.979 17.8873 149.759 15.9445 152.056 14.5664C154.353 13.1883 157.071 12.4992 160.21 12.4992C163.349 12.4992 166.067 13.1883 168.364 14.5664C170.661 15.9445 172.441 17.8873 173.704 20.3947C174.968 22.883 175.599 25.7828 175.599 29.0941C175.599 32.3863 174.968 35.2766 173.704 37.7648C172.441 40.2531 170.661 42.1863 168.364 43.5645C166.067 44.9426 163.349 45.6316 160.21 45.6316ZM160.21 39.5449C161.952 39.5449 163.388 39.0855 164.517 38.1668C165.646 37.2289 166.488 35.9656 167.043 34.377C167.618 32.7883 167.905 31.0273 167.905 29.0941C167.905 27.1227 167.618 25.3426 167.043 23.7539C166.488 22.1652 165.646 20.9115 164.517 19.9928C163.388 19.0549 161.952 18.5859 160.21 18.5859C158.507 18.5859 157.081 19.0549 155.932 19.9928C154.784 20.9115 153.923 22.1652 153.348 23.7539C152.793 25.3426 152.516 27.1227 152.516 29.0941C152.516 31.0273 152.793 32.7883 153.348 34.377C153.923 35.9656 154.784 37.2289 155.932 38.1668C157.081 39.0855 158.507 39.5449 160.21 39.5449ZM177.41 45V12.9012H184.732V18.2988H185.076C185.65 16.423 186.655 14.9875 188.091 13.9922C189.526 12.9777 191.163 12.4705 193 12.4705C193.402 12.4705 193.862 12.4896 194.379 12.5279C194.914 12.5662 195.355 12.6141 195.699 12.6715V19.6195C195.374 19.5047 194.867 19.409 194.178 19.3324C193.489 19.2559 192.828 19.2176 192.197 19.2176C190.799 19.2176 189.555 19.5143 188.464 20.1076C187.373 20.701 186.512 21.5145 185.88 22.548C185.268 23.5816 184.961 24.7875 184.961 26.1656V45H177.41ZM220.453 45.6316C217.237 45.6316 214.462 44.9617 212.127 43.6219C209.791 42.2629 207.992 40.3488 206.729 37.8797C205.485 35.4105 204.863 32.5012 204.863 29.1516C204.863 25.8402 205.485 22.9404 206.729 20.4521C207.973 17.9447 209.724 15.9924 211.983 14.5951C214.242 13.1979 216.902 12.4992 219.965 12.4992C221.936 12.4992 223.802 12.815 225.563 13.4467C227.343 14.0783 228.913 15.0545 230.272 16.3752C231.65 17.6959 232.731 19.3803 233.516 21.4283C234.301 23.4572 234.693 25.8785 234.693 28.6922V31.0465H208.394V25.9646H230.932L227.401 27.4576C227.401 25.6393 227.123 24.0602 226.568 22.7203C226.013 21.3613 225.19 20.299 224.099 19.5334C223.008 18.7678 221.649 18.385 220.022 18.385C218.395 18.385 217.007 18.7678 215.859 19.5334C214.71 20.299 213.84 21.3326 213.246 22.6342C212.653 23.9166 212.356 25.3521 212.356 26.9408V30.4723C212.356 32.4246 212.691 34.0994 213.361 35.4967C214.05 36.8748 215.007 37.9275 216.232 38.6549C217.476 39.3822 218.921 39.7459 220.568 39.7459C221.639 39.7459 222.616 39.5928 223.496 39.2865C224.396 38.9803 225.161 38.5209 225.793 37.9084C226.444 37.2768 226.941 36.5016 227.286 35.5828L234.349 36.4154C233.889 38.2721 233.038 39.899 231.794 41.2963C230.569 42.6744 228.989 43.7463 227.056 44.5119C225.142 45.2584 222.941 45.6316 220.453 45.6316ZM264.009 12.9012L252.583
{ "end_byte": 7006, "start_byte": 3411, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/textures/build-for-everyone.svg" }
angular/adev/src/assets/textures/build-for-everyone.svg_7007_10610
45H244.199L232.801 12.9012H240.868L248.305 36.76H248.649L256.028 12.9012H264.009ZM277.822 45.6316C274.606 45.6316 271.831 44.9617 269.496 43.6219C267.16 42.2629 265.361 40.3488 264.098 37.8797C262.854 35.4105 262.232 32.5012 262.232 29.1516C262.232 25.8402 262.854 22.9404 264.098 20.4521C265.342 17.9447 267.093 15.9924 269.352 14.5951C271.611 13.1979 274.271 12.4992 277.334 12.4992C279.305 12.4992 281.171 12.815 282.932 13.4467C284.712 14.0783 286.282 15.0545 287.641 16.3752C289.019 17.6959 290.1 19.3803 290.885 21.4283C291.67 23.4572 292.062 25.8785 292.062 28.6922V31.0465H265.763V25.9646H288.301L284.77 27.4576C284.77 25.6393 284.492 24.0602 283.937 22.7203C283.382 21.3613 282.559 20.299 281.468 19.5334C280.377 18.7678 279.018 18.385 277.391 18.385C275.764 18.385 274.376 18.7678 273.228 19.5334C272.08 20.299 271.209 21.3326 270.615 22.6342C270.022 23.9166 269.725 25.3521 269.725 26.9408V30.4723C269.725 32.4246 270.06 34.0994 270.73 35.4967C271.419 36.8748 272.376 37.9275 273.601 38.6549C274.845 39.3822 276.29 39.7459 277.937 39.7459C279.008 39.7459 279.985 39.5928 280.865 39.2865C281.765 38.9803 282.53 38.5209 283.162 37.9084C283.813 37.2768 284.31 36.5016 284.655 35.5828L291.718 36.4154C291.258 38.2721 290.407 39.899 289.163 41.2963C287.938 42.6744 286.358 43.7463 284.425 44.5119C282.511 45.2584 280.31 45.6316 277.822 45.6316ZM293.816 45V12.9012H301.137V18.2988H301.482C302.056 16.423 303.061 14.9875 304.496 13.9922C305.932 12.9777 307.569 12.4705 309.406 12.4705C309.808 12.4705 310.267 12.4896 310.784 12.5279C311.32 12.5662 311.76 12.6141 312.105 12.6715V19.6195C311.779 19.5047 311.272 19.409 310.583 19.3324C309.894 19.2559 309.234 19.2176 308.602 19.2176C307.205 19.2176 305.961 19.5143 304.87 20.1076C303.779 20.701 302.917 21.5145 302.286 22.548C301.673 23.5816 301.367 24.7875 301.367 26.1656V45H293.816ZM318.28 57.0012C317.246 57.0203 316.289 56.9437 315.409 56.7715C314.548 56.6184 313.849 56.4365 313.313 56.226L315.093 50.3402L315.466 50.4551C316.998 50.857 318.299 50.8857 319.371 50.5412C320.462 50.1967 321.333 49.1535 321.984 47.4117L322.615 45.6891L311.016 12.9012H319.027L326.405 37.1619H326.75L334.157 12.9012H342.225L329.362 48.876C328.769 50.5795 327.984 52.0342 327.008 53.24C326.032 54.465 324.826 55.3934 323.391 56.025C321.955 56.6758 320.252 57.0012 318.28 57.0012ZM355.807 45.6316C352.668 45.6316 349.95 44.9426 347.654 43.5645C345.357 42.1863 343.577 40.2531 342.313 37.7648C341.069 35.2766 340.447 32.3863 340.447 29.0941C340.447 25.7828 341.069 22.883 342.313 20.3947C343.577 17.8873 345.357 15.9445 347.654 14.5664C349.95 13.1883 352.668 12.4992 355.807 12.4992C358.947 12.4992 361.665 13.1883 363.961 14.5664C366.258 15.9445 368.038 17.8873 369.302 20.3947C370.565 22.883 371.197 25.7828 371.197 29.0941C371.197 32.3863 370.565 35.2766 369.302 37.7648C368.038 40.2531 366.258 42.1863 363.961 43.5645C361.665 44.9426 358.947 45.6316 355.807 45.6316ZM355.807 39.5449C357.549 39.5449 358.985 39.0855 360.114 38.1668C361.243 37.2289 362.086 35.9656 362.641 34.377C363.215 32.7883 363.502 31.0273 363.502 29.0941C363.502 27.1227 363.215 25.3426 362.641 23.7539C362.086 22.1652 361.243 20.9115 360.114 19.9928C358.985 19.0549 357.549 18.5859 355.807 18.5859C354.104 18.5859 352.678 19.0549 351.53 19.9928C350.381 20.9115 349.52 22.1652 348.946 23.7539C348.39 25.3426 348.113 27.1227 348.113 29.0941C348.113 31.0273 348.39 32.7883 348.946 34.377C349.52 35.9656 350.381 37.2289 351.53 38.1668C352.678 39.0855 354.104 39.5449 355.807 39.5449ZM380.559 26.223V45H373.008V12.9012H380.415V18.385H380.788C381.516 16.5857 382.654 15.1598 384.205 14.107C385.774
{ "end_byte": 10610, "start_byte": 7007, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/textures/build-for-everyone.svg" }
angular/adev/src/assets/textures/build-for-everyone.svg_10611_12337
13.0352 387.765 12.4992 390.177 12.4992C392.397 12.4992 394.33 12.9682 395.976 13.9061C397.622 14.8439 398.895 16.2221 399.795 18.0404C400.714 19.8396 401.173 22.0217 401.173 24.5865V45H393.622V25.7637C393.622 23.6199 393.067 21.9451 391.957 20.7393C390.847 19.5143 389.315 18.9018 387.363 18.9018C386.042 18.9018 384.865 19.1889 383.832 19.7631C382.817 20.3373 382.013 21.1699 381.42 22.2609C380.846 23.3328 380.559 24.6535 380.559 26.223ZM418.632 45.6316C415.416 45.6316 412.641 44.9617 410.305 43.6219C407.97 42.2629 406.171 40.3488 404.908 37.8797C403.664 35.4105 403.042 32.5012 403.042 29.1516C403.042 25.8402 403.664 22.9404 404.908 20.4521C406.152 17.9447 407.903 15.9924 410.162 14.5951C412.421 13.1979 415.081 12.4992 418.144 12.4992C420.115 12.4992 421.981 12.815 423.742 13.4467C425.522 14.0783 427.092 15.0545 428.451 16.3752C429.829 17.6959 430.91 19.3803 431.695 21.4283C432.48 23.4572 432.872 25.8785 432.872 28.6922V31.0465H406.573V25.9646H429.111L425.58 27.4576C425.58 25.6393 425.302 24.0602 424.747 22.7203C424.192 21.3613 423.369 20.299 422.278 19.5334C421.187 18.7678 419.828 18.385 418.201 18.385C416.574 18.385 415.186 18.7678 414.038 19.5334C412.889 20.299 412.019 21.3326 411.425 22.6342C410.832 23.9166 410.535 25.3521 410.535 26.9408V30.4723C410.535 32.4246 410.87 34.0994 411.54 35.4967C412.229 36.8748 413.186 37.9275 414.411 38.6549C415.655 39.3822 417.1 39.7459 418.746 39.7459C419.818 39.7459 420.795 39.5928 421.675 39.2865C422.575 38.9803 423.34 38.5209 423.972 37.9084C424.623 37.2768 425.12 36.5016 425.465 35.5828L432.528 36.4154C432.068 38.2721 431.217 39.899 429.972 41.2963C428.747 42.6744 427.168 43.7463 425.235 44.5119C423.321 45.2584 421.12 45.6316 418.632 45.6316Z" fill="black"/>
{ "end_byte": 12337, "start_byte": 10611, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/textures/build-for-everyone.svg" }
angular/adev/src/assets/textures/build-for-everyone.svg_12338_12345
</svg>
{ "end_byte": 12345, "start_byte": 12338, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/textures/build-for-everyone.svg" }
angular/adev/src/assets/textures/line.svg_0_257
<svg width="235" height="300" viewBox="0 0 235 300" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M228.845 324.352L0.152344 -20.5619L5.98643 -24.4302L234.679 320.484L228.845 324.352Z" fill="black"/> </svg>
{ "end_byte": 257, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/textures/line.svg" }
angular/adev/src/assets/textures/logo-lockup.svg_0_3325
<svg width="700" height="172" viewBox="0 0 700 172" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M258.977 22.7056H233.487L193.416 136.701H215.406L224.796 108.626H267.609L277.058 136.701H299.048L258.977 22.7056ZM230.396 91.9903L245.794 46.1118H246.669L262.068 91.9903H230.396Z" fill="black"/> <path d="M320.803 86.6204V136.702H300.68V51.2484H319.928V65.7824H320.919C322.903 60.9961 326.052 57.2021 330.369 54.4004C334.685 51.5986 340.051 50.1978 346.409 50.1978C352.3 50.1978 357.433 51.4819 361.866 53.9918C366.24 56.5017 369.682 60.179 372.073 64.9653C374.523 69.7516 375.689 75.5302 375.631 82.3594V136.702H355.508V85.3947C355.508 79.6744 354.05 75.2383 351.075 71.9696C348.1 68.7593 344.076 67.125 338.884 67.125C335.385 67.125 332.235 67.8838 329.494 69.4597C326.752 70.9773 324.652 73.1954 323.078 76.1139C321.619 78.974 320.803 82.4762 320.803 86.6204Z" fill="black"/> <path d="M440.316 51.1901V65.3155H439.208C438.216 63.2142 436.758 60.9962 434.833 58.6614C432.909 56.3266 430.342 54.2837 427.076 52.5909C423.868 50.8982 419.726 50.0811 414.71 50.0811C408.178 50.0811 402.228 51.7154 396.862 55.1008C391.496 58.4863 387.296 63.3893 384.146 69.8684C380.997 76.3474 379.422 84.2857 379.422 93.6832C379.422 103.081 380.997 110.727 384.146 116.914C387.238 123.043 391.496 127.713 396.804 130.806C402.17 133.9 408.119 135.476 414.652 135.476C419.551 135.476 423.576 134.717 426.842 133.258C430.05 131.799 432.675 129.989 434.658 127.771C436.642 125.553 438.158 123.452 439.208 121.35H440.2V137.519C440.2 143.823 438.333 148.376 434.6 151.119C430.867 153.862 426.142 155.263 420.426 155.263C416.402 155.263 413.019 154.738 410.394 153.629C407.769 152.52 405.669 151.119 404.095 149.485C402.52 147.85 401.353 146.216 400.537 144.523L382.397 148.901C383.563 152.87 385.78 156.489 388.929 159.758C392.079 163.026 396.22 165.653 401.411 167.579C406.603 169.505 412.785 170.498 420.018 170.498C427.659 170.498 434.542 169.33 440.608 166.937C446.674 164.544 451.398 160.983 454.898 156.197C458.398 151.411 460.148 145.34 460.148 138.044V51.1901H440.316ZM437.925 107.634C436.408 111.486 434.075 114.463 431.1 116.564C428.067 118.607 424.451 119.658 420.193 119.658C415.935 119.658 412.027 118.549 409.052 116.389C406.019 114.229 403.745 111.194 402.228 107.283C400.653 103.373 399.895 98.8197 399.895 93.5664C399.895 88.3132 400.653 83.8187 402.17 79.7328C403.686 75.7053 405.961 72.495 408.936 70.1602C411.969 67.8254 415.702 66.658 420.193 66.658C424.684 66.658 428.184 67.8254 431.159 70.0435C434.133 72.3199 436.408 75.4719 437.925 79.4994C439.5 83.5269 440.258 88.2548 440.258 93.6248C440.258 99.0532 439.5 103.723 437.925 107.634Z" fill="black"/> <path d="M521.101 100.746V51.2485H541.224V136.702H521.685V121.526H520.81C518.885 126.312 515.735 130.223 511.302 133.258C506.928 136.293 501.503 137.811 495.087 137.811C489.488 137.811 484.53 136.585 480.272 134.075C476.014 131.565 472.631 127.946 470.239 123.102C467.848 118.315 466.623 112.478 466.623 105.649V51.2485H486.804V102.555C486.804 107.984 488.263 112.303 491.237 115.455C494.212 118.665 498.12 120.241 502.903 120.241C505.878 120.241 508.736 119.541 511.535 118.082C514.335 116.623 516.61 114.463 518.418 111.603C520.226 108.684 521.101 105.065 521.101 100.746Z" fill="black"/> <path d="M567.938 22.7056H547.814V136.701H567.938V22.7056Z" fill="black"/>
{ "end_byte": 3325, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/textures/logo-lockup.svg" }
angular/adev/src/assets/textures/logo-lockup.svg_3326_6039
<path d="M642.014 65.3155C639.914 61.5215 637.231 58.5447 633.848 56.3266C630.465 54.1086 626.732 52.5326 622.649 51.5403C618.566 50.548 614.483 50.0811 610.342 50.0811C604.393 50.0811 598.968 50.9566 594.01 52.7077C589.111 54.4588 584.911 57.0854 581.528 60.5876C578.087 64.1481 575.637 68.4675 574.179 73.6624L592.96 76.3474C594.01 73.3705 595.935 70.8607 598.793 68.701C601.709 66.5413 605.559 65.4906 610.517 65.4906C615.183 65.4906 618.741 66.658 621.249 68.9345C623.757 71.2692 624.982 74.4796 624.982 78.6822V79.0324C624.982 80.9586 624.224 82.3595 622.824 83.2934C621.366 84.1689 619.091 84.8694 616 85.278C612.85 85.6865 608.825 86.1535 603.809 86.6788C599.668 87.1458 595.643 87.8462 591.794 88.8385C587.886 89.8308 584.444 91.29 581.353 93.1579C578.262 95.0841 575.87 97.594 574.062 100.746C572.254 103.898 571.379 107.867 571.379 112.712C571.379 118.315 572.604 123.043 575.112 126.837C577.562 130.631 581.003 133.55 585.319 135.476C589.636 137.402 594.477 138.394 599.901 138.394C604.392 138.394 608.242 137.811 611.683 136.585C615.008 135.359 617.75 133.666 619.966 131.623C622.183 129.581 623.874 127.362 625.099 124.969H625.741V136.702H645.105V79.4994C645.105 73.8375 644.055 69.1096 642.014 65.3155ZM624.924 106.058C624.924 109.21 624.166 112.128 622.532 114.813C620.899 117.498 618.624 119.599 615.65 121.234C612.675 122.81 609.175 123.627 605.151 123.627C601.126 123.627 597.51 122.693 594.885 120.708C592.144 118.841 590.802 116.039 590.802 112.303C590.802 109.735 591.444 107.575 592.844 105.941C594.185 104.306 596.052 103.022 598.443 102.088C600.776 101.155 603.518 100.512 606.492 100.104C607.834 99.9287 609.409 99.6953 611.217 99.4618C613.025 99.2283 614.833 98.9365 616.7 98.5862C618.566 98.236 620.199 97.8858 621.716 97.4188C623.232 96.9519 624.282 96.4849 624.924 95.9596V106.058Z" fill="black"/> <path d="M651.23 136.702V51.2487H670.77V65.4909H671.645C673.22 60.5295 675.903 56.7355 679.694 54.0505C683.486 51.3655 687.86 50.0229 692.76 50.0229C693.868 50.0229 695.151 50.0813 696.493 50.1397C697.893 50.2564 699.059 50.3732 699.993 50.5483V69.0515C699.118 68.7596 697.776 68.4678 695.968 68.2343C694.16 68.0008 692.352 67.8841 690.66 67.8841C686.985 67.8841 683.719 68.7012 680.803 70.2772C677.886 71.8532 675.612 74.0129 673.92 76.8146C672.229 79.6164 671.412 82.8267 671.412 86.4456V136.702H651.23Z" fill="black"/> <path d="M158.301 27.9591L152.585 117.79L97.9316 0L158.301 27.9591Z" fill="black"/> <path d="M120.448 144.115L79.1516 167.696L37.8555 144.115L46.2547 123.744H112.048L120.448 144.115Z" fill="black"/> <path d="M79.1514 44.7109L100.791 97.3604H57.5117L79.1514 44.7109Z" fill="black"/> <path d="M5.6578 117.79L0 27.9591L60.3693 0L5.6578 117.79Z" fill="black"/> </svg>
{ "end_byte": 6039, "start_byte": 3326, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/textures/logo-lockup.svg" }
angular/adev/src/assets/textures/BUILD.bazel_0_216
load("@build_bazel_rules_nodejs//:index.bzl", "copy_to_bin") exports_files( glob(["*"]), ) copy_to_bin( name = "textures", srcs = glob(["*"]), visibility = [ "//visibility:public", ], )
{ "end_byte": 216, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/textures/BUILD.bazel" }
angular/adev/src/assets/images/directives.svg_0_3932
<svg width="157" height="288" viewBox="0 0 157 288" fill="none" xmlns="http://www.w3.org/2000/svg" class="docs-directives-svg" > <g style="mix-blend-mode: multiply;"> <path d="M64.7336 223.338H11.2638C8.32848 223.338 5.94891 225.718 5.94891 228.653V282.123C5.94891 285.058 8.32848 287.438 11.2638 287.438H64.7336C67.6689 287.438 70.0485 285.058 70.0485 282.123V228.653C70.0485 225.718 67.6689 223.338 64.7336 223.338Z" fill="var(--senary-contrast)" /> </g> <path d="M74.9811 257.855V144.478" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M78.064 145.378L74.9811 140.051L71.9106 145.378H78.064Z" fill="#E90464" /> <path d="M90.8149 257.854V212.104H115.059" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M114.159 215.175L119.486 212.104L114.159 209.034V215.175Z" fill="var(--primary-contrast)" /> <path d="M57.6552 257.855V182.188H22.7569" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M23.6571 179.105L18.3298 182.1M113.098 50.6715C114.442 50.6715 115.527 51.7567 115.527 53.1008V120.024C115.527 121.368 114.442 122.454 113.098 122.454H46.1746C44.8304 122.454 43.7452 121.368 43.7452 120.024V53.1008C43.7452 51.7567 44.8304 50.6715 46.1746 50.6715H113.098ZM113.098 50.0549H46.1746C44.4975 50.0549 43.1287 51.4237 43.1287 53.1008V120.024C43.1287 121.701 44.4975 123.07 46.1746 123.07H113.098C114.775 123.07 116.144 121.701 116.144 120.024V53.1008C116.144 51.4237 114.787 50.0549 113.098 50.0549Z88L23.6571 185.258V179.105Z" fill="black" /> <path d="M59.9366 218.061H6.46685C3.53151 218.061 1.15195 220.44 1.15195 223.375V276.845C1.15195 279.781 3.53151 282.16 6.46685 282.16H59.9366C62.8719 282.16 65.2515 279.781 65.2515 276.845V223.375C65.2515 220.44 62.8719 218.061 59.9366 218.061Z" fill="#8514F5" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path fill-rule="evenodd" clip-rule="evenodd" d="M39.3922 241.293L42.8573 237.828L33.2017 228.172L23.5091 237.865L26.9743 241.33L30.7477 237.557V248.791H19.5137L23.5091 244.795L20.0439 241.33L10.1417 251.232L19.7973 260.888L23.2625 257.423L19.5137 253.674H30.7477V272.048H35.6434V253.674H46.8774L43.104 257.448L46.5691 260.913L56.2618 251.22L46.3225 241.281L42.8573 244.746L46.8774 248.766H35.6434V237.532L39.3922 241.281V241.293Z" fill="white" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M123.481 138.127H114.381V147.228H123.481V138.127Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10"M64.7336 223.338H11.2638C8.32848 223.338 5.94891 225.718 5.94891 228.653V282.123C5.94891 285.058 8.32848 287.438 11.2638 287.438H64.7336C67.6689 287.438 70.0485 285.058 70.0485 282.123V228.653C70.0485 225.718 67.6689 223.338 64.7336 223.338Z /> <path d="M134.185 117.25H129.351V122.084H134.185V117.25Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M113.086 50.3633H46.1746C44.6626 50.3633 43.437 51.589 43.437 53.1009V120.012C43.437 121.524 44.6626 122.75 46.1746 122.75H113.086C114.598 122.75 115.823 121.524 115.823 120.012V53.1009C115.823 51.589 114.598 50.3633 113.086 50.3633Z" fill="#F11653" /> <path d="M113.098 50.6715C114.442 50.6715 115.527 51.7567 115.527 53.1008V120.024C115.527 121.368 114.442 122.454 113.098 122.454H46.1746C44.8304 122.454 43.7452 121.368 43.7452 120.024V53.1008C43.7452 51.7567 44.8304 50.6715 46.1746 50.6715H113.098ZM113.098 50.0549H46.1746C44.4975 50.0549 43.1287 51.4237 43.1287 53.1008V120.024C43.1287 121.701 44.4975 123.07 46.1746 123.07H113.098C114.775 123.07 116.144 121.701 116.144 120.024V53.1008C116.144 51.4237 114.787 50.0549 113.098 50.0549Z" fill="var(--primary-contrast)" /> <path
{ "end_byte": 3932, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/directives.svg" }
angular/adev/src/assets/images/directives.svg_3933_7378
d="M105.465 42.4341H38.5536C36.8714 42.4341 35.5077 43.7978 35.5077 45.48V112.391C35.5077 114.073 36.8714 115.437 38.5536 115.437H105.465C107.147 115.437 108.511 114.073 108.511 112.391V45.48C108.511 43.7978 107.147 42.4341 105.465 42.4341Z" fill="white" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M51.2428 53.7051H92.7756C94.5513 53.7051 95.9941 55.1479 95.9941 56.9236V64.3719C95.9941 66.1476 94.5513 67.5904 92.7756 67.5904H51.2428C49.4671 67.5904 48.0243 66.1476 48.0243 64.3719V56.9236C48.0243 55.1479 49.4671 53.7051 51.2428 53.7051Z" fill="white" /> <path d="M92.7756 54.0136C94.3787 54.0136 95.6859 55.3207 95.6859 56.9238V64.3721C95.6859 65.9752 94.3787 67.2823 92.7756 67.2823H51.2428C49.6397 67.2823 48.3326 65.9752 48.3326 64.3721V56.9238C48.3326 55.3207 49.6397 54.0136 51.2428 54.0136H92.7756ZM92.7756 53.397H51.2428C49.3068 53.397 47.716 54.9877 47.716 56.9238V64.3721C47.716 66.3081 49.3068 67.8989 51.2428 67.8989H92.7756C94.7117 67.8989 96.3024 66.3081 96.3024 64.3721V56.9238C96.3024 54.9877 94.7117 53.397 92.7756 53.397Z" fill="var(--primary-contrast)" /> <path d="M54.893 57.7375H60.2942C60.4175 57.7375 60.5038 57.8362 60.5038 57.9472V63.3484C60.5038 63.4717 60.4052 63.5581 60.2942 63.5581H54.893C54.7697 63.5581 54.6833 63.4594 54.6833 63.3484V57.9472C54.6833 57.8239 54.782 57.7375 54.893 57.7375Z" fill="white" /> <path d="M60.2079 58.0458V63.2497H55.0039V58.0458H60.2079ZM60.3065 57.4292H54.9053C54.6217 57.4292 54.3874 57.6635 54.3874 57.9471V63.3484C54.3874 63.632 54.6217 63.8663 54.9053 63.8663H60.3065C60.5902 63.8663 60.8245 63.632 60.8245 63.3484V57.9471C60.8245 57.6635 60.5902 57.4292 60.3065 57.4292Z" fill="black" /> <path d="M65.3502 59.575H88.1512" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M51.2428 71.9929H92.7756C94.5513 71.9929 95.9941 73.4357 95.9941 75.2115V82.6597C95.9941 84.4355 94.5513 85.8783 92.7756 85.8783H51.2428C49.4671 85.8783 48.0243 84.4355 48.0243 82.6597V75.2115C48.0243 73.4357 49.4671 71.9929 51.2428 71.9929Z" fill="white" /> <path d="M92.7756 72.3011C94.3787 72.3011 95.6859 73.6083 95.6859 75.2114V82.6597C95.6859 84.2628 94.3787 85.5699 92.7756 85.5699H51.2428C49.6397 85.5699 48.3326 84.2628 48.3326 82.6597V75.2114C48.3326 73.6083 49.6397 72.3011 51.2428 72.3011H92.7756ZM92.7756 71.6846H51.2428C49.3068 71.6846 47.716 73.2753 47.716 75.2114V82.6597C47.716 84.5957 49.3068 86.1865 51.2428 86.1865H92.7756C94.7117 86.1865 96.3024 84.5957 96.3024 82.6597V75.2114C96.3024 73.2753 94.7117 71.6846 92.7756 71.6846Z" fill="var(--primary-contrast)" /> <path d="M60.2942 76.0129H54.893C54.7772 76.0129 54.6833 76.1068 54.6833 76.2226V81.6238C54.6833 81.7396 54.7772 81.8334 54.893 81.8334H60.2942C60.41 81.8334 60.5038 81.7396 60.5038 81.6238V76.2226C60.5038 76.1068 60.41 76.0129 60.2942 76.0129Z" fill="#DD0031" /> <path d="M60.2079 76.3212V81.5251H55.0039V76.3212H60.2079ZM60.3065 75.7046H54.9053C54.6217 75.7046 54.3874 75.9389 54.3874 76.2225V81.6237C54.3874 81.9074 54.6217 82.1417 54.9053 82.1417H60.3065C60.5902 82.1417 60.8245 81.9074 60.8245 81.6237V76.2225C60.8245 75.9389 60.5902 75.7046 60.3065 75.7046Z" fill="var(--primary-contrast)" /> <path d="M65.3502 77.8503H88.1512" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path
{ "end_byte": 7378, "start_byte": 3933, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/directives.svg" }
angular/adev/src/assets/images/directives.svg_7379_11062
d="M51.2428 90.2808H92.7756C94.5513 90.2808 95.9941 91.7236 95.9941 93.4993V100.948C95.9941 102.723 94.5513 104.166 92.7756 104.166H51.2428C49.4671 104.166 48.0243 102.723 48.0243 100.948V93.4993C48.0243 91.7236 49.4671 90.2808 51.2428 90.2808Z" fill="white" /> <path d="M92.7756 90.589C94.3787 90.589 95.6859 91.8961 95.6859 93.4992V100.948C95.6859 102.551 94.3787 103.858 92.7756 103.858H51.2428C49.6397 103.858 48.3326 102.551 48.3326 100.948V93.4992C48.3326 91.8961 49.6397 90.589 51.2428 90.589H92.7756ZM92.7756 89.9724H51.2428C49.3068 89.9724 47.716 91.5632 47.716 93.4992V100.948C47.716 102.884 49.3068 104.474 51.2428 104.474H92.7756C94.7117 104.474 96.3024 102.884 96.3024 100.948V93.4992C96.3024 91.5632 94.7117 89.9724 92.7756 89.9724Z" fill="var(--primary-contrast)" /> <path d="M54.893 94.3008H60.2942C60.4175 94.3008 60.5038 94.3994 60.5038 94.5104V99.9116C60.5038 100.035 60.4052 100.121 60.2942 100.121H54.893C54.7697 100.121 54.6833 100.023 54.6833 99.9116V94.5104C54.6833 94.3871 54.782 94.3008 54.893 94.3008Z" fill="white" /> <path d="M60.2079 94.609V99.8129H55.0039V94.609H60.2079ZM60.3065 93.9924H54.9053C54.6217 93.9924 54.3874 94.2267 54.3874 94.5104V99.9116C54.3874 100.195 54.6217 100.43 54.9053 100.43H60.3065C60.5902 100.43 60.8245 100.195 60.8245 99.9116V94.5104C60.8245 94.2267 60.5902 93.9924 60.3065 93.9924Z" fill="var(--primary-contrast)" /> <path d="M65.3502 96.1382H88.1512" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M92.7756 53.397H51.2428C49.295 53.397 47.716 54.976 47.716 56.9238V64.3721C47.716 66.3199 49.295 67.8989 51.2428 67.8989H92.7756C94.7234 67.8989 96.3024 66.3199 96.3024 64.3721V56.9238C96.3024 54.976 94.7234 53.397 92.7756 53.397Z" fill="#EFEFF1" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M54.893 57.7375H60.2942C60.4175 57.7375 60.5038 57.8362 60.5038 57.9472V63.3484C60.5038 63.4717 60.4052 63.5581 60.2942 63.5581H54.893C54.7697 63.5581 54.6833 63.4594 54.6833 63.3484V57.9472C54.6833 57.8239 54.782 57.7375 54.893 57.7375Z" fill="#5C44E4" /> <path d="M60.2079 58.0458V63.2497H55.0039V58.0458H60.2079ZM60.3065 57.4292H54.9053C54.6217 57.4292 54.3874 57.6635 54.3874 57.9471V63.3484C54.3874 63.632 54.6217 63.8663 54.9053 63.8663H60.3065C60.5902 63.8663 60.8245 63.632 60.8245 63.3484V57.9471C60.8245 57.6635 60.5902 57.4292 60.3065 57.4292Z" fill="var(--primary-contrast)" /> <path d="M65.3502 59.575H88.1512" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M92.7756 71.6846H51.2428C49.295 71.6846 47.716 73.2636 47.716 75.2114V82.6597C47.716 84.6075 49.295 86.1865 51.2428 86.1865H92.7756C94.7234 86.1865 96.3024 84.6075 96.3024 82.6597V75.2114C96.3024 73.2636 94.7234 71.6846 92.7756 71.6846Z" fill="#EFEFF1" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M60.2942 76.0129H54.893C54.7772 76.0129 54.6833 76.1068 54.6833 76.2226V81.6238C54.6833 81.7396 54.7772 81.8334 54.893 81.8334H60.2942C60.41 81.8334 60.5038 81.7396 60.5038 81.6238V76.2226C60.5038 76.1068 60.41 76.0129 60.2942 76.0129Z" fill="#F11653" /> <path d="M60.2079 76.3212V81.5251H55.0039V76.3212H60.2079ZM60.3065 75.7046H54.9053C54.6217 75.7046 54.3874 75.9389 54.3874 76.2225V81.6237C54.3874 81.9074 54.6217 82.1417 54.9053 82.1417H60.3065C60.5902 82.1417 60.8245 81.9074 60.8245 81.6237V76.2225C60.8245 75.9389 60.5902 75.7046 60.3065 75.7046Z" fill="black" /> <path d="M65.3502 77.8503H88.1512" stroke="black" stroke-width="0.5"
{ "end_byte": 11062, "start_byte": 7379, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/directives.svg" }
angular/adev/src/assets/images/directives.svg_11063_13325
stroke-miterlimit="10" /> <path d="M92.7756 89.9724H51.2428C49.295 89.9724 47.716 91.5514 47.716 93.4992V100.948C47.716 102.895 49.295 104.474 51.2428 104.474H92.7756C94.7234 104.474 96.3024 102.895 96.3024 100.948V93.4992C96.3024 91.5514 94.7234 89.9724 92.7756 89.9724Z" fill="#EFEFF1" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M54.893 94.3008H60.2942C60.4175 94.3008 60.5038 94.3994 60.5038 94.5104V99.9116C60.5038 100.035 60.4052 100.121 60.2942 100.121H54.893C54.7697 100.121 54.6833 100.023 54.6833 99.9116V94.5104C54.6833 94.3871 54.782 94.3008 54.893 94.3008Z" fill="#F637E3" /> <path d="M60.2079 94.609V99.8129H55.0039V94.609H60.2079ZM60.3065 93.9924H54.9053C54.6217 93.9924 54.3874 94.2267 54.3874 94.5104V99.9116C54.3874 100.195 54.6217 100.43 54.9053 100.43H60.3065C60.5902 100.43 60.8245 100.195 60.8245 99.9116V94.5104C60.8245 94.2267 60.5902 93.9924 60.3065 93.9924Z" fill="black" /> <path d="M65.3502 96.1382H88.1512" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M44.0659 19.3372H36.186V27.217H44.0659V19.3372Z" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M28.9597 1H24.7669V5.19274H28.9597V1Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M24.7669 83.3379H20.5742V87.5306H24.7669V83.3379Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M156.308 181.14C156.308 171.977 148.601 164.603 139.303 165.183C131.324 165.676 124.838 172.175 124.344 180.153C124.233 182.015 124.443 183.828 124.912 185.517C125.257 186.726 125.738 187.86 126.33 188.933L126.404 189.069C126.404 189.069 126.404 189.094 126.416 189.094L138.587 211.105C139.34 212.462 141.276 212.462 142.028 211.105L154.286 188.933C155.568 186.627 156.308 183.976 156.308 181.152V181.14ZM140.314 187.367C137.231 187.367 134.74 184.876 134.74 181.793C134.74 178.71 137.231 176.219 140.314 176.219C143.397 176.219 145.888 178.71 145.888 181.793C145.888 184.876 143.397 187.367 140.314 187.367Z" fill="#F637E3" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> </svg>
{ "end_byte": 13325, "start_byte": 11063, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/directives.svg" }
angular/adev/src/assets/images/ang_illustrations-04.svg_0_1001
<?xml version="1.0" encoding="UTF-8"?> <svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 960.4"> <defs> <style> .cls-1, .cls-2 { fill: none; } .cls-1, .cls-3, .cls-4, .cls-5, .cls-6, .cls-7, .cls-8, .cls-9 { stroke-width: 0px; } .cls-10, .cls-11, .cls-12, .cls-13, .cls-2 { stroke-width: 4px; } .cls-10, .cls-11, .cls-12, .cls-13, .cls-2, .cls-14 { stroke-miterlimit: 10; } .cls-10, .cls-11, .cls-13, .cls-2, .cls-14 { stroke: #000; } .cls-10, .cls-14, .cls-6 { fill: #fff; } .cls-11, .cls-9 { fill: #e7e7e7; } .cls-12 { stroke: #232428; } .cls-12, .cls-13, .cls-5 { fill: #8514f5; } .cls-14 { stroke-dasharray: 0 0 40 27; stroke-width: 2px; } .cls-4 { fill: #272428; } .cls-7 { fill: #e4e4e4; }
{ "end_byte": 1001, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/ang_illustrations-04.svg" }
angular/adev/src/assets/images/ang_illustrations-04.svg_1003_4811
.cls-8 { fill: #e90464; } </style> </defs> <rect class="cls-4" x="-36.05" y="-27.87" width="1982.09" height="1016.14"/> <g> <g> <path class="cls-5" d="m338.09,289.42h706.06c24.29,0,44.01,19.72,44.01,44.01v658.41c0,24.29-19.72,44.01-44.01,44.01H338.09c-24.29,0-44.01-19.72-44.01-44.01V333.43c0-24.29,19.72-44.01,44.01-44.01Z"/> <path class="cls-3" d="m1044.15,291.42c23.2,0,42.01,18.81,42.01,42.01v658.41c0,23.2-18.81,42.01-42.01,42.01H338.09c-23.2,0-42.01-18.81-42.01-42.01V333.43c0-23.2,18.81-42.01,42.01-42.01h706.06m0-4H338.09c-25.37,0-46.01,20.64-46.01,46.01v658.41c0,25.37,20.64,46.01,46.01,46.01h706.06c25.37,0,46.01-20.64,46.01-46.01V333.43c0-25.37-20.64-46.01-46.01-46.01h0Z"/> </g> <path class="cls-10" d="m457.15,126.61h1468.96c2.56,0,4.63,2.08,4.63,4.63v841.29c0,8.42-6.83,15.25-15.25,15.25H409.82c-2.56,0-4.63-2.08-4.63-4.63V178.57c0-28.68,23.28-51.96,51.96-51.96Z"/> <g> <polyline class="cls-11" points="1145.89 288.64 1145.89 956.86 405 956.86 405 288.64"/> <path class="cls-11" d="m405,288.64h85.87s13.1-4.18,13.1-13.98v-48.56s1.76-13.43,15.64-13.43h389.14c2.41,0,14.53.11,14.53,14.09v48.89s2.97,13.29,15.42,13.29h980.87"/> <rect class="cls-9" x="1291.4" y="427.76" width="547.94" height="238" rx="29.59" ry="29.59"/> <rect class="cls-13" x="1267.68" y="401.87" width="547.94" height="239.62" rx="29.59" ry="29.59"/> </g> <rect class="cls-12" x="536.44" y="235.79" width="184.97" height="45.02" rx="22.51" ry="22.51"/> <g> <line class="cls-2" x1="886.49" y1="241.45" x2="852.8" y2="275.15"/> <line class="cls-2" x1="886.49" y1="275.15" x2="852.8" y2="241.45"/> </g> <rect class="cls-12" x="644.27" y="433.64" width="131.87" height="44.02" rx="22.01" ry="22.01"/> <rect class="cls-10" x="805.21" y="433.64" width="211.92" height="44.02" rx="22.01" ry="22.01"/> <rect class="cls-10" x="710.21" y="505.35" width="211.92" height="44.02" rx="22.01" ry="22.01"/> <g> <path class="cls-8" d="m732.22,623.09c-13.24,0-24.01-10.77-24.01-24.01s10.77-24.01,24.01-24.01h240.03c13.24,0,24.01,10.77,24.01,24.01s-10.77,24.01-24.01,24.01h-240.03Z"/> <path class="cls-3" d="m972.25,577.07c12.16,0,22.01,9.85,22.01,22.01h0c0,12.16-9.85,22.01-22.01,22.01h-240.03c-12.16,0-22.01-9.85-22.01-22.01h0c0-12.16,9.85-22.01,22.01-22.01h240.03m0-4h-240.03c-14.34,0-26.01,11.67-26.01,26.01s11.67,26.01,26.01,26.01h240.03c14.34,0,26.01-11.67,26.01-26.01s-11.67-26.01-26.01-26.01h0Z"/> </g> <rect class="cls-6" x="483.75" y="361.92" width="89.99" height="44.02" rx="22.01" ry="22.01"/> <rect class="cls-10" x="483.75" y="432.92" width="89.99" height="44.02" rx="22.01" ry="22.01"/> <rect class="cls-10" x="483.75" y="504.92" width="89.99" height="44.02" rx="22.01" ry="22.01"/> <rect class="cls-10" x="483.75" y="576.92" width="89.99" height="44.02" rx="22.01" ry="22.01"/> <rect class="cls-6" x="483.75" y="651.55" width="89.99" height="44.02" rx="22.01" ry="22.01"/> <rect class="cls-6" x="483.75" y="723.55" width="89.99" height="44.02" rx="22.01" ry="22.01"/> <rect class="cls-6" x="483.75" y="795.55" width="89.99" height="44.02" rx="22.01" ry="22.01"/> <rect class="cls-6" x="483.75" y="867.55" width="89.99" height="44.02" rx="22.01" ry="22.01"/> <rect class="cls-6" x="648.64" y="723.55" width="127.09" height="44.02" rx="22.01" ry="22.01"/> <rect class="cls-6" x="805.25" y="723.55" width="270.7" height="44.02" rx="22.01" ry="22.01"/> <rect class="cls-6" x="710.21" y="795.55" width="190.26" height="44.02" rx="22.01" ry="22.01"/> <rect class="cls-6" x="928.46" y="795.55" width="147.49" height="44.02" rx="22.01" ry="22.01"/> <rect class="cls-6" x="710.21" y="867.55" width="262.23" height="44.02" rx="22.01" ry="22.01"/>
{ "end_byte": 4811, "start_byte": 1003, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/ang_illustrations-04.svg" }
angular/adev/src/assets/images/ang_illustrations-04.svg_4812_5564
<rect class="cls-7" x="1289.13" y="716.84" width="550.44" height="129" rx="32.39" ry="32.39"/> <rect class="cls-14" x="1266.54" y="693.12" width="550.44" height="129" rx="32.39" ry="32.39"/> <rect class="cls-13" x="1294.68" y="734.42" width="52.14" height="50.42"/> <rect class="cls-10" x="1373.19" y="734.42" width="400.36" height="47.8" rx="23.9" ry="23.9"/> <g> <polygon class="cls-6" points="1677.74 739.07 1847.5 833.39 1753.87 840.47 1724.85 927.13 1677.74 739.07"/> <path class="cls-3" d="m1680.8,743.06l159.9,88.83-85.66,6.48-2.65.2-.84,2.52-26.42,78.91-44.33-176.94m-6.12-7.98l49.9,199.17,30.77-91.89,98.96-7.48-179.63-99.79h0Z"/> </g> </g> <rect class="cls-1" y="0" width="1920" height="960.4"/> </svg>
{ "end_byte": 5564, "start_byte": 4812, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/ang_illustrations-04.svg" }
angular/adev/src/assets/images/overview.svg_0_3890
<svg width="273" height="192" viewBox="0 0 273 192" fill="none" xmlns="http://www.w3.org/2000/svg" > <path d="M196.829 31.3324H19.6283C16.1156 31.3324 13.268 34.18 13.268 37.6928V136.836C13.268 140.349 16.1156 143.196 19.6283 143.196H196.829C200.342 143.196 203.189 140.349 203.189 136.836V37.6928C203.189 34.18 200.342 31.3324 196.829 31.3324Z" fill="white" /> <path d="M196.844 31.7092C200.145 31.7092 202.828 34.392 202.828 37.6928V136.851C202.828 140.152 200.145 142.835 196.844 142.835H19.6283C16.3276 142.835 13.6448 140.152 13.6448 136.851V37.6928C13.6448 34.392 16.3276 31.7092 19.6283 31.7092H196.844ZM196.844 30.9556H19.6283C15.9056 30.9556 12.8912 33.97 12.8912 37.6928V136.851C12.8912 140.574 15.9056 143.588 19.6283 143.588H196.844C200.567 143.588 203.581 140.574 203.581 136.851V37.6928C203.581 33.97 200.567 30.9556 196.844 30.9556Z" fill="var(--primary-contrast)" /> <path d="M13.3581 41.1293H105.011V143.076H19.8993C16.2971 143.076 13.3581 140.152 13.3581 136.535V41.1143V41.1293Z" fill="#EFEFF1" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M13.268 41.1745V35.3719C13.268 33.1563 15.0766 31.3477 17.2922 31.3477H199.03C201.215 31.3477 203.024 33.1261 203.054 35.2965L203.174 41.1745H13.2529H13.268Z" fill="white" /> <path d="M199.045 31.7092C201.019 31.7092 202.662 33.3219 202.692 35.2963L202.798 40.7976H13.6448V35.3717C13.6448 33.3521 15.2876 31.7243 17.2922 31.7243H199.03M199.03 30.9707H17.2922C14.8506 30.9707 12.8912 32.9451 12.8912 35.3717V41.5512H203.566L203.446 35.2813C203.4 32.8848 201.441 30.9556 199.045 30.9556L199.03 30.9707Z" fill="black" /> <path d="M57.338 89.0128C64.9795 89.0128 71.174 82.8182 71.174 75.1767C71.174 67.5353 64.9795 61.3407 57.338 61.3407C49.6966 61.3407 43.502 67.5353 43.502 75.1767C43.502 82.8182 49.6966 89.0128 57.338 89.0128Z" fill="#F637E3" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M57.3382 77.1963C60.0685 77.1963 62.2818 74.9829 62.2818 72.2527C62.2818 69.5224 60.0685 67.3091 57.3382 67.3091C54.608 67.3091 52.3947 69.5224 52.3947 72.2527C52.3947 74.9829 54.608 77.1963 57.3382 77.1963Z" fill="white" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M57.3382 80.3315C54.2033 80.3315 48.1594 81.9593 47.5264 84.9284C50.0284 87.4605 53.51 89.028 57.3382 89.028C61.1665 89.028 64.6481 87.4605 67.1501 84.9284C66.502 81.9593 60.4431 80.3315 57.3382 80.3315Z" fill="white" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M15.3176 162.262V154.515H99.3737V164.357" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M2.43108 162.639H28.2041C28.9728 162.639 29.6058 163.272 29.6058 164.041V189.814C29.6058 190.583 28.9728 191.216 28.2041 191.216H2.43108C1.66241 191.216 1.02939 190.583 1.02939 189.814V164.041C1.02939 163.272 1.66241 162.639 2.43108 162.639Z" fill="#5C44E4" /> <path d="M28.2041 163.016C28.7618 163.016 29.229 163.468 29.229 164.041V189.814C29.229 190.371 28.7768 190.839 28.2041 190.839H2.43111C1.87344 190.839 1.40621 190.387 1.40621 189.814V164.041C1.40621 163.483 1.85837 163.016 2.43111 163.016H28.2041ZM28.2041 162.262H2.43111C1.45143 162.262 0.652618 163.061 0.652618 164.041V189.814C0.652618 190.793 1.45143 191.592 2.43111 191.592H28.2041C29.1838 191.592 29.9826 190.793 29.9826 189.814V164.041C29.9826 163.061 29.1838 162.262 28.2041 162.262Z" fill="black" /> <path d="M44.4514 162.639H70.2244C70.9931 162.639 71.6261 163.272 71.6261 164.041V189.814C71.6261 190.583 70.9931 191.216 70.2244 191.216H44.4514C43.6828 191.216 43.0497 190.583 43.0497 189.814V164.041C43.0497 163.272 43.6828 162.639 44.4514 162.639Z" fill="#F637E3" />
{ "end_byte": 3890, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/overview.svg" }
angular/adev/src/assets/images/overview.svg_3891_7869
<path d="M70.2396 163.016C70.7972 163.016 71.2645 163.468 71.2645 164.041V189.814C71.2645 190.371 70.8123 190.839 70.2396 190.839H44.4666C43.9089 190.839 43.4417 190.387 43.4417 189.814V164.041C43.4417 163.483 43.8938 163.016 44.4666 163.016H70.2396ZM70.2396 162.262H44.4666C43.4869 162.262 42.6881 163.061 42.6881 164.041V189.814C42.6881 190.793 43.4869 191.592 44.4666 191.592H70.2396C71.2192 191.592 72.0181 190.793 72.0181 189.814V164.041C72.0181 163.061 71.2192 162.262 70.2396 162.262Z" fill="black" /> <path d="M86.4872 162.639H112.26C113.029 162.639 113.662 163.272 113.662 164.041V189.814C113.662 190.583 113.029 191.216 112.26 191.216H86.4872C85.7186 191.216 85.0856 190.583 85.0856 189.814V164.041C85.0856 163.272 85.7186 162.639 86.4872 162.639Z" fill="#F11653" /> <path d="M112.26 163.016C112.818 163.016 113.285 163.468 113.285 164.041V189.814C113.285 190.371 112.833 190.839 112.26 190.839H86.4873C85.9296 190.839 85.4624 190.387 85.4624 189.814V164.041C85.4624 163.483 85.9145 163.016 86.4873 163.016H112.26ZM112.26 162.262H86.4873C85.5076 162.262 84.7088 163.061 84.7088 164.041V189.814C84.7088 190.793 85.5076 191.592 86.4873 191.592H112.26C113.24 191.592 114.039 190.793 114.039 189.814V164.041C114.039 163.061 113.24 162.262 112.26 162.262Z" fill="black" /> <path d="M57.3383 162.262V141.975" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M21.1354 38.1451C22.1843 38.1451 23.0345 37.2948 23.0345 36.246C23.0345 35.1972 22.1843 34.3469 21.1354 34.3469C20.0866 34.3469 19.2364 35.1972 19.2364 36.246C19.2364 37.2948 20.0866 38.1451 21.1354 38.1451Z" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M28.3848 38.1451C29.4336 38.1451 30.2839 37.2948 30.2839 36.246C30.2839 35.1972 29.4336 34.3469 28.3848 34.3469C27.336 34.3469 26.4857 35.1972 26.4857 36.246C26.4857 37.2948 27.336 38.1451 28.3848 38.1451Z" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M71.6416 118.207H30.9624V119.835H71.6416V118.207Z" fill="white" /> <path d="M71.2648 118.599V119.488H31.3392V118.599H71.2648ZM72.0184 117.845H30.5856V120.242H72.0184V117.845Z" fill="black" /> <path d="M83.7142 110.37H30.9624V111.997H83.7142V110.37Z" fill="white" /> <path d="M83.3524 110.746V111.636H31.3392V110.746H83.3524ZM84.106 109.993H30.5856V112.389H84.106V109.993Z" fill="black" /> <path d="M83.7142 102.517H30.9624V104.145H83.7142V102.517Z" fill="white" /> <path d="M83.3524 102.894V103.783H31.3392V102.894H83.3524ZM84.106 102.14H30.5856V104.537H84.106V102.14Z" fill="black" /> <path d="M179.903 88.395H119.043C117.969 88.395 117.098 89.2654 117.098 90.3392V122.699C117.098 123.772 117.969 124.643 119.043 124.643H179.903C180.977 124.643 181.847 123.772 181.847 122.699V90.3392C181.847 89.2654 180.977 88.395 179.903 88.395Z" fill="#EFEFF1" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M181.471 66.7817H117.475V77.0457H181.471V66.7817Z" fill="#5C44E4" /> <path d="M181.079 67.1583V76.6687H117.837V67.1583H181.079ZM181.832 66.4047H117.083V77.4223H181.832V66.4047Z" fill="black" /> <path d="M174.176 73.775C175.624 73.775 176.798 72.6009 176.798 71.1525C176.798 69.7041 175.624 68.53 174.176 68.53C172.727 68.53 171.553 69.7041 171.553 71.1525C171.553 72.6009 172.727 73.775 174.176 73.775Z" stroke="white" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M178.381 75.2974L176.105 73.0215" stroke="white" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M35.6345 38.1451C36.6833 38.1451 37.5335 37.2948 37.5335 36.246C37.5335 35.1972 36.6833 34.3469 35.6345 34.3469C34.5857 34.3469 33.7354 35.1972 33.7354 36.246C33.7354 37.2948 34.5857 38.1451 35.6345 38.1451Z" stroke="black" stroke-width="0.93421"
{ "end_byte": 7869, "start_byte": 3891, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/overview.svg" }
angular/adev/src/assets/images/overview.svg_7870_11938
stroke-miterlimit="10" /> <g style="mix-blend-mode: multiply;"> <path d="M232.609 80.9193C253.644 80.9193 270.696 63.8672 270.696 42.8325C270.696 21.7978 253.644 4.74573 232.609 4.74573C211.575 4.74573 194.523 21.7978 194.523 42.8325C194.523 63.8672 211.575 80.9193 232.609 80.9193Z" fill="var(--senary-contrast)" /> </g> <path d="M227.606 75.855C248.432 75.855 265.316 58.9716 265.316 38.145C265.316 17.3184 248.432 0.435028 227.606 0.435028C206.779 0.435028 189.896 17.3184 189.896 38.145C189.896 58.9716 206.779 75.855 227.606 75.855Z" fill="#F11653" /> <path d="M227.606 0.811854C248.194 0.811854 264.939 17.5568 264.939 38.145C264.939 58.7333 248.194 75.4782 227.606 75.4782C207.018 75.4782 190.273 58.7333 190.273 38.145C190.273 17.5568 207.018 0.811854 227.606 0.811854ZM227.606 0.0582581C206.565 0.0582581 189.519 17.1046 189.519 38.145C189.519 59.1854 206.565 76.2318 227.606 76.2318C248.646 76.2318 265.693 59.1854 265.693 38.145C265.693 17.1046 248.646 0.0582581 227.606 0.0582581Z" fill="black" /> <path d="M207.244 38.7931L212.217 33.2919L222.105 44.1587L242.994 21.1288L247.968 26.6452L222.105 55.1763L207.244 38.7931Z" fill="white" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <g style="mix-blend-mode: multiply;"> <path d="M145.268 158.102L161.666 156.821L131.492 140.167L139.827 173.611L145.268 158.102Z" fill="var(--senary-contrast)" /> </g> <path d="M140.58 153.4L156.979 152.134L126.805 135.464L135.124 168.909L140.58 153.4Z" fill="white" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <g style="mix-blend-mode: multiply;"> <path d="M268.511 117.288H204.304C202.69 117.288 201.38 118.597 201.38 120.212V184.418C201.38 186.033 202.69 187.342 204.304 187.342H268.511C270.126 187.342 271.435 186.033 271.435 184.418V120.212C271.435 118.597 270.126 117.288 268.511 117.288Z" fill="var(--senary-contrast)" /> </g> <path d="M261.276 110.415H197.07C195.663 110.415 194.523 111.555 194.523 112.962V177.168C194.523 178.575 195.663 179.716 197.07 179.716H261.276C262.683 179.716 263.823 178.575 263.823 177.168V112.962C263.823 111.555 262.683 110.415 261.276 110.415Z" fill="#F11653" /> <path d="M261.276 110.792C262.467 110.792 263.447 111.771 263.447 112.962V177.168C263.447 178.359 262.467 179.339 261.276 179.339H197.07C195.879 179.339 194.899 178.359 194.899 177.168V112.962C194.899 111.771 195.879 110.792 197.07 110.792H261.276ZM261.276 110.038H197.07C195.457 110.038 194.146 111.349 194.146 112.962V177.168C194.146 178.781 195.457 180.092 197.07 180.092H261.276C262.889 180.092 264.2 178.781 264.2 177.168V112.962C264.2 111.349 262.889 110.038 261.276 110.038Z" fill="black" /> <path d="M253.951 102.713H189.745C188.13 102.713 186.821 104.022 186.821 105.637V169.844C186.821 171.458 188.13 172.768 189.745 172.768H253.951C255.566 172.768 256.875 171.458 256.875 169.844V105.637C256.875 104.022 255.566 102.713 253.951 102.713Z" fill="white" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M201.923 114.002H241.773C243.22 114.002 244.411 115.178 244.411 116.64V123.784C244.411 125.231 243.235 126.406 241.788 126.406H201.938C200.491 126.406 199.301 125.231 199.301 123.769V116.625C199.301 115.178 200.476 113.987 201.938 113.987L201.923 114.002Z" fill="white" /> <path d="M241.773 114.756C242.813 114.756 243.642 115.6 243.642 116.625V123.769C243.642 124.809 242.798 125.638 241.773 125.638H201.923C200.883 125.638 200.054 124.794 200.054 123.769V116.625C200.054 115.585 200.898 114.756 201.923 114.756H241.773ZM241.773 113.248H201.923C200.069 113.248 198.547 114.771 198.547 116.625V123.769C198.547 125.623 200.069 127.145 201.923 127.145H241.773C243.627 127.145 245.15 125.623 245.15 123.769V116.625C245.15 114.771 243.627 113.248 241.773 113.248Z" fill="var(--primary-contrast)" /> <path d="M210.348 117.86H205.676V122.533H210.348V117.86Z" fill="white" /> <path
{ "end_byte": 11938, "start_byte": 7870, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/overview.svg" }
angular/adev/src/assets/images/overview.svg_11939_16242
d="M209.61 118.614V121.779H206.445V118.614H209.61ZM210.62 117.107H205.435C205.164 117.107 204.938 117.333 204.938 117.604V122.789C204.938 123.06 205.164 123.286 205.435 123.286H210.62C210.891 123.286 211.117 123.06 211.117 122.789V117.604C211.117 117.333 210.891 117.107 210.62 117.107Z" fill="var(--primary-contrast)" /> <path d="M215.458 119.157H237.342" stroke="var(--primary-contrast)" stroke-width="1.86842" stroke-miterlimit="10" /> <path d="M201.923 131.546H241.773C243.22 131.546 244.396 132.721 244.396 134.168V141.312C244.396 142.759 243.22 143.935 241.773 143.935H201.923C200.476 143.935 199.286 142.759 199.286 141.297V134.153C199.286 132.706 200.461 131.516 201.923 131.516V131.546Z" fill="white" /> <path d="M241.773 132.299C242.813 132.299 243.642 133.143 243.642 134.168V141.312C243.642 142.352 242.798 143.181 241.773 143.181H201.923C200.883 143.181 200.054 142.337 200.054 141.312V134.168C200.054 133.128 200.898 132.299 201.923 132.299H241.773ZM241.773 130.792H201.923C200.069 130.792 198.547 132.314 198.547 134.168V141.312C198.547 143.166 200.069 144.688 201.923 144.688H241.773C243.627 144.688 245.15 143.166 245.15 141.312V134.168C245.15 132.314 243.627 130.792 241.773 130.792Z" fill="var(--primary-contrast)" /> <path d="M210.348 135.404H205.676V140.076H210.348V135.404Z" fill="#DD0031" /> <path d="M209.61 136.158V139.323H206.445V136.158H209.61ZM210.62 134.65H205.435C205.164 134.65 204.938 134.877 204.938 135.148V140.333C204.938 140.604 205.164 140.83 205.435 140.83H210.62C210.891 140.83 211.117 140.604 211.117 140.333V135.148C211.117 134.877 210.891 134.65 210.62 134.65Z" fill="var(--primary-contrast)" /> <path d="M215.458 136.7H237.342" stroke="var(--primary-contrast)" stroke-width="1.86842" stroke-miterlimit="10" /> <path d="M201.923 149.089H241.773C243.22 149.089 244.396 150.265 244.396 151.712V158.856C244.396 160.303 243.22 161.479 241.773 161.479H201.923C200.476 161.479 199.301 160.303 199.301 158.856V151.712C199.301 150.265 200.476 149.074 201.938 149.074L201.923 149.089Z" fill="white" /> <path d="M241.773 149.843C242.813 149.843 243.642 150.687 243.642 151.712V158.856C243.642 159.896 242.798 160.725 241.773 160.725H201.923C200.883 160.725 200.054 159.881 200.054 158.856V151.712C200.054 150.672 200.898 149.843 201.923 149.843H241.773ZM241.773 148.336H201.923C200.069 148.336 198.547 149.858 198.547 151.712V158.856C198.547 160.71 200.069 162.232 201.923 162.232H241.773C243.627 162.232 245.15 160.71 245.15 158.856V151.712C245.15 149.858 243.627 148.336 241.773 148.336Z" fill="var(--primary-contrast)" /> <path d="M210.348 152.948H205.676V157.62H210.348V152.948Z" fill="white" /> <path d="M209.61 153.701V156.867H206.445V153.701H209.61ZM210.62 152.194H205.435C205.164 152.194 204.938 152.42 204.938 152.692V157.876C204.938 158.148 205.164 158.374 205.435 158.374H210.62C210.891 158.374 211.117 158.148 211.117 157.876V152.692C211.117 152.42 210.891 152.194 210.62 152.194Z" fill="var(--primary-contrast)" /> <path d="M215.458 154.244H237.342" stroke="var(--primary-contrast)" stroke-width="1.86842" stroke-miterlimit="10" /> <path d="M241.773 113.248H201.908C200.044 113.248 198.532 114.76 198.532 116.625V123.784C198.532 125.648 200.044 127.16 201.908 127.16H241.773C243.638 127.16 245.149 125.648 245.149 123.784V116.625C245.149 114.76 243.638 113.248 241.773 113.248Z" fill="#EFEFF1" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M205.435 117.484H210.62C210.62 117.484 210.74 117.544 210.74 117.604V122.789C210.74 122.789 210.68 122.91 210.62 122.91H205.435C205.435 122.91 205.314 122.849 205.314 122.789V117.604C205.314 117.604 205.375 117.484 205.435 117.484Z" fill="#5C44E4" /> <path d="M210.363 117.86V122.533H205.691V117.86H210.363ZM210.62 117.107H205.435C205.164 117.107 204.938 117.333 204.938 117.604V122.789C204.938 123.06 205.164 123.286 205.435 123.286H210.62C210.891 123.286 211.117 123.06 211.117 122.789V117.604C211.117 117.333 210.891 117.107 210.62 117.107Z" fill="black" /> <path d="M215.458 119.157H237.342" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path
{ "end_byte": 16242, "start_byte": 11939, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/overview.svg" }
angular/adev/src/assets/images/overview.svg_16243_19271
d="M241.773 130.792H201.908C200.044 130.792 198.532 132.304 198.532 134.168V141.327C198.532 143.192 200.044 144.703 201.908 144.703H241.773C243.638 144.703 245.149 143.192 245.149 141.327V134.168C245.149 132.304 243.638 130.792 241.773 130.792Z" fill="#EFEFF1" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M205.435 135.027H210.62C210.62 135.027 210.74 135.088 210.74 135.148V140.333C210.74 140.333 210.68 140.453 210.62 140.453H205.435C205.435 140.453 205.314 140.393 205.314 140.333V135.148C205.314 135.148 205.375 135.027 205.435 135.027Z" fill="#F11653" /> <path d="M210.363 135.404V140.076H205.691V135.404H210.363ZM210.62 134.65H205.435C205.164 134.65 204.938 134.877 204.938 135.148V140.333C204.938 140.604 205.164 140.83 205.435 140.83H210.62C210.891 140.83 211.117 140.604 211.117 140.333V135.148C211.117 134.877 210.891 134.65 210.62 134.65Z" fill="black" /> <path d="M215.458 136.7H237.342" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M241.773 148.336H201.908C200.044 148.336 198.532 149.847 198.532 151.712V158.871C198.532 160.736 200.044 162.247 201.908 162.247H241.773C243.638 162.247 245.149 160.736 245.149 158.871V151.712C245.149 149.847 243.638 148.336 241.773 148.336Z" fill="#EFEFF1" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M205.435 152.571H210.62C210.62 152.571 210.74 152.631 210.74 152.692V157.876C210.74 157.876 210.68 157.997 210.62 157.997H205.435C205.435 157.997 205.314 157.937 205.314 157.876V152.692C205.314 152.692 205.375 152.571 205.435 152.571Z" fill="#F637E3" /> <path d="M210.363 152.948V157.62H205.691V152.948H210.363ZM210.62 152.194H205.435C205.164 152.194 204.938 152.42 204.938 152.692V157.876C204.938 158.148 205.164 158.374 205.435 158.374H210.62C210.891 158.374 211.117 158.148 211.117 157.876V152.692C211.117 152.42 210.891 152.194 210.62 152.194Z" fill="black" /> <path d="M215.458 154.244H237.342" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M167.047 166.784H159.315V174.516H167.047V166.784Z" fill="#EFEFF1" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M261.035 80.271H253.303V88.0029H261.035V80.271Z" fill="#EFEFF1" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M271.947 66.842H267.833V70.9566H271.947V66.842Z" fill="#EFEFF1" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M140.852 183.785H136.737V187.9H140.852V183.785Z" fill="white" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M178.17 12.598H174.055V16.7127H178.17V12.598Z" fill="white" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> </svg>
{ "end_byte": 19271, "start_byte": 16243, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/overview.svg" }
angular/adev/src/assets/images/templates.svg_0_3077
<svg width="207" height="243" viewBox="0 0 207 243" fill="none" xmlns="http://www.w3.org/2000/svg" > <g> <path d="M175.344 68.2852H32.0263C29.1795 68.2852 26.8717 70.5929 26.8717 73.4398V162.375C26.8717 165.222 29.1795 167.53 32.0263 167.53H175.344C178.191 167.53 180.499 165.222 180.499 162.375V73.4398C180.499 70.5929 178.191 68.2852 175.344 68.2852Z" fill="var(--senary-contrast)" style="mix-blend-mode: multiply; transition: opacity 0.3s ease;" opacity=".7" /> </g> <g style="mix-blend-mode: color-burn;"> <path d="M165.96 47.1982H7.96734C4.11939 47.1982 1 50.3176 1 54.1656V235.773C1 239.621 4.11939 242.74 7.96734 242.74H165.96C169.807 242.74 172.927 239.621 172.927 235.773V54.1656C172.927 50.3176 169.807 47.1982 165.96 47.1982Z" stroke="var(--primary-contrast)" stroke-width="0.36" stroke-miterlimit="10" /> </g> <path d="M160.398 180.441H13.5535C13.322 180.441 13.1343 180.629 13.1343 180.86V196.756C13.1343 196.987 13.322 197.175 13.5535 197.175H160.398C160.63 197.175 160.817 196.987 160.817 196.756V180.86C160.817 180.629 160.63 180.441 160.398 180.441Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M160.398 209.901H13.5535C13.322 209.901 13.1343 210.089 13.1343 210.32V226.216C13.1343 226.447 13.322 226.635 13.5535 226.635H160.398C160.63 226.635 160.817 226.447 160.817 226.216V210.32C160.817 210.089 160.63 209.901 160.398 209.901Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M163.604 175.286H20.6073C19.3133 175.286 18.2643 176.335 18.2643 177.629V189.677C18.2643 190.971 19.3133 192.02 20.6073 192.02H163.604C164.898 192.02 165.947 190.971 165.947 189.677V177.629C165.947 176.335 164.898 175.286 163.604 175.286Z" fill="#F637E3" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M163.604 204.746H20.6073C19.3133 204.746 18.2643 205.795 18.2643 207.089V219.137C18.2643 220.431 19.3133 221.48 20.6073 221.48H163.604C164.898 221.48 165.947 220.431 165.947 219.137V207.089C165.947 205.795 164.898 204.746 163.604 204.746Z" fill="#F11653" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M37.5631 18.7H29.6832V26.5798H37.5631V18.7Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M22.457 0.362793H18.2643V4.55553H22.457V0.362793Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M1 60.0847H172.915" stroke="var(--primary-contrast)" stroke-width="0.38" stroke-miterlimit="10" /> <path d="M157.266 73.9371H16.6858C14.7243 73.9371 13.1343 75.5271 13.1343 77.4886V156.953C13.1343 158.915 14.7243 160.505 16.6858 160.505H157.266C159.227 160.505 160.817 158.915 160.817 156.953V77.4886C160.817 75.5271 159.227 73.9371 157.266 73.9371Z" stroke="var(--primary-contrast)" stroke-width="0.46" stroke-miterlimit="10" />
{ "end_byte": 3077, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/templates.svg" }
angular/adev/src/assets/images/templates.svg_3079_6003
<path d="M188.021 34.6692H51.8307C48.657 34.6692 46.0842 37.242 46.0842 40.4157V129.265C46.0842 132.438 48.657 135.011 51.8307 135.011H188.021C191.194 135.011 193.767 132.438 193.767 129.265V40.4157C193.767 37.242 191.194 34.6692 188.021 34.6692Z" fill="#8514F5" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M192.694 141.017L206.111 139.981L181.423 126.342L188.243 153.718L192.694 141.017Z" fill="white" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M60.0066 108.757L89.6517 73.2176L111.232 97.4985L141.506 61.0957L179.857 108.757H60.0066Z" fill="white" /> <path d="M141.506 61.5769L179.216 108.449H60.6725L89.6517 73.6865L110.763 97.4371L111.244 97.9673L111.701 97.4124L141.506 61.5645M141.506 60.5903L111.22 97.0178L89.6394 72.7369L59.353 109.053H180.498L141.506 60.5903Z" fill="black" /> <path d="M46.0842 108.733H193.767" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M77.7147 48.3081C88.0872 48.3081 96.4957 39.8995 96.4957 29.5271C96.4957 19.1546 88.0872 10.7461 77.7147 10.7461C67.3422 10.7461 58.9337 19.1546 58.9337 29.5271C58.9337 39.8995 67.3422 48.3081 77.7147 48.3081Z" fill="#F637E3" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M77.7147 32.2647C81.4197 32.2647 84.4231 29.2612 84.4231 25.5563C84.4231 21.8513 81.4197 18.8479 77.7147 18.8479C74.0098 18.8479 71.0063 21.8513 71.0063 25.5563C71.0063 29.2612 74.0098 32.2647 77.7147 32.2647Z" fill="white" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M77.7147 36.519C73.4726 36.519 65.2598 38.7264 64.3843 42.7588C67.7878 46.187 72.4985 48.3204 77.7147 48.3204C82.931 48.3204 87.6416 46.1993 91.0451 42.7588C90.1696 38.7264 81.9444 36.519 77.7147 36.519Z" fill="white" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M9.86641 55.5465C10.7245 55.5465 11.4202 54.8509 11.4202 53.9927C11.4202 53.1346 10.7245 52.439 9.86641 52.439C9.00828 52.439 8.31262 53.1346 8.31262 53.9927C8.31262 54.8509 9.00828 55.5465 9.86641 55.5465Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M15.7979 55.5465C16.6561 55.5465 17.3517 54.8509 17.3517 53.9927C17.3517 53.1346 16.6561 52.439 15.7979 52.439C14.9398 52.439 14.2441 53.1346 14.2441 53.9927C14.2441 54.8509 14.9398 55.5465 15.7979 55.5465Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M21.7294 55.5465C22.5876 55.5465 23.2832 54.8509 23.2832 53.9927C23.2832 53.1346 22.5876 52.439 21.7294 52.439C20.8713 52.439 20.1757 53.1346 20.1757 53.9927C20.1757 54.8509 20.8713 55.5465 21.7294 55.5465Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> </svg>
{ "end_byte": 6003, "start_byte": 3079, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/templates.svg" }
angular/adev/src/assets/images/signals.svg_0_4570
<svg width="216" height="259" viewBox="0 0 216 259" fill="none" xmlns="http://www.w3.org/2000/svg" > <path fill-rule="evenodd" clip-rule="evenodd" d="M145.45 156.483C152.516 149.306 156.413 139.81 156.413 129.711C156.413 119.611 152.528 110.128 145.45 102.939L158.571 89.8181C180.385 111.879 180.385 147.53 158.571 169.579L145.45 156.458V156.483Z" fill="#F11653" /> <path d="M158.558 90.2744C168.941 100.88 174.639 114.864 174.639 129.723C174.639 144.583 168.929 158.567 158.558 169.172L145.881 156.495C152.873 149.281 156.721 139.798 156.721 129.735C156.721 119.673 152.873 110.19 145.881 102.976L158.558 90.2991M158.558 89.4236L145.006 102.976C159.791 117.762 159.791 141.722 145.006 156.507L158.558 170.06C180.829 147.789 180.829 111.694 158.558 89.4236Z" fill="black" /> <path fill-rule="evenodd" clip-rule="evenodd" d="M71.7685 156.483C56.9829 141.697 56.9829 117.737 71.7685 102.951L58.2161 89.3989C35.9452 111.67 35.9452 147.764 58.2161 170.035L71.7685 156.483Z" fill="#8514F5" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path fill-rule="evenodd" clip-rule="evenodd" d="M174.195 185.228C204.629 154.547 204.629 104.875 174.195 74.2064L187.303 61.0856C205.554 79.4473 215.604 103.815 215.604 129.711C215.604 155.607 205.554 179.974 187.303 198.336L174.195 185.215V185.228Z" fill="#F11653" /> <path d="M187.303 61.5295C224.569 99.2641 224.569 160.182 187.303 197.917L174.626 185.24C189.301 170.343 197.366 150.662 197.366 129.723C197.366 108.784 189.301 89.1029 174.626 74.2063L187.303 61.5295ZM187.303 60.6539L173.751 74.2063C204.407 104.863 204.407 154.571 173.751 185.228L187.303 198.78C225.445 160.638 225.445 98.7955 187.303 60.6539Z" fill="black" /> <path fill-rule="evenodd" clip-rule="evenodd" d="M43.0236 185.24C12.3673 154.584 12.3673 104.875 43.0236 74.2188L29.4712 60.6664C-8.6704 98.808 -8.6704 160.651 29.4712 198.792L43.0236 185.24Z" fill="#8514F5" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path fill-rule="evenodd" clip-rule="evenodd" d="M135.227 155.434C150.012 140.649 150.012 116.689 135.227 101.903L148.779 88.3507C171.05 110.622 171.05 146.716 148.779 168.987L135.227 155.434Z" fill="white" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path fill-rule="evenodd" clip-rule="evenodd" d="M81.7077 155.434C66.9221 140.649 66.9221 116.689 81.7077 101.903L68.1553 88.3507C45.8844 110.622 45.8844 146.716 68.1553 168.987L81.7077 155.434Z" fill="white" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path fill-rule="evenodd" clip-rule="evenodd" d="M163.972 184.179C194.628 153.523 194.628 103.815 163.972 73.1582L177.524 59.6058C215.666 97.7474 215.666 159.59 177.524 197.732L163.972 184.179Z" fill="white" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path fill-rule="evenodd" clip-rule="evenodd" d="M52.9628 184.179C22.3065 153.523 22.3065 103.815 52.9628 73.1582L39.4104 59.6058C1.2688 97.7474 1.2688 159.59 39.4104 197.732L52.9628 184.179Z" fill="white" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M127.754 128.527C127.754 139.107 119.085 147.69 108.393 147.69C97.7018 147.69 89.0327 139.107 89.0327 128.527C89.0327 117.946 97.7018 109.364 108.393 109.364C119.085 109.364 127.754 117.946 127.754 128.527Z" fill="white" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M111.698 81.593V5.18655" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M114.769 6.08679L111.698 0.759552L108.628 6.08679H114.769Z" fill="var(--primary-contrast)" /> <path d="M94.2489 82.2466L59.1779 47.188" stroke="var(--primary-contrast)" stroke-width="0.766053" stroke-miterlimit="10" /> <path d="M61.4592 45.9424L56.6376 44.6476L57.9324 49.4693L61.4592 45.9424Z" fill="var(--primary-contrast)" /> <path d="M129.147 82.2466L164.218 47.188" stroke="var(--primary-contrast)" stroke-width="0.766053" stroke-miterlimit="10" /> <path d="M165.464 49.4693L166.759 44.6476L161.937 45.9424L165.464 49.4693Z" fill="var(--primary-contrast)" /> <path d="M111.698 177.853V254.26" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path
{ "end_byte": 4570, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/signals.svg" }
angular/adev/src/assets/images/signals.svg_4571_5218
d="M108.628 253.36L111.698 258.687L114.769 253.36H108.628Z" fill="var(--primary-contrast)" /> <path d="M129.147 177.187L164.218 212.258" stroke="var(--primary-contrast)" stroke-width="0.766053" stroke-miterlimit="10" /> <path d="M161.937 213.504L166.759 214.799L165.464 209.977L161.937 213.504Z" fill="var(--primary-contrast)" /> <path d="M94.2489 177.187L59.1779 212.258" stroke="var(--primary-contrast)" stroke-width="0.766053" stroke-miterlimit="10" /> <path d="M57.9324 209.977L56.6376 214.799L61.4592 213.504L57.9324 209.977Z" fill="var(--primary-contrast)" /> </svg>
{ "end_byte": 5218, "start_byte": 4571, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/signals.svg" }
angular/adev/src/assets/images/what_is_angular.svg_0_4419
<svg width="297" height="205" viewBox="0 0 297 205" fill="none" xmlns="http://www.w3.org/2000/svg" class="docs-what-is-angular-svg" > <g style="mix-blend-mode: multiply;"> <path d="M63.2808 128.703H13.5968C9.45343 128.703 6.08691 132.07 6.08691 136.213V157.362C6.08691 161.505 9.45343 164.872 13.5968 164.872H50.234L60.7158 173.948V164.872H63.2808C67.4242 164.872 70.7907 161.505 70.7907 157.362V136.213C70.7907 132.07 67.4242 128.703 63.2808 128.703Z" fill="var(--senary-contrast)" /> </g> <g style="mix-blend-mode: multiply;"> <path d="M239.289 43.5782H288.973C293.116 43.5782 296.483 46.9448 296.483 51.0882V72.2368C296.483 76.3803 293.116 79.7468 288.973 79.7468H252.336L241.854 88.8228V79.7468H239.289C235.146 79.7468 231.779 76.3803 231.779 72.2368V51.0882C231.779 46.9448 235.146 43.5782 239.289 43.5782Z" fill="var(--senary-contrast)" /> </g> <path d="M235.713 39.3488H285.397C289.54 39.3488 292.906 42.7153 292.906 46.8587V68.0074C292.906 72.1508 289.54 75.5173 285.397 75.5173H248.759L238.278 84.5933V75.5173H235.713C231.569 75.5173 228.203 72.1508 228.203 68.0074V46.8587C228.203 42.7153 231.569 39.3488 235.713 39.3488Z" fill="white" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M148.615 185.737C192.556 185.737 228.178 150.115 228.178 106.173C228.178 62.2318 192.556 26.6101 148.615 26.6101C104.673 26.6101 69.0513 62.2318 69.0513 106.173C69.0513 150.115 104.673 185.737 148.615 185.737Z" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M173.322 181.818C201.095 172.746 212.548 131.53 198.904 89.7605C185.26 47.9909 151.684 21.4845 123.911 30.5567C96.1383 39.629 84.6847 80.8445 98.329 122.614C111.973 164.384 145.549 190.89 173.322 181.818Z" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M173.321 181.818C184.546 178.151 182.586 141.317 168.941 99.5474C155.297 57.7778 135.136 26.8896 123.91 30.5565C112.684 34.2235 114.645 71.0571 128.289 112.827C141.934 154.596 162.095 185.485 173.321 181.818Z" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M135.676 66.5675C164.802 57.0532 186.542 43.6094 184.232 36.54C181.923 29.4705 156.44 31.4523 127.314 40.9665C98.1875 50.4808 76.4482 63.9246 78.7575 70.9941C81.0668 78.0636 106.55 76.0817 135.676 66.5675Z" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M144.433 93.3979C182.597 80.9314 211.081 63.3153 208.055 54.0512C205.029 44.787 171.638 47.383 133.474 59.8494C95.3105 72.3158 66.826 89.9319 69.8522 99.1961C72.8784 108.46 106.269 105.864 144.433 93.3979Z" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M153.616 121.498C195.386 107.854 226.562 88.5745 223.251 78.4364C219.939 68.2983 183.393 71.1406 141.624 84.785C99.8541 98.4293 68.6778 117.709 71.9895 127.847C75.3012 137.985 111.847 135.143 153.616 121.498Z" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M162.397 148.23C201.901 135.326 231.301 116.83 228.063 106.919C224.825 97.0072 190.177 99.4333 150.673 112.337C111.169 125.242 81.7697 143.737 85.0073 153.649C88.245 163.56 122.894 161.134 162.397 148.23Z" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M168.898 168.485C200.446 158.18 223.932 143.434 221.356 135.548C218.78 127.663 191.118 129.625 159.571 139.93C128.023 150.235 104.537 164.981 107.113 172.867C109.689 180.752 137.351 178.79 168.898 168.485Z" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M232.149 7.11401H224.269V14.9939H232.149V7.11401Z" fill="var(--page-background)" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M24.0278 34.2435H16.1479V42.1234H24.0278V34.2435Z" fill="var(--page-background)" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M200.902 22.3925H196.709V26.5852H200.902V22.3925Z" fill="var(--page-background)" stroke="var(--primary-contrast)" stroke-width="0.93421"
{ "end_byte": 4419, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/what_is_angular.svg" }
angular/adev/src/assets/images/what_is_angular.svg_4420_6990
stroke-miterlimit="10" /> <path d="M8.91125 15.9064H4.71851V20.0991H8.91125V15.9064Z" fill="var(--page-background)" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M258.834 110.305H254.642V114.497H258.834V110.305Z" fill="var(--page-background)" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M4.71813 98.2441H0.525391V102.437H4.71813V98.2441Z" fill="var(--page-background)" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M44.1047 96.1231C46.0038 54.1587 74.798 19.211 113.643 8.08789" stroke="#F637E3" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M47.312 95.3584L44.0072 100.55L41.1709 95.0995L47.312 95.3584Z" fill="#F637E3" /> <path d="M113.644 11.3681L117.935 6.96576L111.967 5.44897L113.644 11.3681Z" fill="#F637E3" /> <path d="M240.028 140.714C226.131 177.684 190.443 204 148.614 204C125.419 204 104.11 195.91 87.3633 182.395" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M236.775 140.467L241.498 136.546L242.534 142.601L236.775 140.467Z" fill="var(--primary-contrast)" /> <path d="M90.051 180.496L83.9839 179.547L86.1912 185.281L90.051 180.496Z" fill="var(--primary-contrast)" /> <path d="M260.562 69.5858C260.488 69.5858 260.414 69.5488 260.316 69.4748C257.258 67.1195 254.027 64.5669 251.141 61.558C249.735 60.1028 248.169 58.3641 247.281 56.2431C246.393 54.1097 246.393 51.7297 247.294 49.7196C248.145 47.8206 249.748 46.3778 251.795 45.6749C252.165 45.5516 252.547 45.4776 252.929 45.3913C253.114 45.3543 253.299 45.3173 253.484 45.2679H254.742C254.927 45.3419 255.186 45.4036 255.457 45.4776C256.024 45.6256 256.616 45.7735 257.147 45.9832C258.33 46.4641 259.366 47.3396 260.291 48.6591L260.525 48.9798L261.08 48.3262C261.29 48.0795 261.487 47.8329 261.697 47.6109C262.893 46.3408 264.373 45.6009 266.087 45.3789C266.198 45.3666 266.297 45.3296 266.383 45.2926H267.702C267.863 45.3296 268.109 45.3913 268.356 45.4406C268.886 45.5639 269.392 45.6749 269.848 45.8845C272.573 47.0807 274.115 49.1894 274.423 52.149C274.694 54.6523 273.881 56.909 271.809 59.4739C269.17 62.7171 265.976 65.3684 262.918 67.8101C262.572 68.0937 262.215 68.365 261.857 68.6363C261.512 68.9076 261.167 69.1665 260.821 69.4378C260.71 69.5365 260.612 69.5735 260.525 69.5735L260.562 69.5858Z" fill="#F11653" /> <path
{ "end_byte": 6990, "start_byte": 4420, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/what_is_angular.svg" }
angular/adev/src/assets/images/what_is_angular.svg_6991_10398
d="M267.638 45.5885C267.86 45.6502 268.082 45.6995 268.304 45.7488C268.822 45.8721 269.303 45.9831 269.747 46.1681C272.398 47.3396 273.841 49.3003 274.149 52.1736C274.408 54.5906 273.619 56.7733 271.597 59.2642C268.982 62.4828 265.788 65.1217 262.755 67.5634C262.409 67.847 262.052 68.1183 261.694 68.3896C261.349 68.6486 261.004 68.9199 260.671 69.1912C260.609 69.2405 260.572 69.2528 260.572 69.2651C260.572 69.2651 260.547 69.2528 260.51 69.2282C257.465 66.8728 254.246 64.3325 251.36 61.3359C249.979 59.8931 248.438 58.1914 247.562 56.1074C246.699 54.0603 246.711 51.7666 247.575 49.8306C248.388 48.0055 249.918 46.6244 251.891 45.9461C252.236 45.8228 252.594 45.7612 252.988 45.6748C253.148 45.6378 253.321 45.6132 253.481 45.5762H254.653C254.887 45.6378 255.134 45.6995 255.38 45.7612C255.96 45.9091 256.515 46.0448 257.033 46.2544C258.167 46.7107 259.154 47.5492 260.042 48.8194L260.498 49.473L261.016 48.8687C261.127 48.7454 261.226 48.6221 261.324 48.4988C261.522 48.2521 261.719 48.0178 261.929 47.7959C263.075 46.5874 264.494 45.8721 266.134 45.6625C266.282 45.6502 266.405 45.6008 266.504 45.5638H267.638M267.724 44.9473H266.393C266.282 44.9843 266.171 45.0336 266.06 45.0583C264.259 45.2802 262.73 46.0571 261.485 47.3766C261.164 47.7095 260.88 48.0795 260.547 48.4618C259.672 47.2286 258.636 46.2298 257.267 45.6748C256.466 45.3542 255.59 45.1816 254.739 44.9473H253.407C252.828 45.0829 252.236 45.1569 251.681 45.3542C246.909 47.0066 245.207 52.0749 246.983 56.3293C247.858 58.438 249.35 60.1274 250.904 61.7429C253.728 64.6778 256.897 67.2181 260.116 69.6968C260.264 69.8077 260.412 69.8694 260.547 69.8694C260.708 69.8694 260.868 69.7954 261.041 69.6598C261.731 69.1048 262.446 68.5869 263.125 68.032C266.319 65.467 269.463 62.8404 272.065 59.6465C273.853 57.4515 275.074 55.0468 274.753 52.0996C274.42 49.0167 272.817 46.834 269.993 45.5885C269.278 45.2679 268.477 45.1569 267.712 44.9473H267.724Z" fill="black" /> <path d="M80.2482 77.4411C80.2482 70.9917 74.8223 65.8124 68.2989 66.2193C62.6881 66.5646 58.1254 71.1273 57.7801 76.7382C57.7061 78.0453 57.8417 79.3155 58.187 80.5116C58.4213 81.3625 58.7666 82.1641 59.1859 82.9163L59.2352 83.015C59.2352 83.015 59.2352 83.0273 59.2352 83.0396L67.7933 98.5157C68.3236 99.4653 69.6801 99.4653 70.2103 98.5157L78.8301 82.9286C79.7303 81.3132 80.2482 79.4511 80.2482 77.4657V77.4411ZM69.0018 81.8188C66.8315 81.8188 65.0804 80.0677 65.0804 77.8974C65.0804 75.727 66.8315 73.9759 69.0018 73.9759C71.1722 73.9759 72.9233 75.727 72.9233 77.8974C72.9233 80.0677 71.1722 81.8188 69.0018 81.8188Z" fill="#F11653" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M210.791 133.525C210.791 127.075 205.365 121.896 198.829 122.303C193.218 122.648 188.656 127.211 188.31 132.822C188.236 134.129 188.372 135.399 188.717 136.595C188.952 137.446 189.297 138.248 189.716 139L189.765 139.099C189.765 139.099 189.765 139.111 189.765 139.123L198.324 154.599C198.854 155.549 200.21 155.549 200.741 154.599L209.36 139.012C210.261 137.397 210.778 135.535 210.778 133.549L210.791 133.525ZM199.544 137.902C197.374 137.902 195.623 136.151 195.623 133.981C195.623 131.811 197.374 130.06 199.544 130.06C201.715 130.06 203.466 131.811 203.466 133.981C203.466 136.151 201.715 137.902 199.544 137.902Z" fill="#8514F5" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path
{ "end_byte": 10398, "start_byte": 6991, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/what_is_angular.svg" }
angular/adev/src/assets/images/what_is_angular.svg_10399_12735
d="M144.349 105.064C144.349 98.6142 138.923 93.435 132.387 93.8419C126.776 94.1872 122.214 98.7499 121.868 104.361C121.794 105.668 121.93 106.938 122.275 108.134C122.509 108.985 122.855 109.787 123.274 110.539L123.323 110.638C123.323 110.638 123.323 110.65 123.323 110.662L131.881 126.138C132.412 127.088 133.768 127.088 134.298 126.138L142.918 110.551C143.818 108.936 144.336 107.074 144.336 105.088L144.349 105.064ZM133.102 109.441C130.932 109.441 129.181 107.69 129.181 105.52C129.181 103.35 130.932 101.598 133.102 101.598C135.273 101.598 137.024 103.35 137.024 105.52C137.024 107.69 135.273 109.441 133.102 109.441Z" fill="#F637E3" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M166.102 11.9231C166.102 5.47372 160.676 0.29446 154.14 0.701402C148.529 1.04669 143.967 5.60937 143.621 11.2202C143.547 12.5274 143.683 13.7975 144.028 14.9937C144.263 15.8446 144.608 16.6461 145.027 17.3984L145.077 17.497C145.077 17.497 145.077 17.5093 145.077 17.5217L153.635 32.9978C154.165 33.9473 155.521 33.9473 156.052 32.9978L164.671 17.4107C165.572 15.7952 166.09 13.9332 166.09 11.9478L166.102 11.9231ZM154.855 16.3009C152.685 16.3009 150.934 14.5498 150.934 12.3794C150.934 10.2091 152.685 8.45796 154.855 8.45796C157.026 8.45796 158.777 10.2091 158.777 12.3794C158.777 14.5498 157.026 16.3009 154.855 16.3009Z" fill="#5C44E4" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M57.7813 123.586H8.09733C3.95392 123.586 0.587402 126.952 0.587402 131.096V152.244C0.587402 156.388 3.95392 159.754 8.09733 159.754H44.7344L55.2163 168.83V159.754H57.7813C61.9247 159.754 65.2912 156.388 65.2912 152.244V131.096C65.2912 126.952 61.9247 123.586 57.7813 123.586Z" fill="#8514F5" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M59.2344 133.241H6.65259V136.127H59.2344V133.241Z" fill="white" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M59.2344 140.776H6.65259V143.661H59.2344V140.776Z" fill="white" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M37.8268 148.31H6.65259V151.196H37.8268V148.31Z" fill="white" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> </svg>
{ "end_byte": 12735, "start_byte": 10399, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/what_is_angular.svg" }
angular/adev/src/assets/images/learn-angular-browser.svg_0_1272
<svg viewBox="0 0 345 194" fill="none" xmlns="http://www.w3.org/2000/svg" > <rect width="345" height="194" fill="#232125" /> <g clip-path="url(#clip0_36_2175)"> <g clip-path="url(#clip1_36_2175)"> <path d="M72 33.3077C72 28.7195 75.7195 25 80.3077 25H351.692C356.281 25 360 28.7195 360 33.3077V188.692C360 193.281 356.281 197 351.692 197H72V33.3077Z" fill="white" /> <rect x="72" y="25" width="274" height="66" rx="1" fill="#E4E3E6" /> <circle cx="85" cy="40.6006" r="2.75" fill="#F11653" stroke="#0F0F11" /> <circle cx="94.1001" cy="40.6006" r="2.75" stroke="#0F0F11" /> <circle cx="103.2" cy="40.6006" r="2.75" stroke="#0F0F11" /> <path d="M73 53H94.1952H110.19C113.062 53 115.39 50.6719 115.39 47.8V34.2C115.39 31.3281 117.718 29 120.59 29H239.303C242.175 29 244.503 31.3281 244.503 34.2V47.8C244.503 50.6719 246.831 53 249.703 53H346" stroke="#0F0F11" /> <path d="M257.55 36.25V45.35" stroke="#0F0F11" stroke-linecap="round" stroke-linejoin="round" /> <path d="M253 40.8H262.1" stroke="#0F0F11" stroke-linecap="round" stroke-linejoin="round" /> <rect x="125.5" y="37.5" width="47" height="8" rx="4" stroke="#0F0F11" /> <rect x="148.55" y="61.25" width="234.95" height="23.4" rx="11.7" fill="white" />
{ "end_byte": 1272, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/learn-angular-browser.svg" }
angular/adev/src/assets/images/learn-angular-browser.svg_1279_4866
<path d="M161.785 76.0651C161.474 76.0651 161.191 76.0065 160.938 75.8893C160.684 75.77 160.483 75.5984 160.334 75.3747C160.185 75.1489 160.11 74.8761 160.11 74.5565C160.11 74.2753 160.166 74.0473 160.276 73.8726C160.387 73.6958 160.535 73.5573 160.721 73.4571C160.906 73.357 161.11 73.2824 161.334 73.2334C161.56 73.1823 161.787 73.1418 162.015 73.1119C162.313 73.0736 162.555 73.0448 162.74 73.0257C162.928 73.0043 163.064 72.9692 163.15 72.9202C163.237 72.8712 163.281 72.7859 163.281 72.6645V72.6389C163.281 72.3236 163.194 72.0786 163.022 71.9038C162.851 71.7291 162.592 71.6418 162.245 71.6418C161.885 71.6418 161.603 71.7206 161.398 71.8783C161.194 72.0359 161.05 72.2043 160.967 72.3833L160.251 72.1276C160.379 71.8293 160.549 71.597 160.762 71.4308C160.977 71.2625 161.212 71.1453 161.465 71.0793C161.721 71.0111 161.972 70.977 162.22 70.977C162.377 70.977 162.558 70.9962 162.763 71.0345C162.97 71.0708 163.169 71.1464 163.36 71.2614C163.554 71.3765 163.715 71.5502 163.843 71.7824C163.971 72.0146 164.035 72.3257 164.035 72.7156V75.95H163.281V75.2852H163.242C163.191 75.3918 163.106 75.5058 162.987 75.6272C162.867 75.7487 162.708 75.852 162.51 75.9372C162.312 76.0225 162.07 76.0651 161.785 76.0651ZM161.9 75.3875C162.198 75.3875 162.45 75.3289 162.654 75.2117C162.861 75.0945 163.016 74.9433 163.121 74.7579C163.227 74.5725 163.281 74.3776 163.281 74.173V73.4827C163.249 73.521 163.178 73.5562 163.07 73.5882C162.963 73.618 162.84 73.6446 162.699 73.6681C162.56 73.6894 162.425 73.7085 162.293 73.7256C162.163 73.7405 162.058 73.7533 161.977 73.7639C161.781 73.7895 161.597 73.831 161.427 73.8886C161.259 73.944 161.122 74.0281 161.018 74.1411C160.916 74.2519 160.864 74.4031 160.864 74.5949C160.864 74.857 160.961 75.0551 161.155 75.1894C161.351 75.3215 161.599 75.3875 161.9 75.3875ZM166.076 72.9969V75.95H165.322V71.0409H166.05V71.808H166.114C166.229 71.5587 166.404 71.3584 166.638 71.2071C166.873 71.0537 167.175 70.977 167.546 70.977C167.878 70.977 168.169 71.0452 168.418 71.1815C168.668 71.3158 168.862 71.5203 169 71.7952C169.139 72.0679 169.208 72.4131 169.208 72.8307V75.95H168.454V72.8818C168.454 72.4962 168.353 72.1958 168.153 71.9806C167.953 71.7632 167.678 71.6546 167.329 71.6546C167.088 71.6546 166.873 71.7068 166.683 71.8112C166.496 71.9156 166.347 72.0679 166.239 72.2682C166.13 72.4685 166.076 72.7114 166.076 72.9969ZM172.478 77.8932C172.113 77.8932 171.8 77.8463 171.538 77.7526C171.276 77.6609 171.058 77.5395 170.883 77.3882C170.71 77.2391 170.573 77.0793 170.471 76.9088L171.071 76.4869C171.14 76.5764 171.226 76.6787 171.33 76.7938C171.435 76.9109 171.578 77.0122 171.759 77.0974C171.942 77.1847 172.182 77.2284 172.478 77.2284C172.874 77.2284 173.201 77.1325 173.459 76.9408C173.717 76.749 173.846 76.4486 173.846 76.0395V75.0423H173.782C173.726 75.1318 173.647 75.2426 173.545 75.3747C173.445 75.5047 173.3 75.6208 173.111 75.7231C172.923 75.8232 172.669 75.8733 172.35 75.8733C171.954 75.8733 171.598 75.7796 171.282 75.5921C170.969 75.4046 170.721 75.1318 170.538 74.7739C170.357 74.4159 170.266 73.9813 170.266 73.4699C170.266 72.9671 170.354 72.5292 170.531 72.1563C170.708 71.7813 170.954 71.4916 171.27 71.287C171.585 71.0803 171.949 70.977 172.363 70.977C172.682 70.977 172.936 71.0303 173.123 71.1368C173.313 71.2412 173.458 71.3605 173.558 71.4948C173.66 71.6269 173.739 71.7355 173.794 71.8208H173.871V71.0409H174.6V76.0906C174.6 76.5125 174.504 76.8556 174.312 77.1198C174.123 77.3861 173.867 77.581 173.545 77.7046C173.226 77.8303 172.87 77.8932 172.478 77.8932ZM172.452 75.1958C172.755 75.1958 173.01 75.1265 173.219 74.988C173.428
{ "end_byte": 4866, "start_byte": 1279, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/learn-angular-browser.svg" }
angular/adev/src/assets/images/learn-angular-browser.svg_4867_8458
74.8495 173.587 74.6503 173.695 74.3904C173.804 74.1304 173.858 73.8193 173.858 73.4571C173.858 73.1034 173.805 72.7913 173.699 72.5207C173.592 72.2501 173.434 72.0381 173.226 71.8847C173.017 71.7313 172.759 71.6546 172.452 71.6546C172.133 71.6546 171.866 71.7355 171.653 71.8975C171.442 72.0594 171.283 72.2767 171.177 72.5494C171.073 72.8222 171.02 73.1247 171.02 73.4571C171.02 73.798 171.074 74.0995 171.18 74.3616C171.289 74.6215 171.449 74.8261 171.66 74.9752C171.873 75.1222 172.137 75.1958 172.452 75.1958ZM178.984 73.9429V71.0409H179.739V75.95H178.984V75.119H178.933C178.818 75.3683 178.639 75.5803 178.396 75.7551C178.153 75.9276 177.847 76.0139 177.476 76.0139C177.169 76.0139 176.896 75.9468 176.658 75.8126C176.419 75.6762 176.231 75.4717 176.095 75.1989C175.959 74.9241 175.891 74.5779 175.891 74.1602V71.0409H176.645V74.1091C176.645 74.4671 176.745 74.7526 176.945 74.9656C177.148 75.1787 177.405 75.2852 177.719 75.2852C177.906 75.2852 178.097 75.2373 178.291 75.1414C178.487 75.0455 178.651 74.8985 178.783 74.7004C178.917 74.5022 178.984 74.2497 178.984 73.9429ZM181.784 69.4046V75.95H181.03V69.4046H181.784ZM184.52 76.0651C184.209 76.0651 183.927 76.0065 183.673 75.8893C183.42 75.77 183.219 75.5984 183.069 75.3747C182.92 75.1489 182.846 74.8761 182.846 74.5565C182.846 74.2753 182.901 74.0473 183.012 73.8726C183.123 73.6958 183.271 73.5573 183.456 73.4571C183.641 73.357 183.846 73.2824 184.07 73.2334C184.296 73.1823 184.523 73.1418 184.751 73.1119C185.049 73.0736 185.291 73.0448 185.476 73.0257C185.664 73.0043 185.8 72.9692 185.885 72.9202C185.972 72.8712 186.016 72.7859 186.016 72.6645V72.6389C186.016 72.3236 185.93 72.0786 185.757 71.9038C185.587 71.7291 185.328 71.6418 184.981 71.6418C184.621 71.6418 184.338 71.7206 184.134 71.8783C183.929 72.0359 183.785 72.2043 183.702 72.3833L182.986 72.1276C183.114 71.8293 183.285 71.597 183.498 71.4308C183.713 71.2625 183.947 71.1453 184.201 71.0793C184.456 71.0111 184.708 70.977 184.955 70.977C185.113 70.977 185.294 70.9962 185.498 71.0345C185.705 71.0708 185.904 71.1464 186.096 71.2614C186.29 71.3765 186.451 71.5502 186.579 71.7824C186.706 72.0146 186.77 72.3257 186.77 72.7156V75.95H186.016V75.2852H185.978C185.927 75.3918 185.841 75.5058 185.722 75.6272C185.603 75.7487 185.444 75.852 185.246 75.9372C185.048 76.0225 184.806 76.0651 184.52 76.0651ZM184.635 75.3875C184.934 75.3875 185.185 75.3289 185.39 75.2117C185.596 75.0945 185.752 74.9433 185.856 74.7579C185.963 74.5725 186.016 74.3776 186.016 74.173V73.4827C185.984 73.521 185.914 73.5562 185.805 73.5882C185.699 73.618 185.575 73.6446 185.434 73.6681C185.296 73.6894 185.161 73.7085 185.029 73.7256C184.899 73.7405 184.793 73.7533 184.712 73.7639C184.516 73.7895 184.333 73.831 184.162 73.8886C183.994 73.944 183.858 74.0281 183.753 74.1411C183.651 74.2519 183.6 74.4031 183.6 74.5949C183.6 74.857 183.697 75.0551 183.891 75.1894C184.087 75.3215 184.335 75.3875 184.635 75.3875ZM188.057 75.95V71.0409H188.786V71.7824H188.837C188.926 71.5395 189.088 71.3424 189.323 71.1911C189.557 71.0399 189.821 70.9642 190.115 70.9642C190.171 70.9642 190.24 70.9653 190.323 70.9674C190.406 70.9695 190.469 70.9727 190.512 70.977V71.744C190.486 71.7377 190.427 71.7281 190.336 71.7153C190.246 71.7004 190.152 71.6929 190.051 71.6929C189.813 71.6929 189.6 71.743 189.412 71.8431C189.227 71.9411 189.08 72.0775 188.971 72.2522C188.865 72.4248 188.811 72.6219 188.811 72.8435V75.95H188.057ZM191.303 76.0011C191.145 76.0011 191.01 75.9447 190.897 75.8318C190.784 75.7188 190.728 75.5835 190.728 75.4259C190.728 75.2682 190.784 75.1329 190.897 75.02C191.01 74.907 191.145
{ "end_byte": 8458, "start_byte": 4867, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/learn-angular-browser.svg" }
angular/adev/src/assets/images/learn-angular-browser.svg_8459_11318
74.8506 191.303 74.8506C191.461 74.8506 191.596 74.907 191.709 75.02C191.822 75.1329 191.878 75.2682 191.878 75.4259C191.878 75.5303 191.852 75.6261 191.798 75.7135C191.747 75.8009 191.678 75.8712 191.591 75.9244C191.505 75.9756 191.409 76.0011 191.303 76.0011ZM194.995 76.0523C194.586 76.0523 194.225 75.9489 193.912 75.7423C193.599 75.5335 193.354 75.2394 193.177 74.8602C193 74.4788 192.912 74.0281 192.912 73.5083C192.912 72.9926 193 72.5452 193.177 72.1659C193.354 71.7867 193.6 71.4937 193.915 71.287C194.231 71.0803 194.595 70.977 195.008 70.977C195.328 70.977 195.58 71.0303 195.766 71.1368C195.953 71.2412 196.096 71.3605 196.194 71.4948C196.294 71.6269 196.372 71.7355 196.427 71.8208H196.491V69.4046H197.245V75.95H196.517V75.1958H196.427C196.372 75.2852 196.293 75.3982 196.191 75.5345C196.088 75.6688 195.943 75.7891 195.753 75.8957C195.563 76.0001 195.311 76.0523 194.995 76.0523ZM195.098 75.3747C195.4 75.3747 195.656 75.2959 195.865 75.1382C196.074 74.9784 196.232 74.7579 196.341 74.4766C196.45 74.1933 196.504 73.8662 196.504 73.4955C196.504 73.129 196.451 72.8083 196.344 72.5335C196.238 72.2565 196.08 72.0413 195.871 71.8879C195.662 71.7323 195.405 71.6546 195.098 71.6546C194.778 71.6546 194.512 71.7366 194.299 71.9007C194.088 72.0626 193.929 72.2831 193.822 72.5622C193.718 72.8392 193.666 73.1503 193.666 73.4955C193.666 73.8449 193.719 74.1624 193.826 74.4479C193.934 74.7313 194.094 74.9571 194.305 75.1254C194.518 75.2916 194.782 75.3747 195.098 75.3747ZM200.7 76.0523C200.227 76.0523 199.819 75.9479 199.476 75.7391C199.135 75.5281 198.872 75.2341 198.686 74.857C198.503 74.4777 198.411 74.0367 198.411 73.5338C198.411 73.031 198.503 72.5878 198.686 72.2043C198.872 71.8186 199.129 71.5182 199.46 71.303C199.792 71.0857 200.18 70.977 200.623 70.977C200.879 70.977 201.131 71.0196 201.381 71.1048C201.63 71.1901 201.857 71.3286 202.061 71.5203C202.266 71.71 202.429 71.9614 202.55 72.2746C202.672 72.5878 202.732 72.9734 202.732 73.4315V73.7511H198.948V73.0992H201.965C201.965 72.8222 201.91 72.575 201.799 72.3577C201.691 72.1404 201.535 71.9688 201.333 71.8431C201.132 71.7174 200.896 71.6546 200.623 71.6546C200.323 71.6546 200.063 71.7291 199.843 71.8783C199.626 72.0253 199.459 72.2171 199.341 72.4536C199.224 72.6901 199.166 72.9436 199.166 73.2142V73.6489C199.166 74.0196 199.23 74.3339 199.357 74.5917C199.487 74.8474 199.667 75.0423 199.898 75.1766C200.128 75.3087 200.395 75.3747 200.7 75.3747C200.898 75.3747 201.077 75.347 201.237 75.2916C201.399 75.2341 201.538 75.1489 201.655 75.0359C201.773 74.9209 201.863 74.7781 201.927 74.6077L202.656 74.8122C202.579 75.0594 202.45 75.2767 202.269 75.4642C202.088 75.6496 201.864 75.7945 201.598 75.8989C201.332 76.0011 201.032 76.0523 200.7 76.0523ZM207.655 71.0409L205.839 75.95H205.072L203.257 71.0409H204.075L205.43 74.9529H205.481L206.836 71.0409H207.655Z" fill="#0F0F11"/>
{ "end_byte": 11318, "start_byte": 8459, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/learn-angular-browser.svg" }
angular/adev/src/assets/images/learn-angular-browser.svg_11319_14251
<path d="M210.25 65.95V79.95H212.25V65.95H210.25Z" fill="#F11653" mask="url(#path-12-inside-1_36_2175)" /> <rect x="148.55" y="61.25" width="234.95" height="23.4" rx="11.7" stroke="#0F0F11" /> <mask id="path-15-inside-2_36_2175" fill="white"> <path d="M72 56H354V91H72V56Z" /> </mask> <path d="M354 90H72V92H354V90Z" fill="#0F0F11" mask="url(#path-15-inside-2_36_2175)" /> <path d="M92.8 72.45H83.7" stroke="#0F0F11" stroke-linecap="round" stroke-linejoin="round" /> <path d="M88.25 77L83.7 72.45L88.25 67.9" stroke="#0F0F11" stroke-linecap="round" stroke-linejoin="round" /> <path d="M104.5 72.45H113.6" stroke="#0F0F11" stroke-linecap="round" stroke-linejoin="round" /> <path d="M109.05 77L113.6 72.45L109.05 67.9" stroke="#0F0F11" stroke-linecap="round" stroke-linejoin="round" /> <g clip-path="url(#clip2_36_2175)"> <path d="M136.95 67.6V71.5H133.05" stroke="#0F0F11" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round" /> <path d="M135.318 74.75C134.896 75.9459 134.096 76.9721 133.039 77.674C131.983 78.3759 130.727 78.7153 129.461 78.6413C128.195 78.5672 126.987 78.0836 126.019 77.2633C125.052 76.443 124.377 75.3306 124.097 74.0935C123.817 72.8565 123.946 71.5618 124.466 70.4048C124.985 69.2477 125.867 68.2908 126.978 67.6784C128.088 67.0659 129.368 66.8311 130.624 67.0092C131.88 67.1873 133.044 67.7688 133.94 68.666L136.95 71.5" stroke="#0F0F11" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round" /> </g> <path d="M256.745 93.1261L256.42 93.1511L256.312 93.4585L251.803 106.261L244.762 77.9917L270.295 92.0811L256.745 93.1261Z" fill="white" stroke="#0F0F11" /> </g> <path d="M80.3077 25.5H351.692C356.004 25.5 359.5 28.9956 359.5 33.3077V188.692C359.5 193.004 356.004 196.5 351.692 196.5H72.5V33.3077C72.5 28.9956 75.9956 25.5 80.3077 25.5Z" stroke="#0F0F11" /> </g> <mask id="path-24-inside-3_36_2175" fill="white"> <path d="M52 61.3077C52 56.7195 55.7195 53 60.3077 53H73V194H52V61.3077Z" /> </mask> <path d="M52 61.3077C52 56.7195 55.7195 53 60.3077 53H73V194H52V61.3077Z" fill="#8514F5" /> <path d="M51 61.3077C51 56.1672 55.1672 52 60.3077 52H74L72 54H60.3077C56.2718 54 53 57.2718 53 61.3077H51ZM73 194H52H73ZM51 194V61.3077C51 56.1672 55.1672 52 60.3077 52V54C56.2718 54 53 57.2718 53 61.3077V194H51ZM74 52V194H72V54L74 52Z" fill="#0F0F11" mask="url(#path-24-inside-3_36_2175)" /> <defs> <clipPath id="clip0_36_2175"> <rect width="273" height="169" fill="white" transform="translate(72 25)" /> </clipPath> <clipPath id="clip1_36_2175"> <path d="M72 33.3077C72 28.7195 75.7195 25 80.3077 25H351.692C356.281 25 360 28.7195 360 33.3077V188.692C360 193.281 356.281 197 351.692 197H72V33.3077Z" fill="white" /> </clipPath> <clipPath id="clip2_36_2175"> <rect width="15.6" height="15.6" fill="white" transform="translate(122 65)" /> </clipPath> </defs> </svg>
{ "end_byte": 14251, "start_byte": 11319, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/learn-angular-browser.svg" }
angular/adev/src/assets/images/roadmap.svg_0_3516
<svg width="433" height="182" viewBox="0 0 433 182" fill="none" xmlns="http://www.w3.org/2000/svg" class="docs-roadmap-svg" > <path d="M26.0339 81.4492H316.739L406.475 153.601H114.71L26.0339 81.4492Z" fill="var(--quinary-contrast)" /> <path d="M0.482666 81.4492H360.219" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M100.184 153.602H415.329" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M432.865 153.602H423.345" stroke="white" stroke-width="1.13974" /> <path d="M49.5872 112.254H360.22" stroke="#171614" stroke-width="0.93421" /> <path d="M344.189 73.9395V61.4106H340.181L336.173 57.4029V43.3695L338.183 41.3595H340.193C340.859 41.9391 342.203 43.1599 342.203 43.3695V55.3928H344.213V31.3462L346.223 29.3362H350.231L352.241 31.3462V55.3928H354.251V41.3595L356.261 39.3494H358.271L360.281 41.3595V55.3928L355.275 60.3994H352.266V73.9272" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M382.577 126.534C382.577 116.57 374.191 108.567 364.104 109.183C355.435 109.714 348.381 116.78 347.851 125.449C347.728 127.483 347.95 129.432 348.468 131.269C348.838 132.576 349.356 133.822 350.009 134.981L350.083 135.129C350.083 135.129 350.083 135.154 350.096 135.166L363.315 159.089C364.129 160.557 366.238 160.557 367.051 159.089L380.37 134.993C381.763 132.49 382.565 129.604 382.565 126.546L382.577 126.534ZM365.202 133.292C361.86 133.292 359.147 130.579 359.147 127.237C359.147 123.895 361.86 121.182 365.202 121.182C368.544 121.182 371.257 123.895 371.257 127.237C371.257 130.579 368.544 133.292 365.202 133.292Z" fill="#8514F5" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M123.49 18.8176H115.611V26.6975H123.49V18.8176Z" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M108.372 0.468262H104.179V4.66099H108.372V0.468262Z" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M354.473 177.179H350.281V181.372H354.473V177.179Z" stroke="var(--primary-contrast)" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M182.83 133.92H322.67" stroke="#8514F5" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M321.77 136.991L327.097 133.92L321.77 130.85V136.991Z" fill="#8514F5" /> <path d="M6.64868 95.9268H146.489" stroke="#F637E3" stroke-width="0.93421" stroke-miterlimit="10" /> <path d="M145.588 99.0094L150.916 95.9265L145.588 92.856V99.0094Z" fill="#F637E3" /> <path d="M171.497 40.5084C171.497 30.1005 162.742 21.752 152.198 22.3933C143.147 22.9482 135.773 30.3225 135.23 39.3738C135.107 41.4949 135.341 43.5419 135.884 45.4533C136.266 46.8221 136.821 48.1169 137.499 49.3254L137.585 49.4734C137.585 49.4734 137.585 49.4981 137.598 49.5104L151.409 74.4819C152.26 76.011 154.455 76.011 155.306 74.4819L169.216 49.3254C170.671 46.7111 171.51 43.7022 171.51 40.496L171.497 40.5084ZM153.345 47.5744C149.855 47.5744 147.019 44.7381 147.019 41.2483C147.019 37.7584 149.855 34.9221 153.345 34.9221C156.835 34.9221 159.671 37.7584 159.671 41.2483C159.671 44.7381 156.835 47.5744 153.345 47.5744Z" fill="#F637E3" stroke="black" stroke-width="0.93421" stroke-miterlimit="10" /> </svg>
{ "end_byte": 3516, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/roadmap.svg" }
angular/adev/src/assets/images/BUILD.bazel_0_217
load("@build_bazel_rules_nodejs//:index.bzl", "copy_to_bin") exports_files( glob(["*"]), ) copy_to_bin( name = "images", srcs = glob(["**/*"]), visibility = [ "//visibility:public", ], )
{ "end_byte": 217, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/BUILD.bazel" }
angular/adev/src/assets/images/globe.svg_0_3829
<svg xmlns="http://www.w3.org/2000/svg" width="263" height="292" viewBox="0 0 263 292" fill="none"> <g style="mix-blend-mode:color-dodge" clip-path="url(#clip0_7_198)"> <path d="M245.617 198.964C245.351 199.913 244.858 200.862 244.212 201.85C243.529 203.217 242.807 204.622 242.048 205.989L245.617 198.964ZM245.617 198.964C258.686 171.425 261.287 140.448 252.857 110.895L245.617 198.964ZM251.469 108.52L252.142 110.862C260.602 140.323 258.034 171.215 245.004 198.673L244.979 198.725L244.963 198.781C244.724 199.637 244.27 200.52 243.644 201.478L243.622 201.511L243.605 201.546C242.923 202.909 242.207 204.304 241.454 205.659L241.453 205.661C225.364 234.818 198.853 255.929 166.862 265.145C155.416 268.431 143.784 270.055 132.189 270.055C111.382 270.055 90.8001 264.807 72.066 254.458C70.5933 253.628 69.1194 252.758 67.6815 251.888L67.6425 251.864L67.6007 251.846C66.7997 251.498 66.1309 251.042 65.5556 250.575L65.5245 250.55L65.4908 250.528C39.7329 234.212 21.0767 209.401 12.5785 179.865L12.5785 179.865C4.11821 150.48 6.68631 119.664 19.6411 92.2434L19.6781 92.1649L19.6943 92.0796C19.9336 90.8146 20.6293 89.3928 21.8442 87.8098L21.8732 87.772L21.8967 87.7306C22.1506 87.2813 22.3839 86.8244 22.6097 86.3823L22.6128 86.3762C22.8417 85.9279 23.0631 85.4945 23.3017 85.0724L23.3048 85.0669C38.6392 57.3441 63.3757 36.913 93.2887 27.0553L93.3017 27.051L93.3146 27.0462C94.8115 26.4849 96.3503 25.9966 97.8974 25.5438C99.4728 25.0937 101.051 24.7177 102.636 24.3782L102.646 24.376L102.657 24.3735C135.059 16.3671 167.955 21.9934 194.999 37.7062L195.054 37.7385L195.115 37.7597C197.231 38.5021 198.726 39.3982 199.598 40.4712L199.666 40.5554L199.757 40.6141C223.66 55.9852 242.475 79.4448 251.469 108.52Z" stroke="#6F6F6F" stroke-width="1.35766"/> <path d="M166.3 265.21C189.355 258.569 192.59 199.534 173.525 133.352C154.46 67.1701 120.315 18.9029 97.2603 25.5443C74.2054 32.1856 70.9709 91.2206 90.0358 157.403C109.101 223.585 143.246 271.852 166.3 265.21Z" stroke="#6F6F6F" stroke-width="1.35766" stroke-miterlimit="10"/> <path d="M166.297 265.209C215.268 251.102 239.512 186.015 220.448 119.833C201.383 53.6512 146.228 11.4362 97.2568 25.5433C48.2854 39.6504 24.0413 104.738 43.1063 170.92C62.1712 237.101 117.326 279.317 166.297 265.209Z" stroke="#6F6F6F" stroke-width="1.35766" stroke-miterlimit="10"/> <path d="M114.98 86.9534C164.898 72.5734 202.927 52.4536 199.92 42.0144C196.913 31.5752 154.008 34.7698 104.09 49.1498C54.171 63.5297 16.1417 83.6496 19.1489 94.0888C22.1561 104.528 65.061 101.333 114.98 86.9534Z" stroke="#6F6F6F" stroke-width="1.35766" stroke-miterlimit="10"/> <path d="M128.491 134.006C190.34 116.19 236.784 88.9216 232.227 73.1016C227.67 57.2816 173.837 58.9003 111.988 76.7171C50.1386 94.5338 3.69437 121.802 8.25161 137.622C12.8088 153.442 66.6418 151.823 128.491 134.006Z" stroke="#6F6F6F" stroke-width="1.35766" stroke-miterlimit="10"/> <path d="M138.926 170.188C204.523 151.292 254.505 124.88 250.563 111.196C246.621 97.5125 190.249 101.738 124.651 120.635C59.0535 139.531 9.07167 165.943 13.0135 179.627C16.9554 193.311 73.3282 189.085 138.926 170.188Z" stroke="#6F6F6F" stroke-width="1.35766" stroke-miterlimit="10"/> <path d="M159.37 241.119C209.429 226.698 247.573 206.545 244.566 196.106C241.559 185.667 198.539 188.895 148.48 203.315C98.42 217.736 60.2764 237.889 63.2836 248.328C66.2908 258.767 109.31 255.539 159.37 241.119Z" stroke="#6F6F6F" stroke-width="1.35766" stroke-miterlimit="10"/> <path d="M151.401 213.562C213.251 195.745 259.695 168.478 255.138 152.658C250.58 136.838 196.747 138.456 134.898 156.273C73.0492 174.09 26.6049 201.358 31.1622 217.178C35.7194 232.998 89.5524 231.379 151.401 213.562Z" stroke="#6F6F6F" stroke-width="1.35766" stroke-miterlimit="10"/> </g> <defs> <clipPath id="clip0_7_198"> <rect width="263" height="292" fill="white"/> </clipPath> </defs> </svg>
{ "end_byte": 3829, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/globe.svg" }
angular/adev/src/assets/images/components.svg_0_3985
<svg width="284" height="203" viewBox="0 0 284 203" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" > <path d="M278.586 54.3613H199.578C196.588 54.3613 194.164 56.7851 194.164 59.7749V114.527C194.164 117.517 196.588 119.941 199.578 119.941H278.586C281.576 119.941 284 117.517 284 114.527V59.7749C284 56.7851 281.576 54.3613 278.586 54.3613Z" fill="var(--senary-contrast)" /> <path d="M68.481 157.675C103.787 157.675 132.408 129.054 132.408 93.7484C132.408 58.4426 103.787 29.8215 68.481 29.8215C33.1751 29.8215 4.55408 58.4426 4.55408 93.7484C4.55408 129.054 33.1751 157.675 68.481 157.675Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M68.481 157.675C90.5812 157.675 108.497 129.054 108.497 93.7484C108.497 58.4426 90.5812 29.8215 68.481 29.8215C46.3808 29.8215 28.465 58.4426 28.465 93.7484C28.465 129.054 46.3808 157.675 68.481 157.675Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M116.956 52.08C105.254 58.924 88.2362 63.2277 69.2949 63.2277C50.3536 63.2277 32.2878 58.6527 20.5605 51.4387" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M21.288 136.428C33.003 129.473 50.1686 125.083 69.2949 125.083C88.4211 125.083 104.797 129.276 116.488 135.947" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M4.96106 93.7483H132.075" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M69.2949 157.503V30.0803" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M32.3618 42.5598C32.3618 33.3975 24.6546 26.0232 15.3566 26.6028C7.37802 27.096 0.891605 33.5948 0.398342 41.5733C0.287358 43.4354 0.497003 45.2481 0.965603 46.9376C1.31089 48.146 1.79181 49.2806 2.38373 50.3534L2.45772 50.489C2.45772 50.489 2.45772 50.5137 2.47005 50.5137L14.6413 72.5256C15.3935 73.8821 17.3296 73.8821 18.0818 72.5256L30.3394 50.3534C31.6219 48.0474 32.3618 45.3961 32.3618 42.5722V42.5598ZM16.3677 48.7873C13.2848 48.7873 10.7939 46.2963 10.7939 43.2134C10.7939 40.1305 13.2848 37.6395 16.3677 37.6395C19.4506 37.6395 21.9416 40.1305 21.9416 43.2134C21.9416 46.2963 19.4506 48.7873 16.3677 48.7873Z" fill="#F637E3" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M174.311 179.256H144.542V198.629H174.311V179.256Z" fill="#EFEFF1" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M192.598 197.136H126.242V201.983H192.598V197.136Z" fill="#EFEFF1" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M234.735 81.281H84.1175C80.8893 81.281 78.2723 83.898 78.2723 87.1262V175.371C78.2723 178.599 80.8893 181.216 84.1175 181.216H234.735C237.964 181.216 240.581 178.599 240.581 175.371V87.1262C240.581 83.898 237.964 81.281 234.735 81.281Z" fill="#EFEFF1" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M228.767 87.4963H90.0859C87.3481 87.4963 85.1286 89.7158 85.1286 92.4536V170.044C85.1286 172.782 87.3481 175.001 90.0859 175.001H228.767C231.505 175.001 233.724 172.782 233.724 170.044V92.4536C233.724 89.7158 231.505 87.4963 228.767 87.4963Z" fill="white" /> <path d="M228.767 87.8046C231.332 87.8046 233.416 89.8886 233.416 92.4536V170.044C233.416 172.609 231.332 174.693 228.767 174.693H90.0859C87.5209 174.693 85.4369 172.609 85.4369 170.044V92.4536C85.4369 89.8886 87.5209 87.8046 90.0859 87.8046H228.767ZM228.767 87.188H90.0859C87.1756 87.188 84.8203 89.5433 84.8203 92.4536V170.044C84.8203 172.954 87.1756 175.309 90.0859 175.309H228.767C231.677 175.309 234.032 172.954 234.032 170.044V92.4536C234.032 89.5433 231.677 87.188 228.767 87.188Z" fill="black" /> <path
{ "end_byte": 3985, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/components.svg" }
angular/adev/src/assets/images/components.svg_3986_8663
d="M85.1533 95.4748V90.6408C85.1533 88.7418 86.6947 87.188 88.6061 87.188H230.826C232.701 87.188 234.242 88.6924 234.279 90.5668L234.378 95.4748H85.1656H85.1533Z" fill="white" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M91.2698 92.8236C92.0939 92.8236 92.7619 92.1556 92.7619 91.3315C92.7619 90.5074 92.0939 89.8394 91.2698 89.8394C90.4457 89.8394 89.7776 90.5074 89.7776 91.3315C89.7776 92.1556 90.4457 92.8236 91.2698 92.8236Z" fill="white" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M96.9422 92.8236C97.7663 92.8236 98.4344 92.1556 98.4344 91.3315C98.4344 90.5074 97.7663 89.8394 96.9422 89.8394C96.1182 89.8394 95.4501 90.5074 95.4501 91.3315C95.4501 92.1556 96.1182 92.8236 96.9422 92.8236Z" fill="white" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M102.615 92.8236C103.439 92.8236 104.107 92.1556 104.107 91.3315C104.107 90.5074 103.439 89.8394 102.615 89.8394C101.791 89.8394 101.123 90.5074 101.123 91.3315C101.123 92.1556 101.791 92.8236 102.615 92.8236Z" fill="white" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M222.009 105.821H175.223C173.909 105.821 172.843 106.887 172.843 108.201V128.856C172.843 130.171 173.909 131.236 175.223 131.236H222.009C223.324 131.236 224.389 130.171 224.389 128.856V108.201C224.389 106.887 223.324 105.821 222.009 105.821Z" fill="#8514F5" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M246.574 22.0156H237.473V31.1163H246.574V22.0156Z" fill="var(--page-background)" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M257.265 1.13818H252.431V5.97216H257.265V1.13818Z" fill="var(--page-background)" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M270.892 112.233L262.321 89.6543L253.763 112.233" fill="var(--senary-contrast)" /> <path d="M224.327 70.1951C224.327 70.1951 221.516 81.5525 207.199 86.9044Z" fill="var(--senary-contrast)" /> <path d="M207.199 70.1951C207.199 70.1951 210.01 81.5525 224.327 86.9044Z" fill="var(--senary-contrast)" /> <path d="M215.757 95.7954V98.9523C215.757 103.774 219.666 107.671 224.475 107.671H238.435" fill="var(--senary-contrast)" /> <path d="M262.321 82.0704V78.9135C262.321 74.0918 258.412 70.1951 253.603 70.1951H239.643" fill="var(--senary-contrast)" /> <path d="M27.8361 155.073H23.0021V159.907H27.8361V155.073Z" fill="var(--page-background)" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M105.032 17.3665H100.198V22.2004H105.032V17.3665Z" fill="var(--page-background)" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M14.1481 181.216H4.96106V190.403H14.1481V181.216Z" fill="var(--page-background)" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M273.531 49.3054H194.522C191.532 49.3054 189.109 51.7292 189.109 54.719V109.471C189.109 112.461 191.532 114.885 194.522 114.885H273.531C276.52 114.885 278.944 112.461 278.944 109.471V54.719C278.944 51.7292 276.52 49.3054 273.531 49.3054Z" fill="#F11653" stroke="black" stroke-miterlimit="10" /> <path d="M265.836 107.178L257.277 84.5984L248.707 107.178" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /> <path d="M251.901 99.4331H262.383" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /> <path d="M197.383 65.1392H224.032" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /> <path d="M210.713 58.5293V65.139" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /> <path d="M219.272 65.1392C219.272 65.1392 216.46 76.4965 202.143 81.8485" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /> <path d="M202.143 65.1392C202.143 65.1392 204.955 76.4965 219.272 81.8485" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /> <path d="M210.713 90.7395V93.8964C210.713 98.718 214.623 102.615 219.432 102.615H233.391" stroke="black" stroke-width="0.5" stroke-miterlimit="10" stroke-linecap="round" /> <path d="M232.75 104.761L236.486 102.615L232.75 100.457V104.761Z"
{ "end_byte": 8663, "start_byte": 3986, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/components.svg" }
angular/adev/src/assets/images/components.svg_8664_12988
fill="black" /> <path d="M257.277 77.0145V73.8576C257.277 69.0359 253.368 65.1392 248.559 65.1392H234.6" stroke="black" stroke-width="0.5" stroke-miterlimit="10" stroke-linecap="round" /> <path d="M235.229 62.9934L231.504 65.1391L235.229 67.2971V62.9934Z" fill="black" /> <path d="M154.901 6.10782C154.901 6.10782 161.646 -1.05682 170.426 9.573C170.932 10.1896 170.291 11.0775 169.551 10.7938C166.221 9.51134 160.758 8.06855 159.032 11.5461" fill="#F11653" /> <path d="M154.901 6.10782C154.901 6.10782 161.646 -1.05682 170.426 9.573C170.932 10.1896 170.291 11.0775 169.551 10.7938C166.221 9.51134 160.758 8.06855 159.032 11.5461" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M153.796 4.62465L141.696 13.8323L149.141 23.6162L161.241 14.4086L153.796 4.62465Z" fill="#F11653" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M137.721 16.8531L132.834 20.572L140.279 30.3559L145.166 26.637L137.721 16.8531Z" fill="#F11653" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M147.773 21.8305C143.802 20.992 143.815 24.8394 143.815 24.8394L138.857 18.316C138.857 18.316 142.557 19.3642 142.816 15.3071L147.773 21.8305Z" fill="#F11653" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M158.669 16.3557L151.986 21.4412L173.037 49.105L179.72 44.0195L158.669 16.3557Z" fill="white" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M164.539 37.7437L171.133 32.7254L182.267 47.3571C183.649 49.1726 183.295 51.782 181.479 53.1635C179.664 54.545 177.054 54.1908 175.673 52.3754L164.539 37.7437Z" fill="white" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <g style="mix-blend-mode: multiply;"> <path d="M171.129 32.7317L164.593 37.7753L167.109 41.0802L173.521 35.8762L171.129 32.7317Z" fill="var(--senary-contrast)" /> </g> <g style="mix-blend-mode: multiply;"> <path d="M158.785 16.4541L152.04 21.3251L153.828 23.3105L160.475 18.3038L158.785 16.4541Z" fill="var(--senary-contrast)" /> </g> <path d="M157.305 45.1127L183.165 24.6176C186.235 26.2083 190.095 25.9617 192.981 23.668C195.583 21.6087 196.742 18.4148 196.335 15.3565L190.218 20.2029L184.447 12.9149L190.564 8.06859C187.678 6.97107 184.299 7.37802 181.697 9.43739C178.812 11.7311 177.689 15.4305 178.54 18.7847L152.681 39.2798C149.61 37.689 145.751 37.9357 142.865 40.2293C140.263 42.2887 139.104 45.4826 139.511 48.5408L145.627 43.6945L151.398 50.9825L145.282 55.8288C148.168 56.9263 151.546 56.5194 154.148 54.46C157.034 52.1663 158.156 48.4668 157.305 45.1127Z" fill="#5C44E4" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M100.617 159.981H139.844" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M100.617 153.84H151.288" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M172.991 159.981H212.218" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M172.991 153.84H223.649" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M172.991 147.292H223.649" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M172.991 140.756H223.649" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <mask id="mask0_33_2012" style="mask-type: luminance;" maskUnits="userSpaceOnUse" x="100" y="106" width="32" height="34" > <path d="M131.791 111.839L130.657 129.683L119.793 106.302L131.791 111.851V111.839ZM122.592 130.866H109.52L107.843 134.911L116.056 139.585L124.269 134.911L122.592 130.866ZM111.752 125.613H120.348L116.044 115.156L111.74 125.613H111.752ZM112.32 106.29C107.979 108.3 100.321 111.839 100.321 111.839L101.456 129.683L112.32 106.302V106.29Z" fill="white" /> </mask> <g mask="url(#mask0_33_2012)"> <mask id="mask1_33_2012" style="mask-type: luminance;" maskUnits="userSpaceOnUse" x="95" y="102" width="41" height="41" > <path
{ "end_byte": 12988, "start_byte": 8664, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/components.svg" }
angular/adev/src/assets/images/components.svg_12989_14587
d="M115.501 142.187C126.453 142.187 135.33 133.309 135.33 122.358C135.33 111.406 126.453 102.528 115.501 102.528C104.55 102.528 95.6721 111.406 95.6721 122.358C95.6721 133.309 104.55 142.187 115.501 142.187Z" fill="white" /> </mask> <g mask="url(#mask1_33_2012)"> <mask id="mask2_33_2012" style="mask-type: luminance;" maskUnits="userSpaceOnUse" x="89" y="96" width="53" height="53" > <path d="M141.484 96.3625H89.5063V148.365H141.484V96.3625Z" fill="white" /> </mask> <g mask="url(#mask2_33_2012)"> <mask id="mask3_33_2012" style="mask-type: luminance;" maskUnits="userSpaceOnUse" x="89" y="96" width="53" height="53" > <path d="M141.484 96.3625H89.5063V148.365H141.484V96.3625Z" fill="white" /> </mask> <g mask="url(#mask3_33_2012)"> <rect x="89.3461" y="95.9556" width="52.6805" height="52.6805" fill="url(#pattern0)" /> </g> </g> </g> </g> <defs> <pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1" > <use xlink:href="#image0_33_2012" transform="scale(0.0113636 0.0114943)" /> </pattern> <image id="image0_33_2012" width="88" height="87" xlink:href="" /> </defs> </svg>
{ "end_byte": 14587, "start_byte": 12989, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/components.svg" }
angular/adev/src/assets/images/learn-angular-local.svg_0_3526
<svg viewBox="0 0 345 194" fill="none" xmlns="http://www.w3.org/2000/svg"> <rect width="345" height="194" fill="#232125" /> <g clip-path="url(#clip0_36_2211)"> <g clip-path="url(#clip1_36_2211)"> <rect x="72" y="25" width="333" height="240.231" rx="8.30769" fill="white" /> <rect x="64.5" y="23.5" width="42" height="244" rx="0.5" fill="#E4E3E6" /> <rect x="81.1924" y="38.6539" width="18" height="18" rx="2.5" fill="#F11653" stroke="#0F0F11" /> <rect x="81.1924" y="65.6539" width="18" height="18" rx="2.5" stroke="#0F0F11" /> <rect x="81.1924" y="92.6539" width="18" height="18" rx="2.5" stroke="#0F0F11" /> <rect x="81.1924" y="119.654" width="18" height="18" rx="2.5" stroke="#0F0F11" /> <rect x="64.5" y="23.5" width="42" height="244" rx="0.5" stroke="#0F0F11" /> <rect x="0.5" y="-0.5" width="151" height="23" rx="0.5" transform="matrix(1 0 0 -1 300 48)" fill="#5C44E4" /> <rect x="0.5" y="-0.5" width="151" height="23" rx="0.5" transform="matrix(1 0 0 -1 300 48)" stroke="#0F0F11" /> <rect x="232.5" y="65.5" width="96" height="9" rx="4.5" stroke="#0F0F11" /> <rect x="208.5" y="65.5" width="9" height="9" rx="4.5" stroke="#0F0F11" /> <rect x="208.5" y="86.5" width="9" height="9" rx="4.5" stroke="#0F0F11" /> <rect x="208.5" y="107.5" width="9" height="9" rx="4.5" stroke="#0F0F11" /> <rect x="208.5" y="128.5" width="9" height="9" rx="4.5" stroke="#0F0F11" /> <rect x="208.5" y="149.5" width="9" height="9" rx="4.5" stroke="#0F0F11" /> <rect x="208.5" y="170.5" width="9" height="9" rx="4.5" stroke="#0F0F11" /> <rect x="208.5" y="191.5" width="9" height="9" rx="4.5" stroke="#0F0F11" /> <rect x="245.5" y="86.5" width="180" height="9" rx="4.5" stroke="#0F0F11" /> <rect x="245.5" y="107.5" width="289" height="9" rx="4.5" stroke="#0F0F11" /> <rect x="257.5" y="128.5" width="116" height="9" rx="4.5" stroke="#0F0F11" /> <rect x="257.5" y="149.5" width="39" height="9" rx="4.5" stroke="#0F0F11" /> <rect x="232.5" y="170.5" width="212" height="8" rx="4" stroke="#0F0F11" /> <rect x="245.5" y="190.5" width="279" height="8" rx="4" stroke="#0F0F11" /> <rect x="106.5" y="25.5" width="78" height="239" rx="0.5" fill="#F6F5F7" /> <rect x="106.5" y="25.5" width="78" height="239" rx="0.5" stroke="#0F0F11" /> <path d="M303.745 139.126L303.42 139.151L303.312 139.458L298.803 152.261L291.762 123.992L317.295 138.081L303.745 139.126Z" fill="white" stroke="#0F0F11" /> </g> <rect x="72.5" y="25.5" width="332" height="239.231" rx="7.80769" stroke="#0F0F11" /> </g> <mask id="path-25-inside-1_36_2211" fill="white"> <path d="M52 57.3077C52 52.7195 55.7195 49 60.3077 49H73V194H52V57.3077Z" /> </mask> <path d="M52 57.3077C52 52.7195 55.7195 49 60.3077 49H73V194H52V57.3077Z" fill="#F11653" /> <path d="M51 57.3077C51 52.1672 55.1672 48 60.3077 48H74L72 50H60.3077C56.2718 50 53 53.2718 53 57.3077H51ZM73 194H52H73ZM51 194V57.3077C51 52.1672 55.1672 48 60.3077 48V50C56.2718 50 53 53.2718 53 57.3077V194H51ZM74 48V194H72V50L74 48Z" fill="#0F0F11" mask="url(#path-25-inside-1_36_2211)" /> <defs> <clipPath id="clip0_36_2211"> <rect width="281" height="173" fill="white" transform="translate(64 21)" /> </clipPath> <clipPath id="clip1_36_2211"> <rect x="72" y="25" width="333" height="240.231" rx="8.30769" fill="white" /> </clipPath> </defs> </svg>
{ "end_byte": 3526, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/learn-angular-local.svg" }
angular/adev/src/assets/images/dependency_injection.svg_0_4856
<svg width="169" height="218" viewBox="0 0 169 218" fill="none" xmlns="http://www.w3.org/2000/svg" > <path d="M15.9443 51.3052H94.1636" stroke="#F637E3" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M15.9443 59.0986H94.1636" stroke="#F637E3" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M15.9443 105.835H94.1636" stroke="#F637E3" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M38.4619 66.8799H116.681" stroke="#F637E3" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M38.4619 90.2607H116.681" stroke="#F637E3" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M38.4619 98.042H116.681" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M56.6385 74.6736H134.858" stroke="#8514F5" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M56.6385 82.467H134.858" stroke="#8514F5" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M17.5722 97.8323H162.567C165.44 97.8323 167.758 100.163 167.758 103.024V184.153C167.758 187.027 165.428 189.345 162.567 189.345H17.5722C14.6989 189.345 12.3682 187.014 12.3682 184.141V103.012C12.3682 100.138 14.6989 97.8076 17.5722 97.8076V97.8323Z" fill="white" /> <path d="M162.567 98.1405C165.267 98.1405 167.462 100.336 167.462 103.036V184.166C167.462 186.866 165.267 189.061 162.567 189.061H17.5722C14.8715 189.061 12.6765 186.866 12.6765 184.166V103.036C12.6765 100.336 14.8715 98.1405 17.5722 98.1405H162.567ZM162.567 97.5239H17.5722C14.5263 97.5239 12.0599 99.9902 12.0599 103.036V184.166C12.0599 187.212 14.5263 189.678 17.5722 189.678H162.567C165.613 189.678 168.079 187.212 168.079 184.166V103.036C168.079 99.9902 165.613 97.5239 162.567 97.5239Z" fill="var(--primary-contrast)" /> <mask id="mask0_33_1913" style="mask-type: luminance;" maskUnits="userSpaceOnUse" x="12" y="98" width="156" height="92" > <path d="M17.5722 98.1406H162.567C165.267 98.1406 167.462 100.336 167.462 103.036V184.166C167.462 186.866 165.267 189.061 162.567 189.061H17.5722C14.8715 189.061 12.6765 186.866 12.6765 184.166V103.036C12.6765 100.336 14.8715 98.1406 17.5722 98.1406Z" fill="white" /> </mask> <g mask="url(#mask0_33_1913)"> <path d="M-41.7427 205.068L13.5767 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M-35.3673 205.068L19.9521 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M-28.9919 205.068L26.3276 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M-22.6165 205.068L32.703 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M-16.241 205.068L39.0784 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M-9.8656 205.068L45.4539 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M-3.49017 205.068L51.817 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M2.88525 205.068L58.1924 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M9.26068 205.068L64.5678 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M15.6361 205.068L70.9433 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M22.0115 205.068L77.3187 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M28.387 205.068L83.6941 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M34.7624 205.068L90.0695 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M41.1378 205.068L96.4449 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M47.5132 205.068L102.82 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M53.8887 205.068L109.196 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M60.2641 205.068L115.571 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M66.6395 205.068L121.947 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M73.0149 205.068L128.322 149.76"
{ "end_byte": 4856, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/dependency_injection.svg" }
angular/adev/src/assets/images/dependency_injection.svg_4857_9657
stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M79.3904 205.068L134.698 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M85.7658 205.068L141.073 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M92.1412 205.068L147.448 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M98.5167 205.068L153.824 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M104.892 205.068L160.199 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M111.267 205.068L166.575 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M117.643 205.068L172.95 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M124.018 205.068L179.325 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M130.394 205.068L185.701 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M136.769 205.068L192.076 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M143.145 205.068L198.452 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M149.508 205.068L204.827 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M155.883 205.068L211.203 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M162.259 205.068L217.578 149.76" stroke="#E90464" stroke-width="0.5" stroke-miterlimit="10" /> </g> <path d="M12.3806 105.872V101.125C12.3806 99.2997 13.8603 97.8323 15.6731 97.8323H164.367C166.155 97.8323 167.635 99.2874 167.66 101.063L167.758 105.872H12.3806Z" fill="white" /> <path d="M164.367 98.1405C165.983 98.1405 167.327 99.46 167.351 101.075L167.438 105.576H12.6765V101.137C12.6765 99.4846 14.0207 98.1528 15.6608 98.1528H164.355M164.355 97.5363H15.6608C13.663 97.5363 12.0599 99.1517 12.0599 101.137V106.193H168.067L167.968 101.063C167.931 99.1024 166.328 97.5239 164.367 97.5239L164.355 97.5363Z" fill="black" /> <path d="M18.8176 103.406C19.6758 103.406 20.3714 102.71 20.3714 101.852C20.3714 100.994 19.6758 100.299 18.8176 100.299C17.9595 100.299 17.2639 100.994 17.2639 101.852C17.2639 102.71 17.9595 103.406 18.8176 103.406Z" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M24.7491 103.406C25.6072 103.406 26.3029 102.71 26.3029 101.852C26.3029 100.994 25.6072 100.299 24.7491 100.299C23.891 100.299 23.1953 100.994 23.1953 101.852C23.1953 102.71 23.891 103.406 24.7491 103.406Z" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M30.6806 103.406C31.5387 103.406 32.2344 102.71 32.2344 101.852C32.2344 100.994 31.5387 100.299 30.6806 100.299C29.8225 100.299 29.1268 100.994 29.1268 101.852C29.1268 102.71 29.8225 103.406 30.6806 103.406Z" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M23.8242 18.6143H15.9443V26.4941H23.8242V18.6143Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M8.70575 0.2771H4.513V4.46983H8.70575V0.2771Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M4.51299 82.615H0.320251V86.8077H4.51299V82.615Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M141.061 110.867V149.761" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M151.135 3.60669H130.998V15.9506H151.135V3.60669Z" fill="var(--page-background)" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M122.81 3.60669H159.324" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M50.5468 110.867H19.8042C18.4012 110.867 17.2639 112.004 17.2639 113.407V141.498C17.2639 142.901 18.4012 144.039 19.8042 144.039H50.5468C51.9498 144.039 53.0871 142.901 53.0871 141.498V113.407C53.0871 112.004 51.9498 110.867 50.5468 110.867Z" fill="#8514F5" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <mask id="mask1_33_1913" style="mask-type: luminance;" maskUnits="userSpaceOnUse" x="123"
{ "end_byte": 9657, "start_byte": 4857, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/dependency_injection.svg" }
angular/adev/src/assets/images/dependency_injection.svg_9658_13214
y="16" width="36" height="95" > <path d="M127.409 16.1602H154.724C156.746 16.1602 158.399 17.8003 158.399 19.835V106.97C158.399 108.992 156.759 110.645 154.724 110.645H127.409C125.387 110.645 123.735 109.005 123.735 106.97V19.835C123.735 17.8126 125.375 16.1602 127.409 16.1602Z" fill="white" /> </mask> <g mask="url(#mask1_33_1913)"> <path d="M189.178 57.5574H101.686V120.473H189.178V57.5574Z" fill="#E90464" /> </g> <path d="M127.409 16.1602H154.724C156.746 16.1602 158.399 17.8003 158.399 19.835V106.97C158.399 108.992 156.759 110.645 154.724 110.645H127.409C125.387 110.645 123.735 109.005 123.735 106.97V19.835C123.735 17.8126 125.375 16.1602 127.409 16.1602Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M158.399 26.6914H151.135" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M158.399 31.7842H151.135" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M158.399 36.865H151.135" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M158.399 41.9578H151.135" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M158.399 47.0508H151.135" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M158.399 52.1313H151.135" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M158.399 57.2244H151.135" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M158.399 62.3049H151.135" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M158.399 67.3979H151.135" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M158.399 72.4785H151.135" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M158.399 77.5715H151.135" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M158.399 82.6521H151.135" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M158.399 87.7451H151.135" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M158.399 92.8257H151.135" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M158.399 97.9185H151.135" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M147.535 213.416H143.342V217.609H147.535V213.416Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M151.135 3.60669H130.998V15.9506H151.135V3.60669Z" fill="var(--page-background)" stroke="var(--secondary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <g style="mix-blend-mode: multiply;"> <path d="M117.532 199.901L130.949 198.865L106.261 185.226L113.08 212.59L117.532 199.901Z" fill="var(--senary-contrast)" /> </g> <path d="M113.684 196.053L127.101 195.018L102.413 181.391L109.233 208.755L113.684 196.053Z" fill="white" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> </svg>
{ "end_byte": 13214, "start_byte": 9658, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/dependency_injection.svg" }
angular/adev/src/assets/images/routing.svg_0_4073
<svg width="226" height="272" viewBox="0 0 226 272" fill="none" xmlns="http://www.w3.org/2000/svg" class="routing-svg" > <path d="M37.2906 46.6111H184.604V68.2037H37.2906V84.9254V87.5397H184.604V103.805H37.2906V120.514V120.958H184.604V140.639H37.2906V162.577" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M34.2201 161.677L37.2907 167.004L40.3612 161.677H34.2201Z" fill="var(--primary-contrast)" /> <path d="M6.42464 179.595H151.419C154.293 179.595 156.623 181.926 156.623 184.799V265.928C156.623 268.802 154.293 271.132 151.419 271.132H6.42464C3.55138 271.132 1.23303 268.802 1.23303 265.941V184.811C1.23303 181.938 3.5637 179.607 6.43696 179.607L6.42464 179.595Z" fill="white" /> <path d="M151.419 179.903C154.12 179.903 156.315 182.098 156.315 184.799V265.928C156.315 268.629 154.12 270.824 151.419 270.824H6.42469C3.72408 270.824 1.52905 268.629 1.52905 265.928V184.799C1.52905 182.098 3.72408 179.903 6.42469 179.903H151.419ZM151.419 179.287H6.42469C3.37879 179.287 0.912476 181.753 0.912476 184.799V265.928C0.912476 268.974 3.37879 271.441 6.42469 271.441H151.419C154.465 271.441 156.932 268.974 156.932 265.928V184.799C156.932 181.753 154.465 179.287 151.419 179.287Z" fill="var(--primary-contrast)" /> <path d="M1.30701 187.623H76.2953V271.034H6.65891C3.71166 271.034 1.30701 268.641 1.30701 265.682V187.61V187.623Z" fill="#EFEFF1" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M1.23309 187.647V182.9C1.23309 181.087 2.71289 179.607 4.52563 179.607H153.22C155.008 179.607 156.488 181.062 156.512 182.838L156.611 187.647H1.22076H1.23309Z" fill="white" /> <path d="M153.22 179.903C154.835 179.903 156.179 181.223 156.204 182.838L156.29 187.339H1.52905V182.9C1.52905 181.247 2.87319 179.916 4.51329 179.916H153.207M153.207 179.299H4.51329C2.51558 179.299 0.912476 180.914 0.912476 182.9V187.956H156.919L156.821 182.826C156.784 180.865 155.181 179.287 153.22 179.287L153.207 179.299Z" fill="black" /> <path d="M37.2906 226.788C43.5427 226.788 48.611 221.72 48.611 215.467C48.611 209.215 43.5427 204.147 37.2906 204.147C31.0385 204.147 25.9702 209.215 25.9702 215.467C25.9702 221.72 31.0385 226.788 37.2906 226.788Z" fill="#F637E3" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M37.2906 217.12C39.5245 217.12 41.3354 215.309 41.3354 213.075C41.3354 210.841 39.5245 209.03 37.2906 209.03C35.0568 209.03 33.2458 210.841 33.2458 213.075C33.2458 215.309 35.0568 217.12 37.2906 217.12Z" fill="white" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M37.2906 219.685C34.7257 219.685 29.7807 221.017 29.2628 223.446C31.3098 225.518 34.1584 226.8 37.2906 226.8C40.4228 226.8 43.2714 225.518 45.3185 223.446C44.7882 221.017 39.8309 219.685 37.2906 219.685Z" fill="white" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M7.67011 185.181C8.52824 185.181 9.22389 184.485 9.22389 183.627C9.22389 182.769 8.52824 182.074 7.67011 182.074C6.81198 182.074 6.11633 182.769 6.11633 183.627C6.11633 184.485 6.81198 185.181 7.67011 185.181Z" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M13.6016 185.181C14.4598 185.181 15.1554 184.485 15.1554 183.627C15.1554 182.769 14.4598 182.074 13.6016 182.074C12.7435 182.074 12.0479 182.769 12.0479 183.627C12.0479 184.485 12.7435 185.181 13.6016 185.181Z" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M48.9933 250.686H15.7104V252.018H48.9933V250.686Z" fill="white" /> <path d="M48.685 250.995V251.722H16.0187V250.995H48.685ZM49.3016 250.378H15.4021V252.339H49.3016V250.378Z" fill="black" /> <path d="M58.8708 244.262H15.7103V245.594H58.8708V244.262Z" fill="white" /> <path d="M58.5626 244.57V245.298H16.0063V244.57H58.5626ZM59.1792 243.953H15.3898V245.914H59.1792V243.953Z" fill="black" /> <path
{ "end_byte": 4073, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/routing.svg" }
angular/adev/src/assets/images/routing.svg_4074_7919
d="M58.8708 237.849H15.7103V239.181H58.8708V237.849Z" fill="white" /> <path d="M58.5626 238.158V238.885H16.0063V238.158H58.5626ZM59.1792 237.541H15.3898V239.502H59.1792V237.541Z" fill="black" /> <path d="M19.5331 185.181C20.3913 185.181 21.0869 184.485 21.0869 183.627C21.0869 182.769 20.3913 182.074 19.5331 182.074C18.675 182.074 17.9794 182.769 17.9794 183.627C17.9794 184.485 18.675 185.181 19.5331 185.181Z" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M32.8389 19.0624H24.959V26.9423H32.8389V19.0624Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10"black /> <path d="M17.7204 0.725342H13.5276V4.91808H17.7204V0.725342Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M13.5277 83.0633H9.33496V87.256H13.5277V83.0633Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M157.745 62.5066C157.745 56.0572 152.32 50.8779 145.796 51.2848C140.185 51.6301 135.623 56.1928 135.277 61.8037C135.203 63.1108 135.339 64.381 135.684 65.5771C135.919 66.428 136.264 67.2296 136.683 67.9818L136.732 68.0805C136.732 68.0805 136.732 68.0928 136.732 68.1051L145.291 83.5812C145.821 84.5308 147.177 84.5308 147.708 83.5812L156.327 67.9941C157.228 66.3787 157.745 64.5166 157.745 62.5312V62.5066ZM146.499 66.8843C144.329 66.8843 142.578 65.1332 142.578 62.9628C142.578 60.7925 144.329 59.0414 146.499 59.0414C148.669 59.0414 150.42 60.7925 150.42 62.9628C150.42 65.1332 148.669 66.8843 146.499 66.8843Z" fill="#F11653" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M81.1171 113.744C81.1171 107.295 75.6912 102.116 69.1554 102.523C63.5446 102.868 58.9819 107.43 58.6366 113.041C58.5626 114.348 58.6982 115.619 59.0435 116.815C59.2778 117.666 59.6231 118.467 60.0424 119.219L60.0917 119.318C60.0917 119.318 60.0917 119.33 60.0917 119.343L68.6498 134.819C69.1801 135.768 70.5366 135.768 71.0668 134.819L79.6866 119.232C80.5868 117.616 81.1047 115.754 81.1047 113.769L81.1171 113.744ZM69.8707 118.122C67.7003 118.122 65.9492 116.371 65.9492 114.201C65.9492 112.03 67.7003 110.279 69.8707 110.279C72.041 110.279 73.7921 112.03 73.7921 114.201C73.7921 116.371 72.041 118.122 69.8707 118.122Z" fill="#F637E3" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M92.3635 21.1465C92.3635 14.697 86.9376 9.51779 80.4018 9.92473C74.791 10.27 70.2283 14.8327 69.883 20.4436C69.809 21.7507 69.9446 23.0209 70.2899 24.217C70.5242 25.0679 70.8695 25.8695 71.2888 26.6217L71.3381 26.7203C71.3381 26.7203 71.3381 26.7327 71.3381 26.745L79.8962 42.2211C80.4265 43.1707 81.783 43.1707 82.3132 42.2211L90.933 26.634C91.8332 25.0186 92.3511 23.1565 92.3511 21.1711L92.3635 21.1465ZM81.1171 25.5242C78.9467 25.5242 77.1956 23.7731 77.1956 21.6027C77.1956 19.4324 78.9467 17.6813 81.1171 17.6813C83.2874 17.6813 85.0385 19.4324 85.0385 21.6027C85.0385 23.7731 83.2874 25.5242 81.1171 25.5242Z" fill="#5C44E4" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M173.172 237.553H178.006V232.719H173.172V237.553Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M186.848 268.037H196.035V258.85H186.848V268.037Z" stroke="var(--primary-contrast)" stroke-width="0.5" stroke-miterlimit="10" /> <g style="mix-blend-mode: multiply;"> <path d="M193.667 120.342H128.298C119.178 120.342 111.786 127.734 111.786 136.854V207.625C111.786 216.744 119.178 224.137 128.298 224.137H193.667C202.787 224.137 210.179 216.744 210.179 207.625V136.854C210.179 127.734 202.787 120.342 193.667 120.342Z" fill="var(--senary-contrast)" /> </g> <path
{ "end_byte": 7919, "start_byte": 4074, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/routing.svg" }
angular/adev/src/assets/images/routing.svg_7920_9381
d="M213.854 110.254H131.565C125.143 110.254 119.937 115.461 119.937 121.883V204.172C119.937 210.594 125.143 215.8 131.565 215.8H213.854C220.276 215.8 225.483 210.594 225.483 204.172V121.883C225.483 115.461 220.276 110.254 213.854 110.254Z" fill="#8514F5" stroke="black" stroke-width="0.5" stroke-miterlimit="10" /> <path d="M193.285 184.984H142.331C140.642 184.984 139.26 183.603 139.26 181.913V161.652C139.26 159.963 140.642 158.582 142.331 158.582H196.664V144.462H139.273V138.321H199.735C201.424 138.321 202.805 139.702 202.805 141.392V161.652C202.805 163.342 201.424 164.723 199.735 164.723H145.402V178.843H193.285V169.15L206.048 181.913L193.285 194.676V184.984Z" fill="white" /> <path d="M199.722 138.642C201.239 138.642 202.484 139.875 202.484 141.404V161.665C202.484 163.182 201.251 164.427 199.722 164.427H145.081V179.163H193.581V169.902L202.657 178.978L205.592 181.913L193.581 193.924V184.663H142.319C140.802 184.663 139.556 183.43 139.556 181.901V161.64C139.556 160.123 140.79 158.878 142.319 158.878H196.96V144.142H139.569V138.617H199.722M199.722 138H138.952V144.758H196.343V158.261H142.319C140.457 158.261 138.94 159.778 138.94 161.64V181.901C138.94 183.763 140.457 185.28 142.319 185.28H192.964V195.404L206.468 181.901L203.089 178.522L192.964 168.398V178.522H145.698V165.019H199.722C201.584 165.019 203.101 163.502 203.101 161.64V141.379C203.101 139.517 201.584 138 199.722 138Z" fill="black" /> </svg>
{ "end_byte": 9381, "start_byte": 7920, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/routing.svg" }
angular/adev/src/assets/images/guide/inputs-outputs/input-output-diagram.svg_0_4608
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 800 333" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;"><g id="Input-and-Output-Diagram" serif:id="Input and Output Diagram"><g transform="matrix(1.18142,0,0,1.18142,6.5,138.629)"><text x="0px" y="10.592px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:14.787px;">&lt;app-input-output [</text><text x="124.552px" y="10.592px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:14.787px;fill:#df002d;">item</text><text x="152.488px" y="10.592px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:14.787px;">]=&quot;</text><text x="170.481px" y="10.592px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:14.787px;fill:#3345cc;">currentItem</text><text x="245.263px" y="10.592px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:14.787px;">&quot; (</text><text x="259.545px" y="10.592px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:14.787px;fill:#df002d;">deleteRequest</text><text x="354.913px" y="10.592px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:14.787px;">)=&quot;</text><text x="373.722px" y="10.592px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:14.787px;fill:#3345cc;">crossOf<tspan x="424.395px 428.503px " y="10.592px 10.592px ">fI</tspan>tem($event)</text><text x="511.509px" y="10.592px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:14.787px;">&quot;&gt;&lt;/app-input-output&gt;</text></g><path d="M175.345,220.489l-10.085,-0.151l0.612,-40.853l-9.364,-0.141l14.622,-14.191l14.192,14.623l-9.365,-0.14l-0.612,40.853Z" style="fill:#df002d;"/><path d="M379.426,215.483l-10.251,0.016l-0.053,-35.115l-9.519,0.015l14.622,-14.666l14.666,14.621l-9.519,0.015l0.054,35.114Z" style="fill:#df002d;"/><path d="M519.758,82.024l10.25,-0.078l0.267,35.114l9.518,-0.072l-14.532,14.754l-14.754,-14.532l9.518,-0.072l-0.267,-35.114Z" style="fill:#3345cc;"/><path d="M255.001,83.973l10.251,0.023l-0.077,35.114l9.519,0.021l-14.676,14.612l-14.612,-14.676l9.519,0.021l0.076,-35.115Z" style="fill:#3345cc;"/><path d="M91.445,112.213l4.304,0l0,12.588l3.996,0l-6.148,6.148l-6.148,-6.148l3.996,0l0,-12.588Z"/><g transform="matrix(1,0,0,1,14,-198)"><text x="60.505px" y="279px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:18px;">child</text><text x="47.501px" y="300.23px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:18px;">selector</text></g><path d="M243,223.06c0,-1.137 -0.923,-2.06 -2.06,-2.06l-133.88,0c-1.137,0 -2.06,0.923 -2.06,2.06l0,81.88c0,1.137 0.923,2.06 2.06,2.06l133.88,0c1.137,0 2.06,-0.923 2.06,-2.06l0,-81.88Z" style="fill:#fff;stroke:#df002d;stroke-width:1px;"/><path d="M593.648,40.883c0,-0.846 -0.687,-1.534 -1.533,-1.534l-134.934,0c-0.846,0 -1.533,0.688 -1.533,1.534l0,60.933c0,0.846 0.687,1.533 1.533,1.533l134.934,0c0.846,0 1.533,-0.687 1.533,-1.533l0,-60.933Z" style="fill:#fff;stroke:#3345cc;stroke-width:1px;"/><path d="M328.287,41.263c0,-0.833 -0.676,-1.51 -1.509,-1.51l-133.982,0c-0.833,0 -1.509,0.677 -1.509,1.51l0,59.981c0,0.833 0.676,1.509 1.509,1.509l133.982,0c0.833,0 1.509,-0.676 1.509,-1.509l0,-59.981Z" style="fill:#fff;stroke:#3345cc;stroke-width:1px;"/><path d="M446.641,223.679c0,-1.137 -0.923,-2.061 -2.06,-2.061l-133.879,0c-1.137,0 -2.061,0.924 -2.061,2.061l0,81.879c0,1.137 0.924,2.06 2.061,2.06l133.879,0c1.137,0 2.06,-0.923 2.06,-2.06l0,-81.879Z" style="fill:#fff;stroke:#df002d;stroke-width:1px;"/><g><rect x="135.42" y="198.938" width="74" height="33" style="fill:#fff;stroke:#df002d;stroke-width:1px;"/><text x="147.535px" y="221.534px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:20px;">target</text></g><g><rect x="341.42" y="199.938" width="74" height="33" style="fill:#fff;stroke:#df002d;stroke-width:1px;"/><text x="348.535px" y="222.534px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:20px;">source</text></g><g><rect x="486.42" y="14.938" width="74" height="33" style="fill:#fff;stroke:#3345cc;stroke-width:1px;"/><text x="497.535px" y="37.534px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:20px;">target</text></g><g id="source"><rect x="226.42" y="14.938" width="74" height="33" style="fill:#fff;stroke:#3345cc;stroke-width:1px;"/><text x="233.535px" y="37.534px"
{ "end_byte": 4608, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/guide/inputs-outputs/input-output-diagram.svg" }
angular/adev/src/assets/images/guide/inputs-outputs/input-output-diagram.svg_4609_6043
style="font-family:'ArialMT', 'Arial', sans-serif;font-size:20px;">source</text></g><g transform="matrix(1,0,0,1,93.8495,-23.5102)"><text x="39.962px" y="279px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:20px;">@Input()</text><text x="19.552px" y="300.23px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:20px;">property from</text><text x="58.448px" y="321.46px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:20px;">child</text></g><g transform="matrix(1,0,0,1,297.243,-23.6136)"><text x="32.184px" y="279px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:20px;">@Output()</text><text x="31.773px" y="300.23px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:20px;">event from</text><text x="58.448px" y="321.46px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:20px;">child</text></g><g transform="matrix(1,0,0,1,445.42,-208.691)"><text x="22.882px" y="279px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:20px;">handler from</text><text x="50.66px" y="300.23px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:20px;">parent</text></g><g transform="matrix(1,0,0,1,180.035,-208.181)"><text x="19.552px" y="279px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:20px;">property from</text><text x="50.66px" y="300.23px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:20px;">parent</text></g></g></svg>
{ "end_byte": 6043, "start_byte": 4609, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/guide/inputs-outputs/input-output-diagram.svg" }
angular/adev/src/assets/images/guide/inputs-outputs/input-diagram-target-source.svg_0_3536
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 502 304" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;"><g id="Input-Diagram" serif:id="Input Diagram"><g><path d="M71.445,103.213l4.304,0l0,12.588l3.996,0l-6.148,6.148l-6.148,-6.148l3.996,0l0,-12.588Z"/><g transform="matrix(1,0,0,1,-6,-207)"><text x="60.505px" y="279px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:18px;">child</text><text x="47.501px" y="300.23px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:18px;">selector</text></g></g><g><path d="M177.039,211.489l-10.085,-0.151l0.612,-40.853l-9.364,-0.141l14.622,-14.191l14.192,14.623l-9.365,-0.14l-0.612,40.853Z" style="fill:#df002d;"/><path d="M244.694,214.06c0,-1.137 -0.923,-2.06 -2.06,-2.06l-133.88,0c-1.137,0 -2.06,0.923 -2.06,2.06l0,81.88c0,1.137 0.923,2.06 2.06,2.06l133.88,0c1.137,0 2.06,-0.923 2.06,-2.06l0,-81.88Z" style="fill:#fff;stroke:#df002d;stroke-width:1px;"/><g transform="matrix(1,0,0,1,95.5434,-32.5102)"><text x="39.962px" y="279px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:20px;">@Input()</text><text x="19.552px" y="300.23px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:20px;">property from</text><text x="58.448px" y="321.46px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:20px;">child</text></g><g><rect x="137.114" y="189.938" width="74" height="33" style="fill:#fff;stroke:#df002d;stroke-width:1px;"/><text x="149.229px" y="212.534px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:20px;">target</text></g></g><g><path d="M265.001,74.973l10.251,0.023l-0.077,35.114l9.519,0.021l-14.676,14.612l-14.612,-14.676l9.519,0.021l0.076,-35.115Z" style="fill:#3345cc;"/><path d="M341.287,32.263c0,-0.833 -0.676,-1.51 -1.509,-1.51l-133.982,0c-0.833,0 -1.509,0.677 -1.509,1.51l0,59.981c0,0.833 0.676,1.509 1.509,1.509l133.982,0c0.833,0 1.509,-0.676 1.509,-1.509l0,-59.981Z" style="fill:#fff;stroke:#3345cc;stroke-width:1px;"/><g id="source"><rect x="236.42" y="5.938" width="74" height="33" style="fill:#fff;stroke:#3345cc;stroke-width:1px;"/><text x="243.535px" y="28.534px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:20px;">source</text></g><g transform="matrix(1,0,0,1,193.035,-217.181)"><text x="19.552px" y="279px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:20px;">property from</text><text x="50.66px" y="300.23px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:20px;">parent</text></g></g><g transform="matrix(1.3525,0,0,1.3525,1,129.629)"><text x="0px" y="10.592px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:14.787px;">&lt;app-item-detail [</text><text x="114.66px" y="10.592px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:14.787px;fill:#df002d;">item</text><text x="142.596px" y="10.592px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:14.787px;">]=&quot;</text><text x="160.589px" y="10.592px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:14.787px;fill:#3345cc;">currentItem</text><text x="235.371px" y="10.592px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:14.787px;">&quot;&gt;&lt;/app-item-detail&gt;</text></g></g></svg>
{ "end_byte": 3536, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/guide/inputs-outputs/input-diagram-target-source.svg" }
angular/adev/src/assets/images/guide/inputs-outputs/input.svg_0_1788
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 671 346" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><g><use xlink:href="#_Image1" x="11.08" y="148.193" width="248.853px" height="182.853px" transform="matrix(0.999408,0,0,0.999194,0,0)"/><path d="M255,161.679c0,-4.79 -3.889,-8.679 -8.679,-8.679l-221.642,0c-4.79,0 -8.679,3.889 -8.679,8.679l0,155.642c0,4.79 3.889,8.679 8.679,8.679l221.642,0c4.79,0 8.679,-3.889 8.679,-8.679l0,-155.642Z" style="fill:#fff;"/><use xlink:href="#_Image1" x="414.233" y="151.868" width="248.853px" height="182.853px" transform="matrix(0.999408,0,0,0.999194,0,0)"/><path d="M657.914,165.351c0,-4.791 -3.889,-8.68 -8.679,-8.68l-221.642,0c-4.79,0 -8.679,3.889 -8.679,8.68l0,155.641c0,4.79 3.889,8.679 8.679,8.679l221.642,0c4.79,0 8.679,-3.889 8.679,-8.679l0,-155.641Z" style="fill:#fff;"/><text x="229px" y="65px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:64px;">@Input</text><text x="277.507px" y="209.157px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:30px;">data flow</text><text x="38.186px" y="258.279px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:64px;">Parent</text><text x="462.393px" y="258.536px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:64px;">Child</text><path d="M277,248.7l0,-15.4l99,0l0,-14.3l22,22l-22,22l0,-14.3l-99,0Z" style="fill:#1976d2;"/></g><defs><image id="_Image1" width="249px" height="183px" xlink:href=""/></defs></svg>
{ "end_byte": 1788, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/guide/inputs-outputs/input.svg" }
angular/adev/src/assets/images/guide/inputs-outputs/output.svg_0_1787
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 666 340" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><g><use xlink:href="#_Image1" x="7.078" y="144.19" width="248.853px" height="182.853px" transform="matrix(0.999408,0,0,0.999194,0,0)"/><path d="M251,157.679c0,-4.79 -3.889,-8.679 -8.679,-8.679l-221.642,0c-4.79,0 -8.679,3.889 -8.679,8.679l0,155.642c0,4.79 3.889,8.679 8.679,8.679l221.642,0c4.79,0 8.679,-3.889 8.679,-8.679l0,-155.642Z" style="fill:#fff;"/><use xlink:href="#_Image1" x="410.231" y="147.864" width="248.853px" height="182.853px" transform="matrix(0.999408,0,0,0.999194,0,0)"/><path d="M653.914,161.351c0,-4.791 -3.889,-8.68 -8.679,-8.68l-221.642,0c-4.79,0 -8.679,3.889 -8.679,8.68l0,155.641c0,4.79 3.889,8.679 8.679,8.679l221.642,0c4.79,0 8.679,-3.889 8.679,-8.679l0,-155.641Z" style="fill:#fff;"/><text x="194px" y="61px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:64px;">@Output</text><text x="273.507px" y="205.157px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:30px;">data flow</text><text x="38.186px" y="254.279px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:64px;">Parent</text><text x="458.393px" y="254.536px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:64px;">Child</text><path d="M394,229.3l0,15.4l-99,0l0,14.3l-22,-22l22,-22l0,14.3l99,0Z" style="fill:#1976d2;"/></g><defs><image id="_Image1" width="249px" height="183px" xlink:href=""/></defs></svg>
{ "end_byte": 1787, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/guide/inputs-outputs/output.svg" }
angular/adev/src/assets/images/guide/providers/any-provider.svg_0_137
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
{ "end_byte": 137, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/guide/providers/any-provider.svg" }
angular/adev/src/assets/images/guide/providers/any-provider.svg_138_6636
<svg xmlns="http://www.w3.org/2000/svg" style="background-color: rgb(255, 255, 255);" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="607px" height="389px" viewBox="-0.5 -0.5 607 389"><defs/><g><rect x="0" y="32" width="605" height="130" fill="#f0f0f0" stroke="#000000" pointer-events="all"/><rect x="0" y="2" width="410" height="20" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 408px; height: 1px; padding-top: 12px; margin-left: 2px;"><div style="box-sizing: border-box; font-size: 0; text-align: left; "><div style="display: inline-block; font-size: 20px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; word-wrap: normal; ">Eagerly Loaded Modules</div></div></div></foreignObject><text x="2" y="18" fill="#000000" font-family="Helvetica" font-size="20px" font-weight="bold">Eagerly Loaded Modules</text></switch></g><rect x="379" y="72" width="200" height="50" fill="#cce5ff" stroke="#000000" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 198px; height: 1px; padding-top: 97px; margin-left: 380px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 19px; font-family: Arial; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">UserService</div></div></div></foreignObject><text x="479" y="103" fill="#000000" font-family="Arial" font-size="19px" text-anchor="middle">UserService</text></switch></g><path d="M 336.5 94.21 L 336.5 101.11 L 256.04 101.11 L 256.04 111.61 L 237.5 97.66 L 256.04 83.71 L 256.04 94.21 Z" fill="#007fff" stroke="none" pointer-events="all"/><rect x="0" y="217" width="605" height="80" fill="#f0f0f0" stroke="#000000" pointer-events="all"/><rect x="25" y="237" width="170" height="40" fill="#ffffff" stroke="#000000" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 168px; height: 1px; padding-top: 257px; margin-left: 26px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 17px; font-family: Arial; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">EmployeeModule</div></div></div></foreignObject><text x="110" y="262" fill="#000000" font-family="Arial" font-size="17px" text-anchor="middle">EmployeeModule</text></switch></g><rect x="379" y="232" width="200" height="50" fill="#cce5ff" stroke="#000000" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 198px; height: 1px; padding-top: 257px; margin-left: 380px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 19px; font-family: Arial; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">UserService</div></div></div></foreignObject><text x="479" y="263" fill="#000000" font-family="Arial" font-size="19px" text-anchor="middle">UserService</text></switch></g><path d="M 336.5 253.21 L 336.5 260.11 L 256.04 260.11 L 256.04 270.61 L 237.5 256.66 L 256.04 242.71 L 256.04 253.21 Z" fill="#007fff" stroke="none" pointer-events="all"/><rect x="25" y="52" width="170" height="40" fill="#ffffff" stroke="#000000" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 168px; height: 1px; padding-top: 72px; margin-left: 26px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 17px; font-family: Arial; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">AppModule</div></div></div></foreignObject><text x="110" y="77" fill="#000000" font-family="Arial" font-size="17px" text-anchor="middle">AppModule</text></switch></g><rect x="25" y="102" width="170" height="40" fill="#ffffff" stroke="#000000" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 168px; height: 1px; padding-top: 122px; margin-left: 26px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 17px; font-family: Arial; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">ProductModule</div></div></div></foreignObject><text x="110" y="127" fill="#000000" font-family="Arial" font-size="17px" text-anchor="middle">ProductModule</text></switch></g><rect x="0" y="308" width="605" height="80" fill="#f0f0f0" stroke="#000000" pointer-events="all"/><rect x="25" y="328" width="170" height="40" fill="#ffffff" stroke="#000000"
{ "end_byte": 6636, "start_byte": 138, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/guide/providers/any-provider.svg" }
angular/adev/src/assets/images/guide/providers/any-provider.svg_6637_9873
pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 168px; height: 1px; padding-top: 348px; margin-left: 26px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 17px; font-family: Arial; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">DepartmentModule</div></div></div></foreignObject><text x="110" y="353" fill="#000000" font-family="Arial" font-size="17px" text-anchor="middle">DepartmentModule</text></switch></g><rect x="379" y="323" width="200" height="50" fill="#cce5ff" stroke="#000000" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 198px; height: 1px; padding-top: 348px; margin-left: 380px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 19px; font-family: Arial; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">UserService</div></div></div></foreignObject><text x="479" y="354" fill="#000000" font-family="Arial" font-size="19px" text-anchor="middle">UserService</text></switch></g><path d="M 336.5 344.21 L 336.5 351.11 L 256.04 351.11 L 256.04 361.61 L 237.5 347.66 L 256.04 333.71 L 256.04 344.21 Z" fill="#007fff" stroke="none" pointer-events="all"/><rect x="0" y="187" width="410" height="20" fill="none" stroke="none" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 408px; height: 1px; padding-top: 197px; margin-left: 2px;"><div style="box-sizing: border-box; font-size: 0; text-align: left; "><div style="display: inline-block; font-size: 20px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; word-wrap: normal; ">Lazy Loaded Modules</div></div></div></foreignObject><text x="2" y="203" fill="#000000" font-family="Helvetica" font-size="20px" font-weight="bold">Lazy Loaded Modules</text></switch></g></g><switch><g requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"/><a transform="translate(0,-5)" xlink:href="https://desk.draw.io/support/solutions/articles/16000042487" target="_blank"><text text-anchor="middle" font-size="10px" x="50%" y="100%">Viewer does not support full SVG 1.1</text></a></switch></svg>
{ "end_byte": 9873, "start_byte": 6637, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/guide/providers/any-provider.svg" }
angular/adev/src/assets/images/guide/template-syntax/syntax-diagram.svg_0_2036
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 600 125" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;"><g transform="matrix(0.469484,0,0,0.469925,-158.685,-184.211)"><text x="374px" y="472px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:64px;">&lt;button</text><text x="607.094px" y="472px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:64px;fill:#df002d;">(click)</text><text x="774.156px" y="472px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:64px;">=&quot;</text><text x="834.25px" y="472px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:64px;fill:#0022be;">onSave()</text><text x="1093.94px" y="472px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:64px;">&quot;&gt;Save&lt;/button&gt;</text></g><path d="M142.827,95.824l-6.663,-3.032l17.828,-39.26l-6.187,-2.815l13.842,-5.191l5.195,13.852l-6.187,-2.815l-17.828,39.261Z" style="fill:#df002d;"/><path d="M337.08,93.548l-6.915,2.399l-13.342,-38.531l-6.422,2.228l6.458,-13.308l13.3,6.453l-6.421,2.228l13.342,38.531Z" style="fill:#3345cc;"/><g><rect x="23.005" y="76.128" width="197.653" height="31.485" style="fill:#fff;stroke:#000;stroke-width:0.7px;"/><text x="31.989px" y="98.214px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:22.556px;fill:#df002d;">target even<tspan x="144.743px " y="98.214px ">t</tspan> name</text></g><g><rect x="275.117" y="76.128" width="228.169" height="31.955" style="fill:#fff;stroke:#000;stroke-width:0.7px;"/><text x="293.078px" y="98.214px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:22.556px;fill:#3345cc;">template st<tspan x="403.3px " y="98.214px ">a</tspan>tement</text></g></svg>
{ "end_byte": 2036, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/guide/template-syntax/syntax-diagram.svg" }
angular/adev/src/assets/images/guide/http/interceptor-order.svg_0_1417
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 54 94" width="300"> <style> #interceptor-exec-order { fill: none; stroke: black; stroke-width: .3; } #interceptor-exec-order > text { dominant-baseline: central; fill: black; font-size: 4px; font-weight: lighter; letter-spacing: .2px; text-anchor: middle; } #interceptor-exec-order > .dashed { stroke-dasharray: 2 1; } </style> <defs> <rect id="textbox" x="2" width="50" height="10" rx="2" /> <path id="arrow" d="M12,0 v10 l-2,-4 m2,4 l2,-4" /> <g id="arrows"> <use href="#arrow" /> <use href="#arrow" style="transform: rotateZ(180deg); transform-origin: 27px 5px;" /> </g> </defs> <g id="interceptor-exec-order"> <text x="27" y="7">HttpClient</text> <use href="#textbox" y="02" class="dashed" /> <use href="#arrows" y="12" class="dashed" /> <text x="27" y="27">AuthInterceptor</text> <use href="#textbox" y="22" /> <use href="#arrows" y="32" /> <text x="27" y="47">LoggingInterceptor</text> <use href="#textbox" y="42" /> <use href="#arrows" y="52" /> <text x="27" y="67">HttpBackend</text> <use href="#textbox" y="62" /> <use href="#arrows" y="72" class="dashed" /> <text x="27" y="87">Server</text> <use href="#textbox" y="82" class="dashed" /> </g> </svg>
{ "end_byte": 1417, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/guide/http/interceptor-order.svg" }
angular/adev/src/assets/images/guide/dependency-injection/injectors.svg_0_2926
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 600 445" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;"><g id="NullInjector"><rect x="11.864" y="16.952" width="575.424" height="114.429" style="fill:#fff;stroke:#0159d3;stroke-width:3.81px;"/><text x="208.488px" y="67.96px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:30.514px;">NullInjector()</text><g transform="matrix(0.847458,0,0,0.847619,-81.3559,-80.5238)"><text x="286.27px" y="212px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:24px;">always throws an error unless</text><text x="334.768px" y="236.785px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:24px;">you use @Optional()</text></g></g><path d="M286.822,144.941l-7.161,0l11.017,-11.017l11.017,11.017l-7.161,0l0,38.992l-7.712,0l0,-38.992Z" style="fill:#0159d3;stroke:#0159d3;stroke-width:3.81px;"/><path d="M286.822,297.512l-7.161,0l11.017,-11.017l11.017,11.017l-7.161,0l0,38.993l-7.712,0l0,-38.993Z" style="fill:#0159d3;stroke:#0159d3;stroke-width:3.81px;"/><g id="Moduleinjector"><rect x="11.864" y="168.913" width="575.424" height="114.429" style="fill:#fff;stroke:#0159d3;stroke-width:3.81px;"/><text x="215.313px" y="211.956px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:25.429px;">ModuleInjector</text><g transform="matrix(0.847458,0,0,0.847619,-24.5763,-79.6762)"><text x="215.592px" y="385px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:24px;">(configured by PlatformModule)</text><text x="74.879px" y="409.785px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:24px;">has special things like DomSanitizer =&gt; platformBrowser()</text></g></g><g id="root"><rect x="10.599" y="320.428" width="577.966" height="113.581" style="fill:#fff;stroke:#0159d3;stroke-width:3.81px;"/><g transform="matrix(0.847458,0,0,0.847619,-59.3163,262.743)"><text x="280.144px" y="115px" style="font-family:'Courier';font-size:30px;">root</text><text x="370.158px" y="115px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:30px;">ModuleInjector</text></g><g transform="matrix(0.847458,0,0,0.847619,15.5593,-82.219)"><text x="165.889px" y="559px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:24px;">(configured by <tspan x="324.209px 338.014px 351.361px " y="559px 559px 559px ">You</tspan>rAppModule)</text><text x="5.57px" y="583.785px" style="font-family:'ArialMT', 'Arial', sans-serif;font-size:24px;">has things for your app  =&gt; bootstrapModule(Y<tspan x="498.332px 511.68px " y="583.785px 583.785px ">ou</tspan>rAppModule)</text></g></g></svg>
{ "end_byte": 2926, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/guide/dependency-injection/injectors.svg" }
angular/adev/src/assets/images/tutorials/common/idx_logo.svg_0_2295
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"> <g transform="matrix(1,0,0,1,-2.417,0)"> <path d="M20.084,23.5C20.084,22.81 19.524,22.25 18.834,22.25L12.167,22.25C11.477,22.25 10.917,22.81 10.917,23.5C10.917,24.19 11.477,24.75 12.167,24.75L18.834,24.75C19.524,24.75 20.084,24.19 20.084,23.5Z" style="fill:rgb(137,100,232);"/> <path d="M22.583,19.75C22.583,19.06 22.023,18.5 21.333,18.5L20.083,18.5C19.393,18.5 18.833,19.06 18.833,19.75C18.833,20.44 19.393,21 20.083,21L21.333,21C22.023,21 22.583,20.44 22.583,19.75Z" style="fill:rgb(23,184,119);"/> <path d="M17.583,19.75C17.583,19.06 17.023,18.5 16.333,18.5L15.083,18.5C14.393,18.5 13.833,19.06 13.833,19.75C13.833,20.44 14.393,21 15.083,21L16.333,21C17.023,21 17.583,20.44 17.583,19.75Z" style="fill:rgb(23,184,119);"/> <path d="M22.167,16C22.167,15.31 21.607,14.75 20.917,14.75L18,14.75C17.31,14.75 16.75,15.31 16.75,16C16.75,16.69 17.31,17.25 18,17.25L20.917,17.25C21.607,17.25 22.167,16.69 22.167,16Z" style="fill:rgb(255,162,62);"/> <path d="M25.917,16C25.917,15.31 25.357,14.75 24.667,14.75C23.977,14.75 23.417,15.31 23.417,16C23.417,16.69 23.977,17.25 24.667,17.25C25.357,17.25 25.917,16.69 25.917,16Z" style="fill:rgb(255,162,62);"/> <path d="M23,12.25C23,11.56 22.44,11 21.75,11L15.083,11C14.393,11 13.833,11.56 13.833,12.25C13.833,12.94 14.393,13.5 15.083,13.5L21.75,13.5C22.44,13.5 23,12.94 23,12.25Z" style="fill:rgb(37,166,233);"/> <path d="M20.084,8.5C20.084,7.81 19.524,7.25 18.834,7.25L15.917,7.25C15.227,7.25 14.667,7.81 14.667,8.5C14.667,9.19 15.227,9.75 15.917,9.75L18.834,9.75C19.524,9.75 20.084,9.19 20.084,8.5Z" style="fill:rgb(137,100,232);"/> <path d="M13.417,8.5C13.417,7.81 12.857,7.25 12.167,7.25C11.477,7.25 10.917,7.81 10.917,8.5C10.917,9.19 11.477,9.75 12.167,9.75C12.857,9.75 13.417,9.19 13.417,8.5Z" style="fill:rgb(137,100,232);"/> </g> </svg>
{ "end_byte": 2295, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/images/tutorials/common/idx_logo.svg" }
angular/adev/src/assets/icons/safari-pinned-tab.svg_0_2824
<svg height="700pt" preserveAspectRatio="xMidYMid meet" viewBox="0 0 700 700" width="700pt" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(.1 0 0 -.1 0 700)"><path d="m2640 6939c-36-17-114-54-175-81-60-28-175-81-255-118s-185-86-233-109c-49-22-90-41-92-41s-56-25-120-55-171-81-238-112c-67-30-164-75-215-99-52-24-95-44-97-44s-61-27-132-61c-70-33-148-70-173-81s-175-81-335-155c-159-75-307-142-329-151l-38-16 6-135c4-75 9-152 11-171 1-19 6-91 10-160s8-143 10-165 6-89 10-150c3-60 8-132 10-160 2-27 6-102 10-165 3-63 8-131 10-150s7-91 10-160 8-143 10-165 7-89 10-150c3-60 8-137 10-170 5-64 12-176 20-320 3-49 7-117 10-150 2-33 7-107 10-165s8-127 10-155c3-27 7-99 11-160 3-60 7-128 9-150s6-94 10-160 8-140 10-165 7-101 11-170 8-132 10-140c1-8 3-35 4-60l1-45 20 40c45 94 159 336 159 340 0 2 29 65 65 140 36 74 65 137 65 139s31 70 70 151 70 148 70 150c0 1 22 49 49 106 45 98 124 267 204 439 19 41 128 275 242 520s219 470 232 500c14 30 50 106 79 169 30 62 54 115 54 117s32 69 70 150c39 80 70 147 70 149 0 1 22 49 49 106 26 57 59 127 71 154 13 28 49 106 81 174 33 68 59 125 59 126 0 2 29 65 65 140 36 76 65 138 65 140 0 1 25 56 56 121 31 66 76 161 100 212 24 52 44 95 44 97 0 1 23 52 51 111 54 115 93 198 153 327 19 42 32 77 28 77s-36-14-72-31z"/><path d="m4290 6963c0-5 70-160 155-344 182-390 184-395 243-519 24-52 57-123 73-157 41-90 84-183 118-255 16-35 44-97 64-138 230-496 302-651 317-685 10-22 44-94 75-160s80-169 107-230c28-60 79-170 114-244 35-73 64-135 64-136 0-2 21-47 46-102 26-54 89-190 141-303 126-271 156-335 199-427 20-43 62-134 94-203s73-159 92-200c20-41 95-203 168-360s148-316 166-355l33-70 2 50c0 28 2 66 4 85 1 19 5 87 10 150 4 63 8 133 10 155 1 22 6 92 10 155 3 63 8 138 10 165 2 28 6 97 9 155 4 58 8 130 11 160 2 30 7 100 10 155 7 126 14 228 21 330 11 166 13 202 19 290 3 50 7 128 10 175s7 114 10 150c2 36 7 108 10 160s8 120 10 150 7 98 10 150 7 124 10 160c5 70 14 214 20 320 8 136 17 277 21 325 2 28 6 100 10 160 3 61 8 112 9 115 9 15-19 33-130 83-66 30-151 69-190 87-80 38-470 218-560 260-33 15-85 39-115 53s-89 41-130 60-169 78-285 132c-115 53-300 139-410 190-777 361-685 320-685 308z"/><path d="m3480 5065c-12-27-31-72-42-100-11-27-26-63-33-80-13-29-36-84-162-395-30-74-63-153-74-177-10-23-19-45-19-48s-8-25-19-48c-32-73-519-1261-523-1277-3-12 113-14 885-15 489 0 893 2 897 5 7 4-127 345-208 530-6 14-64 153-128 310s-142 348-174 425c-57 139-146 356-287 700-40 99-78 189-82 200-8 17-12 13-31-30z"/><path d="m2096 1746c-20-47-36-87-36-91 0-3-8-25-19-48-10-23-29-67-41-97s-28-68-35-85c-7-16-23-55-35-85s-28-68-35-85c-7-16-29-70-49-120-21-49-44-104-51-122l-14-31 261-149c143-81 276-157 297-168 20-11 288-164 595-339 308-176 564-319 570-319 6 1 178 96 381 213 204 116 390 223 415 237 24 14 202 115 395 225 192 111 366 210 385 220 142 80 140 78 131 101-18 46-320 773-332 800l-12 27h-1367-1368z"/></g></svg>
{ "end_byte": 2824, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/icons/safari-pinned-tab.svg" }
angular/adev/src/assets/icons/site.webmanifest_0_400
{ "name": "Angular", "short_name": "Angular", "icons": [ { "src": "/assets/icons/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, { "src": "/assets/icons/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" } ], "theme_color": "#ffffff", "background_color": "#ffffff", "display": "standalone" }
{ "end_byte": 400, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/icons/site.webmanifest" }
angular/adev/src/assets/icons/BUILD.bazel_0_213
load("@build_bazel_rules_nodejs//:index.bzl", "copy_to_bin") exports_files( glob(["*"]), ) copy_to_bin( name = "icons", srcs = glob(["*"]), visibility = [ "//visibility:public", ], )
{ "end_byte": 213, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/icons/BUILD.bazel" }
angular/adev/src/assets/icons/browserconfig.xml_0_259
<?xml version="1.0" encoding="utf-8"?> <browserconfig> <msapplication> <tile> <square150x150logo src="/assets/icons/mstile-150x150.png"/> <TileColor>#e90464</TileColor> </tile> </msapplication> </browserconfig>
{ "end_byte": 259, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/icons/browserconfig.xml" }
angular/adev/src/assets/previews/previews.ts_0_826
/*! * @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 */ /** ****************************************************************************** * DO NOT MANUALLY EDIT THIS FILE. THIS FILE IS AUTOMATICALLY GENERATED. ****************************************************************************** */ import {Type} from '@angular/core'; /** * Map of the previews components, values are functions which returns the promise of the component type, which will be displayed as preview in the ExampleViewer component. * Keys has to be equal to paths written down in the docs markdown files. */ export const PREVIEWS_COMPONENTS_MAP: Record<string, () => Promise<Type<unknown>>> = {};
{ "end_byte": 826, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/previews/previews.ts" }
angular/adev/src/assets/previews/BUILD.bazel_0_311
load("@build_bazel_rules_nodejs//:index.bzl", "copy_to_bin") # TODO(josephperrott): Generate previews from source instead of using already generated files exports_files( glob(["*"]), ) copy_to_bin( name = "previews", srcs = glob(["*"]), visibility = [ "//visibility:public", ], )
{ "end_byte": 311, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/adev/src/assets/previews/BUILD.bazel" }
angular/devtools/styles.scss_0_1396
@use 'sass:map'; @use 'external/npm/node_modules/@angular/material/index' as mat; @include mat.all-component-typographies(); @include mat.core(); html, body { padding: 0; margin: 0; } // Light theme $light-primary: mat.m2-define-palette(mat.$m2-grey-palette, 700, 200); $light-accent: mat.m2-define-palette(mat.$m2-blue-palette, 800); $light-theme: mat.m2-define-light-theme($light-primary, $light-accent); // Dark theme $dark-primary: mat.m2-define-palette(mat.$m2-blue-grey-palette, 50); $dark-accent: mat.m2-define-palette(mat.$m2-blue-palette, 200); $dark-theme: map.deep-merge( mat.m2-define-dark-theme($dark-primary, $dark-accent), ( 'color': ( 'background': ( background: #202124, card: #202124, ), 'foreground': ( text: #bcc5ce, ), ), 'background': ( background: #202124, card: #202124, ), 'foreground': ( 'text': #bcc5ce, ), ) ); .light-theme { @include mat.all-component-themes($light-theme); .mat-mdc-chip.mat-mdc-standard-chip { --mdc-chip-container-height: 24px; } } .dark-theme { color-scheme: dark; background: #202124; @include mat.all-component-themes($dark-theme); .mat-mdc-chip.mat-mdc-standard-chip { --mdc-chip-container-height: 24px; } } ng-devtools { .mdc-card { padding: 4px; } } .mat-mdc-menu-content { padding: 0 !important; }
{ "end_byte": 1396, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/devtools/styles.scss" }
angular/devtools/README.md_0_2554
# Angular DevTools Angular DevTools is a browser DevTools extension for debugging and profiling Angular applications. ## Developing Locally <!-- This duplicates some general content for setting up the angular/angular repository, however it is important to have complete instructions here for Mozilla Add-On reviewers who need to be able to reproduce Angular DevTools builds and will use the same documentation. --> ### Set up Follow the instructions below to set up your Angular DevTools development environment. Note that all commands should be executed in the repository root, not `devtools/`. All file paths are also relative to the repository root. Debian Linux, MacOS, and Windows via WSL should build successfully. Building natively on Windows without WSL is not supported at the moment. To set up your development environment, first install the [correct version of Node](/.nvmrc). If you have [`nvm`](https://github.com/nvm-sh/nvm) set up, this can be done with: ```shell nvm install ``` Second, install [Yarn](https://classic.yarnpkg.com/en/): ```shell npm install -g yarn@1 ``` Third, install NPM dependencies: ```shell yarn --frozen-lockfile ``` Now you should be ready to build the DevTools extension. ### Dev builds To run the extension in development mode run: ```shell yarn devtools:devserver ``` You can also run a standalone version of the demo app with: ```shell yarn devtools:devserver:demo-standalone ``` This would start a development server that you can access on <http://localhost:4200>. In development, Angular DevTools uses a "development shell." This is different from "chrome shell" in a way, that it runs the user's app in an iframe. DevTools then communicate with the user's app via message passing. ### Release builds You can build the release version of Angular DevTools for either Chrome or Firefox with: ```shell yarn devtools:build:chrome yarn devtools:build:firefox ``` Either way, the built extension will be at `dist/bin/devtools/projects/shell-browser/src/prodapp`. #### Installation For Chrome, you can install the extension from `dist/bin/devtools/projects/shell-browser/src/prodapp` by following the guide from [here](https://developer.chrome.com/docs/extensions/get-started/tutorial/hello-world#load-unpacked). For Firefox, to load the extension, you can go to the about:debugging page, click the "This Firefox" option and then click the Load Temporary Add-on button. You'll have to select the manifest file in `dist/bin/devtools/projects/shell-browser/src/prodapp` directly.
{ "end_byte": 2554, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/devtools/README.md" }
angular/devtools/packages.bzl_0_985
_CDK_ENTRY_POINTS = [ "scrolling", "tree", "keycodes", "collections", "overlay", "table", "text-field", "accordion", "drag-drop", "a11y", "platform", ] _MATERIAL_ENTRY_POINTS = [ "dialog", "menu", "slide-toggle", "grid-list", "tree", "expansion", "checkbox", "select", "input", "button", "core", "progress-bar", "snack-bar", "icon", "progress-spinner", "tabs", "card", "form-field", "tooltip", "toolbar", ] ANGULAR_PACKAGES_CONFIG = [ ("@angular/cdk", struct(entry_points = _CDK_ENTRY_POINTS)), ("@angular/material", struct(entry_points = _MATERIAL_ENTRY_POINTS)), ] ANGULAR_PACKAGES = [ struct( name = name[len("@angular/"):], entry_points = config.entry_points, platform = config.platform if hasattr(config, "platform") else "browser", module_name = name, ) for name, config in ANGULAR_PACKAGES_CONFIG ]
{ "end_byte": 985, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/devtools/packages.bzl" }
angular/devtools/BUILD.bazel_0_612
load("@io_bazel_rules_sass//:defs.bzl", "npm_sass_library", "sass_library") load("//tools:defaults.bzl", "ts_config") package(default_visibility = ["//visibility:public"]) exports_files([ "tsconfig.json", "cypress.json", ]) npm_sass_library( name = "material_sass_deps", deps = [ "@npm//@angular/cdk", "@npm//@angular/material", ], ) ts_config( name = "tsconfig_spec", src = "tsconfig.spec.json", deps = [ "//devtools:tsconfig.json", ], ) sass_library( name = "global_styles", srcs = ["styles.scss"], deps = [":material_sass_deps"], )
{ "end_byte": 612, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/devtools/BUILD.bazel" }
angular/devtools/tools/ng_module.bzl_0_301
load("//tools:defaults.bzl", _ng_module = "ng_module") def ng_module(name, tsconfig = "//devtools:tsconfig.json", srcs = [], angular_assets = [], **kwargs): _ng_module( name = name, tsconfig = tsconfig, srcs = srcs, assets = angular_assets, **kwargs )
{ "end_byte": 301, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/devtools/tools/ng_module.bzl" }
angular/devtools/tools/BUILD.bazel_0_54
exports_files([ "bazel-karma-local-config.js", ])
{ "end_byte": 54, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/devtools/tools/BUILD.bazel" }
angular/devtools/tools/typescript.bzl_0_509
"""Helper macros for compiling typescript with consistent config""" load("//tools:defaults.bzl", _ts_library = "ts_library") def ts_library(name, tsconfig = "//devtools:tsconfig.json", **kwargs): _ts_library( name = name, tsconfig = tsconfig, **kwargs ) def ts_test_library(name, tsconfig = "//devtools:tsconfig_spec", deps = [], **kwargs): _ts_library( name = name, tsconfig = tsconfig, testonly = 1, deps = deps, **kwargs )
{ "end_byte": 509, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/devtools/tools/typescript.bzl" }
angular/devtools/tools/defaults.bzl_0_752
# Re-export of Bazel rules with devtools-wide defaults load("//tools:defaults.bzl", _karma_web_test_suite = "karma_web_test_suite") def karma_web_test_suite(name, **kwargs): # Set up default browsers if no explicit `browsers` have been specified. if not hasattr(kwargs, "browsers"): kwargs["tags"] = ["native"] + kwargs.get("tags", []) kwargs["browsers"] = [ "@npm//@angular/build-tooling/bazel/browsers/chromium:chromium", # todo(aleksanderbodurri): enable when firefox support is done # "@npm//@angular/build-tooling/bazel/browsers/firefox:firefox", ] # Default test suite with all configured browsers. _karma_web_test_suite( name = name, **kwargs )
{ "end_byte": 752, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/devtools/tools/defaults.bzl" }
angular/devtools/tools/esbuild/index.bzl_0_3367
load("//devtools:packages.bzl", "ANGULAR_PACKAGES") load("@npm//@angular/build-tooling/bazel/esbuild:index.bzl", "esbuild") load("@build_bazel_rules_nodejs//internal/linker:link_node_modules.bzl", "LinkerPackageMappingInfo") load("@build_bazel_rules_nodejs//:providers.bzl", "ExternalNpmPackageInfo", "JSModuleInfo") """ Starlark file exposing a definition for generating Angular linker-processed ESM bundles for all entry-points the Angular framework packages expose. These linker-processed ESM bundles are useful as they can be integrated into the spec bundling, or dev-app to avoid unnecessary re-linking of framework entry-points every time the bundler executes. This helps with the overall development turnaround and is more idiomatic as it allows caching of the Angular framework packages. """ def _linker_mapping_impl(ctx): return [ # Pass through the `ExternalNpmPackageInfo` which is needed for the linker # resolving dependencies which might be external. e.g. `rxjs` for `@angular/core`. ctx.attr.package[ExternalNpmPackageInfo], JSModuleInfo( direct_sources = depset(ctx.files.srcs), sources = depset(ctx.files.srcs), ), LinkerPackageMappingInfo( mappings = depset([ struct( package_name = ctx.attr.module_name, package_path = "", link_path = "%s/%s" % (ctx.label.package, ctx.attr.subpath), ), ]), node_modules_roots = depset([]), ), ] _linker_mapping = rule( implementation = _linker_mapping_impl, attrs = { "package": attr.label(), "srcs": attr.label_list(allow_files = False), "subpath": attr.string(), "module_name": attr.string(), }, ) def _get_target_name_base(pkg, entry_point): return "%s%s" % (pkg.name, "_%s" % entry_point if entry_point else "") def _create_bundle_targets(pkg, entry_point, module_name): target_name_base = _get_target_name_base(pkg, entry_point) fesm_bundle_path = "fesm2022/%s.mjs" % (entry_point if entry_point else pkg.name) esbuild( name = "%s_linked_bundle" % target_name_base, output = "%s/index.mjs" % target_name_base, platform = pkg.platform, entry_point = "@npm//:node_modules/@angular/%s/%s" % (pkg.name, fesm_bundle_path), config = "//devtools/tools/esbuild:esbuild_config_esm", # List of dependencies which should never be bundled into these linker-processed bundles. external = ["rxjs", "@angular", "domino", "xhr2", "@material"], ) _linker_mapping( name = "%s_linked" % target_name_base, srcs = [":%s_linked_bundle" % target_name_base], package = "@npm//@angular/%s" % pkg.name, module_name = module_name, subpath = target_name_base, ) def create_angular_bundle_targets(): for pkg in ANGULAR_PACKAGES: _create_bundle_targets(pkg, None, pkg.module_name) for entry_point in pkg.entry_points: _create_bundle_targets(pkg, entry_point, "%s/%s" % (pkg.module_name, entry_point)) LINKER_PROCESSED_FW_PACKAGES = [ "//devtools/tools/esbuild:%s_linked" % _get_target_name_base(pkg, entry_point) for pkg in ANGULAR_PACKAGES for entry_point in [None] + pkg.entry_points ]
{ "end_byte": 3367, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/devtools/tools/esbuild/index.bzl" }
angular/devtools/tools/esbuild/esbuild-esm.config.mjs_0_380
/** * @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 createConfig from './esbuild-base.config.mjs'; export default { ...(await createConfig({enableLinker: true, optimize: false})), format: 'esm', keepNames: true };
{ "end_byte": 380, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/devtools/tools/esbuild/esbuild-esm.config.mjs" }
angular/devtools/tools/esbuild/esbuild-base.config.mjs_0_2817
/** * @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 {createEsbuildAngularOptimizePlugin} from '@angular/build-tooling/shared-scripts/angular-optimization/esbuild-plugin.mjs'; import {GLOBAL_DEFS_FOR_TERSER_WITH_AOT} from '@angular/compiler-cli/private/tooling.js'; /** Converts an object to a string dictionary. */ function convertObjectToStringDictionary(value) { return Object.entries(value).reduce((result, [propName, value]) => { result[propName] = String(value); return result; }, {}); } export default async function createConfig({enableLinker, optimize}) { return { resolveExtensions: ['.mjs', '.js'], // This ensures that we prioritize ES2020. RxJS would otherwise use the ESM5 output. mainFields: ['es2020', 'es2015', 'module', 'main'], // `tslib` sets the `module` condition to resolve to ESM. conditions: ['es2020', 'es2015', 'module'], supported: { // Downlevel native `async/await` so that ZoneJS can intercept it. 'async-await': false, }, define: optimize ? convertObjectToStringDictionary(GLOBAL_DEFS_FOR_TERSER_WITH_AOT) : undefined, plugins: [ await createEsbuildAngularOptimizePlugin({ optimize: { isSideEffectFree: null, }, downlevelAsyncGeneratorsIfPresent: true, enableLinker: enableLinker ? { ensureNoPartialDeclaration: false, // Only run the linker on fesm2020 and fesm2022 bundles. This should not have an effect on // the bundle output, but helps speeding up ESBuild when it visits other modules. filterPaths: /fesm2020|fesm2022/, linkerOptions: { // DevTools relies on angular framework packages that are consumed, // locally via bazel. These packages have a version of 0.0.0-PLACEHOLDER. // DevTools also relies on Angular CDK and Material packages that are consumed via npm. // Because of this, we set unknownDeclarationVersionHandling to ignore so that we bypass // selecting a linker for our CDK and Material dependencies based on our local framework // version (0.0.0-PLACEHOLDER). // Instead this option defaults to the latest linker version, which should // be correct, except for the small time interval where we rollout a new // declaration version and target a material release that hasn't been compiled // with that version yet. unknownDeclarationVersionHandling: 'ignore', }, } : undefined, }), ], }; }
{ "end_byte": 2817, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/devtools/tools/esbuild/esbuild-base.config.mjs" }
angular/devtools/tools/esbuild/BUILD.bazel_0_1157
load("@build_bazel_rules_nodejs//:index.bzl", "js_library") load("//tools:defaults.bzl", "esbuild_config") load(":index.bzl", "create_angular_bundle_targets") package(default_visibility = ["//visibility:public"]) js_library( name = "esbuild_base", srcs = ["esbuild-base.config.mjs"], deps = [ "//packages/compiler-cli/private", "@npm//@angular/build-tooling/shared-scripts/angular-optimization:js_lib", ], ) esbuild_config( name = "esbuild_config_esm", config_file = "esbuild-esm.config.mjs", deps = [ ":esbuild_base", "@npm//@angular/build-tooling/shared-scripts/angular-optimization:js_lib", ], ) esbuild_config( name = "esbuild_config_esm_prod", config_file = "esbuild-esm-prod.config.mjs", deps = [ ":esbuild_base", ], ) esbuild_config( name = "esbuild_config_iife", config_file = "esbuild-iife.config.mjs", deps = [ ":esbuild_base", ], ) esbuild_config( name = "esbuild_config_spec", testonly = True, config_file = "esbuild-spec.config.mjs", deps = [ ":esbuild_base", ], ) create_angular_bundle_targets()
{ "end_byte": 1157, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/devtools/tools/esbuild/BUILD.bazel" }
angular/devtools/tools/esbuild/esbuild-esm-prod.config.mjs_0_361
/** * @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 createConfig from './esbuild-base.config.mjs'; export default { ...(await createConfig({enableLinker: true, optimize: true})), format: 'esm', };
{ "end_byte": 361, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/devtools/tools/esbuild/esbuild-esm-prod.config.mjs" }
angular/devtools/tools/esbuild/esbuild-spec.config.mjs_0_538
/** * @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 createConfig from './esbuild-base.config.mjs'; export default { ...(await createConfig({enableLinker: true, optimize: false})), // Use the `iife` format for the test entry-point as tests should run immediately. // For browser tests which are wrapped in an AMD header and footer, this works as well. format: 'iife', };
{ "end_byte": 538, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/devtools/tools/esbuild/esbuild-spec.config.mjs" }
angular/devtools/tools/esbuild/esbuild-iife.config.mjs_0_364
/** * @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 createConfig from './esbuild-base.config.mjs'; export default { ...(await createConfig({enableLinker: false, optimize: false})), format: 'iife', };
{ "end_byte": 364, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/devtools/tools/esbuild/esbuild-iife.config.mjs" }
angular/devtools/cypress/plugins/index.js_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 */ /// <reference types="cypress" /> // *********************************************************** // This example plugins/index.js can be used to load plugins // // You can change the location of this file or turn off loading // the plugins file with the 'pluginsFile' configuration option. // // You can read more here: // https://on.cypress.io/plugins-guide // *********************************************************** // This function is called when a project is opened or re-opened (e.g. due to // the project's config changing) /** * @type {Cypress.PluginConfig} */ // eslint-disable-next-line no-unused-vars module.exports = (on, config) => { // `on` is used to hook into various events Cypress emits // `config` is the resolved Cypress config };
{ "end_byte": 966, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/devtools/cypress/plugins/index.js" }
angular/devtools/cypress/integration/item-tracking.e2e.js_0_1302
/** * @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 */ require('cypress-iframe'); describe('Tracking items from application to component tree', () => { beforeEach(() => { cy.visit('/'); }); it('should have only one todo item on start', () => { cy.enter('#sample-app').then((getBody) => { getBody().find('app-todo').contains('Buy milk'); }); cy.get('.tree-wrapper') .find('.tree-node:contains("app-todo[TooltipDirective]")') .its('length') .should('eq', 2); }); it('should be able to detect a new todo from user and add it to the tree', () => { cy.enter('#sample-app') .then((getBody) => { getBody().find('input.new-todo').type('Buy cookies{enter}'); }) .then(() => { cy.enter('#sample-app').then((getBody) => { getBody().find('app-todo').contains('Buy milk'); getBody().find('app-todo').contains('Build something fun!'); getBody().find('app-todo').contains('Buy cookies'); }); }); cy.get('.tree-wrapper .tree-node:contains("app-todo[TooltipDirective]")').should( 'have.length', 3, ); }); });
{ "end_byte": 1302, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/devtools/cypress/integration/item-tracking.e2e.js" }
angular/devtools/cypress/integration/property-update.e2e.js_0_1141
/** * @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 */ require('cypress-iframe'); describe('change of the state should reflect in property update', () => { beforeEach(() => { cy.visit('/'); }); it('should update the property value', () => { // Complete the todo cy.enter('#sample-app').then((getBody) => { getBody().find('input[type="checkbox"].toggle').first().click(); }); // Select the todo item cy.get('.tree-wrapper') .find('.tree-node:contains("app-todo[TooltipDirective]")') .first() .click({force: true}); // Expand the todo in the property explorer cy.get('.explorer-panel:contains("app-todo")') .find('ng-property-view mat-tree-node:contains("todo")') .click(); // Verify its value is now completed cy.contains( '.explorer-panel:contains("app-todo") ' + 'ng-property-view mat-tree-node:contains("completed") ' + 'ng-property-editor .editor', 'true', ); }); });
{ "end_byte": 1141, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/devtools/cypress/integration/property-update.e2e.js" }
angular/devtools/cypress/integration/property-edit.e2e.js_0_3163
/** * @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 */ require('cypress-iframe'); describe('edit properties of directive in the property view tab', () => { beforeEach(() => { cy.visit('/'); }); describe('edit app-todo component', () => { beforeEach(() => { // select todo node in component tree cy.get('.tree-wrapper') .find('.tree-node:contains("app-todo[TooltipDirective]")') .first() .click({force: true}); }); it('should be able to enable editMode', () => { cy.enter('#sample-app').then((getBody) => { getBody().find('app-todo input.edit').should('not.be.visible'); }); cy.get('.explorer-panel:contains("app-todo")') .find('ng-property-view mat-tree-node:contains("editMode")') .find('ng-property-editor .editor') .click({force: true}) .find('.editor-input') .clear() .type('true') .type('{enter}'); cy.enter('#sample-app').then((getBody) => { getBody().find('app-todo input.edit').should('be.visible'); }); }); describe('edit todo property', () => { beforeEach(() => { // expand todo state cy.get('.explorer-panel:contains("app-todo")') .find('ng-property-view mat-tree-node:contains("todo")') .click(); }); it('should change todo label in app when edited', () => { // check initial todo label cy.enter('#sample-app').then((getBody) => { getBody().find('app-todo').contains('Buy milk').its('length').should('eq', 1); }); // find label variable and run through edit logic cy.get('.explorer-panel:contains("app-todo")') .find('ng-property-view mat-tree-node:contains("label")') .find('ng-property-editor .editor') .click() .find('.editor-input') .clear() .type('Buy cookies') .type('{enter}'); // assert that the page has been updated cy.enter('#sample-app').then((getBody) => { getBody().find('app-todo').contains('Buy cookies').its('length').should('eq', 1); }); }); it('should change todo completed in app when edited', () => { // check initial todo completed status cy.enter('#sample-app').then((getBody) => { getBody().find('app-todo li').not('.completed').its('length').should('eq', 2); }); // find completed variable and run through edit logic cy.get('.explorer-panel:contains("app-todo")') .find('ng-property-view mat-tree-node:contains("completed")') .find('ng-property-editor .editor') .click() .find('.editor-input') .clear() .type('true') .type('{enter}'); // assert that the page has been updated cy.enter('#sample-app').then((getBody) => { getBody().find('app-todo li.completed').its('length').should('eq', 1); }); }); }); }); });
{ "end_byte": 3163, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/devtools/cypress/integration/property-edit.e2e.js" }
angular/devtools/cypress/integration/elements.e2e.js_0_463
/** * @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 */ describe('Angular Elements', () => { beforeEach(() => { cy.visit('/'); }); it('should recognize the zippy as an Angular Element', () => { cy.get('.tree-wrapper').find('.tree-node:contains("app-zippy")').its('length').should('eq', 1); }); });
{ "end_byte": 463, "start_byte": 0, "url": "https://github.com/angular/angular/blob/main/devtools/cypress/integration/elements.e2e.js" }