@zeedhi/teknisa-components-common 1.130.0 → 1.131.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.
Files changed (44) hide show
  1. package/.package.json +39 -0
  2. package/coverage/clover.xml +1204 -1142
  3. package/coverage/coverage-final.json +48 -47
  4. package/coverage/lcov-report/index.html +18 -18
  5. package/coverage/lcov-report/tests/__helpers__/component-event-helper.ts.html +3 -3
  6. package/coverage/lcov-report/tests/__helpers__/flush-promises-helper.ts.html +1 -1
  7. package/coverage/lcov-report/tests/__helpers__/get-child-helper.ts.html +11 -11
  8. package/coverage/lcov-report/tests/__helpers__/index.html +1 -1
  9. package/coverage/lcov-report/tests/__helpers__/index.ts.html +4 -4
  10. package/coverage/lcov-report/tests/__helpers__/mock-created-helper.ts.html +3 -3
  11. package/coverage/lcov.info +2082 -1961
  12. package/dist/tek-components-common.esm.js +278 -163
  13. package/dist/tek-components-common.umd.js +278 -162
  14. package/package.json +2 -2
  15. package/tests/unit/components/tek-grid/grid-columns-button.spec.ts +123 -2
  16. package/tests/unit/components/tek-grid/grid-export-button.spec.ts +403 -0
  17. package/tests/unit/components/tek-grid/grid-filter-button.spec.ts +147 -4
  18. package/tests/unit/components/tek-grid/grid.spec.ts +142 -9
  19. package/tests/unit/components/tek-grid/layout_options.spec.ts +166 -0
  20. package/types/components/index.d.ts +1 -0
  21. package/types/components/tek-ag-grid/default-icons.d.ts +53 -0
  22. package/types/components/tek-ag-grid/interfaces.d.ts +9 -0
  23. package/types/components/tek-ag-grid/tek-ag-grid.d.ts +35 -0
  24. package/types/components/tek-datasource/datasource.d.ts +94 -0
  25. package/types/components/tek-grid/default-icons.d.ts +53 -0
  26. package/types/components/tek-grid/filter-dynamic-values.d.ts +9 -0
  27. package/types/components/tek-grid/grid-columns-button.d.ts +2 -1
  28. package/types/components/tek-grid/grid-controller.d.ts +19 -0
  29. package/types/components/tek-grid/grid-export-button.d.ts +19 -0
  30. package/types/components/tek-grid/grid-filter-button.d.ts +1 -0
  31. package/types/components/tek-grid/grid.d.ts +4 -0
  32. package/types/components/tek-grid/grid_column.d.ts +14 -0
  33. package/types/components/tek-grid/grid_controller.d.ts +15 -0
  34. package/types/components/tek-grid/interfaces.d.ts +8 -0
  35. package/types/components/tek-grid/layout-options.d.ts +6 -0
  36. package/types/components/tek-grid/tek-grid.d.ts +35 -0
  37. package/types/components/tek-login/interfaces.d.ts +3 -0
  38. package/types/components/tek-login/login-children.d.ts +3 -0
  39. package/types/components/tek-login/login.d.ts +58 -0
  40. package/types/components/tek-login/login_children.d.ts +3 -0
  41. package/types/components/tek-tree-grid/tree-grid.d.ts +2 -0
  42. package/types/utils/grid-base/export-options/button-option.d.ts +3 -1
  43. package/types/utils/grid-base/export-options/multi-option.d.ts +3 -1
  44. package/types/utils/grid-base/grid-base.d.ts +1 -3
