96252: Make existing lodash imports tree-shakeable

This commit is contained in:
Yury Bondarenko
2022-10-24 12:39:27 +02:00
parent be43fcb47f
commit 47ae04986d
52 changed files with 74 additions and 54 deletions

View File

@@ -4,7 +4,8 @@ import { DynamicFormControlEvent, DynamicFormControlModel } from '@ng-dynamic-fo
import { combineLatest as observableCombineLatest, Observable, Subscription } from 'rxjs';
import { distinctUntilChanged, filter, find, map, mergeMap, take, tap } from 'rxjs/operators';
import { TranslateService } from '@ngx-translate/core';
import { findIndex, isEqual } from 'lodash';
import findIndex from 'lodash/findIndex';
import isEqual from 'lodash/isEqual';
import { FormBuilderService } from '../../../shared/form/builder/form-builder.service';
import { FormComponent } from '../../../shared/form/form.component';