@c8y/ngx-components 1023.67.0 → 1023.68.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/asset-properties/index.d.ts +16 -42
- package/asset-properties/index.d.ts.map +1 -1
- package/echart/index.d.ts +3 -1
- package/echart/index.d.ts.map +1 -1
- package/echart/models/index.d.ts +2 -1
- package/echart/models/index.d.ts.map +1 -1
- package/fesm2022/c8y-ngx-components-asset-properties.mjs +67 -21
- package/fesm2022/c8y-ngx-components-asset-properties.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components-echart-models.mjs +12 -1
- package/fesm2022/c8y-ngx-components-echart-models.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components-echart.mjs +32 -38
- package/fesm2022/c8y-ngx-components-echart.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components-widgets-implementations-datapoints-graph.mjs +36 -27
- package/fesm2022/c8y-ngx-components-widgets-implementations-datapoints-graph.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components.mjs +29 -1
- package/fesm2022/c8y-ngx-components.mjs.map +1 -1
- package/index.d.ts +65 -2
- package/index.d.ts.map +1 -1
- package/locales/de.po +3 -0
- package/locales/es.po +3 -0
- package/locales/fr.po +3 -0
- package/locales/ja_JP.po +3 -0
- package/locales/ko.po +3 -0
- package/locales/nl.po +3 -0
- package/locales/pl.po +3 -0
- package/locales/pt_BR.po +3 -0
- package/locales/zh_CN.po +3 -0
- package/locales/zh_TW.po +3 -0
- package/package.json +1 -1
- package/widgets/implementations/datapoints-graph/index.d.ts +1 -0
- package/widgets/implementations/datapoints-graph/index.d.ts.map +1 -1
package/index.d.ts
CHANGED
|
@@ -21096,6 +21096,69 @@ declare class AssetPropertyService extends Service<AssetPropertyDefinition> {
|
|
|
21096
21096
|
static ɵprov: i0.ɵɵInjectableDeclaration<AssetPropertyService>;
|
|
21097
21097
|
}
|
|
21098
21098
|
|
|
21099
|
+
interface C8yJsonSchemaProperty {
|
|
21100
|
+
type: C8yPropertyType;
|
|
21101
|
+
title?: string;
|
|
21102
|
+
label?: string;
|
|
21103
|
+
description?: string;
|
|
21104
|
+
key?: string;
|
|
21105
|
+
name?: string;
|
|
21106
|
+
minimum?: number;
|
|
21107
|
+
maximum?: number;
|
|
21108
|
+
minLength?: number;
|
|
21109
|
+
maxLength?: number;
|
|
21110
|
+
pattern?: string;
|
|
21111
|
+
required?: boolean;
|
|
21112
|
+
readOnly?: boolean;
|
|
21113
|
+
printFormat?: C8yPropertyFormat;
|
|
21114
|
+
'x-schema-form'?: {
|
|
21115
|
+
type: string;
|
|
21116
|
+
};
|
|
21117
|
+
properties?: Record<string, C8yJsonSchemaProperty>;
|
|
21118
|
+
items?: C8yJsonSchemaProperty;
|
|
21119
|
+
'x-show-if-any-available'?: {
|
|
21120
|
+
contextPath: string;
|
|
21121
|
+
}[];
|
|
21122
|
+
[key: string]: any;
|
|
21123
|
+
}
|
|
21124
|
+
type C8yPropertyType = 'string' | 'number' | 'integer' | 'boolean' | 'object' | 'array' | 'null' | 'date' | 'enum' | 'file' | 'c8y_JsonSchema' | ['string', 'null'] | Array<C8yPropertyType>;
|
|
21125
|
+
type C8yPropertyFormat = 'datetime' | 'hidden' | 'textarea';
|
|
21126
|
+
interface C8yJsonSchema {
|
|
21127
|
+
properties: Record<string, C8yJsonSchemaProperty>;
|
|
21128
|
+
required?: string[];
|
|
21129
|
+
}
|
|
21130
|
+
|
|
21131
|
+
/**
|
|
21132
|
+
* Asset Definition model representing the structure of an asset definition.
|
|
21133
|
+
* It's copy from `cumuloctity-solutions-enablement` ui/dtm-client/src/model/AssetDefinition.ts
|
|
21134
|
+
*/
|
|
21135
|
+
interface AssetDefinition {
|
|
21136
|
+
creationTime?: string;
|
|
21137
|
+
identifier: string;
|
|
21138
|
+
jsonSchema?: JsonSchema;
|
|
21139
|
+
lastUpdated?: string;
|
|
21140
|
+
tags?: string[];
|
|
21141
|
+
[key: string]: any;
|
|
21142
|
+
}
|
|
21143
|
+
interface JsonSchema {
|
|
21144
|
+
description?: string;
|
|
21145
|
+
title: string;
|
|
21146
|
+
properties?: Record<string, C8yJsonSchemaProperty & {
|
|
21147
|
+
$ref?: string;
|
|
21148
|
+
}>;
|
|
21149
|
+
definitions?: Record<string, C8yJsonSchemaProperty>;
|
|
21150
|
+
[key: string]: any;
|
|
21151
|
+
}
|
|
21152
|
+
|
|
21153
|
+
declare class AssetDefinitionsService extends Service<AssetDefinition> {
|
|
21154
|
+
protected baseUrl: string;
|
|
21155
|
+
protected listUrl: string;
|
|
21156
|
+
constructor(client: FetchClient);
|
|
21157
|
+
getByIdentifier(identifier: string): Promise<AssetDefinition>;
|
|
21158
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AssetDefinitionsService, never>;
|
|
21159
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AssetDefinitionsService>;
|
|
21160
|
+
}
|
|
21161
|
+
|
|
21099
21162
|
/**
|
|
21100
21163
|
* Service to manage selection state in split view components.
|
|
21101
21164
|
* Provides methods to select/deselect items and track selection state.
|
|
@@ -21788,6 +21851,6 @@ declare class FeedbackFormComponent implements OnChanges {
|
|
|
21788
21851
|
static ɵcmp: i0.ɵɵComponentDeclaration<FeedbackFormComponent, "c8y-feedback-form", never, { "featureKey": { "alias": "featureKey"; "required": false; }; "featurePreviewName": { "alias": "featurePreviewName"; "required": false; }; }, {}, never, never, true, never>;
|
|
21789
21852
|
}
|
|
21790
21853
|
|
|
21791
|
-
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, ApplyRangeClassPipe, 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, DropdownFocusTrapDirective, 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, IconPanelComponent, 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, PasswordValidationDirective, PasswordValidationService, 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, SplitViewAlertsComponent, SplitViewComponent, SplitViewDetailsActionsComponent, SplitViewDetailsComponent, SplitViewExtraHeaderComponent, SplitViewFooterComponent, SplitViewHeaderActionsComponent, SplitViewListComponent, SplitViewListItemDirective, SplitViewSelectionService, StateService, Status, StepperModule, StepperOutletComponent, StepperService, Steppers, StringFilterMapper, StringifyObjectPipe, StripHtmlPipe, 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, VirtualScrollListenerDirective, VirtualScrollWindowDirective, VirtualScrollWindowStrategy, VirtualScrollerWrapperComponent, VisibleControlsPipe, WIDGET_CONFIGURATION_GRID_SIZE, WIDGET_TYPE_VALUES, WILDCARD_SEARCH_FEATURE_KEY, WebSDKVersionFactory, WidgetActionWrapperComponent, 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 };
|
|
21792
|
-
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, AssetColumnOperationType, AssetPropertyDefinition, AssetPropertyDefinitionResponse, AssetPropertyFilter, AssetTableExtendedColumn, BaseDrawerItem, BasePreviewFeature, Breadcrumb, BreadcrumbExtension, BreadcrumbFactory, BreadcrumbItem, BreadcrumbItemWithComponent, BreadcrumbItemWithLabel, BreadcrumbItemWithTemplate, BulkActionControl, CanEditConfig, CellRendererDef, CellRendererSpec, CleanedVersion, ClickOptions, ColorRangeBoundaries, Column, ColumnConfig, ColumnSortingConfig, ComputedConfig, ConfirmOption, ConfirmOptions, ContextData, CustomColumnConfig, CustomColumnType, DashboardChange, DashboardChildArrangement, DashboardChildDimension, DashboardChildResizeDimension, DashboardCopyPermission, DashboardSettings, DataGrid, DataGridConfigurationStrategy, DataSourceModifier, DataSourceStats, DateAndTimeOptions, DateRangePickerConfig, DateTimeContext, DateType, DefinitionBase, DisplayOptions, DocLink, DocLinkExtension, DocLinkWithComponent, DocLinkWithLabel, DrawerHost, 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, HeaderTemplates, HookValueType, IFetchWithProgress, IRealtimeDeviceBootstrap, ISelectModalBodyPart, ISelectModalObject, ISelectModalOption, IUpdateItemEvent, IconConfigComparison, IconConfigItem, IconPanelSection, IndexedStep, InputDateContextQueryParams, Item, LazyDynamicComponents, LeftDrawerItem, LegacyWidget, LoadMoreMode, ManagedObjectTypeForConfig, ModalLabels, NavigatorNodeData, NavigatorNodeFactory, NewPassword, NotificationService, OnBeforeSave, OutputDateContextQueryParams, Pagination, PartialFilterChipGenerationType, PartialFilterChipRemovalType, PasswordErrorKey, PasswordStrengthColor, PasswordStrengthSettings, PasswordValidationResult, PathSortingConfig, PatternMessages, PickedDates, PickedFiles, PluginsConfig, PopoverConfirmButtons, PreviewFeature, PreviewFeatureCustom, PreviewFeatureDefault, ProductExperienceEvent, ProductExperienceEventSource, PropertiesListItem, ProviderDefinition, ProviderProperties, PxEventData, QueryParamBottomDrawerConfig, QueryParamConfig, QueryParamModalConfig, QueryParamModalConfigBase, QueryParamModalConfigEager, QueryParamModalConfigLazy, RangeDisplay, RealtimeAction, RemoteModuleWithMetadata, ResizableGridConfig, RevertChangeType, RightDrawerItem, Route, RouteDefault, RouteExtension, RouteFactory, RouteWithComponent, RouteWithTab, Row, SchemaNode, Search, SearchFactory, SelectableItem, SelectableItemTemplate, ServerSideDataCallback, ServerSideDataResult, SetupStep, SortOrder, SplitViewAction, 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 };
|
|
21854
|
+
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, ApplyRangeClassPipe, AssetDefinitionsService, 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, DropdownFocusTrapDirective, 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, IconPanelComponent, 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, PasswordValidationDirective, PasswordValidationService, 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, SplitViewAlertsComponent, SplitViewComponent, SplitViewDetailsActionsComponent, SplitViewDetailsComponent, SplitViewExtraHeaderComponent, SplitViewFooterComponent, SplitViewHeaderActionsComponent, SplitViewListComponent, SplitViewListItemDirective, SplitViewSelectionService, StateService, Status, StepperModule, StepperOutletComponent, StepperService, Steppers, StringFilterMapper, StringifyObjectPipe, StripHtmlPipe, 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, VirtualScrollListenerDirective, VirtualScrollWindowDirective, VirtualScrollWindowStrategy, VirtualScrollerWrapperComponent, VisibleControlsPipe, WIDGET_CONFIGURATION_GRID_SIZE, WIDGET_TYPE_VALUES, WILDCARD_SEARCH_FEATURE_KEY, WebSDKVersionFactory, WidgetActionWrapperComponent, 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 };
|
|
21855
|
+
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, AssetColumnOperationType, AssetDefinition, AssetPropertyDefinition, AssetPropertyDefinitionResponse, AssetPropertyFilter, AssetTableExtendedColumn, BaseDrawerItem, BasePreviewFeature, Breadcrumb, BreadcrumbExtension, BreadcrumbFactory, BreadcrumbItem, BreadcrumbItemWithComponent, BreadcrumbItemWithLabel, BreadcrumbItemWithTemplate, BulkActionControl, C8yJsonSchema, C8yJsonSchemaProperty, C8yPropertyType, CanEditConfig, CellRendererDef, CellRendererSpec, CleanedVersion, ClickOptions, ColorRangeBoundaries, Column, ColumnConfig, ColumnSortingConfig, ComputedConfig, ConfirmOption, ConfirmOptions, ContextData, CustomColumnConfig, CustomColumnType, DashboardChange, DashboardChildArrangement, DashboardChildDimension, DashboardChildResizeDimension, DashboardCopyPermission, DashboardSettings, DataGrid, DataGridConfigurationStrategy, DataSourceModifier, DataSourceStats, DateAndTimeOptions, DateRangePickerConfig, DateTimeContext, DateType, DefinitionBase, DisplayOptions, DocLink, DocLinkExtension, DocLinkWithComponent, DocLinkWithLabel, DrawerHost, 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, HeaderTemplates, HookValueType, IFetchWithProgress, IRealtimeDeviceBootstrap, ISelectModalBodyPart, ISelectModalObject, ISelectModalOption, IUpdateItemEvent, IconConfigComparison, IconConfigItem, IconPanelSection, IndexedStep, InputDateContextQueryParams, Item, JsonSchema, LazyDynamicComponents, LeftDrawerItem, LegacyWidget, LoadMoreMode, ManagedObjectTypeForConfig, ModalLabels, NavigatorNodeData, NavigatorNodeFactory, NewPassword, NotificationService, OnBeforeSave, OutputDateContextQueryParams, Pagination, PartialFilterChipGenerationType, PartialFilterChipRemovalType, PasswordErrorKey, PasswordStrengthColor, PasswordStrengthSettings, PasswordValidationResult, PathSortingConfig, PatternMessages, PickedDates, PickedFiles, PluginsConfig, PopoverConfirmButtons, PreviewFeature, PreviewFeatureCustom, PreviewFeatureDefault, ProductExperienceEvent, ProductExperienceEventSource, PropertiesListItem, ProviderDefinition, ProviderProperties, PxEventData, QueryParamBottomDrawerConfig, QueryParamConfig, QueryParamModalConfig, QueryParamModalConfigBase, QueryParamModalConfigEager, QueryParamModalConfigLazy, RangeDisplay, RealtimeAction, RemoteModuleWithMetadata, ResizableGridConfig, RevertChangeType, RightDrawerItem, Route, RouteDefault, RouteExtension, RouteFactory, RouteWithComponent, RouteWithTab, Row, SchemaNode, Search, SearchFactory, SelectableItem, SelectableItemTemplate, ServerSideDataCallback, ServerSideDataResult, SetupStep, SortOrder, SplitViewAction, 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 };
|
|
21793
21856
|
//# sourceMappingURL=index.d.ts.map
|