@ng-matero/extensions 10.16.5 → 10.16.6

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.
Files changed (43) hide show
  1. package/bundles/mtxCheckboxGroup.umd.js +18 -7
  2. package/bundles/mtxCheckboxGroup.umd.js.map +1 -1
  3. package/bundles/mtxCheckboxGroup.umd.min.js +1 -1
  4. package/bundles/mtxCheckboxGroup.umd.min.js.map +1 -1
  5. package/bundles/mtxGrid.umd.js +34 -61
  6. package/bundles/mtxGrid.umd.js.map +1 -1
  7. package/bundles/mtxGrid.umd.min.js +2 -2
  8. package/bundles/mtxGrid.umd.min.js.map +1 -1
  9. package/bundles/mtxPopover.umd.js +7 -2
  10. package/bundles/mtxPopover.umd.js.map +1 -1
  11. package/bundles/mtxPopover.umd.min.js +1 -1
  12. package/bundles/mtxPopover.umd.min.js.map +1 -1
  13. package/bundles/mtxSelect.umd.js +1 -0
  14. package/bundles/mtxSelect.umd.js.map +1 -1
  15. package/bundles/mtxSelect.umd.min.js +1 -1
  16. package/bundles/mtxSelect.umd.min.js.map +1 -1
  17. package/bundles/mtxSplit.umd.js +1 -1
  18. package/bundles/mtxSplit.umd.js.map +1 -1
  19. package/bundles/mtxSplit.umd.min.js +1 -1
  20. package/bundles/mtxSplit.umd.min.js.map +1 -1
  21. package/checkbox-group/checkbox-group.component.d.ts +4 -4
  22. package/checkbox-group/mtxCheckboxGroup.metadata.json +1 -1
  23. package/data-grid/cell.component.d.ts +3 -8
  24. package/data-grid/mtxGrid.metadata.json +1 -1
  25. package/esm2015/checkbox-group/checkbox-group.component.js +16 -10
  26. package/esm2015/data-grid/cell.component.js +34 -57
  27. package/esm2015/data-grid/column-menu.component.js +2 -2
  28. package/esm2015/data-grid/grid.component.js +3 -3
  29. package/esm2015/popover/popover.js +8 -3
  30. package/esm2015/select/select.component.js +2 -1
  31. package/esm2015/split-pane/split.component.js +2 -2
  32. package/fesm2015/mtxCheckboxGroup.js +13 -7
  33. package/fesm2015/mtxCheckboxGroup.js.map +1 -1
  34. package/fesm2015/mtxGrid.js +36 -59
  35. package/fesm2015/mtxGrid.js.map +1 -1
  36. package/fesm2015/mtxPopover.js +7 -2
  37. package/fesm2015/mtxPopover.js.map +1 -1
  38. package/fesm2015/mtxSelect.js +1 -0
  39. package/fesm2015/mtxSelect.js.map +1 -1
  40. package/fesm2015/mtxSplit.js +1 -1
  41. package/fesm2015/mtxSplit.js.map +1 -1
  42. package/package.json +1 -1
  43. package/select/mtxSelect.metadata.json +1 -1
@@ -1,8 +1,6 @@
1
1
  import { MtxDialog } from '@ng-matero/extensions/dialog';
2
- import { Observable } from 'rxjs';
3
2
  import { MtxGridColumn, MtxGridColumnButton } from './grid.interface';
4
3
  import { MtxGridService } from './grid.service';
5
- import { ThemePalette } from '@angular/material/core';
6
4
  export declare class MtxGridCellComponent {
7
5
  private _dialog;
8
6
  private _dataGridSrv;
@@ -11,21 +9,18 @@ export declare class MtxGridCellComponent {
11
9
  /** Column definition */
12
10
  colDef: MtxGridColumn;
13
11
  /** All data */
14
- data: never[];
12
+ data: any[];
15
13
  /** Whether show summary */
16
14
  summary: boolean;
17
15
  get _colValue(): string;
18
- _isString(fn: any): boolean;
19
- _isFunction(fn: any): boolean;
20
16
  _isEmptyValue(value: any): boolean;
21
17
  _isContainHTML(value: string): boolean;
22
18
  _getText(value: any): any;
23
19
  _getTooltip(value: any): any;
24
20
  _getFormatterTooltip(value: any): any;
25
- _formatSummary(data: any[], colDef: MtxGridColumn): string | void | ((data: any[], colDef?: MtxGridColumn | undefined) => void);
21
+ _formatSummary(data: any[], colDef: MtxGridColumn): string | void;
26
22
  constructor(_dialog: MtxDialog, _dataGridSrv: MtxGridService);
27
- _handleActionConfirm(event: MouseEvent, title: string | Observable<string>, description: string | Observable<string> | undefined, okColor: ThemePalette, okText: string | Observable<string> | undefined, closeColor: ThemePalette, closeText?: string | Observable<string>, fn?: (p: any) => void, data?: any): void;
28
23
  _handleActionClick(event: MouseEvent, btn: MtxGridColumnButton, rowData: any): void;
29
24
  /** Preview enlarged image */
30
- _onPreview(urlStr: string): void;
25
+ _handleImagePreview(urlStr: string): void;
31
26
  }