Merge pull request #128 from microsoft/useRequestAnimationFrameInsteadOfSetTimeout

use requestAnimationFrame instead of setTimeOut
This commit is contained in:
noanutke 2019-07-08 14:54:39 +03:00 коммит произвёл GitHub
Родитель 7a4961352e 490890ba97
Коммит 7845d52e4a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -1,7 +1,7 @@
{
"$schema": "../../node_modules/ng-packagr/package.schema.json",
"name": "@angular-react/core",
"version": "1.0.0-next",
"version": "1.0.1",
"ngPackage": {
"deleteDestPath": true,
"whitelistedNonPeerDependencies": [

Просмотреть файл

@ -250,7 +250,7 @@ export abstract class ReactWrapperComponent<TProps extends {}> implements AfterC
const nativeElement = this.elementRef.nativeElement;
// We want to wait until child elements are rendered
afterRenderFinished(() => {
requestAnimationFrame(() => {
if (nativeElement.firstElementChild) {
const rootChildDisplay = getComputedStyle(nativeElement.firstElementChild).display;
nativeElement.style.display = rootChildDisplay;

Просмотреть файл

@ -1,7 +1,7 @@
{
"$schema": "../../node_modules/ng-packagr/package.schema.json",
"name": "@angular-react/fabric",
"version": "1.0.0-next",
"version": "1.0.1",
"ngPackage": {
"lib": {
"entryFile": "public-api.ts",