@c8y/ngx-components 1023.64.2 → 1023.65.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { aggregationType } from '@c8y/client';
|
|
2
2
|
import * as _angular_core from '@angular/core';
|
|
3
|
-
import { AfterViewInit, OnInit, OnDestroy, EventEmitter, TemplateRef, WritableSignal } from '@angular/core';
|
|
3
|
+
import { InjectionToken, AfterViewInit, OnInit, OnDestroy, EventEmitter, TemplateRef, WritableSignal } from '@angular/core';
|
|
4
4
|
import { ViewContext, ActionBarItem, ActionBarFactory, DashboardChildComponent, CountdownIntervalComponent, TabWithTemplate } from '@c8y/ngx-components';
|
|
5
5
|
import { Observable, BehaviorSubject } from 'rxjs';
|
|
6
6
|
import * as packages_client_lib from 'packages/client/lib';
|
|
@@ -1805,6 +1805,25 @@ declare class GlobalContextUtilsService {
|
|
|
1805
1805
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<GlobalContextUtilsService>;
|
|
1806
1806
|
}
|
|
1807
1807
|
|
|
1808
|
+
/**
|
|
1809
|
+
* Injection token for registering custom dashboard paths where Global Context should be displayed.
|
|
1810
|
+
*
|
|
1811
|
+
* Use this token to enable Global Context on named dashboard routes that don't have a
|
|
1812
|
+
* `dashboardId` route parameter. Supports `multi: true` to allow multiple providers.
|
|
1813
|
+
*
|
|
1814
|
+
* @example
|
|
1815
|
+
* ```typescript
|
|
1816
|
+
* // In app.config.ts or module providers
|
|
1817
|
+
* providers: [
|
|
1818
|
+
* {
|
|
1819
|
+
* provide: GLOBAL_CONTEXT_DASHBOARD_PATHS,
|
|
1820
|
+
* useValue: ['dashboard/my-custom-dashboard', 'dashboard/another-dashboard'],
|
|
1821
|
+
* multi: true
|
|
1822
|
+
* }
|
|
1823
|
+
* ]
|
|
1824
|
+
* ```
|
|
1825
|
+
*/
|
|
1826
|
+
declare const GLOBAL_CONTEXT_DASHBOARD_PATHS: InjectionToken<string[]>;
|
|
1808
1827
|
/**
|
|
1809
1828
|
* Constants defining the supported route paths for global context integration.
|
|
1810
1829
|
*/
|
|
@@ -1871,6 +1890,11 @@ declare class GlobalContextNavigationService implements ActionBarFactory {
|
|
|
1871
1890
|
private readonly contextRoute;
|
|
1872
1891
|
/** Angular router for navigation state access */
|
|
1873
1892
|
private readonly router;
|
|
1893
|
+
/**
|
|
1894
|
+
* Custom dashboard paths registered via GLOBAL_CONTEXT_DASHBOARD_PATHS injection token.
|
|
1895
|
+
* Flattened from multi-provider array.
|
|
1896
|
+
*/
|
|
1897
|
+
private readonly registeredDashboardPaths;
|
|
1874
1898
|
/** Signal storing the current global context instance configuration */
|
|
1875
1899
|
private readonly instance;
|
|
1876
1900
|
/**
|
|
@@ -1956,7 +1980,10 @@ declare class GlobalContextNavigationService implements ActionBarFactory {
|
|
|
1956
1980
|
/**
|
|
1957
1981
|
* Handles navigation to dashboard routes.
|
|
1958
1982
|
*
|
|
1959
|
-
* Dashboard routes display global context
|
|
1983
|
+
* Dashboard routes display global context if:
|
|
1984
|
+
* - A valid dashboard ID exists in route params, OR
|
|
1985
|
+
* - The route path is registered via GLOBAL_CONTEXT_DASHBOARD_PATHS token
|
|
1986
|
+
*
|
|
1960
1987
|
* Manages query parameter cleanup during dashboard transitions.
|
|
1961
1988
|
*
|
|
1962
1989
|
* @param activeRoute - The active route containing dashboard parameters
|
|
@@ -1978,6 +2005,20 @@ declare class GlobalContextNavigationService implements ActionBarFactory {
|
|
|
1978
2005
|
* @returns Dashboard ID or undefined if not present
|
|
1979
2006
|
*/
|
|
1980
2007
|
private extractDashboardId;
|
|
2008
|
+
/**
|
|
2009
|
+
* Extracts the full route path from URL segments.
|
|
2010
|
+
*
|
|
2011
|
+
* @param activeRoute - The route to extract path from
|
|
2012
|
+
* @returns Full route path (e.g., 'dashboard/my-dashboard') or undefined
|
|
2013
|
+
*/
|
|
2014
|
+
private extractRoutePath;
|
|
2015
|
+
/**
|
|
2016
|
+
* Checks if a route path is registered as a custom dashboard path.
|
|
2017
|
+
*
|
|
2018
|
+
* @param routePath - The route path to check
|
|
2019
|
+
* @returns True if the path is registered via GLOBAL_CONTEXT_DASHBOARD_PATHS
|
|
2020
|
+
*/
|
|
2021
|
+
private isRegisteredDashboardPath;
|
|
1981
2022
|
/**
|
|
1982
2023
|
* Extracts device ID from route parameters.
|
|
1983
2024
|
*
|
|
@@ -3857,6 +3898,6 @@ declare function createAutoRefreshHandlers(): {
|
|
|
3857
3898
|
disableAutoRefresh: (state: WidgetState) => WidgetStateHandlerResult;
|
|
3858
3899
|
};
|
|
3859
3900
|
|
|
3860
|
-
export { AGGREGATIONS, AGGREGATION_ICONS, AGGREGATION_ICON_TYPE, AGGREGATION_LABELS, AGGREGATION_LIMITS, AGGREGATION_TEXTS, AGGREGATION_VALUES, AGGREGATION_VALUES_ARR, AggregationDisplayComponent, AggregationPickerComponent, AggregationPickerService, AggregationValidationService, AutoRefreshControlComponent, CONTEXT_FEATURE, CONTROL_PRESETS, ConfigContextSelectorComponent, ConfigModeControls, ConfigModeControls as ConfigModeControlsComponent, ConfigurationCollapseComponent, ConfigurationControlsComponent, ContextControlsComponent, DEFAULT_WIDGET_TEMPLATE, DateContextQueryParamNames, DateTimeContextPickerComponent, DateTimeContextPickerService, GLOBAL_CONTEXT_DEFAULTS, GLOBAL_CONTEXT_DISPLAY_MODE, GLOBAL_CONTEXT_EVENTS, GLOBAL_CONTEXT_SOURCE, GlobalContextComponent, GlobalContextConfigComponent, GlobalContextConnectorComponent, GlobalContextEventService, GlobalContextFormService, GlobalContextInlineComponent, GlobalContextLinkControlsComponent, GlobalContextModule, GlobalContextNavigationService, GlobalContextQueryService, GlobalContextService, GlobalContextUtilsService, GlobalContextValidationService, GlobalContextWidgetConfigComponent, GlobalContextWidgetWrapperComponent, HistoryModeConfigurationControlsComponent, INTERVALS, INTERVAL_TITLES, IntervalPickerComponent, LINK_BTNS_CONFIG, LinkButtonsComponent, LiveModeConfigurationControlsComponent, LocalControlsComponent, PRESET_NAME, PreviewControlsComponent, REFRESH_OPTION, ROUTE_PATHS, RealtimeControlComponent, TIME_DURATION, TIME_INTERVAL, TIME_SPAN_MS, TIMING, TimeRangeDisplayComponent, UI_PRIORITIES, WIDGET_DISPLAY_MODE, WIDGET_FEATURE_MAP, WidgetConfigMigrationService, WidgetControlService, applyModeConstraints, buildAggregationExtensions, buildBaselineControls, buildWidgetControlsFromPresets, controlsToSettings, createAutoRefreshHandlers, createResult, defineWidgetControls, getSupportedModes, guards, isAggregationLinked, isAggregationUnlinked, isAutoRefreshDisabled, isAutoRefreshEnabled, isConfig, isDashboard, isDateTimeContextLinked, isDateTimeContextUnlinked, isHistory, isLive, isViewAndConfig, mergePartialControls, resolveWidgetControlsInput, setAutoRefreshControlsVisibility, setAutoRefreshLinks, updateBothSettings };
|
|
3901
|
+
export { AGGREGATIONS, AGGREGATION_ICONS, AGGREGATION_ICON_TYPE, AGGREGATION_LABELS, AGGREGATION_LIMITS, AGGREGATION_TEXTS, AGGREGATION_VALUES, AGGREGATION_VALUES_ARR, AggregationDisplayComponent, AggregationPickerComponent, AggregationPickerService, AggregationValidationService, AutoRefreshControlComponent, CONTEXT_FEATURE, CONTROL_PRESETS, ConfigContextSelectorComponent, ConfigModeControls, ConfigModeControls as ConfigModeControlsComponent, ConfigurationCollapseComponent, ConfigurationControlsComponent, ContextControlsComponent, DEFAULT_WIDGET_TEMPLATE, DateContextQueryParamNames, DateTimeContextPickerComponent, DateTimeContextPickerService, GLOBAL_CONTEXT_DASHBOARD_PATHS, GLOBAL_CONTEXT_DEFAULTS, GLOBAL_CONTEXT_DISPLAY_MODE, GLOBAL_CONTEXT_EVENTS, GLOBAL_CONTEXT_SOURCE, GlobalContextComponent, GlobalContextConfigComponent, GlobalContextConnectorComponent, GlobalContextEventService, GlobalContextFormService, GlobalContextInlineComponent, GlobalContextLinkControlsComponent, GlobalContextModule, GlobalContextNavigationService, GlobalContextQueryService, GlobalContextService, GlobalContextUtilsService, GlobalContextValidationService, GlobalContextWidgetConfigComponent, GlobalContextWidgetWrapperComponent, HistoryModeConfigurationControlsComponent, INTERVALS, INTERVAL_TITLES, IntervalPickerComponent, LINK_BTNS_CONFIG, LinkButtonsComponent, LiveModeConfigurationControlsComponent, LocalControlsComponent, PRESET_NAME, PreviewControlsComponent, REFRESH_OPTION, ROUTE_PATHS, RealtimeControlComponent, TIME_DURATION, TIME_INTERVAL, TIME_SPAN_MS, TIMING, TimeRangeDisplayComponent, UI_PRIORITIES, WIDGET_DISPLAY_MODE, WIDGET_FEATURE_MAP, WidgetConfigMigrationService, WidgetControlService, applyModeConstraints, buildAggregationExtensions, buildBaselineControls, buildWidgetControlsFromPresets, controlsToSettings, createAutoRefreshHandlers, createResult, defineWidgetControls, getSupportedModes, guards, isAggregationLinked, isAggregationUnlinked, isAutoRefreshDisabled, isAutoRefreshEnabled, isConfig, isDashboard, isDateTimeContextLinked, isDateTimeContextUnlinked, isHistory, isLive, isViewAndConfig, mergePartialControls, resolveWidgetControlsInput, setAutoRefreshControlsVisibility, setAutoRefreshLinks, updateBothSettings };
|
|
3861
3902
|
export type { Aggregation, AggregationCalculationResult, AggregationIconType, AggregationOption, AggregationOptionStatus, AggregationState, AlarmFilterInterval, ContextConfig, ContextFeature, ControlConfigsMap, DateContextParams, DateTimeContext, DateTimeContextPickerConfig, DisplayMode, GlobalContextDisplayMode, GlobalContextEvent, GlobalContextEventBase, GlobalContextEventRegistry, GlobalContextEventType, GlobalContextEventUnion, GlobalContextInstance, GlobalContextKeys, GlobalContextSettings, GlobalContextSource, GlobalContextState, GuardState, InputDateContextQueryParams, Interval, LegacyWidgetConfig, LinkStatesMap, LinkToggleEvent, OutputDateContextQueryParams, ParameterValidationStatus, PartialWidgetControls, PresetDefinition, PresetName, RefreshOption, RoutePath, TimeInterval, WidgetControlHandler, WidgetControlSettings, WidgetControls, WidgetControlsPresetConfig, WidgetDisplayMode, WidgetFeature, WidgetPresetName, WidgetPresetSelection, WidgetSettingsResult, WidgetState, WidgetStateHandlerResult };
|
|
3862
3903
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sources":["../../global-context/models/auto-refresh.model.ts","../../global-context/models/control-flow.model.ts","../../global-context/models/interval-picker.model.ts","../../global-context/models/date-time-context-picker.model.ts","../../global-context/models/global-context.model.ts","../../global-context/models/global-context-defaults.ts","../../global-context/models/aggregation.model.ts","../../global-context/models/context-config.model.ts","../../global-context/models/constants.ts","../../global-context/services/state/global-context.service.ts","../../global-context/services/state/global-context-form.service.ts","../../global-context/services/state/global-context-event.service.ts","../../global-context/services/domain/widget-control.service.ts","../../global-context/services/domain/date-time-context-picker.service.ts","../../global-context/services/domain/widget-config-migration.service.ts","../../global-context/services/domain/global-context-validation.service.ts","../../global-context/services/domain/aggregation-picker.service.ts","../../global-context/services/domain/aggregation-validation.service.ts","../../global-context/services/infrastructure/global-context-utils.service.ts","../../global-context/services/infrastructure/global-context-navigation.service.ts","../../global-context/services/infrastructure/global-context-query.service.ts","../../global-context/features/configuration/configuration-collapse/configuration-collapse.component.ts","../../global-context/core/global-context.component.ts","../../global-context/core/global-context-inline.component.ts","../../global-context/core/global-context-config.component.ts","../../global-context/core/global-context-widget-config.component.ts","../../global-context/core/widget-inline/inline-context.models.ts","../../global-context/core/widget-inline/inline-link-controls.component.ts","../../global-context/features/time-context/time-range-picker/date-time-context-picker.component.ts","../../global-context/features/time-context/time-range-display/time-range-display.component.ts","../../global-context/features/time-context/interval-picker/interval-picker.component.ts","../../global-context/features/aggregation/aggregation-picker/aggregation-picker.component.ts","../../global-context/features/aggregation/aggregation-display/aggregation-display.component.ts","../../global-context/features/refresh/auto-refresh/auto-refresh-control.component.ts","../../global-context/features/refresh/realtime-control/realtime-control.component.ts","../../global-context/features/configuration/config-context-selector/config-context-selector.component.ts","../../global-context/features/configuration/configuration-controls/configuration-controls.component.ts","../../global-context/features/configuration/live-mode-configuration-controls/live-mode-configuration-controls.component.ts","../../global-context/features/configuration/history-mode-configuration-controls/history-mode-configuration-controls.component.ts","../../global-context/shared/context-controls/context-controls.component.ts","../../global-context/shared/preview-controls/preview-controls.component.ts","../../global-context/integration/widget-controls/widget-controls-factory.ts","../../global-context/integration/widget-controls/guards.ts","../../global-context/integration/widget-controls/update-helpers.ts","../../global-context/integration/widget-controls/default-widget-template.ts","../../global-context/integration/widget-controls/widget-controls-presets.ts","../../global-context/integration/widget-wrapper/global-context-widget-wrapper.component.ts","../../global-context/integration/presets/control-presets.ts","../../global-context/integration/config-mode-controls/config-mode-controls.component.ts","../../global-context/integration/global-context-connector/global-context-connector.component.ts","../../global-context/integration/link-buttons/link-buttons.component.ts","../../global-context/integration/local-controls/local-controls.component.ts","../../global-context/global-context.module.ts","../../global-context/integration/widget-controls/widget-controls-presets.helpers.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sources":["../../global-context/models/auto-refresh.model.ts","../../global-context/models/control-flow.model.ts","../../global-context/models/interval-picker.model.ts","../../global-context/models/date-time-context-picker.model.ts","../../global-context/models/global-context.model.ts","../../global-context/models/global-context-defaults.ts","../../global-context/models/aggregation.model.ts","../../global-context/models/context-config.model.ts","../../global-context/models/constants.ts","../../global-context/services/state/global-context.service.ts","../../global-context/services/state/global-context-form.service.ts","../../global-context/services/state/global-context-event.service.ts","../../global-context/services/domain/widget-control.service.ts","../../global-context/services/domain/date-time-context-picker.service.ts","../../global-context/services/domain/widget-config-migration.service.ts","../../global-context/services/domain/global-context-validation.service.ts","../../global-context/services/domain/aggregation-picker.service.ts","../../global-context/services/domain/aggregation-validation.service.ts","../../global-context/services/infrastructure/global-context-utils.service.ts","../../global-context/services/infrastructure/global-context-navigation.service.ts","../../global-context/services/infrastructure/global-context-query.service.ts","../../global-context/features/configuration/configuration-collapse/configuration-collapse.component.ts","../../global-context/core/global-context.component.ts","../../global-context/core/global-context-inline.component.ts","../../global-context/core/global-context-config.component.ts","../../global-context/core/global-context-widget-config.component.ts","../../global-context/core/widget-inline/inline-context.models.ts","../../global-context/core/widget-inline/inline-link-controls.component.ts","../../global-context/features/time-context/time-range-picker/date-time-context-picker.component.ts","../../global-context/features/time-context/time-range-display/time-range-display.component.ts","../../global-context/features/time-context/interval-picker/interval-picker.component.ts","../../global-context/features/aggregation/aggregation-picker/aggregation-picker.component.ts","../../global-context/features/aggregation/aggregation-display/aggregation-display.component.ts","../../global-context/features/refresh/auto-refresh/auto-refresh-control.component.ts","../../global-context/features/refresh/realtime-control/realtime-control.component.ts","../../global-context/features/configuration/config-context-selector/config-context-selector.component.ts","../../global-context/features/configuration/configuration-controls/configuration-controls.component.ts","../../global-context/features/configuration/live-mode-configuration-controls/live-mode-configuration-controls.component.ts","../../global-context/features/configuration/history-mode-configuration-controls/history-mode-configuration-controls.component.ts","../../global-context/shared/context-controls/context-controls.component.ts","../../global-context/shared/preview-controls/preview-controls.component.ts","../../global-context/integration/widget-controls/widget-controls-factory.ts","../../global-context/integration/widget-controls/guards.ts","../../global-context/integration/widget-controls/update-helpers.ts","../../global-context/integration/widget-controls/default-widget-template.ts","../../global-context/integration/widget-controls/widget-controls-presets.ts","../../global-context/integration/widget-wrapper/global-context-widget-wrapper.component.ts","../../global-context/integration/presets/control-presets.ts","../../global-context/integration/config-mode-controls/config-mode-controls.component.ts","../../global-context/integration/global-context-connector/global-context-connector.component.ts","../../global-context/integration/link-buttons/link-buttons.component.ts","../../global-context/integration/local-controls/local-controls.component.ts","../../global-context/global-context.module.ts","../../global-context/integration/widget-controls/widget-controls-presets.helpers.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@c8y/ngx-components","version":"1023.64.2","license":"Apache-2.0","author":"Cumulocity","description":"Angular modules for Cumulocity IoT applications","keywords":["Cumulocity","IoT","m2m","Angular","Components"],"peerDependencies":{"@angular/cdk":"^20.2.14","@angular/common":"^20.3.15","@angular/core":"^20.3.17","@angular/forms":"^20.3.15","@angular/platform-browser":"^20.3.15","@angular/router":"^20.3.15","@angular/upgrade":"^20.3.15","@c8y/bootstrap":"1023.64.2","@c8y/client":"1023.64.2","@novnc/novnc":"1.5.0","@xterm/addon-fit":"0.10.0","@xterm/xterm":"5.5.0","leaflet":"^1.9.4","monaco-editor":">= 0.31.0","lz-string":"1.5.0","rxjs":"7.8.2"},"dependencies":{"@ngx-formly/core":"6.1.3","@ngx-translate/core":"17.0.0","@zip.js/zip.js":"2.7.71","angularx-qrcode":"20.0.0","chroma-js":"3.1.2","file-saver":"2.0.5","libphonenumber-js":"1.12.10","lodash-es":"^4.17.23","marked":"16.3.0","ngx-bootstrap":"20.0.2","semver":"~7.7.1","three":"0.173.0","tslib":"^2.6.3","ajv":"^8.18.0","ajv-formats":"3.0.1","echarts":"6.0.0","ngx-echarts":"20.0.2"},"module":"fesm2022/c8y-ngx-components.mjs","typings":"index.d.ts","exports":{"./locales/de.po":"./locales/de.po","./locales/en.po":"./locales/en.po","./locales/es.po":"./locales/es.po","./locales/fr.po":"./locales/fr.po","./locales/ja_JP.po":"./locales/ja_JP.po","./locales/ko.po":"./locales/ko.po","./locales/nl.po":"./locales/nl.po","./locales/pt_BR.po":"./locales/pt_BR.po","./locales/zh_CN.po":"./locales/zh_CN.po","./locales/zh_TW.po":"./locales/zh_TW.po","./locales/pl.po":"./locales/pl.po","./locales/en_US.po":"./locales/en_US.po","./package.json":{"default":"./package.json"},".":{"types":"./index.d.ts","default":"./fesm2022/c8y-ngx-components.mjs"},"./actility-device-registration":{"types":"./actility-device-registration/index.d.ts","default":"./fesm2022/c8y-ngx-components-actility-device-registration.mjs"},"./advanced-software-management":{"types":"./advanced-software-management/index.d.ts","default":"./fesm2022/c8y-ngx-components-advanced-software-management.mjs"},"./ai":{"types":"./ai/index.d.ts","default":"./fesm2022/c8y-ngx-components-ai.mjs"},"./ai/agent-chat":{"types":"./ai/agent-chat/index.d.ts","default":"./fesm2022/c8y-ngx-components-ai-agent-chat.mjs"},"./ai/agents/html":{"types":"./ai/agents/html/index.d.ts","default":"./fesm2022/c8y-ngx-components-ai-agents-html.mjs"},"./ai/ai-chat":{"types":"./ai/ai-chat/index.d.ts","default":"./fesm2022/c8y-ngx-components-ai-ai-chat.mjs"},"./alarm-event-selector":{"types":"./alarm-event-selector/index.d.ts","default":"./fesm2022/c8y-ngx-components-alarm-event-selector.mjs"},"./alarms":{"types":"./alarms/index.d.ts","default":"./fesm2022/c8y-ngx-components-alarms.mjs"},"./alarms/cockpit":{"types":"./alarms/cockpit/index.d.ts","default":"./fesm2022/c8y-ngx-components-alarms-cockpit.mjs"},"./alarms/devicemanagement":{"types":"./alarms/devicemanagement/index.d.ts","default":"./fesm2022/c8y-ngx-components-alarms-devicemanagement.mjs"},"./api":{"types":"./api/index.d.ts","default":"./fesm2022/c8y-ngx-components-api.mjs"},"./app-logs":{"types":"./app-logs/index.d.ts","default":"./fesm2022/c8y-ngx-components-app-logs.mjs"},"./application-access/list":{"types":"./application-access/list/index.d.ts","default":"./fesm2022/c8y-ngx-components-application-access-list.mjs"},"./application-access/user":{"types":"./application-access/user/index.d.ts","default":"./fesm2022/c8y-ngx-components-application-access-user.mjs"},"./application-access/user/application-access-user-details-wrapper":{"types":"./application-access/user/application-access-user-details-wrapper/index.d.ts","default":"./fesm2022/c8y-ngx-components-application-access-user-application-access-user-details-wrapper.mjs"},"./asset-properties":{"types":"./asset-properties/index.d.ts","default":"./fesm2022/c8y-ngx-components-asset-properties.mjs"},"./assets-navigator":{"types":"./assets-navigator/index.d.ts","default":"./fesm2022/c8y-ngx-components-assets-navigator.mjs"},"./auth-configuration":{"types":"./auth-configuration/index.d.ts","default":"./fesm2022/c8y-ngx-components-auth-configuration.mjs"},"./binary-file-download":{"types":"./binary-file-download/index.d.ts","default":"./fesm2022/c8y-ngx-components-binary-file-download.mjs"},"./bookmarks":{"types":"./bookmarks/index.d.ts","default":"./fesm2022/c8y-ngx-components-bookmarks.mjs"},"./branding/base-branding":{"types":"./branding/base-branding/index.d.ts","default":"./fesm2022/c8y-ngx-components-branding-base-branding.mjs"},"./branding/dark-theme":{"types":"./branding/dark-theme/index.d.ts","default":"./fesm2022/c8y-ngx-components-branding-dark-theme.mjs"},"./branding/extra-css-branding-editor":{"types":"./branding/extra-css-branding-editor/index.d.ts","default":"./fesm2022/c8y-ngx-components-branding-extra-css-branding-editor.mjs"},"./branding/plain-branding-editor":{"types":"./branding/plain-branding-editor/index.d.ts","default":"./fesm2022/c8y-ngx-components-branding-plain-branding-editor.mjs"},"./branding/plain-branding-editor/lazy":{"types":"./branding/plain-branding-editor/lazy/index.d.ts","default":"./fesm2022/c8y-ngx-components-branding-plain-branding-editor-lazy.mjs"},"./branding/shared":{"types":"./branding/shared/index.d.ts","default":"./fesm2022/c8y-ngx-components-branding-shared.mjs"},"./branding/shared/data":{"types":"./branding/shared/data/index.d.ts","default":"./fesm2022/c8y-ngx-components-branding-shared-data.mjs"},"./branding/shared/lazy":{"types":"./branding/shared/lazy/index.d.ts","default":"./fesm2022/c8y-ngx-components-branding-shared-lazy.mjs"},"./branding/shared/lazy/add-branding-modal":{"types":"./branding/shared/lazy/add-branding-modal/index.d.ts","default":"./fesm2022/c8y-ngx-components-branding-shared-lazy-add-branding-modal.mjs"},"./child-devices":{"types":"./child-devices/index.d.ts","default":"./fesm2022/c8y-ngx-components-child-devices.mjs"},"./cockpit-config":{"types":"./cockpit-config/index.d.ts","default":"./fesm2022/c8y-ngx-components-cockpit-config.mjs"},"./computed-asset-properties":{"types":"./computed-asset-properties/index.d.ts","default":"./fesm2022/c8y-ngx-components-computed-asset-properties.mjs"},"./connectivity":{"types":"./connectivity/index.d.ts","default":"./fesm2022/c8y-ngx-components-connectivity.mjs"},"./context-dashboard":{"types":"./context-dashboard/index.d.ts","default":"./fesm2022/c8y-ngx-components-context-dashboard.mjs"},"./context-dashboard-state":{"types":"./context-dashboard-state/index.d.ts","default":"./fesm2022/c8y-ngx-components-context-dashboard-state.mjs"},"./context-dashboard/asset/add":{"types":"./context-dashboard/asset/add/index.d.ts","default":"./fesm2022/c8y-ngx-components-context-dashboard-asset-add.mjs"},"./context-dashboard/asset/view":{"types":"./context-dashboard/asset/view/index.d.ts","default":"./fesm2022/c8y-ngx-components-context-dashboard-asset-view.mjs"},"./context-dashboard/cockpit-home-dashboard":{"types":"./context-dashboard/cockpit-home-dashboard/index.d.ts","default":"./fesm2022/c8y-ngx-components-context-dashboard-cockpit-home-dashboard.mjs"},"./context-dashboard/device/add":{"types":"./context-dashboard/device/add/index.d.ts","default":"./fesm2022/c8y-ngx-components-context-dashboard-device-add.mjs"},"./context-dashboard/device/view":{"types":"./context-dashboard/device/view/index.d.ts","default":"./fesm2022/c8y-ngx-components-context-dashboard-device-view.mjs"},"./context-dashboard/devicemanagement":{"types":"./context-dashboard/devicemanagement/index.d.ts","default":"./fesm2022/c8y-ngx-components-context-dashboard-devicemanagement.mjs"},"./dashboard-details-advanced-tab":{"types":"./dashboard-details-advanced-tab/index.d.ts","default":"./fesm2022/c8y-ngx-components-dashboard-details-advanced-tab.mjs"},"./dashboard-manager":{"types":"./dashboard-manager/index.d.ts","default":"./fesm2022/c8y-ngx-components-dashboard-manager.mjs"},"./dashboard-manager/devicemanagement":{"types":"./dashboard-manager/devicemanagement/index.d.ts","default":"./fesm2022/c8y-ngx-components-dashboard-manager-devicemanagement.mjs"},"./data-broker":{"types":"./data-broker/index.d.ts","default":"./fesm2022/c8y-ngx-components-data-broker.mjs"},"./data-grid-columns":{"types":"./data-grid-columns/index.d.ts","default":"./fesm2022/c8y-ngx-components-data-grid-columns.mjs"},"./data-grid-columns/asset-type":{"types":"./data-grid-columns/asset-type/index.d.ts","default":"./fesm2022/c8y-ngx-components-data-grid-columns-asset-type.mjs"},"./datapoint-explorer":{"types":"./datapoint-explorer/index.d.ts","default":"./fesm2022/c8y-ngx-components-datapoint-explorer.mjs"},"./datapoint-explorer/devicemanagement":{"types":"./datapoint-explorer/devicemanagement/index.d.ts","default":"./fesm2022/c8y-ngx-components-datapoint-explorer-devicemanagement.mjs"},"./datapoint-explorer/view":{"types":"./datapoint-explorer/view/index.d.ts","default":"./fesm2022/c8y-ngx-components-datapoint-explorer-view.mjs"},"./datapoint-library":{"types":"./datapoint-library/index.d.ts","default":"./fesm2022/c8y-ngx-components-datapoint-library.mjs"},"./datapoint-library/details":{"types":"./datapoint-library/details/index.d.ts","default":"./fesm2022/c8y-ngx-components-datapoint-library-details.mjs"},"./datapoint-library/list":{"types":"./datapoint-library/list/index.d.ts","default":"./fesm2022/c8y-ngx-components-datapoint-library-list.mjs"},"./datapoint-library/model":{"types":"./datapoint-library/model/index.d.ts","default":"./fesm2022/c8y-ngx-components-datapoint-library-model.mjs"},"./datapoint-library/services":{"types":"./datapoint-library/services/index.d.ts","default":"./fesm2022/c8y-ngx-components-datapoint-library-services.mjs"},"./datapoint-selector":{"types":"./datapoint-selector/index.d.ts","default":"./fesm2022/c8y-ngx-components-datapoint-selector.mjs"},"./datapoints-export-selector":{"types":"./datapoints-export-selector/index.d.ts","default":"./fesm2022/c8y-ngx-components-datapoints-export-selector.mjs"},"./default-subscriptions":{"types":"./default-subscriptions/index.d.ts","default":"./fesm2022/c8y-ngx-components-default-subscriptions.mjs"},"./device-enrolment":{"types":"./device-enrolment/index.d.ts","default":"./fesm2022/c8y-ngx-components-device-enrolment.mjs"},"./device-enrolment/modal":{"types":"./device-enrolment/modal/index.d.ts","default":"./fesm2022/c8y-ngx-components-device-enrolment-modal.mjs"},"./device-grid":{"types":"./device-grid/index.d.ts","default":"./fesm2022/c8y-ngx-components-device-grid.mjs"},"./device-list":{"types":"./device-list/index.d.ts","default":"./fesm2022/c8y-ngx-components-device-list.mjs"},"./device-map":{"types":"./device-map/index.d.ts","default":"./fesm2022/c8y-ngx-components-device-map.mjs"},"./device-profile":{"types":"./device-profile/index.d.ts","default":"./fesm2022/c8y-ngx-components-device-profile.mjs"},"./device-protocol-object-mappings":{"types":"./device-protocol-object-mappings/index.d.ts","default":"./fesm2022/c8y-ngx-components-device-protocol-object-mappings.mjs"},"./device-protocols":{"types":"./device-protocols/index.d.ts","default":"./fesm2022/c8y-ngx-components-device-protocols.mjs"},"./device-provisioned-certificates":{"types":"./device-provisioned-certificates/index.d.ts","default":"./fesm2022/c8y-ngx-components-device-provisioned-certificates.mjs"},"./device-shell":{"types":"./device-shell/index.d.ts","default":"./fesm2022/c8y-ngx-components-device-shell.mjs"},"./diagnostics":{"types":"./diagnostics/index.d.ts","default":"./fesm2022/c8y-ngx-components-diagnostics.mjs"},"./echart":{"types":"./echart/index.d.ts","default":"./fesm2022/c8y-ngx-components-echart.mjs"},"./echart/models":{"types":"./echart/models/index.d.ts","default":"./fesm2022/c8y-ngx-components-echart-models.mjs"},"./ecosystem":{"types":"./ecosystem/index.d.ts","default":"./fesm2022/c8y-ngx-components-ecosystem.mjs"},"./ecosystem/application-plugins":{"types":"./ecosystem/application-plugins/index.d.ts","default":"./fesm2022/c8y-ngx-components-ecosystem-application-plugins.mjs"},"./ecosystem/archived-confirm":{"types":"./ecosystem/archived-confirm/index.d.ts","default":"./fesm2022/c8y-ngx-components-ecosystem-archived-confirm.mjs"},"./ecosystem/license-confirm":{"types":"./ecosystem/license-confirm/index.d.ts","default":"./fesm2022/c8y-ngx-components-ecosystem-license-confirm.mjs"},"./ecosystem/plugin-setup-stepper":{"types":"./ecosystem/plugin-setup-stepper/index.d.ts","default":"./fesm2022/c8y-ngx-components-ecosystem-plugin-setup-stepper.mjs"},"./ecosystem/shared":{"types":"./ecosystem/shared/index.d.ts","default":"./fesm2022/c8y-ngx-components-ecosystem-shared.mjs"},"./editor":{"types":"./editor/index.d.ts","default":"./fesm2022/c8y-ngx-components-editor.mjs"},"./events":{"types":"./events/index.d.ts","default":"./fesm2022/c8y-ngx-components-events.mjs"},"./events/events-timeline":{"types":"./events/events-timeline/index.d.ts","default":"./fesm2022/c8y-ngx-components-events-events-timeline.mjs"},"./exports":{"types":"./exports/index.d.ts","default":"./fesm2022/c8y-ngx-components-exports.mjs"},"./exports/list":{"types":"./exports/list/index.d.ts","default":"./fesm2022/c8y-ngx-components-exports-list.mjs"},"./feature-toggles":{"types":"./feature-toggles/index.d.ts","default":"./fesm2022/c8y-ngx-components-feature-toggles.mjs"},"./feature-toggles/list":{"types":"./feature-toggles/list/index.d.ts","default":"./fesm2022/c8y-ngx-components-feature-toggles-list.mjs"},"./file-preview":{"types":"./file-preview/index.d.ts","default":"./fesm2022/c8y-ngx-components-file-preview.mjs"},"./files-repository":{"types":"./files-repository/index.d.ts","default":"./fesm2022/c8y-ngx-components-files-repository.mjs"},"./gettext":{"types":"./gettext/index.d.ts","default":"./fesm2022/c8y-ngx-components-gettext.mjs"},"./global-context":{"types":"./global-context/index.d.ts","default":"./fesm2022/c8y-ngx-components-global-context.mjs"},"./group-breadcrumbs":{"types":"./group-breadcrumbs/index.d.ts","default":"./fesm2022/c8y-ngx-components-group-breadcrumbs.mjs"},"./icon-selector":{"types":"./icon-selector/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector.mjs"},"./icon-selector/icons":{"types":"./icon-selector/icons/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons.mjs"},"./icon-selector/icons/arrows":{"types":"./icon-selector/icons/arrows/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-arrows.mjs"},"./icon-selector/icons/city":{"types":"./icon-selector/icons/city/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-city.mjs"},"./icon-selector/icons/data":{"types":"./icon-selector/icons/data/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-data.mjs"},"./icon-selector/icons/dateAndTime":{"types":"./icon-selector/icons/dateAndTime/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-dateAndTime.mjs"},"./icon-selector/icons/devicesAndSensors":{"types":"./icon-selector/icons/devicesAndSensors/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-devicesAndSensors.mjs"},"./icon-selector/icons/ecommerce":{"types":"./icon-selector/icons/ecommerce/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-ecommerce.mjs"},"./icon-selector/icons/editing":{"types":"./icon-selector/icons/editing/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-editing.mjs"},"./icon-selector/icons/filesAndFolders":{"types":"./icon-selector/icons/filesAndFolders/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-filesAndFolders.mjs"},"./icon-selector/icons/finance":{"types":"./icon-selector/icons/finance/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-finance.mjs"},"./icon-selector/icons/hands":{"types":"./icon-selector/icons/hands/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-hands.mjs"},"./icon-selector/icons/location":{"types":"./icon-selector/icons/location/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-location.mjs"},"./icon-selector/icons/messaging":{"types":"./icon-selector/icons/messaging/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-messaging.mjs"},"./icon-selector/icons/multimedia":{"types":"./icon-selector/icons/multimedia/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-multimedia.mjs"},"./icon-selector/icons/network":{"types":"./icon-selector/icons/network/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-network.mjs"},"./icon-selector/icons/office":{"types":"./icon-selector/icons/office/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-office.mjs"},"./icon-selector/icons/people":{"types":"./icon-selector/icons/people/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-people.mjs"},"./icon-selector/icons/platform":{"types":"./icon-selector/icons/platform/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-platform.mjs"},"./icon-selector/icons/programming":{"types":"./icon-selector/icons/programming/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-programming.mjs"},"./icon-selector/icons/security":{"types":"./icon-selector/icons/security/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-security.mjs"},"./icon-selector/icons/transport":{"types":"./icon-selector/icons/transport/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-transport.mjs"},"./icon-selector/icons/userInterface":{"types":"./icon-selector/icons/userInterface/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-userInterface.mjs"},"./icon-selector/icons/weather":{"types":"./icon-selector/icons/weather/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-weather.mjs"},"./icon-selector/model":{"types":"./icon-selector/model/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-model.mjs"},"./interval-picker":{"types":"./interval-picker/index.d.ts","default":"./fesm2022/c8y-ngx-components-interval-picker.mjs"},"./lazy/three":{"types":"./lazy/three/index.d.ts","default":"./fesm2022/c8y-ngx-components-lazy-three.mjs"},"./lazy/three-orbit-controls":{"types":"./lazy/three-orbit-controls/index.d.ts","default":"./fesm2022/c8y-ngx-components-lazy-three-orbit-controls.mjs"},"./location":{"types":"./location/index.d.ts","default":"./fesm2022/c8y-ngx-components-location.mjs"},"./loriot-device-registration":{"types":"./loriot-device-registration/index.d.ts","default":"./fesm2022/c8y-ngx-components-loriot-device-registration.mjs"},"./map":{"types":"./map/index.d.ts","default":"./fesm2022/c8y-ngx-components-map.mjs"},"./messaging-management":{"types":"./messaging-management/index.d.ts","default":"./fesm2022/c8y-ngx-components-messaging-management.mjs"},"./module-federation-exports/assets-navigator":{"types":"./module-federation-exports/assets-navigator/index.d.ts","default":"./fesm2022/c8y-ngx-components-module-federation-exports-assets-navigator.mjs"},"./operations":{"types":"./operations/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations.mjs"},"./operations/bulk-operation-from-single":{"types":"./operations/bulk-operation-from-single/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-bulk-operation-from-single.mjs"},"./operations/bulk-operation-list-item":{"types":"./operations/bulk-operation-list-item/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-bulk-operation-list-item.mjs"},"./operations/bulk-operation-modal-details":{"types":"./operations/bulk-operation-modal-details/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-bulk-operation-modal-details.mjs"},"./operations/bulk-operation-scheduler":{"types":"./operations/bulk-operation-scheduler/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-bulk-operation-scheduler.mjs"},"./operations/bulk-operation-stepper":{"types":"./operations/bulk-operation-stepper/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-bulk-operation-stepper.mjs"},"./operations/bulk-operations-list":{"types":"./operations/bulk-operations-list/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-bulk-operations-list.mjs"},"./operations/bulk-operations-service":{"types":"./operations/bulk-operations-service/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-bulk-operations-service.mjs"},"./operations/bulk-operations-stepper-container":{"types":"./operations/bulk-operations-stepper-container/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-bulk-operations-stepper-container.mjs"},"./operations/bulk-single-operations-list":{"types":"./operations/bulk-single-operations-list/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-bulk-single-operations-list.mjs"},"./operations/create-bulk-operation-details":{"types":"./operations/create-bulk-operation-details/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-create-bulk-operation-details.mjs"},"./operations/device-selector":{"types":"./operations/device-selector/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-device-selector.mjs"},"./operations/grid-columns":{"types":"./operations/grid-columns/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-grid-columns.mjs"},"./operations/operation-details":{"types":"./operations/operation-details/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-operation-details.mjs"},"./operations/operation-summary":{"types":"./operations/operation-summary/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-operation-summary.mjs"},"./operations/operations-list":{"types":"./operations/operations-list/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-operations-list.mjs"},"./operations/operations-list-item-details":{"types":"./operations/operations-list-item-details/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-operations-list-item-details.mjs"},"./operations/operations-timeline":{"types":"./operations/operations-timeline/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-operations-timeline.mjs"},"./operations/product-experience":{"types":"./operations/product-experience/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-product-experience.mjs"},"./operations/shared":{"types":"./operations/shared/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-shared.mjs"},"./operations/status-filter":{"types":"./operations/status-filter/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-status-filter.mjs"},"./operations/stepper-bulk-type-configuration":{"types":"./operations/stepper-bulk-type-configuration/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-stepper-bulk-type-configuration.mjs"},"./operations/stepper-bulk-type-device-profile":{"types":"./operations/stepper-bulk-type-device-profile/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-stepper-bulk-type-device-profile.mjs"},"./operations/stepper-bulk-type-firmware":{"types":"./operations/stepper-bulk-type-firmware/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-stepper-bulk-type-firmware.mjs"},"./operations/stepper-bulk-type-software":{"types":"./operations/stepper-bulk-type-software/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-stepper-bulk-type-software.mjs"},"./operations/stepper-frames":{"types":"./operations/stepper-frames/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-stepper-frames.mjs"},"./pending-mo-request":{"types":"./pending-mo-request/index.d.ts","default":"./fesm2022/c8y-ngx-components-pending-mo-request.mjs"},"./platform-configuration":{"types":"./platform-configuration/index.d.ts","default":"./fesm2022/c8y-ngx-components-platform-configuration.mjs"},"./polyfills":{"types":"./polyfills/index.d.ts","default":"./fesm2022/c8y-ngx-components-polyfills.mjs"},"./protocol-lpwan":{"types":"./protocol-lpwan/index.d.ts","default":"./fesm2022/c8y-ngx-components-protocol-lpwan.mjs"},"./protocol-opcua":{"types":"./protocol-opcua/index.d.ts","default":"./fesm2022/c8y-ngx-components-protocol-opcua.mjs"},"./protocol-opcua/mappings":{"types":"./protocol-opcua/mappings/index.d.ts","default":"./fesm2022/c8y-ngx-components-protocol-opcua-mappings.mjs"},"./register-device":{"types":"./register-device/index.d.ts","default":"./fesm2022/c8y-ngx-components-register-device.mjs"},"./remote-access/configurations":{"types":"./remote-access/configurations/index.d.ts","default":"./fesm2022/c8y-ngx-components-remote-access-configurations.mjs"},"./remote-access/data":{"types":"./remote-access/data/index.d.ts","default":"./fesm2022/c8y-ngx-components-remote-access-data.mjs"},"./remote-access/passthrough":{"types":"./remote-access/passthrough/index.d.ts","default":"./fesm2022/c8y-ngx-components-remote-access-passthrough.mjs"},"./remote-access/shared":{"types":"./remote-access/shared/index.d.ts","default":"./fesm2022/c8y-ngx-components-remote-access-shared.mjs"},"./remote-access/ssh":{"types":"./remote-access/ssh/index.d.ts","default":"./fesm2022/c8y-ngx-components-remote-access-ssh.mjs"},"./remote-access/ssh/remote-access-ssh-endpoint-modal":{"types":"./remote-access/ssh/remote-access-ssh-endpoint-modal/index.d.ts","default":"./fesm2022/c8y-ngx-components-remote-access-ssh-remote-access-ssh-endpoint-modal.mjs"},"./remote-access/telnet":{"types":"./remote-access/telnet/index.d.ts","default":"./fesm2022/c8y-ngx-components-remote-access-telnet.mjs"},"./remote-access/terminal-viewer":{"types":"./remote-access/terminal-viewer/index.d.ts","default":"./fesm2022/c8y-ngx-components-remote-access-terminal-viewer.mjs"},"./remote-access/vnc":{"types":"./remote-access/vnc/index.d.ts","default":"./fesm2022/c8y-ngx-components-remote-access-vnc.mjs"},"./remote-access/vnc/remote-access-vnc-endpoint-modal":{"types":"./remote-access/vnc/remote-access-vnc-endpoint-modal/index.d.ts","default":"./fesm2022/c8y-ngx-components-remote-access-vnc-remote-access-vnc-endpoint-modal.mjs"},"./remote-access/vnc/vnc-viewer":{"types":"./remote-access/vnc/vnc-viewer/index.d.ts","default":"./fesm2022/c8y-ngx-components-remote-access-vnc-vnc-viewer.mjs"},"./replace-device":{"types":"./replace-device/index.d.ts","default":"./fesm2022/c8y-ngx-components-replace-device.mjs"},"./replace-device/replace-device-wizard":{"types":"./replace-device/replace-device-wizard/index.d.ts","default":"./fesm2022/c8y-ngx-components-replace-device-replace-device-wizard.mjs"},"./report-dashboard":{"types":"./report-dashboard/index.d.ts","default":"./fesm2022/c8y-ngx-components-report-dashboard.mjs"},"./reports":{"types":"./reports/index.d.ts","default":"./fesm2022/c8y-ngx-components-reports.mjs"},"./repository":{"types":"./repository/index.d.ts","default":"./fesm2022/c8y-ngx-components-repository.mjs"},"./repository/configuration":{"types":"./repository/configuration/index.d.ts","default":"./fesm2022/c8y-ngx-components-repository-configuration.mjs"},"./repository/firmware":{"types":"./repository/firmware/index.d.ts","default":"./fesm2022/c8y-ngx-components-repository-firmware.mjs"},"./repository/shared":{"types":"./repository/shared/index.d.ts","default":"./fesm2022/c8y-ngx-components-repository-shared.mjs"},"./repository/software":{"types":"./repository/software/index.d.ts","default":"./fesm2022/c8y-ngx-components-repository-software.mjs"},"./search":{"types":"./search/index.d.ts","default":"./fesm2022/c8y-ngx-components-search.mjs"},"./sensor-phone":{"types":"./sensor-phone/index.d.ts","default":"./fesm2022/c8y-ngx-components-sensor-phone.mjs"},"./sensor-phone/sensor-phone-modal":{"types":"./sensor-phone/sensor-phone-modal/index.d.ts","default":"./fesm2022/c8y-ngx-components-sensor-phone-sensor-phone-modal.mjs"},"./services":{"types":"./services/index.d.ts","default":"./fesm2022/c8y-ngx-components-services.mjs"},"./services/service-command-tab":{"types":"./services/service-command-tab/index.d.ts","default":"./fesm2022/c8y-ngx-components-services-service-command-tab.mjs"},"./services/shared":{"types":"./services/shared/index.d.ts","default":"./fesm2022/c8y-ngx-components-services-shared.mjs"},"./sigfox-device-registration":{"types":"./sigfox-device-registration/index.d.ts","default":"./fesm2022/c8y-ngx-components-sigfox-device-registration.mjs"},"./sms-gateway":{"types":"./sms-gateway/index.d.ts","default":"./fesm2022/c8y-ngx-components-sms-gateway.mjs"},"./static-assets":{"types":"./static-assets/index.d.ts","default":"./fesm2022/c8y-ngx-components-static-assets.mjs"},"./static-assets/data":{"types":"./static-assets/data/index.d.ts","default":"./fesm2022/c8y-ngx-components-static-assets-data.mjs"},"./static-assets/modal":{"types":"./static-assets/modal/index.d.ts","default":"./fesm2022/c8y-ngx-components-static-assets-modal.mjs"},"./sub-assets":{"types":"./sub-assets/index.d.ts","default":"./fesm2022/c8y-ngx-components-sub-assets.mjs"},"./tenants":{"types":"./tenants/index.d.ts","default":"./fesm2022/c8y-ngx-components-tenants.mjs"},"./time-context":{"types":"./time-context/index.d.ts","default":"./fesm2022/c8y-ngx-components-time-context.mjs"},"./tracking":{"types":"./tracking/index.d.ts","default":"./fesm2022/c8y-ngx-components-tracking.mjs"},"./translation-editor":{"types":"./translation-editor/index.d.ts","default":"./fesm2022/c8y-ngx-components-translation-editor.mjs"},"./translation-editor/data":{"types":"./translation-editor/data/index.d.ts","default":"./fesm2022/c8y-ngx-components-translation-editor-data.mjs"},"./translation-editor/lazy":{"types":"./translation-editor/lazy/index.d.ts","default":"./fesm2022/c8y-ngx-components-translation-editor-lazy.mjs"},"./trusted-certificates":{"types":"./trusted-certificates/index.d.ts","default":"./fesm2022/c8y-ngx-components-trusted-certificates.mjs"},"./upgrade":{"types":"./upgrade/index.d.ts","default":"./fesm2022/c8y-ngx-components-upgrade.mjs"},"./upgrade/upgraded-services":{"types":"./upgrade/upgraded-services/index.d.ts","default":"./fesm2022/c8y-ngx-components-upgrade-upgraded-services.mjs"},"./user-roles":{"types":"./user-roles/index.d.ts","default":"./fesm2022/c8y-ngx-components-user-roles.mjs"},"./widgets/cockpit-exports":{"types":"./widgets/cockpit-exports/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-cockpit-exports.mjs"},"./widgets/definitions":{"types":"./widgets/definitions/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions.mjs"},"./widgets/definitions/alarms/alarm-list":{"types":"./widgets/definitions/alarms/alarm-list/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-alarms-alarm-list.mjs"},"./widgets/definitions/alarms/alarm-widget-controls.presets":{"types":"./widgets/definitions/alarms/alarm-widget-controls.presets/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-alarms-alarm-widget-controls.presets.mjs"},"./widgets/definitions/alarms/all-critical-alarms":{"types":"./widgets/definitions/alarms/all-critical-alarms/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-alarms-all-critical-alarms.mjs"},"./widgets/definitions/alarms/recent-alarms":{"types":"./widgets/definitions/alarms/recent-alarms/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-alarms-recent-alarms.mjs"},"./widgets/definitions/applications":{"types":"./widgets/definitions/applications/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-applications.mjs"},"./widgets/definitions/asset-notes":{"types":"./widgets/definitions/asset-notes/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-asset-notes.mjs"},"./widgets/definitions/asset-table":{"types":"./widgets/definitions/asset-table/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-asset-table.mjs"},"./widgets/definitions/cockpit-legacy-welcome":{"types":"./widgets/definitions/cockpit-legacy-welcome/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-cockpit-legacy-welcome.mjs"},"./widgets/definitions/cockpit-welcome":{"types":"./widgets/definitions/cockpit-welcome/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-cockpit-welcome.mjs"},"./widgets/definitions/datapoints-graph":{"types":"./widgets/definitions/datapoints-graph/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-datapoints-graph.mjs"},"./widgets/definitions/datapoints-list":{"types":"./widgets/definitions/datapoints-list/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-datapoints-list.mjs"},"./widgets/definitions/datapoints-table":{"types":"./widgets/definitions/datapoints-table/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-datapoints-table.mjs"},"./widgets/definitions/device-control-message":{"types":"./widgets/definitions/device-control-message/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-device-control-message.mjs"},"./widgets/definitions/device-management-welcome":{"types":"./widgets/definitions/device-management-welcome/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-device-management-welcome.mjs"},"./widgets/definitions/event-list":{"types":"./widgets/definitions/event-list/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-event-list.mjs"},"./widgets/definitions/help-and-service":{"types":"./widgets/definitions/help-and-service/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-help-and-service.mjs"},"./widgets/definitions/html-widget":{"types":"./widgets/definitions/html-widget/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-html-widget.mjs"},"./widgets/definitions/html-widget-ai-config":{"types":"./widgets/definitions/html-widget-ai-config/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-html-widget-ai-config.mjs"},"./widgets/definitions/image":{"types":"./widgets/definitions/image/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-image.mjs"},"./widgets/definitions/info-gauge":{"types":"./widgets/definitions/info-gauge/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-info-gauge.mjs"},"./widgets/definitions/kpi":{"types":"./widgets/definitions/kpi/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-kpi.mjs"},"./widgets/definitions/linear-gauge":{"types":"./widgets/definitions/linear-gauge/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-linear-gauge.mjs"},"./widgets/definitions/map":{"types":"./widgets/definitions/map/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-map.mjs"},"./widgets/definitions/markdown":{"types":"./widgets/definitions/markdown/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-markdown.mjs"},"./widgets/definitions/pie-chart":{"types":"./widgets/definitions/pie-chart/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-pie-chart.mjs"},"./widgets/definitions/quick-links":{"types":"./widgets/definitions/quick-links/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-quick-links.mjs"},"./widgets/definitions/radial-gauge":{"types":"./widgets/definitions/radial-gauge/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-radial-gauge.mjs"},"./widgets/definitions/silo":{"types":"./widgets/definitions/silo/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-silo.mjs"},"./widgets/definitions/three-d-rotation":{"types":"./widgets/definitions/three-d-rotation/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-three-d-rotation.mjs"},"./widgets/device-management-exports":{"types":"./widgets/device-management-exports/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-device-management-exports.mjs"},"./widgets/exports":{"types":"./widgets/exports/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-exports.mjs"},"./widgets/implementations/alarms":{"types":"./widgets/implementations/alarms/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-alarms.mjs"},"./widgets/implementations/asset-notes":{"types":"./widgets/implementations/asset-notes/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-asset-notes.mjs"},"./widgets/implementations/asset-table":{"types":"./widgets/implementations/asset-table/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-asset-table.mjs"},"./widgets/implementations/cockpit-legacy-welcome":{"types":"./widgets/implementations/cockpit-legacy-welcome/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-cockpit-legacy-welcome.mjs"},"./widgets/implementations/cockpit-welcome":{"types":"./widgets/implementations/cockpit-welcome/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-cockpit-welcome.mjs"},"./widgets/implementations/datapoints-graph":{"types":"./widgets/implementations/datapoints-graph/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-datapoints-graph.mjs"},"./widgets/implementations/datapoints-list":{"types":"./widgets/implementations/datapoints-list/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-datapoints-list.mjs"},"./widgets/implementations/datapoints-table":{"types":"./widgets/implementations/datapoints-table/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-datapoints-table.mjs"},"./widgets/implementations/device-control-message":{"types":"./widgets/implementations/device-control-message/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-device-control-message.mjs"},"./widgets/implementations/device-management-welcome":{"types":"./widgets/implementations/device-management-welcome/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-device-management-welcome.mjs"},"./widgets/implementations/help-and-service-widget":{"types":"./widgets/implementations/help-and-service-widget/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-help-and-service-widget.mjs"},"./widgets/implementations/html-widget":{"types":"./widgets/implementations/html-widget/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-html-widget.mjs"},"./widgets/implementations/image":{"types":"./widgets/implementations/image/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-image.mjs"},"./widgets/implementations/info-gauge":{"types":"./widgets/implementations/info-gauge/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-info-gauge.mjs"},"./widgets/implementations/kpi":{"types":"./widgets/implementations/kpi/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-kpi.mjs"},"./widgets/implementations/linear-gauge":{"types":"./widgets/implementations/linear-gauge/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-linear-gauge.mjs"},"./widgets/implementations/map":{"types":"./widgets/implementations/map/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-map.mjs"},"./widgets/implementations/markdown":{"types":"./widgets/implementations/markdown/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-markdown.mjs"},"./widgets/implementations/pie-chart":{"types":"./widgets/implementations/pie-chart/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-pie-chart.mjs"},"./widgets/implementations/quick-links":{"types":"./widgets/implementations/quick-links/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-quick-links.mjs"},"./widgets/implementations/three-d-rotation":{"types":"./widgets/implementations/three-d-rotation/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-three-d-rotation.mjs"},"./widgets/implementations/three-d-rotation/lazy-box-model":{"types":"./widgets/implementations/three-d-rotation/lazy-box-model/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-three-d-rotation-lazy-box-model.mjs"},"./widgets/implementations/three-d-rotation/lazy-phone-model":{"types":"./widgets/implementations/three-d-rotation/lazy-phone-model/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-three-d-rotation-lazy-phone-model.mjs"},"./widgets/import-export-config":{"types":"./widgets/import-export-config/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-import-export-config.mjs"},"./widgets/widget-providers":{"types":"./widgets/widget-providers/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-widget-providers.mjs"}},"sideEffects":false}
|
|
1
|
+
{"name":"@c8y/ngx-components","version":"1023.65.0","license":"Apache-2.0","author":"Cumulocity","description":"Angular modules for Cumulocity IoT applications","keywords":["Cumulocity","IoT","m2m","Angular","Components"],"peerDependencies":{"@angular/cdk":"^20.2.14","@angular/common":"^20.3.15","@angular/core":"^20.3.17","@angular/forms":"^20.3.15","@angular/platform-browser":"^20.3.15","@angular/router":"^20.3.15","@angular/upgrade":"^20.3.15","@c8y/bootstrap":"1023.65.0","@c8y/client":"1023.65.0","@novnc/novnc":"1.5.0","@xterm/addon-fit":"0.10.0","@xterm/xterm":"5.5.0","leaflet":"^1.9.4","monaco-editor":">= 0.31.0","lz-string":"1.5.0","rxjs":"7.8.2"},"dependencies":{"@ngx-formly/core":"6.1.3","@ngx-translate/core":"17.0.0","@zip.js/zip.js":"2.7.71","angularx-qrcode":"20.0.0","chroma-js":"3.1.2","file-saver":"2.0.5","libphonenumber-js":"1.12.10","lodash-es":"^4.17.23","marked":"16.3.0","ngx-bootstrap":"20.0.2","semver":"~7.7.1","three":"0.173.0","tslib":"^2.6.3","ajv":"^8.18.0","ajv-formats":"3.0.1","echarts":"6.0.0","ngx-echarts":"20.0.2"},"module":"fesm2022/c8y-ngx-components.mjs","typings":"index.d.ts","exports":{"./locales/de.po":"./locales/de.po","./locales/en.po":"./locales/en.po","./locales/es.po":"./locales/es.po","./locales/fr.po":"./locales/fr.po","./locales/ja_JP.po":"./locales/ja_JP.po","./locales/ko.po":"./locales/ko.po","./locales/nl.po":"./locales/nl.po","./locales/pt_BR.po":"./locales/pt_BR.po","./locales/zh_CN.po":"./locales/zh_CN.po","./locales/zh_TW.po":"./locales/zh_TW.po","./locales/pl.po":"./locales/pl.po","./locales/en_US.po":"./locales/en_US.po","./package.json":{"default":"./package.json"},".":{"types":"./index.d.ts","default":"./fesm2022/c8y-ngx-components.mjs"},"./actility-device-registration":{"types":"./actility-device-registration/index.d.ts","default":"./fesm2022/c8y-ngx-components-actility-device-registration.mjs"},"./advanced-software-management":{"types":"./advanced-software-management/index.d.ts","default":"./fesm2022/c8y-ngx-components-advanced-software-management.mjs"},"./ai":{"types":"./ai/index.d.ts","default":"./fesm2022/c8y-ngx-components-ai.mjs"},"./ai/agent-chat":{"types":"./ai/agent-chat/index.d.ts","default":"./fesm2022/c8y-ngx-components-ai-agent-chat.mjs"},"./ai/agents/html":{"types":"./ai/agents/html/index.d.ts","default":"./fesm2022/c8y-ngx-components-ai-agents-html.mjs"},"./ai/ai-chat":{"types":"./ai/ai-chat/index.d.ts","default":"./fesm2022/c8y-ngx-components-ai-ai-chat.mjs"},"./alarm-event-selector":{"types":"./alarm-event-selector/index.d.ts","default":"./fesm2022/c8y-ngx-components-alarm-event-selector.mjs"},"./alarms":{"types":"./alarms/index.d.ts","default":"./fesm2022/c8y-ngx-components-alarms.mjs"},"./alarms/cockpit":{"types":"./alarms/cockpit/index.d.ts","default":"./fesm2022/c8y-ngx-components-alarms-cockpit.mjs"},"./alarms/devicemanagement":{"types":"./alarms/devicemanagement/index.d.ts","default":"./fesm2022/c8y-ngx-components-alarms-devicemanagement.mjs"},"./api":{"types":"./api/index.d.ts","default":"./fesm2022/c8y-ngx-components-api.mjs"},"./app-logs":{"types":"./app-logs/index.d.ts","default":"./fesm2022/c8y-ngx-components-app-logs.mjs"},"./application-access/list":{"types":"./application-access/list/index.d.ts","default":"./fesm2022/c8y-ngx-components-application-access-list.mjs"},"./application-access/user":{"types":"./application-access/user/index.d.ts","default":"./fesm2022/c8y-ngx-components-application-access-user.mjs"},"./application-access/user/application-access-user-details-wrapper":{"types":"./application-access/user/application-access-user-details-wrapper/index.d.ts","default":"./fesm2022/c8y-ngx-components-application-access-user-application-access-user-details-wrapper.mjs"},"./asset-properties":{"types":"./asset-properties/index.d.ts","default":"./fesm2022/c8y-ngx-components-asset-properties.mjs"},"./assets-navigator":{"types":"./assets-navigator/index.d.ts","default":"./fesm2022/c8y-ngx-components-assets-navigator.mjs"},"./auth-configuration":{"types":"./auth-configuration/index.d.ts","default":"./fesm2022/c8y-ngx-components-auth-configuration.mjs"},"./binary-file-download":{"types":"./binary-file-download/index.d.ts","default":"./fesm2022/c8y-ngx-components-binary-file-download.mjs"},"./bookmarks":{"types":"./bookmarks/index.d.ts","default":"./fesm2022/c8y-ngx-components-bookmarks.mjs"},"./branding/base-branding":{"types":"./branding/base-branding/index.d.ts","default":"./fesm2022/c8y-ngx-components-branding-base-branding.mjs"},"./branding/dark-theme":{"types":"./branding/dark-theme/index.d.ts","default":"./fesm2022/c8y-ngx-components-branding-dark-theme.mjs"},"./branding/extra-css-branding-editor":{"types":"./branding/extra-css-branding-editor/index.d.ts","default":"./fesm2022/c8y-ngx-components-branding-extra-css-branding-editor.mjs"},"./branding/plain-branding-editor":{"types":"./branding/plain-branding-editor/index.d.ts","default":"./fesm2022/c8y-ngx-components-branding-plain-branding-editor.mjs"},"./branding/plain-branding-editor/lazy":{"types":"./branding/plain-branding-editor/lazy/index.d.ts","default":"./fesm2022/c8y-ngx-components-branding-plain-branding-editor-lazy.mjs"},"./branding/shared":{"types":"./branding/shared/index.d.ts","default":"./fesm2022/c8y-ngx-components-branding-shared.mjs"},"./branding/shared/data":{"types":"./branding/shared/data/index.d.ts","default":"./fesm2022/c8y-ngx-components-branding-shared-data.mjs"},"./branding/shared/lazy":{"types":"./branding/shared/lazy/index.d.ts","default":"./fesm2022/c8y-ngx-components-branding-shared-lazy.mjs"},"./branding/shared/lazy/add-branding-modal":{"types":"./branding/shared/lazy/add-branding-modal/index.d.ts","default":"./fesm2022/c8y-ngx-components-branding-shared-lazy-add-branding-modal.mjs"},"./child-devices":{"types":"./child-devices/index.d.ts","default":"./fesm2022/c8y-ngx-components-child-devices.mjs"},"./cockpit-config":{"types":"./cockpit-config/index.d.ts","default":"./fesm2022/c8y-ngx-components-cockpit-config.mjs"},"./computed-asset-properties":{"types":"./computed-asset-properties/index.d.ts","default":"./fesm2022/c8y-ngx-components-computed-asset-properties.mjs"},"./connectivity":{"types":"./connectivity/index.d.ts","default":"./fesm2022/c8y-ngx-components-connectivity.mjs"},"./context-dashboard":{"types":"./context-dashboard/index.d.ts","default":"./fesm2022/c8y-ngx-components-context-dashboard.mjs"},"./context-dashboard-state":{"types":"./context-dashboard-state/index.d.ts","default":"./fesm2022/c8y-ngx-components-context-dashboard-state.mjs"},"./context-dashboard/asset/add":{"types":"./context-dashboard/asset/add/index.d.ts","default":"./fesm2022/c8y-ngx-components-context-dashboard-asset-add.mjs"},"./context-dashboard/asset/view":{"types":"./context-dashboard/asset/view/index.d.ts","default":"./fesm2022/c8y-ngx-components-context-dashboard-asset-view.mjs"},"./context-dashboard/cockpit-home-dashboard":{"types":"./context-dashboard/cockpit-home-dashboard/index.d.ts","default":"./fesm2022/c8y-ngx-components-context-dashboard-cockpit-home-dashboard.mjs"},"./context-dashboard/device/add":{"types":"./context-dashboard/device/add/index.d.ts","default":"./fesm2022/c8y-ngx-components-context-dashboard-device-add.mjs"},"./context-dashboard/device/view":{"types":"./context-dashboard/device/view/index.d.ts","default":"./fesm2022/c8y-ngx-components-context-dashboard-device-view.mjs"},"./context-dashboard/devicemanagement":{"types":"./context-dashboard/devicemanagement/index.d.ts","default":"./fesm2022/c8y-ngx-components-context-dashboard-devicemanagement.mjs"},"./dashboard-details-advanced-tab":{"types":"./dashboard-details-advanced-tab/index.d.ts","default":"./fesm2022/c8y-ngx-components-dashboard-details-advanced-tab.mjs"},"./dashboard-manager":{"types":"./dashboard-manager/index.d.ts","default":"./fesm2022/c8y-ngx-components-dashboard-manager.mjs"},"./dashboard-manager/devicemanagement":{"types":"./dashboard-manager/devicemanagement/index.d.ts","default":"./fesm2022/c8y-ngx-components-dashboard-manager-devicemanagement.mjs"},"./data-broker":{"types":"./data-broker/index.d.ts","default":"./fesm2022/c8y-ngx-components-data-broker.mjs"},"./data-grid-columns":{"types":"./data-grid-columns/index.d.ts","default":"./fesm2022/c8y-ngx-components-data-grid-columns.mjs"},"./data-grid-columns/asset-type":{"types":"./data-grid-columns/asset-type/index.d.ts","default":"./fesm2022/c8y-ngx-components-data-grid-columns-asset-type.mjs"},"./datapoint-explorer":{"types":"./datapoint-explorer/index.d.ts","default":"./fesm2022/c8y-ngx-components-datapoint-explorer.mjs"},"./datapoint-explorer/devicemanagement":{"types":"./datapoint-explorer/devicemanagement/index.d.ts","default":"./fesm2022/c8y-ngx-components-datapoint-explorer-devicemanagement.mjs"},"./datapoint-explorer/view":{"types":"./datapoint-explorer/view/index.d.ts","default":"./fesm2022/c8y-ngx-components-datapoint-explorer-view.mjs"},"./datapoint-library":{"types":"./datapoint-library/index.d.ts","default":"./fesm2022/c8y-ngx-components-datapoint-library.mjs"},"./datapoint-library/details":{"types":"./datapoint-library/details/index.d.ts","default":"./fesm2022/c8y-ngx-components-datapoint-library-details.mjs"},"./datapoint-library/list":{"types":"./datapoint-library/list/index.d.ts","default":"./fesm2022/c8y-ngx-components-datapoint-library-list.mjs"},"./datapoint-library/model":{"types":"./datapoint-library/model/index.d.ts","default":"./fesm2022/c8y-ngx-components-datapoint-library-model.mjs"},"./datapoint-library/services":{"types":"./datapoint-library/services/index.d.ts","default":"./fesm2022/c8y-ngx-components-datapoint-library-services.mjs"},"./datapoint-selector":{"types":"./datapoint-selector/index.d.ts","default":"./fesm2022/c8y-ngx-components-datapoint-selector.mjs"},"./datapoints-export-selector":{"types":"./datapoints-export-selector/index.d.ts","default":"./fesm2022/c8y-ngx-components-datapoints-export-selector.mjs"},"./default-subscriptions":{"types":"./default-subscriptions/index.d.ts","default":"./fesm2022/c8y-ngx-components-default-subscriptions.mjs"},"./device-enrolment":{"types":"./device-enrolment/index.d.ts","default":"./fesm2022/c8y-ngx-components-device-enrolment.mjs"},"./device-enrolment/modal":{"types":"./device-enrolment/modal/index.d.ts","default":"./fesm2022/c8y-ngx-components-device-enrolment-modal.mjs"},"./device-grid":{"types":"./device-grid/index.d.ts","default":"./fesm2022/c8y-ngx-components-device-grid.mjs"},"./device-list":{"types":"./device-list/index.d.ts","default":"./fesm2022/c8y-ngx-components-device-list.mjs"},"./device-map":{"types":"./device-map/index.d.ts","default":"./fesm2022/c8y-ngx-components-device-map.mjs"},"./device-profile":{"types":"./device-profile/index.d.ts","default":"./fesm2022/c8y-ngx-components-device-profile.mjs"},"./device-protocol-object-mappings":{"types":"./device-protocol-object-mappings/index.d.ts","default":"./fesm2022/c8y-ngx-components-device-protocol-object-mappings.mjs"},"./device-protocols":{"types":"./device-protocols/index.d.ts","default":"./fesm2022/c8y-ngx-components-device-protocols.mjs"},"./device-provisioned-certificates":{"types":"./device-provisioned-certificates/index.d.ts","default":"./fesm2022/c8y-ngx-components-device-provisioned-certificates.mjs"},"./device-shell":{"types":"./device-shell/index.d.ts","default":"./fesm2022/c8y-ngx-components-device-shell.mjs"},"./diagnostics":{"types":"./diagnostics/index.d.ts","default":"./fesm2022/c8y-ngx-components-diagnostics.mjs"},"./echart":{"types":"./echart/index.d.ts","default":"./fesm2022/c8y-ngx-components-echart.mjs"},"./echart/models":{"types":"./echart/models/index.d.ts","default":"./fesm2022/c8y-ngx-components-echart-models.mjs"},"./ecosystem":{"types":"./ecosystem/index.d.ts","default":"./fesm2022/c8y-ngx-components-ecosystem.mjs"},"./ecosystem/application-plugins":{"types":"./ecosystem/application-plugins/index.d.ts","default":"./fesm2022/c8y-ngx-components-ecosystem-application-plugins.mjs"},"./ecosystem/archived-confirm":{"types":"./ecosystem/archived-confirm/index.d.ts","default":"./fesm2022/c8y-ngx-components-ecosystem-archived-confirm.mjs"},"./ecosystem/license-confirm":{"types":"./ecosystem/license-confirm/index.d.ts","default":"./fesm2022/c8y-ngx-components-ecosystem-license-confirm.mjs"},"./ecosystem/plugin-setup-stepper":{"types":"./ecosystem/plugin-setup-stepper/index.d.ts","default":"./fesm2022/c8y-ngx-components-ecosystem-plugin-setup-stepper.mjs"},"./ecosystem/shared":{"types":"./ecosystem/shared/index.d.ts","default":"./fesm2022/c8y-ngx-components-ecosystem-shared.mjs"},"./editor":{"types":"./editor/index.d.ts","default":"./fesm2022/c8y-ngx-components-editor.mjs"},"./events":{"types":"./events/index.d.ts","default":"./fesm2022/c8y-ngx-components-events.mjs"},"./events/events-timeline":{"types":"./events/events-timeline/index.d.ts","default":"./fesm2022/c8y-ngx-components-events-events-timeline.mjs"},"./exports":{"types":"./exports/index.d.ts","default":"./fesm2022/c8y-ngx-components-exports.mjs"},"./exports/list":{"types":"./exports/list/index.d.ts","default":"./fesm2022/c8y-ngx-components-exports-list.mjs"},"./feature-toggles":{"types":"./feature-toggles/index.d.ts","default":"./fesm2022/c8y-ngx-components-feature-toggles.mjs"},"./feature-toggles/list":{"types":"./feature-toggles/list/index.d.ts","default":"./fesm2022/c8y-ngx-components-feature-toggles-list.mjs"},"./file-preview":{"types":"./file-preview/index.d.ts","default":"./fesm2022/c8y-ngx-components-file-preview.mjs"},"./files-repository":{"types":"./files-repository/index.d.ts","default":"./fesm2022/c8y-ngx-components-files-repository.mjs"},"./gettext":{"types":"./gettext/index.d.ts","default":"./fesm2022/c8y-ngx-components-gettext.mjs"},"./global-context":{"types":"./global-context/index.d.ts","default":"./fesm2022/c8y-ngx-components-global-context.mjs"},"./group-breadcrumbs":{"types":"./group-breadcrumbs/index.d.ts","default":"./fesm2022/c8y-ngx-components-group-breadcrumbs.mjs"},"./icon-selector":{"types":"./icon-selector/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector.mjs"},"./icon-selector/icons":{"types":"./icon-selector/icons/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons.mjs"},"./icon-selector/icons/arrows":{"types":"./icon-selector/icons/arrows/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-arrows.mjs"},"./icon-selector/icons/city":{"types":"./icon-selector/icons/city/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-city.mjs"},"./icon-selector/icons/data":{"types":"./icon-selector/icons/data/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-data.mjs"},"./icon-selector/icons/dateAndTime":{"types":"./icon-selector/icons/dateAndTime/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-dateAndTime.mjs"},"./icon-selector/icons/devicesAndSensors":{"types":"./icon-selector/icons/devicesAndSensors/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-devicesAndSensors.mjs"},"./icon-selector/icons/ecommerce":{"types":"./icon-selector/icons/ecommerce/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-ecommerce.mjs"},"./icon-selector/icons/editing":{"types":"./icon-selector/icons/editing/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-editing.mjs"},"./icon-selector/icons/filesAndFolders":{"types":"./icon-selector/icons/filesAndFolders/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-filesAndFolders.mjs"},"./icon-selector/icons/finance":{"types":"./icon-selector/icons/finance/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-finance.mjs"},"./icon-selector/icons/hands":{"types":"./icon-selector/icons/hands/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-hands.mjs"},"./icon-selector/icons/location":{"types":"./icon-selector/icons/location/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-location.mjs"},"./icon-selector/icons/messaging":{"types":"./icon-selector/icons/messaging/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-messaging.mjs"},"./icon-selector/icons/multimedia":{"types":"./icon-selector/icons/multimedia/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-multimedia.mjs"},"./icon-selector/icons/network":{"types":"./icon-selector/icons/network/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-network.mjs"},"./icon-selector/icons/office":{"types":"./icon-selector/icons/office/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-office.mjs"},"./icon-selector/icons/people":{"types":"./icon-selector/icons/people/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-people.mjs"},"./icon-selector/icons/platform":{"types":"./icon-selector/icons/platform/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-platform.mjs"},"./icon-selector/icons/programming":{"types":"./icon-selector/icons/programming/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-programming.mjs"},"./icon-selector/icons/security":{"types":"./icon-selector/icons/security/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-security.mjs"},"./icon-selector/icons/transport":{"types":"./icon-selector/icons/transport/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-transport.mjs"},"./icon-selector/icons/userInterface":{"types":"./icon-selector/icons/userInterface/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-userInterface.mjs"},"./icon-selector/icons/weather":{"types":"./icon-selector/icons/weather/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-icons-weather.mjs"},"./icon-selector/model":{"types":"./icon-selector/model/index.d.ts","default":"./fesm2022/c8y-ngx-components-icon-selector-model.mjs"},"./interval-picker":{"types":"./interval-picker/index.d.ts","default":"./fesm2022/c8y-ngx-components-interval-picker.mjs"},"./lazy/three":{"types":"./lazy/three/index.d.ts","default":"./fesm2022/c8y-ngx-components-lazy-three.mjs"},"./lazy/three-orbit-controls":{"types":"./lazy/three-orbit-controls/index.d.ts","default":"./fesm2022/c8y-ngx-components-lazy-three-orbit-controls.mjs"},"./location":{"types":"./location/index.d.ts","default":"./fesm2022/c8y-ngx-components-location.mjs"},"./loriot-device-registration":{"types":"./loriot-device-registration/index.d.ts","default":"./fesm2022/c8y-ngx-components-loriot-device-registration.mjs"},"./map":{"types":"./map/index.d.ts","default":"./fesm2022/c8y-ngx-components-map.mjs"},"./messaging-management":{"types":"./messaging-management/index.d.ts","default":"./fesm2022/c8y-ngx-components-messaging-management.mjs"},"./module-federation-exports/assets-navigator":{"types":"./module-federation-exports/assets-navigator/index.d.ts","default":"./fesm2022/c8y-ngx-components-module-federation-exports-assets-navigator.mjs"},"./operations":{"types":"./operations/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations.mjs"},"./operations/bulk-operation-from-single":{"types":"./operations/bulk-operation-from-single/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-bulk-operation-from-single.mjs"},"./operations/bulk-operation-list-item":{"types":"./operations/bulk-operation-list-item/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-bulk-operation-list-item.mjs"},"./operations/bulk-operation-modal-details":{"types":"./operations/bulk-operation-modal-details/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-bulk-operation-modal-details.mjs"},"./operations/bulk-operation-scheduler":{"types":"./operations/bulk-operation-scheduler/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-bulk-operation-scheduler.mjs"},"./operations/bulk-operation-stepper":{"types":"./operations/bulk-operation-stepper/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-bulk-operation-stepper.mjs"},"./operations/bulk-operations-list":{"types":"./operations/bulk-operations-list/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-bulk-operations-list.mjs"},"./operations/bulk-operations-service":{"types":"./operations/bulk-operations-service/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-bulk-operations-service.mjs"},"./operations/bulk-operations-stepper-container":{"types":"./operations/bulk-operations-stepper-container/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-bulk-operations-stepper-container.mjs"},"./operations/bulk-single-operations-list":{"types":"./operations/bulk-single-operations-list/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-bulk-single-operations-list.mjs"},"./operations/create-bulk-operation-details":{"types":"./operations/create-bulk-operation-details/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-create-bulk-operation-details.mjs"},"./operations/device-selector":{"types":"./operations/device-selector/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-device-selector.mjs"},"./operations/grid-columns":{"types":"./operations/grid-columns/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-grid-columns.mjs"},"./operations/operation-details":{"types":"./operations/operation-details/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-operation-details.mjs"},"./operations/operation-summary":{"types":"./operations/operation-summary/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-operation-summary.mjs"},"./operations/operations-list":{"types":"./operations/operations-list/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-operations-list.mjs"},"./operations/operations-list-item-details":{"types":"./operations/operations-list-item-details/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-operations-list-item-details.mjs"},"./operations/operations-timeline":{"types":"./operations/operations-timeline/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-operations-timeline.mjs"},"./operations/product-experience":{"types":"./operations/product-experience/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-product-experience.mjs"},"./operations/shared":{"types":"./operations/shared/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-shared.mjs"},"./operations/status-filter":{"types":"./operations/status-filter/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-status-filter.mjs"},"./operations/stepper-bulk-type-configuration":{"types":"./operations/stepper-bulk-type-configuration/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-stepper-bulk-type-configuration.mjs"},"./operations/stepper-bulk-type-device-profile":{"types":"./operations/stepper-bulk-type-device-profile/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-stepper-bulk-type-device-profile.mjs"},"./operations/stepper-bulk-type-firmware":{"types":"./operations/stepper-bulk-type-firmware/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-stepper-bulk-type-firmware.mjs"},"./operations/stepper-bulk-type-software":{"types":"./operations/stepper-bulk-type-software/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-stepper-bulk-type-software.mjs"},"./operations/stepper-frames":{"types":"./operations/stepper-frames/index.d.ts","default":"./fesm2022/c8y-ngx-components-operations-stepper-frames.mjs"},"./pending-mo-request":{"types":"./pending-mo-request/index.d.ts","default":"./fesm2022/c8y-ngx-components-pending-mo-request.mjs"},"./platform-configuration":{"types":"./platform-configuration/index.d.ts","default":"./fesm2022/c8y-ngx-components-platform-configuration.mjs"},"./polyfills":{"types":"./polyfills/index.d.ts","default":"./fesm2022/c8y-ngx-components-polyfills.mjs"},"./protocol-lpwan":{"types":"./protocol-lpwan/index.d.ts","default":"./fesm2022/c8y-ngx-components-protocol-lpwan.mjs"},"./protocol-opcua":{"types":"./protocol-opcua/index.d.ts","default":"./fesm2022/c8y-ngx-components-protocol-opcua.mjs"},"./protocol-opcua/mappings":{"types":"./protocol-opcua/mappings/index.d.ts","default":"./fesm2022/c8y-ngx-components-protocol-opcua-mappings.mjs"},"./register-device":{"types":"./register-device/index.d.ts","default":"./fesm2022/c8y-ngx-components-register-device.mjs"},"./remote-access/configurations":{"types":"./remote-access/configurations/index.d.ts","default":"./fesm2022/c8y-ngx-components-remote-access-configurations.mjs"},"./remote-access/data":{"types":"./remote-access/data/index.d.ts","default":"./fesm2022/c8y-ngx-components-remote-access-data.mjs"},"./remote-access/passthrough":{"types":"./remote-access/passthrough/index.d.ts","default":"./fesm2022/c8y-ngx-components-remote-access-passthrough.mjs"},"./remote-access/shared":{"types":"./remote-access/shared/index.d.ts","default":"./fesm2022/c8y-ngx-components-remote-access-shared.mjs"},"./remote-access/ssh":{"types":"./remote-access/ssh/index.d.ts","default":"./fesm2022/c8y-ngx-components-remote-access-ssh.mjs"},"./remote-access/ssh/remote-access-ssh-endpoint-modal":{"types":"./remote-access/ssh/remote-access-ssh-endpoint-modal/index.d.ts","default":"./fesm2022/c8y-ngx-components-remote-access-ssh-remote-access-ssh-endpoint-modal.mjs"},"./remote-access/telnet":{"types":"./remote-access/telnet/index.d.ts","default":"./fesm2022/c8y-ngx-components-remote-access-telnet.mjs"},"./remote-access/terminal-viewer":{"types":"./remote-access/terminal-viewer/index.d.ts","default":"./fesm2022/c8y-ngx-components-remote-access-terminal-viewer.mjs"},"./remote-access/vnc":{"types":"./remote-access/vnc/index.d.ts","default":"./fesm2022/c8y-ngx-components-remote-access-vnc.mjs"},"./remote-access/vnc/remote-access-vnc-endpoint-modal":{"types":"./remote-access/vnc/remote-access-vnc-endpoint-modal/index.d.ts","default":"./fesm2022/c8y-ngx-components-remote-access-vnc-remote-access-vnc-endpoint-modal.mjs"},"./remote-access/vnc/vnc-viewer":{"types":"./remote-access/vnc/vnc-viewer/index.d.ts","default":"./fesm2022/c8y-ngx-components-remote-access-vnc-vnc-viewer.mjs"},"./replace-device":{"types":"./replace-device/index.d.ts","default":"./fesm2022/c8y-ngx-components-replace-device.mjs"},"./replace-device/replace-device-wizard":{"types":"./replace-device/replace-device-wizard/index.d.ts","default":"./fesm2022/c8y-ngx-components-replace-device-replace-device-wizard.mjs"},"./report-dashboard":{"types":"./report-dashboard/index.d.ts","default":"./fesm2022/c8y-ngx-components-report-dashboard.mjs"},"./reports":{"types":"./reports/index.d.ts","default":"./fesm2022/c8y-ngx-components-reports.mjs"},"./repository":{"types":"./repository/index.d.ts","default":"./fesm2022/c8y-ngx-components-repository.mjs"},"./repository/configuration":{"types":"./repository/configuration/index.d.ts","default":"./fesm2022/c8y-ngx-components-repository-configuration.mjs"},"./repository/firmware":{"types":"./repository/firmware/index.d.ts","default":"./fesm2022/c8y-ngx-components-repository-firmware.mjs"},"./repository/shared":{"types":"./repository/shared/index.d.ts","default":"./fesm2022/c8y-ngx-components-repository-shared.mjs"},"./repository/software":{"types":"./repository/software/index.d.ts","default":"./fesm2022/c8y-ngx-components-repository-software.mjs"},"./search":{"types":"./search/index.d.ts","default":"./fesm2022/c8y-ngx-components-search.mjs"},"./sensor-phone":{"types":"./sensor-phone/index.d.ts","default":"./fesm2022/c8y-ngx-components-sensor-phone.mjs"},"./sensor-phone/sensor-phone-modal":{"types":"./sensor-phone/sensor-phone-modal/index.d.ts","default":"./fesm2022/c8y-ngx-components-sensor-phone-sensor-phone-modal.mjs"},"./services":{"types":"./services/index.d.ts","default":"./fesm2022/c8y-ngx-components-services.mjs"},"./services/service-command-tab":{"types":"./services/service-command-tab/index.d.ts","default":"./fesm2022/c8y-ngx-components-services-service-command-tab.mjs"},"./services/shared":{"types":"./services/shared/index.d.ts","default":"./fesm2022/c8y-ngx-components-services-shared.mjs"},"./sigfox-device-registration":{"types":"./sigfox-device-registration/index.d.ts","default":"./fesm2022/c8y-ngx-components-sigfox-device-registration.mjs"},"./sms-gateway":{"types":"./sms-gateway/index.d.ts","default":"./fesm2022/c8y-ngx-components-sms-gateway.mjs"},"./static-assets":{"types":"./static-assets/index.d.ts","default":"./fesm2022/c8y-ngx-components-static-assets.mjs"},"./static-assets/data":{"types":"./static-assets/data/index.d.ts","default":"./fesm2022/c8y-ngx-components-static-assets-data.mjs"},"./static-assets/modal":{"types":"./static-assets/modal/index.d.ts","default":"./fesm2022/c8y-ngx-components-static-assets-modal.mjs"},"./sub-assets":{"types":"./sub-assets/index.d.ts","default":"./fesm2022/c8y-ngx-components-sub-assets.mjs"},"./tenants":{"types":"./tenants/index.d.ts","default":"./fesm2022/c8y-ngx-components-tenants.mjs"},"./time-context":{"types":"./time-context/index.d.ts","default":"./fesm2022/c8y-ngx-components-time-context.mjs"},"./tracking":{"types":"./tracking/index.d.ts","default":"./fesm2022/c8y-ngx-components-tracking.mjs"},"./translation-editor":{"types":"./translation-editor/index.d.ts","default":"./fesm2022/c8y-ngx-components-translation-editor.mjs"},"./translation-editor/data":{"types":"./translation-editor/data/index.d.ts","default":"./fesm2022/c8y-ngx-components-translation-editor-data.mjs"},"./translation-editor/lazy":{"types":"./translation-editor/lazy/index.d.ts","default":"./fesm2022/c8y-ngx-components-translation-editor-lazy.mjs"},"./trusted-certificates":{"types":"./trusted-certificates/index.d.ts","default":"./fesm2022/c8y-ngx-components-trusted-certificates.mjs"},"./upgrade":{"types":"./upgrade/index.d.ts","default":"./fesm2022/c8y-ngx-components-upgrade.mjs"},"./upgrade/upgraded-services":{"types":"./upgrade/upgraded-services/index.d.ts","default":"./fesm2022/c8y-ngx-components-upgrade-upgraded-services.mjs"},"./user-roles":{"types":"./user-roles/index.d.ts","default":"./fesm2022/c8y-ngx-components-user-roles.mjs"},"./widgets/cockpit-exports":{"types":"./widgets/cockpit-exports/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-cockpit-exports.mjs"},"./widgets/definitions":{"types":"./widgets/definitions/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions.mjs"},"./widgets/definitions/alarms/alarm-list":{"types":"./widgets/definitions/alarms/alarm-list/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-alarms-alarm-list.mjs"},"./widgets/definitions/alarms/alarm-widget-controls.presets":{"types":"./widgets/definitions/alarms/alarm-widget-controls.presets/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-alarms-alarm-widget-controls.presets.mjs"},"./widgets/definitions/alarms/all-critical-alarms":{"types":"./widgets/definitions/alarms/all-critical-alarms/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-alarms-all-critical-alarms.mjs"},"./widgets/definitions/alarms/recent-alarms":{"types":"./widgets/definitions/alarms/recent-alarms/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-alarms-recent-alarms.mjs"},"./widgets/definitions/applications":{"types":"./widgets/definitions/applications/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-applications.mjs"},"./widgets/definitions/asset-notes":{"types":"./widgets/definitions/asset-notes/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-asset-notes.mjs"},"./widgets/definitions/asset-table":{"types":"./widgets/definitions/asset-table/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-asset-table.mjs"},"./widgets/definitions/cockpit-legacy-welcome":{"types":"./widgets/definitions/cockpit-legacy-welcome/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-cockpit-legacy-welcome.mjs"},"./widgets/definitions/cockpit-welcome":{"types":"./widgets/definitions/cockpit-welcome/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-cockpit-welcome.mjs"},"./widgets/definitions/datapoints-graph":{"types":"./widgets/definitions/datapoints-graph/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-datapoints-graph.mjs"},"./widgets/definitions/datapoints-list":{"types":"./widgets/definitions/datapoints-list/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-datapoints-list.mjs"},"./widgets/definitions/datapoints-table":{"types":"./widgets/definitions/datapoints-table/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-datapoints-table.mjs"},"./widgets/definitions/device-control-message":{"types":"./widgets/definitions/device-control-message/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-device-control-message.mjs"},"./widgets/definitions/device-management-welcome":{"types":"./widgets/definitions/device-management-welcome/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-device-management-welcome.mjs"},"./widgets/definitions/event-list":{"types":"./widgets/definitions/event-list/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-event-list.mjs"},"./widgets/definitions/help-and-service":{"types":"./widgets/definitions/help-and-service/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-help-and-service.mjs"},"./widgets/definitions/html-widget":{"types":"./widgets/definitions/html-widget/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-html-widget.mjs"},"./widgets/definitions/html-widget-ai-config":{"types":"./widgets/definitions/html-widget-ai-config/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-html-widget-ai-config.mjs"},"./widgets/definitions/image":{"types":"./widgets/definitions/image/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-image.mjs"},"./widgets/definitions/info-gauge":{"types":"./widgets/definitions/info-gauge/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-info-gauge.mjs"},"./widgets/definitions/kpi":{"types":"./widgets/definitions/kpi/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-kpi.mjs"},"./widgets/definitions/linear-gauge":{"types":"./widgets/definitions/linear-gauge/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-linear-gauge.mjs"},"./widgets/definitions/map":{"types":"./widgets/definitions/map/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-map.mjs"},"./widgets/definitions/markdown":{"types":"./widgets/definitions/markdown/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-markdown.mjs"},"./widgets/definitions/pie-chart":{"types":"./widgets/definitions/pie-chart/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-pie-chart.mjs"},"./widgets/definitions/quick-links":{"types":"./widgets/definitions/quick-links/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-quick-links.mjs"},"./widgets/definitions/radial-gauge":{"types":"./widgets/definitions/radial-gauge/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-radial-gauge.mjs"},"./widgets/definitions/silo":{"types":"./widgets/definitions/silo/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-silo.mjs"},"./widgets/definitions/three-d-rotation":{"types":"./widgets/definitions/three-d-rotation/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-definitions-three-d-rotation.mjs"},"./widgets/device-management-exports":{"types":"./widgets/device-management-exports/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-device-management-exports.mjs"},"./widgets/exports":{"types":"./widgets/exports/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-exports.mjs"},"./widgets/implementations/alarms":{"types":"./widgets/implementations/alarms/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-alarms.mjs"},"./widgets/implementations/asset-notes":{"types":"./widgets/implementations/asset-notes/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-asset-notes.mjs"},"./widgets/implementations/asset-table":{"types":"./widgets/implementations/asset-table/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-asset-table.mjs"},"./widgets/implementations/cockpit-legacy-welcome":{"types":"./widgets/implementations/cockpit-legacy-welcome/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-cockpit-legacy-welcome.mjs"},"./widgets/implementations/cockpit-welcome":{"types":"./widgets/implementations/cockpit-welcome/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-cockpit-welcome.mjs"},"./widgets/implementations/datapoints-graph":{"types":"./widgets/implementations/datapoints-graph/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-datapoints-graph.mjs"},"./widgets/implementations/datapoints-list":{"types":"./widgets/implementations/datapoints-list/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-datapoints-list.mjs"},"./widgets/implementations/datapoints-table":{"types":"./widgets/implementations/datapoints-table/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-datapoints-table.mjs"},"./widgets/implementations/device-control-message":{"types":"./widgets/implementations/device-control-message/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-device-control-message.mjs"},"./widgets/implementations/device-management-welcome":{"types":"./widgets/implementations/device-management-welcome/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-device-management-welcome.mjs"},"./widgets/implementations/help-and-service-widget":{"types":"./widgets/implementations/help-and-service-widget/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-help-and-service-widget.mjs"},"./widgets/implementations/html-widget":{"types":"./widgets/implementations/html-widget/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-html-widget.mjs"},"./widgets/implementations/image":{"types":"./widgets/implementations/image/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-image.mjs"},"./widgets/implementations/info-gauge":{"types":"./widgets/implementations/info-gauge/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-info-gauge.mjs"},"./widgets/implementations/kpi":{"types":"./widgets/implementations/kpi/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-kpi.mjs"},"./widgets/implementations/linear-gauge":{"types":"./widgets/implementations/linear-gauge/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-linear-gauge.mjs"},"./widgets/implementations/map":{"types":"./widgets/implementations/map/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-map.mjs"},"./widgets/implementations/markdown":{"types":"./widgets/implementations/markdown/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-markdown.mjs"},"./widgets/implementations/pie-chart":{"types":"./widgets/implementations/pie-chart/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-pie-chart.mjs"},"./widgets/implementations/quick-links":{"types":"./widgets/implementations/quick-links/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-quick-links.mjs"},"./widgets/implementations/three-d-rotation":{"types":"./widgets/implementations/three-d-rotation/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-three-d-rotation.mjs"},"./widgets/implementations/three-d-rotation/lazy-box-model":{"types":"./widgets/implementations/three-d-rotation/lazy-box-model/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-three-d-rotation-lazy-box-model.mjs"},"./widgets/implementations/three-d-rotation/lazy-phone-model":{"types":"./widgets/implementations/three-d-rotation/lazy-phone-model/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-implementations-three-d-rotation-lazy-phone-model.mjs"},"./widgets/import-export-config":{"types":"./widgets/import-export-config/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-import-export-config.mjs"},"./widgets/widget-providers":{"types":"./widgets/widget-providers/index.d.ts","default":"./fesm2022/c8y-ngx-components-widgets-widget-providers.mjs"}},"sideEffects":false}
|