@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,350 @@
1
+ export declare const ZdLoadingProps: {
2
+ image: {
3
+ type: StringConstructor;
4
+ default: undefined;
5
+ };
6
+ text: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ opacity: {
11
+ type: (StringConstructor | NumberConstructor)[];
12
+ default: number;
13
+ };
14
+ size: {
15
+ type: (StringConstructor | NumberConstructor)[];
16
+ default: number;
17
+ };
18
+ loadingColor: {
19
+ type: StringConstructor;
20
+ default: string;
21
+ };
22
+ loadingWidth: {
23
+ type: (StringConstructor | NumberConstructor)[];
24
+ default: number;
25
+ };
26
+ zIndex: {
27
+ type: (StringConstructor | NumberConstructor)[];
28
+ default: number;
29
+ };
30
+ textColor: {
31
+ type: StringConstructor;
32
+ default: string;
33
+ };
34
+ allowDuplicate: {
35
+ type: (StringConstructor | BooleanConstructor)[];
36
+ default: boolean;
37
+ };
38
+ autofocus: {
39
+ type: (StringConstructor | BooleanConstructor)[];
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_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
52
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
53
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
54
+ of<T_4>(...items: T_4[]): T_4[];
55
+ readonly [Symbol.species]: ArrayConstructor;
56
+ })[];
57
+ default(): never[];
58
+ };
59
+ cssClass: {
60
+ type: StringConstructor;
61
+ default: string;
62
+ };
63
+ cssStyle: {
64
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
65
+ default: string;
66
+ };
67
+ dark: {
68
+ type: (StringConstructor | BooleanConstructor)[];
69
+ default: boolean;
70
+ };
71
+ directives: {
72
+ type: ObjectConstructor;
73
+ default(): {};
74
+ };
75
+ events: {
76
+ type: ObjectConstructor;
77
+ default(): {};
78
+ };
79
+ instanceObject: {
80
+ type: ObjectConstructor;
81
+ };
82
+ isVisible: {
83
+ type: (StringConstructor | BooleanConstructor)[];
84
+ default: boolean;
85
+ };
86
+ keyMap: {
87
+ type: ObjectConstructor;
88
+ default(): {};
89
+ };
90
+ light: {
91
+ type: (StringConstructor | BooleanConstructor)[];
92
+ default: boolean;
93
+ };
94
+ name: {
95
+ type: StringConstructor;
96
+ required: true;
97
+ };
98
+ parent: {
99
+ type: ObjectConstructor;
100
+ };
101
+ tabStop: {
102
+ type: (StringConstructor | BooleanConstructor)[];
103
+ default: boolean;
104
+ };
105
+ theme: {
106
+ type: StringConstructor;
107
+ };
108
+ };
109
+ declare const loadingComponent: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
110
+ image: {
111
+ type: StringConstructor;
112
+ default: undefined;
113
+ };
114
+ text: {
115
+ type: StringConstructor;
116
+ default: string;
117
+ };
118
+ opacity: {
119
+ type: (StringConstructor | NumberConstructor)[];
120
+ default: number;
121
+ };
122
+ size: {
123
+ type: (StringConstructor | NumberConstructor)[];
124
+ default: number;
125
+ };
126
+ loadingColor: {
127
+ type: StringConstructor;
128
+ default: string;
129
+ };
130
+ loadingWidth: {
131
+ type: (StringConstructor | NumberConstructor)[];
132
+ default: number;
133
+ };
134
+ zIndex: {
135
+ type: (StringConstructor | NumberConstructor)[];
136
+ default: number;
137
+ };
138
+ textColor: {
139
+ type: StringConstructor;
140
+ default: string;
141
+ };
142
+ allowDuplicate: {
143
+ type: (StringConstructor | BooleanConstructor)[];
144
+ default: boolean;
145
+ };
146
+ autofocus: {
147
+ type: (StringConstructor | BooleanConstructor)[];
148
+ default: boolean;
149
+ };
150
+ children: {
151
+ type: (StringConstructor | {
152
+ (arrayLength: number): import("@zeedhi/common").IComponent[];
153
+ (...items: import("@zeedhi/common").IComponent[]): import("@zeedhi/common").IComponent[];
154
+ new (arrayLength: number): import("@zeedhi/common").IComponent[];
155
+ new (...items: import("@zeedhi/common").IComponent[]): import("@zeedhi/common").IComponent[];
156
+ isArray(arg: any): arg is any[];
157
+ readonly prototype: any[];
158
+ from<T>(arrayLike: ArrayLike<T>): T[];
159
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
160
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
161
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
162
+ of<T_4>(...items: T_4[]): T_4[];
163
+ readonly [Symbol.species]: ArrayConstructor;
164
+ })[];
165
+ default(): never[];
166
+ };
167
+ cssClass: {
168
+ type: StringConstructor;
169
+ default: string;
170
+ };
171
+ cssStyle: {
172
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
173
+ default: string;
174
+ };
175
+ dark: {
176
+ type: (StringConstructor | BooleanConstructor)[];
177
+ default: boolean;
178
+ };
179
+ directives: {
180
+ type: ObjectConstructor;
181
+ default(): {};
182
+ };
183
+ events: {
184
+ type: ObjectConstructor;
185
+ default(): {};
186
+ };
187
+ instanceObject: {
188
+ type: ObjectConstructor;
189
+ };
190
+ isVisible: {
191
+ type: (StringConstructor | BooleanConstructor)[];
192
+ default: boolean;
193
+ };
194
+ keyMap: {
195
+ type: ObjectConstructor;
196
+ default(): {};
197
+ };
198
+ light: {
199
+ type: (StringConstructor | BooleanConstructor)[];
200
+ default: boolean;
201
+ };
202
+ name: {
203
+ type: StringConstructor;
204
+ required: true;
205
+ };
206
+ parent: {
207
+ type: ObjectConstructor;
208
+ };
209
+ tabStop: {
210
+ type: (StringConstructor | BooleanConstructor)[];
211
+ default: boolean;
212
+ };
213
+ theme: {
214
+ type: StringConstructor;
215
+ };
216
+ }>, {
217
+ 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>>;
218
+ loading: any;
219
+ parseToPixel: (number: number) => string;
220
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
221
+ image: {
222
+ type: StringConstructor;
223
+ default: undefined;
224
+ };
225
+ text: {
226
+ type: StringConstructor;
227
+ default: string;
228
+ };
229
+ opacity: {
230
+ type: (StringConstructor | NumberConstructor)[];
231
+ default: number;
232
+ };
233
+ size: {
234
+ type: (StringConstructor | NumberConstructor)[];
235
+ default: number;
236
+ };
237
+ loadingColor: {
238
+ type: StringConstructor;
239
+ default: string;
240
+ };
241
+ loadingWidth: {
242
+ type: (StringConstructor | NumberConstructor)[];
243
+ default: number;
244
+ };
245
+ zIndex: {
246
+ type: (StringConstructor | NumberConstructor)[];
247
+ default: number;
248
+ };
249
+ textColor: {
250
+ type: StringConstructor;
251
+ default: string;
252
+ };
253
+ allowDuplicate: {
254
+ type: (StringConstructor | BooleanConstructor)[];
255
+ default: boolean;
256
+ };
257
+ autofocus: {
258
+ type: (StringConstructor | BooleanConstructor)[];
259
+ default: boolean;
260
+ };
261
+ children: {
262
+ type: (StringConstructor | {
263
+ (arrayLength: number): import("@zeedhi/common").IComponent[];
264
+ (...items: import("@zeedhi/common").IComponent[]): import("@zeedhi/common").IComponent[];
265
+ new (arrayLength: number): import("@zeedhi/common").IComponent[];
266
+ new (...items: import("@zeedhi/common").IComponent[]): import("@zeedhi/common").IComponent[];
267
+ isArray(arg: any): arg is any[];
268
+ readonly prototype: any[];
269
+ from<T>(arrayLike: ArrayLike<T>): T[];
270
+ from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
271
+ from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
272
+ from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
273
+ of<T_4>(...items: T_4[]): T_4[];
274
+ readonly [Symbol.species]: ArrayConstructor;
275
+ })[];
276
+ default(): never[];
277
+ };
278
+ cssClass: {
279
+ type: StringConstructor;
280
+ default: string;
281
+ };
282
+ cssStyle: {
283
+ type: (StringConstructor | (() => import("vue").StyleValue))[];
284
+ default: string;
285
+ };
286
+ dark: {
287
+ type: (StringConstructor | BooleanConstructor)[];
288
+ default: boolean;
289
+ };
290
+ directives: {
291
+ type: ObjectConstructor;
292
+ default(): {};
293
+ };
294
+ events: {
295
+ type: ObjectConstructor;
296
+ default(): {};
297
+ };
298
+ instanceObject: {
299
+ type: ObjectConstructor;
300
+ };
301
+ isVisible: {
302
+ type: (StringConstructor | BooleanConstructor)[];
303
+ default: boolean;
304
+ };
305
+ keyMap: {
306
+ type: ObjectConstructor;
307
+ default(): {};
308
+ };
309
+ light: {
310
+ type: (StringConstructor | BooleanConstructor)[];
311
+ default: boolean;
312
+ };
313
+ name: {
314
+ type: StringConstructor;
315
+ required: true;
316
+ };
317
+ parent: {
318
+ type: ObjectConstructor;
319
+ };
320
+ tabStop: {
321
+ type: (StringConstructor | BooleanConstructor)[];
322
+ default: boolean;
323
+ };
324
+ theme: {
325
+ type: StringConstructor;
326
+ };
327
+ }>> & Readonly<{}>, {
328
+ allowDuplicate: string | boolean;
329
+ autofocus: string | boolean;
330
+ children: string | import("@zeedhi/common").IComponent[];
331
+ cssClass: string;
332
+ cssStyle: import("vue").StyleValue;
333
+ dark: string | boolean;
334
+ directives: Record<string, any>;
335
+ events: Record<string, any>;
336
+ isVisible: string | boolean;
337
+ keyMap: Record<string, any>;
338
+ light: string | boolean;
339
+ tabStop: string | boolean;
340
+ image: string;
341
+ text: string;
342
+ opacity: string | number;
343
+ size: string | number;
344
+ loadingColor: string;
345
+ loadingWidth: string | number;
346
+ zIndex: string | number;
347
+ textColor: string;
348
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
349
+ export declare function useLoading(LoadingClass: any, props: any): any;
350
+ export default loadingComponent;