@zeedhi/vuetify 3.0.11 → 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 (227) hide show
  1. package/dist/zd-vuetify.css +60 -58
  2. package/dist/zd-vuetify.min.css +1 -1
  3. package/dist/zd-vuetify.min.js +14 -14
  4. package/dist/zd-vuetify.mjs +1061 -792
  5. package/environments.json +16 -0
  6. package/package.json +3 -3
  7. package/src/components/index.ts +3 -1
  8. package/src/components/zd-alert/ZdAlert.ts +1 -1
  9. package/src/components/zd-badge/ZdBadge.ts +1 -1
  10. package/src/components/zd-breadcrumbs/ZdBreadcrumbs.ts +2 -1
  11. package/src/components/zd-button/ZdButton.ts +1 -1
  12. package/src/components/zd-button-group/ZdButtonGroup.ts +1 -1
  13. package/src/components/zd-card/ZdCard.ts +1 -1
  14. package/src/components/zd-card/ZdCard.vue +2 -2
  15. package/src/components/zd-carousel/ZdCarousel.ts +3 -1
  16. package/src/components/zd-checkbox/ZdCheckbox.ts +1 -1
  17. package/src/components/zd-checkbox-multiple/ZdCheckboxMultiple.ts +3 -1
  18. package/src/components/zd-chip/ZdChip.ts +1 -1
  19. package/src/components/zd-code-viewer/ZdCodeViewer.ts +1 -1
  20. package/src/components/zd-col/ZdCol.ts +1 -1
  21. package/src/components/zd-collapse-card/ZdCollapseCard.ts +3 -1
  22. package/src/components/zd-component/ZdComponent.ts +23 -1
  23. package/src/components/zd-component/ZdComponentRender.ts +2 -0
  24. package/src/components/zd-container/ZdContainer.ts +1 -1
  25. package/src/components/zd-currency/ZdCurrency.ts +1 -1
  26. package/src/components/zd-date-input/ZdDateInput.ts +1 -1
  27. package/src/components/zd-date-range/ZdDateRange.ts +1 -1
  28. package/src/components/zd-divider/ZdDivider.ts +1 -1
  29. package/src/components/zd-dropdown/ZdDropdown.ts +2 -1
  30. package/src/components/zd-dropdown/ZdDropdown.vue +1 -1
  31. package/src/components/zd-footer/ZdFooter.ts +1 -1
  32. package/src/components/zd-form/ZdForm.ts +2 -1
  33. package/src/components/zd-frame/ZdFrame.ts +3 -1
  34. package/src/components/zd-frame-page/ZdFramePage.ts +1 -1
  35. package/src/components/zd-frame-page/ZdFramePage.vue +1 -1
  36. package/src/components/zd-grid/ZdGrid.ts +10 -2
  37. package/src/components/zd-grid/ZdGrid.vue +1 -1
  38. package/src/components/zd-grid/cell/ZdGridCellContent.vue +5 -7
  39. package/src/components/zd-grid/column-header/ZdGridColumnHeader.vue +4 -7
  40. package/src/components/zd-grid-editable/ZdGridEditable.ts +9 -2
  41. package/src/components/zd-grid-editable/cell/ZdGridEditableCell.vue +1 -0
  42. package/src/components/zd-header/ZdHeader.ts +4 -1
  43. package/src/components/zd-icon/ZdIcon.ts +1 -1
  44. package/src/components/zd-image/ZdImage.ts +1 -1
  45. package/src/components/zd-increment/ZdIncrement.ts +1 -1
  46. package/src/components/zd-input/ZdInput.ts +10 -3
  47. package/src/components/zd-iterable/ZdIterable.ts +2 -0
  48. package/src/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.ts +6 -1
  49. package/src/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.ts +1 -1
  50. package/src/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.ts +2 -1
  51. package/src/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.ts +8 -3
  52. package/src/components/zd-iterable/zd-search/ZdSearch.ts +1 -1
  53. package/src/components/zd-iterable-component-render/ZdIterableComponentRender.ts +12 -1
  54. package/src/components/zd-layout/ZdLayout.ts +1 -1
  55. package/src/components/zd-list/ZdList.scss +3 -0
  56. package/src/components/zd-list/ZdList.ts +2 -1
  57. package/src/components/zd-list/ZdListGroup.ts +2 -1
  58. package/src/components/zd-list/ZdListGroup.vue +14 -16
  59. package/src/components/zd-list/ZdListItem.ts +1 -1
  60. package/src/components/zd-loading/ZdLoading.ts +1 -1
  61. package/src/components/zd-loading/ZdLoading.vue +30 -53
  62. package/src/components/zd-login/ZdLogin.ts +3 -1
  63. package/src/components/zd-login/ZdLoginButton.ts +1 -1
  64. package/src/components/zd-main/ZdMain.ts +1 -1
  65. package/src/components/zd-master-detail/ZdMasterDetail.ts +1 -1
  66. package/src/components/zd-menu/ZdMenu.ts +9 -4
  67. package/src/components/zd-menu/ZdMenu.vue +6 -5
  68. package/src/components/zd-menu/ZdMenuButton.ts +1 -1
  69. package/src/components/zd-menu/ZdMenuGroup.ts +2 -1
  70. package/src/components/zd-menu/ZdMenuLink.ts +1 -1
  71. package/src/components/zd-menu/ZdMenuSeparator.ts +1 -1
  72. package/src/components/zd-modal/ZdModal.ts +1 -21
  73. package/src/components/zd-modal/ZdModal.vue +18 -77
  74. package/src/components/zd-modal/ZdModalCard.ts +100 -0
  75. package/src/components/zd-modal/ZdModalCard.vue +47 -0
  76. package/src/components/zd-modal/ZdModalCloseButton.ts +1 -1
  77. package/src/components/zd-month/ZdMonth.ts +1 -1
  78. package/src/components/zd-number-input/ZdNumberInput.ts +1 -1
  79. package/src/components/zd-password/ZdPassword.ts +1 -1
  80. package/src/components/zd-progress/ZdProgress.ts +2 -1
  81. package/src/components/zd-radio/ZdRadio.ts +2 -1
  82. package/src/components/zd-row/ZdRow.ts +1 -1
  83. package/src/components/zd-select/ZdSelect.ts +10 -2
  84. package/src/components/zd-select/ZdSelect.vue +2 -6
  85. package/src/components/zd-select-multiple/ZdSelectMultiple.ts +6 -1
  86. package/src/components/zd-select-multiple/ZdSelectMultiple.vue +1 -1
  87. package/src/components/zd-svg-map/ZdSvgMap.ts +1 -1
  88. package/src/components/zd-switch/ZdSwitch.ts +1 -1
  89. package/src/components/zd-table/ZdTable.ts +1 -1
  90. package/src/components/zd-tabs/ZdTab.ts +1 -1
  91. package/src/components/zd-tabs/ZdTabItem.vue +1 -0
  92. package/src/components/zd-tabs/ZdTabs.ts +4 -3
  93. package/src/components/zd-tabs/ZdTabs.vue +14 -5
  94. package/src/components/zd-tag/ZdTag.ts +1 -1
  95. package/src/components/zd-text/ZdText.ts +1 -1
  96. package/src/components/zd-text-input/ZdTextInput.ts +1 -1
  97. package/src/components/zd-text-input/ZdTextInput.vue +2 -2
  98. package/src/components/zd-textarea/ZdTextarea.ts +5 -1
  99. package/src/components/zd-textarea/ZdTextarea.vue +5 -2
  100. package/src/components/zd-time/ZdTime.ts +1 -1
  101. package/src/components/zd-tooltip/ZdTooltip.ts +1 -1
  102. package/src/components/zd-tooltip-overflow/ZdTooltipOverflow.vue +45 -0
  103. package/src/components/zd-tree/ZdTree.ts +5 -1
  104. package/src/components/zd-tree-grid/ZdTreeGrid.ts +2 -1
  105. package/src/composables/columnDrag.ts +9 -11
  106. package/src/composables/tableNavigation.ts +5 -1
  107. package/src/composables/useTooltipManager.ts +24 -0
  108. package/src/directives/index.ts +1 -0
  109. package/src/directives/v-tooltip-overflow.ts +97 -0
  110. package/src/index.ts +11 -0
  111. package/src/styles/_zd-input.scss +3 -2
  112. package/src/utils/fillHeight.ts +3 -2
  113. package/src/utils/index.ts +1 -0
  114. package/src/utils/plugins/getIconPlugin.ts +4 -3
  115. package/src/utils/tooltip-overflow/index.ts +2 -0
  116. package/src/utils/tooltip-overflow/install.ts +27 -0
  117. package/src/utils/tooltip-overflow/uninstall.ts +32 -0
  118. package/types/components/zd-alert/ZdAlert.d.ts +429 -351
  119. package/types/components/zd-badge/ZdBadge.d.ts +235 -211
  120. package/types/components/zd-breadcrumbs/ZdBreadcrumbs.d.ts +249 -222
  121. package/types/components/zd-button/ZdButton.d.ts +251 -227
  122. package/types/components/zd-button-group/ZdButtonGroup.d.ts +227 -212
  123. package/types/components/zd-card/ZdCard.d.ts +246 -222
  124. package/types/components/zd-carousel/ZdCarousel.d.ts +705 -701
  125. package/types/components/zd-checkbox/ZdCheckbox.d.ts +41 -14
  126. package/types/components/zd-checkbox-multiple/ZdCheckboxMultiple.d.ts +779 -746
  127. package/types/components/zd-chip/ZdChip.d.ts +246 -222
  128. package/types/components/zd-code-viewer/ZdCodeViewer.d.ts +264 -234
  129. package/types/components/zd-col/ZdCol.d.ts +244 -220
  130. package/types/components/zd-collapse-card/ZdCollapseCard.d.ts +541 -457
  131. package/types/components/zd-component/ZdComponent.d.ts +12 -5
  132. package/types/components/zd-component/ZdComponentRender.d.ts +12 -4
  133. package/types/components/zd-container/ZdContainer.d.ts +247 -223
  134. package/types/components/zd-currency/ZdCurrency.d.ts +765 -738
  135. package/types/components/zd-date-input/ZdDateInput.d.ts +62 -29
  136. package/types/components/zd-date-range/ZdDateRange.d.ts +776 -749
  137. package/types/components/zd-dialog/ZdDialog.d.ts +36 -12
  138. package/types/components/zd-divider/ZdDivider.d.ts +244 -220
  139. package/types/components/zd-dropdown/ZdDropdown.d.ts +342 -324
  140. package/types/components/zd-footer/ZdFooter.d.ts +624 -562
  141. package/types/components/zd-form/ZdForm.d.ts +12 -4
  142. package/types/components/zd-frame/ZdFrame.d.ts +13 -4
  143. package/types/components/zd-frame-page/ZdFramePage.d.ts +242 -215
  144. package/types/components/zd-grid/ZdGrid.d.ts +4500 -4527
  145. package/types/components/zd-grid/cell/ZdGridAction.d.ts +2 -2
  146. package/types/components/zd-grid/cell/ZdGridCell.d.ts +4 -4
  147. package/types/components/zd-grid/cell/ZdGridCellContent.d.ts +4 -4
  148. package/types/components/zd-grid/column-header/ZdGridColumnHeader.d.ts +2 -2
  149. package/types/components/zd-grid/composables/grid-instance.d.ts +1927 -1238
  150. package/types/components/zd-grid/footer/ZdGridFooter.d.ts +1927 -1238
  151. package/types/components/zd-grid/row/ZdGridRow.d.ts +6 -6
  152. package/types/components/zd-grid/toolbar/ZdGridToolbar.d.ts +1927 -1238
  153. package/types/components/zd-grid-editable/ZdGridEditable.d.ts +5102 -6303
  154. package/types/components/zd-grid-editable/cell/ZdGridEditableCell.d.ts +341 -341
  155. package/types/components/zd-grid-editable/row/ZdGridEditableRow.d.ts +6 -6
  156. package/types/components/zd-header/ZdHeader.d.ts +640 -582
  157. package/types/components/zd-icon/ZdIcon.d.ts +39 -15
  158. package/types/components/zd-image/ZdImage.d.ts +241 -220
  159. package/types/components/zd-increment/ZdIncrement.d.ts +765 -738
  160. package/types/components/zd-input/ZdInput.d.ts +15 -6
  161. package/types/components/zd-iterable/ZdIterable.d.ts +26 -12
  162. package/types/components/zd-iterable/ZdIterableNoData.d.ts +1927 -1238
  163. package/types/components/zd-iterable/zd-iterable-columns-button/ZdIterableColumnsButton.d.ts +753 -470
  164. package/types/components/zd-iterable/zd-iterable-page-info/ZdIterablePageInfo.d.ts +750 -461
  165. package/types/components/zd-iterable/zd-iterable-page-size/ZdIterablePageSize.d.ts +1659 -987
  166. package/types/components/zd-iterable/zd-iterable-pagination/ZdIterablePagination.d.ts +762 -470
  167. package/types/components/zd-iterable/zd-search/ZdSearch.d.ts +50 -23
  168. package/types/components/zd-iterable-component-render/ZdIterableComponentRender.d.ts +1224 -1080
  169. package/types/components/zd-layout/ZdLayout.d.ts +243 -222
  170. package/types/components/zd-list/ZdList.d.ts +671 -432
  171. package/types/components/zd-list/ZdListGroup.d.ts +809 -570
  172. package/types/components/zd-list/ZdListItem.d.ts +424 -294
  173. package/types/components/zd-loading/ZdLoading.d.ts +35 -14
  174. package/types/components/zd-login/ZdLogin.d.ts +455 -425
  175. package/types/components/zd-login/ZdLoginButton.d.ts +678 -654
  176. package/types/components/zd-main/ZdMain.d.ts +241 -220
  177. package/types/components/zd-master-detail/ZdMasterDetail.d.ts +261 -237
  178. package/types/components/zd-menu/ZdMenu.d.ts +1257 -3206
  179. package/types/components/zd-menu/ZdMenuButton.d.ts +244 -220
  180. package/types/components/zd-menu/ZdMenuGroup.d.ts +1219 -5391
  181. package/types/components/zd-menu/ZdMenuLink.d.ts +2042 -9432
  182. package/types/components/zd-menu/ZdMenuSeparator.d.ts +244 -220
  183. package/types/components/zd-modal/ZdModal.d.ts +0 -2
  184. package/types/components/zd-modal/ZdModalCard.d.ts +125 -0
  185. package/types/components/zd-modal/ZdModalCloseButton.d.ts +244 -220
  186. package/types/components/zd-month/ZdMonth.d.ts +774 -747
  187. package/types/components/zd-number-input/ZdNumberInput.d.ts +766 -739
  188. package/types/components/zd-password/ZdPassword.d.ts +765 -738
  189. package/types/components/zd-progress/ZdProgress.d.ts +363 -336
  190. package/types/components/zd-radio/ZdRadio.d.ts +44 -14
  191. package/types/components/zd-row/ZdRow.d.ts +244 -220
  192. package/types/components/zd-select/ZdSelect.d.ts +17 -5
  193. package/types/components/zd-select-multiple/ZdSelectMultiple.d.ts +17 -5
  194. package/types/components/zd-svg-map/ZdSvgMap.d.ts +37 -13
  195. package/types/components/zd-switch/ZdSwitch.d.ts +764 -737
  196. package/types/components/zd-table/ZdTable.d.ts +547 -346
  197. package/types/components/zd-tabs/ZdTab.d.ts +233 -156
  198. package/types/components/zd-tabs/ZdTabItem.d.ts +36 -12
  199. package/types/components/zd-tabs/ZdTabs.d.ts +492 -306
  200. package/types/components/zd-tag/ZdTag.d.ts +244 -220
  201. package/types/components/zd-text/ZdText.d.ts +264 -234
  202. package/types/components/zd-text-input/ZdTextInput.d.ts +41 -14
  203. package/types/components/zd-textarea/ZdTextarea.d.ts +55 -15
  204. package/types/components/zd-time/ZdTime.d.ts +774 -747
  205. package/types/components/zd-toggleable/ZdToggleable.d.ts +13 -4
  206. package/types/components/zd-tooltip/ZdTooltip.d.ts +250 -226
  207. package/types/components/zd-tree/ZdTree.d.ts +799 -763
  208. package/types/components/zd-tree/ZdTreeAfterTitle.d.ts +3 -3
  209. package/types/components/zd-tree/ZdTreeCheckbox.d.ts +5 -5
  210. package/types/components/zd-tree-grid/ZdTreeGrid.d.ts +2230 -2214
  211. package/types/components/zd-tree-grid/cell/ZdTreeGridCell.d.ts +4 -4
  212. package/types/components/zd-tree-grid/row/ZdTreeGridRow.d.ts +6 -6
  213. package/types/composables/cellSelection.d.ts +2 -264
  214. package/types/composables/gridColumns.d.ts +200 -147
  215. package/types/composables/gridSorting.d.ts +1 -1
  216. package/types/composables/tableNavigation.d.ts +3 -2
  217. package/types/composables/useTooltipManager.d.ts +13 -0
  218. package/types/directives/index.d.ts +1 -0
  219. package/types/directives/v-tooltip-overflow.d.ts +12 -0
  220. package/types/index.d.ts +1 -0
  221. package/types/utils/fillHeight.d.ts +1 -1
  222. package/types/utils/index.d.ts +1 -0
  223. package/types/utils/tooltip-overflow/index.d.ts +2 -0
  224. package/types/utils/tooltip-overflow/install.d.ts +13 -0
  225. package/types/utils/tooltip-overflow/uninstall.d.ts +14 -0
  226. package/src/components/tooltip-overflow/ZdTooltipOverflow.ts +0 -63
  227. package/src/components/tooltip-overflow/ZdTooltipOverflow.vue +0 -63
