@zeedhi/teknisa-components-vuetify 1.117.1 → 3.0.1

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 (92) hide show
  1. package/.package.json +49 -0
  2. package/dist/teknisa-vuetify.css +1 -0
  3. package/dist/teknisa-vuetify.js +3882 -0
  4. package/environments.json +16 -0
  5. package/package.json +18 -17
  6. package/src/components/index.ts +38 -0
  7. package/src/components/public.ts +41 -0
  8. package/src/components/tek-breadcrumb-header/TekBreadcrumbHeader.ts +34 -0
  9. package/src/components/tek-breadcrumb-header/TekBreadcrumbHeader.vue +75 -0
  10. package/src/components/tek-grid/TekGrid.ts +318 -0
  11. package/src/components/tek-grid/TekGrid.vue +235 -0
  12. package/src/components/tek-grid/column-filter/TekGridColumnFilter.ts +244 -0
  13. package/src/components/tek-grid/column-filter/TekGridColumnFilter.vue +93 -0
  14. package/src/components/tek-grid/column-header/TekGridHeaderRow.ts +147 -0
  15. package/src/components/tek-grid/column-header/TekGridHeaderRow.vue +78 -0
  16. package/src/components/tek-grid/columns-button/TekGridColumnsButton.ts +96 -0
  17. package/src/components/tek-grid/columns-button/TekGridColumnsButton.vue +273 -0
  18. package/src/components/tek-grid/columns-button/TekGridColumnsOptionsController.ts +470 -0
  19. package/src/components/tek-grid/columns-button/TekGridColumnsOptionsModal.ts +513 -0
  20. package/src/components/tek-grid/filter-button/TekGridFilterButton.ts +47 -0
  21. package/src/components/tek-grid/filter-button/TekGridFilterButton.vue +28 -0
  22. package/src/components/tek-grid/indentation/TekGridIndentation.ts +21 -0
  23. package/src/components/tek-grid/indentation/TekGridIndentation.vue +33 -0
  24. package/src/components/tek-grid/layout-options/TekGridLayoutOptions.ts +119 -0
  25. package/src/components/tek-grid/layout-options/TekGridLayoutOptions.vue +172 -0
  26. package/src/components/tek-grid/row/TekGridFooterRow.ts +62 -0
  27. package/src/components/tek-grid/row/TekGridFooterRow.vue +64 -0
  28. package/src/components/tek-grid/row/TekGridGroupRow.ts +65 -0
  29. package/src/components/tek-grid/row/TekGridGroupRow.vue +65 -0
  30. package/src/components/tek-user-info/TekUserInfo.ts +51 -0
  31. package/src/components/tek-user-info/TekUserInfo.vue +53 -0
  32. package/src/components/tek-user-info/TekUserInfoList.ts +39 -0
  33. package/src/components/tek-user-info/TekUserInfoList.vue +12 -0
  34. package/src/composables/useTableLayout.ts +290 -0
  35. package/src/index.ts +29 -0
  36. package/src/shims-vue.d.ts +6 -0
  37. package/src/styles/index.scss +0 -0
  38. package/src/utils/isArrayOperation.ts +5 -0
  39. package/types/components/index.d.ts +5 -3
  40. package/types/components/public.d.ts +5 -18
  41. package/types/components/tek-breadcrumb-header/TekBreadcrumbHeader.d.ts +1137 -12
  42. package/types/components/tek-breadcrumb-header/TekBreadcrumbHeader.ts.d.ts +1138 -0
  43. package/types/components/tek-grid/TekGrid.d.ts +7208 -86
  44. package/types/components/tek-grid/TekGrid.ts.d.ts +7211 -0
  45. package/types/components/tek-grid/column-filter/TekGridColumnFilter.d.ts +130 -0
  46. package/types/components/tek-grid/column-filter/TekGridColumnFilter.ts.d.ts +130 -0
  47. package/types/components/tek-grid/column-header/TekGridHeaderRow.d.ts +225 -0
  48. package/types/components/tek-grid/column-header/TekGridHeaderRow.ts.d.ts +225 -0
  49. package/types/components/tek-grid/columns-button/TekGridColumnsButton.d.ts +2432 -0
  50. package/types/components/tek-grid/columns-button/TekGridColumnsButton.ts.d.ts +2432 -0
  51. package/types/components/tek-grid/{TekGridColumnsOptionsController.d.ts → columns-button/TekGridColumnsOptionsController.d.ts} +7 -8
  52. package/types/components/tek-grid/{TekGridColumnsOptionsModal.d.ts → columns-button/TekGridColumnsOptionsModal.d.ts} +2 -3
  53. package/types/components/tek-grid/filter-button/TekGridFilterButton.d.ts +2920 -0
  54. package/types/components/tek-grid/filter-button/TekGridFilterButton.ts.d.ts +2920 -0
  55. package/types/components/tek-grid/indentation/TekGridIndentation.d.ts +32 -0
  56. package/types/components/tek-grid/indentation/TekGridIndentation.ts.d.ts +32 -0
  57. package/types/components/tek-grid/layout-options/TekGridLayoutOptions.d.ts +1893 -0
  58. package/types/components/tek-grid/layout-options/TekGridLayoutOptions.ts.d.ts +1893 -0
  59. package/types/components/tek-grid/row/TekGridFooterRow.d.ts +90 -0
  60. package/types/components/tek-grid/row/TekGridFooterRow.ts.d.ts +90 -0
  61. package/types/components/tek-grid/row/TekGridGroupRow.d.ts +87 -0
  62. package/types/components/tek-grid/row/TekGridGroupRow.ts.d.ts +87 -0
  63. package/types/components/tek-user-info/TekUserInfo.d.ts +1937 -10
  64. package/types/components/tek-user-info/TekUserInfo.ts.d.ts +1940 -0
  65. package/types/components/tek-user-info/TekUserInfoList.d.ts +1014 -8
  66. package/types/components/tek-user-info/TekUserInfoList.ts.d.ts +1015 -0
  67. package/types/composables/useTableLayout.d.ts +26 -0
  68. package/types/index.d.ts +2 -2
  69. package/types/utils/isArrayOperation.d.ts +2 -0
  70. package/dist/tek-components-vuetify.esm.js +0 -8924
  71. package/dist/tek-components-vuetify.umd.js +0 -8949
  72. package/types/components/crud/TekCrudAddButton.d.ts +0 -14
  73. package/types/components/crud/TekCrudButton.d.ts +0 -12
  74. package/types/components/crud/TekCrudCancelButton.d.ts +0 -12
  75. package/types/components/crud/TekCrudDeleteButton.d.ts +0 -14
  76. package/types/components/crud/TekCrudForm.d.ts +0 -9
  77. package/types/components/crud/TekCrudSaveButton.d.ts +0 -11
  78. package/types/components/tek-card-title/TekCardTitle.d.ts +0 -16
  79. package/types/components/tek-drag-grid/TekDragGrid.d.ts +0 -20
  80. package/types/components/tek-grid/TekGridColumnsButton.d.ts +0 -16
  81. package/types/components/tek-grid/TekGridFilterButton.d.ts +0 -27
  82. package/types/components/tek-grid/TekGridLayoutOptions.d.ts +0 -19
  83. package/types/components/tek-grid/subcomponents/TekGridCellIdentation.d.ts +0 -9
  84. package/types/components/tek-grid/subcomponents/TekGridColumnFilter.d.ts +0 -16
  85. package/types/components/tek-grid/subcomponents/TekGridHeaderIndentation.d.ts +0 -5
  86. package/types/components/tek-image/TekImage.d.ts +0 -20
  87. package/types/components/tek-iterable-carousel/TekIterableCarousel.d.ts +0 -11
  88. package/types/components/tek-iterable-component-render/TekIterableComponentRender.d.ts +0 -9
  89. package/types/components/tek-loading/TekLoading.d.ts +0 -9
  90. package/types/components/tek-notifications/TekNotifications.d.ts +0 -12
  91. package/types/components/tek-product-card/TekProductCard.d.ts +0 -24
  92. package/types/components/tek-tree-grid/TekTreeGrid.d.ts +0 -72
