Skip to content

Commit b7c77e3

Browse files
authored
refactor: Remove unnecessary legacy imports for TooltipPosition (#2442)
This removes these lines: import { LegacyTooltipPosition as TooltipPosition } from '@angular/material/legacy-tooltip'; They are unnecessary. FIXES: WEB-167
1 parent f09d002 commit b7c77e3

File tree

14 files changed

+0
-14
lines changed

14 files changed

+0
-14
lines changed

src/app/products/fixed-deposit-products/fixed-deposit-product-stepper/fixed-deposit-product-settings-step/fixed-deposit-product-settings-step.component.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { Component, OnInit, Input } from '@angular/core';
22
import { UntypedFormGroup, UntypedFormBuilder, UntypedFormControl, Validators } from '@angular/forms';
3-
import { LegacyTooltipPosition as TooltipPosition } from '@angular/material/legacy-tooltip';
43

54
@Component({
65
selector: 'mifosx-fixed-deposit-product-settings-step',

src/app/products/fixed-deposit-products/fixed-deposit-product-stepper/fixed-deposit-product-terms-step/fixed-deposit-product-terms-step.component.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { Component, OnInit, Input } from '@angular/core';
22
import { UntypedFormGroup, UntypedFormBuilder, Validators } from '@angular/forms';
3-
import { LegacyTooltipPosition as TooltipPosition } from '@angular/material/legacy-tooltip';
43

54
@Component({
65
selector: 'mifosx-fixed-deposit-product-terms-step',

src/app/products/loan-products/loan-product-stepper/loan-product-currency-step/loan-product-currency-step.component.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { Component, OnInit, Input } from '@angular/core';
22
import { UntypedFormGroup, UntypedFormBuilder, Validators } from '@angular/forms';
3-
import { LegacyTooltipPosition as TooltipPosition } from '@angular/material/legacy-tooltip';
43

54
@Component({
65
selector: 'mifosx-loan-product-currency-step',

src/app/products/loan-products/loan-product-stepper/loan-product-details-step/loan-product-details-step.component.ts

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import { Component, OnInit, Input } from '@angular/core';
33
import { UntypedFormGroup, UntypedFormBuilder, Validators } from '@angular/forms';
44
import { Dates } from 'app/core/utils/dates';
5-
import { LegacyTooltipPosition as TooltipPosition } from '@angular/material/legacy-tooltip';
65

76
/** Custom Services */
87
import { SettingsService } from 'app/settings/settings.service';

src/app/products/saving-products/saving-product-stepper/saving-product-currency-step/saving-product-currency-step.component.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { Component, OnInit, Input } from '@angular/core';
22
import { UntypedFormGroup, UntypedFormBuilder, Validators } from '@angular/forms';
3-
import { LegacyTooltipPosition as TooltipPosition } from '@angular/material/legacy-tooltip';
43

54
@Component({
65
selector: 'mifosx-saving-product-currency-step',

src/app/products/saving-products/saving-product-stepper/saving-product-details-step/saving-product-details-step.component.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { Component, OnInit, Input } from '@angular/core';
22
import { UntypedFormGroup, UntypedFormBuilder, Validators } from '@angular/forms';
3-
import { LegacyTooltipPosition as TooltipPosition } from '@angular/material/legacy-tooltip';
43

54
@Component({
65
selector: 'mifosx-saving-product-details-step',

src/app/products/saving-products/saving-product-stepper/saving-product-settings-step/saving-product-settings-step.component.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { Component, OnInit, Input } from '@angular/core';
22
import { UntypedFormGroup, UntypedFormBuilder, UntypedFormControl, Validators } from '@angular/forms';
3-
import { LegacyTooltipPosition as TooltipPosition } from '@angular/material/legacy-tooltip';
43

54
@Component({
65
selector: 'mifosx-saving-product-settings-step',

src/app/products/saving-products/saving-product-stepper/saving-product-terms-step/saving-product-terms-step.component.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { Component, OnInit, Input } from '@angular/core';
22
import { UntypedFormGroup, UntypedFormBuilder, Validators } from '@angular/forms';
3-
import { LegacyTooltipPosition as TooltipPosition } from '@angular/material/legacy-tooltip';
43

54
@Component({
65
selector: 'mifosx-saving-product-terms-step',

src/app/products/share-products/share-product-stepper/share-product-accounting-step/share-product-accounting-step.component.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { Component, OnInit, Input } from '@angular/core';
22
import { UntypedFormGroup, UntypedFormBuilder, Validators, UntypedFormControl } from '@angular/forms';
3-
import { LegacyTooltipPosition as TooltipPosition } from '@angular/material/legacy-tooltip';
43

54
@Component({
65
selector: 'mifosx-share-product-accounting-step',

src/app/products/share-products/share-product-stepper/share-product-currency-step/share-product-currency-step.component.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { Component, OnInit, Input } from '@angular/core';
22
import { UntypedFormGroup, UntypedFormBuilder, Validators } from '@angular/forms';
3-
import { LegacyTooltipPosition as TooltipPosition } from '@angular/material/legacy-tooltip';
43

54
@Component({
65
selector: 'mifosx-share-product-currency-step',

src/app/products/share-products/share-product-stepper/share-product-details-step/share-product-details-step.component.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { Component, OnInit, Input } from '@angular/core';
22
import { UntypedFormGroup, UntypedFormBuilder, Validators } from '@angular/forms';
3-
import { LegacyTooltipPosition as TooltipPosition } from '@angular/material/legacy-tooltip';
43

54
@Component({
65
selector: 'mifosx-share-product-details-step',

src/app/products/share-products/share-product-stepper/share-product-market-price-step/share-product-market-price-step.component.ts

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import { Component, OnInit, Input } from '@angular/core';
33
import { UntypedFormGroup, UntypedFormBuilder, UntypedFormArray } from '@angular/forms';
44
import { MatDialog } from '@angular/material/dialog';
5-
import { LegacyTooltipPosition as TooltipPosition } from '@angular/material/legacy-tooltip';
65

76
/** Dialog Components */
87
import { FormDialogComponent } from 'app/shared/form-dialog/form-dialog.component';

src/app/products/share-products/share-product-stepper/share-product-settings-step/share-product-settings-step.component.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { Component, OnInit, Input } from '@angular/core';
22
import { UntypedFormGroup, UntypedFormBuilder, FormControl, Validators } from '@angular/forms';
3-
import { LegacyTooltipPosition as TooltipPosition } from '@angular/material/legacy-tooltip';
43

54
@Component({
65
selector: 'mifosx-share-product-settings-step',

src/app/products/share-products/share-product-stepper/share-product-terms-step/share-product-terms-step.component.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { Component, OnInit, Input } from '@angular/core';
22
import { UntypedFormGroup, UntypedFormBuilder, Validators } from '@angular/forms';
33
import { combineLatest } from 'rxjs';
4-
import { LegacyTooltipPosition as TooltipPosition } from '@angular/material/legacy-tooltip';
54

65
@Component({
76
selector: 'mifosx-share-product-terms-step',

0 commit comments

Comments
 (0)