Commit 660034702810baf89633d63e9db363abd12481d5

Authored by Vladyslav_Prykhodko
1 parent e7e3c964

Moved component tb-compact to shared module

@@ -21,7 +21,6 @@ import { AddEntityDialogComponent } from '@home/components/entity/add-entity-dia @@ -21,7 +21,6 @@ import { AddEntityDialogComponent } from '@home/components/entity/add-entity-dia
21 import { EntitiesTableComponent } from '@home/components/entity/entities-table.component'; 21 import { EntitiesTableComponent } from '@home/components/entity/entities-table.component';
22 import { DetailsPanelComponent } from '@home/components/details-panel.component'; 22 import { DetailsPanelComponent } from '@home/components/details-panel.component';
23 import { EntityDetailsPanelComponent } from '@home/components/entity/entity-details-panel.component'; 23 import { EntityDetailsPanelComponent } from '@home/components/entity/entity-details-panel.component';
24 -import { ContactComponent } from '@home/components/contact.component';  
25 import { AuditLogDetailsDialogComponent } from '@home/components/audit-log/audit-log-details-dialog.component'; 24 import { AuditLogDetailsDialogComponent } from '@home/components/audit-log/audit-log-details-dialog.component';
26 import { AuditLogTableComponent } from '@home/components/audit-log/audit-log-table.component'; 25 import { AuditLogTableComponent } from '@home/components/audit-log/audit-log-table.component';
27 import { EventTableHeaderComponent } from '@home/components/event/event-table-header.component'; 26 import { EventTableHeaderComponent } from '@home/components/event/event-table-header.component';
@@ -74,7 +73,6 @@ import { SelectTargetStateDialogComponent } from '@home/components/dashboard/sel @@ -74,7 +73,6 @@ import { SelectTargetStateDialogComponent } from '@home/components/dashboard/sel
74 AddEntityDialogComponent, 73 AddEntityDialogComponent,
75 DetailsPanelComponent, 74 DetailsPanelComponent,
76 EntityDetailsPanelComponent, 75 EntityDetailsPanelComponent,
77 - ContactComponent,  
78 AuditLogTableComponent, 76 AuditLogTableComponent,
79 AuditLogDetailsDialogComponent, 77 AuditLogDetailsDialogComponent,
80 EventContentDialogComponent, 78 EventContentDialogComponent,
@@ -126,7 +124,6 @@ import { SelectTargetStateDialogComponent } from '@home/components/dashboard/sel @@ -126,7 +124,6 @@ import { SelectTargetStateDialogComponent } from '@home/components/dashboard/sel
126 AddEntityDialogComponent, 124 AddEntityDialogComponent,
127 DetailsPanelComponent, 125 DetailsPanelComponent,
128 EntityDetailsPanelComponent, 126 EntityDetailsPanelComponent,
129 - ContactComponent,  
130 AuditLogTableComponent, 127 AuditLogTableComponent,
131 EventTableComponent, 128 EventTableComponent,
132 RelationTableComponent, 129 RelationTableComponent,
ui-ngx/src/app/shared/components/contact.component.html renamed from ui-ngx/src/app/modules/home/components/contact.component.html
ui-ngx/src/app/shared/components/contact.component.ts renamed from ui-ngx/src/app/modules/home/components/contact.component.ts
@@ -133,6 +133,7 @@ import { JsonObjectEditDialogComponent } from '@shared/components/dialog/json-ob @@ -133,6 +133,7 @@ import { JsonObjectEditDialogComponent } from '@shared/components/dialog/json-ob
133 import { HistorySelectorComponent } from './components/time/history-selector/history-selector.component'; 133 import { HistorySelectorComponent } from './components/time/history-selector/history-selector.component';
134 import { EntityGatewaySelectComponent } from '@shared/components/entity/entity-gateway-select.component'; 134 import { EntityGatewaySelectComponent } from '@shared/components/entity/entity-gateway-select.component';
135 import { QueueTypeListComponent } from '@shared/components/queue/queue-type-list.component'; 135 import { QueueTypeListComponent } from '@shared/components/queue/queue-type-list.component';
  136 +import { ContactComponent } from '@shared/components/contact.component';
136 137
137 @NgModule({ 138 @NgModule({
138 providers: [ 139 providers: [
@@ -218,7 +219,8 @@ import { QueueTypeListComponent } from '@shared/components/queue/queue-type-list @@ -218,7 +219,8 @@ import { QueueTypeListComponent } from '@shared/components/queue/queue-type-list
218 TbJsonToStringDirective, 219 TbJsonToStringDirective,
219 JsonObjectEditDialogComponent, 220 JsonObjectEditDialogComponent,
220 HistorySelectorComponent, 221 HistorySelectorComponent,
221 - EntityGatewaySelectComponent 222 + EntityGatewaySelectComponent,
  223 + ContactComponent
222 ], 224 ],
223 imports: [ 225 imports: [
224 CommonModule, 226 CommonModule,
@@ -379,7 +381,8 @@ import { QueueTypeListComponent } from '@shared/components/queue/queue-type-list @@ -379,7 +381,8 @@ import { QueueTypeListComponent } from '@shared/components/queue/queue-type-list
379 TranslateModule, 381 TranslateModule,
380 JsonObjectEditDialogComponent, 382 JsonObjectEditDialogComponent,
381 HistorySelectorComponent, 383 HistorySelectorComponent,
382 - EntityGatewaySelectComponent 384 + EntityGatewaySelectComponent,
  385 + ContactComponent
383 ] 386 ]
384 }) 387 })
385 export class SharedModule { } 388 export class SharedModule { }