2019-08-21 18:18:46 +03:00
|
|
|
///
|
2020-02-20 10:26:43 +02:00
|
|
|
/// Copyright © 2016-2020 The Thingsboard Authors
|
2019-08-21 18:18:46 +03:00
|
|
|
///
|
|
|
|
|
/// 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.
|
|
|
|
|
///
|
|
|
|
|
|
2019-09-05 21:15:40 +03:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { SharedModule } from '@app/shared/shared.module';
|
2020-02-11 10:35:05 +02:00
|
|
|
import { AddEntityDialogComponent } from '@home/components/entity/add-entity-dialog.component';
|
|
|
|
|
import { EntitiesTableComponent } from '@home/components/entity/entities-table.component';
|
|
|
|
|
import { DetailsPanelComponent } from '@home/components/details-panel.component';
|
|
|
|
|
import { EntityDetailsPanelComponent } from '@home/components/entity/entity-details-panel.component';
|
|
|
|
|
import { AuditLogDetailsDialogComponent } from '@home/components/audit-log/audit-log-details-dialog.component';
|
|
|
|
|
import { AuditLogTableComponent } from '@home/components/audit-log/audit-log-table.component';
|
2019-08-22 18:44:48 +03:00
|
|
|
import { EventTableHeaderComponent } from '@home/components/event/event-table-header.component';
|
|
|
|
|
import { EventTableComponent } from '@home/components/event/event-table.component';
|
2019-08-23 15:06:42 +03:00
|
|
|
import { RelationTableComponent } from '@home/components/relation/relation-table.component';
|
2020-02-11 10:35:05 +02:00
|
|
|
import { RelationDialogComponent } from '@home/components/relation/relation-dialog.component';
|
2019-08-29 12:08:49 +03:00
|
|
|
import { AlarmTableHeaderComponent } from '@home/components/alarm/alarm-table-header.component';
|
|
|
|
|
import { AlarmTableComponent } from '@home/components/alarm/alarm-table.component';
|
2019-08-29 20:04:59 +03:00
|
|
|
import { AttributeTableComponent } from '@home/components/attribute/attribute-table.component';
|
2020-02-11 10:35:05 +02:00
|
|
|
import { AddAttributeDialogComponent } from '@home/components/attribute/add-attribute-dialog.component';
|
|
|
|
|
import { EditAttributeValuePanelComponent } from '@home/components/attribute/edit-attribute-value-panel.component';
|
2019-09-03 19:31:16 +03:00
|
|
|
import { DashboardComponent } from '@home/components/dashboard/dashboard.component';
|
2019-09-05 21:15:40 +03:00
|
|
|
import { WidgetComponent } from '@home/components/widget/widget.component';
|
2020-02-11 10:35:05 +02:00
|
|
|
import { WidgetComponentService } from '@home/components/widget/widget-component.service';
|
2019-09-06 20:17:45 +03:00
|
|
|
import { LegendComponent } from '@home/components/widget/legend.component';
|
2019-09-19 20:10:52 +03:00
|
|
|
import { AliasesEntitySelectPanelComponent } from '@home/components/alias/aliases-entity-select-panel.component';
|
|
|
|
|
import { AliasesEntitySelectComponent } from '@home/components/alias/aliases-entity-select.component';
|
2019-09-25 19:37:29 +03:00
|
|
|
import { WidgetConfigComponent } from '@home/components/widget/widget-config.component';
|
2019-10-10 13:00:29 +03:00
|
|
|
import { EntityAliasesDialogComponent } from '@home/components/alias/entity-aliases-dialog.component';
|
2020-02-11 10:35:05 +02:00
|
|
|
import { EntityFilterViewComponent } from '@home/components/entity/entity-filter-view.component';
|
|
|
|
|
import { EntityAliasDialogComponent } from '@home/components/alias/entity-alias-dialog.component';
|
|
|
|
|
import { EntityFilterComponent } from '@home/components/entity/entity-filter.component';
|
|
|
|
|
import { RelationFiltersComponent } from '@home/components/relation/relation-filters.component';
|
|
|
|
|
import { EntityAliasSelectComponent } from '@home/components/alias/entity-alias-select.component';
|
2019-10-17 18:23:53 +03:00
|
|
|
import { DataKeysComponent } from '@home/components/widget/data-keys.component';
|
2020-02-11 10:35:05 +02:00
|
|
|
import { DataKeyConfigDialogComponent } from '@home/components/widget/data-key-config-dialog.component';
|
|
|
|
|
import { DataKeyConfigComponent } from '@home/components/widget/data-key-config.component';
|
|
|
|
|
import { LegendConfigPanelComponent } from '@home/components/widget/legend-config-panel.component';
|
|
|
|
|
import { LegendConfigComponent } from '@home/components/widget/legend-config.component';
|
|
|
|
|
import { ManageWidgetActionsComponent } from '@home/components/widget/action/manage-widget-actions.component';
|
|
|
|
|
import { WidgetActionDialogComponent } from '@home/components/widget/action/widget-action-dialog.component';
|
|
|
|
|
import { CustomActionPrettyResourcesTabsComponent } from '@home/components/widget/action/custom-action-pretty-resources-tabs.component';
|
|
|
|
|
import { CustomActionPrettyEditorComponent } from '@home/components/widget/action/custom-action-pretty-editor.component';
|
|
|
|
|
import { CustomDialogService } from '@home/components/widget/dialog/custom-dialog.service';
|
|
|
|
|
import { CustomDialogContainerComponent } from '@home/components/widget/dialog/custom-dialog-container.component';
|
|
|
|
|
import { ImportExportService } from '@home/components/import-export/import-export.service';
|
|
|
|
|
import { ImportDialogComponent } from '@home/components/import-export/import-dialog.component';
|
|
|
|
|
import { AddWidgetToDashboardDialogComponent } from '@home/components/attribute/add-widget-to-dashboard-dialog.component';
|
|
|
|
|
import { ImportDialogCsvComponent } from '@home/components/import-export/import-dialog-csv.component';
|
|
|
|
|
import { TableColumnsAssignmentComponent } from '@home/components/import-export/table-columns-assignment.component';
|
2020-01-22 20:05:30 +02:00
|
|
|
import { EventContentDialogComponent } from '@home/components/event/event-content-dialog.component';
|
2020-01-29 17:20:28 +02:00
|
|
|
import { SharedHomeComponentsModule } from '@home/components/shared-home-components.module';
|
2020-02-11 12:06:51 +02:00
|
|
|
import { SelectTargetLayoutDialogComponent } from '@home/components/dashboard/select-target-layout-dialog.component';
|
2020-02-11 12:14:44 +02:00
|
|
|
import { SelectTargetStateDialogComponent } from '@home/components/dashboard/select-target-state-dialog.component';
|
2020-06-25 20:08:07 +03:00
|
|
|
import { AliasesEntityAutocompleteComponent } from '@home/components/alias/aliases-entity-autocomplete.component';
|
2020-06-30 19:37:50 +03:00
|
|
|
import { BooleanFilterPredicateComponent } from '@home/components/filter/boolean-filter-predicate.component';
|
|
|
|
|
import { StringFilterPredicateComponent } from '@home/components/filter/string-filter-predicate.component';
|
|
|
|
|
import { NumericFilterPredicateComponent } from '@home/components/filter/numeric-filter-predicate.component';
|
|
|
|
|
import { ComplexFilterPredicateComponent } from '@home/components/filter/complex-filter-predicate.component';
|
|
|
|
|
import { FilterPredicateComponent } from '@home/components/filter/filter-predicate.component';
|
|
|
|
|
import { FilterPredicateListComponent } from '@home/components/filter/filter-predicate-list.component';
|
|
|
|
|
import { KeyFilterListComponent } from '@home/components/filter/key-filter-list.component';
|
|
|
|
|
import { ComplexFilterPredicateDialogComponent } from '@home/components/filter/complex-filter-predicate-dialog.component';
|
|
|
|
|
import { KeyFilterDialogComponent } from '@home/components/filter/key-filter-dialog.component';
|
|
|
|
|
import { FiltersDialogComponent } from '@home/components/filter/filters-dialog.component';
|
|
|
|
|
import { FilterDialogComponent } from '@home/components/filter/filter-dialog.component';
|
2020-11-20 13:08:20 +02:00
|
|
|
import { FilterSelectComponent } from '@home/components/filter/filter-select.component';
|
2020-07-01 20:09:25 +03:00
|
|
|
import { FiltersEditComponent } from '@home/components/filter/filters-edit.component';
|
|
|
|
|
import { FiltersEditPanelComponent } from '@home/components/filter/filters-edit-panel.component';
|
2020-07-02 15:42:58 +03:00
|
|
|
import { UserFilterDialogComponent } from '@home/components/filter/user-filter-dialog.component';
|
|
|
|
|
import { FilterUserInfoComponent } from './filter/filter-user-info.component';
|
|
|
|
|
import { FilterUserInfoDialogComponent } from './filter/filter-user-info-dialog.component';
|
2020-07-02 20:05:34 +03:00
|
|
|
import { FilterPredicateValueComponent } from './filter/filter-predicate-value.component';
|
2020-08-27 19:32:15 +03:00
|
|
|
import { TenantProfileAutocompleteComponent } from './profile/tenant-profile-autocomplete.component';
|
|
|
|
|
import { TenantProfileComponent } from './profile/tenant-profile.component';
|
2020-09-01 18:41:42 +03:00
|
|
|
import { TenantProfileDialogComponent } from './profile/tenant-profile-dialog.component';
|
2020-09-02 12:19:35 +03:00
|
|
|
import { TenantProfileDataComponent } from './profile/tenant-profile-data.component';
|
2020-09-02 18:32:57 +03:00
|
|
|
import { DefaultDeviceProfileConfigurationComponent } from './profile/device/default-device-profile-configuration.component';
|
|
|
|
|
import { DeviceProfileConfigurationComponent } from './profile/device/device-profile-configuration.component';
|
|
|
|
|
import { DeviceProfileComponent } from './profile/device-profile.component';
|
2020-09-03 12:51:54 +03:00
|
|
|
import { DefaultDeviceProfileTransportConfigurationComponent } from './profile/device/default-device-profile-transport-configuration.component';
|
|
|
|
|
import { DeviceProfileTransportConfigurationComponent } from './profile/device/device-profile-transport-configuration.component';
|
2020-09-03 14:14:46 +03:00
|
|
|
import { DeviceProfileDialogComponent } from './profile/device-profile-dialog.component';
|
|
|
|
|
import { DeviceProfileAutocompleteComponent } from './profile/device-profile-autocomplete.component';
|
2020-09-03 17:43:53 +03:00
|
|
|
import { MqttDeviceProfileTransportConfigurationComponent } from './profile/device/mqtt-device-profile-transport-configuration.component';
|
|
|
|
|
import { Lwm2mDeviceProfileTransportConfigurationComponent } from './profile/device/lwm2m-device-profile-transport-configuration.component';
|
2020-09-09 18:27:28 +03:00
|
|
|
import { DeviceProfileAlarmsComponent } from './profile/alarm/device-profile-alarms.component';
|
|
|
|
|
import { DeviceProfileAlarmComponent } from './profile/alarm/device-profile-alarm.component';
|
|
|
|
|
import { CreateAlarmRulesComponent } from './profile/alarm/create-alarm-rules.component';
|
|
|
|
|
import { AlarmRuleComponent } from './profile/alarm/alarm-rule.component';
|
|
|
|
|
import { AlarmRuleConditionComponent } from './profile/alarm/alarm-rule-condition.component';
|
2020-09-11 19:27:29 +03:00
|
|
|
import { FilterTextComponent } from './filter/filter-text.component';
|
2020-09-14 19:23:18 +03:00
|
|
|
import { AddDeviceProfileDialogComponent } from './profile/add-device-profile-dialog.component';
|
2020-09-15 19:51:57 +03:00
|
|
|
import { RuleChainAutocompleteComponent } from './rule-chain/rule-chain-autocomplete.component';
|
2020-11-23 12:13:05 +02:00
|
|
|
import { DeviceProfileProvisionConfigurationComponent } from './profile/device-profile-provision-configuration.component';
|
2020-10-06 19:22:40 +03:00
|
|
|
import { AlarmScheduleComponent } from './profile/alarm/alarm-schedule.component';
|
2020-09-29 15:47:17 +03:00
|
|
|
import { DeviceWizardDialogComponent } from './wizard/device-wizard-dialog.component';
|
2020-09-29 10:33:29 +03:00
|
|
|
import { DeviceCredentialsComponent } from './device/device-credentials.component';
|
2020-10-12 17:29:27 +03:00
|
|
|
import { AlarmScheduleInfoComponent } from './profile/alarm/alarm-schedule-info.component';
|
|
|
|
|
import { AlarmScheduleDialogComponent } from '@home/components/profile/alarm/alarm-schedule-dialog.component';
|
2020-11-20 13:08:20 +02:00
|
|
|
import { EditAlarmDetailsDialogComponent } from '@home/components/profile/alarm/edit-alarm-details-dialog.component';
|
2020-10-12 17:29:27 +03:00
|
|
|
import { AlarmRuleConditionDialogComponent } from '@home/components/profile/alarm/alarm-rule-condition-dialog.component';
|
2020-11-20 13:08:20 +02:00
|
|
|
import { DefaultTenantProfileConfigurationComponent } from '@home/components/profile/tenant/default-tenant-profile-configuration.component';
|
|
|
|
|
import { TenantProfileConfigurationComponent } from '@home/components/profile/tenant/tenant-profile-configuration.component';
|
|
|
|
|
import { SmsProviderConfigurationComponent } from '@home/components/sms/sms-provider-configuration.component';
|
|
|
|
|
import { AwsSnsProviderConfigurationComponent } from '@home/components/sms/aws-sns-provider-configuration.component';
|
|
|
|
|
import { TwilioSmsProviderConfigurationComponent } from '@home/components/sms/twilio-sms-provider-configuration.component';
|
2020-11-23 12:15:42 +02:00
|
|
|
import { CopyDeviceCredentialsComponent } from '@home/components/device/copy-device-credentials.component';
|
2019-08-21 18:18:46 +03:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
declarations:
|
|
|
|
|
[
|
|
|
|
|
EntitiesTableComponent,
|
|
|
|
|
AddEntityDialogComponent,
|
|
|
|
|
DetailsPanelComponent,
|
|
|
|
|
EntityDetailsPanelComponent,
|
2019-08-22 13:34:15 +03:00
|
|
|
AuditLogTableComponent,
|
2019-08-22 18:44:48 +03:00
|
|
|
AuditLogDetailsDialogComponent,
|
2020-01-22 20:05:30 +02:00
|
|
|
EventContentDialogComponent,
|
2019-08-22 18:44:48 +03:00
|
|
|
EventTableHeaderComponent,
|
2019-08-23 15:06:42 +03:00
|
|
|
EventTableComponent,
|
2019-08-27 20:07:09 +03:00
|
|
|
RelationTableComponent,
|
2019-08-29 12:08:49 +03:00
|
|
|
RelationDialogComponent,
|
2019-10-10 13:00:29 +03:00
|
|
|
RelationFiltersComponent,
|
2019-08-29 12:08:49 +03:00
|
|
|
AlarmTableHeaderComponent,
|
|
|
|
|
AlarmTableComponent,
|
2019-08-29 20:04:59 +03:00
|
|
|
AttributeTableComponent,
|
|
|
|
|
AddAttributeDialogComponent,
|
2019-09-03 19:31:16 +03:00
|
|
|
EditAttributeValuePanelComponent,
|
2019-09-19 20:10:52 +03:00
|
|
|
AliasesEntitySelectPanelComponent,
|
|
|
|
|
AliasesEntitySelectComponent,
|
2020-06-25 20:08:07 +03:00
|
|
|
AliasesEntityAutocompleteComponent,
|
2019-10-10 13:00:29 +03:00
|
|
|
EntityAliasesDialogComponent,
|
|
|
|
|
EntityAliasDialogComponent,
|
2019-09-05 21:15:40 +03:00
|
|
|
DashboardComponent,
|
2019-09-06 20:17:45 +03:00
|
|
|
WidgetComponent,
|
2019-09-25 19:37:29 +03:00
|
|
|
LegendComponent,
|
2019-10-10 13:00:29 +03:00
|
|
|
WidgetConfigComponent,
|
|
|
|
|
EntityFilterViewComponent,
|
2019-10-11 19:22:03 +03:00
|
|
|
EntityFilterComponent,
|
2019-10-17 18:23:53 +03:00
|
|
|
EntityAliasSelectComponent,
|
|
|
|
|
DataKeysComponent,
|
|
|
|
|
DataKeyConfigComponent,
|
2019-10-24 19:52:19 +03:00
|
|
|
DataKeyConfigDialogComponent,
|
|
|
|
|
LegendConfigPanelComponent,
|
|
|
|
|
LegendConfigComponent,
|
|
|
|
|
ManageWidgetActionsComponent,
|
|
|
|
|
WidgetActionDialogComponent,
|
|
|
|
|
CustomActionPrettyResourcesTabsComponent,
|
2019-10-25 17:50:12 +03:00
|
|
|
CustomActionPrettyEditorComponent,
|
2019-11-08 14:17:15 +02:00
|
|
|
CustomDialogContainerComponent,
|
2019-11-15 12:22:14 +02:00
|
|
|
ImportDialogComponent,
|
|
|
|
|
ImportDialogCsvComponent,
|
2020-02-11 12:06:51 +02:00
|
|
|
SelectTargetLayoutDialogComponent,
|
2020-02-11 12:14:44 +02:00
|
|
|
SelectTargetStateDialogComponent,
|
2019-11-15 12:22:14 +02:00
|
|
|
AddWidgetToDashboardDialogComponent,
|
2020-06-30 19:37:50 +03:00
|
|
|
TableColumnsAssignmentComponent,
|
|
|
|
|
BooleanFilterPredicateComponent,
|
|
|
|
|
StringFilterPredicateComponent,
|
|
|
|
|
NumericFilterPredicateComponent,
|
|
|
|
|
ComplexFilterPredicateComponent,
|
|
|
|
|
ComplexFilterPredicateDialogComponent,
|
|
|
|
|
FilterPredicateComponent,
|
|
|
|
|
FilterPredicateListComponent,
|
|
|
|
|
KeyFilterListComponent,
|
|
|
|
|
KeyFilterDialogComponent,
|
|
|
|
|
FilterDialogComponent,
|
|
|
|
|
FiltersDialogComponent,
|
2020-07-01 20:09:25 +03:00
|
|
|
FilterSelectComponent,
|
2020-09-11 19:27:29 +03:00
|
|
|
FilterTextComponent,
|
2020-07-01 20:09:25 +03:00
|
|
|
FiltersEditComponent,
|
2020-07-02 15:42:58 +03:00
|
|
|
FiltersEditPanelComponent,
|
|
|
|
|
UserFilterDialogComponent,
|
|
|
|
|
FilterUserInfoComponent,
|
2020-07-02 20:05:34 +03:00
|
|
|
FilterUserInfoDialogComponent,
|
2020-08-27 19:32:15 +03:00
|
|
|
FilterPredicateValueComponent,
|
|
|
|
|
TenantProfileAutocompleteComponent,
|
2020-10-22 15:33:34 +03:00
|
|
|
DefaultTenantProfileConfigurationComponent,
|
|
|
|
|
TenantProfileConfigurationComponent,
|
2020-09-02 12:19:35 +03:00
|
|
|
TenantProfileDataComponent,
|
2020-09-01 18:41:42 +03:00
|
|
|
TenantProfileComponent,
|
2020-09-02 18:32:57 +03:00
|
|
|
TenantProfileDialogComponent,
|
2020-09-03 14:14:46 +03:00
|
|
|
DeviceProfileAutocompleteComponent,
|
2020-09-02 18:32:57 +03:00
|
|
|
DefaultDeviceProfileConfigurationComponent,
|
|
|
|
|
DeviceProfileConfigurationComponent,
|
2020-09-03 12:51:54 +03:00
|
|
|
DefaultDeviceProfileTransportConfigurationComponent,
|
2020-09-03 17:43:53 +03:00
|
|
|
MqttDeviceProfileTransportConfigurationComponent,
|
|
|
|
|
Lwm2mDeviceProfileTransportConfigurationComponent,
|
2020-09-03 12:51:54 +03:00
|
|
|
DeviceProfileTransportConfigurationComponent,
|
2020-09-09 18:27:28 +03:00
|
|
|
CreateAlarmRulesComponent,
|
|
|
|
|
AlarmRuleComponent,
|
2020-10-12 17:29:27 +03:00
|
|
|
AlarmRuleConditionDialogComponent,
|
2020-09-09 18:27:28 +03:00
|
|
|
AlarmRuleConditionComponent,
|
|
|
|
|
DeviceProfileAlarmComponent,
|
|
|
|
|
DeviceProfileAlarmsComponent,
|
2020-09-03 14:14:46 +03:00
|
|
|
DeviceProfileComponent,
|
2020-09-14 19:23:18 +03:00
|
|
|
DeviceProfileDialogComponent,
|
2020-09-15 19:51:57 +03:00
|
|
|
AddDeviceProfileDialogComponent,
|
2020-09-29 10:33:29 +03:00
|
|
|
RuleChainAutocompleteComponent,
|
2020-10-12 17:29:27 +03:00
|
|
|
AlarmScheduleInfoComponent,
|
2020-10-07 10:36:15 +03:00
|
|
|
DeviceProfileProvisionConfigurationComponent,
|
2020-10-08 17:28:40 +03:00
|
|
|
AlarmScheduleComponent,
|
2020-09-29 15:47:17 +03:00
|
|
|
DeviceWizardDialogComponent,
|
2020-10-12 17:29:27 +03:00
|
|
|
DeviceCredentialsComponent,
|
2020-11-23 12:13:05 +02:00
|
|
|
CopyDeviceCredentialsComponent,
|
2020-10-12 17:29:27 +03:00
|
|
|
AlarmScheduleDialogComponent,
|
2020-11-20 13:08:20 +02:00
|
|
|
EditAlarmDetailsDialogComponent,
|
|
|
|
|
SmsProviderConfigurationComponent,
|
|
|
|
|
AwsSnsProviderConfigurationComponent,
|
|
|
|
|
TwilioSmsProviderConfigurationComponent
|
2019-08-21 18:18:46 +03:00
|
|
|
],
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
2020-01-29 17:20:28 +02:00
|
|
|
SharedModule,
|
|
|
|
|
SharedHomeComponentsModule
|
2019-08-21 18:18:46 +03:00
|
|
|
],
|
|
|
|
|
exports: [
|
|
|
|
|
EntitiesTableComponent,
|
|
|
|
|
AddEntityDialogComponent,
|
|
|
|
|
DetailsPanelComponent,
|
|
|
|
|
EntityDetailsPanelComponent,
|
2019-08-22 18:44:48 +03:00
|
|
|
AuditLogTableComponent,
|
2019-08-23 15:06:42 +03:00
|
|
|
EventTableComponent,
|
2019-08-29 12:08:49 +03:00
|
|
|
RelationTableComponent,
|
2019-10-10 13:00:29 +03:00
|
|
|
RelationFiltersComponent,
|
2019-08-29 12:08:49 +03:00
|
|
|
AlarmTableComponent,
|
2019-09-03 19:31:16 +03:00
|
|
|
AttributeTableComponent,
|
2019-09-19 20:10:52 +03:00
|
|
|
AliasesEntitySelectComponent,
|
2020-06-25 20:08:07 +03:00
|
|
|
AliasesEntityAutocompleteComponent,
|
2019-10-10 13:00:29 +03:00
|
|
|
EntityAliasesDialogComponent,
|
|
|
|
|
EntityAliasDialogComponent,
|
2019-09-05 21:15:40 +03:00
|
|
|
DashboardComponent,
|
2019-09-06 20:17:45 +03:00
|
|
|
WidgetComponent,
|
2019-09-25 19:37:29 +03:00
|
|
|
LegendComponent,
|
2019-10-10 13:00:29 +03:00
|
|
|
WidgetConfigComponent,
|
|
|
|
|
EntityFilterViewComponent,
|
2019-10-11 19:22:03 +03:00
|
|
|
EntityFilterComponent,
|
2019-10-17 18:23:53 +03:00
|
|
|
EntityAliasSelectComponent,
|
|
|
|
|
DataKeysComponent,
|
|
|
|
|
DataKeyConfigComponent,
|
2019-10-24 19:52:19 +03:00
|
|
|
DataKeyConfigDialogComponent,
|
|
|
|
|
LegendConfigComponent,
|
|
|
|
|
ManageWidgetActionsComponent,
|
|
|
|
|
WidgetActionDialogComponent,
|
|
|
|
|
CustomActionPrettyResourcesTabsComponent,
|
2019-10-25 17:50:12 +03:00
|
|
|
CustomActionPrettyEditorComponent,
|
2019-11-08 14:17:15 +02:00
|
|
|
CustomDialogContainerComponent,
|
2019-11-15 12:22:14 +02:00
|
|
|
ImportDialogComponent,
|
|
|
|
|
ImportDialogCsvComponent,
|
2020-02-11 12:06:51 +02:00
|
|
|
TableColumnsAssignmentComponent,
|
2020-02-11 12:14:44 +02:00
|
|
|
SelectTargetLayoutDialogComponent,
|
2020-06-30 19:37:50 +03:00
|
|
|
SelectTargetStateDialogComponent,
|
|
|
|
|
BooleanFilterPredicateComponent,
|
|
|
|
|
StringFilterPredicateComponent,
|
|
|
|
|
NumericFilterPredicateComponent,
|
|
|
|
|
ComplexFilterPredicateComponent,
|
|
|
|
|
ComplexFilterPredicateDialogComponent,
|
|
|
|
|
FilterPredicateComponent,
|
|
|
|
|
FilterPredicateListComponent,
|
|
|
|
|
KeyFilterListComponent,
|
|
|
|
|
KeyFilterDialogComponent,
|
|
|
|
|
FilterDialogComponent,
|
|
|
|
|
FiltersDialogComponent,
|
2020-07-01 20:09:25 +03:00
|
|
|
FilterSelectComponent,
|
2020-09-11 19:27:29 +03:00
|
|
|
FilterTextComponent,
|
2020-07-02 15:42:58 +03:00
|
|
|
FiltersEditComponent,
|
2020-08-27 19:32:15 +03:00
|
|
|
UserFilterDialogComponent,
|
|
|
|
|
TenantProfileAutocompleteComponent,
|
2020-09-02 12:19:35 +03:00
|
|
|
TenantProfileDataComponent,
|
2020-09-01 18:41:42 +03:00
|
|
|
TenantProfileComponent,
|
2020-09-02 18:32:57 +03:00
|
|
|
TenantProfileDialogComponent,
|
2020-09-03 14:14:46 +03:00
|
|
|
DeviceProfileAutocompleteComponent,
|
2020-09-02 18:32:57 +03:00
|
|
|
DefaultDeviceProfileConfigurationComponent,
|
|
|
|
|
DeviceProfileConfigurationComponent,
|
2020-09-03 12:51:54 +03:00
|
|
|
DefaultDeviceProfileTransportConfigurationComponent,
|
2020-09-03 17:43:53 +03:00
|
|
|
MqttDeviceProfileTransportConfigurationComponent,
|
|
|
|
|
Lwm2mDeviceProfileTransportConfigurationComponent,
|
2020-09-03 12:51:54 +03:00
|
|
|
DeviceProfileTransportConfigurationComponent,
|
2020-09-09 18:27:28 +03:00
|
|
|
CreateAlarmRulesComponent,
|
|
|
|
|
AlarmRuleComponent,
|
2020-10-12 17:29:27 +03:00
|
|
|
AlarmRuleConditionDialogComponent,
|
2020-09-09 18:27:28 +03:00
|
|
|
AlarmRuleConditionComponent,
|
|
|
|
|
DeviceProfileAlarmComponent,
|
|
|
|
|
DeviceProfileAlarmsComponent,
|
2020-09-03 14:14:46 +03:00
|
|
|
DeviceProfileComponent,
|
2020-09-14 19:23:18 +03:00
|
|
|
DeviceProfileDialogComponent,
|
2020-09-15 19:51:57 +03:00
|
|
|
AddDeviceProfileDialogComponent,
|
2020-09-29 10:33:29 +03:00
|
|
|
RuleChainAutocompleteComponent,
|
2020-09-29 15:47:17 +03:00
|
|
|
DeviceWizardDialogComponent,
|
2020-10-08 17:28:40 +03:00
|
|
|
DeviceCredentialsComponent,
|
2020-11-23 12:13:05 +02:00
|
|
|
CopyDeviceCredentialsComponent,
|
2020-10-12 17:29:27 +03:00
|
|
|
AlarmScheduleInfoComponent,
|
|
|
|
|
AlarmScheduleComponent,
|
|
|
|
|
AlarmScheduleDialogComponent,
|
2020-10-12 19:39:47 +03:00
|
|
|
EditAlarmDetailsDialogComponent,
|
2020-10-07 10:36:15 +03:00
|
|
|
DeviceProfileProvisionConfigurationComponent,
|
2020-11-20 13:08:20 +02:00
|
|
|
SmsProviderConfigurationComponent,
|
|
|
|
|
AwsSnsProviderConfigurationComponent,
|
|
|
|
|
TwilioSmsProviderConfigurationComponent
|
2019-09-05 21:15:40 +03:00
|
|
|
],
|
|
|
|
|
providers: [
|
2019-10-25 17:50:12 +03:00
|
|
|
WidgetComponentService,
|
2019-11-08 14:17:15 +02:00
|
|
|
CustomDialogService,
|
|
|
|
|
ImportExportService
|
2019-08-21 18:18:46 +03:00
|
|
|
]
|
|
|
|
|
})
|
|
|
|
|
export class HomeComponentsModule { }
|