@zeedhi/vuetify 3.2.0 → 3.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (132) hide show
  1. package/dist/zd-vuetify.css +25 -2
  2. package/dist/zd-vuetify.min.css +2 -2
  3. package/dist/zd-vuetify.min.js +12 -12
  4. package/dist/zd-vuetify.mjs +346 -123
  5. package/package.json +3 -3
  6. package/src/components/zd-component/ZdComponent.ts +15 -13
  7. package/src/components/zd-tabs/ZdTab.ts +40 -6
  8. package/src/components/zd-tabs/ZdTab.vue +16 -3
  9. package/src/components/zd-tabs/ZdTabItem.ts +2 -2
  10. package/src/components/zd-tabs/ZdTabItem.vue +1 -1
  11. package/src/components/zd-tabs/ZdTabs.ts +96 -2
  12. package/src/components/zd-tabs/ZdTabs.vue +46 -17
  13. package/types/components/tek-grid/TekGrid.d.ts +7258 -0
  14. package/types/components/tek-grid/TekGrid.ts.d.ts +7258 -0
  15. package/types/components/tek-grid/column-filter/TekGridColumnFilter.d.ts +129 -0
  16. package/types/components/tek-grid/column-filter/TekGridColumnFilter.ts.d.ts +129 -0
  17. package/types/components/tek-grid/column-header/TekGridHeaderRow.d.ts +225 -0
  18. package/types/components/tek-grid/column-header/TekGridHeaderRow.ts.d.ts +225 -0
  19. package/types/components/tek-grid/columns-button/TekGridColumnsButton.d.ts +2432 -0
  20. package/types/components/tek-grid/columns-button/TekGridColumnsButton.ts.d.ts +2432 -0
  21. package/types/components/tek-grid/columns-button/TekGridColumnsOptionsController.d.ts +65 -0
  22. package/types/components/tek-grid/columns-button/TekGridColumnsOptionsModal.d.ts +9 -0
  23. package/types/components/tek-grid/filter-button/TekGridFilterButton.d.ts +2920 -0
  24. package/types/components/tek-grid/filter-button/TekGridFilterButton.ts.d.ts +2920 -0
  25. package/types/components/tek-grid/indentation/TekGridIndentation.d.ts +32 -0
  26. package/types/components/tek-grid/indentation/TekGridIndentation.ts.d.ts +32 -0
  27. package/types/components/tek-grid/layout-options/TekGridLayoutOptions.d.ts +1892 -0
  28. package/types/components/tek-grid/layout-options/TekGridLayoutOptions.ts.d.ts +1892 -0
  29. package/types/components/tek-grid/row/TekGridFooterRow.d.ts +90 -0
  30. package/types/components/tek-grid/row/TekGridFooterRow.ts.d.ts +90 -0
  31. package/types/components/tek-grid/row/TekGridGroupRow.d.ts +87 -0
  32. package/types/components/tek-grid/row/TekGridGroupRow.ts.d.ts +87 -0
  33. package/types/components/tooltip-overflow/ZdTooltipOverflow.ts.d.ts +50 -0
  34. package/types/components/zd-activator-wrapper/ZdActivatorWrapper.ts.d.ts +25 -0
  35. package/types/components/zd-alert/ZdAlert.ts.d.ts +884 -0
  36. package/types/components/zd-badge/ZdBadge.ts.d.ts +624 -0
  37. package/types/components/zd-breadcrumbs/ZdBreadcrumbs.ts.d.ts +697 -0
  38. package/types/components/zd-button/ZdButton.ts.d.ts +1158 -0
  39. package/types/components/zd-button-group/ZdButtonGroup.ts.d.ts +785 -0
  40. package/types/components/zd-card/ZdCard.ts.d.ts +1028 -0
  41. package/types/components/zd-carousel/ZdCarousel.ts.d.ts +2007 -0
  42. package/types/components/zd-checkbox/ZdCheckbox.ts.d.ts +642 -0
  43. package/types/components/zd-checkbox-multiple/ZdCheckboxMultiple.ts.d.ts +2010 -0
  44. package/types/components/zd-chip/ZdChip.ts.d.ts +1256 -0
  45. package/types/components/zd-code-viewer/ZdCodeViewer.ts.d.ts +791 -0
  46. package/types/components/zd-col/ZdCol.ts.d.ts +741 -0
  47. package/types/components/zd-collapse-card/ZdCollapseCard.ts.d.ts +1583 -0
  48. package/types/components/zd-container/ZdContainer.ts.d.ts +722 -0
  49. package/types/components/zd-currency/ZdCurrency.ts.d.ts +2024 -0
  50. package/types/components/zd-date-input/ZdDateInput.ts.d.ts +960 -0
  51. package/types/components/zd-dialog/ZdDialog.ts.d.ts +262 -0
  52. package/types/components/zd-divider/ZdDivider.ts.d.ts +623 -0
  53. package/types/components/zd-dropdown/ZdDropdown.ts.d.ts +836 -0
  54. package/types/components/zd-footer/ZdFooter.ts.d.ts +1262 -0
  55. package/types/components/zd-form/ZdForm.ts.d.ts +118 -0
  56. package/types/components/zd-frame/ZdFrame.ts.d.ts +138 -0
  57. package/types/components/zd-frame-page/ZdFramePage.ts.d.ts +805 -0
  58. package/types/components/zd-grid/ZdGrid.ts.d.ts +7304 -0
  59. package/types/components/zd-grid/cell/ZdGridAction.ts.d.ts +14 -0
  60. package/types/components/zd-grid/cell/ZdGridCell.ts.d.ts +68 -0
  61. package/types/components/zd-grid/cell/ZdGridCellContent.ts.d.ts +58 -0
  62. package/types/components/zd-grid/cell/ZdGridCheckbox.ts.d.ts +53 -0
  63. package/types/components/zd-grid/column-header/ZdGridColumnHeader.ts.d.ts +112 -0
  64. package/types/components/zd-grid/column-header/ZdGridHeaderIcon.ts.d.ts +46 -0
  65. package/types/components/zd-grid/column-header/ZdGridHeaderRow.ts.d.ts +165 -0
  66. package/types/components/zd-grid/column-header/ZdGridSort.ts.d.ts +47 -0
  67. package/types/components/zd-grid/footer/ZdGridFooter.ts.d.ts +2087 -0
  68. package/types/components/zd-grid/helper/ZdGridHelper.ts.d.ts +16 -0
  69. package/types/components/zd-grid/row/TableRow.ts.d.ts +34 -0
  70. package/types/components/zd-grid/row/ZdGridRow.ts.d.ts +105 -0
  71. package/types/components/zd-grid/toolbar/ZdGridToolbar.ts.d.ts +2086 -0
  72. package/types/components/zd-grid-editable/ZdGridEditable.ts.d.ts +8663 -0
  73. package/types/components/zd-grid-editable/cell/ZdGridEditableCell.ts.d.ts +637 -0
  74. package/types/components/zd-grid-editable/row/ZdGridEditableRow.ts.d.ts +126 -0
  75. package/types/components/zd-header/ZdHeader.ts.d.ts +1320 -0
  76. package/types/components/zd-icon/ZdIcon.ts.d.ts +383 -0
  77. package/types/components/zd-image/ZdImage.ts.d.ts +753 -0
  78. package/types/components/zd-increment/ZdIncrement.ts.d.ts +2069 -0
  79. package/types/components/zd-iterable/ZdIterableNoData.ts.d.ts +2089 -0
  80. package/types/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.ts.d.ts +1645 -0
  81. package/types/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.ts.d.ts +1081 -0
  82. package/types/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.ts.d.ts +2763 -0
  83. package/types/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.ts.d.ts +1627 -0
  84. package/types/components/zd-iterable/zd-search/ZdSearch.ts.d.ts +766 -0
  85. package/types/components/zd-iterable-component-render/ZdIterableComponentRender.ts.d.ts +2484 -0
  86. package/types/components/zd-layout/ZdLayout.ts.d.ts +647 -0
  87. package/types/components/zd-list/ZdList.ts.d.ts +1140 -0
  88. package/types/components/zd-list/ZdListGroup.ts.d.ts +1332 -0
  89. package/types/components/zd-list/ZdListItem.ts.d.ts +848 -0
  90. package/types/components/zd-loading/ZdLoading.ts.d.ts +350 -0
  91. package/types/components/zd-login/ZdLogin.ts.d.ts +1072 -0
  92. package/types/components/zd-login/ZdLoginButton.ts.d.ts +1910 -0
  93. package/types/components/zd-main/ZdMain.ts.d.ts +619 -0
  94. package/types/components/zd-master-detail/ZdMasterDetail.ts.d.ts +684 -0
  95. package/types/components/zd-menu/ZdMenu.ts.d.ts +4484 -0
  96. package/types/components/zd-menu/ZdMenuButton.ts.d.ts +1142 -0
  97. package/types/components/zd-menu/ZdMenuGroup.ts.d.ts +6286 -0
  98. package/types/components/zd-menu/ZdMenuLink.ts.d.ts +10437 -0
  99. package/types/components/zd-menu/ZdMenuSeparator.ts.d.ts +600 -0
  100. package/types/components/zd-modal/ZdModal.ts.d.ts +10 -0
  101. package/types/components/zd-modal/ZdModalCloseButton.ts.d.ts +1137 -0
  102. package/types/components/zd-month/ZdMonth.ts.d.ts +2217 -0
  103. package/types/components/zd-number-input/ZdNumberInput.ts.d.ts +2021 -0
  104. package/types/components/zd-password/ZdPassword.ts.d.ts +2014 -0
  105. package/types/components/zd-progress/ZdProgress.ts.d.ts +859 -0
  106. package/types/components/zd-radio/ZdRadio.ts.d.ts +682 -0
  107. package/types/components/zd-row/ZdRow.ts.d.ts +734 -0
  108. package/types/components/zd-select/ZdSelect.ts.d.ts +313 -0
  109. package/types/components/zd-select-multiple/ZdSelectMultiple.ts.d.ts +333 -0
  110. package/types/components/zd-svg-map/ZdSvgMap.ts.d.ts +414 -0
  111. package/types/components/zd-switch/ZdSwitch.ts.d.ts +1918 -0
  112. package/types/components/zd-table/ZdTable.ts.d.ts +1092 -0
  113. package/types/components/zd-tabs/ZdTab.d.ts +4 -10
  114. package/types/components/zd-tabs/ZdTab.ts.d.ts +674 -0
  115. package/types/components/zd-tabs/ZdTabItem.d.ts +6 -6
  116. package/types/components/zd-tabs/ZdTabItem.ts.d.ts +268 -0
  117. package/types/components/zd-tabs/ZdTabs.d.ts +20 -1
  118. package/types/components/zd-tabs/ZdTabs.ts.d.ts +929 -0
  119. package/types/components/zd-tag/ZdTag.ts.d.ts +613 -0
  120. package/types/components/zd-text/ZdText.ts.d.ts +670 -0
  121. package/types/components/zd-text-input/ZdTextInput.ts.d.ts +746 -0
  122. package/types/components/zd-textarea/ZdTextarea.ts.d.ts +877 -0
  123. package/types/components/zd-time/ZdTime.ts.d.ts +2224 -0
  124. package/types/components/zd-tooltip/ZdTooltip.ts.d.ts +781 -0
  125. package/types/components/zd-tree/ZdTree.ts.d.ts +1878 -0
  126. package/types/components/zd-tree/ZdTreeAfterTitle.ts.d.ts +26 -0
  127. package/types/components/zd-tree/ZdTreeCheckbox.ts.d.ts +74 -0
  128. package/types/components/zd-tree-grid/ZdTreeGrid.ts.d.ts +4178 -0
  129. package/types/components/zd-tree-grid/cell/ZdTreeGridCell.ts.d.ts +92 -0
  130. package/types/components/zd-tree-grid/row/ZdTreeGridRow.ts.d.ts +124 -0
  131. package/types/composables/useTableLayout.d.ts +25 -0
  132. package/types/utils/isArrayOperation.d.ts +2 -0
