-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
Copy pathmodule.ts
206 lines (201 loc) · 9.49 KB
/
module.ts
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
// Copyright 2017 The Kubernetes Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import {NgModule} from '@angular/core';
import {MatTableModule} from '@angular/material/table';
import {SharedModule} from '../../shared.module';
import {DirectivesModule} from '../directives/module';
import {ActionbarComponent} from './actionbar/component';
import {ActionbarDetailActionsComponent} from './actionbar/detailactions/component';
import {ActionbarDetailDeleteComponent} from './actionbar/detailactions/delete/component';
import {ActionbarDetailEditComponent} from './actionbar/detailactions/edit/component';
import {ActionbarDetailExecComponent} from './actionbar/detailactions/exec/component';
import {ActionbarDetailLogsComponent} from './actionbar/detailactions/logs/component';
import {ActionbarDetailPinComponent} from './actionbar/detailactions/pin/component';
import {ActionbarDetailRestartComponent} from './actionbar/detailactions/restart/component';
import {ActionbarDetailScaleComponent} from './actionbar/detailactions/scale/component';
import {ActionbarDetailTriggerComponent} from './actionbar/detailactions/trigger/component';
import {DefaultActionbarComponent} from './actionbars/default/component';
import {LogsDefaultActionbarComponent} from './actionbars/logsdefault/component';
import {LogsExecDefaultActionbarComponent} from './actionbars/logsexecdefault/component';
import {LogsScaleDefaultActionbarComponent} from './actionbars/logsscaledefault/component';
import {PinDefaultActionbarComponent} from './actionbars/pindefault/component';
import {ScaleDefaultActionbarComponent} from './actionbars/scaledefault/component';
import {TriggerDefaultActionbarComponent} from './actionbars/triggerdefault/component';
import {BreadcrumbsComponent} from './breadcrumbs/component';
import {CardComponent} from './card/component';
import {ChipDialogComponent} from './chips/chipdialog/dialog';
import {ChipsComponent} from './chips/component';
import {ConditionListComponent} from './condition/component';
import {ContainerCardComponent} from './container/component';
import {CreatorCardComponent} from './creator/component';
import {DateComponent} from './date/component';
import {EndpointListComponent} from './endpoint/cardlist/component';
import {ExternalEndpointComponent} from './endpoint/external/component';
import {InternalEndpointComponent} from './endpoint/internal/component';
import {GraphComponent} from './graph/component';
import {GraphCardComponent} from './graphcard/component';
import {GraphMetricsComponent} from './graphmetrics/component';
import {HiddenPropertyComponent} from './hiddenproperty/component';
import {IngressRuleFlatListComponent} from './ingressrulelist/component';
import {ResourceLimitListComponent} from './limits/component';
import {ColumnComponent} from './list/column/component';
import {MenuComponent} from './list/column/menu/component';
import {CardListFilterComponent} from './list/filter/component';
import {RowDetailComponent} from './list/rowdetail/component';
import {LoadingSpinnerComponent} from './list/spinner/component';
import {ListZeroStateComponent} from './list/zerostate/component';
import {NamespaceChangeDialogComponent} from './namespace/changedialog/dialog';
import {NamespaceSelectorComponent} from './namespace/component';
import {ObjectMetaComponent} from './objectmeta/component';
import {PodStatusCardComponent} from './podstatus/component';
import {PolicyRuleListComponent} from './policyrule/component';
import {ProbeComponent} from './probe/component';
import {PropertyComponent} from './property/component';
import {ProxyComponent} from './proxy/component';
import {ResourceQuotaListComponent} from './quotas/component';
import {ClusterRoleListComponent} from './resourcelist/clusterrole/component';
import {ClusterRoleBindingListComponent} from './resourcelist/clusterrolebinding/component';
import {ConfigMapListComponent} from './resourcelist/configmap/component';
import {CRDListComponent} from './resourcelist/crd/component';
import {CRDObjectListComponent} from './resourcelist/crdobject/component';
import {CRDVersionListComponent} from './resourcelist/crdversion/component';
import {CronJobListComponent} from './resourcelist/cronjob/component';
import {DaemonSetListComponent} from './resourcelist/daemonset/component';
import {DeploymentListComponent} from './resourcelist/deployment/component';
import {EventListComponent} from './resourcelist/event/component';
import {HorizontalPodAutoscalerListComponent} from './resourcelist/horizontalpodautoscaler/component';
import {IngressClassListComponent} from './resourcelist/ingressclass/component';
import {IngressListComponent} from './resourcelist/ingress/component';
import {JobListComponent} from './resourcelist/job/component';
import {NamespaceListComponent} from './resourcelist/namespace/component';
import {NetworkPolicyListComponent} from './resourcelist/networkpolicy/component';
import {NodeListComponent} from './resourcelist/node/component';
import {PersistentVolumeListComponent} from './resourcelist/persistentvolume/component';
import {PersistentVolumeClaimListComponent} from './resourcelist/persistentvolumeclaim/component';
import {PodListComponent} from './resourcelist/pod/component';
import {ReplicaSetListComponent} from './resourcelist/replicaset/component';
import {ReplicationControllerListComponent} from './resourcelist/replicationcontroller/component';
import {RoleListComponent} from './resourcelist/role/component';
import {RoleBindingListComponent} from './resourcelist/rolebinding/component';
import {SecretListComponent} from './resourcelist/secret/component';
import {ServiceListComponent} from './resourcelist/service/component';
import {ServiceAccountListComponent} from './resourcelist/serviceaccount/component';
import {StatefulSetListComponent} from './resourcelist/statefulset/component';
import {StorageClassListComponent} from './resourcelist/storageclass/component';
import {SecurityContextComponent} from './securitycontext/component';
import {CpuSparklineComponent} from './sparkline/cpu/component';
import {MemorySparklineComponent} from './sparkline/memory/component';
import {SubjectListComponent} from './subject/component';
import {TextInputComponent} from './textinput/component';
import {UploadFileComponent} from './uploadfile/component';
import {VolumeMountComponent} from './volumemount/component';
import {WorkloadStatusComponent} from './workloadstatus/component';
import {ZeroStateComponent} from './zerostate/component';
import { EnvironmentVariablesComponent } from './environmentvariables/component';
const components = [
ActionbarDetailActionsComponent,
ActionbarDetailDeleteComponent,
ActionbarDetailEditComponent,
ActionbarDetailScaleComponent,
ActionbarDetailLogsComponent,
ActionbarDetailExecComponent,
ActionbarDetailPinComponent,
ActionbarDetailRestartComponent,
ActionbarComponent,
ActionbarDetailTriggerComponent,
BreadcrumbsComponent,
CardComponent,
CardListFilterComponent,
ChipsComponent,
CronJobListComponent,
ClusterRoleListComponent,
ClusterRoleBindingListComponent,
ConfigMapListComponent,
ColumnComponent,
ChipDialogComponent,
ContainerCardComponent,
ConditionListComponent,
CreatorCardComponent,
CRDListComponent,
CRDObjectListComponent,
CRDVersionListComponent,
DaemonSetListComponent,
DateComponent,
DeploymentListComponent,
DefaultActionbarComponent,
EndpointListComponent,
EnvironmentVariablesComponent,
ExternalEndpointComponent,
EventListComponent,
GraphComponent,
GraphCardComponent,
GraphMetricsComponent,
HiddenPropertyComponent,
HorizontalPodAutoscalerListComponent,
IngressClassListComponent,
IngressListComponent,
IngressRuleFlatListComponent,
InternalEndpointComponent,
JobListComponent,
LoadingSpinnerComponent,
ListZeroStateComponent,
LogsScaleDefaultActionbarComponent,
LogsExecDefaultActionbarComponent,
LogsDefaultActionbarComponent,
MenuComponent,
NamespaceListComponent,
NodeListComponent,
NamespaceSelectorComponent,
NamespaceChangeDialogComponent,
ObjectMetaComponent,
PodStatusCardComponent,
ProbeComponent,
PropertyComponent,
ProxyComponent,
PodListComponent,
SecurityContextComponent,
PersistentVolumeListComponent,
PersistentVolumeClaimListComponent,
PolicyRuleListComponent,
PinDefaultActionbarComponent,
ResourceQuotaListComponent,
ResourceLimitListComponent,
ReplicaSetListComponent,
ReplicationControllerListComponent,
RowDetailComponent,
StorageClassListComponent,
StatefulSetListComponent,
SecretListComponent,
ServiceListComponent,
ServiceAccountListComponent,
CpuSparklineComponent,
MemorySparklineComponent,
ScaleDefaultActionbarComponent,
TextInputComponent,
TriggerDefaultActionbarComponent,
UploadFileComponent,
ZeroStateComponent,
WorkloadStatusComponent,
NetworkPolicyListComponent,
RoleListComponent,
RoleBindingListComponent,
SubjectListComponent,
VolumeMountComponent,
];
@NgModule({
imports: [SharedModule, DirectivesModule, MatTableModule, MatTableModule],
declarations: [...components],
exports: [...components],
})
export class ComponentsModule {}