logitude-dashboard-library 3.2.6 → 3.2.8
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 +19 -14
- package/dist/index.js +192 -90
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +192 -90
- package/dist/index.modern.js.map +1 -1
- package/dist/styles/dl-dashboard.scss +19 -14
- package/dist/types/widget.d.ts +1 -0
- package/package.json +1 -1
|
@@ -348,11 +348,11 @@ $dark-grey: #717585;
|
|
|
348
348
|
}
|
|
349
349
|
|
|
350
350
|
.kpi-custom-size {
|
|
351
|
-
-webkit-transform: scale(0.
|
|
352
|
-
-ms-transform: scale(0.
|
|
353
|
-
-o-transform: scale(0.
|
|
354
|
-
transform: scale(0.
|
|
355
|
-
margin-top: -
|
|
351
|
+
-webkit-transform: scale(0.62);
|
|
352
|
+
-ms-transform: scale(0.62);
|
|
353
|
+
-o-transform: scale(0.62);
|
|
354
|
+
transform: scale(0.62);
|
|
355
|
+
margin-top: -12px;
|
|
356
356
|
}
|
|
357
357
|
|
|
358
358
|
.margin-top-6 {
|
|
@@ -547,7 +547,7 @@ $dark-grey: #717585;
|
|
|
547
547
|
box-sizing: border-box;
|
|
548
548
|
display: flex;
|
|
549
549
|
place-content: flex-end flex-start;
|
|
550
|
-
align-items:
|
|
550
|
+
align-items: center;
|
|
551
551
|
max-width: 100%;
|
|
552
552
|
}
|
|
553
553
|
|
|
@@ -558,7 +558,6 @@ $dark-grey: #717585;
|
|
|
558
558
|
.dl-kpi-label-span{
|
|
559
559
|
font-family: "Manrope";
|
|
560
560
|
font-style: normal;
|
|
561
|
-
font-weight: 700;
|
|
562
561
|
font-size: 16px;
|
|
563
562
|
line-height: 120%;
|
|
564
563
|
color: #292D30;
|
|
@@ -702,8 +701,7 @@ $dark-grey: #717585;
|
|
|
702
701
|
font-size: 11px;
|
|
703
702
|
line-height: 15px;
|
|
704
703
|
color: #A4A4A4;
|
|
705
|
-
margin-left:
|
|
706
|
-
margin-bottom: 6px;
|
|
704
|
+
margin-left: 5px;
|
|
707
705
|
flex-shrink: 0;
|
|
708
706
|
}
|
|
709
707
|
|
|
@@ -786,6 +784,16 @@ $dark-grey: #717585;
|
|
|
786
784
|
.p-column-title {
|
|
787
785
|
font-weight: bold !important;
|
|
788
786
|
font-size: 14px !important;
|
|
787
|
+
|
|
788
|
+
.pi {
|
|
789
|
+
font-size: 14px !important;
|
|
790
|
+
}
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
.header-content {
|
|
794
|
+
display: flex;
|
|
795
|
+
align-items: center;
|
|
796
|
+
cursor: pointer;
|
|
789
797
|
}
|
|
790
798
|
}
|
|
791
799
|
|
|
@@ -836,10 +844,8 @@ $dark-grey: #717585;
|
|
|
836
844
|
|
|
837
845
|
.dl-kpi-prev-container {
|
|
838
846
|
display: flex;
|
|
839
|
-
align-
|
|
840
|
-
|
|
841
|
-
place-content: flex-end flex-start;
|
|
842
|
-
justify-content: flex-start;
|
|
847
|
+
align-items: center;
|
|
848
|
+
justify-content: center;
|
|
843
849
|
font-family: 'Manrope';
|
|
844
850
|
font-style: normal;
|
|
845
851
|
font-weight: 500;
|
|
@@ -852,7 +858,6 @@ $dark-grey: #717585;
|
|
|
852
858
|
font-style: normal;
|
|
853
859
|
font-weight: 500;
|
|
854
860
|
font-size: 12px;
|
|
855
|
-
line-height: 15px;
|
|
856
861
|
color: #292D30;
|
|
857
862
|
}
|
|
858
863
|
|
package/dist/types/widget.d.ts
CHANGED