|
| 1 | +import { Angulartics2, Angulartics2OnModule } from 'angulartics2'; |
| 2 | +import { CUSTOM_ELEMENTS_SCHEMA, Component } from '@angular/core'; |
1 | 3 | import { Company, CompanyMember, CompanyMemberRole } from 'src/app/models/company'; |
2 | 4 |
|
3 | | -import { Angulartics2, Angulartics2OnModule } from 'angulartics2'; |
| 5 | +import { AlertComponent } from '../ui-components/alert/alert.component'; |
4 | 6 | import { CompanyService } from 'src/app/services/company.service'; |
5 | | -import { Component, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; |
| 7 | +import { DeleteDomainDialogComponent } from './delete-domain-dialog/delete-domain-dialog.component'; |
6 | 8 | import { DeleteMemberDialogComponent } from './delete-member-dialog/delete-member-dialog.component'; |
| 9 | +import { FormsModule } from '@angular/forms'; |
7 | 10 | import { InviteMemberDialogComponent } from './invite-member-dialog/invite-member-dialog.component'; |
| 11 | +import { MatButtonModule } from '@angular/material/button'; |
8 | 12 | import { MatDialog } from '@angular/material/dialog'; |
9 | | -import { RevokeInvitationDialogComponent } from './revoke-invitation-dialog/revoke-invitation-dialog.component'; |
10 | | -import { SubscriptionPlans } from 'src/app/models/user'; |
11 | | -import { UserService } from 'src/app/services/user.service'; |
12 | | -import { environment } from 'src/environments/environment'; |
13 | | -import { orderBy } from "lodash"; |
14 | | -import { FormsModule } from '@angular/forms'; |
15 | 13 | import { MatFormFieldModule } from '@angular/material/form-field'; |
16 | | -import { MatInputModule } from '@angular/material/input'; |
17 | | -import { MatButtonModule } from '@angular/material/button'; |
18 | 14 | import { MatIconModule } from '@angular/material/icon'; |
| 15 | +import { MatInputModule } from '@angular/material/input'; |
19 | 16 | import { MatSelectModule } from '@angular/material/select'; |
20 | 17 | import { MatSlideToggleModule } from '@angular/material/slide-toggle'; |
21 | | -import { MatTooltipModule } from '@angular/material/tooltip'; |
22 | 18 | import { MatTableModule } from '@angular/material/table'; |
23 | | -import { AlertComponent } from '../ui-components/alert/alert.component'; |
| 19 | +import { MatTooltipModule } from '@angular/material/tooltip'; |
| 20 | +import { NgIf } from '@angular/common'; |
24 | 21 | import { PlaceholderCompanyComponent } from '../skeletons/placeholder-company/placeholder-company.component'; |
25 | 22 | import { PlaceholderTableDataComponent } from '../skeletons/placeholder-table-data/placeholder-table-data.component'; |
26 | | -import { NgIf } from '@angular/common'; |
| 23 | +import { RevokeInvitationDialogComponent } from './revoke-invitation-dialog/revoke-invitation-dialog.component'; |
27 | 24 | import { RouterModule } from '@angular/router'; |
28 | | -import { DeleteDomainDialogComponent } from './delete-domain-dialog/delete-domain-dialog.component'; |
29 | | -import { Title } from '@angular/platform-browser'; |
30 | 25 | import { Subscription } from 'rxjs'; |
| 26 | +import { SubscriptionPlans } from 'src/app/models/user'; |
| 27 | +import { Title } from '@angular/platform-browser'; |
| 28 | +import { UserService } from 'src/app/services/user.service'; |
| 29 | +import { environment } from 'src/environments/environment'; |
| 30 | +import { orderBy } from "lodash"; |
31 | 31 |
|
32 | 32 | @Component({ |
33 | 33 | selector: 'app-company', |
|
0 commit comments