@@ -0,0 +1,1893 @@
1
+ import { Input } from '@zeedhi/common';
2
+ import { ITekGridLayout } from '@zeedhi/teknisa-components-common';
3
+ import { IEventParam } from '@zeedhi/core';
4
+ import { mergeProps } from 'vue';
5
+ export declare const TekGridLayoutOptionsProps: {
6
+ children: {
7
+ type: (StringConstructor | {
8
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
9
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
10
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
11
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
12
+ isArray(arg: any): arg is any[];
13
+ readonly prototype: any[];
14
+ from<T>(arrayLike: ArrayLike<T>): T[];
15
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
16
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
17
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
18
+ of<T_4>(...items: T_4[]): T_4[];
19
+ readonly [Symbol.species]: ArrayConstructor;
20
+ })[];
21
+ default(): never[];
22
+ };
23
+ component: {
24
+ type: StringConstructor;
25
+ };
26
+ allowDuplicate: {
27
+ type: (StringConstructor | BooleanConstructor)[];
28
+ default: boolean;
29
+ };
30
+ autofocus: {
31
+ type: (StringConstructor | BooleanConstructor)[];
32
+ default: boolean;
33
+ };
34
+ cssClass: {
35
+ type: StringConstructor;
36
+ default: string;
37
+ };
38
+ cssStyle: {
39
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
40
+ default: string;
41
+ };
42
+ dark: {
43
+ type: (StringConstructor | BooleanConstructor)[];
44
+ default: boolean;
45
+ };
46
+ directives: {
47
+ type: ObjectConstructor;
48
+ default(): {};
49
+ };
50
+ events: {
51
+ type: ObjectConstructor;
52
+ default(): {};
53
+ };
54
+ instanceObject: {
55
+ type: ObjectConstructor;
56
+ };
57
+ isVisible: {
58
+ type: (StringConstructor | BooleanConstructor)[];
59
+ default: boolean;
60
+ };
61
+ keyMap: {
62
+ type: ObjectConstructor;
63
+ default(): {};
64
+ };
65
+ light: {
66
+ type: (StringConstructor | BooleanConstructor)[];
67
+ default: boolean;
68
+ };
69
+ name: {
70
+ type: StringConstructor;
71
+ required: true;
72
+ };
73
+ parent: {
74
+ type: ObjectConstructor;
75
+ };
76
+ tabStop: {
77
+ type: (StringConstructor | BooleanConstructor)[];
78
+ default: boolean;
79
+ };
80
+ theme: {
81
+ type: StringConstructor;
82
+ };
83
+ };
84
+ declare const layoutOptionsComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
85
+ children: {
86
+ type: (StringConstructor | {
87
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
88
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
89
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
90
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
91
+ isArray(arg: any): arg is any[];
92
+ readonly prototype: any[];
93
+ from<T>(arrayLike: ArrayLike<T>): T[];
94
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
95
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
96
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
97
+ of<T_4>(...items: T_4[]): T_4[];
98
+ readonly [Symbol.species]: ArrayConstructor;
99
+ })[];
100
+ default(): never[];
101
+ };
102
+ component: {
103
+ type: StringConstructor;
104
+ };
105
+ allowDuplicate: {
106
+ type: (StringConstructor | BooleanConstructor)[];
107
+ default: boolean;
108
+ };
109
+ autofocus: {
110
+ type: (StringConstructor | BooleanConstructor)[];
111
+ default: boolean;
112
+ };
113
+ cssClass: {
114
+ type: StringConstructor;
115
+ default: string;
116
+ };
117
+ cssStyle: {
118
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
119
+ default: string;
120
+ };
121
+ dark: {
122
+ type: (StringConstructor | BooleanConstructor)[];
123
+ default: boolean;
124
+ };
125
+ directives: {
126
+ type: ObjectConstructor;
127
+ default(): {};
128
+ };
129
+ events: {
130
+ type: ObjectConstructor;
131
+ default(): {};
132
+ };
133
+ instanceObject: {
134
+ type: ObjectConstructor;
135
+ };
136
+ isVisible: {
137
+ type: (StringConstructor | BooleanConstructor)[];
138
+ default: boolean;
139
+ };
140
+ keyMap: {
141
+ type: ObjectConstructor;
142
+ default(): {};
143
+ };
144
+ light: {
145
+ type: (StringConstructor | BooleanConstructor)[];
146
+ default: boolean;
147
+ };
148
+ name: {
149
+ type: StringConstructor;
150
+ required: true;
151
+ };
152
+ parent: {
153
+ type: ObjectConstructor;
154
+ };
155
+ tabStop: {
156
+ type: (StringConstructor | BooleanConstructor)[];
157
+ default: boolean;
158
+ };
159
+ theme: {
160
+ type: StringConstructor;
161
+ };
162
+ }>, {
163
+ instance: {
164
+ currentLayoutName: string;
165
+ layoutEdited: boolean;
166
+ layouts: import("@zeedhi/core").IDictionary<ITekGridLayout>;
167
+ layoutNames: string[];
168
+ viewApplyLayout?: ((layout?: ITekGridLayout | undefined) => void) | undefined;
169
+ viewGetCurrentLayout?: ((layoutName: string) => {
170
+ name: string;
171
+ gridWidth: any;
172
+ order: any;
173
+ filter: any;
174
+ dynamicFilter: any;
175
+ columns: any;
176
+ }) | undefined;
177
+ originalColumnProps: {
178
+ name: string;
179
+ width?: string | undefined;
180
+ minWidth?: string | undefined;
181
+ maxWidth?: string | undefined;
182
+ isVisible?: boolean | undefined;
183
+ fixed?: boolean | undefined;
184
+ grouped?: boolean | undefined;
185
+ aggregation?: "SUM" | "MIN" | "MAX" | "AVG" | "COUNT" | undefined;
186
+ label?: string | undefined;
187
+ align?: "left" | "right" | "center" | undefined;
188
+ groupOpened?: boolean | undefined;
189
+ filterHelperValue?: string | import("@zeedhi/core").IDictionary<any> | undefined;
190
+ }[];
191
+ originalDatasourceOrder: string[];
192
+ originalDatasourceDynamicFilter: import("@zeedhi/core").IDictionary<import("@zeedhi/teknisa-components-common").IDynamicFilterItem[]>;
193
+ originalDatasourceFilter: import("@zeedhi/core").IDictionary<any>;
194
+ events: {
195
+ [x: string]: any;
196
+ loadLayouts?: import("@zeedhi/teknisa-components-common").IAsyncEvent<IEventParam<any> | import("@zeedhi/teknisa-components-common").ITekGridLayoutEventParams> | undefined;
197
+ saveLayouts?: import("@zeedhi/core").IEvent<IEventParam<any> | import("@zeedhi/teknisa-components-common").ITekGridLayoutEventParams> | undefined;
198
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any> | import("@zeedhi/teknisa-components-common").ITekGridLayoutEventParams, import("@zeedhi/core").IEvent<IEventParam<any> | import("@zeedhi/teknisa-components-common").ITekGridLayoutEventParams>> | undefined;
199
+ click?: import("@zeedhi/common").EventDef<IEventParam<any> | import("@zeedhi/teknisa-components-common").ITekGridLayoutEventParams, import("@zeedhi/core").IEvent<IEventParam<any> | import("@zeedhi/teknisa-components-common").ITekGridLayoutEventParams>> | undefined;
200
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any> | import("@zeedhi/teknisa-components-common").ITekGridLayoutEventParams, import("@zeedhi/core").IEvent<IEventParam<any> | import("@zeedhi/teknisa-components-common").ITekGridLayoutEventParams>> | undefined;
201
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any> | import("@zeedhi/teknisa-components-common").ITekGridLayoutEventParams, import("@zeedhi/core").IEvent<IEventParam<any> | import("@zeedhi/teknisa-components-common").ITekGridLayoutEventParams>> | undefined;
202
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any> | import("@zeedhi/teknisa-components-common").ITekGridLayoutEventParams, import("@zeedhi/core").IEvent<IEventParam<any> | import("@zeedhi/teknisa-components-common").ITekGridLayoutEventParams>> | undefined;
203
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any> | import("@zeedhi/teknisa-components-common").ITekGridLayoutEventParams, import("@zeedhi/core").IEvent<IEventParam<any> | import("@zeedhi/teknisa-components-common").ITekGridLayoutEventParams>> | undefined;
204
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any> | import("@zeedhi/teknisa-components-common").ITekGridLayoutEventParams, import("@zeedhi/core").IEvent<IEventParam<any> | import("@zeedhi/teknisa-components-common").ITekGridLayoutEventParams>> | undefined;
205
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any> | import("@zeedhi/teknisa-components-common").ITekGridLayoutEventParams, import("@zeedhi/core").IEvent<IEventParam<any> | import("@zeedhi/teknisa-components-common").ITekGridLayoutEventParams>> | undefined;
206
+ };
207
+ grid: {
208
+ datasource: {
209
+ data: import("@zeedhi/core").IDictionary<any>[];
210
+ defaultLimit: number;
211
+ filter: import("@zeedhi/core").IDictionary<any>;
212
+ loadAll: boolean;
213
+ loading: boolean;
214
+ order: string[];
215
+ page: number;
216
+ search: string;
217
+ searchIn: string[];
218
+ selectedRows: import("@zeedhi/core").IDictionary<any>[];
219
+ uniqueKey: string;
220
+ visibleSelectedRows: import("@zeedhi/core").IDictionary<any>[];
221
+ watchUrl: boolean;
222
+ error: any;
223
+ events: {
224
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
225
+ onChangeCurrentRow?: import("@zeedhi/core").IEvent<IEventParam<any>> | undefined;
226
+ onChangePagination?: import("@zeedhi/core").IEvent<IEventParam<any>> | undefined;
227
+ };
228
+ initialize: () => void | Promise<void>;
229
+ destroy: () => void;
230
+ currentRow: import("@zeedhi/core").IDictionary<any>;
231
+ limit: number;
232
+ total: number;
233
+ urlHasChanged: () => boolean;
234
+ get: () => Promise<any>;
235
+ post: (row: import("@zeedhi/core").IDictionary<any>) => Promise<any>;
236
+ put: (row: import("@zeedhi/core").IDictionary<any>) => Promise<any>;
237
+ delete: (row?: import("@zeedhi/core").IDictionary<any> | undefined) => Promise<any>;
238
+ updateData: (data: import("@zeedhi/core").IDictionary<any>[]) => Promise<any>;
239
+ getLoadedData: () => import("@zeedhi/core").IDictionary<any>[];
240
+ setSearch: (search: string) => Promise<any>;
241
+ addFilter: (column: string, value: any) => Promise<any>;
242
+ removeFilter: (column: string) => Promise<any>;
243
+ setFilter: (filter: import("@zeedhi/core").IDictionary<any>) => Promise<any>;
244
+ clearFilter: () => Promise<any>;
245
+ setLimit: (limit: number, replaceUrl?: boolean | undefined) => Promise<any>;
246
+ setPage: (page: number, replaceUrl?: boolean | undefined) => Promise<any>;
247
+ addOrder: (column: string, value: import("@zeedhi/core").Order) => Promise<any>;
248
+ removeOrder: (column: string) => Promise<any>;
249
+ setOrder: (order: string[]) => Promise<any>;
250
+ clearOrder: () => Promise<any>;
251
+ getOrderByColumn: (column: string) => import("@zeedhi/core").Order | null;
252
+ selectRow: (row: import("@zeedhi/core").IDictionary<any>) => void;
253
+ deselectRow: (row: import("@zeedhi/core").IDictionary<any>) => void;
254
+ updateSelectedPage: () => Promise<any> | import("@zeedhi/core").IDictionary<any>[];
255
+ clone: () => import("@zeedhi/core").IDatasource;
256
+ registerGetCallback: (callback: import("@zeedhi/core").Callback) => void;
257
+ hasFilter: (columnName: string) => boolean;
258
+ };
259
+ columns: {
260
+ filterProps: {
261
+ [x: string]: any;
262
+ relation?: import("@zeedhi/teknisa-components-common").IFilterRelation | undefined;
263
+ operation?: import("@zeedhi/teknisa-components-common").IFilterOperation | undefined;
264
+ helperOptions?: string[] | undefined;
265
+ helperValue?: string | undefined;
266
+ allowDuplicate?: boolean | undefined;
267
+ autofocus?: boolean | undefined;
268
+ children?: {
269
+ [x: string]: any;
270
+ allowDuplicate?: boolean | undefined;
271
+ autofocus?: boolean | undefined;
272
+ children?: any[] | undefined;
273
+ componentId?: number | undefined;
274
+ cssClass?: string | undefined;
275
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
276
+ events?: {
277
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
278
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
279
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
280
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
281
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
282
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
283
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
284
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
285
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
286
+ } | undefined;
287
+ directives?: {
288
+ [x: string]: {
289
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
290
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
291
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
292
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
293
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
294
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
295
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
296
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
297
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
298
+ } | undefined;
299
+ touch?: {
300
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
301
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
302
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
303
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
304
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
305
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
306
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
307
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
308
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
309
+ } | undefined;
310
+ } | undefined;
311
+ isVisible?: string | boolean | undefined;
312
+ dark?: boolean | undefined;
313
+ light?: boolean | undefined;
314
+ theme?: string | undefined;
315
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
316
+ name: string;
317
+ parent?: {
318
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
319
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
320
+ allowDuplicate: boolean;
321
+ autofocus: boolean;
322
+ children: any[];
323
+ componentId: number;
324
+ cssClass: string;
325
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
326
+ events: {
327
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
328
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
329
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
330
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
331
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
332
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
333
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
334
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
335
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
336
+ };
337
+ directives: {
338
+ [x: string]: {
339
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
340
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
341
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
342
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
343
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
344
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
345
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
346
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
347
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
348
+ } | undefined;
349
+ touch?: {
350
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
351
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
352
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
353
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
354
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
355
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
356
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
357
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
358
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
359
+ } | undefined;
360
+ };
361
+ isVisible: string | boolean;
362
+ dark: boolean;
363
+ light: boolean;
364
+ theme?: string | undefined;
365
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
366
+ name: string;
367
+ parent?: any | undefined;
368
+ tabStop: boolean;
369
+ userProperties: import("@zeedhi/core").IDictionary<any>;
370
+ fillHeight: boolean;
371
+ } | undefined;
372
+ tabStop?: boolean | undefined;
373
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
374
+ fillHeight?: boolean | undefined;
375
+ }[] | undefined;
376
+ componentId?: number | undefined;
377
+ cssClass?: string | undefined;
378
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
379
+ events?: {
380
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
381
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
382
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
383
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
384
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
385
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
386
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
387
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
388
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
389
+ } | undefined;
390
+ directives?: {
391
+ [x: string]: {
392
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
393
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
394
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
395
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
396
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
397
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
398
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
399
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
400
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
401
+ } | undefined;
402
+ touch?: {
403
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
404
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
405
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
406
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
407
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
408
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
409
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
410
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
411
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
412
+ } | undefined;
413
+ } | undefined;
414
+ isVisible?: string | boolean | undefined;
415
+ dark?: boolean | undefined;
416
+ light?: boolean | undefined;
417
+ theme?: string | undefined;
418
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
419
+ name: string;
420
+ parent?: {
421
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
422
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
423
+ allowDuplicate: boolean;
424
+ autofocus: boolean;
425
+ children: any[];
426
+ componentId: number;
427
+ cssClass: string;
428
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
429
+ events: {
430
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
431
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
432
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
433
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
434
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
435
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
436
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
437
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
438
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
439
+ };
440
+ directives: {
441
+ [x: string]: {
442
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
443
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
444
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
445
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
446
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
447
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
448
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
449
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
450
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
451
+ } | undefined;
452
+ touch?: {
453
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
454
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
455
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
456
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
457
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
458
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
459
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
460
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
461
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
462
+ } | undefined;
463
+ };
464
+ isVisible: string | boolean;
465
+ dark: boolean;
466
+ light: boolean;
467
+ theme?: string | undefined;
468
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
469
+ name: string;
470
+ parent?: any | undefined;
471
+ tabStop: boolean;
472
+ userProperties: import("@zeedhi/core").IDictionary<any>;
473
+ fillHeight: boolean;
474
+ } | undefined;
475
+ tabStop?: boolean | undefined;
476
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
477
+ fillHeight?: boolean | undefined;
478
+ } | {
479
+ [x: string]: any;
480
+ relation?: import("@zeedhi/teknisa-components-common").IFilterRelation | undefined;
481
+ operation?: import("@zeedhi/teknisa-components-common").IFilterOperation | undefined;
482
+ helperOptions?: string[] | undefined;
483
+ helperValue?: string | undefined;
484
+ allowDuplicate?: boolean | undefined;
485
+ autofocus?: boolean | undefined;
486
+ children?: {
487
+ [x: string]: any;
488
+ allowDuplicate?: boolean | undefined;
489
+ autofocus?: boolean | undefined;
490
+ children?: any[] | undefined;
491
+ componentId?: number | undefined;
492
+ cssClass?: string | undefined;
493
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
494
+ events?: {
495
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
496
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
497
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
498
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
499
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
500
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
501
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
502
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
503
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
504
+ } | undefined;
505
+ directives?: {
506
+ [x: string]: {
507
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
508
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
509
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
510
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
511
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
512
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
513
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
514
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
515
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
516
+ } | undefined;
517
+ touch?: {
518
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
519
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
520
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
521
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
522
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
523
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
524
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
525
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
526
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
527
+ } | undefined;
528
+ } | undefined;
529
+ isVisible?: string | boolean | undefined;
530
+ dark?: boolean | undefined;
531
+ light?: boolean | undefined;
532
+ theme?: string | undefined;
533
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
534
+ name: string;
535
+ parent?: {
536
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
537
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
538
+ allowDuplicate: boolean;
539
+ autofocus: boolean;
540
+ children: any[];
541
+ componentId: number;
542
+ cssClass: string;
543
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
544
+ events: {
545
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
546
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
547
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
548
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
549
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
550
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
551
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
552
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
553
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
554
+ };
555
+ directives: {
556
+ [x: string]: {
557
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
558
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
559
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
560
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
561
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
562
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
563
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
564
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
565
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
566
+ } | undefined;
567
+ touch?: {
568
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
569
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
570
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
571
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
572
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
573
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
574
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
575
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
576
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
577
+ } | undefined;
578
+ };
579
+ isVisible: string | boolean;
580
+ dark: boolean;
581
+ light: boolean;
582
+ theme?: string | undefined;
583
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
584
+ name: string;
585
+ parent?: any | undefined;
586
+ tabStop: boolean;
587
+ userProperties: import("@zeedhi/core").IDictionary<any>;
588
+ fillHeight: boolean;
589
+ } | undefined;
590
+ tabStop?: boolean | undefined;
591
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
592
+ fillHeight?: boolean | undefined;
593
+ }[] | undefined;
594
+ componentId?: number | undefined;
595
+ cssClass?: string | undefined;
596
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
597
+ events?: {
598
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
599
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
600
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
601
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
602
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
603
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
604
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
605
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
606
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
607
+ } | undefined;
608
+ directives?: {
609
+ [x: string]: {
610
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
611
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
612
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
613
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
614
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
615
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
616
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
617
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
618
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
619
+ } | undefined;
620
+ touch?: {
621
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
622
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
623
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
624
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
625
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
626
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
627
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
628
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
629
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
630
+ } | undefined;
631
+ } | undefined;
632
+ isVisible?: string | boolean | undefined;
633
+ dark?: boolean | undefined;
634
+ light?: boolean | undefined;
635
+ theme?: string | undefined;
636
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
637
+ name: string;
638
+ parent?: {
639
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
640
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
641
+ allowDuplicate: boolean;
642
+ autofocus: boolean;
643
+ children: any[];
644
+ componentId: number;
645
+ cssClass: string;
646
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
647
+ events: {
648
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
649
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
650
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
651
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
652
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
653
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
654
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
655
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
656
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
657
+ };
658
+ directives: {
659
+ [x: string]: {
660
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
661
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
662
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
663
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
664
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
665
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
666
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
667
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
668
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
669
+ } | undefined;
670
+ touch?: {
671
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
672
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
673
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
674
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
675
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
676
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
677
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
678
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
679
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
680
+ } | undefined;
681
+ };
682
+ isVisible: string | boolean;
683
+ dark: boolean;
684
+ light: boolean;
685
+ theme?: string | undefined;
686
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
687
+ name: string;
688
+ parent?: any | undefined;
689
+ tabStop: boolean;
690
+ userProperties: import("@zeedhi/core").IDictionary<any>;
691
+ fillHeight: boolean;
692
+ } | undefined;
693
+ tabStop?: boolean | undefined;
694
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
695
+ fillHeight?: boolean | undefined;
696
+ }[];
697
+ filterable: boolean;
698
+ filterIndex?: number | undefined;
699
+ skipLookupSearch: boolean;
700
+ groupLabelForEmptyValue: string;
701
+ storeData: boolean;
702
+ getBatchLookupData: (lookupColumn: string, values: any[]) => Promise<import("@zeedhi/core").IDictionary<any>[]>;
703
+ memorySearch: (search: string) => Promise<any>;
704
+ grouped: boolean;
705
+ aggregation: "SUM" | "MIN" | "MAX" | "AVG" | "COUNT" | undefined;
706
+ groupOpened: boolean | undefined;
707
+ isVisible: boolean;
708
+ editable: boolean;
709
+ children: {
710
+ [x: string]: any;
711
+ conditions?: import("@zeedhi/core").IDictionary<any> | undefined;
712
+ allowDuplicate?: boolean | undefined;
713
+ autofocus?: boolean | undefined;
714
+ children?: {
715
+ [x: string]: any;
716
+ allowDuplicate?: boolean | undefined;
717
+ autofocus?: boolean | undefined;
718
+ children?: any[] | undefined;
719
+ componentId?: number | undefined;
720
+ cssClass?: string | undefined;
721
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
722
+ events?: {
723
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
724
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
725
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
726
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
727
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
728
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
729
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
730
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
731
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
732
+ } | undefined;
733
+ directives?: {
734
+ [x: string]: {
735
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
736
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
737
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
738
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
739
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
740
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
741
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
742
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
743
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
744
+ } | undefined;
745
+ touch?: {
746
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
747
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
748
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
749
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
750
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
751
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
752
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
753
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
754
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
755
+ } | undefined;
756
+ } | undefined;
757
+ isVisible?: string | boolean | undefined;
758
+ dark?: boolean | undefined;
759
+ light?: boolean | undefined;
760
+ theme?: string | undefined;
761
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
762
+ name: string;
763
+ parent?: {
764
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
765
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
766
+ allowDuplicate: boolean;
767
+ autofocus: boolean;
768
+ children: any[];
769
+ componentId: number;
770
+ cssClass: string;
771
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
772
+ events: {
773
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
774
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
775
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
776
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
777
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
778
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
779
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
780
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
781
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
782
+ };
783
+ directives: {
784
+ [x: string]: {
785
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
786
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
787
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
788
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
789
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
790
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
791
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
792
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
793
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
794
+ } | undefined;
795
+ touch?: {
796
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
797
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
798
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
799
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
800
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
801
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
802
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
803
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
804
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
805
+ } | undefined;
806
+ };
807
+ isVisible: string | boolean;
808
+ dark: boolean;
809
+ light: boolean;
810
+ theme?: string | undefined;
811
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
812
+ name: string;
813
+ parent?: any | undefined;
814
+ tabStop: boolean;
815
+ userProperties: import("@zeedhi/core").IDictionary<any>;
816
+ fillHeight: boolean;
817
+ } | undefined;
818
+ tabStop?: boolean | undefined;
819
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
820
+ fillHeight?: boolean | undefined;
821
+ }[] | undefined;
822
+ componentId?: number | undefined;
823
+ cssClass?: string | undefined;
824
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
825
+ events?: {
826
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
827
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
828
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
829
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
830
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
831
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
832
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
833
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
834
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
835
+ } | undefined;
836
+ directives?: {
837
+ [x: string]: {
838
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
839
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
840
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
841
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
842
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
843
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
844
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
845
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
846
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
847
+ } | undefined;
848
+ touch?: {
849
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
850
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
851
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
852
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
853
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
854
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
855
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
856
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
857
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
858
+ } | undefined;
859
+ } | undefined;
860
+ isVisible?: string | boolean | undefined;
861
+ dark?: boolean | undefined;
862
+ light?: boolean | undefined;
863
+ theme?: string | undefined;
864
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
865
+ name: string;
866
+ parent?: {
867
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
868
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
869
+ allowDuplicate: boolean;
870
+ autofocus: boolean;
871
+ children: any[];
872
+ componentId: number;
873
+ cssClass: string;
874
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
875
+ events: {
876
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
877
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
878
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
879
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
880
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
881
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
882
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
883
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
884
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
885
+ };
886
+ directives: {
887
+ [x: string]: {
888
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
889
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
890
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
891
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
892
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
893
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
894
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
895
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
896
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
897
+ } | undefined;
898
+ touch?: {
899
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
900
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
901
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
902
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
903
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
904
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
905
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
906
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
907
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
908
+ } | undefined;
909
+ };
910
+ isVisible: string | boolean;
911
+ dark: boolean;
912
+ light: boolean;
913
+ theme?: string | undefined;
914
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
915
+ name: string;
916
+ parent?: any | undefined;
917
+ tabStop: boolean;
918
+ userProperties: import("@zeedhi/core").IDictionary<any>;
919
+ fillHeight: boolean;
920
+ } | undefined;
921
+ tabStop?: boolean | undefined;
922
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
923
+ fillHeight?: boolean | undefined;
924
+ }[];
925
+ readonly childrenProps: {
926
+ [x: string]: any;
927
+ allowDuplicate?: boolean | undefined;
928
+ autofocus?: boolean | undefined;
929
+ children?: {
930
+ [x: string]: any;
931
+ allowDuplicate?: boolean | undefined;
932
+ autofocus?: boolean | undefined;
933
+ children?: any[] | undefined;
934
+ componentId?: number | undefined;
935
+ cssClass?: string | undefined;
936
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
937
+ events?: {
938
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
939
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
940
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
941
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
942
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
943
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
944
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
945
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
946
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
947
+ } | undefined;
948
+ directives?: {
949
+ [x: string]: {
950
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
951
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
952
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
953
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
954
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
955
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
956
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
957
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
958
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
959
+ } | undefined;
960
+ touch?: {
961
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
962
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
963
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
964
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
965
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
966
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
967
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
968
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
969
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
970
+ } | undefined;
971
+ } | undefined;
972
+ isVisible?: string | boolean | undefined;
973
+ dark?: boolean | undefined;
974
+ light?: boolean | undefined;
975
+ theme?: string | undefined;
976
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
977
+ name: string;
978
+ parent?: {
979
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
980
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
981
+ allowDuplicate: boolean;
982
+ autofocus: boolean;
983
+ children: any[];
984
+ componentId: number;
985
+ cssClass: string;
986
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
987
+ events: {
988
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
989
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
990
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
991
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
992
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
993
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
994
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
995
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
996
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
997
+ };
998
+ directives: {
999
+ [x: string]: {
1000
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1001
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1002
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1003
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1004
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1005
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1006
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1007
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1008
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1009
+ } | undefined;
1010
+ touch?: {
1011
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1012
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1013
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1014
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1015
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1016
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1017
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1018
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1019
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1020
+ } | undefined;
1021
+ };
1022
+ isVisible: string | boolean;
1023
+ dark: boolean;
1024
+ light: boolean;
1025
+ theme?: string | undefined;
1026
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
1027
+ name: string;
1028
+ parent?: any | undefined;
1029
+ tabStop: boolean;
1030
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1031
+ fillHeight: boolean;
1032
+ } | undefined;
1033
+ tabStop?: boolean | undefined;
1034
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1035
+ fillHeight?: boolean | undefined;
1036
+ }[] | undefined;
1037
+ componentId?: number | undefined;
1038
+ cssClass?: string | undefined;
1039
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1040
+ events?: {
1041
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1042
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1043
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1044
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1045
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1046
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1047
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1048
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1049
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1050
+ } | undefined;
1051
+ directives?: {
1052
+ [x: string]: {
1053
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1054
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1055
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1056
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1057
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1058
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1059
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1060
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1061
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1062
+ } | undefined;
1063
+ touch?: {
1064
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1065
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1066
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1067
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1068
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1069
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1070
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1071
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1072
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1073
+ } | undefined;
1074
+ } | undefined;
1075
+ isVisible?: string | boolean | undefined;
1076
+ dark?: boolean | undefined;
1077
+ light?: boolean | undefined;
1078
+ theme?: string | undefined;
1079
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
1080
+ name: string;
1081
+ parent?: {
1082
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1083
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1084
+ allowDuplicate: boolean;
1085
+ autofocus: boolean;
1086
+ children: any[];
1087
+ componentId: number;
1088
+ cssClass: string;
1089
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1090
+ events: {
1091
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1092
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1093
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1094
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1095
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1096
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1097
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1098
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1099
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1100
+ };
1101
+ directives: {
1102
+ [x: string]: {
1103
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1104
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1105
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1106
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1107
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1108
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1109
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1110
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1111
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1112
+ } | undefined;
1113
+ touch?: {
1114
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1115
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1116
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1117
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1118
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1119
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1120
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1121
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1122
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1123
+ } | undefined;
1124
+ };
1125
+ isVisible: string | boolean;
1126
+ dark: boolean;
1127
+ light: boolean;
1128
+ theme?: string | undefined;
1129
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
1130
+ name: string;
1131
+ parent?: any | undefined;
1132
+ tabStop: boolean;
1133
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1134
+ fillHeight: boolean;
1135
+ } | undefined;
1136
+ tabStop?: boolean | undefined;
1137
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1138
+ fillHeight?: boolean | undefined;
1139
+ }[];
1140
+ getColumnWithoutConditions: (component: any) => any;
1141
+ checkOutValues: (component: any, row: import("@zeedhi/core").IDictionary<any>, newRow: import("@zeedhi/core").IDictionary<any>) => void;
1142
+ align: import("@zeedhi/common").ColumnAlign;
1143
+ label: string;
1144
+ width?: string | undefined;
1145
+ maxWidth?: string | undefined;
1146
+ minWidth?: string | undefined;
1147
+ mask: string;
1148
+ type?: "action" | undefined;
1149
+ actionFixed: boolean;
1150
+ fixed: boolean;
1151
+ sortable: boolean;
1152
+ loading: boolean;
1153
+ componentProps: any;
1154
+ style: import("@zeedhi/core").IDictionary<any>;
1155
+ xlsType: string;
1156
+ lookupData: any;
1157
+ lookupDataCount: number;
1158
+ overflow: string | number;
1159
+ conditions: import("@zeedhi/core").IDictionary<any>;
1160
+ helperText: string;
1161
+ setViewGetWidth: (viewGetWidth: () => number) => void;
1162
+ setLookupDataFilter: (filter: import("@zeedhi/core").IDictionary<any>) => void;
1163
+ getWidth: () => number;
1164
+ formatterByRow: (row: import("@zeedhi/core").IDictionary<any>, cellProps?: import("@zeedhi/core").IDictionary<any> | undefined) => any;
1165
+ formatter: (value: any, cellProps?: import("@zeedhi/core").IDictionary<any> | undefined) => any;
1166
+ getLookupData: (lookupColumn: string, value: any) => any;
1167
+ initialize: () => void;
1168
+ clearLookupData: () => void;
1169
+ onBeforeDestroy: () => void;
1170
+ allowDuplicate: boolean;
1171
+ autofocus: boolean;
1172
+ childrenInstances: any[];
1173
+ cssClass: string;
1174
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1175
+ directives: {
1176
+ [x: string]: {
1177
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1178
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1179
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1180
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1181
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1182
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1183
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1184
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1185
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1186
+ } | undefined;
1187
+ touch?: {
1188
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1189
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1190
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1191
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1192
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1193
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1194
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1195
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1196
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1197
+ } | undefined;
1198
+ };
1199
+ events: {
1200
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1201
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1202
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1203
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1204
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1205
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1206
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1207
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1208
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1209
+ };
1210
+ name: string;
1211
+ dark: boolean;
1212
+ light: boolean;
1213
+ theme?: string | undefined;
1214
+ fillHeight: boolean;
1215
+ parent?: {
1216
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1217
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1218
+ allowDuplicate: boolean;
1219
+ autofocus: boolean;
1220
+ children: any[];
1221
+ componentId: number;
1222
+ cssClass: string;
1223
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1224
+ events: {
1225
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1226
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1227
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1228
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1229
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1230
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1231
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1232
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1233
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1234
+ };
1235
+ directives: {
1236
+ [x: string]: {
1237
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1238
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1239
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1240
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1241
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1242
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1243
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1244
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1245
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1246
+ } | undefined;
1247
+ touch?: {
1248
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1249
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1250
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1251
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1252
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1253
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1254
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1255
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1256
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1257
+ } | undefined;
1258
+ };
1259
+ isVisible: string | boolean;
1260
+ dark: boolean;
1261
+ light: boolean;
1262
+ theme?: string | undefined;
1263
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
1264
+ name: string;
1265
+ parent?: any | undefined;
1266
+ tabStop: boolean;
1267
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1268
+ fillHeight: boolean;
1269
+ } | undefined;
1270
+ componentId: number;
1271
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
1272
+ isFocused: boolean;
1273
+ tabStop: boolean;
1274
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1275
+ setViewFocus: (viewFocus: () => void) => void;
1276
+ setFocus: () => void;
1277
+ callEvent: (eventName: string, args: any) => boolean;
1278
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
1279
+ removeChild: (name: string) => void;
1280
+ getChildInstance: <T_1>(name: string) => T_1;
1281
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1282
+ onCreated: () => void;
1283
+ onBeforeMount: () => void;
1284
+ onMounted: (element: any) => void;
1285
+ onDestroyed: () => void;
1286
+ click: (event?: Event | undefined, element?: any) => void;
1287
+ focus: (event: Event, element: any) => void;
1288
+ blur: (event: Event, element: any) => void;
1289
+ mouseenter: (event?: Event | undefined, element?: any) => void;
1290
+ mouseleave: (event?: Event | undefined, element?: any) => void;
1291
+ mouseout: (event?: Event | undefined, element?: any) => void;
1292
+ mouseover: (event?: Event | undefined, element?: any) => void;
1293
+ }[];
1294
+ pageSizes: string[];
1295
+ events: {
1296
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1297
+ changeLayout?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1298
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1299
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1300
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1301
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1302
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1303
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1304
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1305
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1306
+ };
1307
+ virtualScroll: boolean;
1308
+ virtualScrollCache: number;
1309
+ searchVisibleOnly: boolean;
1310
+ defaultSearchVisibleOnly: boolean;
1311
+ updateData: (data: import("@zeedhi/core").IDictionary<any>[]) => Promise<any>;
1312
+ getAppliedConditions: (args: {
1313
+ row: import("@zeedhi/core").IDictionary<any>;
1314
+ column: import("@zeedhi/common").Column;
1315
+ path?: string | undefined;
1316
+ }) => Partial<import("@zeedhi/common").IComponentRender>;
1317
+ getCurrentRowIndex: () => number;
1318
+ getPage: () => number;
1319
+ setPage: (page: number) => Promise<any>;
1320
+ getLastPage: () => number;
1321
+ onCreated: () => void;
1322
+ createColumn: (columnProps: import("@zeedhi/common").IColumn) => import("@zeedhi/teknisa-components-common").TekGridColumn;
1323
+ getColumn: (name: string) => import("@zeedhi/teknisa-components-common").TekGridColumn;
1324
+ readonly pageText: string;
1325
+ readonly paginationLength: number;
1326
+ getCellWithAppliedConditions: (columns: import("@zeedhi/common").Column[], row: import("@zeedhi/core").IDictionary<any>) => import("@zeedhi/core").IDictionary<import("@zeedhi/core").IDictionary<any>>;
1327
+ reapplyConditions: (row: import("@zeedhi/core").IDictionary<any>, columns?: import("@zeedhi/common").Column[] | undefined) => import("@zeedhi/core").IDictionary<import("@zeedhi/core").IDictionary<any>>;
1328
+ reload: () => Promise<any>;
1329
+ changeData: (data: import("@zeedhi/core").IDictionary<any>[]) => void;
1330
+ onBeforeDestroy: () => void;
1331
+ changeLayout: (event?: Event | undefined, element?: any) => void;
1332
+ setSearch: (search: string) => Promise<any>;
1333
+ setCurrentRow: (row: import("@zeedhi/core").IDictionary<any>) => void;
1334
+ setOrder: (order: string[]) => Promise<any>;
1335
+ getRowKey: (row: import("@zeedhi/core").IDictionary<any>) => any;
1336
+ delete: (row: import("@zeedhi/core").IDictionary<any>) => Promise<any>;
1337
+ getData: () => import("@zeedhi/core").IDictionary<any>[];
1338
+ findRow: (key: string | number) => import("@zeedhi/core").IDictionary<any> | undefined;
1339
+ children: {
1340
+ [x: string]: any;
1341
+ children?: any[] | undefined;
1342
+ component: string;
1343
+ allowDuplicate?: boolean | undefined;
1344
+ autofocus?: boolean | undefined;
1345
+ componentId?: number | undefined;
1346
+ cssClass?: string | undefined;
1347
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1348
+ events?: {
1349
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1350
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1351
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1352
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1353
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1354
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1355
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1356
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1357
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1358
+ } | undefined;
1359
+ directives?: {
1360
+ [x: string]: {
1361
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1362
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1363
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1364
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1365
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1366
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1367
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1368
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1369
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1370
+ } | undefined;
1371
+ touch?: {
1372
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1373
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1374
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1375
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1376
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1377
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1378
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1379
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1380
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1381
+ } | undefined;
1382
+ } | undefined;
1383
+ isVisible?: string | boolean | undefined;
1384
+ dark?: boolean | undefined;
1385
+ light?: boolean | undefined;
1386
+ theme?: string | undefined;
1387
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
1388
+ name: string;
1389
+ parent?: {
1390
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1391
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1392
+ allowDuplicate: boolean;
1393
+ autofocus: boolean;
1394
+ children: any[];
1395
+ componentId: number;
1396
+ cssClass: string;
1397
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1398
+ events: {
1399
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1400
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1401
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1402
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1403
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1404
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1405
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1406
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1407
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1408
+ };
1409
+ directives: {
1410
+ [x: string]: {
1411
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1412
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1413
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1414
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1415
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1416
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1417
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1418
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1419
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1420
+ } | undefined;
1421
+ touch?: {
1422
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1423
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1424
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1425
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1426
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1427
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1428
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1429
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1430
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1431
+ } | undefined;
1432
+ };
1433
+ isVisible: string | boolean;
1434
+ dark: boolean;
1435
+ light: boolean;
1436
+ theme?: string | undefined;
1437
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
1438
+ name: string;
1439
+ parent?: any | undefined;
1440
+ tabStop: boolean;
1441
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1442
+ fillHeight: boolean;
1443
+ } | undefined;
1444
+ tabStop?: boolean | undefined;
1445
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1446
+ fillHeight?: boolean | undefined;
1447
+ }[];
1448
+ component: string;
1449
+ allowDuplicate: boolean;
1450
+ autofocus: boolean;
1451
+ childrenInstances: any[];
1452
+ cssClass: string;
1453
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1454
+ directives: {
1455
+ [x: string]: {
1456
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1457
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1458
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1459
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1460
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1461
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1462
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1463
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1464
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1465
+ } | undefined;
1466
+ touch?: {
1467
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1468
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1469
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1470
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1471
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1472
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1473
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1474
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1475
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1476
+ } | undefined;
1477
+ };
1478
+ isVisible: boolean;
1479
+ name: string;
1480
+ dark: boolean;
1481
+ light: boolean;
1482
+ theme?: string | undefined;
1483
+ fillHeight: boolean;
1484
+ parent?: {
1485
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1486
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1487
+ allowDuplicate: boolean;
1488
+ autofocus: boolean;
1489
+ children: any[];
1490
+ componentId: number;
1491
+ cssClass: string;
1492
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1493
+ events: {
1494
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1495
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1496
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1497
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1498
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1499
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1500
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1501
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1502
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1503
+ };
1504
+ directives: {
1505
+ [x: string]: {
1506
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1507
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1508
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1509
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1510
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1511
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1512
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1513
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1514
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1515
+ } | undefined;
1516
+ touch?: {
1517
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1518
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1519
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1520
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1521
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1522
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1523
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1524
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1525
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1526
+ } | undefined;
1527
+ };
1528
+ isVisible: string | boolean;
1529
+ dark: boolean;
1530
+ light: boolean;
1531
+ theme?: string | undefined;
1532
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
1533
+ name: string;
1534
+ parent?: any | undefined;
1535
+ tabStop: boolean;
1536
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1537
+ fillHeight: boolean;
1538
+ } | undefined;
1539
+ componentId: number;
1540
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
1541
+ isFocused: boolean;
1542
+ tabStop: boolean;
1543
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1544
+ setViewFocus: (viewFocus: () => void) => void;
1545
+ setFocus: () => void;
1546
+ callEvent: (eventName: string, args: any) => boolean;
1547
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
1548
+ removeChild: (name: string) => void;
1549
+ getChildInstance: <T_1>(name: string) => T_1;
1550
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1551
+ onBeforeMount: () => void;
1552
+ onMounted: (element: any) => void;
1553
+ onDestroyed: () => void;
1554
+ click: (event?: Event | undefined, element?: any) => void;
1555
+ focus: (event: Event, element: any) => void;
1556
+ blur: (event: Event, element: any) => void;
1557
+ mouseenter: (event?: Event | undefined, element?: any) => void;
1558
+ mouseleave: (event?: Event | undefined, element?: any) => void;
1559
+ mouseout: (event?: Event | undefined, element?: any) => void;
1560
+ mouseover: (event?: Event | undefined, element?: any) => void;
1561
+ };
1562
+ onMounted: (element: HTMLElement) => Promise<void>;
1563
+ getHelperValue: (column: import("@zeedhi/common").Column) => string | (string | undefined)[] | undefined;
1564
+ newLayout: (layout: ITekGridLayout) => void;
1565
+ addLayout: (layout: ITekGridLayout) => void;
1566
+ discardChanges: () => void;
1567
+ applyLayout: (name: string, save?: boolean | undefined) => void;
1568
+ deleteLayout: (name: string) => void;
1569
+ updateLayout: (name: string, layout: ITekGridLayout) => void;
1570
+ updateDefaultLayout: (layout: ITekGridLayout) => void;
1571
+ children: {
1572
+ [x: string]: any;
1573
+ children?: any[] | undefined;
1574
+ component: string;
1575
+ allowDuplicate?: boolean | undefined;
1576
+ autofocus?: boolean | undefined;
1577
+ componentId?: number | undefined;
1578
+ cssClass?: string | undefined;
1579
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1580
+ events?: {
1581
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1582
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1583
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1584
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1585
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1586
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1587
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1588
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1589
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1590
+ } | undefined;
1591
+ directives?: {
1592
+ [x: string]: {
1593
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1594
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1595
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1596
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1597
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1598
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1599
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1600
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1601
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1602
+ } | undefined;
1603
+ touch?: {
1604
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1605
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1606
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1607
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1608
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1609
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1610
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1611
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1612
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1613
+ } | undefined;
1614
+ } | undefined;
1615
+ isVisible?: string | boolean | undefined;
1616
+ dark?: boolean | undefined;
1617
+ light?: boolean | undefined;
1618
+ theme?: string | undefined;
1619
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
1620
+ name: string;
1621
+ parent?: {
1622
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1623
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1624
+ allowDuplicate: boolean;
1625
+ autofocus: boolean;
1626
+ children: any[];
1627
+ componentId: number;
1628
+ cssClass: string;
1629
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1630
+ events: {
1631
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1632
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1633
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1634
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1635
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1636
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1637
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1638
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1639
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1640
+ };
1641
+ directives: {
1642
+ [x: string]: {
1643
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1644
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1645
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1646
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1647
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1648
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1649
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1650
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1651
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1652
+ } | undefined;
1653
+ touch?: {
1654
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1655
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1656
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1657
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1658
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1659
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1660
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1661
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1662
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1663
+ } | undefined;
1664
+ };
1665
+ isVisible: string | boolean;
1666
+ dark: boolean;
1667
+ light: boolean;
1668
+ theme?: string | undefined;
1669
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
1670
+ name: string;
1671
+ parent?: any | undefined;
1672
+ tabStop: boolean;
1673
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1674
+ fillHeight: boolean;
1675
+ } | undefined;
1676
+ tabStop?: boolean | undefined;
1677
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1678
+ fillHeight?: boolean | undefined;
1679
+ }[];
1680
+ component: string;
1681
+ allowDuplicate: boolean;
1682
+ autofocus: boolean;
1683
+ childrenInstances: any[];
1684
+ cssClass: string;
1685
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1686
+ directives: {
1687
+ [x: string]: {
1688
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1689
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1690
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1691
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1692
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1693
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1694
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1695
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1696
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1697
+ } | undefined;
1698
+ touch?: {
1699
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1700
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1701
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1702
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1703
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1704
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1705
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1706
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1707
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1708
+ } | undefined;
1709
+ };
1710
+ isVisible: boolean;
1711
+ name: string;
1712
+ dark: boolean;
1713
+ light: boolean;
1714
+ theme?: string | undefined;
1715
+ fillHeight: boolean;
1716
+ parent?: {
1717
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1718
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1719
+ allowDuplicate: boolean;
1720
+ autofocus: boolean;
1721
+ children: any[];
1722
+ componentId: number;
1723
+ cssClass: string;
1724
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1725
+ events: {
1726
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1727
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1728
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1729
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1730
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1731
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1732
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1733
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1734
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1735
+ };
1736
+ directives: {
1737
+ [x: string]: {
1738
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1739
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1740
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1741
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1742
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1743
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1744
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1745
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1746
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1747
+ } | undefined;
1748
+ touch?: {
1749
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1750
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1751
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1752
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1753
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1754
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1755
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1756
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1757
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1758
+ } | undefined;
1759
+ };
1760
+ isVisible: string | boolean;
1761
+ dark: boolean;
1762
+ light: boolean;
1763
+ theme?: string | undefined;
1764
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
1765
+ name: string;
1766
+ parent?: any | undefined;
1767
+ tabStop: boolean;
1768
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1769
+ fillHeight: boolean;
1770
+ } | undefined;
1771
+ componentId: number;
1772
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
1773
+ isFocused: boolean;
1774
+ tabStop: boolean;
1775
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1776
+ setViewFocus: (viewFocus: () => void) => void;
1777
+ setFocus: () => void;
1778
+ callEvent: (eventName: string, args: any) => boolean;
1779
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
1780
+ removeChild: (name: string) => void;
1781
+ getChildInstance: <T_1>(name: string) => T_1;
1782
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1783
+ onCreated: () => void;
1784
+ onBeforeMount: () => void;
1785
+ onBeforeDestroy: () => void;
1786
+ onDestroyed: () => void;
1787
+ click: (event?: Event | undefined, element?: any) => void;
1788
+ focus: (event: Event, element: any) => void;
1789
+ blur: (event: Event, element: any) => void;
1790
+ mouseenter: (event?: Event | undefined, element?: any) => void;
1791
+ mouseleave: (event?: Event | undefined, element?: any) => void;
1792
+ mouseout: (event?: Event | undefined, element?: any) => void;
1793
+ mouseover: (event?: Event | undefined, element?: any) => void;
1794
+ };
1795
+ root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, HTMLElement | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null>>;
1796
+ menuActive: import("vue").Ref<boolean, boolean>;
1797
+ confirmLayoutClick: ({ component }: IEventParam<Input>) => void;
1798
+ applyOrUpdateLayout: (event: Event, layoutName: string) => void;
1799
+ deleteLayout: (event: Event, layoutName: string) => void;
1800
+ mergeProps: typeof mergeProps;
1801
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1802
+ children: {
1803
+ type: (StringConstructor | {
1804
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1805
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1806
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
1807
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
1808
+ isArray(arg: any): arg is any[];
1809
+ readonly prototype: any[];
1810
+ from<T>(arrayLike: ArrayLike<T>): T[];
1811
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
1812
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
1813
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
1814
+ of<T_4>(...items: T_4[]): T_4[];
1815
+ readonly [Symbol.species]: ArrayConstructor;
1816
+ })[];
1817
+ default(): never[];
1818
+ };
1819
+ component: {
1820
+ type: StringConstructor;
1821
+ };
1822
+ allowDuplicate: {
1823
+ type: (StringConstructor | BooleanConstructor)[];
1824
+ default: boolean;
1825
+ };
1826
+ autofocus: {
1827
+ type: (StringConstructor | BooleanConstructor)[];
1828
+ default: boolean;
1829
+ };
1830
+ cssClass: {
1831
+ type: StringConstructor;
1832
+ default: string;
1833
+ };
1834
+ cssStyle: {
1835
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
1836
+ default: string;
1837
+ };
1838
+ dark: {
1839
+ type: (StringConstructor | BooleanConstructor)[];
1840
+ default: boolean;
1841
+ };
1842
+ directives: {
1843
+ type: ObjectConstructor;
1844
+ default(): {};
1845
+ };
1846
+ events: {
1847
+ type: ObjectConstructor;
1848
+ default(): {};
1849
+ };
1850
+ instanceObject: {
1851
+ type: ObjectConstructor;
1852
+ };
1853
+ isVisible: {
1854
+ type: (StringConstructor | BooleanConstructor)[];
1855
+ default: boolean;
1856
+ };
1857
+ keyMap: {
1858
+ type: ObjectConstructor;
1859
+ default(): {};
1860
+ };
1861
+ light: {
1862
+ type: (StringConstructor | BooleanConstructor)[];
1863
+ default: boolean;
1864
+ };
1865
+ name: {
1866
+ type: StringConstructor;
1867
+ required: true;
1868
+ };
1869
+ parent: {
1870
+ type: ObjectConstructor;
1871
+ };
1872
+ tabStop: {
1873
+ type: (StringConstructor | BooleanConstructor)[];
1874
+ default: boolean;
1875
+ };
1876
+ theme: {
1877
+ type: StringConstructor;
1878
+ };
1879
+ }>> & Readonly<{}>, {
1880
+ children: string | import("@zeedhi/common").IComponentRender[];
1881
+ allowDuplicate: string | boolean;
1882
+ autofocus: string | boolean;
1883
+ cssClass: string;
1884
+ cssStyle: import("vue").StyleValue;
1885
+ dark: string | boolean;
1886
+ directives: Record<string, any>;
1887
+ events: Record<string, any>;
1888
+ isVisible: string | boolean;
1889
+ keyMap: Record<string, any>;
1890
+ light: string | boolean;
1891
+ tabStop: string | boolean;
1892
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1893
+ export default layoutOptionsComponent;