mis-crystal-design-system 18.0.13-test-2 → 18.0.13-test-4

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.
@@ -15,7 +15,7 @@ export declare class TableFilterComponent implements OnInit {
15
15
  updateFilter(data: any): void;
16
16
  getFiltersBasedOnSearchValue(): Filter[] | any;
17
17
  getCheckedFilters(): Filter[] | any;
18
- mySort: (a: Filter | any, b: Filter | any) => 0 | 1 | -1;
18
+ mySort: (a: Filter | any, b: Filter | any) => 1 | -1 | 0;
19
19
  static ɵfac: i0.ɵɵFactoryDeclaration<TableFilterComponent, never>;
20
20
  static ɵcmp: i0.ɵɵComponentDeclaration<TableFilterComponent, "mis-table-filter", never, { "filtersData": { "alias": "filtersData"; "required": false; }; "containerStyles": { "alias": "containerStyles"; "required": false; }; }, { "filtersApplied": "filtersApplied"; }, never, never, false, never>;
21
21
  }
@@ -87,6 +87,7 @@ export interface PaginationConfig {
87
87
  rowsPerPage: number;
88
88
  totalNoOfRows: number;
89
89
  selectedPage?: number;
90
+ disablePageJumping?: boolean;
90
91
  }
91
92
  export interface RowConfig {
92
93
  height?: string | undefined | null;
@@ -119,4 +120,5 @@ export interface ActionItem {
119
120
  disabled?: boolean;
120
121
  action?: (data: any) => void;
121
122
  children?: ActionItem[];
123
+ submenuAlign?: "left" | "right";
122
124
  }