@zeedhi/teknisa-components-common 1.94.0 → 1.96.0

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.
@@ -59,6 +59,7 @@ export interface ITekGrid extends IGridEditable {
59
59
  showSummaryTotal?: boolean;
60
60
  layoutOptions?: TekGridLayoutOptions;
61
61
  mainGrid?: boolean;
62
+ showCheckboxAllFilter?: boolean;
62
63
  }
63
64
  export declare type MultiOptionParams = {
64
65
  iconName: string;
@@ -131,6 +132,7 @@ export interface ITekGridColumnsButton extends IIterableColumnsButton {
131
132
  export interface ITekGridFilterButton extends IButton {
132
133
  gridName?: string;
133
134
  grid?: TekGrid | TekTreeGrid;
135
+ showCheckboxAll?: boolean;
134
136
  }
135
137
  export interface ITekGridGroup {
136
138
  column: ITekGridColumn;
@@ -168,5 +170,6 @@ export interface ITekFilterHelperValue extends IDateHelperValue {
168
170
  export interface ITekFilterHelperValues extends IDateHelperValues {
169
171
  }
170
172
  export interface IModalFilterProps extends IModal {
171
- height: string;
173
+ height?: string;
174
+ maxHeight?: string;
172
175
  }
@@ -51,4 +51,5 @@ export declare class Image extends ComponentRender implements IImage {
51
51
  * @param props Image Link props
52
52
  */
53
53
  constructor(props: IImage);
54
+ load(event?: Event, element?: HTMLElement): void;
54
55
  }
@@ -21,4 +21,5 @@ export interface ITekTreeGrid extends ITreeGridEditable {
21
21
  exportConfig?: ITekGridExportConfig[];
22
22
  exportActions?: IComponentRender[];
23
23
  layoutOptions?: TekGridLayoutOptions;
24
+ showCheckboxAllFilter?: boolean;
24
25
  }
@@ -62,6 +62,7 @@ export declare class TekTreeGrid extends TreeGridEditable implements ITekTreeGri
62
62
  private gridBase;
63
63
  filterRelationsDatasource: Datasource;
64
64
  filterOperationsDatasource: Datasource;
65
+ showCheckboxAllFilter: boolean;
65
66
  /**
66
67
  * TekTreeGrid class constructor
67
68
  * @param props TekTreeGrid properties
@@ -2,4 +2,6 @@ import { IConfig } from '@zeedhi/core';
2
2
  export interface ITekConfig extends IConfig {
3
3
  saveGridLayoutsEndPoint?: string;
4
4
  loadGridLayoutsEndPoint?: string;
5
+ selectAllCompatibilityMode?: boolean;
6
+ gridShowCheckboxAllFilter?: boolean;
5
7
  }
@@ -227,6 +227,7 @@ export declare class GridBase {
227
227
  component: string;
228
228
  grid: TekGrid | TekTreeGrid;
229
229
  gridName: string;
230
+ showCheckboxAll: boolean;
230
231
  isVisible: string;
231
232
  events: {
232
233
  onCreated: ({ component }: IEventParam<TekGridFilterButton>) => void;