@nettyapps/ntybase 21.0.25 → 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,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';
|
|
@@ -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,35 @@ 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
|
+
|
|
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
|
+
|
|
930
966
|
declare const NtyLoadingInterceptor: HttpInterceptorFn;
|
|
931
967
|
|
|
932
968
|
declare class NettyMenuService {
|
|
@@ -941,5 +977,5 @@ declare class NettyMenuService {
|
|
|
941
977
|
static ɵprov: i0.ɵɵInjectableDeclaration<NettyMenuService>;
|
|
942
978
|
}
|
|
943
979
|
|
|
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 };
|
|
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 };
|