@osovitny/anatoly 2.15.2 → 2.15.4

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,9 +1,10 @@
1
1
  export declare class Utils {
2
+ static idExistsInQS(): boolean;
2
3
  static getValueByNameInQS(name: any): string;
3
4
  static getValueByName(url: any, name: any): string;
4
5
  static copyToClipBoard(event: any, val: string): void;
5
6
  static downloadFile(name: string, url: string): void;
6
7
  static downloadBlobFile(value: Blob, fileName: string): void;
7
8
  static slugify(text: string, prefix?: string, postfix?: string): string;
8
- generateRandomInteger: (start: number, end: number) => number;
9
+ static generateRandom(start: number, end: number): number;
9
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osovitny/anatoly",
3
- "version": "2.15.2",
3
+ "version": "2.15.4",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "15.1.1",
6
6
  "@angular/core": "15.1.1"
@@ -27,5 +27,7 @@
27
27
  "default": "./fesm2020/osovitny-anatoly.mjs"
28
28
  }
29
29
  },
30
- "sideEffects": false
30
+ "sideEffects": false,
31
+ "scripts": {
32
+ }
31
33
  }