@zanichelli/albe-web-components 2.24.11 → 2.26.1

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.
@@ -1239,6 +1239,10 @@ export namespace Components {
1239
1239
  * Column ID
1240
1240
  */
1241
1241
  "columnId": string;
1242
+ /**
1243
+ * [Optional] Default sort order
1244
+ */
1245
+ "defaultSortDirection"?: SortDirection;
1242
1246
  /**
1243
1247
  * [Optional] Show contextual menu button
1244
1248
  */
@@ -3485,6 +3489,10 @@ declare namespace LocalJSX {
3485
3489
  * Column ID
3486
3490
  */
3487
3491
  "columnId"?: string;
3492
+ /**
3493
+ * [Optional] Default sort order
3494
+ */
3495
+ "defaultSortDirection"?: SortDirection;
3488
3496
  /**
3489
3497
  * [Optional] callback for sorting
3490
3498
  */
@@ -10,6 +10,8 @@ export declare class ZRegistroTableHeader {
10
10
  sortable?: boolean;
11
11
  /** [Optional] Show contextual menu button */
12
12
  showButton?: boolean;
13
+ /** [Optional] Default sort order */
14
+ defaultSortDirection?: SortDirection;
13
15
  sortDirection: SortDirection;
14
16
  isMenuOpened: boolean;
15
17
  constructor();