@nettyapps/ntybase 21.0.25 → 21.0.26

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.25",
3
+ "version": "21.0.26",
4
4
  "description": "This library provides foundational services and components for NettyApps Angular applications.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -327,6 +327,7 @@ declare abstract class NettyAgGridBase<T extends {
327
327
  columnDefs: i0.WritableSignal<any>;
328
328
  userColumnDefs: i0.WritableSignal<any>;
329
329
  groupMembersColumnDefs: i0.WritableSignal<any>;
330
+ protected gridColumnsVisible: i0.WritableSignal<boolean>;
330
331
  frameworkComponents: any;
331
332
  selectedRows: i0.WritableSignal<T[]>;
332
333
  isSingleRowSelected: i0.Signal<boolean>;
@@ -413,6 +414,11 @@ declare abstract class NettyAgGridBase<T extends {
413
414
  protected selectedData?(): void;
414
415
  protected setFilter(): void;
415
416
  protected popupClose(): void;
417
+ onShowHideColumns(): void;
418
+ showHideColumnsAsync(): void;
419
+ showHideColumns(): void;
420
+ showHideEmbeddedColumnsAsync(): void;
421
+ showHideEmbeddedColumns(): void;
416
422
  static ɵfac: i0.ɵɵFactoryDeclaration<NettyAgGridBase<any>, never>;
417
423
  static ɵcmp: i0.ɵɵComponentDeclaration<NettyAgGridBase<any>, "ntybase-ag-grid-base", never, { "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "popupFilterValid": { "alias": "popupFilterValid"; "required": false; "isSignal": true; }; "popupValid": { "alias": "popupValid"; "required": false; "isSignal": true; }; "isEmbedded": { "alias": "isEmbedded"; "required": false; "isSignal": true; }; "componantParameterGUID": { "alias": "componantParameterGUID"; "required": false; "isSignal": true; }; "componantParameterType": { "alias": "componantParameterType"; "required": false; "isSignal": true; }; }, { "onElementSelect": "onElementSelect"; "selectedElement": "selectedElement"; }, never, never, true, never>;
418
424
  }
@@ -893,6 +899,7 @@ interface EnvironmentConfig {
893
899
  application: string;
894
900
  };
895
901
  }
902
+
896
903
  declare const ENVIRONMENT_CONFIG: InjectionToken<EnvironmentConfig>;
897
904
  declare class EnvironmentInfoService {
898
905
  private config;
@@ -927,6 +934,24 @@ declare class EnvironmentInfo {
927
934
  static ɵcmp: i0.ɵɵComponentDeclaration<EnvironmentInfo, "ntybase-environment-info", never, { "showNettyInfo": { "alias": "showNettyInfo"; "required": false; }; }, {}, never, never, true, never>;
928
935
  }
929
936
 
937
+ declare const NETTY_APP_ENVIRONMENT: InjectionToken<any>;
938
+ declare class NtyEnvironmentService {
939
+ private defaultEnv;
940
+ constructor(defaultEnv: any);
941
+ loadEnvironment(): Promise<any>;
942
+ private loadEnvScript;
943
+ getEnvironment(): any;
944
+ static ɵfac: i0.ɵɵFactoryDeclaration<NtyEnvironmentService, never>;
945
+ static ɵprov: i0.ɵɵInjectableDeclaration<NtyEnvironmentService>;
946
+ }
947
+
948
+ declare function ntyEnvironmentConfigFactory(envService: NtyEnvironmentService): EnvironmentConfig;
949
+
950
+ interface IEnvironmentLoader {
951
+ loadEnvironment(): Promise<EnvironmentConfig>;
952
+ }
953
+ declare function ntyInitializeEnvironment(envLoader: IEnvironmentLoader): () => Promise<EnvironmentConfig>;
954
+
930
955
  declare const NtyLoadingInterceptor: HttpInterceptorFn;
931
956
 
932
957
  declare class NettyMenuService {
@@ -941,5 +966,5 @@ declare class NettyMenuService {
941
966
  static ɵprov: i0.ɵɵInjectableDeclaration<NettyMenuService>;
942
967
  }
943
968
 
944
- export { AlertService, AuthenticationGuard, AuthenticationInterceptor, AuthenticationService, ButtonRenderer, CanDeactivateGuard, CheckboxRenderer, CommonService, ConfirmDialog, CredentialsService, CurrentUserPreference, ENVIRONMENT_CONFIG, EnvironmentInfo, EnvironmentInfoService, ExcelImportBase, ForgotPassword, Login, LoginDto, MFACodeDto, MfaLogin, NettyAgGridBase, NettyAgGridSaveBase, NettyAgGridService, NettyAppsBase, NettyBaseApp, NettyHelper, NettyImageService, NettyMenuService, NtyLoadingInterceptor, Ntybase, NtybaseModule, RangeDateTimeFilter, RangeNumberFilter, RangeStringFilter, UrlHelperService, ntyAuthenticationInterceptor };
945
- export type { CanComponentDeactivate, Credentials, EnvironmentConfig, LoginContext, MFACodeContext, UserViewMode };
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 };