@nettyapps/ntybase 21.0.35-beta.2 → 21.0.35-beta.3
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
|
@@ -74,15 +74,6 @@ declare abstract class NettyAppsBase implements OnDestroy {
|
|
|
74
74
|
static ɵcmp: i0.ɵɵComponentDeclaration<NettyAppsBase, "ntybase-netty-apps-base", never, {}, {}, never, never, true, never>;
|
|
75
75
|
}
|
|
76
76
|
|
|
77
|
-
interface NettyEntityInterface<T> {
|
|
78
|
-
getPK(): any;
|
|
79
|
-
setPK(pk: any): void;
|
|
80
|
-
compare(other: T): T;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
interface NettyEntityLogInterface<T> extends NettyEntityInterface<T> {
|
|
84
|
-
}
|
|
85
|
-
|
|
86
77
|
declare class CurrentUserPreference {
|
|
87
78
|
coid: any | null;
|
|
88
79
|
nettyUserPreferenceGUID: any | null;
|
|
@@ -310,7 +301,12 @@ declare class SysfunctionProxy {
|
|
|
310
301
|
|
|
311
302
|
type AgGridSelectionModeType = 'singleRow' | 'multiRow';
|
|
312
303
|
|
|
313
|
-
|
|
304
|
+
interface NettyEntityBaseInterface<T> {
|
|
305
|
+
getPK(): any;
|
|
306
|
+
setPK(pk: any): void;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
declare abstract class NettyAgGridBase<T extends NettyEntityBaseInterface<T>> extends NettyAppsBase {
|
|
314
310
|
protected FILTER_MODE_KEY: string;
|
|
315
311
|
protected myTheme: Theme<ag_grid_community.ThemeDefaultParams>;
|
|
316
312
|
readOnly: i0.WritableSignal<boolean>;
|
|
@@ -396,6 +392,10 @@ declare abstract class NettyAgGridBase<T extends NettyEntityLogInterface<T>> ext
|
|
|
396
392
|
static ɵcmp: i0.ɵɵComponentDeclaration<NettyAgGridBase<any>, "ntybase-ag-grid-base", never, { "popupFilterValid": { "alias": "popupFilterValid"; "required": false; "isSignal": true; }; "popupValid": { "alias": "popupValid"; "required": false; "isSignal": true; }; "isEmbedded": { "alias": "isEmbedded"; "required": false; "isSignal": true; }; "agGridSelectionMode": { "alias": "agGridSelectionMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
397
393
|
}
|
|
398
394
|
|
|
395
|
+
interface NettyEntityInterface<T> extends NettyEntityBaseInterface<T> {
|
|
396
|
+
compare(other: T): T;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
399
|
declare abstract class NettyAgGridListBase<T extends NettyEntityInterface<T>> extends NettyAgGridBase<T> implements OnInit {
|
|
400
400
|
componantParameterGUID: i0.InputSignal<any>;
|
|
401
401
|
componantParameterType: i0.InputSignal<string>;
|
|
@@ -454,6 +454,14 @@ declare abstract class NettyAgGridListBase<T extends NettyEntityInterface<T>> ex
|
|
|
454
454
|
static ɵcmp: i0.ɵɵComponentDeclaration<NettyAgGridListBase<any>, "ntybase-ag-grid-list-base", never, { "componantParameterGUID": { "alias": "componantParameterGUID"; "required": false; "isSignal": true; }; "componantParameterType": { "alias": "componantParameterType"; "required": false; "isSignal": true; }; "hasFilter": { "alias": "hasFilter"; "required": false; "isSignal": true; }; }, { "onElementSelect": "onElementSelect"; "selectedElement": "selectedElement"; }, never, never, true, never>;
|
|
455
455
|
}
|
|
456
456
|
|
|
457
|
+
interface NettyEntityLogInterface<T> extends NettyEntityBaseInterface<T> {
|
|
458
|
+
logGuid: any | null;
|
|
459
|
+
changingDate: Date | null;
|
|
460
|
+
changingUser: any | null;
|
|
461
|
+
ip: string | null;
|
|
462
|
+
chagingUserName: string | null;
|
|
463
|
+
}
|
|
464
|
+
|
|
457
465
|
declare abstract class NettyAgGridLogBase<T extends NettyEntityLogInterface<T>> extends NettyAgGridBase<T> implements OnInit {
|
|
458
466
|
protected nettyAppsProxy: NettyStandardLogProxy<T>;
|
|
459
467
|
/**
|