intelica-library-components 1.1.64 → 1.1.65
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/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { PipeTransform, TemplateRef, OnChanges, AfterContentInit, EventEmitter, QueryList, SimpleChanges, OnDestroy, OnInit, ElementRef, ChangeDetectorRef, AfterViewInit, AfterViewChecked, NgZone } from '@angular/core';
|
|
2
|
+
import { PipeTransform, TemplateRef, OnChanges, AfterContentInit, EventEmitter, QueryList, SimpleChanges, OnDestroy, OnInit, ElementRef, ChangeDetectorRef, AfterViewInit, AfterViewChecked, InjectionToken, NgZone } from '@angular/core';
|
|
3
3
|
import { HttpInterceptorFn, HttpClient } from '@angular/common/http';
|
|
4
4
|
import { CanActivateFn, CanActivateChild, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router';
|
|
5
5
|
import { FormGroup, ControlValueAccessor } from '@angular/forms';
|
|
@@ -1982,6 +1982,18 @@ interface AlertTypeConfig {
|
|
|
1982
1982
|
declare const ALERT_ICON_PATHS: {
|
|
1983
1983
|
error: string;
|
|
1984
1984
|
};
|
|
1985
|
+
/**
|
|
1986
|
+
* InjectionToken to override the default icon CSS class per alert type.
|
|
1987
|
+
* Provide a Partial<Record<AlertType, string>> to customize icons project-wide.
|
|
1988
|
+
*
|
|
1989
|
+
* Example (app.config.ts):
|
|
1990
|
+
* { provide: ALERT_ICON_OVERRIDES, useValue: {
|
|
1991
|
+
* [AlertType.SUCCESS]: 'icon icon-success',
|
|
1992
|
+
* [AlertType.WARNING]: 'icon icon-warning',
|
|
1993
|
+
* [AlertType.ERROR]: 'icon icon-alert',
|
|
1994
|
+
* }}
|
|
1995
|
+
*/
|
|
1996
|
+
declare const ALERT_ICON_OVERRIDES: InjectionToken<Partial<Record<AlertType, string>>>;
|
|
1985
1997
|
/**
|
|
1986
1998
|
* Centralized configuration for each alert type using PrimeNG icons.
|
|
1987
1999
|
*/
|
|
@@ -2191,6 +2203,7 @@ declare class SweetAlertService {
|
|
|
2191
2203
|
|
|
2192
2204
|
declare class AlertService {
|
|
2193
2205
|
private readonly confirmationService;
|
|
2206
|
+
private readonly iconOverrides;
|
|
2194
2207
|
private readonly DIALOG_KEY;
|
|
2195
2208
|
/**
|
|
2196
2209
|
* Displays a warning alert with yellow styling.
|
|
@@ -3154,5 +3167,5 @@ declare class NotificationOrchestratorService {
|
|
|
3154
3167
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationOrchestratorService>;
|
|
3155
3168
|
}
|
|
3156
3169
|
|
|
3157
|
-
export { ALERT_DEFAULTS, ALERT_ICON_PATHS, ALERT_TYPE_CONFIG, ActionDirective, ActionsMenuComponent, AddFavoritesComponent, AlertButtonMode, AlertService, AlertType, ButtonSplitComponent, CheckboxFilterDirective, ClientContextSelector, Color, ColumnComponent, ColumnGroupComponent, CompareByField, ConfigService, CookieAttributesGeneral, DATEPICKER_BUTTON_TYPES, DataDirective, DateFilterDirective, DateModeOptions, DatepickerComponent, DynamicInputValidation, EchartComponent, EchartService, ElementService, EmailInputValidation, ErrorInterceptor, FeatureFlagService, FilterChipsComponent, FiltersComponent, FormatAmountPipe, GetCookieAttributes, GlobalFavoriteService, GlobalFeatureFlagService, GlobalMenuService, GlobalTermService, HtmlToExcelService, InitializeConfigService, InputValidation, IntelicaAlertComponent, IntelicaCellCheckboxDirective, IntelicaSessionService, IntelicaTheme, ItemSplitDirective, LanguageService, MatrixColumnComponent, MatrixColumnGroupComponent, MatrixTableComponent, ModalDialogComponent, MultiSelectComponent, NotificationJobService, NotificationOrchestratorService, NotificationService, NotificationSignalRService, OrderConstants, PageInformation, PageRootChildGuard, PaginatorComponent, Patterns, PopoverComponent, ProfileService, RecordPerPageComponent, RefreshTokenInterceptor, RequestCacheService, ResponseHeadersInterceptor, RouteGuard, RowResumenComponent, RowResumenTreeComponent, SearchComponent, SelectDetailFilterDirective, SelectFilterDirective, SharedService, SkeletonChartComponent, SkeletonComponent, SkeletonService, SkeletonTableComponent, SortingComponent, SpinnerComponent, SpinnerService, SweetAlertService, TableComponent, TableFetchComponent, TableSortOrder, TemplateDirective, TemplateMenuComponent, TermGuard, TermPipe, TermService, TextAreaFilterDirective, TextFilterDirective, TextRangeFilterDirective, TreeColumnComponent, TreeColumnGroupComponent, TreeTableComponent, TruncatePipe, decryptData, encryptData, getColor };
|
|
3170
|
+
export { ALERT_DEFAULTS, ALERT_ICON_OVERRIDES, ALERT_ICON_PATHS, ALERT_TYPE_CONFIG, ActionDirective, ActionsMenuComponent, AddFavoritesComponent, AlertButtonMode, AlertService, AlertType, ButtonSplitComponent, CheckboxFilterDirective, ClientContextSelector, Color, ColumnComponent, ColumnGroupComponent, CompareByField, ConfigService, CookieAttributesGeneral, DATEPICKER_BUTTON_TYPES, DataDirective, DateFilterDirective, DateModeOptions, DatepickerComponent, DynamicInputValidation, EchartComponent, EchartService, ElementService, EmailInputValidation, ErrorInterceptor, FeatureFlagService, FilterChipsComponent, FiltersComponent, FormatAmountPipe, GetCookieAttributes, GlobalFavoriteService, GlobalFeatureFlagService, GlobalMenuService, GlobalTermService, HtmlToExcelService, InitializeConfigService, InputValidation, IntelicaAlertComponent, IntelicaCellCheckboxDirective, IntelicaSessionService, IntelicaTheme, ItemSplitDirective, LanguageService, MatrixColumnComponent, MatrixColumnGroupComponent, MatrixTableComponent, ModalDialogComponent, MultiSelectComponent, NotificationJobService, NotificationOrchestratorService, NotificationService, NotificationSignalRService, OrderConstants, PageInformation, PageRootChildGuard, PaginatorComponent, Patterns, PopoverComponent, ProfileService, RecordPerPageComponent, RefreshTokenInterceptor, RequestCacheService, ResponseHeadersInterceptor, RouteGuard, RowResumenComponent, RowResumenTreeComponent, SearchComponent, SelectDetailFilterDirective, SelectFilterDirective, SharedService, SkeletonChartComponent, SkeletonComponent, SkeletonService, SkeletonTableComponent, SortingComponent, SpinnerComponent, SpinnerService, SweetAlertService, TableComponent, TableFetchComponent, TableSortOrder, TemplateDirective, TemplateMenuComponent, TermGuard, TermPipe, TermService, TextAreaFilterDirective, TextFilterDirective, TextRangeFilterDirective, TreeColumnComponent, TreeColumnGroupComponent, TreeTableComponent, TruncatePipe, decryptData, encryptData, getColor };
|
|
3158
3171
|
export type { ActionTypeCatalog, AlertButtonConfig, AlertConfig, AlertResult, AlertStyleConfig, AlertTypeConfig, BucketCatalog, CallbackExecutionResult, CascadeFilterModel, ChannelCatalog, ColorName, ContextSelectorClientDto, ContextSelectorCountryDto, ContextSelectorRegionDto, ContextSelectorSelectionDto, CookieAttributes, CreateNotificationJobRequest, CreateNotificationsForJobRequest, CustomButtonType, DateMode, DestinationTypeCatalog, ExportExcelCommand, FilterModel, ICell, IExcelColumnName, IExcelHeaderGroup, IFilter, ItlSessionEnvelope, ItlSessionScope, JobState, JobStatusCatalog, MethodTypeCatalog, NotificationByJobItemResponse, NotificationDraft, NotificationJobProgressResponse, NotificationJobResponse, NotificationRecipientSummaryResponse, NotificationResponse, NotificationTypeCatalog, OriginCatalog, PopoverInformationModel, PriorityCatalog, ProductEventDetail, PropertiesModel, QueryParametersModel, RecipientDispatchError, RecipientNotification, RecipientNotificationAction, RecipientProgressNotification, RecipientProgressNotificationAction, RecipientTypeCatalog, SearchFieldModel, SearchInputModel, SortFieldModel, UserNotificationAction, UserNotificationInboxItem };
|