basesite-shared-grid-lib 15.10.298 → 15.10.301
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.
|
Binary file
|
|
@@ -1900,7 +1900,7 @@ class ColumnValueFormatter {
|
|
|
1900
1900
|
var dateWrapper = new Date(params.value);
|
|
1901
1901
|
let isValidDate = !isNaN(dateWrapper.getDate());
|
|
1902
1902
|
if (isValidDate && colType == 'date') {
|
|
1903
|
-
return this.datePipe.transform(params.value, 'MM-dd
|
|
1903
|
+
return this.datePipe.transform(params.value, 'yyyy-MM-dd');
|
|
1904
1904
|
}
|
|
1905
1905
|
else {
|
|
1906
1906
|
return params.value;
|
|
@@ -1943,8 +1943,8 @@ class GridLibraryComponent {
|
|
|
1943
1943
|
this.rowDataHidden = [];
|
|
1944
1944
|
this.exportColumnsList = [];
|
|
1945
1945
|
this.gridColumns = [];
|
|
1946
|
-
this.tooltipShowDelay =
|
|
1947
|
-
this.tooltipHideDelay =
|
|
1946
|
+
this.tooltipShowDelay = 500;
|
|
1947
|
+
this.tooltipHideDelay = 4000;
|
|
1948
1948
|
this.rowModelType = 'clientSide';
|
|
1949
1949
|
this._Design_Manager = 'Design Manager';
|
|
1950
1950
|
this._Integration_Lead = 'Integration Lead';
|