@@ -0,0 +1,2224 @@
1
+ export declare const ZdTimeProps: {
2
+ allowedHours: {
3
+ type: (StringConstructor | ArrayConstructor)[];
4
+ default: undefined;
5
+ };
6
+ allowedMinutes: {
7
+ type: (StringConstructor | ArrayConstructor)[];
8
+ default: undefined;
9
+ };
10
+ allowedSeconds: {
11
+ type: (StringConstructor | ArrayConstructor)[];
12
+ default: undefined;
13
+ };
14
+ autofill: {
15
+ type: (StringConstructor | BooleanConstructor)[];
16
+ default: boolean;
17
+ };
18
+ timeFormat: {
19
+ type: StringConstructor;
20
+ default: string;
21
+ };
22
+ fullWidth: {
23
+ type: (StringConstructor | BooleanConstructor)[];
24
+ default: boolean;
25
+ };
26
+ maxTime: {
27
+ type: StringConstructor;
28
+ default: string;
29
+ };
30
+ minTime: {
31
+ type: StringConstructor;
32
+ default: string;
33
+ };
34
+ scrollable: {
35
+ type: (StringConstructor | BooleanConstructor)[];
36
+ default: boolean;
37
+ };
38
+ showTimePicker: {
39
+ type: (StringConstructor | BooleanConstructor)[];
40
+ default: boolean;
41
+ };
42
+ useSeconds: {
43
+ type: (StringConstructor | BooleanConstructor)[];
44
+ default: boolean;
45
+ };
46
+ mask: {
47
+ type: StringConstructor;
48
+ default: undefined;
49
+ };
50
+ valueFormat: {
51
+ type: StringConstructor;
52
+ required: false;
53
+ };
54
+ inputFormat: {
55
+ type: StringConstructor;
56
+ required: false;
57
+ };
58
+ displayFormat: {
59
+ type: StringConstructor;
60
+ required: false;
61
+ };
62
+ appendIcon: {
63
+ type: StringConstructor;
64
+ default: string;
65
+ };
66
+ appendOuterIcon: {
67
+ type: StringConstructor;
68
+ default: string;
69
+ };
70
+ prefix: {
71
+ type: StringConstructor;
72
+ default: string;
73
+ };
74
+ prependIcon: {
75
+ type: StringConstructor;
76
+ default: string;
77
+ };
78
+ prependOuterIcon: {
79
+ type: StringConstructor;
80
+ default: string;
81
+ };
82
+ suffix: {
83
+ type: StringConstructor;
84
+ default: string;
85
+ };
86
+ valueWithPrefix: {
87
+ type: (StringConstructor | BooleanConstructor)[];
88
+ default: boolean;
89
+ };
90
+ valueWithSuffix: {
91
+ type: (StringConstructor | BooleanConstructor)[];
92
+ default: boolean;
93
+ };
94
+ type: {
95
+ type: StringConstructor;
96
+ default: string;
97
+ };
98
+ disableMaska: {
99
+ type: BooleanConstructor;
100
+ default: boolean;
101
+ };
102
+ width: {
103
+ type: (StringConstructor | NumberConstructor)[];
104
+ };
105
+ minWidth: {
106
+ type: (StringConstructor | NumberConstructor)[];
107
+ default: string;
108
+ };
109
+ maxWidth: {
110
+ type: (StringConstructor | NumberConstructor)[];
111
+ default: string;
112
+ };
113
+ fillHeight: {
114
+ type: (StringConstructor | BooleanConstructor)[];
115
+ default: boolean;
116
+ };
117
+ height: {
118
+ type: (StringConstructor | NumberConstructor)[];
119
+ };
120
+ minHeight: {
121
+ type: (StringConstructor | NumberConstructor)[];
122
+ default: string;
123
+ };
124
+ maxHeight: {
125
+ type: (StringConstructor | NumberConstructor)[];
126
+ default: string;
127
+ };
128
+ align: {
129
+ type: StringConstructor;
130
+ default: string;
131
+ };
132
+ alwaysShowError: {
133
+ type: (StringConstructor | BooleanConstructor)[];
134
+ default: boolean;
135
+ };
136
+ clearable: {
137
+ type: (StringConstructor | BooleanConstructor)[];
138
+ default: boolean;
139
+ };
140
+ color: {
141
+ type: StringConstructor;
142
+ default: string;
143
+ };
144
+ dense: {
145
+ type: (StringConstructor | BooleanConstructor)[];
146
+ default: boolean;
147
+ };
148
+ disabled: {
149
+ type: (StringConstructor | BooleanConstructor)[];
150
+ default: boolean;
151
+ };
152
+ hint: {
153
+ type: StringConstructor;
154
+ default: string;
155
+ };
156
+ label: {
157
+ type: StringConstructor;
158
+ default: string;
159
+ };
160
+ maxLength: {
161
+ type: (StringConstructor | NumberConstructor)[];
162
+ default: undefined;
163
+ };
164
+ persistentHint: {
165
+ type: (StringConstructor | BooleanConstructor)[];
166
+ default: boolean;
167
+ };
168
+ placeholder: {
169
+ type: StringConstructor;
170
+ default: string;
171
+ };
172
+ readonly: {
173
+ type: (StringConstructor | BooleanConstructor)[];
174
+ default: boolean;
175
+ };
176
+ autoHintDetails: {
177
+ type: (StringConstructor | BooleanConstructor)[];
178
+ default: boolean;
179
+ };
180
+ reverse: {
181
+ type: (StringConstructor | BooleanConstructor)[];
182
+ default: boolean;
183
+ };
184
+ showBorder: {
185
+ type: (StringConstructor | BooleanConstructor)[];
186
+ default: boolean;
187
+ };
188
+ showHelper: {
189
+ type: (StringConstructor | BooleanConstructor)[];
190
+ default: boolean;
191
+ };
192
+ showLabel: {
193
+ type: (StringConstructor | BooleanConstructor)[];
194
+ default: boolean;
195
+ };
196
+ storePath: {
197
+ type: StringConstructor;
198
+ default: string;
199
+ };
200
+ validations: {
201
+ type: (StringConstructor | ObjectConstructor)[];
202
+ default: {};
203
+ };
204
+ value: {
205
+ default: null;
206
+ };
207
+ children: {
208
+ type: (StringConstructor | {
209
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
210
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
211
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
212
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
213
+ isArray(arg: any): arg is any[];
214
+ readonly prototype: any[];
215
+ from<T>(arrayLike: ArrayLike<T>): T[];
216
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
217
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
218
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
219
+ of<T_4>(...items: T_4[]): T_4[];
220
+ readonly [Symbol.species]: ArrayConstructor;
221
+ })[];
222
+ default(): never[];
223
+ };
224
+ component: {
225
+ type: StringConstructor;
226
+ };
227
+ allowDuplicate: {
228
+ type: (StringConstructor | BooleanConstructor)[];
229
+ default: boolean;
230
+ };
231
+ autofocus: {
232
+ type: (StringConstructor | BooleanConstructor)[];
233
+ default: boolean;
234
+ };
235
+ cssClass: {
236
+ type: StringConstructor;
237
+ default: string;
238
+ };
239
+ cssStyle: {
240
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
241
+ default: string;
242
+ };
243
+ dark: {
244
+ type: (StringConstructor | BooleanConstructor)[];
245
+ default: boolean;
246
+ };
247
+ directives: {
248
+ type: ObjectConstructor;
249
+ default(): {};
250
+ };
251
+ events: {
252
+ type: ObjectConstructor;
253
+ default(): {};
254
+ };
255
+ instanceObject: {
256
+ type: ObjectConstructor;
257
+ };
258
+ isVisible: {
259
+ type: (StringConstructor | BooleanConstructor)[];
260
+ default: boolean;
261
+ };
262
+ keyMap: {
263
+ type: ObjectConstructor;
264
+ default(): {};
265
+ };
266
+ light: {
267
+ type: (StringConstructor | BooleanConstructor)[];
268
+ default: boolean;
269
+ };
270
+ name: {
271
+ type: StringConstructor;
272
+ required: true;
273
+ };
274
+ parent: {
275
+ type: ObjectConstructor;
276
+ };
277
+ tabStop: {
278
+ type: (StringConstructor | BooleanConstructor)[];
279
+ default: boolean;
280
+ };
281
+ theme: {
282
+ type: StringConstructor;
283
+ };
284
+ };
285
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
286
+ allowedHours: {
287
+ type: (StringConstructor | ArrayConstructor)[];
288
+ default: undefined;
289
+ };
290
+ allowedMinutes: {
291
+ type: (StringConstructor | ArrayConstructor)[];
292
+ default: undefined;
293
+ };
294
+ allowedSeconds: {
295
+ type: (StringConstructor | ArrayConstructor)[];
296
+ default: undefined;
297
+ };
298
+ autofill: {
299
+ type: (StringConstructor | BooleanConstructor)[];
300
+ default: boolean;
301
+ };
302
+ timeFormat: {
303
+ type: StringConstructor;
304
+ default: string;
305
+ };
306
+ fullWidth: {
307
+ type: (StringConstructor | BooleanConstructor)[];
308
+ default: boolean;
309
+ };
310
+ maxTime: {
311
+ type: StringConstructor;
312
+ default: string;
313
+ };
314
+ minTime: {
315
+ type: StringConstructor;
316
+ default: string;
317
+ };
318
+ scrollable: {
319
+ type: (StringConstructor | BooleanConstructor)[];
320
+ default: boolean;
321
+ };
322
+ showTimePicker: {
323
+ type: (StringConstructor | BooleanConstructor)[];
324
+ default: boolean;
325
+ };
326
+ useSeconds: {
327
+ type: (StringConstructor | BooleanConstructor)[];
328
+ default: boolean;
329
+ };
330
+ mask: {
331
+ type: StringConstructor;
332
+ default: undefined;
333
+ };
334
+ valueFormat: {
335
+ type: StringConstructor;
336
+ required: false;
337
+ };
338
+ inputFormat: {
339
+ type: StringConstructor;
340
+ required: false;
341
+ };
342
+ displayFormat: {
343
+ type: StringConstructor;
344
+ required: false;
345
+ };
346
+ appendIcon: {
347
+ type: StringConstructor;
348
+ default: string;
349
+ };
350
+ appendOuterIcon: {
351
+ type: StringConstructor;
352
+ default: string;
353
+ };
354
+ prefix: {
355
+ type: StringConstructor;
356
+ default: string;
357
+ };
358
+ prependIcon: {
359
+ type: StringConstructor;
360
+ default: string;
361
+ };
362
+ prependOuterIcon: {
363
+ type: StringConstructor;
364
+ default: string;
365
+ };
366
+ suffix: {
367
+ type: StringConstructor;
368
+ default: string;
369
+ };
370
+ valueWithPrefix: {
371
+ type: (StringConstructor | BooleanConstructor)[];
372
+ default: boolean;
373
+ };
374
+ valueWithSuffix: {
375
+ type: (StringConstructor | BooleanConstructor)[];
376
+ default: boolean;
377
+ };
378
+ type: {
379
+ type: StringConstructor;
380
+ default: string;
381
+ };
382
+ disableMaska: {
383
+ type: BooleanConstructor;
384
+ default: boolean;
385
+ };
386
+ width: {
387
+ type: (StringConstructor | NumberConstructor)[];
388
+ };
389
+ minWidth: {
390
+ type: (StringConstructor | NumberConstructor)[];
391
+ default: string;
392
+ };
393
+ maxWidth: {
394
+ type: (StringConstructor | NumberConstructor)[];
395
+ default: string;
396
+ };
397
+ fillHeight: {
398
+ type: (StringConstructor | BooleanConstructor)[];
399
+ default: boolean;
400
+ };
401
+ height: {
402
+ type: (StringConstructor | NumberConstructor)[];
403
+ };
404
+ minHeight: {
405
+ type: (StringConstructor | NumberConstructor)[];
406
+ default: string;
407
+ };
408
+ maxHeight: {
409
+ type: (StringConstructor | NumberConstructor)[];
410
+ default: string;
411
+ };
412
+ align: {
413
+ type: StringConstructor;
414
+ default: string;
415
+ };
416
+ alwaysShowError: {
417
+ type: (StringConstructor | BooleanConstructor)[];
418
+ default: boolean;
419
+ };
420
+ clearable: {
421
+ type: (StringConstructor | BooleanConstructor)[];
422
+ default: boolean;
423
+ };
424
+ color: {
425
+ type: StringConstructor;
426
+ default: string;
427
+ };
428
+ dense: {
429
+ type: (StringConstructor | BooleanConstructor)[];
430
+ default: boolean;
431
+ };
432
+ disabled: {
433
+ type: (StringConstructor | BooleanConstructor)[];
434
+ default: boolean;
435
+ };
436
+ hint: {
437
+ type: StringConstructor;
438
+ default: string;
439
+ };
440
+ label: {
441
+ type: StringConstructor;
442
+ default: string;
443
+ };
444
+ maxLength: {
445
+ type: (StringConstructor | NumberConstructor)[];
446
+ default: undefined;
447
+ };
448
+ persistentHint: {
449
+ type: (StringConstructor | BooleanConstructor)[];
450
+ default: boolean;
451
+ };
452
+ placeholder: {
453
+ type: StringConstructor;
454
+ default: string;
455
+ };
456
+ readonly: {
457
+ type: (StringConstructor | BooleanConstructor)[];
458
+ default: boolean;
459
+ };
460
+ autoHintDetails: {
461
+ type: (StringConstructor | BooleanConstructor)[];
462
+ default: boolean;
463
+ };
464
+ reverse: {
465
+ type: (StringConstructor | BooleanConstructor)[];
466
+ default: boolean;
467
+ };
468
+ showBorder: {
469
+ type: (StringConstructor | BooleanConstructor)[];
470
+ default: boolean;
471
+ };
472
+ showHelper: {
473
+ type: (StringConstructor | BooleanConstructor)[];
474
+ default: boolean;
475
+ };
476
+ showLabel: {
477
+ type: (StringConstructor | BooleanConstructor)[];
478
+ default: boolean;
479
+ };
480
+ storePath: {
481
+ type: StringConstructor;
482
+ default: string;
483
+ };
484
+ validations: {
485
+ type: (StringConstructor | ObjectConstructor)[];
486
+ default: {};
487
+ };
488
+ value: {
489
+ default: null;
490
+ };
491
+ children: {
492
+ type: (StringConstructor | {
493
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
494
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
495
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
496
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
497
+ isArray(arg: any): arg is any[];
498
+ readonly prototype: any[];
499
+ from<T>(arrayLike: ArrayLike<T>): T[];
500
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
501
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
502
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
503
+ of<T_4>(...items: T_4[]): T_4[];
504
+ readonly [Symbol.species]: ArrayConstructor;
505
+ })[];
506
+ default(): never[];
507
+ };
508
+ component: {
509
+ type: StringConstructor;
510
+ };
511
+ allowDuplicate: {
512
+ type: (StringConstructor | BooleanConstructor)[];
513
+ default: boolean;
514
+ };
515
+ autofocus: {
516
+ type: (StringConstructor | BooleanConstructor)[];
517
+ default: boolean;
518
+ };
519
+ cssClass: {
520
+ type: StringConstructor;
521
+ default: string;
522
+ };
523
+ cssStyle: {
524
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
525
+ default: string;
526
+ };
527
+ dark: {
528
+ type: (StringConstructor | BooleanConstructor)[];
529
+ default: boolean;
530
+ };
531
+ directives: {
532
+ type: ObjectConstructor;
533
+ default(): {};
534
+ };
535
+ events: {
536
+ type: ObjectConstructor;
537
+ default(): {};
538
+ };
539
+ instanceObject: {
540
+ type: ObjectConstructor;
541
+ };
542
+ isVisible: {
543
+ type: (StringConstructor | BooleanConstructor)[];
544
+ default: boolean;
545
+ };
546
+ keyMap: {
547
+ type: ObjectConstructor;
548
+ default(): {};
549
+ };
550
+ light: {
551
+ type: (StringConstructor | BooleanConstructor)[];
552
+ default: boolean;
553
+ };
554
+ name: {
555
+ type: StringConstructor;
556
+ required: true;
557
+ };
558
+ parent: {
559
+ type: ObjectConstructor;
560
+ };
561
+ tabStop: {
562
+ type: (StringConstructor | BooleanConstructor)[];
563
+ default: boolean;
564
+ };
565
+ theme: {
566
+ type: StringConstructor;
567
+ };
568
+ }>, {
569
+ root: Readonly<import("vue").ShallowRef<HTMLElement | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, HTMLElement | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null>>;
570
+ textInputInstance: import("vue").Ref<any, any>;
571
+ pickerRef: import("vue").Ref<any, any>;
572
+ instance: {
573
+ allowedHours?: any[] | undefined;
574
+ allowedMinutes?: any[] | undefined;
575
+ allowedSeconds?: any[] | undefined;
576
+ autofill: boolean;
577
+ timeFormat: string;
578
+ fullWidth: boolean;
579
+ maxTime: string;
580
+ minTime: string;
581
+ scrollable: boolean;
582
+ showTimePicker: boolean;
583
+ useSeconds: boolean;
584
+ width: string | number;
585
+ inputFormat?: string | undefined;
586
+ displayFormat: string;
587
+ valueFormat: string;
588
+ formatter: (value: string) => string;
589
+ parser: (value: string) => any;
590
+ selectTime: (time: string, event?: Event | undefined, element?: any) => void;
591
+ displayValue: string;
592
+ updateMask: () => any;
593
+ setTimeValue: (displayValue: string) => void;
594
+ isValidTime: (value: string, format: string | undefined, strict?: boolean | undefined) => boolean;
595
+ isoValue: string;
596
+ formatISOTimeValue: (value: string) => string;
597
+ parseISOTimeValue: (value: string) => any;
598
+ timeValidation: () => string | boolean;
599
+ timeAllowedValidation: () => string | boolean;
600
+ click: (event?: Event | undefined, element?: any) => void;
601
+ blur: (event: Event, element: any) => void;
602
+ focus: (event: Event, element: any) => void;
603
+ isFullyValid: (value?: string | undefined) => boolean;
604
+ isTimeAllowed: (value?: string | undefined) => boolean;
605
+ isSameOrAfterMin: (value: string) => boolean;
606
+ isSameOrBeforeMax: (value: string) => boolean;
607
+ isHourAllowed: (value: string) => boolean;
608
+ isMinuteAllowed: (value: string) => boolean;
609
+ isSecondAllowed: (value: string) => boolean;
610
+ clear: () => void;
611
+ getMask: () => string;
612
+ appendIcon: string;
613
+ appendOuterIcon: string;
614
+ prefix: string;
615
+ prependIcon: string;
616
+ prependOuterIcon: string;
617
+ suffix: string;
618
+ type: string;
619
+ valueWithPrefix: boolean;
620
+ valueWithSuffix: boolean;
621
+ onCreated: () => void;
622
+ appendIconClick: (event: Event, element: any) => void;
623
+ appendOuterIconClick: (event: Event, element: any) => void;
624
+ prependIconClick: (event: Event, element: any) => void;
625
+ prependOuterIconClick: (event: Event, element: any) => void;
626
+ align: string;
627
+ alwaysShowError: boolean;
628
+ clearable: boolean;
629
+ color: string;
630
+ dense: boolean;
631
+ disabled: boolean;
632
+ events: {
633
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
634
+ change?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
635
+ input?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
636
+ keydown?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
637
+ keyup?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
638
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
639
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
640
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
641
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
642
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
643
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
644
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
645
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
646
+ };
647
+ hint: string;
648
+ label: string;
649
+ mask?: any;
650
+ maxLength: number;
651
+ persistentHint: boolean;
652
+ placeholder: string;
653
+ readonly: boolean;
654
+ reverse: boolean;
655
+ rules: ((value?: any) => string | boolean)[];
656
+ showBorder: boolean;
657
+ showHelper: boolean;
658
+ showLabel: boolean;
659
+ autoHintDetails: boolean;
660
+ storePath: string;
661
+ validations: import("@zeedhi/core").IDictionary<import("@zeedhi/core").IDictionary<string | number>>;
662
+ formParent?: {
663
+ children: {
664
+ [x: string]: any;
665
+ grid?: {
666
+ cols?: string | undefined;
667
+ lg?: string | undefined;
668
+ md?: string | undefined;
669
+ sm?: string | undefined;
670
+ xl?: string | undefined;
671
+ 'offset-lg'?: string | undefined;
672
+ 'offset-md'?: string | undefined;
673
+ 'offset-sm'?: string | undefined;
674
+ 'offset-xl'?: string | undefined;
675
+ } | undefined;
676
+ children?: {
677
+ [x: string]: any;
678
+ children?: any[] | undefined;
679
+ component: string;
680
+ allowDuplicate?: boolean | undefined;
681
+ autofocus?: boolean | undefined;
682
+ componentId?: number | undefined;
683
+ cssClass?: string | undefined;
684
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
685
+ events?: {
686
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
687
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
688
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
689
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
690
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
691
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
692
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
693
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
694
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
695
+ } | undefined;
696
+ directives?: {
697
+ [x: string]: {
698
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
699
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
700
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
701
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
702
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
703
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
704
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
705
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
706
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
707
+ } | undefined;
708
+ touch?: {
709
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
710
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
711
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
712
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
713
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
714
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
715
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
716
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
717
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
718
+ } | undefined;
719
+ } | undefined;
720
+ isVisible?: string | boolean | undefined;
721
+ dark?: boolean | undefined;
722
+ light?: boolean | undefined;
723
+ theme?: string | undefined;
724
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
725
+ name: string;
726
+ parent?: {
727
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
728
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
729
+ allowDuplicate: boolean;
730
+ autofocus: boolean;
731
+ children: {
732
+ [x: string]: any;
733
+ allowDuplicate?: boolean | undefined;
734
+ autofocus?: boolean | undefined;
735
+ children?: any[] | undefined;
736
+ componentId?: number | undefined;
737
+ cssClass?: string | undefined;
738
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
739
+ events?: {
740
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
741
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
742
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
743
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
744
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
745
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
746
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
747
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
748
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
749
+ } | undefined;
750
+ directives?: {
751
+ [x: string]: {
752
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
753
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
754
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
755
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
756
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
757
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
758
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
759
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
760
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
761
+ } | undefined;
762
+ touch?: {
763
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
764
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
765
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
766
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
767
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
768
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
769
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
770
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
771
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
772
+ } | undefined;
773
+ } | undefined;
774
+ isVisible?: string | boolean | undefined;
775
+ dark?: boolean | undefined;
776
+ light?: boolean | undefined;
777
+ theme?: string | undefined;
778
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
779
+ name: string;
780
+ parent?: any | undefined;
781
+ tabStop?: boolean | undefined;
782
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
783
+ fillHeight?: boolean | undefined;
784
+ }[];
785
+ componentId: number;
786
+ cssClass: string;
787
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
788
+ events: {
789
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
790
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
791
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
792
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
793
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
794
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
795
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
796
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
797
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
798
+ };
799
+ directives: {
800
+ [x: string]: {
801
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
802
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
803
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
804
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
805
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
806
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
807
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
808
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
809
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
810
+ } | undefined;
811
+ touch?: {
812
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
813
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
814
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
815
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
816
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
817
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
818
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
819
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
820
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
821
+ } | undefined;
822
+ };
823
+ isVisible: string | boolean;
824
+ dark: boolean;
825
+ light: boolean;
826
+ theme?: string | undefined;
827
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
828
+ name: string;
829
+ parent?: any | undefined;
830
+ tabStop: boolean;
831
+ userProperties: import("@zeedhi/core").IDictionary<any>;
832
+ fillHeight: boolean;
833
+ } | undefined;
834
+ tabStop?: boolean | undefined;
835
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
836
+ fillHeight?: boolean | undefined;
837
+ }[] | undefined;
838
+ component: string;
839
+ allowDuplicate?: boolean | undefined;
840
+ autofocus?: boolean | undefined;
841
+ componentId?: number | undefined;
842
+ cssClass?: string | undefined;
843
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
844
+ events?: {
845
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
846
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
847
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
848
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
849
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
850
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
851
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
852
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
853
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
854
+ } | undefined;
855
+ directives?: {
856
+ [x: string]: {
857
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
858
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
859
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
860
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
861
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
862
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
863
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
864
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
865
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
866
+ } | undefined;
867
+ touch?: {
868
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
869
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
870
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
871
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
872
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
873
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
874
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
875
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
876
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
877
+ } | undefined;
878
+ } | undefined;
879
+ isVisible?: string | boolean | undefined;
880
+ dark?: boolean | undefined;
881
+ light?: boolean | undefined;
882
+ theme?: string | undefined;
883
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
884
+ name: string;
885
+ parent?: {
886
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
887
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
888
+ allowDuplicate: boolean;
889
+ autofocus: boolean;
890
+ children: {
891
+ [x: string]: any;
892
+ allowDuplicate?: boolean | undefined;
893
+ autofocus?: boolean | undefined;
894
+ children?: any[] | undefined;
895
+ componentId?: number | undefined;
896
+ cssClass?: string | undefined;
897
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
898
+ events?: {
899
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
900
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
901
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
902
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
903
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
904
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
905
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
906
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
907
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
908
+ } | undefined;
909
+ directives?: {
910
+ [x: string]: {
911
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
912
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
913
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
914
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
915
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
916
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
917
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
918
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
919
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
920
+ } | undefined;
921
+ touch?: {
922
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
923
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
924
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
925
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
926
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
927
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
928
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
929
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
930
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
931
+ } | undefined;
932
+ } | undefined;
933
+ isVisible?: string | boolean | undefined;
934
+ dark?: boolean | undefined;
935
+ light?: boolean | undefined;
936
+ theme?: string | undefined;
937
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
938
+ name: string;
939
+ parent?: any | undefined;
940
+ tabStop?: boolean | undefined;
941
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
942
+ fillHeight?: boolean | undefined;
943
+ }[];
944
+ componentId: number;
945
+ cssClass: string;
946
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
947
+ events: {
948
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
949
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
950
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
951
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
952
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
953
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
954
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
955
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
956
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
957
+ };
958
+ directives: {
959
+ [x: string]: {
960
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
961
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
962
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
963
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
964
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
965
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
966
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
967
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
968
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
969
+ } | undefined;
970
+ touch?: {
971
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
972
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
973
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
974
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
975
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
976
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
977
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
978
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
979
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
980
+ } | undefined;
981
+ };
982
+ isVisible: string | boolean;
983
+ dark: boolean;
984
+ light: boolean;
985
+ theme?: string | undefined;
986
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
987
+ name: string;
988
+ parent?: any | undefined;
989
+ tabStop: boolean;
990
+ userProperties: import("@zeedhi/core").IDictionary<any>;
991
+ fillHeight: boolean;
992
+ } | undefined;
993
+ tabStop?: boolean | undefined;
994
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
995
+ fillHeight?: boolean | undefined;
996
+ }[];
997
+ align?: string | undefined;
998
+ justify?: string | undefined;
999
+ height: string | number;
1000
+ minHeight: string | number;
1001
+ maxHeight: string | number;
1002
+ width: string | number;
1003
+ minWidth: string | number;
1004
+ maxWidth: string | number;
1005
+ events: {
1006
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent> | undefined)[] | undefined;
1007
+ submit?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
1008
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
1009
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
1010
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
1011
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
1012
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
1013
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
1014
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
1015
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/common").IFormEvent, import("@zeedhi/core").IEvent<import("@zeedhi/common").IFormEvent>> | undefined;
1016
+ };
1017
+ submitFunction?: (() => void) | undefined;
1018
+ value: import("@zeedhi/core").IDictionary<any>;
1019
+ clearForm: () => void;
1020
+ registerInput: (component: import("@zeedhi/common").Input) => void;
1021
+ readonly childrenProps: {
1022
+ [x: string]: any;
1023
+ children?: {
1024
+ [x: string]: any;
1025
+ children?: any[] | undefined;
1026
+ component: string;
1027
+ allowDuplicate?: boolean | undefined;
1028
+ autofocus?: boolean | undefined;
1029
+ componentId?: number | undefined;
1030
+ cssClass?: string | undefined;
1031
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1032
+ events?: {
1033
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1034
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1035
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1036
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1037
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1038
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1039
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1040
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1041
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1042
+ } | undefined;
1043
+ directives?: {
1044
+ [x: string]: {
1045
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1046
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1047
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1048
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1049
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1050
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1051
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1052
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1053
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1054
+ } | undefined;
1055
+ touch?: {
1056
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1057
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1058
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1059
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1060
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1061
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1062
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1063
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1064
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1065
+ } | undefined;
1066
+ } | undefined;
1067
+ isVisible?: string | boolean | undefined;
1068
+ dark?: boolean | undefined;
1069
+ light?: boolean | undefined;
1070
+ theme?: string | undefined;
1071
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1072
+ name: string;
1073
+ parent?: {
1074
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1075
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1076
+ allowDuplicate: boolean;
1077
+ autofocus: boolean;
1078
+ children: {
1079
+ [x: string]: any;
1080
+ allowDuplicate?: boolean | undefined;
1081
+ autofocus?: boolean | undefined;
1082
+ children?: any[] | undefined;
1083
+ componentId?: number | undefined;
1084
+ cssClass?: string | undefined;
1085
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1086
+ events?: {
1087
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1088
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1089
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1090
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1091
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1092
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1093
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1094
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1095
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1096
+ } | undefined;
1097
+ directives?: {
1098
+ [x: string]: {
1099
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1100
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1101
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1102
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1103
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1104
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1105
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1106
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1107
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1108
+ } | undefined;
1109
+ touch?: {
1110
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1111
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1112
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1113
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1114
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1115
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1116
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1117
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1118
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1119
+ } | undefined;
1120
+ } | undefined;
1121
+ isVisible?: string | boolean | undefined;
1122
+ dark?: boolean | undefined;
1123
+ light?: boolean | undefined;
1124
+ theme?: string | undefined;
1125
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1126
+ name: string;
1127
+ parent?: any | undefined;
1128
+ tabStop?: boolean | undefined;
1129
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1130
+ fillHeight?: boolean | undefined;
1131
+ }[];
1132
+ componentId: number;
1133
+ cssClass: string;
1134
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1135
+ events: {
1136
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1137
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1138
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1139
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1140
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1141
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1142
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1143
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1144
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1145
+ };
1146
+ directives: {
1147
+ [x: string]: {
1148
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1149
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1150
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1151
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1152
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1153
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1154
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1155
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1156
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1157
+ } | undefined;
1158
+ touch?: {
1159
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1160
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1161
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1162
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1163
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1164
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1165
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1166
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1167
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1168
+ } | undefined;
1169
+ };
1170
+ isVisible: string | boolean;
1171
+ dark: boolean;
1172
+ light: boolean;
1173
+ theme?: string | undefined;
1174
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1175
+ name: string;
1176
+ parent?: any | undefined;
1177
+ tabStop: boolean;
1178
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1179
+ fillHeight: boolean;
1180
+ } | undefined;
1181
+ tabStop?: boolean | undefined;
1182
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1183
+ fillHeight?: boolean | undefined;
1184
+ }[] | undefined;
1185
+ component: string;
1186
+ allowDuplicate?: boolean | undefined;
1187
+ autofocus?: boolean | undefined;
1188
+ componentId?: number | undefined;
1189
+ cssClass?: string | undefined;
1190
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1191
+ events?: {
1192
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1193
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1194
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1195
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1196
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1197
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1198
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1199
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1200
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1201
+ } | undefined;
1202
+ directives?: {
1203
+ [x: string]: {
1204
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1205
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1206
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1207
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1208
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1209
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1210
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1211
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1212
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1213
+ } | undefined;
1214
+ touch?: {
1215
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1216
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1217
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1218
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1219
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1220
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1221
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1222
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1223
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1224
+ } | undefined;
1225
+ } | undefined;
1226
+ isVisible?: string | boolean | undefined;
1227
+ dark?: boolean | undefined;
1228
+ light?: boolean | undefined;
1229
+ theme?: string | undefined;
1230
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1231
+ name: string;
1232
+ parent?: {
1233
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1234
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1235
+ allowDuplicate: boolean;
1236
+ autofocus: boolean;
1237
+ children: {
1238
+ [x: string]: any;
1239
+ allowDuplicate?: boolean | undefined;
1240
+ autofocus?: boolean | undefined;
1241
+ children?: any[] | undefined;
1242
+ componentId?: number | undefined;
1243
+ cssClass?: string | undefined;
1244
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1245
+ events?: {
1246
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1247
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1248
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1249
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1250
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1251
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1252
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1253
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1254
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1255
+ } | undefined;
1256
+ directives?: {
1257
+ [x: string]: {
1258
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1259
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1260
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1261
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1262
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1263
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1264
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1265
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1266
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1267
+ } | undefined;
1268
+ touch?: {
1269
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1270
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1271
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1272
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1273
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1274
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1275
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1276
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1277
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1278
+ } | undefined;
1279
+ } | undefined;
1280
+ isVisible?: string | boolean | undefined;
1281
+ dark?: boolean | undefined;
1282
+ light?: boolean | undefined;
1283
+ theme?: string | undefined;
1284
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1285
+ name: string;
1286
+ parent?: any | undefined;
1287
+ tabStop?: boolean | undefined;
1288
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1289
+ fillHeight?: boolean | undefined;
1290
+ }[];
1291
+ componentId: number;
1292
+ cssClass: string;
1293
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1294
+ events: {
1295
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1296
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1297
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1298
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1299
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1300
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1301
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1302
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1303
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1304
+ };
1305
+ directives: {
1306
+ [x: string]: {
1307
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1308
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1309
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1310
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1311
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1312
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1313
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1314
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1315
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1316
+ } | undefined;
1317
+ touch?: {
1318
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1319
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1320
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1321
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1322
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1323
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1324
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1325
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1326
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1327
+ } | undefined;
1328
+ };
1329
+ isVisible: string | boolean;
1330
+ dark: boolean;
1331
+ light: boolean;
1332
+ theme?: string | undefined;
1333
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1334
+ name: string;
1335
+ parent?: any | undefined;
1336
+ tabStop: boolean;
1337
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1338
+ fillHeight: boolean;
1339
+ } | undefined;
1340
+ tabStop?: boolean | undefined;
1341
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1342
+ fillHeight?: boolean | undefined;
1343
+ }[];
1344
+ readonly childrenGrid: import("@zeedhi/core").IDictionary<import("@zeedhi/common").IFormGrid>;
1345
+ validate: () => Promise<{
1346
+ valid: boolean;
1347
+ }>;
1348
+ setViewValidate: (viewValidate: () => Promise<{
1349
+ valid: boolean;
1350
+ errors: {
1351
+ id: string | number;
1352
+ errorMessages: string[];
1353
+ }[];
1354
+ }>) => void;
1355
+ setViewResetValidation: (viewResetValidation: () => void) => void;
1356
+ callSubmitEvent: (event: Event, element: any) => void;
1357
+ onMounted: (element: any) => void;
1358
+ submit: () => void;
1359
+ resetValidation: () => void;
1360
+ component: string;
1361
+ allowDuplicate: boolean;
1362
+ autofocus: boolean;
1363
+ childrenInstances: any[];
1364
+ cssClass: string;
1365
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1366
+ directives: {
1367
+ [x: string]: {
1368
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1369
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1370
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1371
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1372
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1373
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1374
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1375
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1376
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1377
+ } | undefined;
1378
+ touch?: {
1379
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1380
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1381
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1382
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1383
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1384
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1385
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1386
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1387
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1388
+ } | undefined;
1389
+ };
1390
+ isVisible: boolean;
1391
+ name: string;
1392
+ dark: boolean;
1393
+ light: boolean;
1394
+ theme?: string | undefined;
1395
+ fillHeight: boolean;
1396
+ parent?: {
1397
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1398
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1399
+ allowDuplicate: boolean;
1400
+ autofocus: boolean;
1401
+ children: {
1402
+ [x: string]: any;
1403
+ allowDuplicate?: boolean | undefined;
1404
+ autofocus?: boolean | undefined;
1405
+ children?: any[] | undefined;
1406
+ componentId?: number | undefined;
1407
+ cssClass?: string | undefined;
1408
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1409
+ events?: {
1410
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1411
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1412
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1413
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1414
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1415
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1416
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1417
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1418
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1419
+ } | undefined;
1420
+ directives?: {
1421
+ [x: string]: {
1422
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1423
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1424
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1425
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1426
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1427
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1428
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1429
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1430
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1431
+ } | undefined;
1432
+ touch?: {
1433
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1434
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1435
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1436
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1437
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1438
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1439
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1440
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1441
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1442
+ } | undefined;
1443
+ } | undefined;
1444
+ isVisible?: string | boolean | undefined;
1445
+ dark?: boolean | undefined;
1446
+ light?: boolean | undefined;
1447
+ theme?: string | undefined;
1448
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1449
+ name: string;
1450
+ parent?: any | undefined;
1451
+ tabStop?: boolean | undefined;
1452
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1453
+ fillHeight?: boolean | undefined;
1454
+ }[];
1455
+ componentId: number;
1456
+ cssClass: string;
1457
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1458
+ events: {
1459
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1460
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1461
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1462
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1463
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1464
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1465
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1466
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1467
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1468
+ };
1469
+ directives: {
1470
+ [x: string]: {
1471
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1472
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1473
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1474
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1475
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1476
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1477
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1478
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1479
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1480
+ } | undefined;
1481
+ touch?: {
1482
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1483
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1484
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1485
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1486
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1487
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1488
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1489
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1490
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1491
+ } | undefined;
1492
+ };
1493
+ isVisible: string | boolean;
1494
+ dark: boolean;
1495
+ light: boolean;
1496
+ theme?: string | undefined;
1497
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1498
+ name: string;
1499
+ parent?: any | undefined;
1500
+ tabStop: boolean;
1501
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1502
+ fillHeight: boolean;
1503
+ } | undefined;
1504
+ componentId: number;
1505
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1506
+ isFocused: boolean;
1507
+ tabStop: boolean;
1508
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1509
+ setViewFocus: (viewFocus: () => void) => void;
1510
+ setFocus: () => void;
1511
+ callEvent: (eventName: string, args: any) => boolean;
1512
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
1513
+ removeChild: (name: string) => void;
1514
+ getChildInstance: <T_6>(name: string) => T_6;
1515
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1516
+ onCreated: () => void;
1517
+ onBeforeMount: () => void;
1518
+ onBeforeDestroy: () => void;
1519
+ onDestroyed: () => void;
1520
+ click: (event?: Event | undefined, element?: any) => void;
1521
+ focus: (event: Event, element: any) => void;
1522
+ blur: (event: Event, element: any) => void;
1523
+ mouseenter: (event?: Event | undefined, element?: any) => void;
1524
+ mouseleave: (event?: Event | undefined, element?: any) => void;
1525
+ mouseout: (event?: Event | undefined, element?: any) => void;
1526
+ mouseover: (event?: Event | undefined, element?: any) => void;
1527
+ } | undefined;
1528
+ validate: () => Promise<string[]>;
1529
+ setViewValidate: (viewValidate: (silent?: boolean | undefined) => Promise<string[]>) => void;
1530
+ setViewResetValidation: (viewResetValidation: () => void) => void;
1531
+ resetValidation: () => void;
1532
+ addValidation: (name: string, config?: import("@zeedhi/core").IDictionary<any> | undefined) => void;
1533
+ removeValidation: (name: string) => void;
1534
+ clearValidations: () => void;
1535
+ value: any;
1536
+ isValid: (value?: any) => boolean;
1537
+ change: (event?: Event | undefined, element?: any) => void;
1538
+ input: (event?: Event | undefined, element?: any) => void;
1539
+ keyup: (event?: Event | undefined, element?: any) => void;
1540
+ keydown: (event?: Event | undefined, element?: any) => void;
1541
+ children: {
1542
+ [x: string]: any;
1543
+ children?: any[] | undefined;
1544
+ component: string;
1545
+ allowDuplicate?: boolean | undefined;
1546
+ autofocus?: boolean | undefined;
1547
+ componentId?: number | undefined;
1548
+ cssClass?: string | undefined;
1549
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1550
+ events?: {
1551
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1552
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1553
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1554
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1555
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1556
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1557
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1558
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1559
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1560
+ } | undefined;
1561
+ directives?: {
1562
+ [x: string]: {
1563
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1564
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1565
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1566
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1567
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1568
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1569
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1570
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1571
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1572
+ } | undefined;
1573
+ touch?: {
1574
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1575
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1576
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1577
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1578
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1579
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1580
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1581
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1582
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1583
+ } | undefined;
1584
+ } | undefined;
1585
+ isVisible?: string | boolean | undefined;
1586
+ dark?: boolean | undefined;
1587
+ light?: boolean | undefined;
1588
+ theme?: string | undefined;
1589
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1590
+ name: string;
1591
+ parent?: {
1592
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1593
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1594
+ allowDuplicate: boolean;
1595
+ autofocus: boolean;
1596
+ children: {
1597
+ [x: string]: any;
1598
+ allowDuplicate?: boolean | undefined;
1599
+ autofocus?: boolean | undefined;
1600
+ children?: any[] | undefined;
1601
+ componentId?: number | undefined;
1602
+ cssClass?: string | undefined;
1603
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1604
+ events?: {
1605
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1606
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1607
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1608
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1609
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1610
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1611
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1612
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1613
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1614
+ } | undefined;
1615
+ directives?: {
1616
+ [x: string]: {
1617
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1618
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1619
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1620
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1621
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1622
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1623
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1624
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1625
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1626
+ } | undefined;
1627
+ touch?: {
1628
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1629
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1630
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1631
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1632
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1633
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1634
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1635
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1636
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1637
+ } | undefined;
1638
+ } | undefined;
1639
+ isVisible?: string | boolean | undefined;
1640
+ dark?: boolean | undefined;
1641
+ light?: boolean | undefined;
1642
+ theme?: string | undefined;
1643
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1644
+ name: string;
1645
+ parent?: any | undefined;
1646
+ tabStop?: boolean | undefined;
1647
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1648
+ fillHeight?: boolean | undefined;
1649
+ }[];
1650
+ componentId: number;
1651
+ cssClass: string;
1652
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1653
+ events: {
1654
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1655
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1656
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1657
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1658
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1659
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1660
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1661
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1662
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1663
+ };
1664
+ directives: {
1665
+ [x: string]: {
1666
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1667
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1668
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1669
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1670
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1671
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1672
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1673
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1674
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1675
+ } | undefined;
1676
+ touch?: {
1677
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1678
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1679
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1680
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1681
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1682
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1683
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1684
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1685
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1686
+ } | undefined;
1687
+ };
1688
+ isVisible: string | boolean;
1689
+ dark: boolean;
1690
+ light: boolean;
1691
+ theme?: string | undefined;
1692
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1693
+ name: string;
1694
+ parent?: any | undefined;
1695
+ tabStop: boolean;
1696
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1697
+ fillHeight: boolean;
1698
+ } | undefined;
1699
+ tabStop?: boolean | undefined;
1700
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1701
+ fillHeight?: boolean | undefined;
1702
+ }[];
1703
+ component: string;
1704
+ allowDuplicate: boolean;
1705
+ autofocus: boolean;
1706
+ childrenInstances: any[];
1707
+ cssClass: string;
1708
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
1709
+ directives: {
1710
+ [x: string]: {
1711
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1712
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1713
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1714
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1715
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1716
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1717
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1718
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1719
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1720
+ } | undefined;
1721
+ touch?: {
1722
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1723
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1724
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1725
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1726
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1727
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1728
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1729
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1730
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1731
+ } | undefined;
1732
+ };
1733
+ isVisible: boolean;
1734
+ name: string;
1735
+ dark: boolean;
1736
+ light: boolean;
1737
+ theme?: string | undefined;
1738
+ fillHeight: boolean;
1739
+ parent?: {
1740
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1741
+ getChildInstance: <T_5 extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T_5;
1742
+ allowDuplicate: boolean;
1743
+ autofocus: boolean;
1744
+ children: {
1745
+ [x: string]: any;
1746
+ allowDuplicate?: boolean | undefined;
1747
+ autofocus?: boolean | undefined;
1748
+ children?: any[] | undefined;
1749
+ componentId?: number | undefined;
1750
+ cssClass?: string | undefined;
1751
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
1752
+ events?: {
1753
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1754
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1755
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1756
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1757
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1758
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1759
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1760
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1761
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1762
+ } | undefined;
1763
+ directives?: {
1764
+ [x: string]: {
1765
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1766
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1767
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1768
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1769
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1770
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1771
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1772
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1773
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1774
+ } | undefined;
1775
+ touch?: {
1776
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1777
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1778
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1779
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1780
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1781
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1782
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1783
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1784
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1785
+ } | undefined;
1786
+ } | undefined;
1787
+ isVisible?: string | boolean | undefined;
1788
+ dark?: boolean | undefined;
1789
+ light?: boolean | undefined;
1790
+ theme?: string | undefined;
1791
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
1792
+ name: string;
1793
+ parent?: any | undefined;
1794
+ tabStop?: boolean | undefined;
1795
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
1796
+ fillHeight?: boolean | undefined;
1797
+ }[];
1798
+ componentId: number;
1799
+ cssClass: string;
1800
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
1801
+ events: {
1802
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1803
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1804
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1805
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1806
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1807
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1808
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1809
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1810
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1811
+ };
1812
+ directives: {
1813
+ [x: string]: {
1814
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1815
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1816
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1817
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1818
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1819
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1820
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1821
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1822
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1823
+ } | undefined;
1824
+ touch?: {
1825
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
1826
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1827
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1828
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1829
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1830
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1831
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1832
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1833
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
1834
+ } | undefined;
1835
+ };
1836
+ isVisible: string | boolean;
1837
+ dark: boolean;
1838
+ light: boolean;
1839
+ theme?: string | undefined;
1840
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1841
+ name: string;
1842
+ parent?: any | undefined;
1843
+ tabStop: boolean;
1844
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1845
+ fillHeight: boolean;
1846
+ } | undefined;
1847
+ componentId: number;
1848
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
1849
+ isFocused: boolean;
1850
+ tabStop: boolean;
1851
+ userProperties: import("@zeedhi/core").IDictionary<any>;
1852
+ setViewFocus: (viewFocus: () => void) => void;
1853
+ setFocus: () => void;
1854
+ callEvent: (eventName: string, args: any) => boolean;
1855
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
1856
+ removeChild: (name: string) => void;
1857
+ getChildInstance: <T_6>(name: string) => T_6;
1858
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
1859
+ onBeforeMount: () => void;
1860
+ onMounted: (element: any) => void;
1861
+ onBeforeDestroy: () => void;
1862
+ onDestroyed: () => void;
1863
+ mouseenter: (event?: Event | undefined, element?: any) => void;
1864
+ mouseleave: (event?: Event | undefined, element?: any) => void;
1865
+ mouseout: (event?: Event | undefined, element?: any) => void;
1866
+ mouseover: (event?: Event | undefined, element?: any) => void;
1867
+ };
1868
+ onChangeTimePicker: () => void;
1869
+ setFocus: (selectAll?: boolean) => void;
1870
+ pickerMinTime: import("vue").ComputedRef<string | null>;
1871
+ pickerMaxTime: import("vue").ComputedRef<string | null>;
1872
+ onSelectTime: (time: string, event: MouseEvent) => void;
1873
+ pickerMounted: () => void;
1874
+ pickerDestroyed: () => void;
1875
+ getEvents: (props: Record<string, (e: Event) => void>) => Record<string, (e: Event) => void>;
1876
+ isMobile: import("vue").ComputedRef<boolean>;
1877
+ handleOkClick: (event?: MouseEvent) => void;
1878
+ handleClearClick: (event?: MouseEvent) => void;
1879
+ setBlur: () => void;
1880
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
1881
+ allowedHours: {
1882
+ type: (StringConstructor | ArrayConstructor)[];
1883
+ default: undefined;
1884
+ };
1885
+ allowedMinutes: {
1886
+ type: (StringConstructor | ArrayConstructor)[];
1887
+ default: undefined;
1888
+ };
1889
+ allowedSeconds: {
1890
+ type: (StringConstructor | ArrayConstructor)[];
1891
+ default: undefined;
1892
+ };
1893
+ autofill: {
1894
+ type: (StringConstructor | BooleanConstructor)[];
1895
+ default: boolean;
1896
+ };
1897
+ timeFormat: {
1898
+ type: StringConstructor;
1899
+ default: string;
1900
+ };
1901
+ fullWidth: {
1902
+ type: (StringConstructor | BooleanConstructor)[];
1903
+ default: boolean;
1904
+ };
1905
+ maxTime: {
1906
+ type: StringConstructor;
1907
+ default: string;
1908
+ };
1909
+ minTime: {
1910
+ type: StringConstructor;
1911
+ default: string;
1912
+ };
1913
+ scrollable: {
1914
+ type: (StringConstructor | BooleanConstructor)[];
1915
+ default: boolean;
1916
+ };
1917
+ showTimePicker: {
1918
+ type: (StringConstructor | BooleanConstructor)[];
1919
+ default: boolean;
1920
+ };
1921
+ useSeconds: {
1922
+ type: (StringConstructor | BooleanConstructor)[];
1923
+ default: boolean;
1924
+ };
1925
+ mask: {
1926
+ type: StringConstructor;
1927
+ default: undefined;
1928
+ };
1929
+ valueFormat: {
1930
+ type: StringConstructor;
1931
+ required: false;
1932
+ };
1933
+ inputFormat: {
1934
+ type: StringConstructor;
1935
+ required: false;
1936
+ };
1937
+ displayFormat: {
1938
+ type: StringConstructor;
1939
+ required: false;
1940
+ };
1941
+ appendIcon: {
1942
+ type: StringConstructor;
1943
+ default: string;
1944
+ };
1945
+ appendOuterIcon: {
1946
+ type: StringConstructor;
1947
+ default: string;
1948
+ };
1949
+ prefix: {
1950
+ type: StringConstructor;
1951
+ default: string;
1952
+ };
1953
+ prependIcon: {
1954
+ type: StringConstructor;
1955
+ default: string;
1956
+ };
1957
+ prependOuterIcon: {
1958
+ type: StringConstructor;
1959
+ default: string;
1960
+ };
1961
+ suffix: {
1962
+ type: StringConstructor;
1963
+ default: string;
1964
+ };
1965
+ valueWithPrefix: {
1966
+ type: (StringConstructor | BooleanConstructor)[];
1967
+ default: boolean;
1968
+ };
1969
+ valueWithSuffix: {
1970
+ type: (StringConstructor | BooleanConstructor)[];
1971
+ default: boolean;
1972
+ };
1973
+ type: {
1974
+ type: StringConstructor;
1975
+ default: string;
1976
+ };
1977
+ disableMaska: {
1978
+ type: BooleanConstructor;
1979
+ default: boolean;
1980
+ };
1981
+ width: {
1982
+ type: (StringConstructor | NumberConstructor)[];
1983
+ };
1984
+ minWidth: {
1985
+ type: (StringConstructor | NumberConstructor)[];
1986
+ default: string;
1987
+ };
1988
+ maxWidth: {
1989
+ type: (StringConstructor | NumberConstructor)[];
1990
+ default: string;
1991
+ };
1992
+ fillHeight: {
1993
+ type: (StringConstructor | BooleanConstructor)[];
1994
+ default: boolean;
1995
+ };
1996
+ height: {
1997
+ type: (StringConstructor | NumberConstructor)[];
1998
+ };
1999
+ minHeight: {
2000
+ type: (StringConstructor | NumberConstructor)[];
2001
+ default: string;
2002
+ };
2003
+ maxHeight: {
2004
+ type: (StringConstructor | NumberConstructor)[];
2005
+ default: string;
2006
+ };
2007
+ align: {
2008
+ type: StringConstructor;
2009
+ default: string;
2010
+ };
2011
+ alwaysShowError: {
2012
+ type: (StringConstructor | BooleanConstructor)[];
2013
+ default: boolean;
2014
+ };
2015
+ clearable: {
2016
+ type: (StringConstructor | BooleanConstructor)[];
2017
+ default: boolean;
2018
+ };
2019
+ color: {
2020
+ type: StringConstructor;
2021
+ default: string;
2022
+ };
2023
+ dense: {
2024
+ type: (StringConstructor | BooleanConstructor)[];
2025
+ default: boolean;
2026
+ };
2027
+ disabled: {
2028
+ type: (StringConstructor | BooleanConstructor)[];
2029
+ default: boolean;
2030
+ };
2031
+ hint: {
2032
+ type: StringConstructor;
2033
+ default: string;
2034
+ };
2035
+ label: {
2036
+ type: StringConstructor;
2037
+ default: string;
2038
+ };
2039
+ maxLength: {
2040
+ type: (StringConstructor | NumberConstructor)[];
2041
+ default: undefined;
2042
+ };
2043
+ persistentHint: {
2044
+ type: (StringConstructor | BooleanConstructor)[];
2045
+ default: boolean;
2046
+ };
2047
+ placeholder: {
2048
+ type: StringConstructor;
2049
+ default: string;
2050
+ };
2051
+ readonly: {
2052
+ type: (StringConstructor | BooleanConstructor)[];
2053
+ default: boolean;
2054
+ };
2055
+ autoHintDetails: {
2056
+ type: (StringConstructor | BooleanConstructor)[];
2057
+ default: boolean;
2058
+ };
2059
+ reverse: {
2060
+ type: (StringConstructor | BooleanConstructor)[];
2061
+ default: boolean;
2062
+ };
2063
+ showBorder: {
2064
+ type: (StringConstructor | BooleanConstructor)[];
2065
+ default: boolean;
2066
+ };
2067
+ showHelper: {
2068
+ type: (StringConstructor | BooleanConstructor)[];
2069
+ default: boolean;
2070
+ };
2071
+ showLabel: {
2072
+ type: (StringConstructor | BooleanConstructor)[];
2073
+ default: boolean;
2074
+ };
2075
+ storePath: {
2076
+ type: StringConstructor;
2077
+ default: string;
2078
+ };
2079
+ validations: {
2080
+ type: (StringConstructor | ObjectConstructor)[];
2081
+ default: {};
2082
+ };
2083
+ value: {
2084
+ default: null;
2085
+ };
2086
+ children: {
2087
+ type: (StringConstructor | {
2088
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
2089
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
2090
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
2091
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
2092
+ isArray(arg: any): arg is any[];
2093
+ readonly prototype: any[];
2094
+ from<T>(arrayLike: ArrayLike<T>): T[];
2095
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
2096
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
2097
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
2098
+ of<T_4>(...items: T_4[]): T_4[];
2099
+ readonly [Symbol.species]: ArrayConstructor;
2100
+ })[];
2101
+ default(): never[];
2102
+ };
2103
+ component: {
2104
+ type: StringConstructor;
2105
+ };
2106
+ allowDuplicate: {
2107
+ type: (StringConstructor | BooleanConstructor)[];
2108
+ default: boolean;
2109
+ };
2110
+ autofocus: {
2111
+ type: (StringConstructor | BooleanConstructor)[];
2112
+ default: boolean;
2113
+ };
2114
+ cssClass: {
2115
+ type: StringConstructor;
2116
+ default: string;
2117
+ };
2118
+ cssStyle: {
2119
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
2120
+ default: string;
2121
+ };
2122
+ dark: {
2123
+ type: (StringConstructor | BooleanConstructor)[];
2124
+ default: boolean;
2125
+ };
2126
+ directives: {
2127
+ type: ObjectConstructor;
2128
+ default(): {};
2129
+ };
2130
+ events: {
2131
+ type: ObjectConstructor;
2132
+ default(): {};
2133
+ };
2134
+ instanceObject: {
2135
+ type: ObjectConstructor;
2136
+ };
2137
+ isVisible: {
2138
+ type: (StringConstructor | BooleanConstructor)[];
2139
+ default: boolean;
2140
+ };
2141
+ keyMap: {
2142
+ type: ObjectConstructor;
2143
+ default(): {};
2144
+ };
2145
+ light: {
2146
+ type: (StringConstructor | BooleanConstructor)[];
2147
+ default: boolean;
2148
+ };
2149
+ name: {
2150
+ type: StringConstructor;
2151
+ required: true;
2152
+ };
2153
+ parent: {
2154
+ type: ObjectConstructor;
2155
+ };
2156
+ tabStop: {
2157
+ type: (StringConstructor | BooleanConstructor)[];
2158
+ default: boolean;
2159
+ };
2160
+ theme: {
2161
+ type: StringConstructor;
2162
+ };
2163
+ }>> & Readonly<{}>, {
2164
+ reverse: string | boolean;
2165
+ allowDuplicate: string | boolean;
2166
+ type: string;
2167
+ autofocus: string | boolean;
2168
+ children: string | import("@zeedhi/common").IComponentRender[];
2169
+ cssClass: string;
2170
+ cssStyle: import("vue").StyleValue;
2171
+ dark: string | boolean;
2172
+ directives: Record<string, any>;
2173
+ events: Record<string, any>;
2174
+ isVisible: string | boolean;
2175
+ keyMap: Record<string, any>;
2176
+ light: string | boolean;
2177
+ tabStop: string | boolean;
2178
+ align: string;
2179
+ alwaysShowError: string | boolean;
2180
+ autofill: string | boolean;
2181
+ clearable: string | boolean;
2182
+ color: string;
2183
+ dense: string | boolean;
2184
+ disabled: string | boolean;
2185
+ hint: string;
2186
+ label: string;
2187
+ mask: string;
2188
+ maxLength: string | number;
2189
+ persistentHint: string | boolean;
2190
+ placeholder: string;
2191
+ readonly: string | boolean;
2192
+ autoHintDetails: string | boolean;
2193
+ showBorder: string | boolean;
2194
+ showHelper: string | boolean;
2195
+ showLabel: string | boolean;
2196
+ storePath: string;
2197
+ validations: string | Record<string, any>;
2198
+ value: null;
2199
+ minWidth: string | number;
2200
+ maxWidth: string | number;
2201
+ fillHeight: string | boolean;
2202
+ minHeight: string | number;
2203
+ maxHeight: string | number;
2204
+ appendIcon: string;
2205
+ appendOuterIcon: string;
2206
+ prefix: string;
2207
+ prependIcon: string;
2208
+ prependOuterIcon: string;
2209
+ suffix: string;
2210
+ valueWithPrefix: string | boolean;
2211
+ valueWithSuffix: string | boolean;
2212
+ disableMaska: boolean;
2213
+ allowedHours: string | unknown[];
2214
+ allowedMinutes: string | unknown[];
2215
+ allowedSeconds: string | unknown[];
2216
+ timeFormat: string;
2217
+ fullWidth: string | boolean;
2218
+ maxTime: string;
2219
+ minTime: string;
2220
+ scrollable: string | boolean;
2221
+ showTimePicker: string | boolean;
2222
+ useSeconds: string | boolean;
2223
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2224
+ export default _default;