@@ -0,0 +1,94 @@
1
+ import { IDatasource, IDictionary, RestDatasource } from '@zeedhi/core';
2
+ import { IDynamicFilterItem, ITekRestDatasource } from './interfaces';
3
+ export declare class TekRestDatasource extends RestDatasource implements ITekRestDatasource {
4
+ /** Dynamic filter data */
5
+ dynamicFilter: IDictionary<IDynamicFilterItem[]>;
6
+ /** Search Join data */
7
+ searchJoin: IDictionary<Array<string | number>>;
8
+ /**
9
+ * URL reserved keys
10
+ */
11
+ protected reservedKeys: IDictionary<boolean>;
12
+ /**
13
+ * Dynamic Filter Operations
14
+ */
15
+ dynamicFilterOperations: IDictionary<boolean>;
16
+ /**
17
+ * Dynamic Filter Relations
18
+ */
19
+ dynamicFilterRelations: IDictionary<boolean>;
20
+ /**
21
+ * Dynamic Filter applied flag
22
+ */
23
+ protected dynamicFilterApplied: string;
24
+ /**
25
+ * Create new datasource
26
+ * @param props Datasource properties
27
+ */
28
+ constructor(props: ITekRestDatasource);
29
+ protected updateInternalProperties(datasource?: IDatasource): void;
30
+ protected getEncodedParam(urlParam: string, datasourceParam?: IDictionary<any>): IDictionary<any>;
31
+ protected getQueryStringValues(): IDictionary<any>;
32
+ protected getUrlQueryString(): string;
33
+ /**
34
+ * Adds a new dynamic filter position or replace if exists
35
+ * @param column Dynamic Filter column name
36
+ * @param value Dynamic Filter value
37
+ * @returns Promise with data collection
38
+ */
39
+ addDynamicFilter(column: string, value: any): Promise<any>;
40
+ /**
41
+ * Removes a dynamic filter position
42
+ * @param column Dynamic Filter column name
43
+ * @returns Promise with data collection
44
+ */
45
+ removeDynamicFilter(column: string): Promise<any>;
46
+ /**
47
+ * Sets new dynamic filter value
48
+ * @param filter Dynamic Filter value
49
+ * @returns Promise with data collection
50
+ */
51
+ setDynamicFilter(filter: IDictionary<any>): Promise<any>;
52
+ /**
53
+ * Clears Dynamic filter value
54
+ * @returns Promise with data collection
55
+ */
56
+ clearDynamicFilter(): Promise<any>;
57
+ /**
58
+ * Resets page and selected rows and tries to update the url
59
+ * @returns Promise with data collection
60
+ */
61
+ protected updateDynamicFilter(): Promise<any>;
62
+ /**
63
+ * Checks if a filter value is valid
64
+ * @param value Filter value
65
+ * @returns Is valid filter value
66
+ */
67
+ protected isValidDynamicFilterValue(column: string, value?: IDictionary<any>[]): boolean | undefined;
68
+ /**
69
+ * Retrieves request params
70
+ */
71
+ protected getRequestParams(): any;
72
+ clone(): {
73
+ dynamicFilter: IDictionary<IDynamicFilterItem[]>;
74
+ searchJoin: IDictionary<(string | number)[]>;
75
+ type: string;
76
+ route?: string | undefined;
77
+ lazyLoad?: boolean | undefined;
78
+ arrayFormat?: "indices" | "brackets" | "repeat" | "comma" | undefined;
79
+ find?: IDictionary<any> | undefined;
80
+ currentRow?: IDictionary<any> | undefined;
81
+ data?: IDictionary<any>[] | undefined;
82
+ filter?: IDictionary<any> | undefined;
83
+ limit?: string | number | undefined;
84
+ loadAll?: boolean | undefined;
85
+ loading?: boolean | undefined;
86
+ order?: string[] | undefined;
87
+ page?: string | number | undefined;
88
+ search?: string | undefined;
89
+ searchIn?: string[] | undefined;
90
+ uniqueKey?: string | undefined;
91
+ watchUrl?: boolean | undefined;
92
+ events?: import("@zeedhi/core").IDatasourceEvents<import("@zeedhi/core").IEventParam<any>> | undefined;
93
+ };
94
+ }
@@ -0,0 +1,53 @@
1
+ declare const defaultIcons: {
2
+ columnGroupOpened: string;
3
+ columnGroupClosed: string;
4
+ columnSelectClosed: string;
5
+ columnSelectOpen: string;
6
+ columnSelectIndeterminate: string;
7
+ columnMovePin: string;
8
+ columnMoveHide: string;
9
+ columnMoveMove: string;
10
+ columnMoveLeft: string;
11
+ columnMoveRight: string;
12
+ columnMoveGroup: string;
13
+ columnMoveValue: string;
14
+ dropNotAllowed: string;
15
+ groupContracted: string;
16
+ groupExpanded: string;
17
+ chart: string;
18
+ close: string;
19
+ cancel: string;
20
+ check: string;
21
+ first: string;
22
+ previous: string;
23
+ next: string;
24
+ last: string;
25
+ linked: string;
26
+ unlinked: string;
27
+ colorPicker: string;
28
+ groupLoading: string;
29
+ menu: string;
30
+ filter: string;
31
+ columns: string;
32
+ maximize: string;
33
+ minimize: string;
34
+ menuPin: string;
35
+ menuValue: string;
36
+ menuAddRowGroup: string;
37
+ menuRemoveRowGroup: string;
38
+ clipboardCopy: string;
39
+ clipboardPaste: string;
40
+ rowGroupPanel: string;
41
+ valuePanel: string;
42
+ columnDrag: string;
43
+ rowDrag: string;
44
+ save: string;
45
+ smallDown: string;
46
+ smallLeft: string;
47
+ smallRight: string;
48
+ smallUp: string;
49
+ sortAscending: string;
50
+ sortDescending: string;
51
+ sortUnSort: string;
52
+ };
53
+ export default defaultIcons;
@@ -0,0 +1,9 @@
1
+ import { TekGridColumn } from '..';
2
+ export declare class TekFilterDynamicValues {
3
+ private static values;
4
+ private static formatDate;
5
+ static getLabel(name: string): string;
6
+ static getValue(name: string, column: TekGridColumn): string | string[];
7
+ static register(name: string, label: string, fn: () => Date | [Date, Date]): void;
8
+ static unregister(name: string): void;
9
+ }
@@ -1,4 +1,5 @@
1
1
  import { IterableColumnsButton } from '@zeedhi/common';
