logitude-dashboard-library 3.1.50 → 3.1.52

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.
@@ -834,6 +834,10 @@ $dark-grey: #717585;
834
834
  left: 0;
835
835
  bottom: 0;
836
836
 
837
+ * {
838
+ border-color: #e0e0e0 !important;
839
+ }
840
+
837
841
  .pivot-grid-element {
838
842
  width: 100%;
839
843
  height: 100%;
@@ -850,11 +854,15 @@ $dark-grey: #717585;
850
854
  .dx-pivotgrid-fields-area-head td .dx-area-field,
851
855
  .dx-pivotgrid-horizontal-headers td,
852
856
  .dx-pivotgrid .dx-area-description-cell.dx-pivotgrid-background {
853
- background-color: #F1F1F1;
857
+ background-color: #FFFFFF;
858
+ }
859
+
860
+ .dx-pivotgrid .dx-area-description-cell {
861
+ background-color: #FFFFFF;
854
862
  }
855
863
 
856
864
  .dx-pivotgrid-horizontal-headers td {
857
- text-align: left;
865
+ text-align: center;
858
866
  }
859
867
 
860
868
  .dx-pivotgrid-fields-area-head td .dx-area-field {
@@ -869,19 +877,19 @@ $dark-grey: #717585;
869
877
  .dx-pivotgrid-fields-area-head .dx-area-field-content,
870
878
  .dx-pivotgrid-horizontal-headers tr td span {
871
879
  font-family: "Manrope";
872
- font-size: 13px;
880
+ font-size: 12px;
873
881
  font-weight: 600;
874
882
  text-align: left;
875
- color: #222222;
883
+ color: #222222 !important;
876
884
  }
877
885
 
878
886
  .dx-pivotgrid .dx-pivotgrid-vertical-headers td {
879
- background: #FAFAFA;
887
+ background: #FFFFFF;
880
888
  }
881
889
 
882
890
  .dx-pivotgrid .dx-pivotgrid-vertical-headers td > span {
883
891
  font-family: "Manrope";
884
- font-size: 13px;
892
+ font-size: 12px;
885
893
  font-weight: 500;
886
894
  text-align: left;
887
895
  color: #46494A;
@@ -892,13 +900,12 @@ $dark-grey: #717585;
892
900
  color: #46494A !important;
893
901
  }
894
902
 
895
- .dx-pivotgrid .dx-pivotgrid-area-data tbody td {
903
+ .dx-pivotgrid .dx-pivotgrid-area-data tbody td > span {
896
904
  font-family: "Manrope";
897
- font-size: 13px;
905
+ font-size: 12px;
898
906
  font-weight: 500;
899
907
  text-align: right;
900
908
  color: #46494A;
901
- border-left: 0px !important;
902
909
  }
903
910
 
904
911
  .dx-widget {
package/dist/index.js CHANGED
@@ -1614,11 +1614,11 @@ var PivotTable = React.forwardRef(function (props, comRef) {
1614
1614
  dataField: field.PivotCode,
1615
1615
  caption: field.DisplayName,
1616
1616
  name: field.PivotName,
1617
- width: 150,
1617
+ width: 100,
1618
1618
  allowSorting: false,
1619
1619
  allowFiltering: false,
1620
1620
  area: field.PivotCode && field.PivotCode.includes('Row') ? 'row' : 'column',
1621
- expanded: true,
1621
+ expanded: false,
1622
1622
  wordWrapEnabled: true,
1623
1623
  customizeText: function customizeText(cellInfo) {
1624
1624
  return getColumnNameByColumnId(field.PivotName, field.PivotCode, cellInfo.value);
@@ -1669,7 +1669,7 @@ var PivotTable = React.forwardRef(function (props, comRef) {
1669
1669
  showColumnFields: false,
1670
1670
  showDataFields: false,
1671
1671
  showFilterFields: false,
1672
- showRowFields: true,
1672
+ showRowFields: false,
1673
1673
  texts: {
1674
1674
  rowFieldArea: ""
1675
1675
  },