@nettyapps/ntybase 21.0.35 → 21.1.0
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,20 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nettyapps/ntybase",
|
|
3
|
-
"version": "21.0
|
|
3
|
+
"version": "21.1.0",
|
|
4
4
|
"description": "This library provides foundational services and components for NettyApps Angular applications.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
8
|
"peerDependencies": {
|
|
9
|
-
"@angular/common": ">= 21.
|
|
10
|
-
"@angular/core": ">= 21.
|
|
9
|
+
"@angular/common": ">= 21.1.2",
|
|
10
|
+
"@angular/core": ">= 21.1.2",
|
|
11
11
|
"buffer": ">= 6.0.3",
|
|
12
12
|
"xlsx": ">= 0.18.5",
|
|
13
13
|
"async-mutex": ">= 0.5.0",
|
|
14
14
|
"ag-grid-angular": ">= 35.0.0",
|
|
15
15
|
"ag-grid-enterprise": ">= 35.0.0",
|
|
16
|
-
"@nettyapps/ntycontract": ">= 21.0
|
|
17
|
-
"@nettyapps/ntyui": ">= 21.0.15"
|
|
16
|
+
"@nettyapps/ntycontract": ">= 21.1.0"
|
|
18
17
|
},
|
|
19
18
|
"dependencies": {
|
|
20
19
|
"tslib": "^2.3.0"
|
|
@@ -25,8 +24,7 @@
|
|
|
25
24
|
"async-mutex",
|
|
26
25
|
"ag-grid-angular",
|
|
27
26
|
"ag-grid-enterprise",
|
|
28
|
-
"@nettyapps/ntycontract"
|
|
29
|
-
"@nettyapps/ntyui"
|
|
27
|
+
"@nettyapps/ntycontract"
|
|
30
28
|
],
|
|
31
29
|
"sideEffects": false,
|
|
32
30
|
"exports": {
|
|
@@ -367,6 +367,7 @@ declare abstract class NettyAgGridBase<T extends NettyEntityBaseInterface<T>> ex
|
|
|
367
367
|
*/
|
|
368
368
|
private getStoredFilterMode;
|
|
369
369
|
agGridSelectionMode: i0.InputSignal<AgGridSelectionModeType>;
|
|
370
|
+
protected _agGridSelectionMode: i0.Signal<"singleRow" | "multiRow">;
|
|
370
371
|
theme: Theme;
|
|
371
372
|
protected gridApi: GridApi;
|
|
372
373
|
protected userGridApi: GridApi;
|
|
@@ -464,6 +465,7 @@ declare abstract class NettyAgGridListFilterBase<T extends NettyEntityInterface<
|
|
|
464
465
|
protected isFilterExpanded: i0.WritableSignal<boolean>;
|
|
465
466
|
protected filterRefreshTrigger: i0.WritableSignal<number>;
|
|
466
467
|
constructor();
|
|
468
|
+
ngOnInit(): Promise<void>;
|
|
467
469
|
protected loadData(): void;
|
|
468
470
|
refreshData(): Promise<void>;
|
|
469
471
|
/**
|
|
@@ -481,7 +483,7 @@ interface NettyEntityLogInterface<T> extends NettyEntityBaseInterface<T> {
|
|
|
481
483
|
changingDate: Date | null;
|
|
482
484
|
changingUser: any | null;
|
|
483
485
|
ip: string | null;
|
|
484
|
-
|
|
486
|
+
changingUserName: string | null;
|
|
485
487
|
}
|
|
486
488
|
|
|
487
489
|
declare abstract class NettyAgGridLogBase<T extends NettyEntityLogInterface<T>> extends NettyAgGridBase<T> implements OnInit {
|