@@ -153,6 +153,7 @@ export declare const ZdTextInputProps: {
153
153
  validations: {
154
154
  type: (ObjectConstructor | StringConstructor)[];
155
155
  default: {};
156
+ watch: boolean;
156
157
  };
157
158
  value: {
158
159
  default: null;
@@ -170,16 +171,20 @@ export declare const ZdTextInputProps: {
170
171
  isArray(arg: any): arg is any[];
171
172
  readonly prototype: any[];
172
173
  from<T>(arrayLike: ArrayLike<T>): T[];
173
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
174
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
175
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
176
- of<T_4>(...items: T_4[]): T_4[];
174
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
175
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
176
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
177
+ of<T>(...items: T[]): T[];
178
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
179
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
177
180
  readonly [Symbol.species]: ArrayConstructor;
178
181
  })[];
179
182
  default(): never[];
183
+ watch: boolean;
180
184
  };
181
185
  component: {
182
186
  type: StringConstructor;
187
+ watch: boolean;
183
188
  };
184
189
  allowDuplicate: {
185
190
  type: (BooleanConstructor | StringConstructor)[];
@@ -204,10 +209,12 @@ export declare const ZdTextInputProps: {
204
209
  directives: {
205
210
  type: ObjectConstructor;
206
211
  default(): {};
212
+ watch: boolean;
207
213
  };
208
214
  events: {
209
215
  type: ObjectConstructor;
210
216
  default(): {};
217
+ watch: boolean;
211
218
  };
212
219
  instanceObject: {
213
220
  type: ObjectConstructor;
@@ -219,6 +226,7 @@ export declare const ZdTextInputProps: {
219
226
  keyMap: {
220
227
  type: ObjectConstructor;
221
228
  default(): {};
229
+ watch: boolean;
222
230
  };
223
231
  light: {
224
232
  type: (BooleanConstructor | StringConstructor)[];
@@ -230,6 +238,7 @@ export declare const ZdTextInputProps: {
230
238
  };
231
239
  parent: {
232
240
  type: ObjectConstructor;
241
+ watch: boolean;
233
242
  };
234
243
  tabStop: {
235
244
  type: (BooleanConstructor | StringConstructor)[];
@@ -392,6 +401,7 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
392
401
  validations: {
393
402
  type: (ObjectConstructor | StringConstructor)[];
394
403
  default: {};
404
+ watch: boolean;
395
405
  };
396
406
  value: {
397
407
  default: null;
@@ -409,16 +419,20 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
409
419
  isArray(arg: any): arg is any[];
410
420
  readonly prototype: any[];
411
421
  from<T>(arrayLike: ArrayLike<T>): T[];
412
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
413
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
414
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
415
- of<T_4>(...items: T_4[]): T_4[];
422
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
423
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
424
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
425
+ of<T>(...items: T[]): T[];
426
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
427
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
416
428
  readonly [Symbol.species]: ArrayConstructor;
417
429
  })[];
418
430
  default(): never[];
431
+ watch: boolean;
419
432
  };
420
433
  component: {
421
434
  type: StringConstructor;
435
+ watch: boolean;
422
436
  };
423
437
  allowDuplicate: {
424
438
  type: (BooleanConstructor | StringConstructor)[];
@@ -443,10 +457,12 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
443
457
  directives: {
444
458
  type: ObjectConstructor;
445
459
  default(): {};
460
+ watch: boolean;
446
461
  };
447
462
  events: {
448
463
  type: ObjectConstructor;
449
464
  default(): {};
465
+ watch: boolean;
450
466
  };
451
467
  instanceObject: {
452
468
  type: ObjectConstructor;
@@ -458,6 +474,7 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
458
474
  keyMap: {
459
475
  type: ObjectConstructor;
460
476
  default(): {};
477
+ watch: boolean;
461
478
  };
462
479
  light: {
463
480
  type: (BooleanConstructor | StringConstructor)[];
@@ -469,6 +486,7 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
469
486
  };
470
487
  parent: {
471
488
  type: ObjectConstructor;
489
+ watch: boolean;
472
490
  };
473
491
  tabStop: {
474
492
  type: (BooleanConstructor | StringConstructor)[];
@@ -630,6 +648,7 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
630
648
  validations: {
631
649
  type: (ObjectConstructor | StringConstructor)[];
632
650
  default: {};
651
+ watch: boolean;
633
652
  };
634
653
  value: {
635
654
  default: null;
@@ -647,16 +666,20 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
647
666
  isArray(arg: any): arg is any[];
648
667
  readonly prototype: any[];
649
668
  from<T>(arrayLike: ArrayLike<T>): T[];
650
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
651
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
652
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
653
- of<T_4>(...items: T_4[]): T_4[];
669
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
670
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
671
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
672
+ of<T>(...items: T[]): T[];
673
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
674
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
654
675
  readonly [Symbol.species]: ArrayConstructor;
655
676
  })[];
656
677
  default(): never[];
678
+ watch: boolean;
657
679
  };
658
680
  component: {
659
681
  type: StringConstructor;
682
+ watch: boolean;
660
683
  };
661
684
  allowDuplicate: {
662
685
  type: (BooleanConstructor | StringConstructor)[];
@@ -681,10 +704,12 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
681
704
  directives: {
682
705
  type: ObjectConstructor;
683
706
  default(): {};
707
+ watch: boolean;
684
708
  };
685
709
  events: {
686
710
  type: ObjectConstructor;
687
711
  default(): {};
712
+ watch: boolean;
688
713
  };
689
714
  instanceObject: {
690
715
  type: ObjectConstructor;
@@ -696,6 +721,7 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
696
721
  keyMap: {
697
722
  type: ObjectConstructor;
698
723
  default(): {};
724
+ watch: boolean;
699
725
  };
700
726
  light: {
701
727
  type: (BooleanConstructor | StringConstructor)[];
@@ -707,6 +733,7 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
707
733
  };
708
734
  parent: {
709
735
  type: ObjectConstructor;
736
+ watch: boolean;
710
737
  };
711
738
  tabStop: {
712
739
  type: (BooleanConstructor | StringConstructor)[];
@@ -717,6 +744,7 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
717
744
  };
718
745
  }>> & Readonly<{}>, {
719
746
  reverse: string | boolean;
747
+ label: string;
720
748
  allowDuplicate: string | boolean;
721
749
  type: string;
722
750
  autofocus: string | boolean;
@@ -732,8 +760,8 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
732
760
  tabStop: string | boolean;
733
761
  fillHeight: string | boolean;
734
762
  value: null;
735
- label: string;
736
763
  mask: string;
764
+ placeholder: string;
737
765
  color: string;
738
766
  disabled: string | boolean;
739
767
  appendIcon: string;
@@ -750,7 +778,6 @@ declare const textInputComponent: import("vue").DefineComponent<import("vue").Ex
750
778
  hint: string;
751
779
  maxLength: string | number;
752
780
  persistentHint: string | boolean;
753
- placeholder: string;
754
781
  readonly: string | boolean;
755
782
  autoHintDetails: string | boolean;
756
783
  showBorder: string | boolean;
@@ -39,6 +39,10 @@ export declare const ZdTextareaProps: {
39
39
  type: (NumberConstructor | StringConstructor)[];
40
40
  default: number;
41
41
  };
42
+ maxRows: {
43
+ type: (NumberConstructor | StringConstructor)[];
44
+ default: number;
45
+ };
42
46
  height: {
43
47
  type: (NumberConstructor | StringConstructor)[];
44
48
  default: string;
@@ -192,6 +196,7 @@ export declare const ZdTextareaProps: {
192
196
  validations: {
193
197
  type: (ObjectConstructor | StringConstructor)[];
194
198
  default: {};
199
+ watch: boolean;
195
200
  };
196
201
  value: {
197
202
  default: null;
@@ -209,16 +214,20 @@ export declare const ZdTextareaProps: {
209
214
  isArray(arg: any): arg is any[];
210
215
  readonly prototype: any[];
211
216
  from<T>(arrayLike: ArrayLike<T>): T[];
212
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
213
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
214
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
215
- of<T_4>(...items: T_4[]): T_4[];
217
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
218
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
219
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
220
+ of<T>(...items: T[]): T[];
221
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
222
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
216
223
  readonly [Symbol.species]: ArrayConstructor;
217
224
  })[];
218
225
  default(): never[];
226
+ watch: boolean;
219
227
  };
220
228
  component: {
221
229
  type: StringConstructor;
230
+ watch: boolean;
222
231
  };
223
232
  allowDuplicate: {
224
233
  type: (BooleanConstructor | StringConstructor)[];
@@ -243,10 +252,12 @@ export declare const ZdTextareaProps: {
243
252
  directives: {
244
253
  type: ObjectConstructor;
245
254
  default(): {};
255
+ watch: boolean;
246
256
  };
247
257
  events: {
248
258
  type: ObjectConstructor;
249
259
  default(): {};
260
+ watch: boolean;
250
261
  };
251
262
  instanceObject: {
252
263
  type: ObjectConstructor;
@@ -258,6 +269,7 @@ export declare const ZdTextareaProps: {
258
269
  keyMap: {
259
270
  type: ObjectConstructor;
260
271
  default(): {};
272
+ watch: boolean;
261
273
  };
262
274
  light: {
263
275
  type: (BooleanConstructor | StringConstructor)[];
@@ -269,6 +281,7 @@ export declare const ZdTextareaProps: {
269
281
  };
270
282
  parent: {
271
283
  type: ObjectConstructor;
284
+ watch: boolean;
272
285
  };
273
286
  tabStop: {
274
287
  type: (BooleanConstructor | StringConstructor)[];
@@ -319,6 +332,10 @@ declare const textareaComponent: import("vue").DefineComponent<import("vue").Ext
319
332
  type: (NumberConstructor | StringConstructor)[];
320
333
  default: number;
321
334
  };
335
+ maxRows: {
336
+ type: (NumberConstructor | StringConstructor)[];
337
+ default: number;
338
+ };
322
339
  height: {
323
340
  type: (NumberConstructor | StringConstructor)[];
324
341
  default: string;
@@ -472,6 +489,7 @@ declare const textareaComponent: import("vue").DefineComponent<import("vue").Ext
472
489
  validations: {
473
490
  type: (ObjectConstructor | StringConstructor)[];
474
491
  default: {};
492
+ watch: boolean;
475
493
  };
476
494
  value: {
477
495
  default: null;
@@ -489,16 +507,20 @@ declare const textareaComponent: import("vue").DefineComponent<import("vue").Ext
489
507
  isArray(arg: any): arg is any[];
490
508
  readonly prototype: any[];
491
509
  from<T>(arrayLike: ArrayLike<T>): T[];
492
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
493
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
494
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
495
- of<T_4>(...items: T_4[]): T_4[];
510
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
511
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
512
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
513
+ of<T>(...items: T[]): T[];
514
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
515
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
496
516
  readonly [Symbol.species]: ArrayConstructor;
497
517
  })[];
498
518
  default(): never[];
519
+ watch: boolean;
499
520
  };
500
521
  component: {
501
522
  type: StringConstructor;
523
+ watch: boolean;
502
524
  };
503
525
  allowDuplicate: {
504
526
  type: (BooleanConstructor | StringConstructor)[];
@@ -523,10 +545,12 @@ declare const textareaComponent: import("vue").DefineComponent<import("vue").Ext
523
545
  directives: {
524
546
  type: ObjectConstructor;
525
547
  default(): {};
548
+ watch: boolean;
526
549
  };
527
550
  events: {
528
551
  type: ObjectConstructor;
529
552
  default(): {};
553
+ watch: boolean;
530
554
  };
531
555
  instanceObject: {
532
556
  type: ObjectConstructor;
@@ -538,6 +562,7 @@ declare const textareaComponent: import("vue").DefineComponent<import("vue").Ext
538
562
  keyMap: {
539
563
  type: ObjectConstructor;
540
564
  default(): {};
565
+ watch: boolean;
541
566
  };
542
567
  light: {
543
568
  type: (BooleanConstructor | StringConstructor)[];
@@ -549,6 +574,7 @@ declare const textareaComponent: import("vue").DefineComponent<import("vue").Ext
549
574
  };
550
575
  parent: {
551
576
  type: ObjectConstructor;
577
+ watch: boolean;
552
578
  };
553
579
  tabStop: {
554
580
  type: (BooleanConstructor | StringConstructor)[];
@@ -598,6 +624,10 @@ declare const textareaComponent: import("vue").DefineComponent<import("vue").Ext
598
624
  type: (NumberConstructor | StringConstructor)[];
599
625
  default: number;
600
626
  };
627
+ maxRows: {
628
+ type: (NumberConstructor | StringConstructor)[];
629
+ default: number;
630
+ };
601
631
  height: {
602
632
  type: (NumberConstructor | StringConstructor)[];
603
633
  default: string;
@@ -751,6 +781,7 @@ declare const textareaComponent: import("vue").DefineComponent<import("vue").Ext
751
781
  validations: {
752
782
  type: (ObjectConstructor | StringConstructor)[];
753
783
  default: {};
784
+ watch: boolean;
754
785
  };
755
786
  value: {
756
787
  default: null;
@@ -768,16 +799,20 @@ declare const textareaComponent: import("vue").DefineComponent<import("vue").Ext
768
799
  isArray(arg: any): arg is any[];
769
800
  readonly prototype: any[];
770
801
  from<T>(arrayLike: ArrayLike<T>): T[];
771
- from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
772
- from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
773
- from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
774
- of<T_4>(...items: T_4[]): T_4[];
802
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
803
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
804
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
805
+ of<T>(...items: T[]): T[];
806
+ fromAsync<T>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T | PromiseLike<T>> | ArrayLike<T | PromiseLike<T>>): Promise<T[]>;
807
+ fromAsync<T, U>(iterableOrArrayLike: AsyncIterable<T> | Iterable<T> | ArrayLike<T>, mapFn: (value: Awaited<T>, index: number) => U, thisArg?: any): Promise<Awaited<U>[]>;
775
808
  readonly [Symbol.species]: ArrayConstructor;
776
809
  })[];
777
810
  default(): never[];
811
+ watch: boolean;
778
812
  };
779
813
  component: {
780
814
  type: StringConstructor;
815
+ watch: boolean;
781
816
  };
782
817
  allowDuplicate: {
783
818
  type: (BooleanConstructor | StringConstructor)[];
@@ -802,10 +837,12 @@ declare const textareaComponent: import("vue").DefineComponent<import("vue").Ext
802
837
  directives: {
803
838
  type: ObjectConstructor;
804
839
  default(): {};
840
+ watch: boolean;
805
841
  };
806
842
  events: {
807
843
  type: ObjectConstructor;
808
844
  default(): {};
845
+ watch: boolean;
809
846
  };
810
847
  instanceObject: {
811
848
  type: ObjectConstructor;
@@ -817,6 +854,7 @@ declare const textareaComponent: import("vue").DefineComponent<import("vue").Ext
817
854
  keyMap: {
818
855
  type: ObjectConstructor;
819
856
  default(): {};
857
+ watch: boolean;
820
858
  };
821
859
  light: {
822
860
  type: (BooleanConstructor | StringConstructor)[];
@@ -828,6 +866,7 @@ declare const textareaComponent: import("vue").DefineComponent<import("vue").Ext
828
866
  };
829
867
  parent: {
830
868
  type: ObjectConstructor;
869
+ watch: boolean;
831
870
  };
832
871
  tabStop: {
833
872
  type: (BooleanConstructor | StringConstructor)[];
@@ -838,6 +877,7 @@ declare const textareaComponent: import("vue").DefineComponent<import("vue").Ext
838
877
  };
839
878
  }>> & Readonly<{}>, {
840
879
  reverse: string | boolean;
880
+ label: string;
841
881
  allowDuplicate: string | boolean;
842
882
  type: string;
843
883
  autofocus: string | boolean;
@@ -853,8 +893,8 @@ declare const textareaComponent: import("vue").DefineComponent<import("vue").Ext
853
893
  tabStop: string | boolean;
854
894
  fillHeight: string | number | boolean;
855
895
  value: null;
856
- label: string;
857
896
  mask: string;
897
+ placeholder: string;
858
898
  color: string;
859
899
  disabled: string | boolean;
860
900
  appendIcon: string;
@@ -875,7 +915,6 @@ declare const textareaComponent: import("vue").DefineComponent<import("vue").Ext
875
915
  hint: string;
876
916
  maxLength: string | number;
877
917
  persistentHint: string | boolean;
878
- placeholder: string;
879
918
  readonly: string | boolean;
880
919
  autoHintDetails: string | boolean;
881
920
  showBorder: string | boolean;
@@ -892,12 +931,13 @@ declare const textareaComponent: import("vue").DefineComponent<import("vue").Ext
892
931
  valueWithSuffix: string | boolean;
893
932
  inputMode: string;
894
933
  disableMaska: boolean;
895
- filled: string | boolean;
896
934
  resize: string | boolean;
897
935
  rowHeight: string | number;
898
936
  autoGrow: string | boolean;
899
937
  clearIcon: string;
900
938
  counter: string | number | boolean;
939
+ filled: string | boolean;
901
940
  rows: string | number;
941
+ maxRows: string | number;
902
942
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
903
943
  export default textareaComponent;