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

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.
@@ -4,9 +4,10 @@ import * as i0 from "@angular/core";
4
4
  export declare class ActionsCellComponent implements OnInit {
5
5
  data: any;
6
6
  actionItems: ActionItem[];
7
- actionType: 'inline' | 'dropdown';
7
+ actionType: 'inline' | 'dropdown' | 'checkbox';
8
8
  dropdownIcon: string;
9
9
  submenuAlign: 'left' | 'right';
10
+ menuAlign: 'left' | 'right';
10
11
  private _style;
11
12
  containerStyle: any;
12
13
  set style(value: any);
@@ -27,5 +28,5 @@ export declare class ActionsCellComponent implements OnInit {
27
28
  toggleDropdown(event: Event): void;
28
29
  onDropdownItemClick(item: any, event: Event): void;
29
30
  static ɵfac: i0.ɵɵFactoryDeclaration<ActionsCellComponent, never>;
30
- static ɵcmp: i0.ɵɵComponentDeclaration<ActionsCellComponent, "mis-actions-cell", never, { "data": { "alias": "data"; "required": false; }; "actionItems": { "alias": "actionItems"; "required": false; }; "actionType": { "alias": "actionType"; "required": false; }; "dropdownIcon": { "alias": "dropdownIcon"; "required": false; }; "submenuAlign": { "alias": "submenuAlign"; "required": false; }; "style": { "alias": "style"; "required": false; }; }, { "actionClick": "actionClick"; }, never, never, false, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<ActionsCellComponent, "mis-actions-cell", never, { "data": { "alias": "data"; "required": false; }; "actionItems": { "alias": "actionItems"; "required": false; }; "actionType": { "alias": "actionType"; "required": false; }; "dropdownIcon": { "alias": "dropdownIcon"; "required": false; }; "submenuAlign": { "alias": "submenuAlign"; "required": false; }; "menuAlign": { "alias": "menuAlign"; "required": false; }; "style": { "alias": "style"; "required": false; }; }, { "actionClick": "actionClick"; }, never, never, false, never>;
31
32
  }
@@ -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) => 1 | -1 | 0;
18
+ mySort: (a: Filter | any, b: Filter | any) => 0 | 1 | -1;
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
  }
@@ -112,6 +112,7 @@ export interface ColConfig {
112
112
  action?: any;
113
113
  actionItems?: ActionItem[];
114
114
  actionType?: "inline" | "dropdown";
115
+ menuAlign?: "left" | "right";
115
116
  }
116
117
  export interface ActionItem {
117
118
  label: string;