2
+ import { TekGridColumnsButtonController } from './grid-columns-button-controller';
2
3
  import { ITekGridColumnsButton } from './interfaces';
3
4
  /**
4
5
  * Base class for TekGrid Columns Button component
@@ -6,7 +7,7 @@ import { ITekGridColumnsButton } from './interfaces';
6
7
  export declare class TekGridColumnsButton extends IterableColumnsButton implements ITekGridColumnsButton {
7
8
  hideGroups: boolean;
8
9
  constructor(props: ITekGridColumnsButton);
9
- onCreated(): void;
10
+ createController(): TekGridColumnsButtonController;
10
11
  private aggregationDataSet;
11
12
  getAggregationSelectData(): any[];
12
13
  }
@@ -0,0 +1,19 @@
1
+ import { TekGrid } from './grid';
2
+ export declare class TekGridController {
3
+ private grid;
4
+ constructor(grid: TekGrid);
5
+ get gridTitle(): string;
6
+ get showAddButton(): boolean;
7
+ get showDeleteButton(): boolean;
8
+ get showFilterButton(): boolean;
9
+ get showColumnsButton(): boolean;
10
+ get columnsButtonIgnore(): string[];
11
+ get showLayoutOptions(): boolean;
12
+ get showFirstDivider(): boolean;
13
+ get showActionsButton(): boolean;
14
+ get showExportButton(): boolean;
15
+ get showActionAndExportButton(): boolean;
16
+ get isEditing(): boolean;
17
+ get isNotEditing(): boolean;
18
+ get disableDeleteButton(): boolean;
19
+ }
@@ -0,0 +1,19 @@
1
+ import { ComponentRender, IComponentRender } from '@zeedhi/common';
2
+ import type { TekTreeGrid } from '../tek-tree-grid/tree-grid';
3
+ import type { TekGrid } from './grid';
4
+ import { ITekGridExportButton, ITekGridExportConfig } from './interfaces';
5
+ /**
6
+ * Base class for TekGrid export button/dropdown component.
7
+ */
8
+ export declare class TekGridExportButton extends ComponentRender implements ITekGridExportButton {
9
+ gridName?: string;
10
+ grid?: TekGrid | TekTreeGrid;
11
+ exportConfig?: ITekGridExportConfig[];
12
+ exportActions?: IComponentRender[];
13
+ constructor(props: ITekGridExportButton);
14
+ private getOption;
15
+ private getExportConfigButtons;
16
+ private loadChildren;
17
+ loadGrid(gridName?: string): void;
18
+ onCreated(): void;
19
+ }
@@ -15,6 +15,7 @@ export declare class TekGridFilterButton extends Button implements ITekGridFilte
15
15
  constructor(props: ITekGridFilterButton);
16
16
  loadGrid(gridName?: string): void;
17
17
  click(event?: Event): void;
18
+ onCreated(): void;
18
19
  private loadFilterValues;
19
20
  hideFilterModal(): void;
20
21
  destroyFilterModal(): void;
@@ -3,6 +3,7 @@ import { Datasource, IDictionary, IEventParam } from '@zeedhi/core';
3
3
  import { ITekGridAtoms } from '../../utils';
4
4
  import { TekGridColumn } from './grid-column';
5
5
  import { IGroupedData, IModalFilterProps, ITekGrid, ITekGridColumn, ITekGridEvents, ITekGridExportConfig, ITekGridGroup, ITekGridGroupFooter } from './interfaces';
