@zeedhi/teknisa-components-vuetify 3.0.0 → 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 (59) hide show
  1. package/.package.json +10 -7
  2. package/dist/teknisa-vuetify.css +1 -1
  3. package/dist/teknisa-vuetify.js +3777 -14
  4. package/package.json +3 -3
  5. package/src/components/index.ts +22 -0
  6. package/src/components/public.ts +14 -18
  7. package/src/components/tek-grid/TekGrid.ts +318 -0
  8. package/src/components/tek-grid/TekGrid.vue +235 -0
  9. package/src/components/tek-grid/column-filter/TekGridColumnFilter.ts +244 -0
  10. package/src/components/tek-grid/column-filter/TekGridColumnFilter.vue +93 -0
  11. package/src/components/tek-grid/column-header/TekGridHeaderRow.ts +147 -0
  12. package/src/components/tek-grid/column-header/TekGridHeaderRow.vue +78 -0
  13. package/src/components/tek-grid/columns-button/TekGridColumnsButton.ts +96 -0
  14. package/src/components/tek-grid/columns-button/TekGridColumnsButton.vue +273 -0
  15. package/src/components/tek-grid/columns-button/TekGridColumnsOptionsController.ts +470 -0
  16. package/src/components/tek-grid/columns-button/TekGridColumnsOptionsModal.ts +513 -0
  17. package/src/components/tek-grid/filter-button/TekGridFilterButton.ts +47 -0
  18. package/src/components/tek-grid/filter-button/TekGridFilterButton.vue +28 -0
  19. package/src/components/tek-grid/indentation/TekGridIndentation.ts +21 -0
  20. package/src/components/tek-grid/indentation/TekGridIndentation.vue +33 -0
  21. package/src/components/tek-grid/layout-options/TekGridLayoutOptions.ts +119 -0
  22. package/src/components/tek-grid/layout-options/TekGridLayoutOptions.vue +172 -0
  23. package/src/components/tek-grid/row/TekGridFooterRow.ts +62 -0
  24. package/src/components/tek-grid/row/TekGridFooterRow.vue +64 -0
  25. package/src/components/tek-grid/row/TekGridGroupRow.ts +65 -0
  26. package/src/components/tek-grid/row/TekGridGroupRow.vue +65 -0
  27. package/src/components/tek-user-info/TekUserInfo.ts +51 -0
  28. package/src/components/tek-user-info/TekUserInfo.vue +53 -0
  29. package/src/components/tek-user-info/TekUserInfoList.ts +39 -0
  30. package/src/components/tek-user-info/TekUserInfoList.vue +12 -0
  31. package/src/composables/useTableLayout.ts +290 -0
  32. package/src/utils/isArrayOperation.ts +5 -0
  33. package/types/components/public.d.ts +8 -1
  34. package/types/components/tek-grid/TekGrid.d.ts +7211 -0
  35. package/types/components/tek-grid/TekGrid.ts.d.ts +7211 -0
  36. package/types/components/tek-grid/column-filter/TekGridColumnFilter.d.ts +130 -0
  37. package/types/components/tek-grid/column-filter/TekGridColumnFilter.ts.d.ts +130 -0
  38. package/types/components/tek-grid/column-header/TekGridHeaderRow.d.ts +225 -0
  39. package/types/components/tek-grid/column-header/TekGridHeaderRow.ts.d.ts +225 -0
  40. package/types/components/tek-grid/columns-button/TekGridColumnsButton.d.ts +2432 -0
  41. package/types/components/tek-grid/columns-button/TekGridColumnsButton.ts.d.ts +2432 -0
  42. package/types/components/tek-grid/columns-button/TekGridColumnsOptionsController.d.ts +66 -0
  43. package/types/components/tek-grid/columns-button/TekGridColumnsOptionsModal.d.ts +9 -0
  44. package/types/components/tek-grid/filter-button/TekGridFilterButton.d.ts +2920 -0
  45. package/types/components/tek-grid/filter-button/TekGridFilterButton.ts.d.ts +2920 -0
  46. package/types/components/tek-grid/indentation/TekGridIndentation.d.ts +32 -0
  47. package/types/components/tek-grid/indentation/TekGridIndentation.ts.d.ts +32 -0
  48. package/types/components/tek-grid/layout-options/TekGridLayoutOptions.d.ts +1893 -0
  49. package/types/components/tek-grid/layout-options/TekGridLayoutOptions.ts.d.ts +1893 -0
  50. package/types/components/tek-grid/row/TekGridFooterRow.d.ts +90 -0
  51. package/types/components/tek-grid/row/TekGridFooterRow.ts.d.ts +90 -0
  52. package/types/components/tek-grid/row/TekGridGroupRow.d.ts +87 -0
  53. package/types/components/tek-grid/row/TekGridGroupRow.ts.d.ts +87 -0
  54. package/types/components/tek-user-info/TekUserInfo.d.ts +1940 -0
  55. package/types/components/tek-user-info/TekUserInfo.ts.d.ts +1940 -0
  56. package/types/components/tek-user-info/TekUserInfoList.d.ts +1015 -0
  57. package/types/components/tek-user-info/TekUserInfoList.ts.d.ts +1015 -0
  58. package/types/composables/useTableLayout.d.ts +26 -0
  59. package/types/utils/isArrayOperation.d.ts +2 -0
