zek 17.3.68 → 17.3.69

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,6 +1,18 @@
1
1
  import { KeyPair, KeyPairEx, Tree } from "../models";
2
2
  export declare class ArrayHelper {
3
3
  static insert(array: any[], index: number, item: any): void;
4
+ /**
5
+ * Remove item from array
6
+ * @param array
7
+ * @param item item to remove
8
+ */
9
+ static remove(array: any[], item: any): void;
10
+ /**
11
+ * Remove all items from array
12
+ * @param array
13
+ * @param item item to remove
14
+ */
15
+ static removeAll(array: any[], item: any): void;
4
16
  static move(array: any[], fromIndex: number, toIndex: number): any[];
5
17
  static contains(value: any[], v: any): boolean;
6
18
  static isArray(value: any): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zek",
3
- "version": "17.3.68",
3
+ "version": "17.3.69",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0"