@kms-ngx-ui/presentational 18.3.4 → 18.5.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.
@@ -1,13 +1,14 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./integer-currency.pipe";
3
3
  import * as i2 from "./safe-html.pipe";
4
- import * as i3 from "./safe-url.pipe";
5
- import * as i4 from "./trim.pipe";
6
- import * as i5 from "./safe-resource-url.pipe";
7
- import * as i6 from "./typeof.pipe";
8
- import * as i7 from "@angular/common";
4
+ import * as i3 from "./sanitaze-null.pipe";
5
+ import * as i4 from "./safe-url.pipe";
6
+ import * as i5 from "./trim.pipe";
7
+ import * as i6 from "./safe-resource-url.pipe";
8
+ import * as i7 from "./typeof.pipe";
9
+ import * as i8 from "@angular/common";
9
10
  export declare class CustomPipesModule {
10
11
  static ɵfac: i0.ɵɵFactoryDeclaration<CustomPipesModule, never>;
11
- static ɵmod: i0.ɵɵNgModuleDeclaration<CustomPipesModule, [typeof i1.IntegerCurrency, typeof i2.SafeHtmlPipe, typeof i3.SafeUrlPipe, typeof i4.TrimPipe, typeof i5.SafeResourceUrlPipe, typeof i6.TypeofPipe], [typeof i7.CommonModule], [typeof i1.IntegerCurrency, typeof i2.SafeHtmlPipe, typeof i3.SafeUrlPipe, typeof i4.TrimPipe, typeof i5.SafeResourceUrlPipe, typeof i6.TypeofPipe]>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CustomPipesModule, [typeof i1.IntegerCurrency, typeof i2.SafeHtmlPipe, typeof i3.SanitizeNullPipe, typeof i4.SafeUrlPipe, typeof i5.TrimPipe, typeof i6.SafeResourceUrlPipe, typeof i7.TypeofPipe], [typeof i8.CommonModule], [typeof i1.IntegerCurrency, typeof i2.SafeHtmlPipe, typeof i3.SanitizeNullPipe, typeof i4.SafeUrlPipe, typeof i5.TrimPipe, typeof i6.SafeResourceUrlPipe, typeof i7.TypeofPipe]>;
12
13
  static ɵinj: i0.ɵɵInjectorDeclaration<CustomPipesModule>;
13
14
  }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class SanitizeNullPipe implements PipeTransform {
4
+ transform(value: any): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<SanitizeNullPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<SanitizeNullPipe, "sanitizeNull", false>;
7
+ }
@@ -6,6 +6,7 @@ export declare class TimeInputComponent implements OnInit, OnChanges, ControlVal
6
6
  label: string;
7
7
  value: string;
8
8
  interval: number;
9
+ allowEmpty: boolean;
9
10
  IconSizePx: typeof IconSizePx;
10
11
  _value: WritableSignal<string>;
11
12
  private options;
@@ -24,5 +25,5 @@ export declare class TimeInputComponent implements OnInit, OnChanges, ControlVal
24
25
  invalid: boolean;
25
26
  };
26
27
  static ɵfac: i0.ɵɵFactoryDeclaration<TimeInputComponent, never>;
27
- static ɵcmp: i0.ɵɵComponentDeclaration<TimeInputComponent, "kms-time-input", never, { "label": { "alias": "label"; "required": false; }; "value": { "alias": "value"; "required": false; }; "interval": { "alias": "interval"; "required": false; }; }, {}, never, never, false, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<TimeInputComponent, "kms-time-input", never, { "label": { "alias": "label"; "required": false; }; "value": { "alias": "value"; "required": false; }; "interval": { "alias": "interval"; "required": false; }; "allowEmpty": { "alias": "allowEmpty"; "required": false; }; }, {}, never, never, false, never>;
28
29
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kms-ngx-ui/presentational",
3
- "version": "18.3.4",
3
+ "version": "18.5.0",
4
4
  "peerDependencies": {
5
5
  "@angular-slider/ngx-slider": "18.0.0",
6
6
  "@angular/cdk": "~18.2.14",
package/public-api.d.ts CHANGED
@@ -45,6 +45,7 @@ export * from './lib/pipes/integer-currency.pipe';
45
45
  export * from './lib/pipes/safe-html.pipe';
46
46
  export * from './lib/pipes/safe-resource-url.pipe';
47
47
  export * from './lib/pipes/safe-url.pipe';
48
+ export * from './lib/pipes/sanitaze-null.pipe';
48
49
  export * from './lib/pipes/trim.pipe';
49
50
  export * from './lib/pipes/typeof.pipe';
50
51
  export * from './lib/parent-components/form.component';