@nettyapps/ntybase 21.1.39 → 21.1.41

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.1.39",
3
+ "version": "21.1.41",
4
4
  "description": "This library provides foundational services and components for NettyApps Angular applications.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -9,7 +9,7 @@ import { NettyStandardFilterProxy, EnvironmentProxy, NettyStandardProxy, NettySt
9
9
  import { I18nService } from '@nettyapps/ntyi18n';
10
10
  import { ActivatedRoute, Router, CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, CanDeactivate } from '@angular/router';
11
11
  import * as ag_grid_community from 'ag-grid-community';
12
- import { IFilterParams, IDoesFilterPassParams } from 'ag-grid-community';
12
+ import { IFilterParams, IDoesFilterPassParams, GetRowIdFunc } from 'ag-grid-community';
13
13
  import { HttpClient, HttpInterceptor, HttpRequest, HttpHandler, HttpEvent, HttpInterceptorFn } from '@angular/common/http';
14
14
  import { Theme, GridApi, GridOptions, StatusPanelDef, GridReadyEvent } from 'ag-grid-enterprise';
15
15
  import { NgForm, FormGroup } from '@angular/forms';
@@ -1199,5 +1199,22 @@ declare const toBoolean: (v: any) => boolean | null;
1199
1199
  declare const toUpperString: (v: any) => string | null;
1200
1200
  declare const toEnum: <T>(v: any, enumObj: any) => T | null;
1201
1201
 
1202
- export { AlertService, AuthenticationGuard, AuthenticationInterceptor, AuthenticationService, ButtonRenderer, CanDeactivateGuard, CheckboxRenderer, CommonService, ConfirmDialog, CredentialsService, CurrentUserPreference, ENVIRONMENT_CONFIG, EnvironmentInfo, EnvironmentInfoService, ErrorAlert, ExcelImportBase, ExcelParser, ExcelParserError, ForgotPassword, Guid, Login, LoginDto, MFACodeDto, MfaLogin, NettyAgGridBase, NettyAgGridListBase, NettyAgGridListFilterBase, NettyAgGridLogBase, NettyAgGridSaveBase, NettyAgGridService, NettyAppsBase, NettyAppsFilterBase, NettyBaseApp, NettyHelper, NettyImageService, NettyMenuService, NtyLoadingComponent, NtyLoadingInterceptor, NtyLoadingService, Ntybase, NtybaseModule, PageTitle, ParseLog, RangeDateTimeFilter, RangeNumberFilter, RangeStringFilter, UrlHelperService, ntyAuthenticationInterceptor, toBoolean, toDate, toEnum, toNumber, toUpperString };
1202
+ declare class ExcelLogViewer extends NettyAgGridListBase<ParseLog> implements OnInit {
1203
+ /** Component Constructor */
1204
+ constructor();
1205
+ /** Get the rowId */
1206
+ protected getRowId: GetRowIdFunc;
1207
+ /** Get the entity type for the component */
1208
+ protected getEntityType: () => string;
1209
+ pkFieldName(): string;
1210
+ protected loadData(): void;
1211
+ setParseData(data: ParseLog[]): void;
1212
+ /** Initialize Ag-Grid specific settings */
1213
+ initAgGrid(): void;
1214
+ popupClose(): void;
1215
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExcelLogViewer, never>;
1216
+ static ɵcmp: i0.ɵɵComponentDeclaration<ExcelLogViewer, "app-excel-log-viewer", never, {}, {}, never, never, true, never>;
1217
+ }
1218
+
1219
+ export { AlertService, AuthenticationGuard, AuthenticationInterceptor, AuthenticationService, ButtonRenderer, CanDeactivateGuard, CheckboxRenderer, CommonService, ConfirmDialog, CredentialsService, CurrentUserPreference, ENVIRONMENT_CONFIG, EnvironmentInfo, EnvironmentInfoService, ErrorAlert, ExcelImportBase, ExcelLogViewer, ExcelParser, ExcelParserError, ForgotPassword, Guid, Login, LoginDto, MFACodeDto, MfaLogin, NettyAgGridBase, NettyAgGridListBase, NettyAgGridListFilterBase, NettyAgGridLogBase, NettyAgGridSaveBase, NettyAgGridService, NettyAppsBase, NettyAppsFilterBase, NettyBaseApp, NettyHelper, NettyImageService, NettyMenuService, NtyLoadingComponent, NtyLoadingInterceptor, NtyLoadingService, Ntybase, NtybaseModule, PageTitle, ParseLog, RangeDateTimeFilter, RangeNumberFilter, RangeStringFilter, UrlHelperService, ntyAuthenticationInterceptor, toBoolean, toDate, toEnum, toNumber, toUpperString };
1203
1220
  export type { AgGridSelectionModeType, CanComponentDeactivate, ColumnMapping, ConverterFn, Credentials, EnvironmentConfig, ExcelParserOptions, ExcelSampleOptions, LoginContext, MFACodeContext, NettyEntityInterface, NettyEntityLogInterface, UserViewMode };