@@ -0,0 +1,2920 @@
1
+ import { Button } from '@zeedhi/common';
2
+ import { IEventParam } from '@zeedhi/core';
3
+ import { ComponentPublicInstance } from 'vue';
4
+ export declare const TekGridFilterButtonProps: {
5
+ gridName: {
6
+ type: StringConstructor;
7
+ default: string;
8
+ };
9
+ grid: {
10
+ type: (StringConstructor | ObjectConstructor)[];
11
+ default: () => void;
12
+ };
13
+ showCheckboxAll: {
14
+ type: (StringConstructor | BooleanConstructor)[];
15
+ default: boolean;
16
+ };
17
+ absolute: {
18
+ type: (StringConstructor | BooleanConstructor)[];
19
+ default: boolean;
20
+ };
21
+ block: {
22
+ type: (StringConstructor | BooleanConstructor)[];
23
+ default: boolean;
24
+ };
25
+ bottom: {
26
+ type: (StringConstructor | BooleanConstructor)[];
27
+ default: boolean;
28
+ };
29
+ color: {
30
+ type: StringConstructor;
31
+ default: string;
32
+ };
33
+ disabled: {
34
+ type: (StringConstructor | BooleanConstructor)[];
35
+ default: boolean;
36
+ };
37
+ fab: {
38
+ type: (StringConstructor | BooleanConstructor)[];
39
+ default: boolean;
40
+ };
41
+ fixed: {
42
+ type: (StringConstructor | BooleanConstructor)[];
43
+ default: boolean;
44
+ };
45
+ flat: {
46
+ type: (StringConstructor | BooleanConstructor)[];
47
+ default: boolean;
48
+ };
49
+ href: {
50
+ type: StringConstructor;
51
+ default: string;
52
+ };
53
+ icon: {
54
+ type: (StringConstructor | BooleanConstructor)[];
55
+ default: boolean;
56
+ };
57
+ iconName: {
58
+ type: StringConstructor;
59
+ default: string;
60
+ };
61
+ label: {
62
+ type: StringConstructor;
63
+ default: string;
64
+ };
65
+ large: {
66
+ type: (StringConstructor | BooleanConstructor)[];
67
+ default: boolean;
68
+ };
69
+ left: {
70
+ type: (StringConstructor | BooleanConstructor)[];
71
+ default: boolean;
72
+ };
73
+ outline: {
74
+ type: (StringConstructor | BooleanConstructor)[];
75
+ default: boolean;
76
+ };
77
+ reverse: {
78
+ type: (StringConstructor | BooleanConstructor)[];
79
+ default: boolean;
80
+ };
81
+ right: {
82
+ type: (StringConstructor | BooleanConstructor)[];
83
+ default: boolean;
84
+ };
85
+ round: {
86
+ type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
87
+ default: boolean;
88
+ };
89
+ small: {
90
+ type: (StringConstructor | BooleanConstructor)[];
91
+ default: boolean;
92
+ };
93
+ target: {
94
+ type: StringConstructor;
95
+ default: string;
96
+ };
97
+ tile: {
98
+ type: (StringConstructor | BooleanConstructor)[];
99
+ default: boolean;
100
+ };
101
+ to: {
102
+ type: StringConstructor;
103
+ default: string;
104
+ };
105
+ top: {
106
+ type: (StringConstructor | BooleanConstructor)[];
107
+ default: boolean;
108
+ };
109
+ type: {
110
+ type: StringConstructor;
111
+ default: string;
112
+ };
113
+ width: {
114
+ type: (StringConstructor | NumberConstructor)[];
115
+ default: string;
116
+ };
117
+ active: {
118
+ type: (StringConstructor | BooleanConstructor)[];
119
+ default: undefined;
120
+ };
121
+ appendIcon: {
122
+ type: StringConstructor;
123
+ };
124
+ border: {
125
+ type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
126
+ default: boolean;
127
+ };
128
+ density: {
129
+ type: StringConstructor;
130
+ default: string;
131
+ };
132
+ elevation: {
133
+ type: (StringConstructor | NumberConstructor)[];
134
+ };
135
+ loading: {
136
+ type: (StringConstructor | BooleanConstructor)[];
137
+ default: boolean;
138
+ };
139
+ position: {
140
+ type: StringConstructor;
141
+ };
142
+ prependIcon: {
143
+ type: StringConstructor;
144
+ };
145
+ replace: {
146
+ type: (StringConstructor | BooleanConstructor)[];
147
+ default: boolean;
148
+ };
149
+ ripple: {
150
+ type: (StringConstructor | BooleanConstructor)[];
151
+ default: boolean;
152
+ };
153
+ selectedClass: {
154
+ type: StringConstructor;
155
+ };
156
+ size: {
157
+ type: StringConstructor;
158
+ };
159
+ stacked: {
160
+ type: (StringConstructor | BooleanConstructor)[];
161
+ default: boolean;
162
+ };
163
+ tag: {
164
+ type: StringConstructor;
165
+ };
166
+ variant: {
167
+ type: StringConstructor;
168
+ };
169
+ children: {
170
+ type: (StringConstructor | {
171
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
172
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
173
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
174
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
175
+ isArray(arg: any): arg is any[];
176
+ readonly prototype: any[];
177
+ from<T>(arrayLike: ArrayLike<T>): T[];
178
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
179
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
180
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
181
+ of<T_4>(...items: T_4[]): T_4[];
182
+ readonly [Symbol.species]: ArrayConstructor;
183
+ })[];
184
+ default(): never[];
185
+ };
186
+ component: {
187
+ type: StringConstructor;
188
+ };
189
+ allowDuplicate: {
190
+ type: (StringConstructor | BooleanConstructor)[];
191
+ default: boolean;
192
+ };
193
+ autofocus: {
194
+ type: (StringConstructor | BooleanConstructor)[];
195
+ default: boolean;
196
+ };
197
+ cssClass: {
198
+ type: StringConstructor;
199
+ default: string;
200
+ };
201
+ cssStyle: {
202
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
203
+ default: string;
204
+ };
205
+ dark: {
206
+ type: (StringConstructor | BooleanConstructor)[];
207
+ default: boolean;
208
+ };
209
+ directives: {
210
+ type: ObjectConstructor;
211
+ default(): {};
212
+ };
213
+ events: {
214
+ type: ObjectConstructor;
215
+ default(): {};
216
+ };
217
+ instanceObject: {
218
+ type: ObjectConstructor;
219
+ };
220
+ isVisible: {
221
+ type: (StringConstructor | BooleanConstructor)[];
222
+ default: boolean;
223
+ };
224
+ keyMap: {
225
+ type: ObjectConstructor;
226
+ default(): {};
227
+ };
228
+ light: {
229
+ type: (StringConstructor | BooleanConstructor)[];
230
+ default: boolean;
231
+ };
232
+ name: {
233
+ type: StringConstructor;
234
+ required: true;
235
+ };
236
+ parent: {
237
+ type: ObjectConstructor;
238
+ };
239
+ tabStop: {
240
+ type: (StringConstructor | BooleanConstructor)[];
241
+ default: boolean;
242
+ };
243
+ theme: {
244
+ type: StringConstructor;
245
+ };
246
+ };
247
+ declare const tekGridFilterButtonComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
248
+ gridName: {
249
+ type: StringConstructor;
250
+ default: string;
251
+ };
252
+ grid: {
253
+ type: (StringConstructor | ObjectConstructor)[];
254
+ default: () => void;
255
+ };
256
+ showCheckboxAll: {
257
+ type: (StringConstructor | BooleanConstructor)[];
258
+ default: boolean;
259
+ };
260
+ absolute: {
261
+ type: (StringConstructor | BooleanConstructor)[];
262
+ default: boolean;
263
+ };
264
+ block: {
265
+ type: (StringConstructor | BooleanConstructor)[];
266
+ default: boolean;
267
+ };
268
+ bottom: {
269
+ type: (StringConstructor | BooleanConstructor)[];
270
+ default: boolean;
271
+ };
272
+ color: {
273
+ type: StringConstructor;
274
+ default: string;
275
+ };
276
+ disabled: {
277
+ type: (StringConstructor | BooleanConstructor)[];
278
+ default: boolean;
279
+ };
280
+ fab: {
281
+ type: (StringConstructor | BooleanConstructor)[];
282
+ default: boolean;
283
+ };
284
+ fixed: {
285
+ type: (StringConstructor | BooleanConstructor)[];
286
+ default: boolean;
287
+ };
288
+ flat: {
289
+ type: (StringConstructor | BooleanConstructor)[];
290
+ default: boolean;
291
+ };
292
+ href: {
293
+ type: StringConstructor;
294
+ default: string;
295
+ };
296
+ icon: {
297
+ type: (StringConstructor | BooleanConstructor)[];
298
+ default: boolean;
299
+ };
300
+ iconName: {
301
+ type: StringConstructor;
302
+ default: string;
303
+ };
304
+ label: {
305
+ type: StringConstructor;
306
+ default: string;
307
+ };
308
+ large: {
309
+ type: (StringConstructor | BooleanConstructor)[];
310
+ default: boolean;
311
+ };
312
+ left: {
313
+ type: (StringConstructor | BooleanConstructor)[];
314
+ default: boolean;
315
+ };
316
+ outline: {
317
+ type: (StringConstructor | BooleanConstructor)[];
318
+ default: boolean;
319
+ };
320
+ reverse: {
321
+ type: (StringConstructor | BooleanConstructor)[];
322
+ default: boolean;
323
+ };
324
+ right: {
325
+ type: (StringConstructor | BooleanConstructor)[];
326
+ default: boolean;
327
+ };
328
+ round: {
329
+ type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
330
+ default: boolean;
331
+ };
332
+ small: {
333
+ type: (StringConstructor | BooleanConstructor)[];
334
+ default: boolean;
335
+ };
336
+ target: {
337
+ type: StringConstructor;
338
+ default: string;
339
+ };
340
+ tile: {
341
+ type: (StringConstructor | BooleanConstructor)[];
342
+ default: boolean;
343
+ };
344
+ to: {
345
+ type: StringConstructor;
346
+ default: string;
347
+ };
348
+ top: {
349
+ type: (StringConstructor | BooleanConstructor)[];
350
+ default: boolean;
351
+ };
352
+ type: {
353
+ type: StringConstructor;
354
+ default: string;
355
+ };
356
+ width: {
357
+ type: (StringConstructor | NumberConstructor)[];
358
+ default: string;
359
+ };
360
+ active: {
361
+ type: (StringConstructor | BooleanConstructor)[];
362
+ default: undefined;
363
+ };
364
+ appendIcon: {
365
+ type: StringConstructor;
366
+ };
367
+ border: {
368
+ type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
369
+ default: boolean;
370
+ };
371
+ density: {
372
+ type: StringConstructor;
373
+ default: string;
374
+ };
375
+ elevation: {
376
+ type: (StringConstructor | NumberConstructor)[];
377
+ };
378
+ loading: {
379
+ type: (StringConstructor | BooleanConstructor)[];
380
+ default: boolean;
381
+ };
382
+ position: {
383
+ type: StringConstructor;
384
+ };
385
+ prependIcon: {
386
+ type: StringConstructor;
387
+ };
388
+ replace: {
389
+ type: (StringConstructor | BooleanConstructor)[];
390
+ default: boolean;
391
+ };
392
+ ripple: {
393
+ type: (StringConstructor | BooleanConstructor)[];
394
+ default: boolean;
395
+ };
396
+ selectedClass: {
397
+ type: StringConstructor;
398
+ };
399
+ size: {
400
+ type: StringConstructor;
401
+ };
402
+ stacked: {
403
+ type: (StringConstructor | BooleanConstructor)[];
404
+ default: boolean;
405
+ };
406
+ tag: {
407
+ type: StringConstructor;
408
+ };
409
+ variant: {
410
+ type: StringConstructor;
411
+ };
412
+ children: {
413
+ type: (StringConstructor | {
414
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
415
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
416
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
417
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
418
+ isArray(arg: any): arg is any[];
419
+ readonly prototype: any[];
420
+ from<T>(arrayLike: ArrayLike<T>): T[];
421
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
422
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
423
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
424
+ of<T_4>(...items: T_4[]): T_4[];
425
+ readonly [Symbol.species]: ArrayConstructor;
426
+ })[];
427
+ default(): never[];
428
+ };
429
+ component: {
430
+ type: StringConstructor;
431
+ };
432
+ allowDuplicate: {
433
+ type: (StringConstructor | BooleanConstructor)[];
434
+ default: boolean;
435
+ };
436
+ autofocus: {
437
+ type: (StringConstructor | BooleanConstructor)[];
438
+ default: boolean;
439
+ };
440
+ cssClass: {
441
+ type: StringConstructor;
442
+ default: string;
443
+ };
444
+ cssStyle: {
445
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
446
+ default: string;
447
+ };
448
+ dark: {
449
+ type: (StringConstructor | BooleanConstructor)[];
450
+ default: boolean;
451
+ };
452
+ directives: {
453
+ type: ObjectConstructor;
454
+ default(): {};
455
+ };
456
+ events: {
457
+ type: ObjectConstructor;
458
+ default(): {};
459
+ };
460
+ instanceObject: {
461
+ type: ObjectConstructor;
462
+ };
463
+ isVisible: {
464
+ type: (StringConstructor | BooleanConstructor)[];
465
+ default: boolean;
466
+ };
467
+ keyMap: {
468
+ type: ObjectConstructor;
469
+ default(): {};
470
+ };
471
+ light: {
472
+ type: (StringConstructor | BooleanConstructor)[];
473
+ default: boolean;
474
+ };
475
+ name: {
476
+ type: StringConstructor;
477
+ required: true;
478
+ };
479
+ parent: {
480
+ type: ObjectConstructor;
481
+ };
482
+ tabStop: {
483
+ type: (StringConstructor | BooleanConstructor)[];
484
+ default: boolean;
485
+ };
486
+ theme: {
487
+ type: StringConstructor;
488
+ };
489
+ }>, {
490
+ instance: {
491
+ gridName?: string | undefined;
492
+ grid: {
493
+ datasource: {
494
+ data: import("@zeedhi/core").IDictionary<any>[];
495
+ defaultLimit: number;
496
+ filter: import("@zeedhi/core").IDictionary<any>;
497
+ loadAll: boolean;
498
+ loading: boolean;
499
+ order: string[];
500
+ page: number;
501
+ search: string;
502
+ searchIn: string[];
503
+ selectedRows: import("@zeedhi/core").IDictionary<any>[];
504
+ uniqueKey: string;
505
+ visibleSelectedRows: import("@zeedhi/core").IDictionary<any>[];
506
+ watchUrl: boolean;
507
+ error: any;
508
+ events: {
509
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
510
+ onChangeCurrentRow?: import("@zeedhi/core").IEvent<IEventParam<any>> | undefined;
511
+ onChangePagination?: import("@zeedhi/core").IEvent<IEventParam<any>> | undefined;
512
+ };
513
+ initialize: () => void | Promise<void>;
514
+ destroy: () => void;
515
+ currentRow: import("@zeedhi/core").IDictionary<any>;
516
+ limit: number;
517
+ total: number;
518
+ urlHasChanged: () => boolean;
519
+ get: () => Promise<any>;
520
+ post: (row: import("@zeedhi/core").IDictionary<any>) => Promise<any>;
521
+ put: (row: import("@zeedhi/core").IDictionary<any>) => Promise<any>;
522
+ delete: (row?: import("@zeedhi/core").IDictionary<any> | undefined) => Promise<any>;
523
+ updateData: (data: import("@zeedhi/core").IDictionary<any>[]) => Promise<any>;
524
+ getLoadedData: () => import("@zeedhi/core").IDictionary<any>[];
525
+ setSearch: (search: string) => Promise<any>;
526
+ addFilter: (column: string, value: any) => Promise<any>;
527
+ removeFilter: (column: string) => Promise<any>;
528
+ setFilter: (filter: import("@zeedhi/core").IDictionary<any>) => Promise<any>;
529
+ clearFilter: () => Promise<any>;
530
+ setLimit: (limit: number, replaceUrl?: boolean | undefined) => Promise<any>;
531
+ setPage: (page: number, replaceUrl?: boolean | undefined) => Promise<any>;
532
+ addOrder: (column: string, value: import("@zeedhi/core").Order) => Promise<any>;
533
+ removeOrder: (column: string) => Promise<any>;
534
+ setOrder: (order: string[]) => Promise<any>;
535
+ clearOrder: () => Promise<any>;
536
+ getOrderByColumn: (column: string) => import("@zeedhi/core").Order | null;
537
+ selectRow: (row: import("@zeedhi/core").IDictionary<any>) => void;
538
+ deselectRow: (row: import("@zeedhi/core").IDictionary<any>) => void;
539
+ updateSelectedPage: () => Promise<any> | import("@zeedhi/core").IDictionary<any>[];
540
+ clone: () => import("@zeedhi/core").IDatasource;
541
+ registerGetCallback: (callback: import("@zeedhi/core").Callback) => void;
542
+ hasFilter: (columnName: string) => boolean;
543
+ };
544
+ columns: {
545
+ filterProps: {
546
+ [x: string]: any;
547
+ relation?: import("@zeedhi/teknisa-components-common").IFilterRelation | undefined;
548
+ operation?: import("@zeedhi/teknisa-components-common").IFilterOperation | undefined;
549
+ helperOptions?: string[] | undefined;
550
+ helperValue?: string | undefined;
551
+ allowDuplicate?: boolean | undefined;
552
+ autofocus?: boolean | undefined;
553
+ children?: {
554
+ [x: string]: any;
555
+ allowDuplicate?: boolean | undefined;
556
+ autofocus?: boolean | undefined;
557
+ children?: any[] | undefined;
558
+ componentId?: number | undefined;
559
+ cssClass?: string | undefined;
560
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
561
+ events?: {
562
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
563
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
564
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
565
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
566
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
567
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
568
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
569
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
570
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
571
+ } | undefined;
572
+ directives?: {
573
+ [x: string]: {
574
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
575
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
576
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
577
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
578
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
579
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
580
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
581
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
582
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
583
+ } | undefined;
584
+ touch?: {
585
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
586
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
587
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
588
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
589
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
590
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
591
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
592
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
593
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
594
+ } | undefined;
595
+ } | undefined;
596
+ isVisible?: string | boolean | undefined;
597
+ dark?: boolean | undefined;
598
+ light?: boolean | undefined;
599
+ theme?: string | undefined;
600
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
601
+ name: string;
602
+ parent?: {
603
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
604
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
605
+ allowDuplicate: boolean;
606
+ autofocus: boolean;
607
+ children: any[];
608
+ componentId: number;
609
+ cssClass: string;
610
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
611
+ events: {
612
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
613
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
614
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
615
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
616
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
617
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
618
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
619
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
620
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
621
+ };
622
+ directives: {
623
+ [x: string]: {
624
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
625
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
626
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
627
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
628
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
629
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
630
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
631
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
632
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
633
+ } | undefined;
634
+ touch?: {
635
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
636
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
637
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
638
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
639
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
640
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
641
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
642
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
643
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
644
+ } | undefined;
645
+ };
646
+ isVisible: string | boolean;
647
+ dark: boolean;
648
+ light: boolean;
649
+ theme?: string | undefined;
650
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
651
+ name: string;
652
+ parent?: any | undefined;
653
+ tabStop: boolean;
654
+ userProperties: import("@zeedhi/core").IDictionary<any>;
655
+ fillHeight: boolean;
656
+ } | undefined;
657
+ tabStop?: boolean | undefined;
658
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
659
+ fillHeight?: boolean | undefined;
660
+ }[] | undefined;
661
+ componentId?: number | undefined;
662
+ cssClass?: string | undefined;
663
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
664
+ events?: {
665
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
666
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
667
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
668
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
669
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
670
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
671
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
672
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
673
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
674
+ } | undefined;
675
+ directives?: {
676
+ [x: string]: {
677
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
678
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
679
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
680
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
681
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
682
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
683
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
684
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
685
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
686
+ } | undefined;
687
+ touch?: {
688
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
689
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
690
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
691
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
692
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
693
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
694
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
695
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
696
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
697
+ } | undefined;
698
+ } | undefined;
699
+ isVisible?: string | boolean | undefined;
700
+ dark?: boolean | undefined;
701
+ light?: boolean | undefined;
702
+ theme?: string | undefined;
703
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
704
+ name: string;
705
+ parent?: {
706
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
707
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
708
+ allowDuplicate: boolean;
709
+ autofocus: boolean;
710
+ children: any[];
711
+ componentId: number;
712
+ cssClass: string;
713
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
714
+ events: {
715
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
716
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
717
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
718
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
719
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
720
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
721
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
722
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
723
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
724
+ };
725
+ directives: {
726
+ [x: string]: {
727
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
728
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
729
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
730
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
731
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
732
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
733
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
734
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
735
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
736
+ } | undefined;
737
+ touch?: {
738
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
739
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
740
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
741
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
742
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
743
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
744
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
745
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
746
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
747
+ } | undefined;
748
+ };
749
+ isVisible: string | boolean;
750
+ dark: boolean;
751
+ light: boolean;
752
+ theme?: string | undefined;
753
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
754
+ name: string;
755
+ parent?: any | undefined;
756
+ tabStop: boolean;
757
+ userProperties: import("@zeedhi/core").IDictionary<any>;
758
+ fillHeight: boolean;
759
+ } | undefined;
760
+ tabStop?: boolean | undefined;
761
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
762
+ fillHeight?: boolean | undefined;
763
+ } | {
764
+ [x: string]: any;
765
+ relation?: import("@zeedhi/teknisa-components-common").IFilterRelation | undefined;
766
+ operation?: import("@zeedhi/teknisa-components-common").IFilterOperation | undefined;
767
+ helperOptions?: string[] | undefined;
768
+ helperValue?: string | undefined;
769
+ allowDuplicate?: boolean | undefined;
770
+ autofocus?: boolean | undefined;
771
+ children?: {
772
+ [x: string]: any;
773
+ allowDuplicate?: boolean | undefined;
774
+ autofocus?: boolean | undefined;
775
+ children?: any[] | undefined;
776
+ componentId?: number | undefined;
777
+ cssClass?: string | undefined;
778
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
779
+ events?: {
780
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
781
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
782
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
783
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
784
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
785
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
786
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
787
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
788
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
789
+ } | undefined;
790
+ directives?: {
791
+ [x: string]: {
792
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
793
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
794
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
795
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
796
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
797
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
798
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
799
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
800
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
801
+ } | undefined;
802
+ touch?: {
803
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
804
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
805
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
806
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
807
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
808
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
809
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
810
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
811
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
812
+ } | undefined;
813
+ } | undefined;
814
+ isVisible?: string | boolean | undefined;
815
+ dark?: boolean | undefined;
816
+ light?: boolean | undefined;
817
+ theme?: string | undefined;
818
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
819
+ name: string;
820
+ parent?: {
821
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
822
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
823
+ allowDuplicate: boolean;
824
+ autofocus: boolean;
825
+ children: any[];
826
+ componentId: number;
827
+ cssClass: string;
828
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
829
+ events: {
830
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
831
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
832
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
833
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
834
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
835
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
836
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
837
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
838
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
839
+ };
840
+ directives: {
841
+ [x: string]: {
842
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
843
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
844
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
845
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
846
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
847
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
848
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
849
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
850
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
851
+ } | undefined;
852
+ touch?: {
853
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
854
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
855
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
856
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
857
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
858
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
859
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
860
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
861
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
862
+ } | undefined;
863
+ };
864
+ isVisible: string | boolean;
865
+ dark: boolean;
866
+ light: boolean;
867
+ theme?: string | undefined;
868
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
869
+ name: string;
870
+ parent?: any | undefined;
871
+ tabStop: boolean;
872
+ userProperties: import("@zeedhi/core").IDictionary<any>;
873
+ fillHeight: boolean;
874
+ } | undefined;
875
+ tabStop?: boolean | undefined;
876
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
877
+ fillHeight?: boolean | undefined;
878
+ }[] | undefined;
879
+ componentId?: number | undefined;
880
+ cssClass?: string | undefined;
881
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
882
+ events?: {
883
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
884
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
885
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
886
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
887
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
888
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
889
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
890
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
891
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
892
+ } | undefined;
893
+ directives?: {
894
+ [x: string]: {
895
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
896
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
897
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
898
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
899
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
900
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
901
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
902
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
903
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
904
+ } | undefined;
905
+ touch?: {
906
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
907
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
908
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
909
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
910
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
911
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
912
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
913
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
914
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
915
+ } | undefined;
916
+ } | undefined;
917
+ isVisible?: string | boolean | undefined;
918
+ dark?: boolean | undefined;
919
+ light?: boolean | undefined;
920
+ theme?: string | undefined;
921
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
922
+ name: string;
923
+ parent?: {
924
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
925
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
926
+ allowDuplicate: boolean;
927
+ autofocus: boolean;
928
+ children: any[];
929
+ componentId: number;
930
+ cssClass: string;
931
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
932
+ events: {
933
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
934
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
935
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
936
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
937
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
938
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
939
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
940
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
941
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
942
+ };
943
+ directives: {
944
+ [x: string]: {
945
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
946
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
947
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
948
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
949
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
950
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
951
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
952
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
953
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
954
+ } | undefined;
955
+ touch?: {
956
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
957
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
958
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
959
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
960
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
961
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
962
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
963
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
964
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
965
+ } | undefined;
966
+ };
967
+ isVisible: string | boolean;
968
+ dark: boolean;
969
+ light: boolean;
970
+ theme?: string | undefined;
971
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
972
+ name: string;
973
+ parent?: any | undefined;
974
+ tabStop: boolean;
975
+ userProperties: import("@zeedhi/core").IDictionary<any>;
976
+ fillHeight: boolean;
977
+ } | undefined;
978
+ tabStop?: boolean | undefined;
979
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
980
+ fillHeight?: boolean | undefined;
981
+ }[];
982
+ filterable: boolean;
983
+ filterIndex?: number | undefined;
984
+ skipLookupSearch: boolean;
985
+ groupLabelForEmptyValue: string;
986
+ storeData: boolean;
987
+ getBatchLookupData: (lookupColumn: string, values: any[]) => Promise<import("@zeedhi/core").IDictionary<any>[]>;
988
+ memorySearch: (search: string) => Promise<any>;
989
+ grouped: boolean;
990
+ aggregation: "SUM" | "MIN" | "MAX" | "AVG" | "COUNT" | undefined;
991
+ groupOpened: boolean | undefined;
992
+ isVisible: boolean;
993
+ editable: boolean;
994
+ children: {
995
+ [x: string]: any;
996
+ conditions?: import("@zeedhi/core").IDictionary<any> | undefined;
997
+ allowDuplicate?: boolean | undefined;
998
+ autofocus?: boolean | undefined;
999
+ children?: {
1000
+ [x: string]: any;
1001
+ allowDuplicate?: boolean | undefined;
1002
+ autofocus?: boolean | undefined;
1003
+ children?: any[] | undefined;
1004
+ componentId?: number | undefined;
1005
+ cssClass?: string | undefined;
1006
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1007
+ events?: {
1008
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1009
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1010
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1011
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1012
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1013
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1014
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1015
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1016
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1017
+ } | undefined;
1018
+ directives?: {
1019
+ [x: string]: {
1020
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1021
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1022
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1023
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1024
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1025
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1026
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1027
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1028
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1029
+ } | undefined;
1030
+ touch?: {
1031
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1032
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1033
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1034
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1035
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1036
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1037
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1038
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1039
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1040
+ } | undefined;
1041
+ } | undefined;
1042
+ isVisible?: string | boolean | undefined;
1043
+ dark?: boolean | undefined;
1044
+ light?: boolean | undefined;
1045
+ theme?: string | undefined;
1046
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
1047
+ name: string;
1048
+ parent?: {
1049
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1050
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1051
+ allowDuplicate: boolean;
1052
+ autofocus: boolean;
1053
+ children: any[];
1054
+ componentId: number;
1055
+ cssClass: string;
1056
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1057
+ events: {
1058
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1059
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1060
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1061
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1062
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1063
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1064
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1065
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1066
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1067
+ };
1068
+ directives: {
1069
+ [x: string]: {
1070
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1071
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1072
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1073
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1074
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1075
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1076
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1077
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1078
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1079
+ } | undefined;
1080
+ touch?: {
1081
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1082
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1083
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1084
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1085
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1086
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1087
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1088
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1089
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1090
+ } | undefined;
1091
+ };
1092
+ isVisible: string | boolean;
1093
+ dark: boolean;
1094
+ light: boolean;
1095
+ theme?: string | undefined;
1096
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
1097
+ name: string;
1098
+ parent?: any | undefined;
1099
+ tabStop: boolean;
1100
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1101
+ fillHeight: boolean;
1102
+ } | undefined;
1103
+ tabStop?: boolean | undefined;
1104
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1105
+ fillHeight?: boolean | undefined;
1106
+ }[] | undefined;
1107
+ componentId?: number | undefined;
1108
+ cssClass?: string | undefined;
1109
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1110
+ events?: {
1111
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1112
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1113
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1114
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1115
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1116
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1117
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1118
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1119
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1120
+ } | undefined;
1121
+ directives?: {
1122
+ [x: string]: {
1123
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1124
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1125
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1126
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1127
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1128
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1129
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1130
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1131
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1132
+ } | undefined;
1133
+ touch?: {
1134
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1135
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1136
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1137
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1138
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1139
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1140
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1141
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1142
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1143
+ } | undefined;
1144
+ } | undefined;
1145
+ isVisible?: string | boolean | undefined;
1146
+ dark?: boolean | undefined;
1147
+ light?: boolean | undefined;
1148
+ theme?: string | undefined;
1149
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
1150
+ name: string;
1151
+ parent?: {
1152
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1153
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1154
+ allowDuplicate: boolean;
1155
+ autofocus: boolean;
1156
+ children: any[];
1157
+ componentId: number;
1158
+ cssClass: string;
1159
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1160
+ events: {
1161
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1162
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1163
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1164
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1165
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1166
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1167
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1168
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1169
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1170
+ };
1171
+ directives: {
1172
+ [x: string]: {
1173
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1174
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1175
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1176
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1177
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1178
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1179
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1180
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1181
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1182
+ } | undefined;
1183
+ touch?: {
1184
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1185
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1186
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1187
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1188
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1189
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1190
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1191
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1192
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1193
+ } | undefined;
1194
+ };
1195
+ isVisible: string | boolean;
1196
+ dark: boolean;
1197
+ light: boolean;
1198
+ theme?: string | undefined;
1199
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
1200
+ name: string;
1201
+ parent?: any | undefined;
1202
+ tabStop: boolean;
1203
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1204
+ fillHeight: boolean;
1205
+ } | undefined;
1206
+ tabStop?: boolean | undefined;
1207
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1208
+ fillHeight?: boolean | undefined;
1209
+ }[];
1210
+ readonly childrenProps: {
1211
+ [x: string]: any;
1212
+ allowDuplicate?: boolean | undefined;
1213
+ autofocus?: boolean | undefined;
1214
+ children?: {
1215
+ [x: string]: any;
1216
+ allowDuplicate?: boolean | undefined;
1217
+ autofocus?: boolean | undefined;
1218
+ children?: any[] | undefined;
1219
+ componentId?: number | undefined;
1220
+ cssClass?: string | undefined;
1221
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1222
+ events?: {
1223
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1224
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1225
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1226
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1227
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1228
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1229
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1230
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1231
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1232
+ } | undefined;
1233
+ directives?: {
1234
+ [x: string]: {
1235
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1236
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1237
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1238
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1239
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1240
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1241
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1242
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1243
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1244
+ } | undefined;
1245
+ touch?: {
1246
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1247
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1248
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1249
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1250
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1251
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1252
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1253
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1254
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1255
+ } | undefined;
1256
+ } | undefined;
1257
+ isVisible?: string | boolean | undefined;
1258
+ dark?: boolean | undefined;
1259
+ light?: boolean | undefined;
1260
+ theme?: string | undefined;
1261
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
1262
+ name: string;
1263
+ parent?: {
1264
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1265
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1266
+ allowDuplicate: boolean;
1267
+ autofocus: boolean;
1268
+ children: any[];
1269
+ componentId: number;
1270
+ cssClass: string;
1271
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1272
+ events: {
1273
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1274
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1275
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1276
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1277
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1278
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1279
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1280
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1281
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1282
+ };
1283
+ directives: {
1284
+ [x: string]: {
1285
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1286
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1287
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1288
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1289
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1290
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1291
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1292
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1293
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1294
+ } | undefined;
1295
+ touch?: {
1296
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1297
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1298
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1299
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1300
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1301
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1302
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1303
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1304
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1305
+ } | undefined;
1306
+ };
1307
+ isVisible: string | boolean;
1308
+ dark: boolean;
1309
+ light: boolean;
1310
+ theme?: string | undefined;
1311
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
1312
+ name: string;
1313
+ parent?: any | undefined;
1314
+ tabStop: boolean;
1315
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1316
+ fillHeight: boolean;
1317
+ } | undefined;
1318
+ tabStop?: boolean | undefined;
1319
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1320
+ fillHeight?: boolean | undefined;
1321
+ }[] | undefined;
1322
+ componentId?: number | undefined;
1323
+ cssClass?: string | undefined;
1324
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1325
+ events?: {
1326
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1327
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1328
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1329
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1330
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1331
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1332
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1333
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1334
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1335
+ } | undefined;
1336
+ directives?: {
1337
+ [x: string]: {
1338
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1339
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1340
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1341
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1342
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1343
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1344
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1345
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1346
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1347
+ } | undefined;
1348
+ touch?: {
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
+ } | undefined;
1360
+ isVisible?: string | boolean | undefined;
1361
+ dark?: boolean | undefined;
1362
+ light?: boolean | undefined;
1363
+ theme?: string | undefined;
1364
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
1365
+ name: string;
1366
+ parent?: {
1367
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1368
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1369
+ allowDuplicate: boolean;
1370
+ autofocus: boolean;
1371
+ children: any[];
1372
+ componentId: number;
1373
+ cssClass: string;
1374
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1375
+ events: {
1376
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1377
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1378
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1379
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1380
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1381
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1382
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1383
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1384
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1385
+ };
1386
+ directives: {
1387
+ [x: string]: {
1388
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1389
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1390
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1391
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1392
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1393
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1394
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1395
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1396
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1397
+ } | undefined;
1398
+ touch?: {
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
+ } | undefined;
1409
+ };
1410
+ isVisible: string | boolean;
1411
+ dark: boolean;
1412
+ light: boolean;
1413
+ theme?: string | undefined;
1414
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
1415
+ name: string;
1416
+ parent?: any | undefined;
1417
+ tabStop: boolean;
1418
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1419
+ fillHeight: boolean;
1420
+ } | undefined;
1421
+ tabStop?: boolean | undefined;
1422
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1423
+ fillHeight?: boolean | undefined;
1424
+ }[];
1425
+ getColumnWithoutConditions: (component: any) => any;
1426
+ checkOutValues: (component: any, row: import("@zeedhi/core").IDictionary<any>, newRow: import("@zeedhi/core").IDictionary<any>) => void;
1427
+ align: import("@zeedhi/common").ColumnAlign;
1428
+ label: string;
1429
+ width?: string | undefined;
1430
+ maxWidth?: string | undefined;
1431
+ minWidth?: string | undefined;
1432
+ mask: string;
1433
+ type?: "action" | undefined;
1434
+ actionFixed: boolean;
1435
+ fixed: boolean;
1436
+ sortable: boolean;
1437
+ loading: boolean;
1438
+ componentProps: any;
1439
+ style: import("@zeedhi/core").IDictionary<any>;
1440
+ xlsType: string;
1441
+ lookupData: any;
1442
+ lookupDataCount: number;
1443
+ overflow: string | number;
1444
+ conditions: import("@zeedhi/core").IDictionary<any>;
1445
+ helperText: string;
1446
+ setViewGetWidth: (viewGetWidth: () => number) => void;
1447
+ setLookupDataFilter: (filter: import("@zeedhi/core").IDictionary<any>) => void;
1448
+ getWidth: () => number;
1449
+ formatterByRow: (row: import("@zeedhi/core").IDictionary<any>, cellProps?: import("@zeedhi/core").IDictionary<any> | undefined) => any;
1450
+ formatter: (value: any, cellProps?: import("@zeedhi/core").IDictionary<any> | undefined) => any;
1451
+ getLookupData: (lookupColumn: string, value: any) => any;
1452
+ initialize: () => void;
1453
+ clearLookupData: () => void;
1454
+ onBeforeDestroy: () => void;
1455
+ allowDuplicate: boolean;
1456
+ autofocus: boolean;
1457
+ childrenInstances: any[];
1458
+ cssClass: string;
1459
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1460
+ directives: {
1461
+ [x: string]: {
1462
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1463
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1464
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1465
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1466
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1467
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1468
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1469
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1470
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1471
+ } | undefined;
1472
+ touch?: {
1473
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1474
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1475
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1476
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1477
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1478
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1479
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1480
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1481
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1482
+ } | undefined;
1483
+ };
1484
+ events: {
1485
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1486
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1487
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1488
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1489
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1490
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1491
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1492
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1493
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1494
+ };
1495
+ name: string;
1496
+ dark: boolean;
1497
+ light: boolean;
1498
+ theme?: string | undefined;
1499
+ fillHeight: boolean;
1500
+ parent?: {
1501
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1502
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1503
+ allowDuplicate: boolean;
1504
+ autofocus: boolean;
1505
+ children: any[];
1506
+ componentId: number;
1507
+ cssClass: string;
1508
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1509
+ events: {
1510
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1511
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1512
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1513
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1514
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1515
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1516
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1517
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1518
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1519
+ };
1520
+ directives: {
1521
+ [x: string]: {
1522
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1523
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1524
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1525
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1526
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1527
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1528
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1529
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1530
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1531
+ } | undefined;
1532
+ touch?: {
1533
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1534
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1535
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1536
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1537
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1538
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1539
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1540
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1541
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1542
+ } | undefined;
1543
+ };
1544
+ isVisible: string | boolean;
1545
+ dark: boolean;
1546
+ light: boolean;
1547
+ theme?: string | undefined;
1548
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
1549
+ name: string;
1550
+ parent?: any | undefined;
1551
+ tabStop: boolean;
1552
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1553
+ fillHeight: boolean;
1554
+ } | undefined;
1555
+ componentId: number;
1556
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
1557
+ isFocused: boolean;
1558
+ tabStop: boolean;
1559
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1560
+ setViewFocus: (viewFocus: () => void) => void;
1561
+ setFocus: () => void;
1562
+ callEvent: (eventName: string, args: any) => boolean;
1563
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
1564
+ removeChild: (name: string) => void;
1565
+ getChildInstance: <T_1>(name: string) => T_1;
1566
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1567
+ onCreated: () => void;
1568
+ onBeforeMount: () => void;
1569
+ onMounted: (element: any) => void;
1570
+ onDestroyed: () => void;
1571
+ click: (event?: Event | undefined, element?: any) => void;
1572
+ focus: (event: Event, element: any) => void;
1573
+ blur: (event: Event, element: any) => void;
1574
+ mouseenter: (event?: Event | undefined, element?: any) => void;
1575
+ mouseleave: (event?: Event | undefined, element?: any) => void;
1576
+ mouseout: (event?: Event | undefined, element?: any) => void;
1577
+ mouseover: (event?: Event | undefined, element?: any) => void;
1578
+ }[];
1579
+ pageSizes: string[];
1580
+ events: {
1581
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1582
+ changeLayout?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1583
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1584
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1585
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1586
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1587
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1588
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1589
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1590
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1591
+ };
1592
+ virtualScroll: boolean;
1593
+ virtualScrollCache: number;
1594
+ searchVisibleOnly: boolean;
1595
+ defaultSearchVisibleOnly: boolean;
1596
+ updateData: (data: import("@zeedhi/core").IDictionary<any>[]) => Promise<any>;
1597
+ getAppliedConditions: (args: {
1598
+ row: import("@zeedhi/core").IDictionary<any>;
1599
+ column: import("@zeedhi/common").Column;
1600
+ path?: string | undefined;
1601
+ }) => Partial<import("@zeedhi/common").IComponentRender>;
1602
+ getCurrentRowIndex: () => number;
1603
+ getPage: () => number;
1604
+ setPage: (page: number) => Promise<any>;
1605
+ getLastPage: () => number;
1606
+ onCreated: () => void;
1607
+ createColumn: (columnProps: import("@zeedhi/common").IColumn) => import("@zeedhi/teknisa-components-common").TekGridColumn;
1608
+ getColumn: (name: string) => import("@zeedhi/teknisa-components-common").TekGridColumn;
1609
+ readonly pageText: string;
1610
+ readonly paginationLength: number;
1611
+ getCellWithAppliedConditions: (columns: import("@zeedhi/common").Column[], row: import("@zeedhi/core").IDictionary<any>) => import("@zeedhi/core").IDictionary<import("@zeedhi/core").IDictionary<any>>;
1612
+ reapplyConditions: (row: import("@zeedhi/core").IDictionary<any>, columns?: import("@zeedhi/common").Column[] | undefined) => import("@zeedhi/core").IDictionary<import("@zeedhi/core").IDictionary<any>>;
1613
+ reload: () => Promise<any>;
1614
+ changeData: (data: import("@zeedhi/core").IDictionary<any>[]) => void;
1615
+ onBeforeDestroy: () => void;
1616
+ changeLayout: (event?: Event | undefined, element?: any) => void;
1617
+ setSearch: (search: string) => Promise<any>;
1618
+ setCurrentRow: (row: import("@zeedhi/core").IDictionary<any>) => void;
1619
+ setOrder: (order: string[]) => Promise<any>;
1620
+ getRowKey: (row: import("@zeedhi/core").IDictionary<any>) => any;
1621
+ delete: (row: import("@zeedhi/core").IDictionary<any>) => Promise<any>;
1622
+ getData: () => import("@zeedhi/core").IDictionary<any>[];
1623
+ findRow: (key: string | number) => import("@zeedhi/core").IDictionary<any> | undefined;
1624
+ children: {
1625
+ [x: string]: any;
1626
+ children?: any[] | undefined;
1627
+ component: string;
1628
+ allowDuplicate?: boolean | undefined;
1629
+ autofocus?: boolean | undefined;
1630
+ componentId?: number | undefined;
1631
+ cssClass?: string | undefined;
1632
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1633
+ events?: {
1634
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1635
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1636
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1637
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1638
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1639
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1640
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1641
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1642
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1643
+ } | undefined;
1644
+ directives?: {
1645
+ [x: string]: {
1646
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1647
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1648
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1649
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1650
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1651
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1652
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1653
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1654
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1655
+ } | undefined;
1656
+ touch?: {
1657
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1658
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1659
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1660
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1661
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1662
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1663
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1664
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1665
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1666
+ } | undefined;
1667
+ } | undefined;
1668
+ isVisible?: string | boolean | undefined;
1669
+ dark?: boolean | undefined;
1670
+ light?: boolean | undefined;
1671
+ theme?: string | undefined;
1672
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
1673
+ name: string;
1674
+ parent?: {
1675
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1676
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1677
+ allowDuplicate: boolean;
1678
+ autofocus: boolean;
1679
+ children: any[];
1680
+ componentId: number;
1681
+ cssClass: string;
1682
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1683
+ events: {
1684
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1685
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1686
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1687
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1688
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1689
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1690
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1691
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1692
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1693
+ };
1694
+ directives: {
1695
+ [x: string]: {
1696
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1697
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1698
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1699
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1700
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1701
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1702
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1703
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1704
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1705
+ } | undefined;
1706
+ touch?: {
1707
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1708
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1709
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1710
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1711
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1712
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1713
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1714
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1715
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1716
+ } | undefined;
1717
+ };
1718
+ isVisible: string | boolean;
1719
+ dark: boolean;
1720
+ light: boolean;
1721
+ theme?: string | undefined;
1722
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
1723
+ name: string;
1724
+ parent?: any | undefined;
1725
+ tabStop: boolean;
1726
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1727
+ fillHeight: boolean;
1728
+ } | undefined;
1729
+ tabStop?: boolean | undefined;
1730
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1731
+ fillHeight?: boolean | undefined;
1732
+ }[];
1733
+ component: string;
1734
+ allowDuplicate: boolean;
1735
+ autofocus: boolean;
1736
+ childrenInstances: any[];
1737
+ cssClass: string;
1738
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1739
+ directives: {
1740
+ [x: string]: {
1741
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1742
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1743
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1744
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1745
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1746
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1747
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1748
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1749
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1750
+ } | undefined;
1751
+ touch?: {
1752
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1753
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1754
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1755
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1756
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1757
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1758
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1759
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1760
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1761
+ } | undefined;
1762
+ };
1763
+ isVisible: boolean;
1764
+ name: string;
1765
+ dark: boolean;
1766
+ light: boolean;
1767
+ theme?: string | undefined;
1768
+ fillHeight: boolean;
1769
+ parent?: {
1770
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1771
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1772
+ allowDuplicate: boolean;
1773
+ autofocus: boolean;
1774
+ children: any[];
1775
+ componentId: number;
1776
+ cssClass: string;
1777
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1778
+ events: {
1779
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1780
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1781
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1782
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1783
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1784
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1785
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1786
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1787
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1788
+ };
1789
+ directives: {
1790
+ [x: string]: {
1791
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1792
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1793
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1794
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1795
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1796
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1797
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1798
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1799
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1800
+ } | undefined;
1801
+ touch?: {
1802
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1803
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1804
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1805
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1806
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1807
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1808
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1809
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1810
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1811
+ } | undefined;
1812
+ };
1813
+ isVisible: string | boolean;
1814
+ dark: boolean;
1815
+ light: boolean;
1816
+ theme?: string | undefined;
1817
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
1818
+ name: string;
1819
+ parent?: any | undefined;
1820
+ tabStop: boolean;
1821
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1822
+ fillHeight: boolean;
1823
+ } | undefined;
1824
+ componentId: number;
1825
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
1826
+ isFocused: boolean;
1827
+ tabStop: boolean;
1828
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1829
+ setViewFocus: (viewFocus: () => void) => void;
1830
+ setFocus: () => void;
1831
+ callEvent: (eventName: string, args: any) => boolean;
1832
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
1833
+ removeChild: (name: string) => void;
1834
+ getChildInstance: <T_1>(name: string) => T_1;
1835
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1836
+ onBeforeMount: () => void;
1837
+ onMounted: (element: any) => void;
1838
+ onDestroyed: () => void;
1839
+ click: (event?: Event | undefined, element?: any) => void;
1840
+ focus: (event: Event, element: any) => void;
1841
+ blur: (event: Event, element: any) => void;
1842
+ mouseenter: (event?: Event | undefined, element?: any) => void;
1843
+ mouseleave: (event?: Event | undefined, element?: any) => void;
1844
+ mouseout: (event?: Event | undefined, element?: any) => void;
1845
+ mouseover: (event?: Event | undefined, element?: any) => void;
1846
+ actions: {
1847
+ [x: string]: any;
1848
+ children?: any[] | undefined;
1849
+ component: string;
1850
+ allowDuplicate?: boolean | undefined;
1851
+ autofocus?: boolean | undefined;
1852
+ componentId?: number | undefined;
1853
+ cssClass?: string | undefined;
1854
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1855
+ events?: {
1856
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1857
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1858
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1859
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1860
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1861
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1862
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1863
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1864
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1865
+ } | undefined;
1866
+ directives?: {
1867
+ [x: string]: {
1868
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1869
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1870
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1871
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1872
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1873
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1874
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1875
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1876
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1877
+ } | undefined;
1878
+ touch?: {
1879
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1880
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1881
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1882
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1883
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1884
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1885
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1886
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1887
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1888
+ } | undefined;
1889
+ } | undefined;
1890
+ isVisible?: string | boolean | undefined;
1891
+ dark?: boolean | undefined;
1892
+ light?: boolean | undefined;
1893
+ theme?: string | undefined;
1894
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
1895
+ name: string;
1896
+ parent?: {
1897
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1898
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
1899
+ allowDuplicate: boolean;
1900
+ autofocus: boolean;
1901
+ children: any[];
1902
+ componentId: number;
1903
+ cssClass: string;
1904
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1905
+ events: {
1906
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1907
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1908
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1909
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1910
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1911
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1912
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1913
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1914
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1915
+ };
1916
+ directives: {
1917
+ [x: string]: {
1918
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1919
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1920
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1921
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1922
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1923
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1924
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1925
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1926
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1927
+ } | undefined;
1928
+ touch?: {
1929
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1930
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1931
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1932
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1933
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1934
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1935
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1936
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1937
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1938
+ } | undefined;
1939
+ };
1940
+ isVisible: string | boolean;
1941
+ dark: boolean;
1942
+ light: boolean;
1943
+ theme?: string | undefined;
1944
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
1945
+ name: string;
1946
+ parent?: any | undefined;
1947
+ tabStop: boolean;
1948
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1949
+ fillHeight: boolean;
1950
+ } | undefined;
1951
+ tabStop?: boolean | undefined;
1952
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1953
+ fillHeight?: boolean | undefined;
1954
+ }[];
1955
+ addButton: boolean;
1956
+ columnsButton: boolean;
1957
+ columnsButtonIgnore: string[];
1958
+ deleteButton: "currentRow" | "none" | "selection";
1959
+ showEditButtons: boolean;
1960
+ filterButton: boolean;
1961
+ showSearch: boolean;
1962
+ showLayoutOptions: boolean;
1963
+ title: string;
1964
+ showExport: boolean;
1965
+ showReload: boolean;
1966
+ exportConfig: {
1967
+ type: string;
1968
+ portrait?: boolean | undefined;
1969
+ label?: string | undefined;
1970
+ iconName?: string | undefined;
1971
+ multiOption?: {
1972
+ iconName: string;
1973
+ label: string;
1974
+ cssClass?: string | undefined;
1975
+ reportParams?: {
1976
+ portrait?: boolean | undefined;
1977
+ rowObj?: any;
1978
+ } | undefined;
1979
+ }[] | undefined;
1980
+ }[];
1981
+ exportActions?: {
1982
+ [x: string]: any;
1983
+ children?: any[] | undefined;
1984
+ component: string;
1985
+ allowDuplicate?: boolean | undefined;
1986
+ autofocus?: boolean | undefined;
1987
+ componentId?: number | undefined;
1988
+ cssClass?: string | undefined;
1989
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1990
+ events?: {
1991
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
1992
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1993
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1994
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1995
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1996
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1997
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1998
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
1999
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2000
+ } | undefined;
2001
+ directives?: {
2002
+ [x: string]: {
2003
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2004
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2005
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2006
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2007
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2008
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2009
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2010
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2011
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2012
+ } | undefined;
2013
+ touch?: {
2014
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2015
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2016
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2017
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2018
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2019
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2020
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2021
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2022
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2023
+ } | undefined;
2024
+ } | undefined;
2025
+ isVisible?: string | boolean | undefined;
2026
+ dark?: boolean | undefined;
2027
+ light?: boolean | undefined;
2028
+ theme?: string | undefined;
2029
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
2030
+ name: string;
2031
+ parent?: {
2032
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
2033
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
2034
+ allowDuplicate: boolean;
2035
+ autofocus: boolean;
2036
+ children: any[];
2037
+ componentId: number;
2038
+ cssClass: string;
2039
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
2040
+ events: {
2041
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2042
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2043
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2044
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2045
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2046
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2047
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2048
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2049
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2050
+ };
2051
+ directives: {
2052
+ [x: string]: {
2053
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2054
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2055
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2056
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2057
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2058
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2059
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2060
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2061
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2062
+ } | undefined;
2063
+ touch?: {
2064
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2065
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2066
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2067
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2068
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2069
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2070
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2071
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2072
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2073
+ } | undefined;
2074
+ };
2075
+ isVisible: string | boolean;
2076
+ dark: boolean;
2077
+ light: boolean;
2078
+ theme?: string | undefined;
2079
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
2080
+ name: string;
2081
+ parent?: any | undefined;
2082
+ tabStop: boolean;
2083
+ userProperties: import("@zeedhi/core").IDictionary<any>;
2084
+ fillHeight: boolean;
2085
+ } | undefined;
2086
+ tabStop?: boolean | undefined;
2087
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
2088
+ fillHeight?: boolean | undefined;
2089
+ }[] | undefined;
2090
+ toolbarOpened: boolean;
2091
+ columnFilterButton: boolean;
2092
+ modalFilterProps: {
2093
+ [x: string]: any;
2094
+ height?: string | undefined;
2095
+ maxHeight?: string | undefined;
2096
+ title?: string | undefined;
2097
+ fullscreen?: boolean | undefined;
2098
+ grid?: {
2099
+ cols?: string | number | undefined;
2100
+ xs?: string | number | undefined;
2101
+ sm?: string | number | undefined;
2102
+ md?: string | number | undefined;
2103
+ lg?: string | number | undefined;
2104
+ xl?: string | number | undefined;
2105
+ 'offset-xs'?: string | number | undefined;
2106
+ 'offset-sm'?: string | number | undefined;
2107
+ 'offset-md'?: string | number | undefined;
2108
+ 'offset-lg'?: string | number | undefined;
2109
+ 'offset-xl'?: string | number | undefined;
2110
+ } | undefined;
2111
+ persistent?: boolean | undefined;
2112
+ draggable?: boolean | undefined;
2113
+ dragHandle?: string | undefined;
2114
+ escKeydownStop?: boolean | undefined;
2115
+ events?: {
2116
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2117
+ onShow?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2118
+ onHide?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2119
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2120
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2121
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2122
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2123
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2124
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2125
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2126
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2127
+ } | undefined;
2128
+ allowDuplicate?: boolean | undefined;
2129
+ autofocus?: boolean | undefined;
2130
+ children?: {
2131
+ [x: string]: any;
2132
+ allowDuplicate?: boolean | undefined;
2133
+ autofocus?: boolean | undefined;
2134
+ children?: any[] | undefined;
2135
+ componentId?: number | undefined;
2136
+ cssClass?: string | undefined;
2137
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
2138
+ events?: {
2139
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2140
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2141
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2142
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2143
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2144
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2145
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2146
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2147
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2148
+ } | undefined;
2149
+ directives?: {
2150
+ [x: string]: {
2151
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2152
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2153
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2154
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2155
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2156
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2157
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2158
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2159
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2160
+ } | undefined;
2161
+ touch?: {
2162
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2163
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2164
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2165
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2166
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2167
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2168
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2169
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2170
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2171
+ } | undefined;
2172
+ } | undefined;
2173
+ isVisible?: string | boolean | undefined;
2174
+ dark?: boolean | undefined;
2175
+ light?: boolean | undefined;
2176
+ theme?: string | undefined;
2177
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
2178
+ name: string;
2179
+ parent?: {
2180
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
2181
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
2182
+ allowDuplicate: boolean;
2183
+ autofocus: boolean;
2184
+ children: any[];
2185
+ componentId: number;
2186
+ cssClass: string;
2187
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
2188
+ events: {
2189
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2190
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2191
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2192
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2193
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2194
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2195
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2196
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2197
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2198
+ };
2199
+ directives: {
2200
+ [x: string]: {
2201
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2202
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2203
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2204
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2205
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2206
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2207
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2208
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2209
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2210
+ } | undefined;
2211
+ touch?: {
2212
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2213
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2214
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2215
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2216
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2217
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2218
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2219
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2220
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2221
+ } | undefined;
2222
+ };
2223
+ isVisible: string | boolean;
2224
+ dark: boolean;
2225
+ light: boolean;
2226
+ theme?: string | undefined;
2227
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
2228
+ name: string;
2229
+ parent?: any | undefined;
2230
+ tabStop: boolean;
2231
+ userProperties: import("@zeedhi/core").IDictionary<any>;
2232
+ fillHeight: boolean;
2233
+ } | undefined;
2234
+ tabStop?: boolean | undefined;
2235
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
2236
+ fillHeight?: boolean | undefined;
2237
+ }[] | undefined;
2238
+ componentId?: number | undefined;
2239
+ cssClass?: string | undefined;
2240
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
2241
+ directives?: {
2242
+ [x: string]: {
2243
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2244
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2245
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2246
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2247
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2248
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2249
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2250
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2251
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2252
+ } | undefined;
2253
+ touch?: {
2254
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2255
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2256
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2257
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2258
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2259
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2260
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2261
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2262
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2263
+ } | undefined;
2264
+ } | undefined;
2265
+ isVisible?: string | boolean | undefined;
2266
+ dark?: boolean | undefined;
2267
+ light?: boolean | undefined;
2268
+ theme?: string | undefined;
2269
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
2270
+ name: string;
2271
+ parent?: {
2272
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
2273
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
2274
+ allowDuplicate: boolean;
2275
+ autofocus: boolean;
2276
+ children: any[];
2277
+ componentId: number;
2278
+ cssClass: string;
2279
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
2280
+ events: {
2281
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2282
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2283
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2284
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2285
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2286
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2287
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2288
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2289
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2290
+ };
2291
+ directives: {
2292
+ [x: string]: {
2293
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2294
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2295
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2296
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2297
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2298
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2299
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2300
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2301
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2302
+ } | undefined;
2303
+ touch?: {
2304
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2305
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2306
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2307
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2308
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2309
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2310
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2311
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2312
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2313
+ } | undefined;
2314
+ };
2315
+ isVisible: string | boolean;
2316
+ dark: boolean;
2317
+ light: boolean;
2318
+ theme?: string | undefined;
2319
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
2320
+ name: string;
2321
+ parent?: any | undefined;
2322
+ tabStop: boolean;
2323
+ userProperties: import("@zeedhi/core").IDictionary<any>;
2324
+ fillHeight: boolean;
2325
+ } | undefined;
2326
+ tabStop?: boolean | undefined;
2327
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
2328
+ fillHeight?: boolean | undefined;
2329
+ };
2330
+ showCheckboxAllFilter: boolean;
2331
+ defaultFilter: import("@zeedhi/core").IDictionary<any>;
2332
+ editNewRowsOnly: boolean;
2333
+ };
2334
+ showCheckboxAll: boolean;
2335
+ loadGrid: (gridName?: string | undefined) => void;
2336
+ click: (event?: Event | undefined) => void;
2337
+ hideFilterModal: () => void;
2338
+ destroyFilterModal: () => void;
2339
+ onBeforeDestroy: () => void;
2340
+ absolute: boolean;
2341
+ block: boolean;
2342
+ bottom: boolean;
2343
+ color: string;
2344
+ disabled: boolean;
2345
+ events: {
2346
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent> | undefined)[] | undefined;
2347
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
2348
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
2349
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
2350
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
2351
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
2352
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
2353
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
2354
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IButtonEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IButtonEvent>> | undefined;
2355
+ };
2356
+ fab: boolean;
2357
+ fixed: boolean;
2358
+ flat: boolean;
2359
+ href: string;
2360
+ icon: boolean;
2361
+ iconName: string;
2362
+ label: string;
2363
+ large: boolean;
2364
+ left: boolean;
2365
+ outline: boolean;
2366
+ reverse: boolean;
2367
+ right: boolean;
2368
+ round: string | number | boolean;
2369
+ small: boolean;
2370
+ target: string;
2371
+ tile: boolean;
2372
+ to: string;
2373
+ top: boolean;
2374
+ type: string;
2375
+ width: string | number;
2376
+ active?: boolean | undefined;
2377
+ appendIcon?: string | undefined;
2378
+ border: string | number | boolean;
2379
+ density: "default" | "comfortable" | "compact";
2380
+ elevation?: string | number | undefined;
2381
+ loading: string | boolean;
2382
+ position?: "absolute" | "fixed" | "relative" | "static" | "sticky" | undefined;
2383
+ prependIcon?: string | undefined;
2384
+ replace: boolean;
2385
+ ripple: boolean;
2386
+ selectedClass?: string | undefined;
2387
+ size?: "large" | "small" | "default" | "x-small" | "x-large" | undefined;
2388
+ stacked: boolean;
2389
+ tag?: string | undefined;
2390
+ variant?: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain" | undefined;
2391
+ children: {
2392
+ [x: string]: any;
2393
+ children?: any[] | undefined;
2394
+ component: string;
2395
+ allowDuplicate?: boolean | undefined;
2396
+ autofocus?: boolean | undefined;
2397
+ componentId?: number | undefined;
2398
+ cssClass?: string | undefined;
2399
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
2400
+ events?: {
2401
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2402
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2403
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2404
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2405
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2406
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2407
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2408
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2409
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2410
+ } | undefined;
2411
+ directives?: {
2412
+ [x: string]: {
2413
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2414
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2415
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2416
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2417
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2418
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2419
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2420
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2421
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2422
+ } | undefined;
2423
+ touch?: {
2424
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2425
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2426
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2427
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2428
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2429
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2430
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2431
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2432
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2433
+ } | undefined;
2434
+ } | undefined;
2435
+ isVisible?: string | boolean | undefined;
2436
+ dark?: boolean | undefined;
2437
+ light?: boolean | undefined;
2438
+ theme?: string | undefined;
2439
+ keyMap?: import("@zeedhi/core").IKeyMap<IEventParam<any>> | undefined;
2440
+ name: string;
2441
+ parent?: {
2442
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
2443
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
2444
+ allowDuplicate: boolean;
2445
+ autofocus: boolean;
2446
+ children: any[];
2447
+ componentId: number;
2448
+ cssClass: string;
2449
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
2450
+ events: {
2451
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2452
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2453
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2454
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2455
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2456
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2457
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2458
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2459
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2460
+ };
2461
+ directives: {
2462
+ [x: string]: {
2463
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2464
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2465
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2466
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2467
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2468
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2469
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2470
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2471
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2472
+ } | undefined;
2473
+ touch?: {
2474
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2475
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2476
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2477
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2478
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2479
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2480
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2481
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2482
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2483
+ } | undefined;
2484
+ };
2485
+ isVisible: string | boolean;
2486
+ dark: boolean;
2487
+ light: boolean;
2488
+ theme?: string | undefined;
2489
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
2490
+ name: string;
2491
+ parent?: any | undefined;
2492
+ tabStop: boolean;
2493
+ userProperties: import("@zeedhi/core").IDictionary<any>;
2494
+ fillHeight: boolean;
2495
+ } | undefined;
2496
+ tabStop?: boolean | undefined;
2497
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
2498
+ fillHeight?: boolean | undefined;
2499
+ }[];
2500
+ component: string;
2501
+ allowDuplicate: boolean;
2502
+ autofocus: boolean;
2503
+ childrenInstances: any[];
2504
+ cssClass: string;
2505
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
2506
+ directives: {
2507
+ [x: string]: {
2508
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2509
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2510
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2511
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2512
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2513
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2514
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2515
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2516
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2517
+ } | undefined;
2518
+ touch?: {
2519
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2520
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2521
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2522
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2523
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2524
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2525
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2526
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2527
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2528
+ } | undefined;
2529
+ };
2530
+ isVisible: boolean;
2531
+ name: string;
2532
+ dark: boolean;
2533
+ light: boolean;
2534
+ theme?: string | undefined;
2535
+ fillHeight: boolean;
2536
+ parent?: {
2537
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
2538
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
2539
+ allowDuplicate: boolean;
2540
+ autofocus: boolean;
2541
+ children: any[];
2542
+ componentId: number;
2543
+ cssClass: string;
2544
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
2545
+ events: {
2546
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2547
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2548
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2549
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2550
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2551
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2552
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2553
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2554
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2555
+ };
2556
+ directives: {
2557
+ [x: string]: {
2558
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2559
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2560
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2561
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2562
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2563
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2564
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2565
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2566
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2567
+ } | undefined;
2568
+ touch?: {
2569
+ [x: string]: string | import("@zeedhi/core").IEvent<IEventParam<any>> | (string | import("@zeedhi/core").IEvent<IEventParam<any>> | undefined)[] | undefined;
2570
+ blur?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2571
+ click?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2572
+ focus?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2573
+ onCreated?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2574
+ onBeforeMount?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2575
+ onMounted?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2576
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2577
+ onDestroyed?: import("@zeedhi/common").EventDef<IEventParam<any>, import("@zeedhi/core").IEvent<IEventParam<any>>> | undefined;
2578
+ } | undefined;
2579
+ };
2580
+ isVisible: string | boolean;
2581
+ dark: boolean;
2582
+ light: boolean;
2583
+ theme?: string | undefined;
2584
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
2585
+ name: string;
2586
+ parent?: any | undefined;
2587
+ tabStop: boolean;
2588
+ userProperties: import("@zeedhi/core").IDictionary<any>;
2589
+ fillHeight: boolean;
2590
+ } | undefined;
2591
+ componentId: number;
2592
+ keyMap: import("@zeedhi/core").IKeyMap<IEventParam<any>>;
2593
+ isFocused: boolean;
2594
+ tabStop: boolean;
2595
+ userProperties: import("@zeedhi/core").IDictionary<any>;
2596
+ setViewFocus: (viewFocus: () => void) => void;
2597
+ setFocus: () => void;
2598
+ callEvent: (eventName: string, args: any) => boolean;
2599
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
2600
+ removeChild: (name: string) => void;
2601
+ getChildInstance: <T_1>(name: string) => T_1;
2602
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
2603
+ onCreated: () => void;
2604
+ onBeforeMount: () => void;
2605
+ onMounted: (element: any) => void;
2606
+ onDestroyed: () => void;
2607
+ focus: (event: Event, element: any) => void;
2608
+ blur: (event: Event, element: any) => void;
2609
+ mouseenter: (event?: Event | undefined, element?: any) => void;
2610
+ mouseleave: (event?: Event | undefined, element?: any) => void;
2611
+ mouseout: (event?: Event | undefined, element?: any) => void;
2612
+ mouseover: (event?: Event | undefined, element?: any) => void;
2613
+ };
2614
+ root: Readonly<import("vue").ShallowRef<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null>>;
2615
+ filterClick: ({ event }: IEventParam<Button>) => void;
2616
+ click: (event: Event) => void;
2617
+ focus: (event: Event) => void;
2618
+ blur: (event: Event) => void;
2619
+ mouseenter: (event: Event) => void;
2620
+ mouseleave: (event: Event) => void;
2621
+ mouseout: (event: Event) => void;
2622
+ mouseover: (event: Event) => void;
2623
+ getIcon: (type: "append" | "prepend") => string | undefined;
2624
+ getPosition: () => "absolute" | "fixed" | "relative" | "static" | "sticky" | undefined;
2625
+ getSize: () => "large" | "small" | "default" | "x-small" | "x-large";
2626
+ getVariant: () => "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
2627
+ getCssPositioning: () => any;
2628
+ getRounded: () => "0" | "pill" | undefined;
2629
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
2630
+ gridName: {
2631
+ type: StringConstructor;
2632
+ default: string;
2633
+ };
2634
+ grid: {
2635
+ type: (StringConstructor | ObjectConstructor)[];
2636
+ default: () => void;
2637
+ };
2638
+ showCheckboxAll: {
2639
+ type: (StringConstructor | BooleanConstructor)[];
2640
+ default: boolean;
2641
+ };
2642
+ absolute: {
2643
+ type: (StringConstructor | BooleanConstructor)[];
2644
+ default: boolean;
2645
+ };
2646
+ block: {
2647
+ type: (StringConstructor | BooleanConstructor)[];
2648
+ default: boolean;
2649
+ };
2650
+ bottom: {
2651
+ type: (StringConstructor | BooleanConstructor)[];
2652
+ default: boolean;
2653
+ };
2654
+ color: {
2655
+ type: StringConstructor;
2656
+ default: string;
2657
+ };
2658
+ disabled: {
2659
+ type: (StringConstructor | BooleanConstructor)[];
2660
+ default: boolean;
2661
+ };
2662
+ fab: {
2663
+ type: (StringConstructor | BooleanConstructor)[];
2664
+ default: boolean;
2665
+ };
2666
+ fixed: {
2667
+ type: (StringConstructor | BooleanConstructor)[];
2668
+ default: boolean;
2669
+ };
2670
+ flat: {
2671
+ type: (StringConstructor | BooleanConstructor)[];
2672
+ default: boolean;
2673
+ };
2674
+ href: {
2675
+ type: StringConstructor;
2676
+ default: string;
2677
+ };
2678
+ icon: {
2679
+ type: (StringConstructor | BooleanConstructor)[];
2680
+ default: boolean;
2681
+ };
2682
+ iconName: {
2683
+ type: StringConstructor;
2684
+ default: string;
2685
+ };
2686
+ label: {
2687
+ type: StringConstructor;
2688
+ default: string;
2689
+ };
2690
+ large: {
2691
+ type: (StringConstructor | BooleanConstructor)[];
2692
+ default: boolean;
2693
+ };
2694
+ left: {
2695
+ type: (StringConstructor | BooleanConstructor)[];
2696
+ default: boolean;
2697
+ };
2698
+ outline: {
2699
+ type: (StringConstructor | BooleanConstructor)[];
2700
+ default: boolean;
2701
+ };
2702
+ reverse: {
2703
+ type: (StringConstructor | BooleanConstructor)[];
2704
+ default: boolean;
2705
+ };
2706
+ right: {
2707
+ type: (StringConstructor | BooleanConstructor)[];
2708
+ default: boolean;
2709
+ };
2710
+ round: {
2711
+ type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
2712
+ default: boolean;
2713
+ };
2714
+ small: {
2715
+ type: (StringConstructor | BooleanConstructor)[];
2716
+ default: boolean;
2717
+ };
2718
+ target: {
2719
+ type: StringConstructor;
2720
+ default: string;
2721
+ };
2722
+ tile: {
2723
+ type: (StringConstructor | BooleanConstructor)[];
2724
+ default: boolean;
2725
+ };
2726
+ to: {
2727
+ type: StringConstructor;
2728
+ default: string;
2729
+ };
2730
+ top: {
2731
+ type: (StringConstructor | BooleanConstructor)[];
2732
+ default: boolean;
2733
+ };
2734
+ type: {
2735
+ type: StringConstructor;
2736
+ default: string;
2737
+ };
2738
+ width: {
2739
+ type: (StringConstructor | NumberConstructor)[];
2740
+ default: string;
2741
+ };
2742
+ active: {
2743
+ type: (StringConstructor | BooleanConstructor)[];
2744
+ default: undefined;
2745
+ };
2746
+ appendIcon: {
2747
+ type: StringConstructor;
2748
+ };
2749
+ border: {
2750
+ type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
2751
+ default: boolean;
2752
+ };
2753
+ density: {
2754
+ type: StringConstructor;
2755
+ default: string;
2756
+ };
2757
+ elevation: {
2758
+ type: (StringConstructor | NumberConstructor)[];
2759
+ };
2760
+ loading: {
2761
+ type: (StringConstructor | BooleanConstructor)[];
2762
+ default: boolean;
2763
+ };
2764
+ position: {
2765
+ type: StringConstructor;
2766
+ };
2767
+ prependIcon: {
2768
+ type: StringConstructor;
2769
+ };
2770
+ replace: {
2771
+ type: (StringConstructor | BooleanConstructor)[];
2772
+ default: boolean;
2773
+ };
2774
+ ripple: {
2775
+ type: (StringConstructor | BooleanConstructor)[];
2776
+ default: boolean;
2777
+ };
2778
+ selectedClass: {
2779
+ type: StringConstructor;
2780
+ };
2781
+ size: {
2782
+ type: StringConstructor;
2783
+ };
2784
+ stacked: {
2785
+ type: (StringConstructor | BooleanConstructor)[];
2786
+ default: boolean;
2787
+ };
2788
+ tag: {
2789
+ type: StringConstructor;
2790
+ };
2791
+ variant: {
2792
+ type: StringConstructor;
2793
+ };
2794
+ children: {
2795
+ type: (StringConstructor | {
2796
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
2797
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
2798
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
2799
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
2800
+ isArray(arg: any): arg is any[];
2801
+ readonly prototype: any[];
2802
+ from<T>(arrayLike: ArrayLike<T>): T[];
2803
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
2804
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
2805
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
2806
+ of<T_4>(...items: T_4[]): T_4[];
2807
+ readonly [Symbol.species]: ArrayConstructor;
2808
+ })[];
2809
+ default(): never[];
2810
+ };
2811
+ component: {
2812
+ type: StringConstructor;
2813
+ };
2814
+ allowDuplicate: {
2815
+ type: (StringConstructor | BooleanConstructor)[];
2816
+ default: boolean;
2817
+ };
2818
+ autofocus: {
2819
+ type: (StringConstructor | BooleanConstructor)[];
2820
+ default: boolean;
2821
+ };
2822
+ cssClass: {
2823
+ type: StringConstructor;
2824
+ default: string;
2825
+ };
2826
+ cssStyle: {
2827
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
2828
+ default: string;
2829
+ };
2830
+ dark: {
2831
+ type: (StringConstructor | BooleanConstructor)[];
2832
+ default: boolean;
2833
+ };
2834
+ directives: {
2835
+ type: ObjectConstructor;
2836
+ default(): {};
2837
+ };
2838
+ events: {
2839
+ type: ObjectConstructor;
2840
+ default(): {};
2841
+ };
2842
+ instanceObject: {
2843
+ type: ObjectConstructor;
2844
+ };
2845
+ isVisible: {
2846
+ type: (StringConstructor | BooleanConstructor)[];
2847
+ default: boolean;
2848
+ };
2849
+ keyMap: {
2850
+ type: ObjectConstructor;
2851
+ default(): {};
2852
+ };
2853
+ light: {
2854
+ type: (StringConstructor | BooleanConstructor)[];
2855
+ default: boolean;
2856
+ };
2857
+ name: {
2858
+ type: StringConstructor;
2859
+ required: true;
2860
+ };
2861
+ parent: {
2862
+ type: ObjectConstructor;
2863
+ };
2864
+ tabStop: {
2865
+ type: (StringConstructor | BooleanConstructor)[];
2866
+ default: boolean;
2867
+ };
2868
+ theme: {
2869
+ type: StringConstructor;
2870
+ };
2871
+ }>> & Readonly<{}>, {
2872
+ gridName: string;
2873
+ grid: string | Record<string, any>;
2874
+ showCheckboxAll: string | boolean;
2875
+ absolute: string | boolean;
2876
+ block: string | boolean;
2877
+ bottom: string | boolean;
2878
+ color: string;
2879
+ disabled: string | boolean;
2880
+ fab: string | boolean;
2881
+ fixed: string | boolean;
2882
+ flat: string | boolean;
2883
+ href: string;
2884
+ icon: string | boolean;
2885
+ iconName: string;
2886
+ label: string;
2887
+ large: string | boolean;
2888
+ left: string | boolean;
2889
+ outline: string | boolean;
2890
+ reverse: string | boolean;
2891
+ right: string | boolean;
2892
+ round: string | number | boolean;
2893
+ small: string | boolean;
2894
+ target: string;
2895
+ tile: string | boolean;
2896
+ to: string;
2897
+ top: string | boolean;
2898
+ type: string;
2899
+ width: string | number;
2900
+ active: string | boolean;
2901
+ border: string | number | boolean;
2902
+ density: string;
2903
+ loading: string | boolean;
2904
+ replace: string | boolean;
2905
+ ripple: string | boolean;
2906
+ stacked: string | boolean;
2907
+ children: string | import("@zeedhi/common").IComponentRender[];
2908
+ allowDuplicate: string | boolean;
2909
+ autofocus: string | boolean;
2910
+ cssClass: string;
2911
+ cssStyle: import("vue").StyleValue;
2912
+ dark: string | boolean;
2913
+ directives: Record<string, any>;
2914
+ events: Record<string, any>;
2915
+ isVisible: string | boolean;
2916
+ keyMap: Record<string, any>;
2917
+ light: string | boolean;
2918
+ tabStop: string | boolean;
2919
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2920
+ export default tekGridFilterButtonComponent;