@c8y/ngx-components 1023.14.2 → 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.
- package/assets-navigator/index.d.ts +7 -3
- package/assets-navigator/index.d.ts.map +1 -1
- package/fesm2022/c8y-ngx-components-assets-navigator.mjs +25 -6
- package/fesm2022/c8y-ngx-components-assets-navigator.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components-group-breadcrumbs.mjs +192 -0
- package/fesm2022/c8y-ngx-components-group-breadcrumbs.mjs.map +1 -0
- package/fesm2022/c8y-ngx-components-module-federation-exports-assets-navigator.mjs +13 -0
- package/fesm2022/c8y-ngx-components-module-federation-exports-assets-navigator.mjs.map +1 -0
- package/fesm2022/c8y-ngx-components-widgets-implementations-info-gauge.mjs +6 -2
- package/fesm2022/c8y-ngx-components-widgets-implementations-info-gauge.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components.mjs +153 -17
- package/fesm2022/c8y-ngx-components.mjs.map +1 -1
- package/group-breadcrumbs/index.d.ts +6 -0
- package/group-breadcrumbs/index.d.ts.map +1 -0
- package/index.d.ts +67 -5
- package/index.d.ts.map +1 -1
- package/locales/locales.pot +1 -7
- package/module-federation-exports/assets-navigator/index.d.ts +2 -0
- package/module-federation-exports/assets-navigator/index.d.ts.map +1 -0
- package/package.json +1 -1
|
@@ -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
|
*/
|
|
@@ -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:
|
|
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>;
|
|
@@ -9648,7 +9706,7 @@ declare class SelectComponent implements AfterContentInit, OnChanges, OnDestroy,
|
|
|
9648
9706
|
/**
|
|
9649
9707
|
* Placeholder text to be displayed in the select.
|
|
9650
9708
|
*/
|
|
9651
|
-
placeholder:
|
|
9709
|
+
placeholder: string;
|
|
9652
9710
|
/**
|
|
9653
9711
|
* Items to be displayed in the select.
|
|
9654
9712
|
* Can be an array of strings or an array of objects with `label` and `value` properties.
|
|
@@ -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
|
|
@@ -20570,6 +20632,6 @@ declare class FeedbackFormComponent implements OnChanges {
|
|
|
20570
20632
|
static ɵcmp: i0.ɵɵComponentDeclaration<FeedbackFormComponent, "c8y-feedback-form", never, { "featureKey": { "alias": "featureKey"; "required": false; }; "featurePreviewName": { "alias": "featurePreviewName"; "required": false; }; }, {}, never, never, true, never>;
|
|
20571
20633
|
}
|
|
20572
20634
|
|
|
20573
|
-
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 };
|
|
20574
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 };
|
|
20575
20637
|
//# sourceMappingURL=index.d.ts.map
|