@dexteel/mesf-core 4.11.0 → 4.11.2

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.
@@ -4,6 +4,7 @@ export interface Asset {
4
4
  CanBeDefaultAsset: boolean;
5
5
  ParentAssetId: number | null;
6
6
  IsAsset: boolean;
7
+ IsLeaf: boolean | null;
7
8
  ParentAssetName?: string | null;
8
9
  IsBranch: boolean;
9
10
  }
@@ -4,8 +4,8 @@ export declare class TimeService {
4
4
  private constructor();
5
5
  static getInstance(): TimeService;
6
6
  setTimeZone(timeZone: string): void;
7
- toUTC(datetime: Date | string): string;
8
- toLocalServerTime(datetime: Date | string, format: string): string;
7
+ toUTC(datetime: Date | string, format: string): string;
8
+ toLocalServerTime(datetime: Date | string | null | undefined, format: string): string;
9
9
  }
10
- export declare const dxtToUTC: (datetime: Date | string) => string;
11
- export declare const dxtToLocalServerTime: (datetime: Date | string, format: string) => string;
10
+ export declare const dxtToUTC: (datetime: Date | string, format: string) => string;
11
+ export declare const dxtToLocalServerTime: (datetime: Date | string | null | undefined, format: string) => string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dexteel/mesf-core",
3
- "version": "4.11.0",
3
+ "version": "4.11.2",
4
4
  "author": "Dexteel Team",
5
5
  "module": "dist/index.esm.js",
6
6
  "typings": "dist/index.d.ts",
@@ -105,7 +105,8 @@
105
105
  "react-chartjs-2": "^5.2.0",
106
106
  "react-dnd": "^16.0.1",
107
107
  "string-to-color": "^2.2.2",
108
- "tsc": "^2.0.3"
108
+ "tsc": "^2.0.3",
109
+ "windows-iana": "^5.1.0"
109
110
  },
110
111
  "repository": {
111
112
  "type": "git",