@nettyapps/ntybase 21.0.15 → 21.0.16
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,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nettyapps/ntybase",
|
|
3
|
-
"version": "21.0.
|
|
3
|
+
"version": "21.0.16",
|
|
4
|
+
"description": "This library provides foundational services and components for NettyApps Angular applications.",
|
|
4
5
|
"publishConfig": {
|
|
5
6
|
"access": "public"
|
|
6
7
|
},
|
|
7
8
|
"peerDependencies": {
|
|
8
|
-
"@angular/common": "
|
|
9
|
-
"@angular/core": "
|
|
9
|
+
"@angular/common": ">= 21.0.0",
|
|
10
|
+
"@angular/core": ">= 21.0.0"
|
|
10
11
|
},
|
|
11
12
|
"dependencies": {
|
|
12
13
|
"tslib": "^2.3.0"
|
|
@@ -272,6 +272,8 @@ declare abstract class NettyAgGridBase<T extends {
|
|
|
272
272
|
componantParameterType: i0.InputSignal<string>;
|
|
273
273
|
onElementSelect: i0.OutputEmitterRef<T[]>;
|
|
274
274
|
protected customFilters: i0.WritableSignal<boolean>;
|
|
275
|
+
protected isFilterValid: i0.WritableSignal<boolean>;
|
|
276
|
+
protected isFilterExpanded: i0.WritableSignal<boolean>;
|
|
275
277
|
protected authenticationList: Array<NettySecurity>;
|
|
276
278
|
protected accessRightsProcessed: i0.WritableSignal<boolean>;
|
|
277
279
|
allowAdd: i0.WritableSignal<boolean>;
|
|
@@ -351,6 +353,7 @@ declare abstract class NettyAgGridBase<T extends {
|
|
|
351
353
|
* - The update type doesn't match
|
|
352
354
|
*/
|
|
353
355
|
constructor();
|
|
356
|
+
protected onReverseIsFilterValid(): void;
|
|
354
357
|
/**
|
|
355
358
|
* Validates if the given value is equal to null,undefined or ''
|
|
356
359
|
* @param value
|