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