logitude-dashboard-library 3.2.4 → 3.2.5
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.
- package/dist/assets/styles/dl-dashboard.scss +28 -5
- package/dist/features/Dashboard/ChartsComponents/CustomCharts/CustomChart.d.ts +1 -0
- package/dist/index.js +120 -10
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +120 -10
- package/dist/index.modern.js.map +1 -1
- package/dist/styles/dl-dashboard.scss +28 -5
- package/dist/types/widget.d.ts +4 -0
- package/package.json +1 -1
|
@@ -388,12 +388,25 @@ $dark-grey: #717585;
|
|
|
388
388
|
align-items: flex-start;
|
|
389
389
|
}
|
|
390
390
|
|
|
391
|
-
.table-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
391
|
+
.table-hint-container {
|
|
392
|
+
display: flex;
|
|
393
|
+
align-items: center;
|
|
394
|
+
justify-content: flex-start;
|
|
395
|
+
|
|
396
|
+
.table-rows-number-indicator {
|
|
397
|
+
margin: 4px 0px 2px 0px;
|
|
398
|
+
color: #939393;
|
|
399
|
+
font-size: 11px;
|
|
400
|
+
padding-left: 12px;
|
|
401
|
+
}
|
|
402
|
+
.show-more-records {
|
|
403
|
+
font-size: 11px;
|
|
404
|
+
color: #1967d2;
|
|
405
|
+
cursor: pointer;
|
|
406
|
+
margin: 3px 0px 2px 4px;
|
|
407
|
+
}
|
|
396
408
|
}
|
|
409
|
+
|
|
397
410
|
.filter-label {
|
|
398
411
|
font-size: 12px;
|
|
399
412
|
color: $dark-grey;
|
|
@@ -805,6 +818,16 @@ $dark-grey: #717585;
|
|
|
805
818
|
tr:hover {
|
|
806
819
|
background-color: #ddd;
|
|
807
820
|
}
|
|
821
|
+
|
|
822
|
+
.p-datatable .p-sortable-column.p-highlight:not(.p-sortable-disabled):hover,
|
|
823
|
+
.p-datatable .p-sortable-column.p-highlight {
|
|
824
|
+
background: #f8f9fa !important;
|
|
825
|
+
color: #343a40 !important;
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
.p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon::before {
|
|
829
|
+
color: #343a40 !important;
|
|
830
|
+
}
|
|
808
831
|
}
|
|
809
832
|
|
|
810
833
|
.margin-auto {
|
package/dist/types/widget.d.ts
CHANGED