logitude-dashboard-library 3.1.140 → 3.1.141

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.
@@ -975,6 +975,17 @@ $dark-grey: #717585;
975
975
  cursor: pointer;
976
976
  }
977
977
 
978
+ .dl-ag-pivot-grid .dl-pivot-date-data-cell,
979
+ .dl-ag-pivot-grid .ag-cell.dl-pivot-date-data-cell {
980
+ text-align: left !important;
981
+ justify-content: flex-start;
982
+ }
983
+
984
+ .pivot-grid-element:not(.dl-ag-pivot-grid) .dx-pivotgrid-area-data tbody td.dl-pivot-date-data-cell,
985
+ .pivot-grid-element:not(.dl-ag-pivot-grid) .dx-pivotgrid-area-data tbody td.dl-pivot-date-data-cell > span {
986
+ text-align: left !important;
987
+ }
988
+
978
989
  .dl-ag-pivot-grid .dl-ag-pivot-row-label-cell,
979
990
  .dl-ag-pivot-grid .ag-cell.dl-ag-pivot-row-label-cell {
980
991
  text-align: left !important;
@@ -16,12 +16,25 @@ export declare type PivotApiMeasure = {
16
16
  DisplayName: string;
17
17
  FieldType?: string;
18
18
  };
19
+ export declare const PIVOT_DATE_DATA_CELL_CLASS = "dl-pivot-date-data-cell";
20
+ export declare const getPivotDataCellClassNames: (measure: PivotApiMeasure) => string;
21
+ export declare const isPivotDateMinMaxMeasure: (measure: PivotApiMeasure) => boolean;
22
+ export declare const formatPivotDateMeasureValue: (value: any) => string;
19
23
  export declare const isRowPivotField: (field: PivotApiField) => boolean;
20
24
  export declare const truncateToTwoDecimals: (value: any) => number;
21
25
  export declare const isPivotMeasureValueEmpty: (value: any) => boolean;
22
26
  export declare const logitudeSumAgg: (params: {
23
27
  values: any[];
24
28
  }) => number | null;
29
+ export declare const isDevExtremePivotDataCellTotalOrGrandTotal: (cell: any) => boolean;
30
+ export declare const isDevExtremeSummaryCellTotalOrGrandTotal: (cell: any) => boolean;
31
+ export declare const isAgGridPivotDateMeasureTotalDisplayCell: (params: any) => boolean;
32
+ export declare const logitudeMinAgg: (params: {
33
+ values: any[];
34
+ }) => any;
35
+ export declare const logitudeMaxAgg: (params: {
36
+ values: any[];
37
+ }) => any;
25
38
  export declare const formatPivotMeasureValue: (value: any, measure: PivotApiMeasure) => string;
26
39
  export declare const getPivotGroupFooterLabel: (node: any, fieldCode: string | null | undefined, rawValue: any, lookupDisplayName: (fieldCode: string, rawValue: any) => string) => string;
27
40
  export declare const compareDimensionValues: (aValue: any, bValue: any, dateCode: string | null, aText?: any, bText?: any) => number;