zek 16.1.18 → 16.1.20

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.
@@ -7,8 +7,8 @@ export declare class KeyPairEx<TKey = any, TValue = any> extends KeyPair<TKey, T
7
7
  [key: string]: any;
8
8
  }
9
9
  export declare class KeyPairChecked<TKey = any, TValue = any> extends KeyPair<TKey, TValue> {
10
- checked?: boolean;
10
+ checked?: boolean | null;
11
11
  }
12
12
  export declare class KeyPairRequired<TKey = any, TValue = any> extends KeyPair<TKey, TValue> {
13
- required?: boolean;
13
+ required?: boolean | null;
14
14
  }
@@ -2,6 +2,7 @@ import { KeyPair, KeyPairEx, Tree } from "../models";
2
2
  export declare class ArrayHelper {
3
3
  static insert(value: any[], index: number, v: any): void;
4
4
  static contains(value: any[], v: any): boolean;
5
+ static isArray(arg: any): boolean;
5
6
  static distinct(source: any[]): any[];
6
7
  static filterByKey(filterValue: any, key: string, array: any[]): any[];
7
8
  static flattenArray(value: any[]): any[];
@@ -6,6 +6,7 @@ export declare class DateHelper {
6
6
  static toISODateString(value: Date | string): string | null;
7
7
  static addTime(value: Date, time: string | undefined | null): Date;
8
8
  static addYears(v: Date, years: number): Date;
9
+ static addMonths(v: Date, months: number): Date;
9
10
  static addDays(v: Date, days: number): Date;
10
11
  static addHours(v: Date, hours: number): Date;
11
12
  static addMinutes(v: Date, minutes: number): Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zek",
3
- "version": "16.1.18",
3
+ "version": "16.1.20",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.1.0",
6
6
  "@angular/core": "^16.1.0"