@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,674 @@
1
+ import { Event } from '@zeedhi/core';
2
+ export declare const ZdTabProps: {
3
+ disabled: {
4
+ type: (StringConstructor | BooleanConstructor)[];
5
+ default: boolean;
6
+ };
7
+ index: {
8
+ type: (StringConstructor | NumberConstructor)[];
9
+ };
10
+ tabTitle: {
11
+ type: StringConstructor[];
12
+ };
13
+ tabName: {
14
+ type: StringConstructor[];
15
+ };
16
+ color: {
17
+ type: StringConstructor[];
18
+ default: string;
19
+ };
20
+ dense: {
21
+ type: BooleanConstructor[];
22
+ default: boolean;
23
+ };
24
+ direction: {
25
+ type: StringConstructor[];
26
+ default: string;
27
+ };
28
+ fixed: {
29
+ type: (StringConstructor | BooleanConstructor)[];
30
+ default: boolean;
31
+ };
32
+ iconName: {
33
+ type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
34
+ default: boolean;
35
+ };
36
+ rounded: {
37
+ type: (StringConstructor | BooleanConstructor)[];
38
+ default: boolean;
39
+ };
40
+ selectedClass: {
41
+ type: StringConstructor[];
42
+ default: string;
43
+ };
44
+ value: {
45
+ type: (StringConstructor | ObjectConstructor)[];
46
+ };
47
+ variant: {
48
+ type: StringConstructor[];
49
+ default: string;
50
+ };
51
+ width: {
52
+ type: (StringConstructor | NumberConstructor)[];
53
+ };
54
+ children: {
55
+ type: (StringConstructor | {
56
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
57
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
58
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
59
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
60
+ isArray(arg: any): arg is any[];
61
+ readonly prototype: any[];
62
+ from<T>(arrayLike: ArrayLike<T>): T[];
63
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
64
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
65
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
66
+ of<T_4>(...items: T_4[]): T_4[];
67
+ readonly [Symbol.species]: ArrayConstructor;
68
+ })[];
69
+ default(): never[];
70
+ };
71
+ component: {
72
+ type: StringConstructor;
73
+ };
74
+ allowDuplicate: {
75
+ type: (StringConstructor | BooleanConstructor)[];
76
+ default: boolean;
77
+ };
78
+ autofocus: {
79
+ type: (StringConstructor | BooleanConstructor)[];
80
+ default: boolean;
81
+ };
82
+ cssClass: {
83
+ type: StringConstructor;
84
+ default: string;
85
+ };
86
+ cssStyle: {
87
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
88
+ default: string;
89
+ };
90
+ dark: {
91
+ type: (StringConstructor | BooleanConstructor)[];
92
+ default: boolean;
93
+ };
94
+ directives: {
95
+ type: ObjectConstructor;
96
+ default(): {};
97
+ };
98
+ events: {
99
+ type: ObjectConstructor;
100
+ default(): {};
101
+ };
102
+ instanceObject: {
103
+ type: ObjectConstructor;
104
+ };
105
+ isVisible: {
106
+ type: (StringConstructor | BooleanConstructor)[];
107
+ default: boolean;
108
+ };
109
+ keyMap: {
110
+ type: ObjectConstructor;
111
+ default(): {};
112
+ };
113
+ light: {
114
+ type: (StringConstructor | BooleanConstructor)[];
115
+ default: boolean;
116
+ };
117
+ name: {
118
+ type: StringConstructor;
119
+ required: true;
120
+ };
121
+ parent: {
122
+ type: ObjectConstructor;
123
+ };
124
+ tabStop: {
125
+ type: (StringConstructor | BooleanConstructor)[];
126
+ default: boolean;
127
+ };
128
+ theme: {
129
+ type: StringConstructor;
130
+ };
131
+ };
132
+ /**
133
+ * Tabs component
134
+ */
135
+ declare const tabComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
136
+ disabled: {
137
+ type: (StringConstructor | BooleanConstructor)[];
138
+ default: boolean;
139
+ };
140
+ index: {
141
+ type: (StringConstructor | NumberConstructor)[];
142
+ };
143
+ tabTitle: {
144
+ type: StringConstructor[];
145
+ };
146
+ tabName: {
147
+ type: StringConstructor[];
148
+ };
149
+ color: {
150
+ type: StringConstructor[];
151
+ default: string;
152
+ };
153
+ dense: {
154
+ type: BooleanConstructor[];
155
+ default: boolean;
156
+ };
157
+ direction: {
158
+ type: StringConstructor[];
159
+ default: string;
160
+ };
161
+ fixed: {
162
+ type: (StringConstructor | BooleanConstructor)[];
163
+ default: boolean;
164
+ };
165
+ iconName: {
166
+ type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
167
+ default: boolean;
168
+ };
169
+ rounded: {
170
+ type: (StringConstructor | BooleanConstructor)[];
171
+ default: boolean;
172
+ };
173
+ selectedClass: {
174
+ type: StringConstructor[];
175
+ default: string;
176
+ };
177
+ value: {
178
+ type: (StringConstructor | ObjectConstructor)[];
179
+ };
180
+ variant: {
181
+ type: StringConstructor[];
182
+ default: string;
183
+ };
184
+ width: {
185
+ type: (StringConstructor | NumberConstructor)[];
186
+ };
187
+ children: {
188
+ type: (StringConstructor | {
189
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
190
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
191
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
192
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
193
+ isArray(arg: any): arg is any[];
194
+ readonly prototype: any[];
195
+ from<T>(arrayLike: ArrayLike<T>): T[];
196
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
197
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
198
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
199
+ of<T_4>(...items: T_4[]): T_4[];
200
+ readonly [Symbol.species]: ArrayConstructor;
201
+ })[];
202
+ default(): never[];
203
+ };
204
+ component: {
205
+ type: StringConstructor;
206
+ };
207
+ allowDuplicate: {
208
+ type: (StringConstructor | BooleanConstructor)[];
209
+ default: boolean;
210
+ };
211
+ autofocus: {
212
+ type: (StringConstructor | BooleanConstructor)[];
213
+ default: boolean;
214
+ };
215
+ cssClass: {
216
+ type: StringConstructor;
217
+ default: string;
218
+ };
219
+ cssStyle: {
220
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
221
+ default: string;
222
+ };
223
+ dark: {
224
+ type: (StringConstructor | BooleanConstructor)[];
225
+ default: boolean;
226
+ };
227
+ directives: {
228
+ type: ObjectConstructor;
229
+ default(): {};
230
+ };
231
+ events: {
232
+ type: ObjectConstructor;
233
+ default(): {};
234
+ };
235
+ instanceObject: {
236
+ type: ObjectConstructor;
237
+ };
238
+ isVisible: {
239
+ type: (StringConstructor | BooleanConstructor)[];
240
+ default: boolean;
241
+ };
242
+ keyMap: {
243
+ type: ObjectConstructor;
244
+ default(): {};
245
+ };
246
+ light: {
247
+ type: (StringConstructor | BooleanConstructor)[];
248
+ default: boolean;
249
+ };
250
+ name: {
251
+ type: StringConstructor;
252
+ required: true;
253
+ };
254
+ parent: {
255
+ type: ObjectConstructor;
256
+ };
257
+ tabStop: {
258
+ type: (StringConstructor | BooleanConstructor)[];
259
+ default: boolean;
260
+ };
261
+ theme: {
262
+ type: StringConstructor;
263
+ };
264
+ }>, {
265
+ instance: {
266
+ disabled: boolean;
267
+ tabTitle: string;
268
+ lazyLoad: boolean;
269
+ color: string;
270
+ dense: boolean;
271
+ direction: "horizontal" | "vertical";
272
+ fixed: boolean;
273
+ iconName?: string | undefined;
274
+ rounded: string | number | boolean;
275
+ selectedClass: string;
276
+ value: any;
277
+ variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
278
+ width?: string | number | undefined;
279
+ allowDuplicate: boolean;
280
+ autofocus: boolean;
281
+ children: {
282
+ [x: string]: any;
283
+ allowDuplicate?: boolean | undefined;
284
+ autofocus?: boolean | undefined;
285
+ children?: any[] | undefined;
286
+ componentId?: number | undefined;
287
+ cssClass?: string | undefined;
288
+ cssStyle?: string | import("@zeedhi/core").IDictionary<any> | undefined;
289
+ events?: {
290
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
291
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
292
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
293
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
294
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
295
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
296
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
297
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
298
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
299
+ } | undefined;
300
+ directives?: {
301
+ [x: string]: {
302
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
303
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
304
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
305
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
306
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
307
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
308
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
309
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
310
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
311
+ } | undefined;
312
+ touch?: {
313
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
314
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
315
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
316
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
317
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
318
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
319
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
320
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
321
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
322
+ } | undefined;
323
+ } | undefined;
324
+ isVisible?: string | boolean | undefined;
325
+ dark?: boolean | undefined;
326
+ light?: boolean | undefined;
327
+ theme?: string | undefined;
328
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
329
+ name: string;
330
+ parent?: {
331
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
332
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
333
+ allowDuplicate: boolean;
334
+ autofocus: boolean;
335
+ children: any[];
336
+ componentId: number;
337
+ cssClass: string;
338
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
339
+ events: {
340
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
341
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
342
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
343
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
344
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
345
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
346
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
347
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
348
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
349
+ };
350
+ directives: {
351
+ [x: string]: {
352
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
353
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
354
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
355
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
356
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
357
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
358
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
359
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
360
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
361
+ } | undefined;
362
+ touch?: {
363
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
364
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
365
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
366
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
367
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
368
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
369
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
370
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
371
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
372
+ } | undefined;
373
+ };
374
+ isVisible: string | boolean;
375
+ dark: boolean;
376
+ light: boolean;
377
+ theme?: string | undefined;
378
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
379
+ name: string;
380
+ parent?: any | undefined;
381
+ tabStop: boolean;
382
+ userProperties: import("@zeedhi/core").IDictionary<any>;
383
+ fillHeight: boolean;
384
+ } | undefined;
385
+ tabStop?: boolean | undefined;
386
+ userProperties?: import("@zeedhi/core").IDictionary<any> | undefined;
387
+ fillHeight?: boolean | undefined;
388
+ }[];
389
+ childrenInstances: any[];
390
+ cssClass: string;
391
+ cssStyle: string | import("@zeedhi/core").IDictionary<string>;
392
+ directives: {
393
+ [x: string]: {
394
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
395
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
396
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
397
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
398
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
399
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
400
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
401
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
402
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
403
+ } | undefined;
404
+ touch?: {
405
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
406
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
407
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
408
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
409
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
410
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
411
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
412
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
413
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
414
+ } | undefined;
415
+ };
416
+ events: {
417
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
418
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
419
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
420
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
421
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
422
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
423
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
424
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
425
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
426
+ };
427
+ isVisible: boolean;
428
+ name: string;
429
+ dark: boolean;
430
+ light: boolean;
431
+ theme?: string | undefined;
432
+ fillHeight: boolean;
433
+ parent?: {
434
+ addChildInstance: (component: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
435
+ getChildInstance: <T extends import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>>(name: string) => T;
436
+ allowDuplicate: boolean;
437
+ autofocus: boolean;
438
+ children: any[];
439
+ componentId: number;
440
+ cssClass: string;
441
+ cssStyle: string | import("@zeedhi/core").IDictionary<any>;
442
+ events: {
443
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
444
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
445
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
446
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
447
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
448
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
449
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
450
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
451
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
452
+ };
453
+ directives: {
454
+ [x: string]: {
455
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
456
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
457
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
458
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
459
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
460
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
461
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
462
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
463
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
464
+ } | undefined;
465
+ touch?: {
466
+ [x: string]: string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | (string | import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>> | undefined)[] | undefined;
467
+ blur?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
468
+ click?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
469
+ focus?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
470
+ onCreated?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
471
+ onBeforeMount?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
472
+ onMounted?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
473
+ onBeforeDestroy?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
474
+ onDestroyed?: import("@zeedhi/common").EventDef<import("@zeedhi/core").IEventParam<any>, import("@zeedhi/core").IEvent<import("@zeedhi/core").IEventParam<any>>> | undefined;
475
+ } | undefined;
476
+ };
477
+ isVisible: string | boolean;
478
+ dark: boolean;
479
+ light: boolean;
480
+ theme?: string | undefined;
481
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
482
+ name: string;
483
+ parent?: any | undefined;
484
+ tabStop: boolean;
485
+ userProperties: import("@zeedhi/core").IDictionary<any>;
486
+ fillHeight: boolean;
487
+ } | undefined;
488
+ componentId: number;
489
+ keyMap: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>>;
490
+ isFocused: boolean;
491
+ tabStop: boolean;
492
+ userProperties: import("@zeedhi/core").IDictionary<any>;
493
+ setViewFocus: (viewFocus: () => void) => void;
494
+ setFocus: () => void;
495
+ callEvent: (eventName: string, args: any) => boolean;
496
+ addChild: (child: import("@zeedhi/common").IComponent) => void;
497
+ removeChild: (name: string) => void;
498
+ getChildInstance: <T_1>(name: string) => T_1;
499
+ addChildInstance: (instance: import("@zeedhi/common").Component<import("@zeedhi/common").IComponent>) => void;
500
+ onCreated: () => void;
501
+ onBeforeMount: () => void;
502
+ onMounted: (element: any) => void;
503
+ onBeforeDestroy: () => void;
504
+ onDestroyed: () => void;
505
+ click: (event?: globalThis.Event | undefined, element?: any) => void;
506
+ focus: (event: globalThis.Event, element: any) => void;
507
+ blur: (event: globalThis.Event, element: any) => void;
508
+ mouseenter: (event?: globalThis.Event | undefined, element?: any) => void;
509
+ mouseleave: (event?: globalThis.Event | undefined, element?: any) => void;
510
+ mouseout: (event?: globalThis.Event | undefined, element?: any) => void;
511
+ mouseover: (event?: globalThis.Event | undefined, element?: any) => void;
512
+ };
513
+ 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>>;
514
+ click: (event: globalThis.Event) => void;
515
+ focus: (event: globalThis.Event) => void;
516
+ blur: (event: globalThis.Event) => void;
517
+ mouseenter: (event: globalThis.Event) => void;
518
+ mouseleave: (event: globalThis.Event) => void;
519
+ clickTab: (event: Event) => void;
520
+ keydown: (event: Event) => void;
521
+ density: import("vue").ComputedRef<"compact" | "default">;
522
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
523
+ disabled: {
524
+ type: (StringConstructor | BooleanConstructor)[];
525
+ default: boolean;
526
+ };
527
+ index: {
528
+ type: (StringConstructor | NumberConstructor)[];
529
+ };
530
+ tabTitle: {
531
+ type: StringConstructor[];
532
+ };
533
+ tabName: {
534
+ type: StringConstructor[];
535
+ };
536
+ color: {
537
+ type: StringConstructor[];
538
+ default: string;
539
+ };
540
+ dense: {
541
+ type: BooleanConstructor[];
542
+ default: boolean;
543
+ };
544
+ direction: {
545
+ type: StringConstructor[];
546
+ default: string;
547
+ };
548
+ fixed: {
549
+ type: (StringConstructor | BooleanConstructor)[];
550
+ default: boolean;
551
+ };
552
+ iconName: {
553
+ type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
554
+ default: boolean;
555
+ };
556
+ rounded: {
557
+ type: (StringConstructor | BooleanConstructor)[];
558
+ default: boolean;
559
+ };
560
+ selectedClass: {
561
+ type: StringConstructor[];
562
+ default: string;
563
+ };
564
+ value: {
565
+ type: (StringConstructor | ObjectConstructor)[];
566
+ };
567
+ variant: {
568
+ type: StringConstructor[];
569
+ default: string;
570
+ };
571
+ width: {
572
+ type: (StringConstructor | NumberConstructor)[];
573
+ };
574
+ children: {
575
+ type: (StringConstructor | {
576
+ (arrayLength: number): import("@zeedhi/common").IComponentRender[];
577
+ (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
578
+ new (arrayLength: number): import("@zeedhi/common").IComponentRender[];
579
+ new (...items: import("@zeedhi/common").IComponentRender[]): import("@zeedhi/common").IComponentRender[];
580
+ isArray(arg: any): arg is any[];
581
+ readonly prototype: any[];
582
+ from<T>(arrayLike: ArrayLike<T>): T[];
583
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
584
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
585
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
586
+ of<T_4>(...items: T_4[]): T_4[];
587
+ readonly [Symbol.species]: ArrayConstructor;
588
+ })[];
589
+ default(): never[];
590
+ };
591
+ component: {
592
+ type: StringConstructor;
593
+ };
594
+ allowDuplicate: {
595
+ type: (StringConstructor | BooleanConstructor)[];
596
+ default: boolean;
597
+ };
598
+ autofocus: {
599
+ type: (StringConstructor | BooleanConstructor)[];
600
+ default: boolean;
601
+ };
602
+ cssClass: {
603
+ type: StringConstructor;
604
+ default: string;
605
+ };
606
+ cssStyle: {
607
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
608
+ default: string;
609
+ };
610
+ dark: {
611
+ type: (StringConstructor | BooleanConstructor)[];
612
+ default: boolean;
613
+ };
614
+ directives: {
615
+ type: ObjectConstructor;
616
+ default(): {};
617
+ };
618
+ events: {
619
+ type: ObjectConstructor;
620
+ default(): {};
621
+ };
622
+ instanceObject: {
623
+ type: ObjectConstructor;
624
+ };
625
+ isVisible: {
626
+ type: (StringConstructor | BooleanConstructor)[];
627
+ default: boolean;
628
+ };
629
+ keyMap: {
630
+ type: ObjectConstructor;
631
+ default(): {};
632
+ };
633
+ light: {
634
+ type: (StringConstructor | BooleanConstructor)[];
635
+ default: boolean;
636
+ };
637
+ name: {
638
+ type: StringConstructor;
639
+ required: true;
640
+ };
641
+ parent: {
642
+ type: ObjectConstructor;
643
+ };
644
+ tabStop: {
645
+ type: (StringConstructor | BooleanConstructor)[];
646
+ default: boolean;
647
+ };
648
+ theme: {
649
+ type: StringConstructor;
650
+ };
651
+ }>> & Readonly<{}>, {
652
+ allowDuplicate: string | boolean;
653
+ autofocus: string | boolean;
654
+ children: string | import("@zeedhi/common").IComponentRender[];
655
+ cssClass: string;
656
+ cssStyle: import("vue").StyleValue;
657
+ dark: string | boolean;
658
+ directives: Record<string, any>;
659
+ events: Record<string, any>;
660
+ isVisible: string | boolean;
661
+ keyMap: Record<string, any>;
662
+ light: string | boolean;
663
+ tabStop: string | boolean;
664
+ disabled: string | boolean;
665
+ color: string;
666
+ dense: boolean;
667
+ direction: string;
668
+ fixed: string | boolean;
669
+ iconName: string | number | boolean;
670
+ rounded: string | boolean;
671
+ selectedClass: string;
672
+ variant: string;
673
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
674
+ export default tabComponent;