You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(component): use global render strategy in zone-less mode (#3379)
Closes#3342
BREAKING CHANGES:
The native local rendering strategy is replaced by global
in zone-less mode for better performance.
BEFORE:
The change detection is triggered via `changeDetectorRef.detectChanges`
in zone-less mode.
AFTER:
The change detection is triggered via `ɵmarkDirty` in zone-less mode.
0 commit comments