@c8y/ngx-components 1023.14.8 → 1023.15.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.
@@ -0,0 +1,6 @@
1
+ import * as _angular_core from '@angular/core';
2
+
3
+ declare const groupBreadcrumbsProviders: (_angular_core.ValueProvider | _angular_core.ExistingProvider | _angular_core.ClassProvider)[];
4
+
5
+ export { groupBreadcrumbsProviders };
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sources":["../../group-breadcrumbs/index.ts"],"sourcesContent":[null],"names":[],"mappings":";;AAGA,cAAA,yBAAA,GAAsC,aAAA,CAAA,aAAA,GAAA,aAAA,CAAA,gBAAA,GAAA,aAAA,CAAA,aAAA;;;;"}
package/index.d.ts CHANGED
@@ -2695,6 +2695,60 @@ declare class DeviceService {
2695
2695
  static ɵprov: i0.ɵɵInjectableDeclaration<DeviceService>;
2696
2696
  }
2697
2697
 
2698
+ /**
2699
+ * Service for retrieving ancestor paths in the Cumulocity asset hierarchy.
2700
+ *
2701
+ * This service traverses upward through parent relationships (assetParents, deviceParents,
2702
+ * additionParents) to find all possible paths from root ancestors down to a target asset.
2703
+ *
2704
+ * @example
2705
+ * Given this hierarchy:
2706
+ * ```
2707
+ * Root1 -> Building1 -> Floor1 -> Device
2708
+ * Root2 -> Building2 -> Floor1 -> Device
2709
+ * ```
2710
+ *
2711
+ * Calling `getAncestorPaths('Device')` returns:
2712
+ * ```
2713
+ * [
2714
+ * [Root1, Building1, Floor1, Device],
2715
+ * [Root2, Building2, Floor1, Device]
2716
+ * ]
2717
+ * ```
2718
+ */
2719
+ declare class AssetHierarchyService {
2720
+ private inventory;
2721
+ private alertService;
2722
+ /**
2723
+ * Retrieves all ancestor paths from root nodes down to the specified asset.
2724
+ *
2725
+ * This method fetches the target asset and all its ancestors, then constructs
2726
+ * all possible paths from root ancestors (objects with no parents) down to the
2727
+ * target asset. Multiple paths may exist if the asset has multiple parent chains.
2728
+ *
2729
+ * @param assetId - The ID of the target asset
2730
+ * @returns A promise that resolves to an array of paths, where each path is an
2731
+ * array of managed objects ordered from root to target asset.
2732
+ * Returns an empty array if the asset is not found or an error occurs.
2733
+ */
2734
+ getAncestorPaths(assetId: string): Promise<IManagedObject[][]>;
2735
+ /**
2736
+ * Gets all parent IDs of a managed object.
2737
+ */
2738
+ private getParentIds;
2739
+ /**
2740
+ * Gets all child IDs of a managed object.
2741
+ */
2742
+ private getChildrenIds;
2743
+ /**
2744
+ * Recursively finds all paths from a root node to the target asset.
2745
+ * Returns an array of paths, where each path is an array of managed objects.
2746
+ */
2747
+ private findAllPathsToAsset;
2748
+ static ɵfac: i0.ɵɵFactoryDeclaration<AssetHierarchyService, never>;
2749
+ static ɵprov: i0.ɵɵInjectableDeclaration<AssetHierarchyService>;
2750
+ }
2751
+
2698
2752
  /**
2699
2753
  * Realtime options for `ForOfDirective`.
2700
2754
  */
@@ -5279,25 +5333,6 @@ declare abstract class DynamicBulkIIdentifiedResolver<T extends {
5279
5333
  protected serializeSingleObject(obj: T): Partial<T>;
5280
5334
  }
5281
5335
 
5282
- declare class MOChunkLoaderService {
5283
- protected inventory: InventoryService;
5284
- constructor(inventory: InventoryService);
5285
- processInChunks<T>(ids: string[], chunkSize: number, loadChunkFn: (ids: string[]) => Promise<{
5286
- managedObjects: T[];
5287
- errors: any[];
5288
- }>): Promise<{
5289
- results: T[];
5290
- errors: any[];
5291
- }>;
5292
- loadAChunkOfManagedObjectsBase(uniqIds: string[], inventory: InventoryService, pageSize: number, getStatusDetails: (id: string) => Promise<DynamicBulkRetrievalError>, queryFilter?: object): Promise<{
5293
- managedObjects: IManagedObject[];
5294
- errors: DynamicBulkRetrievalError[];
5295
- }>;
5296
- getStatusDetails(moId: string): Promise<any>;
5297
- static ɵfac: i0.ɵɵFactoryDeclaration<MOChunkLoaderService, never>;
5298
- static ɵprov: i0.ɵɵInjectableDeclaration<MOChunkLoaderService>;
5299
- }
5300
-
5301
5336
  /**
5302
5337
  * A DynamicDetailsResolver responsible to resolve managedObjects for dynamic components.
5303
5338
  * This service implements bulk resolving. This reduces the number of requests made to
@@ -5360,6 +5395,25 @@ declare class DatapointSyncService {
5360
5395
  static ɵprov: i0.ɵɵInjectableDeclaration<DatapointSyncService>;
5361
5396
  }
5362
5397
 
5398
+ declare class MOChunkLoaderService {
5399
+ protected inventory: InventoryService;
5400
+ constructor(inventory: InventoryService);
5401
+ processInChunks<T>(ids: string[], chunkSize: number, loadChunkFn: (ids: string[]) => Promise<{
5402
+ managedObjects: T[];
5403
+ errors: any[];
5404
+ }>): Promise<{
5405
+ results: T[];
5406
+ errors: any[];
5407
+ }>;
5408
+ loadAChunkOfManagedObjectsBase(uniqIds: string[], inventory: InventoryService, pageSize: number, getStatusDetails: (id: string) => Promise<DynamicBulkRetrievalError>, queryFilter?: object): Promise<{
5409
+ managedObjects: IManagedObject[];
5410
+ errors: DynamicBulkRetrievalError[];
5411
+ }>;
5412
+ getStatusDetails(moId: string): Promise<any>;
5413
+ static ɵfac: i0.ɵɵFactoryDeclaration<MOChunkLoaderService, never>;
5414
+ static ɵprov: i0.ɵɵInjectableDeclaration<MOChunkLoaderService>;
5415
+ }
5416
+
5363
5417
  declare class AppSwitcherService {
5364
5418
  protected ui: AppStateService;
5365
5419
  /**
@@ -8325,6 +8379,10 @@ interface Breadcrumb {
8325
8379
  * The breadcrumbs with the highest priority will be shown first.
8326
8380
  */
