@osovitny/anatoly 3.17.3 → 3.17.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.
@@ -7,7 +7,14 @@ export declare const ApiUrl: string;
7
7
  export declare const ClientApps: any;
8
8
  export declare const AppName: string;
9
9
  export declare const AppSettings: any;
10
- export declare const DateFormats: {
11
- date: string;
12
- dateTime: string;
10
+ export declare const dateFormats: {
11
+ medium: string;
12
+ short: string;
13
+ };
14
+ export declare const timeFormats: {
15
+ medium: string;
16
+ short: string;
17
+ };
18
+ export declare const dateTimeFormats: {
19
+ medium: string;
13
20
  };
package/lib/core/is.d.ts CHANGED
@@ -10,8 +10,14 @@ export declare class is {
10
10
  */
11
11
  static dateValid(date: any): boolean;
12
12
  static dateInvalid(date: any): boolean;
13
+ static objectNullOrEmpty(obj: any): boolean;
13
14
  static string(value: any): boolean;
15
+ static emptyString(value: any): boolean;
16
+ static notEmptyString(value: any): boolean;
14
17
  static number(value: any): boolean;
15
18
  static boolean(value: any): boolean;
16
- static objectNullOrEmpty(obj: any): boolean;
19
+ static array(value: any): boolean;
20
+ static emptyArray(value: any): boolean;
21
+ static notEmptyArray(value: any): boolean;
22
+ static undefined(value: any): boolean;
17
23
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osovitny/anatoly",
3
- "version": "3.17.3",
3
+ "version": "3.17.4",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "17.1.2",
6
6
  "@angular/core": "17.1.2",