Directives, utils, and events for working with angular zoneless

Related tags

Angular zoneless
Overview

az-zoneless

Known Vulnerabilities build codecov npm version

A set of directive and utilities to manage an angular zoneless app.
Using this library you can go completly zoneless and still support 3rd party libraries like @angular/material.

This library will solve the following:

Warning: This package is experimental

Installation

npm i az-zoneless

In your AppModule add the ZonelessModule to the imports array.

import { ZonelessModule } from 'az-zoneless'

@NgModule({
  declarations: [
    ...
  ],
  imports: [
    ...,
    ZonelessModule
  ],
  bootstrap: [AppComponent]
})
export class AppModule {
}

Set your app to be zoneless

This library is meant to be used in an angular running in zoneless mode.
To make angular work without Zone.js please do the following:

  1. from the polyfills.ts comment out the line where Zone.js is imported
// import 'zone.js';  // Included with Angular CLI.
  1. in the main.ts you need to tell angular to not work with Zone.js
platformBrowserDynamic()
  .bootstrapModule(AppModule, {
    ngZone: "noop",
  })
  .catch((err) => console.error(err));

Lecture about using angular in zoneless

Here is a lecture where I explain about angular in zoneless mode

Events

  1. After using the library, make sure to not use the regular events:
<!-- Do not use the regular events   -->
<button (click)="doSomething()"></button>

These events will still work but they are less performent.

  1. To improve performance and really take advantage of the fact that you are zoneless, please use the events like this:
<button (azClick)="doSomething()"></button>
  1. In case you do decide to run angular with Zone.js the library supplies you with an event that will run outside the angular zone.
<!-- the doSomething method will not trigger change detection and will run outside the angular zone -->
<button (azClick.zoneless)="doSomething()"></button>

Directives

If you are afraid to remove zone.js, we also supply with directives that will allow you to incrementally transition your app to be zoneless.
Instead of removing zone.js completly, you can run part of your component tree outside zone.js

azZoneLess

With this directive you can run part of your component tree outside zone.js.
This will work only if you did not remove Zone.js

<div>
  <h1>This part is inside zonejs</h1>
  <button (click)="doSomething()">
    clicking this will run change detection
  </button>

  <div *azZoneLess>
    <h1>This part is outside zonejs</h1>
    <button (click)="doSomething()">
      clicking this will run outside the zone and will only update is you call
      ChangeDetectorRef.detectChanges()
    </button>
  </div>
</div>

azZoneFull

If you used the azZoneLess you can go back to running in angular zone using the azZoneFull directive. This directive will only work if you did not remove Zone.js.

<div>
  <h1>This part is inside zonejs</h1>
  <button (click)="doSomething()">
    clicking this will run change detection
  </button>

  <div *azZoneLess>
    <h1>This part is outside zonejs</h1>
    <button (click)="doSomething()">
      clicking this will run outside the zone and will only update is you call
      ChangeDetectorRef.detectChanges()
    </button>

    <div *azZoneFull>
      <!-- This will return us back to the zone.js -->
      <button (click)="doSomething()">This runs in the zone.js</button>
    </div>
  </div>