8327
8381
  priority?: number;
8382
+ /**
8383
+ * Force initial dropdown open state if there are multiple paths.
8384
+ */
8385
+ forceDropdownOpen?: boolean;
8328
8386
  }
8329
8387
  /**
8330
8388
  * Factory to implement if used in a hook for Multi Provider extension.
@@ -8396,7 +8454,7 @@ declare class BreadcrumbService extends ExtensionPointForPlugins<Breadcrumb> {
8396
8454
  * @param path The path to prefer.
8397
8455
  */
8398
8456
  selectPreferredByPath(path: string): void;
8399
- sortByPreferredPath(breadcrumbs: any): any;
8457
+ sortByPreferredPath(breadcrumbs: Breadcrumb[]): Breadcrumb[];
8400
8458
  protected setupItemsObservable(): Observable<Breadcrumb[]>;
8401
8459
  static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbService, never>;
8402
8460
  static ɵprov: i0.ɵɵInjectableDeclaration<BreadcrumbService>;
@@ -12285,12 +12343,15 @@ declare class BreadcrumbItemComponent {
12285
12343
  declare class BreadcrumbOutletComponent {
12286
12344
  showAll: boolean;
12287
12345
  breadcrumbs: Breadcrumb[];
12346
+ dropdownOpen: boolean;
12347
+ readonly GROUP_ICON = "c8y-group";
12288
12348
  /**
12289
12349
  * For upgrade only. Old angularjs routes start with hash, new ones not.
12290
12350
  */
12291
12351
  normalizePath(path: any): any;
12352
+ ngOnChanges(): void;
12292
12353
  static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbOutletComponent, never>;
12293
- static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbOutletComponent, "c8y-breadcrumb-outlet", never, { "breadcrumbs": { "alias": "breadcrumbs"; "required": false; }; }, {}, never, never, true, never>;
12354
+ static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbOutletComponent, "c8y-breadcrumb-outlet", never, { "breadcrumbs": { "alias": "breadcrumbs"; "required": false; }; "dropdownOpen": { "alias": "dropdownOpen"; "required": false; }; }, {}, never, never, true, never>;
12294
12355
  }
12295
12356
 
12296
12357
  /**
@@ -12346,6 +12407,7 @@ declare const enum ClickEventSource {
12346
12407
  */
12347
12408
  declare class NavigatorNodeComponent implements AfterViewInit, OnChanges, OnDestroy {
12348
12409
  private router;
12410
+ private breadcrumbService;
12349
12411
  /**
12350
12412
  * @ignore
12351
12413
  */
@@ -12380,7 +12442,7 @@ declare class NavigatorNodeComponent implements AfterViewInit, OnChanges, OnDest
12380
12442
  * A observable which emits, as soon as the active state of the node changes.
12381
12443
  */
12382
12444
  isActive$: rxjs.Observable<boolean>;
12383
- constructor(router: Router);
12445
+ constructor(router: Router, breadcrumbService: BreadcrumbService);
12384
12446
  ngOnChanges(changes: SimpleChanges): void;
12385
12447
  /**
12386
12448
  * @ignore
@@ -15828,18 +15890,6 @@ declare const MESSAGES_CORE_I18N: {
15828
15890
  readonly revokedSerials: "$1";
15829
15891
  };
15830
15892
  };
15831
- readonly "^Certificate serial number hex: '(.+?)'.*$": {
15832
- readonly gettext: "Certificate serial number: \"{{ serialNumber }}\"";
15833
- readonly placeholders: {
15834
- readonly serialNumber: "$1";
15835
- };
15836
- };
15837
- readonly '^Tenant certificate authority\\(CA\\) signed certificate for device: (.+?)\\.$': {
15838
- readonly gettext: "Tenant certificate authority (CA) signed certificate for device: \"{{ deviceId }}\".";
15839
- readonly placeholders: {
15840
- readonly deviceId: "$1";
15841
- };
15842
- };
15843
15893
  };
15844
15894
 
15845
15895
  /**
@@ -20582,6 +20632,6 @@ declare class FeedbackFormComponent implements OnChanges {
20582
20632
  static ɵcmp: i0.ɵɵComponentDeclaration<FeedbackFormComponent, "c8y-feedback-form", never, { "featureKey": { "alias": "featureKey"; "required": false; }; "featurePreviewName": { "alias": "featurePreviewName"; "required": false; }; }, {}, never, never, true, never>;
20583
20633
  }
20584
20634
 
20585
- export { ACTIONS_STEPPER, AGGREGATIONS, AGGREGATION_ICONS, AGGREGATION_LABELS, AGGREGATION_LIMITS, AGGREGATION_TEXTS, AGGREGATION_VALUES, AGGREGATION_VALUES_ARR, ARRAY_VALIDATION_PREFIX, ASSET_PATH, AbstractConfigurationStrategy, ActionBarComponent, ActionBarItemComponent, ActionBarModule, ActionBarService, ActionComponent, ActionControlsExtensionService, ActionModule, ActionOutletComponent, ActionService, AggregationPickerComponent, AggregationService, AlarmRealtimeService, AlarmWithChildrenRealtimeService, AlertComponent, AlertDetailsComponent, AlertModule, AlertOutletBase, AlertOutletComponent, AlertService, AlertTextComponent, AppHrefPipe, AppIconComponent, AppStateService, AppSwitcherComponent, AppSwitcherInlineComponent, AppSwitcherService, ApplicationModule, ApplicationPluginStatus, AssetLinkPipe, AssetPropertyService, AssetTypesRealtimeService, AssetTypesService, AuditLogComponent, AuditLogModule, AuthenticationModule, BackendVersionFactory, BaseColumn, BaseFilteringFormRendererComponent, BooleanFilterMapper, BootstrapComponent, BootstrapModule, BottomDrawerComponent, BottomDrawerRef, BottomDrawerService, BreadcrumbComponent, BreadcrumbItemComponent, BreadcrumbModule, BreadcrumbOutletComponent, BreadcrumbService, BuiltInActionType, BytesPipe, C8Y_PLUGIN_CONTEXT_PATH, C8Y_PLUGIN_NAME, C8yComponentOutlet, C8yJSONSchema, C8yStepper, C8yStepperButtons, C8yStepperIcon, C8yStepperProgress, C8yTranslateDirective, C8yTranslateModule, C8yTranslatePipe, C8yTranslationCache, C8yTranslationLoader, C8yValidators, CUSTOM, CachedLocaleDictionaryService, CellRendererComponent, CellRendererContext, CellRendererDefDirective, ChangeCurrentUserPasswordService, ChangeIconComponent, ClickEventSource, ClipboardModule, ClipboardService, ColorInputComponent, ColorService, ColumnDataRecordClassName, ColumnDataType, ColumnDirective, CommonModule, ConditionalTabsOutletComponent, ConfigureCustomColumnComponent, ConfirmModalComponent, ContextRouteComponent, ContextRouteGuard, ContextRouteService, CookieBannerComponent, CopyDashboardDisabledReason, CoreModule, CoreSearchModule, CountdownIntervalComponent, CountdownIntervalModule, CurrentPasswordModalComponent, CustomColumn, CustomTranslateService, CustomTranslateStore, DATA_GRID_CONFIGURATION_CONTEXT, DATA_GRID_CONFIGURATION_CONTEXT_PROVIDER, DATA_GRID_CONFIGURATION_STRATEGY, DEFAULT_INTERVAL_STATE, DEFAULT_INTERVAL_VALUE, DEFAULT_INTERVAL_VALUES, DRAWER_ANIMATION_TIME, DashboardChildActionComponent, DashboardChildChange, DashboardChildComponent, DashboardChildTitleComponent, DashboardComponent, DashboardModule, DataGridComponent, DataGridModule, DataGridService, DatapointLibraryValidationErrors, DatapointSyncService, DateContextQueryParamNames, DateFilterMapper, DateFormatService, DatePickerComponent, DatePickerModule, DatePipe, DateTimePickerComponent, DateTimePickerModule, DefaultValidationDirective, DeviceBootstrapRealtimeService, DeviceService, DeviceStatusComponent, DeviceStatusModule, DismissAlertStrategy, DocsModule, DocsService, DrawerModule, DrawerOutletComponent, DrawerService, DropAreaComponent, DropAreaModule, DropdownDirectionDirective, DynamicBulkDetailsResolver, DynamicBulkIIdentifiedResolver, DynamicComponentAlert, DynamicComponentAlertAggregator, DynamicComponentAlertsComponent, DynamicComponentComponent, DynamicComponentErrorStrategy, DynamicComponentModule, DynamicComponentService, DynamicDatapointsResolver, DynamicFormsModule, DynamicManagedObjectResolver, DynamicResolverService, ES_MAX_TIME_MILLISECONDS, EmailsValidatorDirective, EmptyComponent, EmptyStateComponent, EmptyStateContextDirective, EventRealtimeService, ExpandableRowDirective, ExtensionPointForPlugins, ExtensionPointWithoutStateForPlugins, ExtractArrayValidationErrorsPipe, FeatureCacheService, FeedbackFormComponent, FilePickerComponent, FilePickerFormControlComponent, FilePickerFormControlModule, FilePickerModule, FilesService, FilterByPipe, FilterInputComponent, FilterMapperFactory, FilterMapperModule, FilterMapperPipe, FilterMapperService, FilterNonArrayValidationErrorsPipe, FilteringActionType, FilteringFormRendererComponent, FilteringFormRendererContext, FilteringFormRendererDefDirective, ForOfDirective, FormGroupComponent, FormsModule, GENERIC_FILE_TYPE, GLOBAL_CONTEXT_AUTO_REFRESH, GainsightService, GenericFileIconPipe, GeoService, GetGroupIconPipe, GlobalConfigService, GridDataSource, GroupFragment, GroupService, GroupedFilterChips, GuideDocsComponent, GuideHrefDirective, HOOK_ACTION, HOOK_ACTION_BAR, HOOK_BREADCRUMB, HOOK_COMPONENTS, HOOK_CURRENT_APPLICATION, HOOK_CURRENT_TENANT, HOOK_CURRENT_USER, HOOK_DOCS, HOOK_DYNAMIC_PROVIDER_CONFIG, HOOK_NAVIGATOR_NODES, HOOK_OPTIONS, HOOK_PATTERN_MESSAGES, HOOK_PLUGIN, HOOK_PREVIEW, HOOK_QUERY_PARAM, HOOK_QUERY_PARAM_BOTTOM_DRAWER, HOOK_QUERY_PARAM_MODAL, HOOK_ROUTE, HOOK_SEARCH, HOOK_STEPPER, HOOK_TABS, HOOK_VERSION, HOOK_WIZARD, HeaderBarComponent, HeaderCellRendererDefDirective, HeaderModule, HeaderService, HelpComponent, HelpModule, HighlightComponent, HookProviderTypes, HumanizeAppNamePipe, HumanizePipe, HumanizeValidationMessagePipe, I18nModule, INTERVAL_OPTIONS, IconDirective, IfAllowedDirective, InjectionType, InputGroupListComponent, InputGroupListContainerDirective, InterAppService, IntervalBasedReload, InventorySearchService, IpRangeInputListComponent, JsonValidationPrettifierDirective, LANGUAGES, LAST_DAY, LAST_HOUR, LAST_MINUTE, LAST_MONTH, LAST_WEEK, LOCALE_PATH, LegacyGridConfigMapperService, LegendFieldWrapper, ListDisplaySwitchComponent, ListDisplaySwitchModule, ListGroupComponent, ListGroupModule, ListItemActionComponent, ListItemBodyComponent, ListItemCheckboxComponent, ListItemCollapseComponent, ListItemComponent, ListItemDragHandleComponent, ListItemFooterComponent, ListItemIconComponent, ListItemRadioComponent, ListItemTimelineComponent, LoadMoreComponent, LoadingComponent, MAX_PAGE_SIZE, MESSAGES_CORE_I18N, MOChunkLoaderService, ManagedObjectRealtimeService, ManagedObjectType, MapFunctionPipe, MarkdownToHtmlPipe, MaxValidationDirective, MeasurementRealtimeService, MessageBannerService, MessageDirective, MessagesComponent, MinValidationDirective, MissingTranslationCustomHandler, MoNamePipe, ModalComponent, ModalModule, ModalSelectionMode, ModalService, NEEDED_ROLE_FOR_SETUP, NEW_DASHBOARD_ROUTER_STATE_PROP, NULL_VALUE_PLACEHOLDER, NUMBER_FORMAT_REGEXP, NameTransformPipe, NavigatorBottomModule, NavigatorIconComponent, NavigatorModule, NavigatorNode, NavigatorNodeComponent, NavigatorNodeRoot, NavigatorOutletComponent, NavigatorService, NavigatorTopModule, NewPasswordComponent, NumberPipe, OperationBulkRealtimeService, OperationRealtimeService, OperationResultComponent, OptionsService, OutletDirective, PREVIEW_FEATURE_PROVIDERS, PRODUCT_EXPERIENCE_EVENT_SOURCE, PX_ACTIONS, PX_EVENT_NAME, PackageType, PasswordCheckListComponent, PasswordConfirm, PasswordConfirmModalComponent, PasswordInputComponent, PasswordService, PasswordStrengthCheckerService, PasswordStrengthComponent, PasswordStrengthService, PatternMessagesService, Permissions, PhoneValidationDirective, PlatformDetailsService, PluginLoadedPipe, PluginsExportScopes, PluginsLoaderService, PluginsModule, PluginsResolveService, PluginsService, PopoverConfirmComponent, PreviewFeatureButtonComponent, PreviewFeatureShowNotification, PreviewService, ProductExperienceDirective, ProductExperienceModule, ProgressBarComponent, PropertiesListComponent, PropertiesListModule, PropertyValueTransformService, ProviderConfigurationComponent, ProviderConfigurationModule, ProviderConfigurationNodeFactory, ProviderConfigurationRouteFactory, ProviderConfigurationService, ProviderDefinitionsService, PushStatus, PushStatusLabels, QUERY_PARAM_HANDLER_PROVIDERS, QueryParamBottomDrawerFactory, QueryParamBottomDrawerStateService, QueryParamHandlerService, QueryParamModalFactory, QueryParamModalStateService, QuickLinkComponent, QuickLinkModule, RESOLVING_COMPONENT_WAIT_TIME, RadioFilterMapper, RangeComponent, RangeDirective, RangeDisplayComponent, RangeDisplayModule, RealtimeButtonComponent, RealtimeControlComponent, RealtimeMessage, RealtimeModule, RealtimeService, RealtimeSubjectService, RelativeTimePipe, RequiredInputPlaceholderDirective, ResizableGridComponent, ResolverServerError, RouterModule, RouterService, RouterTabsResolver, SETUP_FINISHED_STEP_ID, SHOW_PREVIEW_FEATURES, SearchComponent, SearchFilters, SearchInputComponent, SearchOutletComponent, SearchResultEmptyComponent, SearchService, SelectComponent, SelectFilterMapper, SelectItemDirective, SelectKeyboardService, SelectLegacyComponent, SelectModalComponent, SelectModalFilterPipe, SelectModalModule, SelectModule, SelectedItemsComponent, SelectedItemsDirective, SendStatus, SendStatusLabels, ServiceRegistry, SetupCompletedComponent, SetupComponent, SetupModule, SetupService, SetupState, SetupStepperFactory, ShortenUserNamePipe, ShouldShowMoPipe, ShowIfFilterPipe, SimpleJsonPathValidatorDirective, SimplifiedAuthService, SkipLinkDirective, SortOrderModifier, SpecialColumnName, StateService, Status, StepperModule, StepperOutletComponent, StepperService, Steppers, StringFilterMapper, StringifyObjectPipe, SupportedApps, TabComponent, TabsModule, TabsOutletComponent, TabsService, TabsetAriaDirective, TenantUiService, TextAreaRowHeightDirective, TextareaAutoresizeDirective, ThemeSwitcherService, TimeIntervalComponent, TimePickerComponent, TimePickerModule, TitleComponent, TitleOutletComponent, TotpChallengeComponent, TotpSetupComponent, TranslateService, TreeNodeCellRendererComponent, TreeNodeColumn, TreeNodeHeaderCellRendererComponent, TypeaheadComponent, TypeaheadFilterMapper, UiSettingsComponent, UiSettingsModule, UniqueInCollectionByPathValidationDirective, UserEditComponent, UserEditModalComponent, UserEngagementsService, UserMenuItemComponent, UserMenuOutletComponent, UserMenuService, UserModule, UserNameInitialsPipe, UserPreferencesConfigurationStrategy, UserPreferencesService, UserPreferencesStorageInventory, UserPreferencesStorageLocal, UserTotpRevokeComponent, UserTotpSetupComponent, VERSION_MODULE_CONFIG, ValidationPattern, VersionListComponent, VersionModule, VersionService, ViewContext, ViewContextServices, VirtualScrollWindowDirective, VirtualScrollWindowStrategy, VirtualScrollerWrapperComponent, VisibleControlsPipe, WIDGET_CONFIGURATION_GRID_SIZE, WIDGET_TYPE_VALUES, WILDCARD_SEARCH_FEATURE_KEY, WebSDKVersionFactory, WidgetGlobalAutoRefreshService, WidgetTimeContextActionBarPriority, WidgetTimeContextComponent, WidgetTimeContextDateRangeService, WidgetTimeContextMediatorService, WidgetsDashboardComponent, WidgetsDashboardEventService, WizardBodyComponent, WizardComponent, WizardFooterComponent, WizardHeaderComponent, WizardModalService, WizardModule, WizardOutletComponent, WizardService, ZipService, _virtualScrollWindowStrategyFactory, alertOnError, allEntriesAreEqual, asyncValidateArrayElements, colorValidator, deviceAvailabilityIconMap, extraRoutes, fromFactories, fromTrigger, fromTriggerOnce, getActivatedRoute, getAngularLocalesLanguageString, getBasicInputArrayFormFieldConfig, getDictionaryWithTrimmedKeys, getInjectedHooks, gettext, globalAutoRefreshLoading, hookAction, hookActionBar, hookBreadcrumb, hookComponent, hookCurrentApplication, hookCurrentTenant, hookCurrentUser, hookDataGridActionControls, hookDocs, hookDrawer, hookDynamicProviderConfig, hookFilterMapper, hookGeneric, hookNavigator, hookOptions, hookPatternMessages, hookPlugin, hookPreview, hookQueryParam, hookQueryParamBottomDrawer, hookQueryParamModal, hookRoute, hookSearch, hookService, hookStepper, hookTab, hookUserMenu, hookVersion, hookWidget, hookWizard, internalApps, isEagerDynamicComponents, isExtensionFactory, isLazyDynamicComponents, isPromise, languagesFactory, loadLocale, localeId, localePathFactory, memoize, minColumnGridTrackSize, operationStatusClasses, operationStatusIcons, provideBootstrapMetadata, provideCommonPipes, provideCommonServices, provideDefaultOptionsAppInitializer, provideI18n, provideLanguageSelectorAppInitializer, providePluginsLoaderServiceAppInitializer, provideTranslationServiceInstance, ratiosByColumnTypes, removeContextIndicators, removeDuplicatesIds, resolveInjectedFactories, retryWithDelay, simpleJsonPathValidator, sortByPriority, stateToFactory, statusAlert, statusClasses, statusIcons, throttle, toObservable, toObservableOfArrays, tooltips, trimTranslationKey, uniqueInCollectionByPathValidator, validateArrayElements, validateInternationalPhoneNumber, viewContextRoutes, wrapperLegendFieldConfig };
20635
+ export { ACTIONS_STEPPER, AGGREGATIONS, AGGREGATION_ICONS, AGGREGATION_LABELS, AGGREGATION_LIMITS, AGGREGATION_TEXTS, AGGREGATION_VALUES, AGGREGATION_VALUES_ARR, ARRAY_VALIDATION_PREFIX, ASSET_PATH, AbstractConfigurationStrategy, ActionBarComponent, ActionBarItemComponent, ActionBarModule, ActionBarService, ActionComponent, ActionControlsExtensionService, ActionModule, ActionOutletComponent, ActionService, AggregationPickerComponent, AggregationService, AlarmRealtimeService, AlarmWithChildrenRealtimeService, AlertComponent, AlertDetailsComponent, AlertModule, AlertOutletBase, AlertOutletComponent, AlertService, AlertTextComponent, AppHrefPipe, AppIconComponent, AppStateService, AppSwitcherComponent, AppSwitcherInlineComponent, AppSwitcherService, ApplicationModule, ApplicationPluginStatus, AssetHierarchyService, AssetLinkPipe, AssetPropertyService, AssetTypesRealtimeService, AssetTypesService, AuditLogComponent, AuditLogModule, AuthenticationModule, BackendVersionFactory, BaseColumn, BaseFilteringFormRendererComponent, BooleanFilterMapper, BootstrapComponent, BootstrapModule, BottomDrawerComponent, BottomDrawerRef, BottomDrawerService, BreadcrumbComponent, BreadcrumbItemComponent, BreadcrumbModule, BreadcrumbOutletComponent, BreadcrumbService, BuiltInActionType, BytesPipe, C8Y_PLUGIN_CONTEXT_PATH, C8Y_PLUGIN_NAME, C8yComponentOutlet, C8yJSONSchema, C8yStepper, C8yStepperButtons, C8yStepperIcon, C8yStepperProgress, C8yTranslateDirective, C8yTranslateModule, C8yTranslatePipe, C8yTranslationCache, C8yTranslationLoader, C8yValidators, CUSTOM, CachedLocaleDictionaryService, CellRendererComponent, CellRendererContext, CellRendererDefDirective, ChangeCurrentUserPasswordService, ChangeIconComponent, ClickEventSource, ClipboardModule, ClipboardService, ColorInputComponent, ColorService, ColumnDataRecordClassName, ColumnDataType, ColumnDirective, CommonModule, ConditionalTabsOutletComponent, ConfigureCustomColumnComponent, ConfirmModalComponent, ContextRouteComponent, ContextRouteGuard, ContextRouteService, CookieBannerComponent, CopyDashboardDisabledReason, CoreModule, CoreSearchModule, CountdownIntervalComponent, CountdownIntervalModule, CurrentPasswordModalComponent, CustomColumn, CustomTranslateService, CustomTranslateStore, DATA_GRID_CONFIGURATION_CONTEXT, DATA_GRID_CONFIGURATION_CONTEXT_PROVIDER, DATA_GRID_CONFIGURATION_STRATEGY, DEFAULT_INTERVAL_STATE, DEFAULT_INTERVAL_VALUE, DEFAULT_INTERVAL_VALUES, DRAWER_ANIMATION_TIME, DashboardChildActionComponent, DashboardChildChange, DashboardChildComponent, DashboardChildTitleComponent, DashboardComponent, DashboardModule, DataGridComponent, DataGridModule, DataGridService, DatapointLibraryValidationErrors, DatapointSyncService, DateContextQueryParamNames, DateFilterMapper, DateFormatService, DatePickerComponent, DatePickerModule, DatePipe, DateTimePickerComponent, DateTimePickerModule, DefaultValidationDirective, DeviceBootstrapRealtimeService, DeviceService, DeviceStatusComponent, DeviceStatusModule, DismissAlertStrategy, DocsModule, DocsService, DrawerModule, DrawerOutletComponent, DrawerService, DropAreaComponent, DropAreaModule, DropdownDirectionDirective, DynamicBulkDetailsResolver, DynamicBulkIIdentifiedResolver, DynamicComponentAlert, DynamicComponentAlertAggregator, DynamicComponentAlertsComponent, DynamicComponentComponent, DynamicComponentErrorStrategy, DynamicComponentModule, DynamicComponentService, DynamicDatapointsResolver, DynamicFormsModule, DynamicManagedObjectResolver, DynamicResolverService, ES_MAX_TIME_MILLISECONDS, EmailsValidatorDirective, EmptyComponent, EmptyStateComponent, EmptyStateContextDirective, EventRealtimeService, ExpandableRowDirective, ExtensionPointForPlugins, ExtensionPointWithoutStateForPlugins, ExtractArrayValidationErrorsPipe, FeatureCacheService, FeedbackFormComponent, FilePickerComponent, FilePickerFormControlComponent, FilePickerFormControlModule, FilePickerModule, FilesService, FilterByPipe, FilterInputComponent, FilterMapperFactory, FilterMapperModule, FilterMapperPipe, FilterMapperService, FilterNonArrayValidationErrorsPipe, FilteringActionType, FilteringFormRendererComponent, FilteringFormRendererContext, FilteringFormRendererDefDirective, ForOfDirective, FormGroupComponent, FormsModule, GENERIC_FILE_TYPE, GLOBAL_CONTEXT_AUTO_REFRESH, GainsightService, GenericFileIconPipe, GeoService, GetGroupIconPipe, GlobalConfigService, GridDataSource, GroupFragment, GroupService, GroupedFilterChips, GuideDocsComponent, GuideHrefDirective, HOOK_ACTION, HOOK_ACTION_BAR, HOOK_BREADCRUMB, HOOK_COMPONENTS, HOOK_CURRENT_APPLICATION, HOOK_CURRENT_TENANT, HOOK_CURRENT_USER, HOOK_DOCS, HOOK_DYNAMIC_PROVIDER_CONFIG, HOOK_NAVIGATOR_NODES, HOOK_OPTIONS, HOOK_PATTERN_MESSAGES, HOOK_PLUGIN, HOOK_PREVIEW, HOOK_QUERY_PARAM, HOOK_QUERY_PARAM_BOTTOM_DRAWER, HOOK_QUERY_PARAM_MODAL, HOOK_ROUTE, HOOK_SEARCH, HOOK_STEPPER, HOOK_TABS, HOOK_VERSION, HOOK_WIZARD, HeaderBarComponent, HeaderCellRendererDefDirective, HeaderModule, HeaderService, HelpComponent, HelpModule, HighlightComponent, HookProviderTypes, HumanizeAppNamePipe, HumanizePipe, HumanizeValidationMessagePipe, I18nModule, INTERVAL_OPTIONS, IconDirective, IfAllowedDirective, InjectionType, InputGroupListComponent, InputGroupListContainerDirective, InterAppService, IntervalBasedReload, InventorySearchService, IpRangeInputListComponent, JsonValidationPrettifierDirective, LANGUAGES, LAST_DAY, LAST_HOUR, LAST_MINUTE, LAST_MONTH, LAST_WEEK, LOCALE_PATH, LegacyGridConfigMapperService, LegendFieldWrapper, ListDisplaySwitchComponent, ListDisplaySwitchModule, ListGroupComponent, ListGroupModule, ListItemActionComponent, ListItemBodyComponent, ListItemCheckboxComponent, ListItemCollapseComponent, ListItemComponent, ListItemDragHandleComponent, ListItemFooterComponent, ListItemIconComponent, ListItemRadioComponent, ListItemTimelineComponent, LoadMoreComponent, LoadingComponent, MAX_PAGE_SIZE, MESSAGES_CORE_I18N, MOChunkLoaderService, ManagedObjectRealtimeService, ManagedObjectType, MapFunctionPipe, MarkdownToHtmlPipe, MaxValidationDirective, MeasurementRealtimeService, MessageBannerService, MessageDirective, MessagesComponent, MinValidationDirective, MissingTranslationCustomHandler, MoNamePipe, ModalComponent, ModalModule, ModalSelectionMode, ModalService, NEEDED_ROLE_FOR_SETUP, NEW_DASHBOARD_ROUTER_STATE_PROP, NULL_VALUE_PLACEHOLDER, NUMBER_FORMAT_REGEXP, NameTransformPipe, NavigatorBottomModule, NavigatorIconComponent, NavigatorModule, NavigatorNode, NavigatorNodeComponent, NavigatorNodeRoot, NavigatorOutletComponent, NavigatorService, NavigatorTopModule, NewPasswordComponent, NumberPipe, OperationBulkRealtimeService, OperationRealtimeService, OperationResultComponent, OptionsService, OutletDirective, PREVIEW_FEATURE_PROVIDERS, PRODUCT_EXPERIENCE_EVENT_SOURCE, PX_ACTIONS, PX_EVENT_NAME, PackageType, PasswordCheckListComponent, PasswordConfirm, PasswordConfirmModalComponent, PasswordInputComponent, PasswordService, PasswordStrengthCheckerService, PasswordStrengthComponent, PasswordStrengthService, PatternMessagesService, Permissions, PhoneValidationDirective, PlatformDetailsService, PluginLoadedPipe, PluginsExportScopes, PluginsLoaderService, PluginsModule, PluginsResolveService, PluginsService, PopoverConfirmComponent, PreviewFeatureButtonComponent, PreviewFeatureShowNotification, PreviewService, ProductExperienceDirective, ProductExperienceModule, ProgressBarComponent, PropertiesListComponent, PropertiesListModule, PropertyValueTransformService, ProviderConfigurationComponent, ProviderConfigurationModule, ProviderConfigurationNodeFactory, ProviderConfigurationRouteFactory, ProviderConfigurationService, ProviderDefinitionsService, PushStatus, PushStatusLabels, QUERY_PARAM_HANDLER_PROVIDERS, QueryParamBottomDrawerFactory, QueryParamBottomDrawerStateService, QueryParamHandlerService, QueryParamModalFactory, QueryParamModalStateService, QuickLinkComponent, QuickLinkModule, RESOLVING_COMPONENT_WAIT_TIME, RadioFilterMapper, RangeComponent, RangeDirective, RangeDisplayComponent, RangeDisplayModule, RealtimeButtonComponent, RealtimeControlComponent, RealtimeMessage, RealtimeModule, RealtimeService, RealtimeSubjectService, RelativeTimePipe, RequiredInputPlaceholderDirective, ResizableGridComponent, ResolverServerError, RouterModule, RouterService, RouterTabsResolver, SETUP_FINISHED_STEP_ID, SHOW_PREVIEW_FEATURES, SearchComponent, SearchFilters, SearchInputComponent, SearchOutletComponent, SearchResultEmptyComponent, SearchService, SelectComponent, SelectFilterMapper, SelectItemDirective, SelectKeyboardService, SelectLegacyComponent, SelectModalComponent, SelectModalFilterPipe, SelectModalModule, SelectModule, SelectedItemsComponent, SelectedItemsDirective, SendStatus, SendStatusLabels, ServiceRegistry, SetupCompletedComponent, SetupComponent, SetupModule, SetupService, SetupState, SetupStepperFactory, ShortenUserNamePipe, ShouldShowMoPipe, ShowIfFilterPipe, SimpleJsonPathValidatorDirective, SimplifiedAuthService, SkipLinkDirective, SortOrderModifier, SpecialColumnName, StateService, Status, StepperModule, StepperOutletComponent, StepperService, Steppers, StringFilterMapper, StringifyObjectPipe, SupportedApps, TabComponent, TabsModule, TabsOutletComponent, TabsService, TabsetAriaDirective, TenantUiService, TextAreaRowHeightDirective, TextareaAutoresizeDirective, ThemeSwitcherService, TimeIntervalComponent, TimePickerComponent, TimePickerModule, TitleComponent, TitleOutletComponent, TotpChallengeComponent, TotpSetupComponent, TranslateService, TreeNodeCellRendererComponent, TreeNodeColumn, TreeNodeHeaderCellRendererComponent, TypeaheadComponent, TypeaheadFilterMapper, UiSettingsComponent, UiSettingsModule, UniqueInCollectionByPathValidationDirective, UserEditComponent, UserEditModalComponent, UserEngagementsService, UserMenuItemComponent, UserMenuOutletComponent, UserMenuService, UserModule, UserNameInitialsPipe, UserPreferencesConfigurationStrategy, UserPreferencesService, UserPreferencesStorageInventory, UserPreferencesStorageLocal, UserTotpRevokeComponent, UserTotpSetupComponent, VERSION_MODULE_CONFIG, ValidationPattern, VersionListComponent, VersionModule, VersionService, ViewContext, ViewContextServices, VirtualScrollWindowDirective, VirtualScrollWindowStrategy, VirtualScrollerWrapperComponent, VisibleControlsPipe, WIDGET_CONFIGURATION_GRID_SIZE, WIDGET_TYPE_VALUES, WILDCARD_SEARCH_FEATURE_KEY, WebSDKVersionFactory, WidgetGlobalAutoRefreshService, WidgetTimeContextActionBarPriority, WidgetTimeContextComponent, WidgetTimeContextDateRangeService, WidgetTimeContextMediatorService, WidgetsDashboardComponent, WidgetsDashboardEventService, WizardBodyComponent, WizardComponent, WizardFooterComponent, WizardHeaderComponent, WizardModalService, WizardModule, WizardOutletComponent, WizardService, ZipService, _virtualScrollWindowStrategyFactory, alertOnError, allEntriesAreEqual, asyncValidateArrayElements, colorValidator, deviceAvailabilityIconMap, extraRoutes, fromFactories, fromTrigger, fromTriggerOnce, getActivatedRoute, getAngularLocalesLanguageString, getBasicInputArrayFormFieldConfig, getDictionaryWithTrimmedKeys, getInjectedHooks, gettext, globalAutoRefreshLoading, hookAction, hookActionBar, hookBreadcrumb, hookComponent, hookCurrentApplication, hookCurrentTenant, hookCurrentUser, hookDataGridActionControls, hookDocs, hookDrawer, hookDynamicProviderConfig, hookFilterMapper, hookGeneric, hookNavigator, hookOptions, hookPatternMessages, hookPlugin, hookPreview, hookQueryParam, hookQueryParamBottomDrawer, hookQueryParamModal, hookRoute, hookSearch, hookService, hookStepper, hookTab, hookUserMenu, hookVersion, hookWidget, hookWizard, internalApps, isEagerDynamicComponents, isExtensionFactory, isLazyDynamicComponents, isPromise, languagesFactory, loadLocale, localeId, localePathFactory, memoize, minColumnGridTrackSize, operationStatusClasses, operationStatusIcons, provideBootstrapMetadata, provideCommonPipes, provideCommonServices, provideDefaultOptionsAppInitializer, provideI18n, provideLanguageSelectorAppInitializer, providePluginsLoaderServiceAppInitializer, provideTranslationServiceInstance, ratiosByColumnTypes, removeContextIndicators, removeDuplicatesIds, resolveInjectedFactories, retryWithDelay, simpleJsonPathValidator, sortByPriority, stateToFactory, statusAlert, statusClasses, statusIcons, throttle, toObservable, toObservableOfArrays, tooltips, trimTranslationKey, uniqueInCollectionByPathValidator, validateArrayElements, validateInternationalPhoneNumber, viewContextRoutes, wrapperLegendFieldConfig };
20586
20636
  export type { Action, ActionBarExtension, ActionBarFactory, ActionBarItem, ActionBarItemWithComponent, ActionBarItemWithTemplate, ActionControl, ActionControlFactory, ActionControlHook, ActionExtension, ActionFactory, ActionWithComponent, ActionWithLabelAndFunction, ActionWithTemplate, Aggregation, AggregationOption, AggregationOptionStatus, Alert, AlertGroupData, AlertType, AngularJSWidgetSettings, ApplicationPlugin, ArrayValidationErrorValue, ArrayValidationErrors, AssetPropertyDefinition, AssetPropertyDefinitionResponse, AssetPropertyFilter, BaseDrawerItem, BasePreviewFeature, Breadcrumb, BreadcrumbExtension, BreadcrumbFactory, BreadcrumbItem, BreadcrumbItemWithComponent, BreadcrumbItemWithLabel, BreadcrumbItemWithTemplate, BulkActionControl, CanEditConfig, CellRendererDef, CellRendererSpec, CleanedVersion, ClickOptions, Column, ColumnConfig, ColumnSortingConfig, ConfirmOption, ConfirmOptions, ContextData, CustomColumnConfig, CustomColumnType, DashboardChange, DashboardChildArrangement, DashboardChildDimension, DashboardChildResizeDimension, DashboardCopyPermission, DashboardSettings, DataGrid, DataGridConfigurationStrategy, DataSourceModifier, DataSourceStats, DateRangePickerConfig, DateTimeContext, DateType, DefinitionBase, DisplayOptions, DocLink, DocLinkExtension, DocLinkWithComponent, DocLinkWithLabel, DrawerItem, DrawerOptions, DrawerPositions, DroppedFile, DynamicBulkRetrievalError, DynamicComponent, DynamicComponentDefinition, DynamicComponentDefinitionBase, DynamicComponentExtension, DynamicComponents, DynamicDetailsResolver, DynamicProviderConfig, DynamicProviderEndpointConfig, DynamicProviderLayoutConfig, DynamicProviderNavigationConfig, DynamicProviderTabsConfig, DynamicWidgetDefinition, DynamicWidgetDefinitionBase, EagerDynamicComponents, Endpoint, ExtensionFactory, ExtensionPoint, Filter, FilterChip, FilterMapper, FilterMapperExtension, FilterPredicateFunction, FilteringFormRendererSpec, FilteringModifier, ForOfFilterPipe, ForOfRealtimeOptions, FormGroupConfig, FormlyColumnFilteringConfig, GenericHookOptions, GenericHookType, GlobalAutoRefreshQueryParam, GlobalAutoRefreshWidgetConfig, GlobalTimeContextWidgetConfig, GridConfig, GridConfigContext, GridConfigContextProvider, GridConfigFilter, GridConfigPart, GridEventType, Header, HeaderActionControl, HookValueType, IFetchWithProgress, IRealtimeDeviceBootstrap, ISelectModalBodyPart, ISelectModalObject, ISelectModalOption, IUpdateItemEvent, IndexedStep, InputDateContextQueryParams, Item, LazyDynamicComponents, LeftDrawerItem, LegacyWidget, LoadMoreMode, ManagedObjectTypeForConfig, ModalLabels, NavigatorNodeData, NavigatorNodeFactory, NewPassword, NotificationService, OnBeforeSave, OutputDateContextQueryParams, Pagination, PartialFilterChipGenerationType, PartialFilterChipRemovalType, PasswordStrengthColor, PasswordStrengthSettings, PathSortingConfig, PatternMessages, PickedDates, PickedFiles, PluginsConfig, PopoverConfirmButtons, PreviewFeature, PreviewFeatureCustom, PreviewFeatureDefault, ProductExperienceEvent, ProductExperienceEventSource, PropertiesListItem, ProviderDefinition, ProviderProperties, PxEventData, QueryParamBottomDrawerConfig, QueryParamConfig, QueryParamModalConfig, QueryParamModalConfigBase, QueryParamModalConfigEager, QueryParamModalConfigLazy, RangeDisplay, RealtimeAction, RemoteModuleWithMetadata, RevertChangeType, RightDrawerItem, Route, RouteDefault, RouteExtension, RouteFactory, RouteWithComponent, RouteWithTab, Row, SchemaNode, Search, SearchFactory, SelectableItem, SelectableItemTemplate, ServerSideDataCallback, ServerSideDataResult, SetupStep, SortOrder, StatusType, Step, StepperButtonsVisibility, StepperExtension, SupportedAppKey, Tab, TabExtension, TabFactory, TabOrientation, TabWithComponent, TabWithTemplate, ThemeOptions, ThemePreferenceOptions, TimeContextEvent, TimeInterval, TimeIntervalOption, TreeNode, User, UserMenuItem, UserPreference, UserPreferencesGridConfigContext, ValidationRules, Version, VersionModuleConfig, ViewContexServiceConfig, ViewContextRootRoute, Widget, WidgetChange, WidgetChangeEvent, WidgetChangeEventType, WidgetDataType, WidgetDisplaySettings, WidgetImportExportInjectorOptions, WidgetSettings, WidgetTimeContext, WidgetTimeContextState, Wizard, WizardConfig, WizardEntry, WizardExtension, ZipEntry, selectedFunction, selectedLabelFunction };
20587
20637
  //# sourceMappingURL=index.d.ts.map