ngx-deebodata 0.0.9 → 0.1.0
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.
|
@@ -1895,7 +1895,7 @@ class DataCellComponent {
|
|
|
1895
1895
|
this.execFreeEdit();
|
|
1896
1896
|
}
|
|
1897
1897
|
checkValEditOpts(event) {
|
|
1898
|
-
event && event.preventDefault()
|
|
1898
|
+
event && event.preventDefault();
|
|
1899
1899
|
const opt = document.getElementsByClassName("edit-input-opt")[0];
|
|
1900
1900
|
const btn = opt?.firstElementChild;
|
|
1901
1901
|
if (opt && btn) {
|
|
@@ -6414,11 +6414,11 @@ class NgxDeebodata {
|
|
|
6414
6414
|
}
|
|
6415
6415
|
if (co2) {
|
|
6416
6416
|
this.dataTableService.themeColor2 = co2;
|
|
6417
|
-
rule2 = ".col-header, .data-table-footer, .btn-fil-comp{background-color: " + co2 + " !important}";
|
|
6417
|
+
rule2 = ".col-header, .data-table-footer, .btn-fil-comp, .skip-to-options div{background-color: " + co2 + " !important}";
|
|
6418
6418
|
const tblbxSh = "0 -1px 3px 1px ";
|
|
6419
6419
|
const tblFbxSh = "0 1px 3px -3px ";
|
|
6420
6420
|
if (this.dataTableService.mainDataLen) {
|
|
6421
|
-
rule2 = ".col-header, .btn-fil-comp{background-color: " + co2 + " !important}";
|
|
6421
|
+
rule2 = ".col-header, .btn-fil-comp, .skip-to-options div{background-color: " + co2 + " !important}";
|
|
6422
6422
|
rule3 = ".data-table{ box-shadow: " + tblbxSh + co2 + "; -webkit-box-shadow: " + tblbxSh + co2 + "; -moz-box-shadow: " + tblbxSh + co2 + "}";
|
|
6423
6423
|
rule6 = ".data-table-footer{background-color: " + co2 + "; box-shadow: " + tblFbxSh + co2 + "; -webkit-box-shadow: " + tblFbxSh + co2 + "; -moz-box-shadow: " + tblFbxSh + co2 + "}";
|
|
6424
6424
|
}
|