@solcre-org/core-ui 2.15.42 → 2.15.44

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 _angular_core from '@angular/core';
2
- import { TemplateRef, AfterViewInit, OnDestroy, ElementRef, OnInit, SimpleChanges, OnChanges, Signal, Type, ViewContainerRef, AfterViewChecked, RendererFactory2, InjectionToken, Provider } from '@angular/core';
2
+ import { TemplateRef, AfterViewInit, OnDestroy, ElementRef, OnInit, SimpleChanges, OnChanges, Signal, Type, ViewContainerRef, AfterViewChecked, RendererFactory2, InjectionToken, Provider, EnvironmentProviders } from '@angular/core';
3
3
  import { ValidatorFn, FormControl, FormGroup } from '@angular/forms';
4
4
  import { DataBaseModelInterface } from '@solcre-org/core';
5
5
  import { NgSelectComponent } from '@ng-select/ng-select';
@@ -8,7 +8,8 @@ import { Observable, Subject, BehaviorSubject } from 'rxjs';
8
8
  import { SafeHtml } from '@angular/platform-browser';
9
9
  import { Overlay } from '@angular/cdk/overlay';
10
10
  import * as _solcre_org_core_ui from '@solcre-org/core-ui';
11
- import { HttpInterceptor, HttpRequest, HttpHandler, HttpEvent, HttpClient } from '@angular/common/http';
11
+ import { CanActivateFn } from '@angular/router';
12
+ import { HttpInterceptorFn, HttpInterceptor, HttpRequest, HttpHandler, HttpEvent, HttpClient } from '@angular/common/http';
12
13
  import { TranslateLoader, TranslateService } from '@ngx-translate/core';
13
14
  import { TranslateHttpLoader } from '@ngx-translate/http-loader';
14
15
 
