ets-fe-ng-sdk 20.3.19 → 20.3.20

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/index.d.ts CHANGED
@@ -7992,7 +7992,7 @@ declare class InfoDialogComponent implements OnInit {
7992
7992
  * @param status Status code (0=danger, 1=success, 2=info, 3=warning)
7993
7993
  * @returns CSS class name corresponding to the status
7994
7994
  */
7995
- cls: (status?: 0 | 1 | 2 | 3) => "info" | "danger" | "success" | "" | "warning";
7995
+ cls: (status?: 0 | 1 | 2 | 3) => "" | "danger" | "success" | "info" | "warning";
7996
7996
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<InfoDialogComponent, never>;
7997
7997
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<InfoDialogComponent, "ng-component", never, {}, {}, never, never, true, never>;
7998
7998
  }
@@ -8869,7 +8869,7 @@ declare class ResizeGridPipe implements PipeTransform {
8869
8869
  */
8870
8870
  declare class IndexCompLayoutComponent {
8871
8871
  /** Number of columns in the grid layout */
8872
- readonly grid: InputSignal<1 | 3 | 2 | 5 | 4 | 6 | "auto">;
8872
+ readonly grid: InputSignal<1 | 2 | 3 | 5 | 4 | 6 | "auto">;
8873
8873
  /** Whether to show the action buttons */
8874
8874
  readonly showButtons: InputSignal<boolean>;
8875
8875
  /** Whether to hide the clone button */
@@ -10504,7 +10504,7 @@ declare class TableHttpsComponent<TItem = any> extends TableBaseComponent<TItem>
10504
10504
  readonly form: FormGroup<{
10505
10505
  pageNumber: FormControl<number>;
10506
10506
  sortBy: FormControl<keyof TItem>;
10507
- sortDirection: FormControl<"" | "ASC" | "DESC">;
10507
+ sortDirection: FormControl<"" | "DESC" | "ASC">;
10508
10508
  pageSize: FormControl<number>;
10509
10509
  }>;
10510
10510
  /**
@@ -10513,7 +10513,7 @@ declare class TableHttpsComponent<TItem = any> extends TableBaseComponent<TItem>
10513
10513
  readonly allQueryData: _angular_core.Signal<{
10514
10514
  pageNumber: number;
10515
10515
  sortBy: keyof TItem;
10516
- sortDirection: "" | "ASC" | "DESC";
10516
+ sortDirection: "" | "DESC" | "ASC";
10517
10517
  pageSize: number;
10518
10518
  }>;
10519
10519
  /**
@@ -10522,7 +10522,7 @@ declare class TableHttpsComponent<TItem = any> extends TableBaseComponent<TItem>
10522
10522
  readonly formValue: _angular_core.Signal<{
10523
10523
  pageNumber: number;
10524
10524
  sortBy: keyof TItem;
10525
- sortDirection: "" | "ASC" | "DESC";
10525
+ sortDirection: "" | "DESC" | "ASC";
10526
10526
  pageSize: number;
10527
10527
  }>;
10528
10528
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ets-fe-ng-sdk",
3
- "version": "20.3.19",
3
+ "version": "20.3.20",
4
4
  "repository": {
5
5
  "url": "https://github.com/Evolutics-Tech/ets-fe-sdk"
6
6
  },