6
+ import type { TekGridFilterButton } from './grid-filter-button';
6
7
  import { TekGridLayoutOptions } from './layout-options';
7
8
  export declare class TekGrid extends GridEditable implements ITekGrid {
8
9
  title: string;
@@ -178,6 +179,8 @@ export declare class TekGrid extends GridEditable implements ITekGrid {
178
179
  isGrouped(): number | false;
179
180
  navigateDown(params?: any): void;
180
181
  navigateUp(params?: any): void;
182
+ navigateDatasource(up: boolean): void;
183
+ private navigateGroupedDatasource;
181
184
  directionalLeft(params: IEventParam<any>): void;
182
185
  directionalRight(params: IEventParam<any>): void;
183
186
  /**
@@ -206,6 +209,7 @@ export declare class TekGrid extends GridEditable implements ITekGrid {
206
209
  selectGroupClick(row: IDictionary<any>, isSelected: boolean, event: Event, element: HTMLElement): void;
207
210
  getAtomInstance<T>(key: keyof ITekGridAtoms): T;
208
211
  getFilterInputs(columnName?: string): Input[];
212
+ registerFilterButton(filterButton: TekGridFilterButton): void;
209
213
  isColumnSearchable(column: TekGridColumn): boolean;
210
214
  getColumn(name: string): TekGridColumn;
211
215
  /**
@@ -0,0 +1,14 @@
1
+ import { GridColumnEditable } from '@zeedhi/common';
2
+ import { ITekGridColumn } from './interfaces';
3
+ /**
4
+ * Base class for Grid column
5
+ */
6
+ export declare class TekGridColumn extends GridColumnEditable implements ITekGridColumn {
7
+ filterProps: any;
8
+ filterable: boolean;
9
+ /**
10
+ * Creates a new TekGrid Column.
11
+ * @param props TekGrid column properties
12
+ */
13
+ constructor(props: ITekGridColumn);
14
+ }
@@ -0,0 +1,15 @@
1
+ import { TekGrid } from './grid';
2
+ export declare class TekGridController {
3
+ private grid;
4
+ constructor(grid: TekGrid);
5
+ get gridTitle(): string;
6
+ get showAddButton(): boolean;
7
+ get showDeleteButton(): boolean;
8
+ get showFilterButton(): boolean;
9
+ get showColumnsButton(): boolean;
10
+ get showFirstDivider(): boolean;
11
+ get showActionsButton(): boolean;
12
+ get isEditing(): boolean;
13
+ get isNotEditing(): boolean;
14
+ get disableDeleteButton(): boolean;
15
+ }
@@ -117,6 +117,7 @@ export interface ITekGridLayoutColumn {
117
117
  }
118
118
  export interface ITekGridLayoutOptions extends IComponentRender {
119
119
  events?: ITekGridLayoutOptionsEvents;
120
+ gridName?: string;
120
121
  }
121
122
  export declare type IFilterRelation = 'AND' | 'OR';
122
123
  export declare type IFilterOperation = 'CONTAINS' | 'NOT_CONTAINS' | 'EQUALS' | 'NOT_EQUALS' | 'GREATER_THAN' | 'LESS_THAN' | 'GREATER_THAN_EQUALS' | 'LESS_THAN_EQUALS' | 'IN' | 'NOT_IN' | 'BETWEEN';
@@ -138,6 +139,7 @@ export interface ITekGridColumn extends IGridColumnEditable {
138
139
  storeData?: boolean;
139
140
  }
140
141
  export interface ITekGridColumnsButton extends IIterableColumnsButton {
142
+ gridName?: string;
141
143
  hideGroups?: boolean;
142
144
  }
143
145
  export interface ITekGridFilterButton extends IButton {
@@ -145,6 +147,12 @@ export interface ITekGridFilterButton extends IButton {
145
147
  grid?: TekGrid | TekTreeGrid;
146
148
  showCheckboxAll?: boolean;
147
149
  }
150
+ export interface ITekGridExportButton extends IComponentRender {
151
+ gridName?: string;
152
+ grid?: TekGrid | TekTreeGrid;
153
+ exportConfig?: ITekGridExportConfig[];
154
+ exportActions?: IComponentRender[];
155
+ }
148
156
  export interface ITekGridGroup {
149
157
  column: ITekGridColumn;
150
158
  name: string;
@@ -3,6 +3,7 @@ import { IDictionary } from '@zeedhi/core';
3
3
  import { IDynamicFilterItem, ITekGridLayoutColumn } from '..';
4
4
  import { ITekGridLayoutOptions, ITekGridLayout, ITekGridLayoutOptionsEvents } from './interfaces';
5
5
  export declare class TekGridLayoutOptions extends ComponentRender implements ITekGridLayoutOptions {
6
+ gridName?: string;
6
7
  currentLayoutName: string;
7
8
  layoutEdited: boolean;
8
9
  layouts: IDictionary<ITekGridLayout>;
@@ -15,7 +16,12 @@ export declare class TekGridLayoutOptions extends ComponentRender implements ITe
15
16
  originalDatasourceFilter: IDictionary<any>;
16
17
  events: ITekGridLayoutOptionsEvents;
17
18
  grid: Grid;
19
+ private changeLayoutEventGrid?;
20
+ constructor(props: ITekGridLayoutOptions);
18
21
  private getParentGrid;
22
+ loadGrid(gridName?: string): Grid;
23
+ private onGridChangeLayout;
24
+ private registerChangeLayoutEvent;
19
25
  onMounted(element: HTMLElement): Promise<void>;
20
26
  private checkLayoutsData;
21
27
  protected loadLayoutsInfo(): Promise<any>;
@@ -0,0 +1,35 @@
1
+ import { Iterable } from '@zeedhi/common';
2
+ import { IDictionary } from '@zeedhi/core';
3
+ import { ITekGrid } from './interfaces';
4
+ /** Grid Component */
5
+ export declare class TekGrid extends Iterable implements ITekGrid {
6
+ cssClass: string;
7
+ dense: boolean;
8
+ frameworkComponents: IDictionary;
9
+ gridOptions: IDictionary;
10
+ height: string | number;
11
+ icons: IDictionary<string>;
12
+ gridComponent: any;
13
+ /**
14
+ * Creates a new Grid.
15
+ * @param props Grid properties
16
+ */
17
+ constructor(props: ITekGrid);
18
+ private createOptionsAccessors;
19
+ private setAccessor;
20
+ /**
21
+ * Reload dataset
22
+ */
23
+ reload(): Promise<any>;
24
+ /**
25
+ * Compares two dates
26
+ * @param date1
27
+ * @param date2
28
+ * @param format
29
+ * @returns -1 if date1 after date2
30
+ * @returns 0 if date1 equal date2
31
+ * @returns 1 if date1 before date2
32
+ */
33
+ dateComparator(date1: string | Date, date2: string | Date, format?: string): 1 | -1 | 0;
34
+ private getDateAsString;
35
+ }
@@ -0,0 +1,3 @@
1
+ import { ILogin } from '@zeedhi/common';
2
+ export interface ITekLogin extends ILogin {
3
+ }
@@ -0,0 +1,3 @@
1
+ import { IComponentRender } from '@zeedhi/common';
2
+ import { TekLogin } from './login';
3
+ export declare function getChildren(login: TekLogin): IComponentRender[];
@@ -0,0 +1,58 @@
1
+ import { Button, Checkbox, IComponentRender, Login, Select, Text } from '@zeedhi/common';
2
+ import { IEventParam } from '@zeedhi/core';
3
+ import { ITekLogin } from './interfaces';
4
+ export declare class TekLogin extends Login implements ITekLogin {
5
+ cardWidth: string | number;
6
+ layout: string;
7
+ children: IComponentRender[];
8
+ constructor(props: ITekLogin);
9
+ private testLicenseKeyMap;
10
+ private attempts;
11
+ private confirmSessionChange;
12
+ private user;
13
+ private password;
14
+ private hash;
15
+ private userData;
16
+ private privacyModal?;
17
+ onMounted(element: HTMLElement): void;
18
+ onBeforeDestroy(): void;
19
+ privacyClick({ component }: IEventParam<Text>): void;
20
+ private findPrivacyPolicyByAuthentication;
21
+ private openModalPrivacyPolicy;
22
+ loginEmailPrivacyPolicyCancel(): void;
23
+ loginEmailPrivacyPolicyConfirm({ component }: IEventParam<Button>): void;
24
+ forgetClick(): void;
25
+ loginForgetPasswordConfirm({ component }: IEventParam<Button>): void;
26
+ loginForgetPasswordCancel(): void;
27
+ private requestNewPassword;
28
+ private setCurrentLanguage;
29
+ private getLanguageNewFormat;
30
+ private getLanguageOldFormat;
31
+ private updateLanguages;
32
+ private getDataSource;
33
+ private setDataSource;
34
+ private getProductLanguages;
35
+ changeLanguage({ component }: IEventParam<Select>): void;
36
+ changeKeepConnected({ component }: IEventParam<Checkbox>): void;
37
+ private generateKey;
38
+ loginClick({ component }: IEventParam<Button>): void;
39
+ private doLogin;
40
+ private checkLoginResponse;
41
+ private checkErrorResponse;
42
+ private expiredPasswordValidation;
43
+ private showDialogExpiredPassword;
44
+ private openExpiredPasswordWidget;
45
+ private showMessage;
46
+ loginExpiredPasswordConfirm({ component }: IEventParam<Button>): void;
47
+ loginExpiredPasswordCancel(): void;
48
+ private showForm;
49
+ private updatePassword;
50
+ private validateRcUrl;
51
+ private redirectAfterLogin;
52
+ private isJson;
53
+ private defaultError;
54
+ private showInvalidPasswordMaskMessage;
55
+ private setLogAccess;
56
+ private redirectToProduct;
57
+ private testLicenseConnection;
58
+ }
@@ -0,0 +1,3 @@
1
+ import { IComponentRender } from '@zeedhi/common';
2
+ import { TekLogin } from './login';
3
+ export declare function getChildren(login: TekLogin): IComponentRender[];
@@ -3,6 +3,7 @@ import { Datasource, IDictionary } from '@zeedhi/core';
3
3
  import { ITekGridAtoms } from '../../utils';
4
4
  import { TekGridColumn } from '../tek-grid/grid-column';
5
5
  import { IModalFilterProps, ITekGridColumn, ITekGridEvents, ITekGridExportConfig } from '../tek-grid/interfaces';
6
+ import type { TekGridFilterButton } from '../tek-grid/grid-filter-button';
6
7
  import { ITekTreeGrid } from './interfaces';
7
8
  import { TekGridLayoutOptions } from '..';
8
9
  export declare class TekTreeGrid extends TreeGridEditable implements ITekTreeGrid {
@@ -98,5 +99,6 @@ export declare class TekTreeGrid extends TreeGridEditable implements ITekTreeGri
98
99
  rowClick(row: IDictionary<any>, event: Event, element: HTMLElement): void;
99
100
  getAtomInstance<T>(key: keyof ITekGridAtoms): T;
100
101
  getFilterInputs(columnName?: string): import("@zeedhi/common").Input[];
102
+ registerFilterButton(filterButton: TekGridFilterButton): void;
101
103
  getColumn(name: string): TekGridColumn;
102
104
  }
@@ -1,4 +1,6 @@
1
- import { ITekGridExportConfig, TekGrid, TekTreeGrid } from '../../../components';
1
+ import type { TekTreeGrid } from '../../../components/tek-tree-grid/tree-grid';
2
+ import type { ITekGridExportConfig } from '../../../components/tek-grid/interfaces';
3
+ import type { TekGrid } from '../../../components/tek-grid/grid';
2
4
  import { IExportOption } from './interfaces';
3
5
  export declare class ButtonOption implements IExportOption {
4
6
  private config;
@@ -1,5 +1,7 @@
1
1
  import { IRow } from '@zeedhi/common';
2
- import { ITekGridExportConfig, TekGrid, TekTreeGrid } from '../../../components';
2
+ import type { TekTreeGrid } from '../../../components/tek-tree-grid/tree-grid';
3
+ import type { ITekGridExportConfig } from '../../../components/tek-grid/interfaces';
4
+ import type { TekGrid } from '../../../components/tek-grid/grid';
3
5
  import { IExportOption } from './interfaces';
4
6
  export declare class MultiOption implements IExportOption {
5
7
  private config;
@@ -21,11 +21,8 @@ export interface ITekGridAtoms {
21
21
  }
22
22
  export declare class GridBase {
23
23
  private grid;
24
- private exportConfigButtons;
25
24
  private defaultToolbar;
26
25
  constructor(grid: TekGrid | TekTreeGrid);
27
- private getOption;
28
- private getExportConfigButtons;
29
26
  private initializeDefaultToolbarItems;
30
27
  private processUserToolbarItems;
31
28
  /**
@@ -39,6 +36,7 @@ export declare class GridBase {
39
36
  createToolbarProps(): IComponentRender[];
40
37
  filterButton?: TekGridFilterButton;
41
38
  private loadFilterButton;
39
+ registerFilterButton(filterButton: TekGridFilterButton): void;
42
40
  private hideButtonClick;
43
41
  private addButtonClick;
44
42
  private deleteButtonClick;