thingsboard/ui-ngx/src/app/modules/home/components/widget/widget-components.module.ts

68 lines
2.7 KiB
TypeScript
Raw Normal View History

///
2020-02-20 10:26:43 +02:00
/// Copyright © 2016-2020 The Thingsboard 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 { CommonModule } from '@angular/common';
import { SharedModule } from '@app/shared/shared.module';
import { EntitiesTableWidgetComponent } from '@home/components/widget/lib/entities-table-widget.component';
import { DisplayColumnsPanelComponent } from '@home/components/widget/lib/display-columns-panel.component';
import { AlarmsTableWidgetComponent } from '@home/components/widget/lib/alarms-table-widget.component';
2020-01-29 17:20:28 +02:00
import { AlarmStatusFilterPanelComponent } from '@home/components/widget/lib/alarm-status-filter-panel.component';
import { SharedHomeComponentsModule } from '@home/components/shared-home-components.module';
2020-01-30 13:03:53 +02:00
import { TimeseriesTableWidgetComponent } from '@home/components/widget/lib/timeseries-table-widget.component';
2020-01-31 20:26:08 +02:00
import { EntitiesHierarchyWidgetComponent } from '@home/components/widget/lib/entities-hierarchy-widget.component';
2020-02-10 19:06:15 +02:00
import { CustomDialogService } from '@home/components/widget/dialog/custom-dialog.service';
2020-02-17 17:26:26 +02:00
import { RpcWidgetsModule } from '@home/components/widget/lib/rpc/rpc-widgets.module';
import {
DateRangeNavigatorPanelComponent,
DateRangeNavigatorWidgetComponent
} from '@home/components/widget/lib/date-range-navigator/date-range-navigator.component';
2020-02-28 19:49:14 +02:00
import { MultipleInputWidgetComponent } from './lib/multiple-input-widget.component';
@NgModule({
declarations:
[
DisplayColumnsPanelComponent,
2020-01-29 17:20:28 +02:00
AlarmStatusFilterPanelComponent,
EntitiesTableWidgetComponent,
2020-01-30 13:03:53 +02:00
AlarmsTableWidgetComponent,
2020-01-31 20:26:08 +02:00
TimeseriesTableWidgetComponent,
EntitiesHierarchyWidgetComponent,
DateRangeNavigatorWidgetComponent,
2020-02-28 19:49:14 +02:00
DateRangeNavigatorPanelComponent,
MultipleInputWidgetComponent
],
imports: [
CommonModule,
2020-01-29 17:20:28 +02:00
SharedModule,
2020-02-17 17:26:26 +02:00
RpcWidgetsModule,
2020-01-29 17:20:28 +02:00
SharedHomeComponentsModule
],
exports: [
EntitiesTableWidgetComponent,
2020-01-30 13:03:53 +02:00
AlarmsTableWidgetComponent,
2020-01-31 20:26:08 +02:00
TimeseriesTableWidgetComponent,
2020-02-17 17:26:26 +02:00
EntitiesHierarchyWidgetComponent,
RpcWidgetsModule,
2020-02-28 19:49:14 +02:00
DateRangeNavigatorWidgetComponent,
MultipleInputWidgetComponent
2020-02-10 19:06:15 +02:00
],
providers: [
CustomDialogService
]
})
export class WidgetComponentsModule { }