</div>
Comments
  • [Snyk] Upgrade rxjs from 7.5.5 to 7.5.6

    [Snyk] Upgrade rxjs from 7.5.5 to 7.5.6

    Snyk has created this PR to upgrade rxjs from 7.5.5 to 7.5.6.

    merge advice :information_source: Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


    • The recommended version is 1 version ahead of your current version.
    • The recommended version was released 22 days ago, on 2022-07-11.
    Release notes
    Package name: rxjs from rxjs GitHub release notes
    Commit messages
    Package name: rxjs
    • 718be5b chore(publish): 7.5.6
    • 59a4e83 chore: revert "export type" to "export" (#6943)
    • 57143be refactor(share): Remove reliance on take (#7016)
    • 5d4c1d9 fix(share): Prevent setup/reset race condition in share with refCount (#7005)
    • 47fa8d5 missing word 'is' in Observable change description (#6941)
    • 11c609b Update inaccurate example to 'of' replacement. (#6939)
    • d279670 docs: fix issues with H1 headers (#6771)
    • e5aaec1 docs(bufferWhen): fix marble diagram (#6767)
    • 2374968 docs(distinctUntilChanged): fix docs rendering (#6756)
    • 9513524 chore: remove deprecated IE polyfills (#6912)
    • 9e15d75 docs: Fix heading levels (#6933)
    • 9948dc2 fix: `share` and `connect` no longer bundle scheduling code by default (#6873)
    • a1ef8f8 Remove more deprecated subscribes in tests (#6758)
    • 6252d6b fix: add missing deprecated JSDoc tag to pluck overload signatures (#6896)
    • 2dd61ef Subject specs run mode (#6925)
    • f327ccf chore(partition): convert partition specs to run mode (#6924)
    • 1e0103f chore(pairs): convert pairs specs to run mode (#6923)
    • 33cb63c chore(onErrorResumeNext): convert onErrorResumeNext specs to run mode (#6922)
    • 6f3cba1 chore(of): convert of specs to run mode (#6921)
    • facd9ba chore(merge): convert merge specs to run mode (#6920)
    • bdef028 chore(iif): convert iif specs to run mode (#6918)
    • d54c126 chore: add operator specs to prettier configuration (#6844)
    • 9ce3834 docs: fix mergeMap copy pasta (#6934)
    • 3cfe1f5 chore(interval): convert interval specs to run mode (#6919)

    Compare


    Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

    For more information:

    ๐Ÿง View latest project report

    ๐Ÿ›  Adjust upgrade PR settings

    ๐Ÿ”• Ignore this dependency or unsubscribe from future upgrade PRs

    opened by snyk-bot 0
  • [Snyk] Upgrade: @angular/animations, @angular/common, @angular/compiler, @angular/core, @angular/forms, @angular/platform-browser, @angular/platform-browser-dynamic, @angular/router

    [Snyk] Upgrade: @angular/animations, @angular/common, @angular/compiler, @angular/core, @angular/forms, @angular/platform-browser, @angular/platform-browser-dynamic, @angular/router

    This PR was automatically created by Snyk using the credentials of a real user.


    Snyk has created this PR to upgrade multiple dependencies.

    ๐Ÿ‘ฏโ€โ™‚ The following dependencies are linked and will therefore be updated together.

    :information_source: Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.

    Name | Versions | Released on :-------------|:-------------|:------------- @angular/animations
    from 14.0.1 to 14.0.4 | 3 versions ahead of your current version | 21 days ago
    on 2022-06-29 @angular/common
    from 14.0.1 to 14.0.4 | 3 versions ahead of your current version | 21 days ago
    on 2022-06-29 @angular/compiler
    from 14.0.1 to 14.0.4 | 3 versions ahead of your current version | 21 days ago
    on 2022-06-29 @angular/core
    from 14.0.1 to 14.0.4 | 3 versions ahead of your current version | 21 days ago
    on 2022-06-29 @angular/forms
    from 14.0.1 to 14.0.4 | 3 versions ahead of your current version | 21 days ago
    on 2022-06-29 @angular/platform-browser
    from 14.0.1 to 14.0.4 | 3 versions ahead of your current version | 21 days ago
    on 2022-06-29 @angular/platform-browser-dynamic
    from 14.0.1 to 14.0.4 | 3 versions ahead of your current version | 21 days ago
    on 2022-06-29 @angular/router
    from 14.0.1 to 14.0.4 | 3 versions ahead of your current version | 21 days ago
    on 2022-06-29

    Release notes
    Package name: @angular/animations
    • 14.0.4 - 2022-06-29

      14.0.4 (2022-06-29)

      animations

      Commit Description
      fix - 51be9bbe29 cleanup DOM elements when the root view is removed (#45143)
      fix - 999aca86c8 enable shadowElements to leave when their parent does (#46459)

      common

      Commit Description
      fix - 42aed6b13e handle CSS custom properties in NgStyle (#46451)

      core

      Commit Description
      fix - 1e7f22f00a trigger ApplicationRef.destroy when Platform is destroyed (#46497)
      fix - 8bde2dbc71 Update ngfor error code to be negative (#46555)
      fix - 57e8fc00eb Updates error to use RuntimeError code (#46526)

      forms

      Commit Description
      fix - 74a26d870e Convert existing reactive errors to use RuntimeErrorCode. (#46560)
      fix - 747872212d Update a Forms validator error to use RuntimeError (#46537)

      router

      Commit Description
      fix - d6fac9e914 Ensure that new RouterOutlet instances work after old ones are destroyed (#46554)

      Special Thanks

      Alan Agius, Alex Rickabaugh, Andrew Kushnir, Andrew Scott, Bezael, Chad Ramos, Chellappan, Cรฉdric Exbrayat, Dylan Hunn, George Kalpakas, Jeremy Meiss, Jessica Janiuk, Joey Perrott, KMathy, Kristiyan Kostadinov, Paul Gschwendtner, Pawel Kozlowski, Ramesh Thiruchelvam, Vaibhav Kumar, arturovt, dario-piotrowicz and renovate[bot]

    • 14.0.3 - 2022-06-22

      14.0.3 (2022-06-22)

      animations

      Commit Description
      fix - 3dd7bb3f8f reset the start and done fns on player reset (#46364)

      core

      Commit Description
      fix - c086653655 deduplicate imports of standalone components in JIT compiler (#46439)
      fix - 5d3b97e1f8 handle NgModules with standalone pipes in TestBed correctly (#46407)

      platform-server

      Commit Description
      fix - 6ad7b40a6f invalid style attribute being generated for null values (#46433)

      Special Thanks

      4javier, Aakash, Alan Agius, Andrew Kushnir, Aristeidis Bampakos, Dany Paredes, Derek Cormier, JoostK, Kristiyan Kostadinov, Paul Gschwendtner, Ramesh Thiruchelvam, behrooz bozorg chami, dario-piotrowicz, markostanimirovic, renovate[bot] and web-dave

    • 14.0.2 - 2022-06-15
    • 14.0.1 - 2022-06-08
    from @angular/animations GitHub release notes
    Package name: @angular/common
    • 14.0.4 - 2022-06-29

      14.0.4 (2022-06-29)

      animations

      Commit Description
      fix - 51be9bbe29 cleanup DOM elements when the root view is removed (#45143)
      fix - 999aca86c8 enable shadowElements to leave when their parent does (#46459)

      common

      Commit Description
      fix - 42aed6b13e handle CSS custom properties in NgStyle (#46451)

      core

      Commit Description
      fix - 1e7f22f00a trigger ApplicationRef.destroy when Platform is destroyed (#46497)
      fix - 8bde2dbc71 Update ngfor error code to be negative (#46555)
      fix - 57e8fc00eb Updates error to use RuntimeError code (#46526)

      forms

      Commit Description
      fix - 74a26d870e Convert existing reactive errors to use RuntimeErrorCode. (#46560)
      fix - 747872212d Update a Forms validator error to use RuntimeError (#46537)

      router

      Commit Description
      fix - d6fac9e914 Ensure that new RouterOutlet instances work after old ones are destroyed (#46554)

      Special Thanks

      Alan Agius, Alex Rickabaugh, Andrew Kushnir, Andrew Scott, Bezael, Chad Ramos, Chellappan, Cรฉdric Exbrayat, Dylan Hunn, George Kalpakas, Jeremy Meiss, Jessica Janiuk, Joey Perrott, KMathy, Kristiyan Kostadinov, Paul Gschwendtner, Pawel Kozlowski, Ramesh Thiruchelvam, Vaibhav Kumar, arturovt, dario-piotrowicz and renovate[bot]

    • 14.0.3 - 2022-06-22
      Read more
    • 14.0.2 - 2022-06-15
    • 14.0.1 - 2022-06-08
    from @angular/common GitHub release notes
    Package name: @angular/compiler from @angular/compiler GitHub release notes
    Package name: @angular/core from @angular/core GitHub release notes
    Package name: @angular/forms from @angular/forms GitHub release notes
    Package name: @angular/platform-browser from @angular/platform-browser GitHub release notes
    Package name: @angular/platform-browser-dynamic from @angular/platform-browser-dynamic GitHub release notes
    Package name: @angular/router from @angular/router GitHub release notes

    Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

    For more information:

    ๐Ÿง View latest project report

    ๐Ÿ›  Adjust upgrade PR settings

    ๐Ÿ”• Ignore this dependency or unsubscribe from future upgrade PRs

    opened by ywarezk 0
  • [Snyk] Upgrade: @angular/animations, @angular/common, @angular/compiler, @angular/core, @angular/forms, @angular/platform-browser, @angular/platform-browser-dynamic, @angular/router

    [Snyk] Upgrade: @angular/animations, @angular/common, @angular/compiler, @angular/core, @angular/forms, @angular/platform-browser, @angular/platform-browser-dynamic, @angular/router

    This PR was automatically created by Snyk using the credentials of a real user.


    Snyk has created this PR to upgrade multiple dependencies.

    ๐Ÿ‘ฏโ€โ™‚ The following dependencies are linked and will therefore be updated together.

    :information_source: Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.

    Name | Versions | Released on :-------------|:-------------|:------------- @angular/animations
    from 14.0.1 to 14.0.3 | 2 versions ahead of your current version | 21 days ago
    on 2022-06-22 @angular/common
    from 14.0.1 to 14.0.3 | 2 versions ahead of your current version | 21 days ago
    on 2022-06-22 @angular/compiler
    from 14.0.1 to 14.0.3 | 2 versions ahead of your current version | 21 days ago
    on 2022-06-22 @angular/core
    from 14.0.1 to 14.0.3 | 2 versions ahead of your current version | 21 days ago
    on 2022-06-22 @angular/forms
    from 14.0.1 to 14.0.3 | 2 versions ahead of your current version | 21 days ago
    on 2022-06-22 @angular/platform-browser
    from 14.0.1 to 14.0.3 | 2 versions ahead of your current version | 21 days ago
    on 2022-06-22 @angular/platform-browser-dynamic
    from 14.0.1 to 14.0.3 | 2 versions ahead of your current version | 21 days ago
    on 2022-06-22 @angular/router
    from 14.0.1 to 14.0.3 | 2 versions ahead of your current version | 21 days ago
    on 2022-06-22

    Release notes
    Package name: @angular/animations
    • 14.0.3 - 2022-06-22

      14.0.3 (2022-06-22)

      animations

      Commit Description
      fix - 3dd7bb3f8f reset the start and done fns on player reset (#46364)

      core

      Commit Description
      fix - c086653655 deduplicate imports of standalone components in JIT compiler (#46439)
      fix - 5d3b97e1f8 handle NgModules with standalone pipes in TestBed correctly (#46407)

      platform-server

      Commit Description
      fix - 6ad7b40a6f invalid style attribute being generated for null values (#46433)

      Special Thanks

      4javier, Aakash, Alan Agius, Andrew Kushnir, Aristeidis Bampakos, Dany Paredes, Derek Cormier, JoostK, Kristiyan Kostadinov, Paul Gschwendtner, Ramesh Thiruchelvam, behrooz bozorg chami, dario-piotrowicz, markostanimirovic, renovate[bot] and web-dave

    • 14.0.2 - 2022-06-15

      14.0.2 (2022-06-15)

      common

      Commit Description
      fix - ef5cba3df7 allow null in ngComponentOutlet (#46280)

      compiler-cli

      Commit Description
      fix - 8ecfd71fd7 don't emit empty providers array (#46301)
      fix - b92c1a6ada use inline type-check blocks for components outside rootDir (#46096)

      core

      Commit Description
      fix - 3fd8948b4a Resolve forwardRef declarations for jit (#46334)

      Special Thanks

      Alex Rickabaugh, Andrew Scott, Badawi7, Daniel Schmitz, Derek Cormier, JoostK, Kevin Davila, Kristiyan Kostadinov, Paul Draper, Paul Gschwendtner, Tom Eustace, Totati, Younes Jaaidi, alefra, dario-piotrowicz, markostanimirovic, mgechev, piyush132000, sten-bone and vivekkoya

    • 14.0.1 - 2022-06-08
    from @angular/animations GitHub release notes
    Package name: @angular/common
    • 14.0.3 - 2022-06-22

      14.0.3 (2022-06-22)

      animations

      Commit Description
      fix - 3dd7bb3f8f reset the start and done fns on player reset (#46364)

      core

      Commit Description
      fix - c086653655 deduplicate imports of standalone components in JIT compiler (#46439)
      fix - 5d3b97e1f8 handle NgModules with standalone pipes in TestBed correctly (#46407)

      platform-server

      Commit Description
      fix - 6ad7b40a6f invalid style attribute being generated for null values (#46433)

      Special Thanks

      4javier, Aakash, Alan Agius, Andrew Kushnir, Aristeidis Bampakos, Dany Paredes, Derek Cormier, JoostK, Kristiyan Kostadinov, Paul Gschwendtner, Ramesh Thiruchelvam, behrooz bozorg chami, dario-piotrowicz, markostanimirovic, renovate[bot] and web-dave

    • 14.0.2 - 2022-06-15

      14.0.2 (2022-06-15)

      common

      Commit Description
      fix - ef5cba3df7 allow null in ngComponentOutlet (#46280)

      compiler-cli

      Commit Description
      fix - 8ecfd71fd7 don't emit empty providers array (#46301)
      fix - b92c1a6ada use inline type-check blocks for components outside rootDir (#46096)

      core

      Commit Description
      fix - 3fd8948b4a Resolve forwardRef declarations for jit (#46334)

      Special Thanks

      Alex Rickabaugh, Andrew Scott, Badawi7, Daniel Schmitz, Derek Cormier, JoostK, Kevin Davila, Kristiyan Kostadinov, Paul Draper, Paul Gschwendtner, Tom Eustace, Totati, Younes Jaaidi, alefra, dario-piotrowicz, markostanimirovic, mgechev, piyush132000, sten-bone and vivekkoya

    • 14.0.1 - 2022-06-08
    from @angular/common GitHub release notes
    Package name: @angular/compiler
    • 14.0.3 - 2022-06-22

      14.0.3 (2022-06-22)

      animations

      Commit Description
      fix - 3dd7bb3f8f reset the start and done fns on player reset (#46364)

      core

      Commit Description
      fix - c086653655 deduplicate imports of standalone components in JIT compiler (#46439)
      fix - 5d3b97e1f8 handle NgModules with standalone pipes in TestBed correctly (#46407)

      platform-server

      Commit Description
      fix - 6ad7b40a6f invalid style attribute being generated for null values (#46433)

      Special Thanks

      4javier, Aakash, Alan Agius, Andrew Kushnir, Aristeidis Bampakos, Dany Paredes, Derek Cormier, JoostK, Kristiyan Kostadinov, Paul Gschwendtner, Ramesh Thiruchelvam, behrooz bozorg chami, dario-piotrowicz, markostanimirovic, renovate[bot] and web-dave

    • 14.0.2 - 2022-06-15

      14.0.2 (2022-06-15)

      common

      Commit Description
      fix - ef5cba3df7 allow null in ngComponentOutlet (#46280)

      compiler-cli

      Commit Description
      fix - 8ecfd71fd7 don't emit empty providers array (#46301)
      fix - b92c1a6ada use inline type-check blocks for components outside rootDir (#46096)

      core

      Commit Description
      fix - 3fd8948b4a Resolve forwardRef declarations for jit (#46334)

      Special Thanks

      Alex Rickabaugh, Andrew Scott, Badawi7, Daniel Schmitz, Derek Cormier, JoostK, Kevin Davila, Kristiyan Kostadinov, Paul Draper, Paul Gschwendtner, Tom Eustace, Totati, Younes Jaaidi, alefra, dario-piotrowicz, markostanimirovic, mgechev, piyush132000, sten-bone and vivekkoya

    • 14.0.1 - 2022-06-08
    from @angular/compiler GitHub release notes
    Package name: @angular/core from @angular/core GitHub release notes
    Package name: @angular/forms from @angular/forms GitHub release notes
    Package name: @angular/platform-browser from @angular/platform-browser GitHub release notes
    Package name: @angular/platform-browser-dynamic from @angular/platform-browser-dynamic GitHub release notes
    Package name: @angular/router from @angular/router GitHub release notes
    Commit messages
    Package name: @angular/animations
    • 5a9841f release: cut the v14.0.3 release
    • 8722edd build: avoid use of `ts-node` wrapper script as it breaks child process forking (#46456)
    • d6528b1 build: convert release package build scripts to typescript (#46456)
    • 2d8ad6c docs: fix typos in several guides (#46453)
    • 13c5585 build: load ng-dev release package builder using CJS interop (#46454)
    • 7a084c8 docs: add dany paredes to GDE resources (#46411)
    • c086653 fix(core): deduplicate imports of standalone components in JIT compiler (#46439)
    • 3dd7bb3 fix(animations): reset the start and done fns on player reset (#46364)
    • 79a973a build(bazel): remove tsec patch to enable runfiles on Windows (#46447)
    • d05e9a9 fix(docs-infra): slightly improve aio-top-menu css (#46429)
    • 6ad7b40 fix(platform-server): invalid style attribute being generated for null values (#46433)
    • 5d3b97e fix(core): handle NgModules with standalone pipes in TestBed correctly (#46407)
    • c79bb14 refactor(core): rename internal method to account for standalone components (#46407)
    • 8ce0b33 docs: update ng-de date (#46446)
    • 180a15e build: update scorecard action dependencies (#46440)
    • 9022787 build: replace copied `spec_bundle` rule in devtools with dev-infra rule (#46437)
    • 7f137fc build: wire up `ng-dev` ts-node config loading (#46437)
    • 6b82eb1 build: update `dev-infra` package to latest version with full ESM (#46437)
    • 516c836 ci: update renovate to update `angular` packages when available (#46437)
    • 74451fd docs: remove old bazel schematics doc (#46436)
    • 66dd534 docs: fix base href haser tag (#46431)
    • 0ac2e54 docs(core): add full example for IfLoadedDirective (#46425)
    • 639277b feat(docs-infra): add open_in_new icon to external nav-item links (#46384)
    • 8fac299 refactor(common): align tree shakable error messages to the new format (#46382)

    Compare

    Package name: @angular/common
    • 5a9841f release: cut the v14.0.3 release
    • 8722edd build: avoid use of `ts-node` wrapper script as it breaks child process forking (#46456)
    • d6528b1 build: convert release package build scripts to typescript (#46456)
    • 2d8ad6c docs: fix typos in several guides (#46453)
    • 13c5585 build: load ng-dev release package builder using CJS interop (#46454)
    • 7a084c8 docs: add dany paredes to GDE resources (#46411)
    • c086653 fix(core): deduplicate imports of standalone components in JIT compiler (#46439)
    • 3dd7bb3 fix(animations): reset the start and done fns on player reset (#46364)
    • 79a973a build(bazel): remove tsec patch to enable runfiles on Windows (#46447)
    • d05e9a9 fix(docs-infra): slightly improve aio-top-menu css (#46429)
    • 6ad7b40 fix(platform-server): invalid style attribute being generated for null values (#46433)
    • 5d3b97e fix(core): handle NgModules with standalone pipes in TestBed correctly (#46407)
    • c79bb14 refactor(core): rename internal method to account for standalone components (#46407)
    • 8ce0b33 docs: update ng-de date (#46446)
    • 180a15e build: update scorecard action dependencies (#46440)
    • 9022787 build: replace copied `spec_bundle` rule in devtools with dev-infra rule (#46437)
    • 7f137fc build: wire up `ng-dev` ts-node config loading (#46437)
    • 6b82eb1 build: update `dev-infra` package to latest version with full ESM (#46437)
    • 516c836 ci: update renovate to update `angular` packages when available (#46437)
    • 74451fd docs: remove old bazel schematics doc (#46436)
    • 66dd534 docs: fix base href haser tag (#46431)
    • 0ac2e54 docs(core): add full example for IfLoadedDirective (#46425)
    • 639277b feat(docs-infra): add open_in_new icon to external nav-item links (#46384)
    • 8fac299 refactor(common): align tree shakable error messages to the new format (#46382)

    Compare

    Package name: @angular/compiler
    • 5a9841f release: cut the v14.0.3 release
    • 8722edd build: avoid use of `ts-node` wrapper script as it breaks child process forking (#46456)
    • d6528b1 build: convert release package build scripts to typescript (#46456)
    • 2d8ad6c docs: fix typos in several guides (#46453)
    • 13c5585 build: load ng-dev release package builder using CJS interop (#46454)
    • 7a084c8 docs: add dany paredes to GDE resources (#46411)
    • c086653 fix(core): deduplicate imports of standalone components in JIT compiler (#46439)
    • 3dd7bb3 fix(animations): reset the start and done fns on player reset (#46364)
    • 79a973a build(bazel): remove tsec patch to enable runfiles on Windows (#46447)
    • d05e9a9 fix(docs-infra): slightly improve aio-top-menu css (#46429)
    • 6ad7b40 fix(platform-server): invalid style attribute being generated for null values (#46433)
    • 5d3b97e fix(core): handle NgModules with standalone pipes in TestBed correctly (#46407)
    • c79bb14 refactor(core): rename internal method to account for standalone components (#46407)
    • 8ce0b33 docs: update ng-de date (#46446)
    • 180a15e build: update scorecard action dependencies (#46440)
    • 9022787 build: replace copied `spec_bundle` rule in devtools with dev-infra rule (#46437)
    • 7f137fc build: wire up `ng-dev` ts-node config loading (#46437)
    • 6b82eb1 build: update `dev-infra` package to latest version with full ESM (#46437)
    • 516c836 ci: update renovate to update `angular` packages when available (#46437)
    • 74451fd docs: remove old bazel schematics doc (#46436)
    • 66dd534 docs: fix base href haser tag (#46431)
    • 0ac2e54 docs(core): add full example for IfLoadedDirective (#46425)
    • 639277b feat(docs-infra): add open_in_new icon to external nav-item links (#46384)
    • 8fac299 refactor(common): align tree shakable error messages to the new format (#46382)

    Compare

    Package name: @angular/core
    • 5a9841f release: cut the v14.0.3 release
    • 8722edd build: avoid use of `ts-node` wrapper script as it breaks child process forking (#46456)
    • d6528b1 build: convert release package build scripts to typescript (#46456)
    • 2d8ad6c docs: fix typos in several guides (#46453)
    • 13c5585 build: load ng-dev release package builder using CJS interop (#46454)
    • 7a084c8 docs: add dany paredes to GDE resources (#46411)
    • c086653 fix(core): deduplicate imports of standalone components in JIT compiler (#46439)
    • 3dd7bb3 fix(animations): reset the start and done fns on player reset (#46364)
    • 79a973a build(bazel): remove tsec patch to enable runfiles on Windows (#46447)
    • d05e9a9 fix(docs-infra): slightly improve aio-top-menu css (#46429)
    • 6ad7b40 fix(platform-server): invalid style attribute being generated for null values (#46433)
    • 5d3b97e fix(core): handle NgModules with standalone pipes in TestBed correctly (#46407)
    • c79bb14 refactor(core): rename internal method to account for standalone components (#46407)
    • 8ce0b33 docs: update ng-de date (#46446)
    • 180a15e build: update scorecard action dependencies (#46440)
    • 9022787 build: replace copied `spec_bundle` rule in devtools with dev-infra rule (#46437)
    • 7f137fc build: wire up `ng-dev` ts-node config loading (#46437)
    • 6b82eb1 build: update `dev-infra` package to latest version with full ESM (#46437)
    • 516c836 ci: update renovate to update `angular` packages when available (#46437)
    • 74451fd docs: remove old bazel schematics doc (#46436)
    • 66dd534 docs: fix base href haser tag (#46431)
    • 0ac2e54 docs(core): add full example for IfLoadedDirective (#46425)
    • 639277b feat(docs-infra): add open_in_new icon to external nav-item links (#46384)
    • 8fac299 refactor(common): align tree shakable error messages to the new format (#46382)

    Compare

    Package name: @angular/forms
    • 5a9841f release: cut the v14.0.3 release
    • 8722edd build: avoid use of `ts-node` wrapper script as it breaks child process forking (#46456)
    • d6528b1 build: convert release package build scripts to typescript (#46456)
    • 2d8ad6c docs: fix typos in several guides (#46453)
    • 13c5585 build: load ng-dev release package builder using CJS interop (#46454)
    • 7a084c8 docs: add dany paredes to GDE resources (#46411)
    • c086653 fix(core): deduplicate imports of standalone components in JIT compiler (#46439)
    • 3dd7bb3 fix(animations): reset the start and done fns on player reset (#46364)
    • 79a973a build(bazel): remove tsec patch to enable runfiles on Windows (#46447)
    • d05e9a9 fix(docs-infra): slightly improve aio-top-menu css (#46429)
    • 6ad7b40 fix(platform-server): invalid style attribute being generated for null values (#46433)
    • 5d3b97e fix(core): handle NgModules with standalone pipes in TestBed correctly (#46407)
    • c79bb14 refactor(core): rename internal method to account for standalone components (#46407)
    • 8ce0b33 docs: update ng-de date (#46446)
    • 180a15e build: update scorecard action dependencies (#46440)
    • 9022787 build: replace copied `spec_bundle` rule in devtools with dev-infra rule (#46437)
    • 7f137fc build: wire up `ng-dev` ts-node config loading (#46437)
    • 6b82eb1 build: update `dev-infra` package to latest version with full ESM (#46437)
    • 516c836 ci: update renovate to update `angular` packages when available (#46437)
    • 74451fd docs: remove old bazel schematics doc (#46436)
    • 66dd534 docs: fix base href haser tag (#46431)
    • 0ac2e54 docs(core): add full example for IfLoadedDirective (#46425)
    • 639277b feat(docs-infra): add open_in_new icon to external nav-item links (#46384)
    • 8fac299 refactor(common): align tree shakable error messages to the new format (#46382)

    Compare

    Package name: @angular/platform-browser
    • 5a9841f release: cut the v14.0.3 release
    • 8722edd build: avoid use of `ts-node` wrapper script as it breaks child process forking (#46456)
    • d6528b1 build: convert release package build scripts to typescript (#46456)
    • 2d8ad6c docs: fix typos in several guides (#46453)
    • 13c5585 build: load ng-dev release package builder using CJS interop (#46454)
    • 7a084c8 docs: add dany paredes to GDE resources (#46411)
    • c086653 fix(core): deduplicate imports of standalone components in JIT compiler (#46439)
    • 3dd7bb3 fix(animations): reset the start and done fns on player reset (#46364)
    • 79a973a build(bazel): remove tsec patch to enable runfiles on Windows (#46447)
    • d05e9a9 fix(docs-infra): slightly improve aio-top-menu css (#46429)
    • 6ad7b40 fix(platform-server): invalid style attribute being generated for null values (#46433)
    • 5d3b97e fix(core): handle NgModules with standalone pipes in TestBed correctly (#46407)
    • c79bb14 refactor(core): rename internal method to account for standalone components (#46407)
    • 8ce0b33 docs: update ng-de date (#46446)
    • 180a15e build: update scorecard action dependencies (#46440)
    • 9022787 build: replace copied `spec_bundle` rule in devtools with dev-infra rule (#46437)
    • 7f137fc build: wire up `ng-dev` ts-node config loading (#46437)
    • 6b82eb1 build: update `dev-infra` package to latest version with full ESM (#46437)
    • 516c836 ci: update renovate to update `angular` packages when available (#46437)
    • 74451fd docs: remove old bazel schematics doc (#46436)
    • 66dd534 docs: fix base href haser tag (#46431)
    • 0ac2e54 docs(core): add full example for IfLoadedDirective (#46425)
    • 639277b feat(docs-infra): add open_in_new icon to external nav-item links (#46384)
    • 8fac299 refactor(common): align tree shakable error messages to the new format (#46382)

    Compare

    Package name: @angular/platform-browser-dynamic
    • 5a9841f release: cut the v14.0.3 release
    • 8722edd build: avoid use of `ts-node` wrapper script as it breaks child process forking (#46456)
    • d6528b1 build: convert release package build scripts to typescript (#46456)
    • 2d8ad6c docs: fix typos in several guides (#46453)
    • 13c5585 build: load ng-dev release package builder using CJS interop (#46454)
    • 7a084c8 docs: add dany paredes to GDE resources (#46411)
    • c086653 fix(core): deduplicate imports of standalone components in JIT compiler (#46439)
    • 3dd7bb3 fix(animations): reset the start and done fns on player reset (#46364)
    • 79a973a build(bazel): remove tsec patch to enable runfiles on Windows (#46447)
    • d05e9a9 fix(docs-infra): slightly improve aio-top-menu css (#46429)
    • 6ad7b40...
    opened by ywarezk 0
  • [Snyk] Upgrade: @angular/animations, @angular/common, @angular/compiler, @angular/core, @angular/forms, @angular/platform-browser, @angular/platform-browser-dynamic, @angular/router

    [Snyk] Upgrade: @angular/animations, @angular/common, @angular/compiler, @angular/core, @angular/forms, @angular/platform-browser, @angular/platform-browser-dynamic, @angular/router

    Snyk has created this PR to upgrade multiple dependencies.

    ๐Ÿ‘ฏโ€โ™‚ The following dependencies are linked and will therefore be updated together.

    :information_source: Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.

    Name | Versions | Released on :-------------|:-------------|:------------- @angular/animations
    from 14.0.1 to 14.0.2 | 1 version ahead of your current version | 25 days ago
    on 2022-06-15 @angular/common
    from 14.0.1 to 14.0.2 | 1 version ahead of your current version | 25 days ago
    on 2022-06-15 @angular/compiler
    from 14.0.1 to 14.0.2 | 1 version ahead of your current version | 25 days ago
    on 2022-06-15 @angular/core
    from 14.0.1 to 14.0.2 | 1 version ahead of your current version | 25 days ago
    on 2022-06-15 @angular/forms
    from 14.0.1 to 14.0.2 | 1 version ahead of your current version | 25 days ago
    on 2022-06-15 @angular/platform-browser
    from 14.0.1 to 14.0.2 | 1 version ahead of your current version | 25 days ago
    on 2022-06-15 @angular/platform-browser-dynamic
    from 14.0.1 to 14.0.2 | 1 version ahead of your current version | 25 days ago
    on 2022-06-15 @angular/router
    from 14.0.1 to 14.0.2 | 1 version ahead of your current version | 25 days ago
    on 2022-06-15

    Release notes
    Package name: @angular/animations
    • 14.0.2 - 2022-06-15

      14.0.2 (2022-06-15)

      common

      Commit Description
      fix - ef5cba3df7 allow null in ngComponentOutlet (#46280)

      compiler-cli

      Commit Description
      fix - 8ecfd71fd7 don't emit empty providers array (#46301)
      fix - b92c1a6ada use inline type-check blocks for components outside rootDir (#46096)

      core

      Commit Description
      fix - 3fd8948b4a Resolve forwardRef declarations for jit (#46334)

      Special Thanks

      Alex Rickabaugh, Andrew Scott, Badawi7, Daniel Schmitz, Derek Cormier, JoostK, Kevin Davila, Kristiyan Kostadinov, Paul Draper, Paul Gschwendtner, Tom Eustace, Totati, Younes Jaaidi, alefra, dario-piotrowicz, markostanimirovic, mgechev, piyush132000, sten-bone and vivekkoya

    • 14.0.1 - 2022-06-08
    from @angular/animations GitHub release notes
    Package name: @angular/common
    • 14.0.2 - 2022-06-15

      14.0.2 (2022-06-15)

      common

      Commit Description
      fix - ef5cba3df7 allow null in ngComponentOutlet (#46280)

      compiler-cli

      Commit Description
      fix - 8ecfd71fd7 don't emit empty providers array (#46301)
      fix - b92c1a6ada use inline type-check blocks for components outside rootDir (#46096)

      core

      Commit Description
      fix - 3fd8948b4a Resolve forwardRef declarations for jit (#46334)

      Special Thanks

      Alex Rickabaugh, Andrew Scott, Badawi7, Daniel Schmitz, Derek Cormier, JoostK, Kevin Davila, Kristiyan Kostadinov, Paul Draper, Paul Gschwendtner, Tom Eustace, Totati, Younes Jaaidi, alefra, dario-piotrowicz, markostanimirovic, mgechev, piyush132000, sten-bone and vivekkoya

    • 14.0.1 - 2022-06-08
    from @angular/common GitHub release notes
    Package name: @angular/compiler
    • 14.0.2 - 2022-06-15

      14.0.2 (2022-06-15)

      common

      Commit Description
      fix - ef5cba3df7 allow null in ngComponentOutlet (#46280)

      compiler-cli

      Commit Description
      fix - 8ecfd71fd7 don't emit empty providers array (#46301)
      fix - b92c1a6ada use inline type-check blocks for components outside rootDir (#46096)

      core

      Commit Description
      fix - 3fd8948b4a Resolve forwardRef declarations for jit (#46334)

      Special Thanks

      Alex Rickabaugh, Andrew Scott, Badawi7, Daniel Schmitz, Derek Cormier, JoostK, Kevin Davila, Kristiyan Kostadinov, Paul Draper, Paul Gschwendtner, Tom Eustace, Totati, Younes Jaaidi, alefra, dario-piotrowicz, markostanimirovic, mgechev, piyush132000, sten-bone and vivekkoya

    • 14.0.1 - 2022-06-08
    from @angular/compiler GitHub release notes
    Package name: @angular/core
    • 14.0.2 - 2022-06-15

      14.0.2 (2022-06-15)

      common

      Commit Description
      fix - ef5cba3df7 allow null in ngComponentOutlet (#46280)

      compiler-cli

      Commit Description
      fix - 8ecfd71fd7 don't emit empty providers array (#46301)
      fix - b92c1a6ada use inline type-check blocks for components outside rootDir (#46096)

      core

      Commit Description
      fix - 3fd8948b4a Resolve forwardRef declarations for jit (#46334)

      Special Thanks

      Alex Rickabaugh, Andrew Scott, Badawi7, Daniel Schmitz, Derek Cormier, JoostK, Kevin Davila, Kristiyan Kostadinov, Paul Draper, Paul Gschwendtner, Tom Eustace, Totati, Younes Jaaidi, alefra, dario-piotrowicz, markostanimirovic, mgechev, piyush132000, sten-bone and vivekkoya

    • 14.0.1 - 2022-06-08
    from @angular/core GitHub release notes
    Package name: @angular/forms
    • 14.0.2 - 2022-06-15

      14.0.2 (2022-06-15)

      common

      Commit Description
      fix - ef5cba3df7 allow null in ngComponentOutlet (#46280)

      compiler-cli

      Commit Description
      fix - 8ecfd71fd7 don't emit empty providers array (#46301)
      fix - b92c1a6ada use inline type-check blocks for components outside rootDir (#46096)

      core

      Commit Description
      fix - 3fd8948b4a Resolve forwardRef declarations for jit (#46334)

      Special Thanks

      Alex Rickabaugh, Andrew Scott, Badawi7, Daniel Schmitz, Derek Cormier, JoostK, Kevin Davila, Kristiyan Kostadinov, Paul Draper, Paul Gschwendtner, Tom Eustace, Totati, Younes Jaaidi, alefra, dario-piotrowicz, markostanimirovic, mgechev, piyush132000, sten-bone and vivekkoya

    • 14.0.1 - 2022-06-08
    from @angular/forms GitHub release notes
    Package name: @angular/platform-browser
    • 14.0.2 - 2022-06-15

      14.0.2 (2022-06-15)

      common

      Commit Description
      fix - ef5cba3df7 allow null in ngComponentOutlet (#46280)

      compiler-cli

      Commit Description
      fix - 8ecfd71fd7 don't emit empty providers array (#46301)
      fix - b92c1a6ada use inline type-check blocks for components outside rootDir (#46096)

      core

      Commit Description
      fix - 3fd8948b4a Resolve forwardRef declarations for jit (#46334)

      Special Thanks

      Alex Rickabaugh, Andrew Scott, Badawi7, Daniel Schmitz, Derek Cormier, JoostK, Kevin Davila, Kristiyan Kostadinov, Paul Draper, Paul Gschwendtner, Tom Eustace, Totati, Younes Jaaidi, alefra, dario-piotrowicz, markostanimirovic, mgechev, piyush132000, sten-bone and vivekkoya

    • 14.0.1 - 2022-06-08
    from @angular/platform-browser GitHub release notes
    Package name: @angular/platform-browser-dynamic from @angular/platform-browser-dynamic GitHub release notes
    Package name: @angular/router from @angular/router GitHub release notes
    Commit messages
    Package name: @angular/animations
    • f41498e release: cut the v14.0.2 release
    • ddc2e70 ci: override existing snapshot tag if publish snapshot job is restarted (#46366)
    • 469d9b6 feat(docs-infra): show dark scrollbars in dark mode (#46363)
    • d2470cc docs: fix code style (#45527)
    • ce74bea docs: fix multicast observable example output (#46127)
    • 12edfad build(bazel): enable runfiles (#46313)
    • 4a1ff28 refactor(compiler-cli): add `forceEmit` flag to `performCompilation` (#46355)
    • 0abfa76 docs(core): fix broken link <BLANK LINE> Dead link is updated with new, working, and updated link. (#46359)
    • b5d5f76 docs: Adding a book "Angular from Scratch" (#46352)
    • a0f3c81 build: update angular version of in-memory-web-api (#46344)
    • 3fd8948 fix(core): Resolve forwardRef declarations for jit (#46334)
    • b92c1a6 fix(compiler-cli): use inline type-check blocks for components outside `rootDir` (#46096)
    • 8ac3513 docs: Add kevindaviladev to contributors (#46330)
    • 75c953f docs: add angular#bundler to Enforcing Trusted Types section (#45450)
    • bd9bf1d docs: modify header and path (#45828)
    • 9b5c493 docs: modify import (#45828)
    • f7d4d13 docs: move ZippyToggleDirective (#45828)
    • 621ab9f docs: remove Component and Directives (#45828)
    • 6b82b64 docs: create file to improve docs (#45828)
    • bcef929 docs: modify header and path of code-example (#45828)
    • b60d15c fix(docs-infra): improve accessibility of aio-select component (#46013)
    • cac6ef7 build: update dependency @ types/chrome to ^0.0.190 (#46017)
    • fc97c76 fix(docs-infra): add missing aria-labels to contributors page (#46324)
    • 77ae8e1 refactor(router): clean up internal hooks (#46321)

    Compare

    Package name: @angular/common
    • f41498e release: cut the v14.0.2 release
    • ddc2e70 ci: override existing snapshot tag if publish snapshot job is restarted (#46366)
    • 469d9b6 feat(docs-infra): show dark scrollbars in dark mode (#46363)
    • d2470cc docs: fix code style (#45527)
    • ce74bea docs: fix multicast observable example output (#46127)
    • 12edfad build(bazel): enable runfiles (#46313)
    • 4a1ff28 refactor(compiler-cli): add `forceEmit` flag to `performCompilation` (#46355)
    • 0abfa76 docs(core): fix broken link <BLANK LINE> Dead link is updated with new, working, and updated link. (#46359)
    • b5d5f76 docs: Adding a book "Angular from Scratch" (#46352)
    • a0f3c81 build: update angular version of in-memory-web-api (#46344)
    • 3fd8948 fix(core): Resolve forwardRef declarations for jit (#46334)
    • b92c1a6 fix(compiler-cli): use inline type-check blocks for components outside `rootDir` (#46096)
    • 8ac3513 docs: Add kevindaviladev to contributors (#46330)
    • 75c953f docs: add angular#bundler to Enforcing Trusted Types section (#45450)
    • bd9bf1d docs: modify header and path (#45828)
    • 9b5c493 docs: modify import (#45828)
    • f7d4d13 docs: move ZippyToggleDirective (#45828)
    • 621ab9f docs: remove Component and Directives (#45828)
    • 6b82b64 docs: create file to improve docs (#45828)
    • bcef929 docs: modify header and path of code-example (#45828)
    • b60d15c fix(docs-infra): improve accessibility of aio-select component (#46013)
    • cac6ef7 build: update dependency @ types/chrome to ^0.0.190 (#46017)
    • fc97c76 fix(docs-infra): add missing aria-labels to contributors page (#46324)
    • 77ae8e1 refactor(router): clean up internal hooks (#46321)

    Compare

    Package name: @angular/compiler
    • f41498e release: cut the v14.0.2 release
    • ddc2e70 ci: override existing snapshot tag if publish snapshot job is restarted (#46366)
    • 469d9b6 feat(docs-infra): show dark scrollbars in dark mode (#46363)
    • d2470cc docs: fix code style (#45527)
    • ce74bea docs: fix multicast observable example output (#46127)
    • 12edfad build(bazel): enable runfiles (#46313)
    • 4a1ff28 refactor(compiler-cli): add `forceEmit` flag to `performCompilation` (#46355)
    • 0abfa76 docs(core): fix broken link <BLANK LINE> Dead link is updated with new, working, and updated link. (#46359)
    • b5d5f76 docs: Adding a book "Angular from Scratch" (#46352)
    • a0f3c81 build: update angular version of in-memory-web-api (#46344)
    • 3fd8948 fix(core): Resolve forwardRef declarations for jit (#46334)
    • b92c1a6 fix(compiler-cli): use inline type-check blocks for components outside `rootDir` (#46096)
    • 8ac3513 docs: Add kevindaviladev to contributors (#46330)
    • 75c953f docs: add angular#bundler to Enforcing Trusted Types section (#45450)
    • bd9bf1d docs: modify header and path (#45828)
    • 9b5c493 docs: modify import (#45828)
    • f7d4d13 docs: move ZippyToggleDirective (#45828)
    • 621ab9f docs: remove Component and Directives (#45828)
    • 6b82b64 docs: create file to improve docs (#45828)
    • bcef929 docs: modify header and path of code-example (#45828)
    • b60d15c fix(docs-infra): improve accessibility of aio-select component (#46013)
    • cac6ef7 build: update dependency @ types/chrome to ^0.0.190 (#46017)
    • fc97c76 fix(docs-infra): add missing aria-labels to contributors page (#46324)
    • 77ae8e1 refactor(router): clean up internal hooks (#46321)

    Compare

    Package name: @angular/core
    • f41498e release: cut the v14.0.2 release
    • ddc2e70 ci: override existing snapshot tag if publish snapshot job is restarted (#46366)
    • 469d9b6 feat(docs-infra): show dark scrollbars in dark mode (#46363)
    • d2470cc docs: fix code style (#45527)
    • ce74bea docs: fix multicast observable example output (#46127)
    • 12edfad build(bazel): enable runfiles (#46313)
    • 4a1ff28 refactor(compiler-cli): add `forceEmit` flag to `performCompilation` (#46355)
    • 0abfa76 docs(core): fix broken link <BLANK LINE> Dead link is updated with new, working, and updated link. (#46359)
    • b5d5f76 docs: Adding a book "Angular from Scratch" (#46352)
    • a0f3c81 build: update angular version of in-memory-web-api (#46344)
    • 3fd8948 fix(core): Resolve forwardRef declarations for jit (#46334)
    • b92c1a6 fix(compiler-cli): use inline type-check blocks for components outside `rootDir` (#46096)
    • 8ac3513 docs: Add kevindaviladev to contributors (#46330)
    • 75c953f docs: add angular#bundler to Enforcing Trusted Types section (#45450)
    • bd9bf1d docs: modify header and path (#45828)
    • 9b5c493 docs: modify import (#45828)
    • f7d4d13 docs: move ZippyToggleDirective (#45828)
    • 621ab9f docs: remove Component and Directives (#45828)
    • 6b82b64 docs: create file to improve docs (#45828)
    • bcef929 docs: modify header and path of code-example (#45828)
    • b60d15c fix(docs-infra): improve accessibility of aio-select component (#46013)
    • cac6ef7 build: update dependency @ types/chrome to ^0.0.190 (#46017)
    • fc97c76 fix(docs-infra): add missing aria-labels to contributors page (#46324)
    • 77ae8e1 refactor(router): clean up internal hooks (#46321)

    Compare

    Package name: @angular/forms
    • f41498e release: cut the v14.0.2 release
    • ddc2e70 ci: override existing snapshot tag if publish snapshot job is restarted (#46366)
    • 469d9b6 feat(docs-infra): show dark scrollbars in dark mode (#46363)
    • d2470cc docs: fix code style (#45527)
    • ce74bea docs: fix multicast observable example output (#46127)
    • 12edfad build(bazel): enable runfiles (#46313)
    • 4a1ff28 refactor(compiler-cli): add `forceEmit` flag to `performCompilation` (#46355)
    • 0abfa76 docs(core): fix broken link <BLANK LINE> Dead link is updated with new, working, and updated link. (#46359)
    • b5d5f76 docs: Adding a book "Angular from Scratch" (#46352)
    • a0f3c81 build: update angular version of in-memory-web-api (#46344)
    • 3fd8948 fix(core): Resolve forwardRef declarations for jit (#46334)
    • b92c1a6 fix(compiler-cli): use inline type-check blocks for components outside `rootDir` (#46096)
    • 8ac3513 docs: Add kevindaviladev to contributors (#46330)
    • 75c953f docs: add angular#bundler to Enforcing Trusted Types section (#45450)
    • bd9bf1d docs: modify header and path (#45828)
    • 9b5c493 docs: modify import (#45828)
    • f7d4d13 docs: move ZippyToggleDirective (#45828)
    • 621ab9f docs: remove Component and Directives (#45828)
    • 6b82b64 docs: create file to improve docs (#45828)
    • bcef929 docs: modify header and path of code-example (#45828)
    • b60d15c fix(docs-infra): improve accessibility of aio-select component (#46013)
    • cac6ef7 build: update dependency @ types/chrome to ^0.0.190 (#46017)
    • fc97c76 fix(docs-infra): add missing aria-labels to contributors page (#46324)
    • 77ae8e1 refactor(router): clean up internal hooks (#46321)

    Compare

    Package name: @angular/platform-browser
    • f41498e release: cut the v14.0.2 release
    • ddc2e70 ci: override existing snapshot tag if publish snapshot job is restarted (#46366)
    • 469d9b6 feat(docs-infra): show dark scrollbars in dark mode (#46363)
    • d2470cc docs: fix code style (#45527)
    • ce74bea docs: fix multicast observable example output (#46127)
    • 12edfad build(bazel): enable runfiles (#46313)
    • 4a1ff28 refactor(compiler-cli): add `forceEmit` flag to `performCompilation` (#46355)
    • 0abfa76 docs(core): fix broken link <BLANK LINE> Dead link is updated with new, working, and updated link. (#46359)
    • b5d5f76 docs: Adding a book "Angular from Scratch" (#46352)
    • a0f3c81 build: update angular version of in-memory-web-api (#46344)
    • 3fd8948 fix(core): Resolve forwardRef declarations for jit (#46334)
    • b92c1a6 fix(compiler-cli): use inline type-check blocks for components outside `rootDir` (#46096)
    • 8ac3513 docs: Add kevindaviladev to contributors (#46330)
    • 75c953f docs: add angular#bundler to Enforcing Trusted Types section (#45450)
    • bd9bf1d docs: modify header and path (#45828)
    • 9b5c493 docs: modify import (#45828)
    • f7d4d13 docs: move ZippyToggleDirective (#45828)
    • 621ab9f docs: remove Component and Directives (#45828)
    • 6b82b64 docs: create file to improve docs (#45828)
    • bcef929 docs: modify header and path of code-example (#45828)
    • b60d15c fix(docs-infra): improve accessibility of aio-select component (#46013)
    • cac6ef7 build: update dependency @ types/chrome to ^0.0.190 (#46017)
    • fc97c76 fix(docs-infra): add missing aria-labels to contributors page (#46324)
    • 77ae8e1 refactor(router): clean up internal hooks (#46321)

    Compare

    Package name: @angular/platform-browser-dynamic
    • f41498e release: cut the v14.0.2 release
    • ddc2e70 ci: override existing snapshot tag if publish snapshot job is restarted (#46366)
    • 469d9b6 feat(docs-infra): show dark scrollbars in dark mode (#46363)
    • d2470cc docs: fix code style (#45527)
    • ce74bea docs: fix multicast observable example output (#46127)
    • 12edfad build(bazel): enable runfiles (#46313)
    • 4a1ff28 refactor(compiler-cli): add `forceEmit` flag to `performCompilation` (#46355)
    • 0abfa76 docs(core): fix broken link <BLANK LINE> Dead link is updated with new, working, and updated link. (#46359)
    • b5d5f76 docs: Adding a book "Angular from Scratch" (#46352)
    • a0f3c81 build: update angular version of in-memory-web-api (#46344)
    • 3fd8948 fix(core): Resolve forwardRef declarations for jit (#46334)
    • b92c1a6 fix(compiler-cli): use inline type-check blocks for components outside `rootDir` (#46096)
    • 8ac3513 docs: Add kevindaviladev to contributors (#46330)
    • 75c953f docs: add angular#bundler to Enforcing Trusted Types section (#45450)
    • bd9bf1d docs: modify header and path (#45828)
    • 9b5c493 docs: modify import (#45828)
    • f7d4d13 docs: move ZippyToggleDirective (#45828)
    • 621ab9f docs: remove Component and Directives (#45828)
    • 6b82b64 docs: create file to improve docs (#45828)
    • bcef929 docs: modify header and path of code-example (#45828)
    • b60d15c fix(docs-infra): improve accessibility of aio-select component (#46013)
    • cac6ef7 build: update dependency @ types/chrome to ^0.0.190 (#46017)
    • fc97c76 fix(docs-infra): add missing aria-labels to contributors page (#46324)
    • 77ae8e1 refactor(router): clean up internal hooks (#46321)

    Compare

    Package name: @angular/router
  • [Snyk] Upgrade zone.js from 0.11.5 to 0.11.6

    [Snyk] Upgrade zone.js from 0.11.5 to 0.11.6

    Snyk has created this PR to upgrade zone.js from 0.11.5 to 0.11.6.

    merge advice :information_source: Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


    • The recommended version is 1 version ahead of your current version.
    • The recommended version was released 25 days ago, on 2022-06-15.
    Release notes
    Package name: zone.js from zone.js GitHub release notes
    Commit messages
    Package name: zone.js
    • 1120d54 release: cut the zone.js-0.11.6 release (#46232)
    • 1278d2a docs: fix multicast observable example output (#46127)
    • 2c8fd2b build(bazel): enable runfiles (#46313)
    • 714183d refactor(compiler-cli): add `forceEmit` flag to `performCompilation` (#46355)
    • 86303f7 docs(core): fix broken link <BLANK LINE> Dead link is updated with new, working, and updated link. (#46359)
    • 72e6a94 refactor(router): Update `recognize` to use `Observable` instead of `Promise` (#46021)
    • de058bb feat(router): Add CanMatch guard to control whether a Route should match (#46021)
    • 96f5c97 refactor(router): Move runCanLoadGuards to same location as similar functions (#46021)
    • 9ab3261 docs: Adding a book "Angular from Scratch" (#46352)
    • d6880c9 build: update angular version of in-memory-web-api (#46344)
    • b1a3dec fix(core): Resolve forwardRef declarations for jit (#46334)
    • 131d029 feat(compiler-cli): detect missing control flow directive imports in standalone components (#46146)
    • f35f475 fix(compiler-cli): use inline type-check blocks for components outside `rootDir` (#46096)
    • 71b6b9e docs: Add kevindaviladev to contributors (#46330)
    • adb21a2 docs: add angular#bundler to Enforcing Trusted Types section (#45450)
    • 55a0efe docs: modify header and path (#45828)
    • da8ea7d docs: modify import (#45828)
    • eafe988 docs: move ZippyToggleDirective (#45828)
    • 57fa804 docs: remove Component and Directives (#45828)
    • 008111d docs: create file to improve docs (#45828)
    • d6c370b docs: modify header and path of code-example (#45828)
    • 974da3f fix(docs-infra): improve accessibility of aio-select component (#46013)
    • 4b3baf2 build: update dependency @ types/chrome to ^0.0.190 (#46017)
    • 5e20f60 fix(docs-infra): add missing aria-labels to contributors page (#46324)

    Compare


    Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

    For more information:

    ๐Ÿง View latest project report

    ๐Ÿ›  Adjust upgrade PR settings

    ๐Ÿ”• Ignore this dependency or unsubscribe from future upgrade PRs

    opened by snyk-bot 0
Releases(v0.0.6)
Owner
Yariv Katz
https://il.linkedin.com/in/yariv-katz
Yariv Katz
Native AngularJS (Angular) directives for Bootstrap

Native AngularJS (Angular) directives for Bootstrap. Smaller footprint (20kB gzipped), no 3rd party JS dependencies (jQuery, bootstrap JS) required. Please read the README.md file before submitting an issue!

AngularUI 14.4k Jan 3, 2023
Angular Library workspace to creating and testing angular libraries

Library Workspace Run Locally Clone the project https://github.com/sametcelikbicak/library-workspace.git Go to the library project directory cd li

Samet ร‡ELฤฐKBIร‡AK 4 Nov 1, 2022
Sam4Sc - a migration assistant for Angular to SCAM (Single Angular Component Modules) and Standalone Components

Sam4Sc - a migration assistant for Angular to SCAM (Single Angular Component Modules) and Standalone Components

Rainer Hahnekamp 7 Nov 16, 2022
Clarity Angular is a scalable, accessible, customizable, open-source design system built for Angular.

Getting Started Clarity Angular is published as two npm packages: Contains the static styles for building HTML components. Contains the Angular compon

VMware Clarity 145 Dec 29, 2022
An example application that uses file-based routing with Angular, Analog, Vite with the Angular Router

Angular, Vite, and File-based routes This is an example application that uses Angular, Analog, and Vite for file-based routing. Routes are places in t

Brandon 9 Sep 25, 2022
Component infrastructure and Material Design components for Angular

Official components for Angular The Angular team builds and maintains both common UI components and tools to help you build your own custom components

Angular 23.2k Jan 3, 2023
๐Ÿš€ Style and Component Library for Angular

ngx-ui Component & Style Library for Angular by Swimlane. Installing npm i @swimlane/ngx-ui --S Install the project's peer depencencies (moment, codem

Swimlane 654 Dec 24, 2022
A set of UI components for use with Angular 2 and Bootstrap 4.

#Fuel-UI A set of UI components for use with Angular 2 and Bootstrap 4. See Fuel-UI homepage for live demo and documentation. ##Dependencies Node Gulp

Fuel Interactive 302 Jul 4, 2022
An enterprise-class UI components based on At UI Design and Angular. ๐Ÿš€ ๐Ÿš€ ๐Ÿš€

An enterprise-class UI components based on At UI Design and Angular. ?? ?? ??

ๅกŸๆ„›้Žต้•ždeๆ คไปฏ 113 Dec 16, 2022
Angular multiselect component for web application. Easy to integrate and use.

Angular multiselect component for web application. Easy to integrate and use.

Dinh The Loc 2 Apr 20, 2022
๐Ÿ“ฆ SVGs, fast and developer friendly in Angular

View settings all icons fixed size e.g. 30px button to align all icons distributes button to align all icons onscreen button to align all icons offscr

Push Based 18 Nov 28, 2022
NGX-YOUI is a Highly customizable library of Angular UI components for content and styles

NGX-YOUI NGX-YOUI is an Angular UI Library that can be highly customized with content and styles. You can easily integrate with other CSS frameworks a

NGX-YOUI 5 Nov 29, 2022
Monorepo for all the tooling related to using ESLint with Angular

Angular ESLint Monorepo for all the tooling which enables ESLint to lint Angular projects

angular-eslint 1.4k Dec 29, 2022
Reactive Extensions for Angular

RxAngular offers a comprehensive toolset for handling fully reactive Angular applications with the main focus on runtime performance and template rendering.

RxAngular 1.5k Jan 5, 2023
Semantic UI Angular Integrations

Semantic-UI-Angular Semantic-UI-Angular is a pure AngularJS 1.x set of directives for Semantic-UI components. We are considering Angular 2 support in

Semantic Org 561 Dec 28, 2022
The code for a set of Angular 6+ components for the PatternFly project.

The code for a set of Angular 6+ components for the PatternFly project. Note that the release/3.x branch supports Angular 4 and 5.

PatternFly 87 Nov 15, 2022
Angular 11 & Bootstrap 5 & Material Design 2.0 UI KIT

MDB 5 Angular Angular 12 & Bootstrap 5 & Material Design 2.0 UI KIT >> Get Started in 4 steps >> MDBAngular 5 Demo 500+ material UI components Super s

MDBootstrap 1.1k Dec 30, 2022
Angular UI Component Library based on Ant Design

NG-ZORRO An enterprise-class Angular UI component library based on Ant Design. English | ็ฎ€ไฝ“ไธญๆ–‡ โœจ Features An enterprise-class UI design system for Angu

NG-ZORRO 8.3k Jan 6, 2023
Angular 2 building blocks :package: based on Semantic UI

Angular2 & Semantic UI Angular2 - Semantic UI Live demo ng-semantic.herokuapp.com Angular 2 Semantic UI version: 2.2.2 Installation npm install ng-sem

Vlado Tesanovic 995 Dec 23, 2022