@softheon/armature 19.14.1 → 19.15.0

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,5 +1,5 @@
1
1
  import { ElementRef, EventEmitter, OnChanges, OnInit, QueryList, SimpleChanges, WritableSignal } from '@angular/core';
2
- import { ApplyColumnStateParams, ColDef, FilterModel, GridReadyEvent, HeaderPosition, NavigateToNextHeaderParams, PaginationChangedEvent, TabToNextHeaderParams } from "ag-grid-community";
2
+ import { ApplyColumnStateParams, ColDef, FilterModel, GridReadyEvent, HeaderPosition, NavigateToNextHeaderParams, PaginationChangedEvent, SortChangedEvent, TabToNextHeaderParams } from "ag-grid-community";
3
3
  import { MatSelect } from '@angular/material/select';
4
4
  import * as i0 from "@angular/core";
5
5
  /** The Softheon Armature Table component */
@@ -100,6 +100,10 @@ export declare class SofTableComponent implements OnInit, OnChanges {
100
100
  private document;
101
101
  /** The id of the filter fieldset */
102
102
  filterFieldSetId: string;
103
+ /** The header cells sort icons */
104
+ headerSortIcons: {
105
+ [key: string]: string;
106
+ };
103
107
  /** On component init */
104
108
  ngOnInit(): void;
105
109
  /**
@@ -120,6 +124,11 @@ export declare class SofTableComponent implements OnInit, OnChanges {
120
124
  onFirstDataRendered(): void;
121
125
  /** Resize grid from size mode */
122
126
  private resizeGrid;
127
+ /**
128
+ * Refresh the cells if sorted to apply styling
129
+ * @note styling is applied with `this.defaultColDef.cellClassRules`, refreshing cells required to take effect.
130
+ */
131
+ onSortChanged(params: SortChangedEvent): void;
123
132
  /**
124
133
  * On page selection change
125
134
  * @param value The selected page number
@@ -10,12 +10,6 @@ $screen-lg-end: 1919px;
10
10
  $screen-xl-start: 1920px;
11
11
  $screen-xl-end: 5000px;
12
12
 
13
- $mat-lt-sm: 599px;
14
- $mat-lt-md: 959px;
15
- $mat-lt-lg: 1279px;
16
- $mat-gt-sm: 960px;
17
- $mat-gt-md: 1280px;
18
-
19
13
  // text emphasis (per design)
20
14
  $text-high-emphasis: rgba(0, 0, 0, 0.87);
21
15
  $text-medium-emphasis: rgba(0, 0, 0, 0.6);
@@ -32,6 +26,7 @@ $surface-color-inverse-light: #333333;
32
26
  $surface-color-inverse-level-one-light: #424242;
33
27
  $surface-color-inverse-level-two-light: #515151;
34
28
 
29
+ // UI Shell component size
35
30
  $sof-nav-panel-width: 328px;
36
31
  $sof-header-height: 56px;
37
32
 
@@ -48,3 +43,11 @@ $sof-header-height: 56px;
48
43
  */
49
44
  $mat-sidenav-transition-duration: 400ms;
50
45
  $mat-sidenav-transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
46
+
47
+
48
+ // @deprecated
49
+ $mat-lt-sm: 599px;
50
+ $mat-lt-md: 959px;
51
+ $mat-lt-lg: 1279px;
52
+ $mat-gt-sm: 960px;
53
+ $mat-gt-md: 1280px;