logitude-dashboard-library 3.2.2 → 3.2.4

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.
@@ -1,2 +1,3 @@
1
1
  declare const isNullOrUndefined: (val: any) => boolean;
2
- export { isNullOrUndefined };
2
+ declare const isNullOrUndefinedOrEmpty: (val: any) => boolean;
3
+ export { isNullOrUndefined, isNullOrUndefinedOrEmpty };
@@ -388,6 +388,12 @@ $dark-grey: #717585;
388
388
  align-items: flex-start;
389
389
  }
390
390
 
391
+ .table-rows-number-indicator {
392
+ margin: 4px 0px 2px 0px;
393
+ color: #939393;
394
+ font-size: 11px;
395
+ padding-left: 12px;
396
+ }
391
397
  .filter-label {
392
398
  font-size: 12px;
393
399
  color: $dark-grey;
@@ -717,21 +723,41 @@ $dark-grey: #717585;
717
723
  .dl-table-chart-container {
718
724
  overflow: auto;
719
725
  position: absolute;
720
- top: 0;
726
+ top: 22px;
721
727
  right: 0;
722
728
  left: 0;
723
729
  bottom: 0;
724
- height: calc(100% - 15px);
730
+ height: calc(100% - 35px);
725
731
  width: calc(100% - 25px);
726
732
  margin: 0 auto;
727
733
 
728
- table {
729
- border-collapse: collapse;
734
+ &::-webkit-scrollbar {
735
+ width: 10px;
736
+ height: 10px
737
+ }
738
+
739
+ &::-webkit-scrollbar-thumb {
740
+ border: 1px solid rgba(0, 0, 0, 0);
741
+ background-clip: padding-box;
742
+ border-radius: 9999px;
743
+ background-color: #D9D9D9;
744
+ }
745
+
746
+ &::-webkit-scrollbar-track {
747
+ background: #F3F3F3;
748
+ border: 1px solid white;
749
+ border-radius: 9999px;
750
+ }
751
+
752
+ .p-datatable {
730
753
  width: 100%;
731
- height: auto;
732
- max-height: 100%;
733
754
  }
734
755
 
756
+ .p-datatable > .p-datatable-wrapper {
757
+ overflow-x: inherit;
758
+ }
759
+
760
+
735
761
  td,
736
762
  th {
737
763
  border: 1px solid #ddd;
@@ -743,12 +769,18 @@ $dark-grey: #717585;
743
769
  font-weight: bold;
744
770
  font-size: 14px;
745
771
  white-space: nowrap;
772
+
773
+ .p-column-title {
774
+ font-weight: bold !important;
775
+ font-size: 14px !important;
776
+ }
746
777
  }
747
778
 
748
779
  td {
749
780
  border: 1px solid #ddd;
750
- padding: 8px;
781
+ padding: 0.5rem 1rem !important;
751
782
  max-width: 1px;
783
+ height: 36px;
752
784
  min-width: 140px;
753
785
  line-height: normal;
754
786
  word-break: break-all;
@@ -840,4 +872,8 @@ $dark-grey: #717585;
840
872
  .title-tooltip-container-content > div {
841
873
  width: 8px !important;
842
874
  height: 4px !important;
875
+ }
876
+
877
+ .fc__tooltip {
878
+ max-width: 350px !important;
843
879
  }
@@ -83,6 +83,9 @@ export interface ChartInfo {
83
83
  minPlotHeightForValue: string;
84
84
  minAngleForValue: string;
85
85
  drawCrossLine: string;
86
+ palettecolors: string;
87
+ plotHoverEffect: string;
86
88
  }
87
89
  export declare function getSeriesPositionColor(position: number): string | null;
88
90
  export declare function getSeriesHoverPositionColor(position: number): string | null;
91
+ export declare const getPlotColorByIndexOrder: (index: number) => string;
@@ -16,3 +16,19 @@ export declare const grey1Color = "#F6F6F6";
16
16
  export declare const grey2Color = "#F0F0F0";
17
17
  export declare const grey3Color = "#D9D9D9";
18
18
  export declare const grey4Color = "#A4A4A4";
19
+ export declare const plotColorsDictionary: {
20
+ plotColor0: string;
21
+ plotColor1: string;
22
+ plotColor2: string;
23
+ plotColor3: string;
24
+ plotColor4: string;
25
+ plotColor5: string;
26
+ plotColor6: string;
27
+ plotColor7: string;
28
+ plotColor8: string;
29
+ plotColor9: string;
30
+ plotColor10: string;
31
+ plotColor11: string;
32
+ plotColor12: string;
33
+ plotColor13: string;
34
+ };