zek 17.3.61 → 17.3.63

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,8 +1,9 @@
1
1
  import { BooleanInput } from '../../components';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class ZekReadOnlyDirective {
4
- _readonly: boolean;
5
- readonly(v: BooleanInput): void;
4
+ private _readOnly;
5
+ get readonly(): boolean;
6
+ set readonly(v: BooleanInput);
6
7
  static ɵfac: i0.ɵɵFactoryDeclaration<ZekReadOnlyDirective, never>;
7
8
  static ɵdir: i0.ɵɵDirectiveDeclaration<ZekReadOnlyDirective, "[readonly],[readOnly]", never, { "readonly": { "alias": "readonly"; "required": false; }; }, {}, never, never, true, never>;
8
9
  }
@@ -1,13 +1,14 @@
1
1
  import { KeyPair, KeyPairEx, Tree } from "../models";
2
2
  export declare class ArrayHelper {
3
- static insert(value: any[], index: number, v: any): void;
3
+ static insert(array: any[], index: number, item: any): void;
4
+ static move(array: any[], fromIndex: number, toIndex: number): any[];
4
5
  static contains(value: any[], v: any): boolean;
5
- static isArray(arg: any): boolean;
6
- static distinct(source: any[]): any[];
6
+ static isArray(value: any): boolean;
7
+ static distinct(array: any[]): any[];
7
8
  static filterByKey(filterValue: any, key: string, array: any[]): any[];
8
- static flattenArray(value: any[]): any[];
9
+ static flattenArray(array: any[]): any[];
9
10
  private static getChildren;
10
- static treeToKeyPairArray(value: Tree[]): KeyPair<any, any>[];
11
+ static treeToKeyPairArray(array: Tree[]): KeyPair<any, any>[];
11
12
  private static getIndentChildren;
12
13
  private static enumToKeyPairBaseArray;
13
14
  static enumToKeyPairArray(value: any): KeyPair<number, string>[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zek",
3
- "version": "17.3.61",
3
+ "version": "17.3.63",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0"