devexpress-gantt
Advanced tools
Comparing version 4.1.54 to 4.1.55
/*! | ||
* DevExpress Gantt (dx-gantt.min) | ||
* Version: 4.1.54 | ||
* Build date: Fri Apr 26 2024 | ||
* Version: 4.1.55 | ||
* Build date: Tue May 14 2024 | ||
* | ||
@@ -6,0 +6,0 @@ * Copyright (c) 2012 - 2024 Developer Express Inc. ALL RIGHTS RESERVED |
{ | ||
"name": "devexpress-gantt", | ||
"version": "4.1.54", | ||
"version": "4.1.55", | ||
"description": "DevExpress Gantt Control", | ||
@@ -5,0 +5,0 @@ "main": "dist/dx-gantt.min.js", |
@@ -79,2 +79,6 @@ import { BarManager } from "../BarManager/BarManager"; | ||
getTaskTreeLine(key: string): Array<string>; | ||
isInFullScreenMode(): boolean; | ||
setFullScreenMode(): void; | ||
setNormalScreenMode(): void; | ||
} |
@@ -490,2 +490,3 @@ import { BarManager } from "../BarManager/BarManager"; | ||
cleanMarkup(): void { | ||
this.setNormalScreenMode(); | ||
this.renderHelper.taskAreaManagerDetachEvents(); | ||
@@ -702,2 +703,13 @@ this.taskEditController.detachEvents(); | ||
} | ||
isInFullScreenMode(): boolean { | ||
return !!this.fullScreenModeHelper?.isInFullScreenMode; | ||
} | ||
setFullScreenMode(): void { | ||
if(!this.isInFullScreenMode()) | ||
this.fullScreenModeHelper.toggle(); | ||
} | ||
setNormalScreenMode(): void { | ||
if(this.isInFullScreenMode()) | ||
this.fullScreenModeHelper.toggle(); | ||
} | ||
@@ -704,0 +716,0 @@ |
{ | ||
"name": "devexpress-gantt", | ||
"version": "4.1.54", | ||
"version": "4.1.55", | ||
"description": "DevExpress Gantt Control", | ||
@@ -5,0 +5,0 @@ "main": "dist/dx-gantt.min.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2202093
34890