@@ -158,12 +159,6 @@ interface ModalFieldConfig<T> {
158
159
  format?: (value: any, data: T) => string;
159
160
  customViewTemplate?: ((value: any, data: T) => string) | TemplateRef<any>;
160
161
  multiEntryConfig?: MultiEntryFieldConfig;
161
- aiConfig?: {
162
- endpoint?: string;
163
- labelField?: string;
164
- valueField?: string;
165
- queryParam?: string;
166
- };
167
162
  modes?: Partial<Record<ModalMode, {
168
163
  defaultValue?: any | ((row: T) => any);
169
164
  readonly?: boolean | ((formValue: any) => boolean);
@@ -2938,6 +2933,7 @@ declare class GenericTableComponent<T extends DataBaseModelInterface & {
2938
2933
  loadMoreItems(): void;
2939
2934
  onModalData(data: T): void;
2940
2935
  getExpandButtonConfig(row: T): ButtonConfig;
2936
+ private getDefaultTooltipPosition;
2941
2937
  getActionButtonConfig(action: TableAction, actionConfig: TableActionConfig<T>, row?: T): ButtonConfig;
2942
2938
  getCustomActionButtonConfig(customAction: CustomAction<T>): ButtonConfig;
2943
2939
  getCustomActionButtonConfigForRow(customAction: CustomAction<T>, row: T): ButtonConfig;
@@ -3250,7 +3246,7 @@ interface HeaderActionConfig {
3250
3246
  icon?: string;
3251
3247
  class?: string;
3252
3248
  callback: () => void;
3253
- visible?: boolean;
3249
+ visible?: boolean | (() => boolean);
3254
3250
  disabled?: boolean;
3255
3251
  tooltip?: string;
3256
3252
  tooltipPosition?: 'top' | 'bottom' | 'left' | 'right';
@@ -3738,7 +3734,7 @@ declare class HeaderService {
3738
3734
  action: string;
3739
3735
  custom_action?: string;
3740
3736
  } | undefined;
3741
- visible: boolean | undefined;
3737
+ visible: boolean | (() => boolean) | undefined;
3742
3738
  disabled: boolean | undefined;
3743
3739
  mobileConfig: MobileActionConfig | undefined;
3744
3740
  }[]>;
@@ -5171,6 +5167,135 @@ declare class GenericFixedActionsComponent implements AfterViewInit {
5171
5167
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<GenericFixedActionsComponent, "core-generic-fixed-actions", never, { "externalActions": { "alias": "externalActions"; "required": false; "isSignal": true; }; "tableId": { "alias": "tableId"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
5172
5168
  }
5173
5169
 
5170
+ declare enum AdInteractionType {
5171
+ POPUP = "popup",
5172
+ REDIRECT = "redirect"
5173
+ }
5174
+
5175
+ interface AdAuthConfig {
5176
+ clientId: string;
5177
+ authority: string;
5178
+ redirectUri: string;
5179
+ postLogoutRedirectUri?: string;
5180
+ scopes?: string[];
5181
+ interactionType?: AdInteractionType;
5182
+ cacheLocation?: 'sessionStorage' | 'localStorage';
5183
+ enableLogging?: boolean;
5184
+ logLevel?: 0 | 1 | 2 | 3;
5185
+ }
5186
+ interface AdLoginButtonConfig {
5187
+ loginText?: string;
5188
+ logoutText?: string;
5189
+ loginIcon?: string;
5190
+ logoutIcon?: string;
5191
+ showUserInfo?: boolean;
5192
+ buttonConfig?: Partial<ButtonConfig>;
5193
+ customClass?: string;
5194
+ showLoader?: boolean;
5195
+ }
5196
+ interface AdAuthUser {
5197
+ id: string;
5198
+ name?: string;
5199
+ email?: string;
5200
+ username?: string;
5201
+ roles?: string[];
5202
+ tenantId?: string;
5203
+ claims?: Record<string, any>;
5204
+ }
5205
+ interface AdAuthEvent {
5206
+ type: 'login-success' | 'login-error' | 'logout-success' | 'logout-error' | 'token-acquired';
5207
+ user?: AdAuthUser;
5208
+ accessToken?: string;
5209
+ error?: any;
5210
+ message?: string;
5211
+ }
5212
+ interface AdAuthState {
5213
+ isAuthenticated: boolean;
5214
+ user: AdAuthUser | null;
5215
+ isLoading: boolean;
5216
+ error: any | null;
5217
+ }
5218
+
5219
+ type AccountInfo = any;
5220
+ declare const AD_AUTH_CONFIG: InjectionToken<AdAuthConfig>;
5221
+ declare class AdAuthService {
5222
+ private config;
5223
+ private msalInstance;
5224
+ private msalModule;
5225
+ private initializationPromise;
5226
+ private authState;
5227
+ readonly isAuthenticated: _angular_core.Signal<boolean>;
5228
+ readonly currentUser: _angular_core.Signal<AdAuthUser | null>;
5229
+ readonly isLoading: _angular_core.Signal<boolean>;
5230
+ readonly error: _angular_core.Signal<any>;
5231
+ constructor();
5232
+ /**
5233
+ * Dynamically loads MSAL library only when needed
5234
+ */
5235
+ private loadMsalModule;
5236
+ private initializeMsal;
5237
+ /**
5238
+ * Ensures MSAL is initialized before performing operations
5239
+ */
5240
+ private ensureInitialized;
5241
+ private loggerCallback;
5242
+ private handleRedirectResponse;
5243
+ private checkActiveSession;
5244
+ private mapAccountToUser;
5245
+ private updateAuthState;
5246
+ private handleAuthenticationResult;
5247
+ loginWithPopup(): Promise<AdAuthUser | null>;
5248
+ loginWithRedirect(): Promise<void>;
5249
+ login(): Promise<AdAuthUser | null>;
5250
+ logoutWithPopup(): Promise<void>;
5251
+ logoutWithRedirect(): Promise<void>;
5252
+ logout(): Promise<void>;
5253
+ acquireToken(scopes?: string[]): Promise<string | null>;
5254
+ getAllAccounts(): Promise<AccountInfo[]>;
5255
+ isConfigured(): boolean;
5256
+ isReady(): Promise<boolean>;
5257
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AdAuthService, never>;
5258
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<AdAuthService>;
5259
+ }
5260
+
5261
+ declare function adAuthGuard(redirectTo?: string): CanActivateFn;
5262
+ declare function adGuestGuard(redirectTo?: string): CanActivateFn;
5263
+ declare function adRoleGuard(requiredRoles: string[], redirectTo?: string): CanActivateFn;
5264
+
5265
+ interface AdAuthInterceptorConfig {
5266
+ protectedUrls: (string | RegExp)[];
5267
+ scopes?: string[];
5268
+ }
5269
+ declare const DEFAULT_AD_AUTH_INTERCEPTOR_CONFIG: AdAuthInterceptorConfig;
5270
+
5271
+ declare const AD_AUTH_INTERCEPTOR_CONFIG: InjectionToken<AdAuthInterceptorConfig>;
5272
+ declare const adAuthInterceptor: HttpInterceptorFn;
5273
+
5274
+ declare function provideAdAuth(config: AdAuthConfig): Provider;
5275
+ declare function provideAdAuthInterceptor(config: AdAuthInterceptorConfig): Provider;
5276
+ declare function provideAdAuthWithInterceptor(authConfig: AdAuthConfig, interceptorConfig?: AdAuthInterceptorConfig): EnvironmentProviders;
5277
+
5278
+ declare class AdLoginButtonComponent {
5279
+ private authService;
5280
+ config: _angular_core.InputSignal<AdLoginButtonConfig>;
5281
+ disabled: _angular_core.InputSignal<boolean>;
5282
+ authEvent: _angular_core.OutputEmitterRef<AdAuthEvent>;
5283
+ readonly isAuthenticated: _angular_core.Signal<boolean>;
5284
+ readonly currentUser: _angular_core.Signal<_solcre_org_core_ui.AdAuthUser | null>;
5285
+ readonly isLoading: _angular_core.Signal<boolean>;
5286
+ readonly error: _angular_core.Signal<any>;
5287
+ readonly isConfigured: boolean;
5288
+ readonly loginButtonConfig: _angular_core.Signal<ButtonConfig>;
5289
+ readonly logoutButtonConfig: _angular_core.Signal<ButtonConfig>;
5290
+ readonly showUserInfo: _angular_core.Signal<boolean>;
5291
+ readonly userInitials: _angular_core.Signal<string>;
5292
+ constructor();
5293
+ onLoginClick(): Promise<void>;
5294
+ onLogoutClick(): Promise<void>;
5295
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AdLoginButtonComponent, never>;
5296
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AdLoginButtonComponent, "core-ad-login-button", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "authEvent": "authEvent"; }, never, never, true, never>;
5297
+ }
5298
+
5174
5299
  declare const DEFAULT_COUNTRIES: CountryOption[];
5175
5300
  declare const LATIN_AMERICA_COUNTRIES: CountryOption[];
5176
5301
  declare const COMMON_COUNTRIES: CountryOption[];
@@ -5688,5 +5813,5 @@ declare const AgeValidationHelper: {
5688
5813
 
5689
5814
  declare const ageValidator: (minimumAge: number) => ValidatorFn;
5690
5815
 
5691
- export { ALL_COUNTRY_CODES, ActiveFiltersComponent, AgeValidationHelper, AlertComponent, AlertContainerComponent, AlertService, AlertType, ApiConfigurationProvider, BaseFieldComponent, ButtonContext, ButtonSize, ButtonType, COMMON_COUNTRIES, CacheBustingInterceptor, CardComponent, CarouselComponent, ChatMessagePosition, ChatMessageType, CheckboxFieldComponent, ConfigurationModel, ConfirmationDialogComponent, ConfirmationDialogService, CoreHostDirective, CoreManualRefreshComponent, CoreUiHttpLoaderFactory, CoreUiTranslateLoader, CoreUiTranslateService, CountryCode, CustomClassService, DEFAULT_COUNTRIES, DataListComponent, DataListItemComponent, DataStoreService, DateFieldComponent, DateUtility, DatetimeFieldComponent, DialogActions, DocumentAction, DocumentDisplayMode, DocumentFieldComponent, DocumentFieldValidators, DocumentPayloadMode, DropdownComponent, DropdownDirection, DropdownService, DynamicFieldDirective, DynamicFieldsHelper, FieldErrorsComponent, FieldType, FileFieldComponent, FileModel, FilePreviewActionType, FileTemplateModel, FileTemplateType, FileType, FileTypeModel, FileUploadService, FilterModalComponent, FilterService, FilterType, FixedActionPosition, FixedActionsMobileModalComponent, FixedActionsMobileModalService, GalleryAnimationType, GalleryLayoutType, GalleryModalComponent, GalleryModalGlobalService, GenericButtonComponent, GenericChatComponent, GenericChatService, GenericDocumentationComponent, GenericFixedActionsComponent, GenericGalleryComponent, GenericModalComponent, GenericPaginationComponent, GenericRatingComponent, GenericSidebarComponent, GenericSkeletonComponent, GenericStepsComponent, GenericSwitchComponent, GenericTableComponent, GenericTabsComponent, GenericTimelineComponent, GlobalApiConfigService, HeaderComponent, HeaderConfigurationService, HeaderElementType, HeaderService, HttpLoaderFactory, ImageModalComponent, ImageModalService, ImagePreviewComponent, LATIN_AMERICA_COUNTRIES, LayoutAuth, LayoutBreakpoint, LayoutComponent, LayoutService, LayoutStateService, LayoutType, LoaderComponent, LoaderService, MODEL_REFERENCE_SORT_KEY, MainNavComponent, MainNavService, ManualRefreshService, MobileHeaderComponent, MobileResolutionService, ModalMode, ModelApiService, MultiEntryFieldComponent, MultiEntryOutputFormat, NumberFieldComponent, NumberFieldConfigType, NumberFieldType, NumberRange, PERMISSION_ACTIONS_PROVIDER, PERMISSION_PROVIDER, PERMISSION_RESOURCES_PROVIDER, PaginationService, PasswordFieldComponent, PermissionEnumsService, PermissionModel, PermissionService, PermissionWrapperService, PermissionsActions, PermissionsCustomActions, PermissionsInterceptor, PermissionsResources, PhoneFieldComponent, ProgressBarComponent, ProgressBarSize, RatingService, RatingSize, RatingType, RedirectUrlService, ResetPasswordModel, RoleModel, SOUTH_AMERICA_COUNTRIES, SelectFieldComponent, ServerSelectFieldComponent, ServerSelectService, SidebarCustomModalComponent, SidebarCustomModalService, SidebarHeight, SidebarMobileModalService, SidebarMobileType, SidebarPosition, SidebarService, SidebarState, SidebarTemplateRegistryService, SidebarVisibility, SidebarWidth, SkeletonAnimation, SkeletonService, SkeletonSize, SkeletonType, SmartFieldComponent, SortDirection, SortMode, StepSize, StepStatus, StepType, StepsService, SwitchFieldComponent, TableAction, TableActionService, TableDataService, TableFixedActionsService, TableSortService, TextAreaFieldComponent, TextFieldComponent, TimeFieldComponent, TimeInterval, TimelineService, TimelineStatus, TimelineType, TranslationMergeService, UruguayanDocumentValidationHelper, UsersModel, VERSION, ageValidator, calculateAge, equalToValidator, generateRandomUruguayanDocument, getCountryCodeStrings, getLatestBirthDateForAge, getRandomCi, getUruguayanDocumentValidationDigit, getValidationDigit, isSameDate, isValidCountryCode, provideCoreUiTranslateLoader, providePermissionActions, providePermissionEnums, providePermissionResources, providePermissionService, providePermissionServiceFactory, provideTranslateLoader, random, transform, transformUruguayanDocument, uruguayanDocumentValidator, validate, validateAge, validateCi, validateUruguayanDocument, validationDigit };
5692
- export type { ActiveFilterItem, ActiveFiltersConfig, AdditionalPermissionResources, AddressModel, AgeComparisonMode, AgeValidationInput, AgeValidationOptions, Alert, ApiConfig, ApiResponse, BottomNavItem, ButtonActionEvent, ButtonConfig, CarouselConfig, CarouselImage, ChatConfig, ChatMessage, CheckboxFieldConfig, CheckboxModalFieldConfig, CheckboxOption, ColumnConfig, ColumnDisabledConfig, CompanyInfo, ConfirmUploadRequest, ConfirmationDialogConfig, CountryOption, CustomAction, DataListItem, DateFieldConfig, DateModalFieldConfig, DocumentActionEvent, DocumentConfig, DocumentFieldConfig, DocumentFieldValue, DocumentItem, DocumentOption, DynamicFieldsHelperConfig, DynamicFieldsHelperMethods, DynamicFieldsHelperState, ExpansionConfig, ExtendedModalFieldConfig, ExtendedPermissionProvider, FileFieldConfig, FilePreviewAction, FilePreviewConfig, FilePreviewItem, FileUploadConfig, FilterConfig, FilterParams, FixedActionConfig, FixedActionsConfig, GalleryConfig, GalleryImage, GenericTab, GenericTabClickEvent, GenericTabConfig, GlobalAction, HeaderAction, HeaderActionConfig, HeaderConfig, HeaderElementConfig, HeaderOrderConfig, ImageModalData, InlineEditConfig, LayoutConfig, LayoutDataAttributes, LogoImagesConfig, ManualRefreshConfig, MobileBreakpointConfig, MobileHeaderConfig, MobileModalData, ModalButtonConfig, ModalFieldConfig, ModalStepConfig, ModalTabConfig, ModalValidationResult, MoreDataConfig, MultiEntryFieldConfig, MultiEntryFieldValue, NavConfig, NavItem, NavUserConfig, NumberFieldConfig, NumberModalFieldConfig, PaginatedResponse, PaginationEvent, PaginationInfo, PermissionActionsProvider, PermissionProvider, PermissionResourcesProvider, PhoneFieldConfig, PhoneModalFieldConfig, PresignedDownloadUrlResponse, PresignedUrlRequest, PresignedUrlResponse, PreviewFileUrl, RatingConfig, RatingStar, RatingSubmitEvent, RowStyleConfig, RowVisibilityConfig, SearchResponse, SelectServerSideConfig, SidebarBackButton, SidebarComponentConfig, SidebarComponentEvents, SidebarConfig, SidebarCustomModalConfig, SidebarItem, SidebarResponsiveConfig, SidebarSubItem, SidebarTemplateContext, SkeletonConfig, SkeletonItemConfig, SortConfig, StepChangeEvent, StepClickEvent, StepItemConfig, StepsConfig, SwitchFieldConfig, SwitchModalFieldConfig, SwitchOption, TableActionConfig, TableFixedActionsConfig, TableSortConfig, TimeFieldConfig, TimeFieldValue, TimeOption, TimelineConfig, TimelineItem, UruguayanDocumentInput };
5816
+ export { AD_AUTH_CONFIG, AD_AUTH_INTERCEPTOR_CONFIG, ALL_COUNTRY_CODES, ActiveFiltersComponent, AdAuthService, AdInteractionType, AdLoginButtonComponent, AgeValidationHelper, AlertComponent, AlertContainerComponent, AlertService, AlertType, ApiConfigurationProvider, BaseFieldComponent, ButtonContext, ButtonSize, ButtonType, COMMON_COUNTRIES, CacheBustingInterceptor, CardComponent, CarouselComponent, ChatMessagePosition, ChatMessageType, CheckboxFieldComponent, ConfigurationModel, ConfirmationDialogComponent, ConfirmationDialogService, CoreHostDirective, CoreManualRefreshComponent, CoreUiHttpLoaderFactory, CoreUiTranslateLoader, CoreUiTranslateService, CountryCode, CustomClassService, DEFAULT_AD_AUTH_INTERCEPTOR_CONFIG, DEFAULT_COUNTRIES, DataListComponent, DataListItemComponent, DataStoreService, DateFieldComponent, DateUtility, DatetimeFieldComponent, DialogActions, DocumentAction, DocumentDisplayMode, DocumentFieldComponent, DocumentFieldValidators, DocumentPayloadMode, DropdownComponent, DropdownDirection, DropdownService, DynamicFieldDirective, DynamicFieldsHelper, FieldErrorsComponent, FieldType, FileFieldComponent, FileModel, FilePreviewActionType, FileTemplateModel, FileTemplateType, FileType, FileTypeModel, FileUploadService, FilterModalComponent, FilterService, FilterType, FixedActionPosition, FixedActionsMobileModalComponent, FixedActionsMobileModalService, GalleryAnimationType, GalleryLayoutType, GalleryModalComponent, GalleryModalGlobalService, GenericButtonComponent, GenericChatComponent, GenericChatService, GenericDocumentationComponent, GenericFixedActionsComponent, GenericGalleryComponent, GenericModalComponent, GenericPaginationComponent, GenericRatingComponent, GenericSidebarComponent, GenericSkeletonComponent, GenericStepsComponent, GenericSwitchComponent, GenericTableComponent, GenericTabsComponent, GenericTimelineComponent, GlobalApiConfigService, HeaderComponent, HeaderConfigurationService, HeaderElementType, HeaderService, HttpLoaderFactory, ImageModalComponent, ImageModalService, ImagePreviewComponent, LATIN_AMERICA_COUNTRIES, LayoutAuth, LayoutBreakpoint, LayoutComponent, LayoutService, LayoutStateService, LayoutType, LoaderComponent, LoaderService, MODEL_REFERENCE_SORT_KEY, MainNavComponent, MainNavService, ManualRefreshService, MobileHeaderComponent, MobileResolutionService, ModalMode, ModelApiService, MultiEntryFieldComponent, MultiEntryOutputFormat, NumberFieldComponent, NumberFieldConfigType, NumberFieldType, NumberRange, PERMISSION_ACTIONS_PROVIDER, PERMISSION_PROVIDER, PERMISSION_RESOURCES_PROVIDER, PaginationService, PasswordFieldComponent, PermissionEnumsService, PermissionModel, PermissionService, PermissionWrapperService, PermissionsActions, PermissionsCustomActions, PermissionsInterceptor, PermissionsResources, PhoneFieldComponent, ProgressBarComponent, ProgressBarSize, RatingService, RatingSize, RatingType, RedirectUrlService, ResetPasswordModel, RoleModel, SOUTH_AMERICA_COUNTRIES, SelectFieldComponent, ServerSelectFieldComponent, ServerSelectService, SidebarCustomModalComponent, SidebarCustomModalService, SidebarHeight, SidebarMobileModalService, SidebarMobileType, SidebarPosition, SidebarService, SidebarState, SidebarTemplateRegistryService, SidebarVisibility, SidebarWidth, SkeletonAnimation, SkeletonService, SkeletonSize, SkeletonType, SmartFieldComponent, SortDirection, SortMode, StepSize, StepStatus, StepType, StepsService, SwitchFieldComponent, TableAction, TableActionService, TableDataService, TableFixedActionsService, TableSortService, TextAreaFieldComponent, TextFieldComponent, TimeFieldComponent, TimeInterval, TimelineService, TimelineStatus, TimelineType, TranslationMergeService, UruguayanDocumentValidationHelper, UsersModel, VERSION, adAuthGuard, adAuthInterceptor, adGuestGuard, adRoleGuard, ageValidator, calculateAge, equalToValidator, generateRandomUruguayanDocument, getCountryCodeStrings, getLatestBirthDateForAge, getRandomCi, getUruguayanDocumentValidationDigit, getValidationDigit, isSameDate, isValidCountryCode, provideAdAuth, provideAdAuthInterceptor, provideAdAuthWithInterceptor, provideCoreUiTranslateLoader, providePermissionActions, providePermissionEnums, providePermissionResources, providePermissionService, providePermissionServiceFactory, provideTranslateLoader, random, transform, transformUruguayanDocument, uruguayanDocumentValidator, validate, validateAge, validateCi, validateUruguayanDocument, validationDigit };
5817
+ export type { ActiveFilterItem, ActiveFiltersConfig, AdAuthConfig, AdAuthEvent, AdAuthInterceptorConfig, AdAuthState, AdAuthUser, AdLoginButtonConfig, AdditionalPermissionResources, AddressModel, AgeComparisonMode, AgeValidationInput, AgeValidationOptions, Alert, ApiConfig, ApiResponse, BottomNavItem, ButtonActionEvent, ButtonConfig, CarouselConfig, CarouselImage, ChatConfig, ChatMessage, CheckboxFieldConfig, CheckboxModalFieldConfig, CheckboxOption, ColumnConfig, ColumnDisabledConfig, CompanyInfo, ConfirmUploadRequest, ConfirmationDialogConfig, CountryOption, CustomAction, DataListItem, DateFieldConfig, DateModalFieldConfig, DocumentActionEvent, DocumentConfig, DocumentFieldConfig, DocumentFieldValue, DocumentItem, DocumentOption, DynamicFieldsHelperConfig, DynamicFieldsHelperMethods, DynamicFieldsHelperState, ExpansionConfig, ExtendedModalFieldConfig, ExtendedPermissionProvider, FileFieldConfig, FilePreviewAction, FilePreviewConfig, FilePreviewItem, FileUploadConfig, FilterConfig, FilterParams, FixedActionConfig, FixedActionsConfig, GalleryConfig, GalleryImage, GenericTab, GenericTabClickEvent, GenericTabConfig, GlobalAction, HeaderAction, HeaderActionConfig, HeaderConfig, HeaderElementConfig, HeaderOrderConfig, ImageModalData, InlineEditConfig, LayoutConfig, LayoutDataAttributes, LogoImagesConfig, ManualRefreshConfig, MobileBreakpointConfig, MobileHeaderConfig, MobileModalData, ModalButtonConfig, ModalFieldConfig, ModalStepConfig, ModalTabConfig, ModalValidationResult, MoreDataConfig, MultiEntryFieldConfig, MultiEntryFieldValue, NavConfig, NavItem, NavUserConfig, NumberFieldConfig, NumberModalFieldConfig, PaginatedResponse, PaginationEvent, PaginationInfo, PermissionActionsProvider, PermissionProvider, PermissionResourcesProvider, PhoneFieldConfig, PhoneModalFieldConfig, PresignedDownloadUrlResponse, PresignedUrlRequest, PresignedUrlResponse, PreviewFileUrl, RatingConfig, RatingStar, RatingSubmitEvent, RowStyleConfig, RowVisibilityConfig, SearchResponse, SelectServerSideConfig, SidebarBackButton, SidebarComponentConfig, SidebarComponentEvents, SidebarConfig, SidebarCustomModalConfig, SidebarItem, SidebarResponsiveConfig, SidebarSubItem, SidebarTemplateContext, SkeletonConfig, SkeletonItemConfig, SortConfig, StepChangeEvent, StepClickEvent, StepItemConfig, StepsConfig, SwitchFieldConfig, SwitchModalFieldConfig, SwitchOption, TableActionConfig, TableFixedActionsConfig, TableSortConfig, TimeFieldConfig, TimeFieldValue, TimeOption, TimelineConfig, TimelineItem, UruguayanDocumentInput };
package/package.json CHANGED
@@ -1,13 +1,23 @@
1
1
  {
2
2
  "name": "@solcre-org/core-ui",
3
- "version": "2.15.42",
3
+ "version": "2.15.44",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
8
8
  "peerDependencies": {
9
9
  "@angular/common": "^20.0.0",
10
- "@angular/core": "^20.0.0"
10
+ "@angular/core": "^20.0.0",
11
+ "@azure/msal-browser": "^3.0.0 || ^4.0.0",
12
+ "@azure/msal-angular": "^3.0.0 || ^4.0.0"
13
+ },
14
+ "peerDependenciesMeta": {
15
+ "@azure/msal-browser": {
16
+ "optional": true
17
+ },
18
+ "@azure/msal-angular": {
19
+ "optional": true
20
+ }
11
21
  },
12
22
  "dependencies": {
13
23
  "tslib": "^2.3.0"