@nettyapps/ntybase 21.1.9 → 21.1.12
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, InjectionToken, Signal } from '@angular/core';
|
|
2
|
+
import { OnDestroy, OnInit, DoCheck, InjectionToken, Signal, WritableSignal } from '@angular/core';
|
|
3
3
|
import * as ag_grid_community from 'ag-grid-community';
|
|
4
4
|
import { IFilterParams, IDoesFilterPassParams } from 'ag-grid-community';
|
|
5
5
|
import { EnvironmentProxy, NettyStandardProxy, NettyStandardLogProxy, NettyStandardFilterProxy } from '@nettyapps/ntycontract';
|
|
@@ -412,10 +412,7 @@ declare abstract class NettyAgGridBase<T extends NettyEntityBaseInterface<T>> ex
|
|
|
412
412
|
setAgGridTranslations(): void;
|
|
413
413
|
initAgGrid_extension(): void;
|
|
414
414
|
onShowHideColumns(): void;
|
|
415
|
-
|
|
416
|
-
showHideColumns(): void;
|
|
417
|
-
showHideEmbeddedColumnsAsync(): void;
|
|
418
|
-
showHideEmbeddedColumns(): void;
|
|
415
|
+
isHidden(isEmbeddedHide: boolean, isVisibleHide: boolean): boolean;
|
|
419
416
|
logInputs(message: string): void;
|
|
420
417
|
logAuthentication(message: string): void;
|
|
421
418
|
static ɵfac: i0.ɵɵFactoryDeclaration<NettyAgGridBase<any>, never>;
|
|
@@ -1053,6 +1050,15 @@ declare class NtyLoadingComponent {
|
|
|
1053
1050
|
static ɵcmp: i0.ɵɵComponentDeclaration<NtyLoadingComponent, "app-nty-loading", never, {}, {}, never, never, true, never>;
|
|
1054
1051
|
}
|
|
1055
1052
|
|
|
1053
|
+
declare class NtyLoadingService {
|
|
1054
|
+
private requestCount;
|
|
1055
|
+
isLoading: WritableSignal<boolean>;
|
|
1056
|
+
show(): void;
|
|
1057
|
+
hide(): void;
|
|
1058
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NtyLoadingService, never>;
|
|
1059
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<NtyLoadingService>;
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1056
1062
|
declare class NettyMenuService {
|
|
1057
1063
|
private http;
|
|
1058
1064
|
private environmentProxy;
|
|
@@ -1086,5 +1092,5 @@ declare abstract class NettyAppsFilterBase<Trecord, Tfilter> extends NettyAppsBa
|
|
|
1086
1092
|
static ɵcmp: i0.ɵɵComponentDeclaration<NettyAppsFilterBase<any, any>, "ntybase-netty-apps-base", never, { "isFilterExpanded": { "alias": "isFilterExpanded"; "required": false; "isSignal": true; }; "refresh": { "alias": "refresh"; "required": false; "isSignal": true; }; "fileName": { "alias": "fileName"; "required": false; "isSignal": true; }; }, { "isFilterExpanded": "isFilterExpandedChange"; "filteredRecords": "filteredRecords"; "filterSelectionChanged": "filterSelectionChanged"; }, never, never, true, never>;
|
|
1087
1093
|
}
|
|
1088
1094
|
|
|
1089
|
-
export { AlertService, AuthenticationGuard, AuthenticationInterceptor, AuthenticationService, ButtonRenderer, CanDeactivateGuard, CheckboxRenderer, CommonService, ConfirmDialog, CredentialsService, CurrentUserPreference, ENVIRONMENT_CONFIG, EnvironmentInfo, EnvironmentInfoService, ExcelImportBase, ForgotPassword, Login, LoginDto, MFACodeDto, MfaLogin, NettyAgGridBase, NettyAgGridListBase, NettyAgGridListFilterBase, NettyAgGridLogBase, NettyAgGridSaveBase, NettyAgGridService, NettyAppsBase, NettyAppsFilterBase, NettyBaseApp, NettyHelper, NettyImageService, NettyMenuService, NtyLoadingComponent, NtyLoadingInterceptor, Ntybase, NtybaseModule, PageTitle, RangeDateTimeFilter, RangeNumberFilter, RangeStringFilter, UrlHelperService, ntyAuthenticationInterceptor };
|
|
1095
|
+
export { AlertService, AuthenticationGuard, AuthenticationInterceptor, AuthenticationService, ButtonRenderer, CanDeactivateGuard, CheckboxRenderer, CommonService, ConfirmDialog, CredentialsService, CurrentUserPreference, ENVIRONMENT_CONFIG, EnvironmentInfo, EnvironmentInfoService, ExcelImportBase, ForgotPassword, Login, LoginDto, MFACodeDto, MfaLogin, NettyAgGridBase, NettyAgGridListBase, NettyAgGridListFilterBase, NettyAgGridLogBase, NettyAgGridSaveBase, NettyAgGridService, NettyAppsBase, NettyAppsFilterBase, NettyBaseApp, NettyHelper, NettyImageService, NettyMenuService, NtyLoadingComponent, NtyLoadingInterceptor, NtyLoadingService, Ntybase, NtybaseModule, PageTitle, RangeDateTimeFilter, RangeNumberFilter, RangeStringFilter, UrlHelperService, ntyAuthenticationInterceptor };
|
|
1090
1096
|
export type { AgGridSelectionModeType, CanComponentDeactivate, Credentials, EnvironmentConfig, LoginContext, MFACodeContext, NettyEntityInterface, NettyEntityLogInterface, UserViewMode };
|