@nettyapps/ntyui 21.0.14 → 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,16 +1,16 @@
1
1
  {
2
2
  "name": "@nettyapps/ntyui",
3
- "version": "21.0.14",
3
+ "version": "21.0.16",
4
4
  "description": "This library contains the common UI components for the netty projects. This components should not have any dependencies out side of this library. The ntyui component library provides modern and reusable UI components for Angular applications. Developed with Material Design principles in mind, this library helps your application maintain a consistent and aesthetic look.",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
8
8
  "peerDependencies": {
9
- "@angular/common": ">= 21.0.0",
10
- "@angular/core": ">= 21.0.0",
11
- "@angular/material": ">= 21.0.0",
12
- "@angular/cdk": ">= 21.0.0",
13
- "@nettyapps/ntycontract": ">= 21.0.3"
9
+ "@angular/common": ">= 21.1.2",
10
+ "@angular/core": ">= 21.1.2",
11
+ "@angular/material": ">= 21.1.2",
12
+ "@angular/cdk": ">= 21.1.2",
13
+ "@nettyapps/ntycontract": ">= 21.0.9"
14
14
  },
15
15
  "dependencies": {
16
16
  "tslib": "^2.3.0"
@@ -217,9 +217,13 @@ declare class NettyUIFilterButton extends UiBase implements OnDestroy {
217
217
  }
218
218
 
219
219
  declare class NettyUINumberInput extends UiBase {
220
+ min: _angular_core.InputSignalWithTransform<number | null, unknown>;
221
+ max: _angular_core.InputSignalWithTransform<number | null, unknown>;
222
+ protected updateValidators(): void;
220
223
  calculateExpression(event?: Event): void;
224
+ getErrorMessage(): string | undefined;
221
225
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<NettyUINumberInput, never>;
222
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<NettyUINumberInput, "ntyui-number-input", never, {}, {}, never, never, true, never>;
226
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<NettyUINumberInput, "ntyui-number-input", never, { "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
223
227
  }
224
228
 
225
229
  declare class NettyUISearchInput extends UiBase {