@nettyapps/ntybase 21.0.26 → 21.0.27

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nettyapps/ntybase",
3
- "version": "21.0.26",
3
+ "version": "21.0.27",
4
4
  "description": "This library provides foundational services and components for NettyApps Angular applications.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { OnDestroy, OnInit, DoCheck, SimpleChanges, InjectionToken } from '@angular/core';
2
+ import { OnDestroy, OnInit, DoCheck, SimpleChanges, InjectionToken, EnvironmentProviders } from '@angular/core';
3
3
  import { Observable, Subject } from 'rxjs';
4
4
  import { Theme, GridApi, GridOptions, StatusPanelDef, GridReadyEvent, IFilterParams, IDoesFilterPassParams } from 'ag-grid-community';
5
5
  import { MatDialog, MatDialogRef } from '@angular/material/dialog';
@@ -952,6 +952,17 @@ interface IEnvironmentLoader {
952
952
  }
953
953
  declare function ntyInitializeEnvironment(envLoader: IEnvironmentLoader): () => Promise<EnvironmentConfig>;
954
954
 
955
+ /**
956
+ * Uygulamanın environment altyapısını kurar.
957
+ *
958
+ * @usage
959
+ * providers: [
960
+ * provideNettyEnvironment()
961
+ * // Not: { provide: NETTY_APP_ENVIRONMENT, useValue: environment } dışarıdan verilmelidir.
962
+ * ]
963
+ */
964
+ declare function provideNtyEnvironment(): EnvironmentProviders;
965
+
955
966
  declare const NtyLoadingInterceptor: HttpInterceptorFn;
956
967
 
957
968
  declare class NettyMenuService {
@@ -966,5 +977,5 @@ declare class NettyMenuService {
966
977
  static ɵprov: i0.ɵɵInjectableDeclaration<NettyMenuService>;
967
978
  }
968
979
 
969
- export { AlertService, AuthenticationGuard, AuthenticationInterceptor, AuthenticationService, ButtonRenderer, CanDeactivateGuard, CheckboxRenderer, CommonService, ConfirmDialog, CredentialsService, CurrentUserPreference, ENVIRONMENT_CONFIG, EnvironmentInfo, EnvironmentInfoService, ExcelImportBase, ForgotPassword, Login, LoginDto, MFACodeDto, MfaLogin, NETTY_APP_ENVIRONMENT, NettyAgGridBase, NettyAgGridSaveBase, NettyAgGridService, NettyAppsBase, NettyBaseApp, NettyHelper, NettyImageService, NettyMenuService, NtyEnvironmentService, NtyLoadingInterceptor, Ntybase, NtybaseModule, RangeDateTimeFilter, RangeNumberFilter, RangeStringFilter, UrlHelperService, ntyAuthenticationInterceptor, ntyEnvironmentConfigFactory, ntyInitializeEnvironment };
970
- export type { CanComponentDeactivate, Credentials, IEnvironmentLoader, LoginContext, MFACodeContext, UserViewMode };
980
+ export { AlertService, AuthenticationGuard, AuthenticationInterceptor, AuthenticationService, ButtonRenderer, CanDeactivateGuard, CheckboxRenderer, CommonService, ConfirmDialog, CredentialsService, CurrentUserPreference, ENVIRONMENT_CONFIG, EnvironmentInfo, EnvironmentInfoService, ExcelImportBase, ForgotPassword, Login, LoginDto, MFACodeDto, MfaLogin, NETTY_APP_ENVIRONMENT, NettyAgGridBase, NettyAgGridSaveBase, NettyAgGridService, NettyAppsBase, NettyBaseApp, NettyHelper, NettyImageService, NettyMenuService, NtyEnvironmentService, NtyLoadingInterceptor, Ntybase, NtybaseModule, RangeDateTimeFilter, RangeNumberFilter, RangeStringFilter, UrlHelperService, ntyAuthenticationInterceptor, ntyEnvironmentConfigFactory, ntyInitializeEnvironment, provideNtyEnvironment };
981
+ export type { CanComponentDeactivate, Credentials, EnvironmentConfig, IEnvironmentLoader, LoginContext, MFACodeContext, UserViewMode };