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