-
Notifications
You must be signed in to change notification settings - Fork 195
Expand file tree
/
Copy pathelements.component.ts
More file actions
84 lines (82 loc) · 5.03 KB
/
Copy pathelements.component.ts
File metadata and controls
84 lines (82 loc) · 5.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// Elements
import { ElementNavComponent } from './nav/nav.component';
import { ElementIframeComponent } from './iframe/iframe.component';
import { ElementConnectComponent } from './connect/connect.component';
import { ElementContentComponent } from './content/content.component';
import { ElementsPartsComponent } from './replay/parts/parts.component';
import { ElementLeftBarComponent } from './left-bar/left-bar.component';
import { ElementsReplayMp4Component } from './replay/mp4/mp4.component';
import { ElementChatComponent } from '@app/elements/chat/chat.component';
import { ElementAssetTreeComponent } from './asset-tree/asset-tree.component';
import { ElementTermComponent } from '@app/elements/replay/term/term.component';
import { ElementDialogAlertComponent } from '@app/services/dialog/alert.service';
import { ElementLoginExpiredDialogComponent } from '@app/services/dialog/login-expired.service';
import { ElementSettingComponent } from '@app/elements/nav/setting/setting.component';
import { ElementUserFileComponent } from '@app/elements/nav/profile/profile.component';
import { ElementContentTabComponent } from './content/content-tab/content-tab.component';
import { ElementReplayGuacamoleComponent } from './replay/guacamole/guacamole.component';
import { ElementConnectorKokoComponent } from './content/content-window/koko/koko.component';
import { ElementConnectDialogComponent } from './connect/connect-dialog/connect-dialog.component';
import { ElementContentWindowComponent } from './content/content-window/content-window.component';
import { ElementContentFooterComponent } from './content/content-footer/content-footer.component';
import { ElementConnectorMagnusComponent } from './content/content-window/magnus/magnus.component';
import { ElementDownloadDialogComponent } from './connect/download-dialog/download-dialog.component';
import { ElementReplayAsciicastComponent } from '@app/elements/replay/asciicast/asciicast.component';
import { ElementConnectorNecComponent } from '@app/elements/content/content-window/nec/nec.component';
import { ElementFaceMonitorComponent } from '@app/elements/connect/face-monitor/face-monitor.component';
import { ElementACLDialogComponent } from '@app/services/connect-token/acl-dialog/acl-dialog.component';
import { ElementBatchACLDialogComponent } from '@app/services/connect-token/batch-acl-dialog/batch-acl-dialog.component';
import { ElementTreeFilterComponent } from '@app/elements/asset-tree/tree-filter/tree-filter.component';
import { ElementOrganizationComponent } from '@app/elements/left-bar/organization/organization.component';
import { ElementConnectorGuideComponent } from '@app/elements/content/content-window/guide/guide.component';
import { ElementCommandDialogComponent } from '@app/elements/content/command-dialog/command-dialog.component';
import { ElementSelectAccountComponent } from './connect/connect-dialog/select-account/select-account.component';
import { ElementConnectMethodComponent } from './connect/connect-dialog/connect-method/connect-method.component';
import { ElementConnectorDefaultComponent } from '@app/elements/content/content-window/default/default.component';
import { ElementAdvancedOptionComponent } from './connect/connect-dialog/advanced-option/advanced-option.component';
import { ElementContentViewComponent } from '@app/elements/content/content-window/content-view/content-view.component';
import { DynamicFormComponent } from '@app/elements/content/content-footer/variable-dynamic-form/variable-dynamic-form.component';
import { ElementSendCommandDialogComponent } from '@app/elements/content/content-footer/send-command-dialog/send-command-dialog.component';
import { ElementSendCommandWithVariableDialogComponent } from '@app/elements/content/content-footer/send-command-with-variable-dialog/send-command-with-variable-dialog.component';
export const ElementComponents = [
ElementLeftBarComponent,
ElementContentComponent,
ElementContentTabComponent,
ElementContentWindowComponent,
ElementConnectComponent,
ElementTreeFilterComponent,
ElementOrganizationComponent,
ElementUserFileComponent,
ElementNavComponent,
ElementChatComponent,
ElementIframeComponent,
ElementFaceMonitorComponent,
ElementAssetTreeComponent,
ElementConnectorKokoComponent,
ElementConnectorMagnusComponent,
ElementContentFooterComponent,
ElementConnectorNecComponent,
ElementConnectComponent,
ElementDownloadDialogComponent,
ElementReplayGuacamoleComponent,
ElementSettingComponent,
ElementConnectDialogComponent,
ElementConnectorDefaultComponent,
ElementContentViewComponent,
ElementSelectAccountComponent,
ElementReplayAsciicastComponent,
ElementAdvancedOptionComponent,
ElementConnectMethodComponent,
ElementsReplayMp4Component,
ElementConnectorGuideComponent,
ElementCommandDialogComponent,
ElementSendCommandDialogComponent,
ElementSendCommandWithVariableDialogComponent,
DynamicFormComponent,
ElementsPartsComponent,
ElementACLDialogComponent,
ElementBatchACLDialogComponent,
ElementDialogAlertComponent,
ElementLoginExpiredDialogComponent,
ElementTermComponent
];