2019-09-05 21:15:40 +03:00
|
|
|
///
|
2024-01-09 10:46:16 +02:00
|
|
|
/// Copyright © 2016-2024 The Thingsboard Authors
|
2019-09-05 21:15:40 +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.
|
|
|
|
|
///
|
|
|
|
|
|
|
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { SharedModule } from '@app/shared/shared.module';
|
2023-09-14 18:45:22 +03:00
|
|
|
import { EntitiesTableWidgetComponent } from '@home/components/widget/lib/entity/entities-table-widget.component';
|
2020-01-22 20:05:30 +02:00
|
|
|
import { DisplayColumnsPanelComponent } from '@home/components/widget/lib/display-columns-panel.component';
|
2023-09-14 18:45:22 +03:00
|
|
|
import { AlarmsTableWidgetComponent } from '@home/components/widget/lib/alarm/alarms-table-widget.component';
|
2020-01-29 17:20:28 +02:00
|
|
|
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';
|
2024-07-08 15:02:35 +03:00
|
|
|
import {
|
|
|
|
|
EntitiesHierarchyWidgetComponent
|
|
|
|
|
} from '@home/components/widget/lib/entity/entities-hierarchy-widget.component';
|
2020-02-17 17:26:26 +02:00
|
|
|
import { RpcWidgetsModule } from '@home/components/widget/lib/rpc/rpc-widgets.module';
|
2020-02-18 17:25:17 +02:00
|
|
|
import {
|
|
|
|
|
DateRangeNavigatorPanelComponent,
|
|
|
|
|
DateRangeNavigatorWidgetComponent
|
|
|
|
|
} from '@home/components/widget/lib/date-range-navigator/date-range-navigator.component';
|
2021-12-06 12:54:48 +02:00
|
|
|
import { MultipleInputWidgetComponent } from '@home/components/widget/lib/multiple-input-widget.component';
|
2023-06-02 19:43:13 +03:00
|
|
|
import { TripAnimationComponent } from '@home/components/widget/lib/trip-animation/trip-animation.component';
|
2021-12-06 12:54:48 +02:00
|
|
|
import { PhotoCameraInputWidgetComponent } from '@home/components/widget/lib/photo-camera-input.component';
|
|
|
|
|
import { GatewayFormComponent } from '@home/components/widget/lib/gateway/gateway-form.component';
|
2021-02-03 12:21:55 +02:00
|
|
|
import { NavigationCardsWidgetComponent } from '@home/components/widget/lib/navigation-cards-widget.component';
|
|
|
|
|
import { NavigationCardWidgetComponent } from '@home/components/widget/lib/navigation-card-widget.component';
|
2021-01-12 22:01:32 +02:00
|
|
|
import { EdgesOverviewWidgetComponent } from '@home/components/widget/lib/edges-overview-widget.component';
|
2021-04-05 20:56:15 +03:00
|
|
|
import { JsonInputWidgetComponent } from '@home/components/widget/lib/json-input-widget.component';
|
2021-07-23 13:57:25 +03:00
|
|
|
import { QrCodeWidgetComponent } from '@home/components/widget/lib/qrcode-widget.component';
|
2021-08-19 18:52:39 +03:00
|
|
|
import { MarkdownWidgetComponent } from '@home/components/widget/lib/markdown-widget.component';
|
2021-12-06 12:54:48 +02:00
|
|
|
import { SelectEntityDialogComponent } from '@home/components/widget/lib/maps/dialogs/select-entity-dialog.component';
|
2023-04-04 17:27:00 +03:00
|
|
|
import { HomePageWidgetsModule } from '@home/components/widget/lib/home-page/home-page-widgets.module';
|
|
|
|
|
import { WIDGET_COMPONENTS_MODULE_TOKEN } from '@home/components/tokens';
|
2023-05-16 20:00:53 +03:00
|
|
|
import { FlotWidgetComponent } from '@home/components/widget/lib/flot-widget.component';
|
|
|
|
|
import { LegendComponent } from '@home/components/widget/lib/legend.component';
|
2023-07-03 11:56:58 +03:00
|
|
|
import { GatewayConnectorComponent } from '@home/components/widget/lib/gateway/gateway-connectors.component';
|
|
|
|
|
import { GatewayLogsComponent } from '@home/components/widget/lib/gateway/gateway-logs.component';
|
|
|
|
|
import { GatewayStatisticsComponent } from '@home/components/widget/lib/gateway/gateway-statistics.component';
|
|
|
|
|
import { GatewayServiceRPCComponent } from '@home/components/widget/lib/gateway/gateway-service-rpc.component';
|
2023-12-06 18:51:03 +02:00
|
|
|
import {
|
|
|
|
|
GatewayServiceRPCConnectorComponent
|
|
|
|
|
} from '@home/components/widget/lib/gateway/gateway-service-rpc-connector.component';
|
|
|
|
|
import {
|
|
|
|
|
GatewayServiceRPCConnectorTemplatesComponent
|
|
|
|
|
} from '@home/components/widget/lib/gateway/gateway-service-rpc-connector-templates.component';
|
2023-07-03 11:56:58 +03:00
|
|
|
import { DeviceGatewayCommandComponent } from '@home/components/widget/lib/gateway/device-gateway-command.component';
|
|
|
|
|
import { GatewayConfigurationComponent } from '@home/components/widget/lib/gateway/gateway-configuration.component';
|
|
|
|
|
import {
|
|
|
|
|
GatewayRemoteConfigurationDialogComponent
|
|
|
|
|
} from '@home/components/widget/lib/gateway/gateway-remote-configuration-dialog';
|
2023-07-21 18:26:14 +03:00
|
|
|
import { ValueCardWidgetComponent } from '@home/components/widget/lib/cards/value-card-widget.component';
|
2023-08-15 16:52:35 +03:00
|
|
|
import {
|
|
|
|
|
AggregatedValueCardWidgetComponent
|
|
|
|
|
} from '@home/components/widget/lib/cards/aggregated-value-card-widget.component';
|
2023-09-14 18:45:22 +03:00
|
|
|
import { CountWidgetComponent } from '@home/components/widget/lib/count/count-widget.component';
|
2023-09-19 17:29:36 +03:00
|
|
|
import { BatteryLevelWidgetComponent } from '@home/components/widget/lib/indicator/battery-level-widget.component';
|
2023-10-05 17:52:49 +03:00
|
|
|
import {
|
|
|
|
|
WindSpeedDirectionWidgetComponent
|
|
|
|
|
} from '@home/components/widget/lib/weather/wind-speed-direction-widget.component';
|
2023-10-12 17:25:53 +03:00
|
|
|
import { SignalStrengthWidgetComponent } from '@home/components/widget/lib/indicator/signal-strength-widget.component';
|
2023-10-17 10:00:34 +03:00
|
|
|
import { ValueChartCardWidgetComponent } from '@home/components/widget/lib/cards/value-chart-card-widget.component';
|
2023-10-17 18:30:17 +03:00
|
|
|
import { ProgressBarWidgetComponent } from '@home/components/widget/lib/cards/progress-bar-widget.component';
|
2023-10-24 15:08:16 +03:00
|
|
|
import { LiquidLevelWidgetComponent } from '@home/components/widget/lib/indicator/liquid-level-widget.component';
|
2023-11-07 13:57:27 +02:00
|
|
|
import { DoughnutWidgetComponent } from '@home/components/widget/lib/chart/doughnut-widget.component';
|
2023-11-16 17:42:02 +02:00
|
|
|
import { RangeChartWidgetComponent } from '@home/components/widget/lib/chart/range-chart-widget.component';
|
2024-01-02 17:30:51 +02:00
|
|
|
import {
|
|
|
|
|
BarChartWithLabelsWidgetComponent
|
|
|
|
|
} from '@home/components/widget/lib/chart/bar-chart-with-labels-widget.component';
|
2023-12-14 13:21:57 +02:00
|
|
|
import {
|
|
|
|
|
GatewayServiceRPCConnectorTemplateDialogComponent
|
|
|
|
|
} from '@home/components/widget/lib/gateway/gateway-service-rpc-connector-template-dialog';
|
2024-01-23 20:03:14 +02:00
|
|
|
import { SingleSwitchWidgetComponent } from '@home/components/widget/lib/rpc/single-switch-widget.component';
|
2024-02-01 19:16:37 +02:00
|
|
|
import { ActionButtonWidgetComponent } from '@home/components/widget/lib/button/action-button-widget.component';
|
2024-02-05 18:32:31 +02:00
|
|
|
import { CommandButtonWidgetComponent } from '@home/components/widget/lib/button/command-button-widget.component';
|
2024-02-08 19:48:32 +02:00
|
|
|
import { PowerButtonWidgetComponent } from '@home/components/widget/lib/rpc/power-button-widget.component';
|
2024-02-14 13:53:44 +02:00
|
|
|
import { SliderWidgetComponent } from '@home/components/widget/lib/rpc/slider-widget.component';
|
2024-02-16 12:50:29 +02:00
|
|
|
import { ToggleButtonWidgetComponent } from '@home/components/widget/lib/button/toggle-button-widget.component';
|
2024-02-29 14:06:57 +02:00
|
|
|
import { TimeSeriesChartWidgetComponent } from '@home/components/widget/lib/chart/time-series-chart-widget.component';
|
2024-03-27 13:44:10 +02:00
|
|
|
import { AddConnectorDialogComponent } from '@home/components/widget/lib/gateway/dialog/add-connector-dialog.component';
|
|
|
|
|
import { MappingDialogComponent } from '@home/components/widget/lib/gateway/dialog/mapping-dialog.component';
|
2024-04-19 19:36:27 +03:00
|
|
|
import { StatusWidgetComponent } from '@home/components/widget/lib/indicator/status-widget.component';
|
2024-04-23 18:57:18 +03:00
|
|
|
import { LatestChartComponent } from '@home/components/widget/lib/chart/latest-chart.component';
|
|
|
|
|
import { PieChartWidgetComponent } from '@home/components/widget/lib/chart/pie-chart-widget.component';
|
2024-04-25 19:10:48 +03:00
|
|
|
import { BarChartWidgetComponent } from '@home/components/widget/lib/chart/bar-chart-widget.component';
|
|
|
|
|
import { PolarAreaWidgetComponent } from '@home/components/widget/lib/chart/polar-area-widget.component';
|
2024-04-30 10:44:33 +03:00
|
|
|
import { RadarChartWidgetComponent } from '@home/components/widget/lib/chart/radar-chart-widget.component';
|
2024-05-02 21:37:11 +03:00
|
|
|
import { MobileAppQrcodeWidgetComponent } from '@home/components/widget/lib/mobile-app-qrcode-widget.component';
|
2024-07-08 11:54:49 +03:00
|
|
|
import { KeyValueIsNotEmptyPipe } from '@shared/pipe/key-value-not-empty.pipe';
|
2024-06-21 19:14:58 +03:00
|
|
|
import { LabelCardWidgetComponent } from '@home/components/widget/lib/cards/label-card-widget.component';
|
|
|
|
|
import { LabelValueCardWidgetComponent } from '@home/components/widget/lib/cards/label-value-card-widget.component';
|
2024-07-01 11:56:25 +03:00
|
|
|
import {
|
|
|
|
|
RestConnectorSecurityComponent
|
|
|
|
|
} from '@home/components/widget/lib/gateway/connectors-configuration/rest-connector-secuirity/rest-connector-security.component';
|
2024-07-03 14:36:58 +03:00
|
|
|
import {
|
|
|
|
|
UnreadNotificationWidgetComponent
|
|
|
|
|
} from '@home/components/widget/lib/cards/unread-notification-widget.component';
|
|
|
|
|
import {
|
|
|
|
|
NotificationTypeFilterPanelComponent
|
|
|
|
|
} from '@home/components/widget/lib/cards/notification-type-filter-panel.component';
|
2024-07-22 19:16:27 +03:00
|
|
|
import { GatewayHelpLinkPipe } from '@home/pipes/gateway-help-link.pipe';
|
|
|
|
|
import { EllipsisChipListDirective } from '@shared/directives/ellipsis-chip-list.directive';
|
|
|
|
|
import {
|
|
|
|
|
BrokerConfigControlComponent
|
|
|
|
|
} from '@home/components/widget/lib/gateway/connectors-configuration/broker-config-control/broker-config-control.component';
|
|
|
|
|
import {
|
|
|
|
|
WorkersConfigControlComponent
|
|
|
|
|
} from '@home/components/widget/lib/gateway/connectors-configuration/workers-config-control/workers-config-control.component';
|
|
|
|
|
import {
|
|
|
|
|
OpcServerConfigComponent
|
|
|
|
|
} from '@home/components/widget/lib/gateway/connectors-configuration/opc-server-config/opc-server-config.component';
|
|
|
|
|
import {
|
|
|
|
|
MqttBasicConfigComponent
|
|
|
|
|
} from '@home/components/widget/lib/gateway/connectors-configuration/mqtt-basic-config/mqtt-basic-config.component';
|
|
|
|
|
import {
|
|
|
|
|
MappingTableComponent
|
|
|
|
|
} from '@home/components/widget/lib/gateway/connectors-configuration/mapping-table/mapping-table.component';
|
|
|
|
|
import {
|
|
|
|
|
OpcUaBasicConfigComponent
|
|
|
|
|
} from '@home/components/widget/lib/gateway/connectors-configuration/opc-ua-basic-config/opc-ua-basic-config.component';
|
|
|
|
|
import {
|
2024-07-18 18:18:31 +03:00
|
|
|
ModbusBasicConfigComponent
|
2024-07-22 19:16:27 +03:00
|
|
|
} from '@home/components/widget/lib/gateway/connectors-configuration/modbus/modbus-basic-config/modbus-basic-config.component';
|
|
|
|
|
import {
|
|
|
|
|
DeviceInfoTableComponent
|
|
|
|
|
} from '@home/components/widget/lib/gateway/connectors-configuration/device-info-table/device-info-table.component';
|
|
|
|
|
import {
|
|
|
|
|
MappingDataKeysPanelComponent
|
|
|
|
|
} from '@home/components/widget/lib/gateway/connectors-configuration/mapping-data-keys-panel/mapping-data-keys-panel.component';
|
|
|
|
|
import {
|
|
|
|
|
TypeValuePanelComponent
|
|
|
|
|
} from '@home/components/widget/lib/gateway/connectors-configuration/type-value-panel/type-value-panel.component';
|
2019-09-05 21:15:40 +03:00
|
|
|
|
|
|
|
|
@NgModule({
|
2024-07-04 15:21:13 +03:00
|
|
|
declarations: [
|
|
|
|
|
DisplayColumnsPanelComponent,
|
|
|
|
|
EntitiesTableWidgetComponent,
|
|
|
|
|
AlarmsTableWidgetComponent,
|
|
|
|
|
TimeseriesTableWidgetComponent,
|
|
|
|
|
EntitiesHierarchyWidgetComponent,
|
|
|
|
|
EdgesOverviewWidgetComponent,
|
|
|
|
|
DateRangeNavigatorWidgetComponent,
|
|
|
|
|
DateRangeNavigatorPanelComponent,
|
|
|
|
|
JsonInputWidgetComponent,
|
|
|
|
|
MultipleInputWidgetComponent,
|
|
|
|
|
TripAnimationComponent,
|
|
|
|
|
PhotoCameraInputWidgetComponent,
|
|
|
|
|
GatewayFormComponent,
|
|
|
|
|
NavigationCardsWidgetComponent,
|
|
|
|
|
NavigationCardWidgetComponent,
|
|
|
|
|
QrCodeWidgetComponent,
|
|
|
|
|
MobileAppQrcodeWidgetComponent,
|
|
|
|
|
MarkdownWidgetComponent,
|
|
|
|
|
SelectEntityDialogComponent,
|
|
|
|
|
LegendComponent,
|
|
|
|
|
FlotWidgetComponent,
|
|
|
|
|
GatewayConnectorComponent,
|
|
|
|
|
AddConnectorDialogComponent,
|
|
|
|
|
MappingDialogComponent,
|
|
|
|
|
DeviceInfoTableComponent,
|
|
|
|
|
MappingDataKeysPanelComponent,
|
|
|
|
|
TypeValuePanelComponent,
|
|
|
|
|
GatewayLogsComponent,
|
|
|
|
|
GatewayStatisticsComponent,
|
|
|
|
|
GatewayServiceRPCComponent,
|
|
|
|
|
GatewayServiceRPCConnectorComponent,
|
|
|
|
|
GatewayServiceRPCConnectorTemplatesComponent,
|
|
|
|
|
DeviceGatewayCommandComponent,
|
|
|
|
|
GatewayConfigurationComponent,
|
|
|
|
|
GatewayRemoteConfigurationDialogComponent,
|
|
|
|
|
GatewayServiceRPCConnectorTemplateDialogComponent,
|
|
|
|
|
ValueCardWidgetComponent,
|
|
|
|
|
AggregatedValueCardWidgetComponent,
|
|
|
|
|
CountWidgetComponent,
|
|
|
|
|
BatteryLevelWidgetComponent,
|
|
|
|
|
WindSpeedDirectionWidgetComponent,
|
|
|
|
|
SignalStrengthWidgetComponent,
|
|
|
|
|
ValueChartCardWidgetComponent,
|
|
|
|
|
ProgressBarWidgetComponent,
|
|
|
|
|
LiquidLevelWidgetComponent,
|
|
|
|
|
DoughnutWidgetComponent,
|
|
|
|
|
RangeChartWidgetComponent,
|
|
|
|
|
BarChartWithLabelsWidgetComponent,
|
|
|
|
|
SingleSwitchWidgetComponent,
|
|
|
|
|
ActionButtonWidgetComponent,
|
|
|
|
|
CommandButtonWidgetComponent,
|
|
|
|
|
PowerButtonWidgetComponent,
|
|
|
|
|
SliderWidgetComponent,
|
|
|
|
|
ToggleButtonWidgetComponent,
|
|
|
|
|
TimeSeriesChartWidgetComponent,
|
|
|
|
|
StatusWidgetComponent,
|
|
|
|
|
LatestChartComponent,
|
|
|
|
|
PieChartWidgetComponent,
|
|
|
|
|
BarChartWidgetComponent,
|
|
|
|
|
PolarAreaWidgetComponent,
|
|
|
|
|
RadarChartWidgetComponent,
|
|
|
|
|
LabelCardWidgetComponent,
|
2024-07-08 17:12:40 +03:00
|
|
|
LabelValueCardWidgetComponent,
|
|
|
|
|
UnreadNotificationWidgetComponent,
|
2024-07-25 12:09:26 +03:00
|
|
|
NotificationTypeFilterPanelComponent
|
|
|
|
|
],
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
SharedModule,
|
|
|
|
|
RpcWidgetsModule,
|
|
|
|
|
HomePageWidgetsModule,
|
|
|
|
|
SharedHomeComponentsModule,
|
|
|
|
|
RestConnectorSecurityComponent,
|
|
|
|
|
GatewayHelpLinkPipe,
|
|
|
|
|
BrokerConfigControlComponent,
|
|
|
|
|
WorkersConfigControlComponent,
|
|
|
|
|
OpcServerConfigComponent,
|
|
|
|
|
MqttBasicConfigComponent,
|
|
|
|
|
MappingTableComponent,
|
|
|
|
|
OpcUaBasicConfigComponent,
|
|
|
|
|
KeyValueIsNotEmptyPipe,
|
|
|
|
|
ModbusBasicConfigComponent,
|
|
|
|
|
EllipsisChipListDirective,
|
|
|
|
|
],
|
2024-07-04 15:21:13 +03:00
|
|
|
exports: [
|
|
|
|
|
EntitiesTableWidgetComponent,
|
|
|
|
|
AlarmsTableWidgetComponent,
|
|
|
|
|
TimeseriesTableWidgetComponent,
|
|
|
|
|
EntitiesHierarchyWidgetComponent,
|
|
|
|
|
EdgesOverviewWidgetComponent,
|
|
|
|
|
RpcWidgetsModule,
|
|
|
|
|
HomePageWidgetsModule,
|
|
|
|
|
DateRangeNavigatorWidgetComponent,
|
|
|
|
|
JsonInputWidgetComponent,
|
|
|
|
|
MultipleInputWidgetComponent,
|
|
|
|
|
TripAnimationComponent,
|
|
|
|
|
PhotoCameraInputWidgetComponent,
|
|
|
|
|
GatewayFormComponent,
|
|
|
|
|
NavigationCardsWidgetComponent,
|
|
|
|
|
NavigationCardWidgetComponent,
|
|
|
|
|
QrCodeWidgetComponent,
|
|
|
|
|
MobileAppQrcodeWidgetComponent,
|
|
|
|
|
MarkdownWidgetComponent,
|
|
|
|
|
LegendComponent,
|
|
|
|
|
FlotWidgetComponent,
|
|
|
|
|
GatewayConnectorComponent,
|
|
|
|
|
AddConnectorDialogComponent,
|
|
|
|
|
MappingDialogComponent,
|
|
|
|
|
DeviceInfoTableComponent,
|
|
|
|
|
MappingDataKeysPanelComponent,
|
|
|
|
|
TypeValuePanelComponent,
|
|
|
|
|
GatewayLogsComponent,
|
|
|
|
|
GatewayServiceRPCConnectorComponent,
|
|
|
|
|
GatewayServiceRPCConnectorTemplatesComponent,
|
|
|
|
|
EllipsisChipListDirective,
|
|
|
|
|
GatewayStatisticsComponent,
|
|
|
|
|
GatewayServiceRPCComponent,
|
|
|
|
|
DeviceGatewayCommandComponent,
|
|
|
|
|
GatewayConfigurationComponent,
|
|
|
|
|
GatewayRemoteConfigurationDialogComponent,
|
|
|
|
|
GatewayServiceRPCConnectorTemplateDialogComponent,
|
|
|
|
|
ValueCardWidgetComponent,
|
|
|
|
|
AggregatedValueCardWidgetComponent,
|
|
|
|
|
CountWidgetComponent,
|
|
|
|
|
BatteryLevelWidgetComponent,
|
|
|
|
|
WindSpeedDirectionWidgetComponent,
|
|
|
|
|
SignalStrengthWidgetComponent,
|
|
|
|
|
ValueChartCardWidgetComponent,
|
|
|
|
|
ProgressBarWidgetComponent,
|
|
|
|
|
LiquidLevelWidgetComponent,
|
|
|
|
|
DoughnutWidgetComponent,
|
|
|
|
|
RangeChartWidgetComponent,
|
|
|
|
|
BarChartWithLabelsWidgetComponent,
|
|
|
|
|
SingleSwitchWidgetComponent,
|
|
|
|
|
ActionButtonWidgetComponent,
|
|
|
|
|
CommandButtonWidgetComponent,
|
|
|
|
|
PowerButtonWidgetComponent,
|
|
|
|
|
SliderWidgetComponent,
|
|
|
|
|
ToggleButtonWidgetComponent,
|
|
|
|
|
TimeSeriesChartWidgetComponent,
|
|
|
|
|
StatusWidgetComponent,
|
|
|
|
|
PieChartWidgetComponent,
|
|
|
|
|
BarChartWidgetComponent,
|
|
|
|
|
PolarAreaWidgetComponent,
|
|
|
|
|
RadarChartWidgetComponent,
|
|
|
|
|
LabelCardWidgetComponent,
|
2024-07-08 17:12:40 +03:00
|
|
|
LabelValueCardWidgetComponent,
|
|
|
|
|
UnreadNotificationWidgetComponent,
|
|
|
|
|
NotificationTypeFilterPanelComponent
|
2024-07-04 15:21:13 +03:00
|
|
|
],
|
2020-02-10 19:06:15 +02:00
|
|
|
providers: [
|
2024-07-08 15:02:35 +03:00
|
|
|
{provide: WIDGET_COMPONENTS_MODULE_TOKEN, useValue: WidgetComponentsModule}
|
2019-09-05 21:15:40 +03:00
|
|
|
]
|
|
|
|
|
})
|
2021-04-15 11:53:45 +03:00
|
|
|
export class WidgetComponentsModule {
|
|
|
|
|
}
|