@central-design-system/components 3.0.0-alpha.0 → 3.0.0-alpha.10

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 (222) hide show
  1. package/dist/cds.css +1 -1
  2. package/dist/cds.d.ts +54 -24
  3. package/dist/cds.es.js +12619 -1577
  4. package/dist/cds.umd.js +18 -1
  5. package/dist/components/CdsBadge/index.d.ts +1 -0
  6. package/dist/components/CdsBreadcrumbs/CdsBreadcrumbs.vue.d.ts +64 -0
  7. package/dist/components/CdsBreadcrumbs/CdsBreadcrumbsItem.vue.d.ts +54 -0
  8. package/dist/components/CdsBreadcrumbs/index.d.ts +2 -0
  9. package/dist/components/CdsButton/CdsButton.vue.d.ts +28 -18
  10. package/dist/components/CdsButton/index.d.ts +1 -0
  11. package/dist/components/CdsCheckbox/CdsCheckbox.vue.d.ts +254 -0
  12. package/dist/components/CdsCheckbox/CdsCheckboxGroup.vue.d.ts +227 -0
  13. package/dist/components/CdsCheckbox/index.d.ts +2 -0
  14. package/dist/components/CdsCombobox/CdsCombobox.vue.d.ts +2457 -0
  15. package/dist/components/CdsCombobox/composable/highlight.d.ts +12 -0
  16. package/dist/components/CdsCombobox/index.d.ts +1 -0
  17. package/dist/components/CdsDatePicker/CdsDatePicker.vue.d.ts +249 -0
  18. package/dist/components/CdsDatePicker/composable/calendar.d.ts +317 -0
  19. package/dist/components/CdsDatePicker/composable/index.d.ts +1 -0
  20. package/dist/components/CdsDatePicker/index.d.ts +1 -0
  21. package/dist/components/CdsDrawer/CdsDrawer.vue.d.ts +22 -6
  22. package/dist/components/CdsDrawer/index.d.ts +1 -0
  23. package/dist/components/CdsDropdown/CdsDropdown.vue.d.ts +2413 -0
  24. package/dist/components/CdsDropdown/index.d.ts +1 -0
  25. package/dist/components/CdsEmptyState/CdsEmptyState.vue.d.ts +54 -0
  26. package/dist/components/CdsEmptyState/index.d.ts +1 -0
  27. package/dist/components/CdsForm/CdsForm.vue.d.ts +109 -0
  28. package/dist/components/CdsForm/index.d.ts +1 -0
  29. package/dist/components/CdsGrid/CdsCol.vue.d.ts +1 -1
  30. package/dist/components/CdsGrid/composable/grid.d.ts +2 -1
  31. package/dist/components/CdsGrid/index.d.ts +3 -0
  32. package/dist/components/CdsIcon/CdsIcon.vue.d.ts +4 -4
  33. package/dist/components/CdsInput/CdsInput.vue.d.ts +239 -0
  34. package/dist/components/CdsInput/CdsInputCounter.vue.d.ts +39 -0
  35. package/dist/components/CdsInput/CdsInputDescription.vue.d.ts +26 -0
  36. package/dist/components/CdsInput/CdsInputLabel.vue.d.ts +32 -0
  37. package/dist/components/CdsInput/CdsInputMessages.vue.d.ts +221 -0
  38. package/dist/components/CdsInput/index.d.ts +5 -0
  39. package/dist/components/CdsLink/CdsLink.vue.d.ts +10 -3
  40. package/dist/components/CdsLink/index.d.ts +1 -0
  41. package/dist/components/CdsList/CdsList.vue.d.ts +62 -33
  42. package/dist/components/CdsList/CdsListGroup.vue.d.ts +7 -7
  43. package/dist/components/CdsList/CdsListItem.vue.d.ts +35 -26
  44. package/dist/components/CdsList/composable/focus.d.ts +12 -0
  45. package/dist/components/CdsList/composable/index.d.ts +1 -0
  46. package/dist/components/CdsList/composable/list.d.ts +1 -1
  47. package/dist/components/CdsLoader/CdsLoader.vue.d.ts +1 -1
  48. package/dist/components/CdsMenu/CdsMenu.vue.d.ts +697 -0
  49. package/dist/components/CdsMenu/index.d.ts +1 -0
  50. package/dist/components/CdsMenu/shared.d.ts +10 -0
  51. package/dist/components/CdsOverlay/CdsOverlay.vue.d.ts +343 -0
  52. package/dist/components/CdsOverlay/composable/activator.d.ts +81 -0
  53. package/dist/components/CdsOverlay/composable/index.d.ts +6 -0
  54. package/dist/components/CdsOverlay/composable/locationStrategies.d.ts +78 -0
  55. package/dist/components/CdsOverlay/composable/scrim.d.ts +8 -0
  56. package/dist/components/CdsOverlay/composable/scrollStrategies.d.ts +33 -0
  57. package/dist/components/CdsOverlay/composable/stack.d.ts +9 -0
  58. package/dist/components/CdsOverlay/composable/teleport.d.ts +6 -0
  59. package/dist/components/CdsOverlay/index.d.ts +1 -0
  60. package/dist/components/CdsOverlay/utils/index.d.ts +2 -0
  61. package/dist/components/CdsOverlay/utils/point.d.ts +20 -0
  62. package/dist/components/CdsOverlay/utils/requestNewFrame.d.ts +5 -0
  63. package/dist/components/CdsPagination/CdsPagination.vue.d.ts +142 -0
  64. package/dist/components/CdsPagination/index.d.ts +1 -0
  65. package/dist/components/CdsRadioButton/CdsRadio.vue.d.ts +230 -0
  66. package/dist/components/CdsRadioButton/CdsRadioButton.vue.d.ts +228 -0
  67. package/dist/components/CdsRadioButton/index.d.ts +2 -0
  68. package/dist/components/CdsSelect/CdsSelect.vue.d.ts +775 -0
  69. package/dist/components/CdsSelect/index.d.ts +1 -0
  70. package/dist/components/CdsSidebar/CdsSidebar.vue.d.ts +66 -0
  71. package/dist/components/CdsSidebar/index.d.ts +1 -0
  72. package/dist/components/CdsStages/CdsStages.vue.d.ts +102 -0
  73. package/dist/components/CdsStages/index.d.ts +1 -0
  74. package/dist/components/CdsStatus/index.d.ts +1 -0
  75. package/dist/components/CdsTable/CdsTable.vue.d.ts +1147 -0
  76. package/dist/components/CdsTable/CdsTableColumn.vue.d.ts +10 -0
  77. package/dist/components/CdsTable/CdsTableColumnGroup.vue.d.ts +10 -0
  78. package/dist/components/CdsTable/components/Body/Body.d.ts +12 -0
  79. package/dist/components/CdsTable/components/Body/BodyRow.d.ts +22 -0
  80. package/dist/components/CdsTable/components/Body/ExpandedRow.d.ts +13 -0
  81. package/dist/components/CdsTable/components/Body/index.d.ts +1 -0
  82. package/dist/components/CdsTable/components/Cell/Cell.d.ts +34 -0
  83. package/dist/components/CdsTable/components/Cell/MeasureCell.d.ts +7 -0
  84. package/dist/components/CdsTable/components/Cell/index.d.ts +2 -0
  85. package/dist/components/CdsTable/components/ColGroup/ColGroup.d.ts +8 -0
  86. package/dist/components/CdsTable/components/ColGroup/index.d.ts +1 -0
  87. package/dist/components/CdsTable/components/Filter/FilterDropdown.d.ts +14 -0
  88. package/dist/components/CdsTable/components/Filter/FilterSearch.d.ts +9 -0
  89. package/dist/components/CdsTable/components/Filter/FilterWrapper.d.ts +4 -0
  90. package/dist/components/CdsTable/components/Filter/index.d.ts +1 -0
  91. package/dist/components/CdsTable/components/FixedHolder/FixedHolder.d.ts +21 -0
  92. package/dist/components/CdsTable/components/FixedHolder/index.d.ts +1 -0
  93. package/dist/components/CdsTable/components/Footer/Footer.d.ts +8 -0
  94. package/dist/components/CdsTable/components/Footer/index.d.ts +1 -0
  95. package/dist/components/CdsTable/components/Header/DragHandle.d.ts +44 -0
  96. package/dist/components/CdsTable/components/Header/Header.d.ts +11 -0
  97. package/dist/components/CdsTable/components/Header/HeaderRow.d.ts +15 -0
  98. package/dist/components/CdsTable/components/Header/index.d.ts +1 -0
  99. package/dist/components/CdsTable/components/Icons/ExpandIcon.d.ts +12 -0
  100. package/dist/components/CdsTable/components/Panel/Panel.d.ts +4 -0
  101. package/dist/components/CdsTable/components/Panel/index.d.ts +1 -0
  102. package/dist/components/CdsTable/components/ResizeObserver/ResizeObserver.d.ts +11 -0
  103. package/dist/components/CdsTable/components/ResizeObserver/index.d.ts +1 -0
  104. package/dist/components/CdsTable/components/StickyScrollbar/StickyScrollbar.d.ts +15 -0
  105. package/dist/components/CdsTable/components/StickyScrollbar/index.d.ts +1 -0
  106. package/dist/components/CdsTable/components/Table/InternalTable.d.ts +1139 -0
  107. package/dist/components/CdsTable/components/TableProvider.d.ts +1132 -0
  108. package/dist/components/CdsTable/composable/columns.d.ts +28 -0
  109. package/dist/components/CdsTable/composable/filter.d.ts +16 -0
  110. package/dist/components/CdsTable/composable/flat.d.ts +17 -0
  111. package/dist/components/CdsTable/composable/frame.d.ts +6 -0
  112. package/dist/components/CdsTable/composable/index.d.ts +10 -0
  113. package/dist/components/CdsTable/composable/pagination.d.ts +18 -0
  114. package/dist/components/CdsTable/composable/selection.d.ts +23 -0
  115. package/dist/components/CdsTable/composable/sorter.d.ts +21 -0
  116. package/dist/components/CdsTable/composable/sticky.d.ts +12 -0
  117. package/dist/components/CdsTable/composable/table.d.ts +640 -0
  118. package/dist/components/CdsTable/constants.d.ts +2 -0
  119. package/dist/components/CdsTable/context/body.d.ts +19 -0
  120. package/dist/components/CdsTable/context/expandedRow.d.ts +10 -0
  121. package/dist/components/CdsTable/context/hover.d.ts +9 -0
  122. package/dist/components/CdsTable/context/index.d.ts +8 -0
  123. package/dist/components/CdsTable/context/resize.d.ts +9 -0
  124. package/dist/components/CdsTable/context/slots.d.ts +17 -0
  125. package/dist/components/CdsTable/context/sticky.d.ts +2 -0
  126. package/dist/components/CdsTable/context/summary.d.ts +14 -0
  127. package/dist/components/CdsTable/context/table.d.ts +20 -0
  128. package/dist/components/CdsTable/index.d.ts +6 -0
  129. package/dist/components/CdsTable/interface.d.ts +323 -0
  130. package/dist/components/CdsTable/utils/column.d.ts +7 -0
  131. package/dist/components/CdsTable/utils/expand.d.ts +2 -0
  132. package/dist/components/CdsTable/utils/fixed.d.ts +13 -0
  133. package/dist/components/CdsTable/utils/index.d.ts +5 -0
  134. package/dist/components/CdsTable/utils/listener.d.ts +5 -0
  135. package/dist/components/CdsTable/utils/value.d.ts +10 -0
  136. package/dist/components/CdsTag/CdsTag.vue.d.ts +11 -6
  137. package/dist/components/CdsTag/index.d.ts +1 -0
  138. package/dist/components/CdsTextArea/CdsTextArea.vue.d.ts +782 -0
  139. package/dist/components/CdsTextArea/index.d.ts +1 -0
  140. package/dist/components/CdsTextInput/CdsTextInput.vue.d.ts +735 -0
  141. package/dist/components/CdsTextInput/index.d.ts +1 -0
  142. package/dist/components/CdsTimePicker/CdsTimePicker.vue.d.ts +144 -0
  143. package/dist/components/CdsTimePicker/composable/index.d.ts +1 -0
  144. package/dist/components/CdsTimePicker/composable/time.d.ts +134 -0
  145. package/dist/components/CdsTimePicker/index.d.ts +1 -0
  146. package/dist/components/CdsTooltip/CdsTooltip.vue.d.ts +765 -0
  147. package/dist/components/CdsTooltip/index.d.ts +1 -0
  148. package/dist/components/CdsTree/composable/index.d.ts +1 -0
  149. package/dist/components/CdsTree/composable/tree.d.ts +6 -0
  150. package/dist/components/CdsTree/interface.d.ts +60 -0
  151. package/dist/components/CdsTree/utils/conduct.d.ts +11 -0
  152. package/dist/components/CdsTree/utils/data.d.ts +36 -0
  153. package/dist/components/CdsTree/utils/index.d.ts +2 -0
  154. package/dist/components/index.d.ts +60 -1
  155. package/dist/composable/color.d.ts +4 -2
  156. package/dist/composable/datetime.d.ts +45 -0
  157. package/dist/composable/delay.d.ts +29 -0
  158. package/dist/composable/dimensions.d.ts +65 -0
  159. package/dist/composable/direction.d.ts +24 -0
  160. package/dist/composable/display.d.ts +59 -0
  161. package/dist/composable/field.d.ts +139 -0
  162. package/dist/composable/filter.d.ts +52 -0
  163. package/dist/composable/focus.d.ts +19 -9
  164. package/dist/composable/form.d.ts +128 -0
  165. package/dist/composable/hidration.d.ts +2 -0
  166. package/dist/composable/icon.d.ts +29 -4
  167. package/dist/composable/index.d.ts +24 -0
  168. package/dist/composable/input.d.ts +99 -0
  169. package/dist/composable/items.d.ts +12 -9
  170. package/dist/composable/lazy.d.ts +21 -0
  171. package/dist/composable/link.d.ts +1 -2
  172. package/dist/composable/loading.d.ts +1 -0
  173. package/dist/composable/locale.d.ts +18 -0
  174. package/dist/composable/menu.d.ts +37 -0
  175. package/dist/composable/nested/nested.d.ts +2 -2
  176. package/dist/composable/overlay.d.ts +98 -0
  177. package/dist/composable/readonly.d.ts +19 -0
  178. package/dist/composable/refs.d.ts +6 -0
  179. package/dist/composable/resizeObserver.d.ts +7 -0
  180. package/dist/composable/router.d.ts +3 -0
  181. package/dist/composable/scopeId.d.ts +5 -0
  182. package/dist/composable/select.d.ts +86 -0
  183. package/dist/composable/state.d.ts +13 -0
  184. package/dist/composable/title.d.ts +21 -0
  185. package/dist/composable/transition.d.ts +22 -0
  186. package/dist/composable/validation.d.ts +112 -0
  187. package/dist/create.d.ts +23 -0
  188. package/dist/directives/click-outside/index.d.ts +14 -0
  189. package/dist/directives/index.d.ts +1 -2
  190. package/dist/globals.d.ts +18 -0
  191. package/dist/locale/en.d.ts +3 -0
  192. package/dist/locale/index.d.ts +13 -0
  193. package/dist/locale/ru.d.ts +3 -0
  194. package/dist/transitions/createTransition.d.ts +31 -2
  195. package/dist/transitions/index.d.ts +240 -0
  196. package/dist/utils/date/date.d.ts +190 -0
  197. package/dist/utils/dom/anchor.d.ts +23 -0
  198. package/dist/utils/dom/animation.d.ts +6 -0
  199. package/dist/utils/dom/box.d.ts +26 -0
  200. package/dist/utils/dom/classNames.d.ts +1 -0
  201. package/dist/utils/dom/dom.d.ts +10 -0
  202. package/dist/utils/dom/getScrollParent.d.ts +12 -0
  203. package/dist/utils/dom/globals.d.ts +4 -0
  204. package/dist/utils/dom/scrollTo.d.ts +10 -0
  205. package/dist/utils/dom/warn.d.ts +1 -0
  206. package/dist/utils/dom/wrapperRaf.d.ts +4 -0
  207. package/dist/utils/helpers.d.ts +133 -20
  208. package/dist/utils/index.d.ts +16 -1
  209. package/dist/utils/use/cache.d.ts +4 -0
  210. package/dist/utils/use/eagerComputed.d.ts +3 -0
  211. package/dist/utils/use/pickAttrs.d.ts +11 -0
  212. package/dist/utils/use/reactiveComputed.d.ts +4 -0
  213. package/dist/utils/use/reactivePick.d.ts +8 -0
  214. package/dist/utils/use/toReactive.d.ts +8 -0
  215. package/dist/utils/use/toValue.d.ts +5 -0
  216. package/package.json +8 -5
  217. package/src/scss/mixins/layout/_shadow.scss +4 -0
  218. package/src/scss/mixins/layout/index.scss +1 -0
  219. package/src/scss/modules/_transition.scss +133 -3
  220. package/src/scss/themes/index.ts +1 -1
  221. package/src/scss/utility/lists.scss +1 -0
  222. package/dist/types/CdsOptions.d.ts +0 -3
@@ -0,0 +1,782 @@
1
+ import type { PropType } from 'vue';
2
+ export declare const componentName = "CdsTextArea";
3
+ declare const _sfc_main: import("vue").DefineComponent<{
4
+ /**
5
+ * Автоматическое увеличение высоты текстовой области
6
+ */
7
+ autoGrow: {
8
+ type: PropType<boolean>;
9
+ default: boolean;
10
+ };
11
+ /**
12
+ * Количество строк в текстовой области
13
+ */
14
+ rows: {
15
+ type: PropType<string | number>;
16
+ default: number;
17
+ validator: (value: any) => boolean;
18
+ };
19
+ /**
20
+ * Максимальное количество строк в текстовой области
21
+ */
22
+ maxRows: {
23
+ type: PropType<string | number>;
24
+ default: number;
25
+ validator: (value: any) => boolean;
26
+ };
27
+ /**
28
+ * Отключение возможности изменения размера текстовой области
29
+ */
30
+ noResize: {
31
+ type: PropType<boolean>;
32
+ default: boolean;
33
+ };
34
+ loading: {
35
+ type: PropType<boolean>;
36
+ default: boolean;
37
+ };
38
+ readonly: {
39
+ type: PropType<boolean>;
40
+ default: boolean;
41
+ };
42
+ disabled: {
43
+ type: PropType<boolean>;
44
+ default: boolean;
45
+ };
46
+ focused: {
47
+ type: PropType<boolean>;
48
+ default: boolean;
49
+ };
50
+ 'onClick:prepend': {
51
+ type: PropType<(...args: any[]) => any>;
52
+ default: undefined;
53
+ };
54
+ 'onClick:append': {
55
+ type: PropType<(...args: any[]) => any>;
56
+ default: undefined;
57
+ };
58
+ prependIcon: {
59
+ type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
60
+ default: undefined;
61
+ validator: (value: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
62
+ };
63
+ appendIcon: {
64
+ type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
65
+ default: undefined;
66
+ validator: (value: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
67
+ };
68
+ error: {
69
+ type: PropType<boolean>;
70
+ default: boolean;
71
+ };
72
+ errorMessages: {
73
+ type: PropType<string | string[]>;
74
+ default: () => never[];
75
+ };
76
+ maxErrors: {
77
+ type: PropType<string | number>;
78
+ default: number;
79
+ };
80
+ name: {
81
+ type: PropType<string | undefined>;
82
+ default: undefined;
83
+ };
84
+ rules: {
85
+ type: PropType<import("../../composable").TValidationRule[]>;
86
+ default: () => never[];
87
+ };
88
+ modelValue: {
89
+ type: PropType<any>;
90
+ default: null;
91
+ };
92
+ validateOn: {
93
+ type: PropType<"input" | "blur" | "submit">;
94
+ default: string;
95
+ available: readonly ["blur", "input", "submit"];
96
+ validator: (value: "input" | "blur" | "submit") => boolean;
97
+ };
98
+ validationValue: {
99
+ type: PropType<any>;
100
+ default: undefined;
101
+ };
102
+ hideMessages: {
103
+ type: PropType<boolean>;
104
+ default: boolean;
105
+ };
106
+ id: {
107
+ type: PropType<string>;
108
+ default: undefined;
109
+ };
110
+ label: {
111
+ type: PropType<string>;
112
+ default: undefined;
113
+ };
114
+ description: {
115
+ type: PropType<string>; /**
116
+ * Автоматическое увеличение высоты текстовой области
117
+ */
118
+ default: undefined;
119
+ };
120
+ value: {
121
+ type: PropType<any>;
122
+ default: null; /**
123
+ * Количество строк в текстовой области
124
+ */
125
+ };
126
+ messages: {
127
+ type: PropType<string | string[]>;
128
+ default: () => never[];
129
+ };
130
+ persistentMessages: {
131
+ type: PropType<boolean>;
132
+ default: boolean;
133
+ };
134
+ active: {
135
+ type: PropType<boolean>;
136
+ default: boolean;
137
+ };
138
+ autofocus: {
139
+ type: PropType<boolean>;
140
+ default: boolean;
141
+ };
142
+ prefix: {
143
+ type: PropType<string>;
144
+ default: undefined;
145
+ };
146
+ suffix: {
147
+ type: PropType<string>;
148
+ default: undefined;
149
+ };
150
+ prependInnerIcon: {
151
+ type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
152
+ default: undefined;
153
+ validator: (value: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
154
+ };
155
+ appendInnerIcon: {
156
+ type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
157
+ default: undefined; /**
158
+ * Событие очистки поля ввода
159
+ */
160
+ validator: (value: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
161
+ };
162
+ type: {
163
+ type: PropType<"number" | "text" | "password" | "email" | "tel" | "url">;
164
+ default: string;
165
+ validator: (value: "number" | "text" | "password" | "email" | "tel" | "url") => boolean;
166
+ };
167
+ placeholder: {
168
+ type: PropType<string>;
169
+ default: undefined;
170
+ };
171
+ counter: {
172
+ type: PropType<boolean>;
173
+ default: boolean;
174
+ };
175
+ limit: {
176
+ type: PropType<number>;
177
+ default: undefined;
178
+ };
179
+ clearable: {
180
+ type: PropType<boolean>;
181
+ default: boolean;
182
+ };
183
+ 'onClick:prependInner': {
184
+ type: PropType<(...args: any[]) => any>;
185
+ default: undefined;
186
+ };
187
+ 'onClick:appendInner': {
188
+ type: PropType<(...args: any[]) => any>;
189
+ default: undefined;
190
+ };
191
+ }, {
192
+ id: import("vue").ComputedRef<string>;
193
+ model: import("vue").Ref<any> & {
194
+ readonly externalValue: any;
195
+ };
196
+ fieldRef: import("vue").Ref<HTMLElement | undefined>;
197
+ textareaRef: import("vue").Ref<HTMLTextAreaElement | undefined>;
198
+ validationRef: import("vue").Ref<import("vue").DefineComponent<{
199
+ 'onClick:prepend': PropType<(...args: any[]) => any>;
200
+ 'onClick:append': PropType<(...args: any[]) => any>;
201
+ size: {
202
+ type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
203
+ default: string;
204
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
205
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
206
+ };
207
+ readonly: {
208
+ type: PropType<boolean>;
209
+ default: boolean;
210
+ };
211
+ disabled: {
212
+ type: PropType<boolean>;
213
+ default: boolean;
214
+ };
215
+ focused: {
216
+ type: PropType<boolean>;
217
+ default: boolean;
218
+ };
219
+ error: {
220
+ type: PropType<boolean>;
221
+ default: boolean;
222
+ };
223
+ errorMessages: {
224
+ type: PropType<string | string[]>;
225
+ default: () => never[];
226
+ };
227
+ maxErrors: {
228
+ type: PropType<string | number>;
229
+ default: number;
230
+ };
231
+ name: {
232
+ type: PropType<string | undefined>;
233
+ default: undefined;
234
+ };
235
+ rules: {
236
+ type: PropType<import("../../composable").TValidationRule[]>;
237
+ default: () => never[];
238
+ };
239
+ modelValue: {
240
+ type: PropType<any>;
241
+ default: null;
242
+ };
243
+ validateOn: {
244
+ type: PropType<"input" | "blur" | "submit">;
245
+ default: string;
246
+ available: readonly ["blur", "input", "submit"];
247
+ validator: (value: "input" | "blur" | "submit") => boolean;
248
+ };
249
+ validationValue: {
250
+ type: PropType<any>;
251
+ default: undefined;
252
+ };
253
+ hideMessages: {
254
+ type: PropType<boolean>;
255
+ default: boolean;
256
+ };
257
+ prependIcon: {
258
+ type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
259
+ default: undefined;
260
+ validator: (value: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
261
+ };
262
+ appendIcon: {
263
+ type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
264
+ default: undefined;
265
+ validator: (value: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
266
+ };
267
+ id: {
268
+ type: PropType<string>;
269
+ default: undefined;
270
+ };
271
+ label: {
272
+ type: PropType<string>;
273
+ default: undefined;
274
+ };
275
+ description: {
276
+ type: PropType<string>; /**
277
+ * Автоматическое увеличение высоты текстовой области
278
+ */
279
+ default: undefined;
280
+ };
281
+ value: {
282
+ type: PropType<any>;
283
+ default: null; /**
284
+ * Количество строк в текстовой области
285
+ */
286
+ };
287
+ messages: {
288
+ type: PropType<string | string[]>;
289
+ default: () => never[];
290
+ };
291
+ persistentMessages: {
292
+ type: PropType<boolean>;
293
+ default: boolean;
294
+ };
295
+ }, {
296
+ isFocused: import("vue").Ref<boolean>;
297
+ hasPrepend: import("vue").ComputedRef<boolean>;
298
+ hasAppend: import("vue").ComputedRef<boolean>;
299
+ hasDefault: import("vue").ComputedRef<boolean>;
300
+ hasMessages: import("vue").ComputedRef<number | boolean>;
301
+ slotProps: import("vue").ComputedRef<import("../../composable").IInputSlot>;
302
+ messagesId: import("vue").ComputedRef<string>;
303
+ messages: import("vue").ComputedRef<string | string[]>;
304
+ isValid: import("vue").ComputedRef<boolean | null>;
305
+ validationClasses: import("vue").ComputedRef<Record<string, boolean>>;
306
+ focusClasses: import("vue").ComputedRef<Record<string, boolean>>;
307
+ sizeClasses: import("vue").ComputedRef<string>;
308
+ reset: () => void;
309
+ resetValidation: () => void;
310
+ validate: () => Promise<string[]>;
311
+ handleClickPrepend: (event: MouseEvent) => void;
312
+ handleClickAppend: (event: MouseEvent) => void;
313
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
314
+ 'update:modelValue': (value: any) => boolean;
315
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
316
+ 'onClick:prepend': PropType<(...args: any[]) => any>;
317
+ 'onClick:append': PropType<(...args: any[]) => any>;
318
+ size: {
319
+ type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
320
+ default: string;
321
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
322
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
323
+ };
324
+ readonly: {
325
+ type: PropType<boolean>;
326
+ default: boolean;
327
+ };
328
+ disabled: {
329
+ type: PropType<boolean>;
330
+ default: boolean;
331
+ };
332
+ focused: {
333
+ type: PropType<boolean>;
334
+ default: boolean;
335
+ };
336
+ error: {
337
+ type: PropType<boolean>;
338
+ default: boolean;
339
+ };
340
+ errorMessages: {
341
+ type: PropType<string | string[]>;
342
+ default: () => never[];
343
+ };
344
+ maxErrors: {
345
+ type: PropType<string | number>;
346
+ default: number;
347
+ };
348
+ name: {
349
+ type: PropType<string | undefined>;
350
+ default: undefined;
351
+ };
352
+ rules: {
353
+ type: PropType<import("../../composable").TValidationRule[]>;
354
+ default: () => never[];
355
+ };
356
+ modelValue: {
357
+ type: PropType<any>;
358
+ default: null;
359
+ };
360
+ validateOn: {
361
+ type: PropType<"input" | "blur" | "submit">;
362
+ default: string;
363
+ available: readonly ["blur", "input", "submit"];
364
+ validator: (value: "input" | "blur" | "submit") => boolean;
365
+ };
366
+ validationValue: {
367
+ type: PropType<any>;
368
+ default: undefined;
369
+ };
370
+ hideMessages: {
371
+ type: PropType<boolean>;
372
+ default: boolean;
373
+ };
374
+ prependIcon: {
375
+ type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
376
+ default: undefined;
377
+ validator: (value: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
378
+ };
379
+ appendIcon: {
380
+ type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
381
+ default: undefined;
382
+ validator: (value: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
383
+ };
384
+ id: {
385
+ type: PropType<string>;
386
+ default: undefined;
387
+ };
388
+ label: {
389
+ type: PropType<string>;
390
+ default: undefined;
391
+ };
392
+ description: {
393
+ type: PropType<string>; /**
394
+ * Автоматическое увеличение высоты текстовой области
395
+ */
396
+ default: undefined;
397
+ };
398
+ value: {
399
+ type: PropType<any>;
400
+ default: null; /**
401
+ * Количество строк в текстовой области
402
+ */
403
+ };
404
+ messages: {
405
+ type: PropType<string | string[]>;
406
+ default: () => never[];
407
+ };
408
+ persistentMessages: {
409
+ type: PropType<boolean>;
410
+ default: boolean;
411
+ };
412
+ }>> & {
413
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
414
+ }, {
415
+ name: string | undefined;
416
+ description: string;
417
+ disabled: boolean;
418
+ value: any;
419
+ size: "xs" | "sm" | "md" | "lg" | "xl";
420
+ error: boolean;
421
+ prependIcon: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
422
+ appendIcon: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
423
+ readonly: boolean;
424
+ messages: string | string[];
425
+ id: string;
426
+ label: string;
427
+ persistentMessages: boolean;
428
+ errorMessages: string | string[];
429
+ maxErrors: string | number;
430
+ rules: import("../../composable").TValidationRule[];
431
+ modelValue: any;
432
+ validateOn: "input" | "blur" | "submit";
433
+ validationValue: any;
434
+ hideMessages: boolean;
435
+ focused: boolean;
436
+ }> | undefined>;
437
+ sizerRef: import("vue").Ref<HTMLTextAreaElement | undefined>;
438
+ isFocused: import("vue").Ref<boolean>;
439
+ rootAttrs: import("vue").Ref<{}>;
440
+ inputAttrs: import("vue").Ref<{}>;
441
+ inputProps: import("vue").Ref<{
442
+ readonly type?: "number" | "text" | "password" | "email" | "tel" | "url" | undefined;
443
+ readonly disabled?: boolean | undefined;
444
+ readonly value?: any;
445
+ readonly error?: boolean | undefined;
446
+ readonly readonly?: boolean | undefined;
447
+ readonly loading?: boolean | undefined;
448
+ readonly messages?: string | string[] | undefined;
449
+ readonly active?: boolean | undefined;
450
+ readonly persistentMessages?: boolean | undefined;
451
+ readonly errorMessages?: string | string[] | undefined;
452
+ readonly maxErrors?: string | number | undefined;
453
+ readonly rules?: (import("../../composable").TValidationResult | ((value: any) => import("../../composable").TValidationResult) | ((value: any) => PromiseLike<import("../../composable").TValidationResult>) | {
454
+ then: <TResult1 = import("../../composable").TValidationResult, TResult2 = never>(onfulfilled?: ((value: import("../../composable").TValidationResult) => TResult1 | PromiseLike<TResult1>) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | null | undefined) => PromiseLike<TResult1 | TResult2>;
455
+ })[] | undefined;
456
+ readonly modelValue?: any;
457
+ readonly validateOn?: "input" | "blur" | "submit" | undefined;
458
+ readonly hideMessages?: boolean | undefined;
459
+ readonly focused?: boolean | undefined;
460
+ readonly autofocus?: boolean | undefined;
461
+ readonly counter?: boolean | undefined;
462
+ readonly clearable?: boolean | undefined;
463
+ readonly autoGrow?: boolean | undefined;
464
+ readonly rows?: string | number | undefined;
465
+ readonly maxRows?: string | number | undefined;
466
+ readonly noResize?: boolean | undefined;
467
+ readonly name?: string | undefined;
468
+ readonly description?: string | undefined;
469
+ readonly prependIcon?: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined;
470
+ readonly appendIcon?: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined;
471
+ readonly id?: string | undefined;
472
+ readonly label?: string | undefined;
473
+ readonly validationValue?: any;
474
+ readonly 'onClick:prepend'?: (((...args: any[]) => any) & ((event: MouseEvent) => any)) | undefined;
475
+ readonly 'onClick:append'?: (((...args: any[]) => any) & ((event: MouseEvent) => any)) | undefined;
476
+ readonly prefix?: string | undefined;
477
+ readonly suffix?: string | undefined;
478
+ readonly prependInnerIcon?: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined;
479
+ readonly appendInnerIcon?: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined;
480
+ readonly placeholder?: string | undefined;
481
+ readonly limit?: number | undefined;
482
+ readonly 'onClick:prependInner'?: (((...args: any[]) => any) & ((event: MouseEvent) => any)) | undefined;
483
+ readonly 'onClick:appendInner'?: (((...args: any[]) => any) & ((event: MouseEvent) => any)) | undefined;
484
+ readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
485
+ readonly "onUpdate:focused"?: ((value: boolean) => any) | undefined;
486
+ readonly "onClick:clear"?: ((event: MouseEvent) => any) | undefined;
487
+ }>;
488
+ hasLabel: import("vue").ComputedRef<boolean>;
489
+ hasDescription: import("vue").ComputedRef<boolean>;
490
+ hasPrepend: import("vue").ComputedRef<boolean>;
491
+ hasAppend: import("vue").ComputedRef<boolean>;
492
+ hasPrependInnerIcon: import("vue").ComputedRef<boolean>;
493
+ hasAppendInnerIcon: import("vue").ComputedRef<boolean>;
494
+ hasLoading: import("vue").ComputedRef<boolean>;
495
+ hasClear: import("vue").ComputedRef<boolean>;
496
+ counterValue: import("vue").ComputedRef<any>;
497
+ iconClasses: import("vue").ComputedRef<Record<string, boolean>>;
498
+ textareaClasses: import("vue").ComputedRef<{
499
+ 'cds-text-area--has-prefix': boolean;
500
+ 'cds-text-area--has-suffix': boolean;
501
+ 'cds-text-area--disabled-resize': boolean;
502
+ 'cds-text-area--auto-grow': boolean;
503
+ }>;
504
+ fieldClasses: import("vue").ComputedRef<Record<string, boolean>>;
505
+ loadingClasses: import("vue").ComputedRef<string | undefined>;
506
+ textareaHeight: import("vue").Ref<string>;
507
+ onBlur: () => void;
508
+ onFocus: () => void;
509
+ onInput: (event: Event) => void;
510
+ onClear: (event: MouseEvent) => void;
511
+ handleClickPrependInner: (event: MouseEvent) => void;
512
+ handleClickAppendInner: (event: MouseEvent) => void;
513
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
514
+ /**
515
+ * Событие при фокусе
516
+ * @type { boolean }
517
+ */
518
+ 'update:focused': (value: boolean) => true;
519
+ /**
520
+ * Событие при изменении значения (v-model)
521
+ * @type { string }
522
+ */
523
+ 'update:modelValue': (value: string) => true;
524
+ /**
525
+ * Событие очистки поля ввода
526
+ */
527
+ 'click:clear': (event: MouseEvent) => true;
528
+ /**
529
+ * Событие клика по иконке перед значением поля
530
+ */
531
+ 'click:prepend': (event: MouseEvent) => true;
532
+ /**
533
+ * Событие клика по иконке после значения поля
534
+ */
535
+ 'click:append': (event: MouseEvent) => true;
536
+ /**
537
+ * Событие клика по иконке внутри элемента перед значением поля
538
+ */
539
+ 'click:prependInner': (event: MouseEvent) => true;
540
+ /**
541
+ * Событие клика по иконке внутри элемента после значения поля
542
+ */
543
+ 'click:appendInner': (event: MouseEvent) => true;
544
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
545
+ /**
546
+ * Автоматическое увеличение высоты текстовой области
547
+ */
548
+ autoGrow: {
549
+ type: PropType<boolean>;
550
+ default: boolean;
551
+ };
552
+ /**
553
+ * Количество строк в текстовой области
554
+ */
555
+ rows: {
556
+ type: PropType<string | number>;
557
+ default: number;
558
+ validator: (value: any) => boolean;
559
+ };
560
+ /**
561
+ * Максимальное количество строк в текстовой области
562
+ */
563
+ maxRows: {
564
+ type: PropType<string | number>;
565
+ default: number;
566
+ validator: (value: any) => boolean;
567
+ };
568
+ /**
569
+ * Отключение возможности изменения размера текстовой области
570
+ */
571
+ noResize: {
572
+ type: PropType<boolean>;
573
+ default: boolean;
574
+ };
575
+ loading: {
576
+ type: PropType<boolean>;
577
+ default: boolean;
578
+ };
579
+ readonly: {
580
+ type: PropType<boolean>;
581
+ default: boolean;
582
+ };
583
+ disabled: {
584
+ type: PropType<boolean>;
585
+ default: boolean;
586
+ };
587
+ focused: {
588
+ type: PropType<boolean>;
589
+ default: boolean;
590
+ };
591
+ 'onClick:prepend': {
592
+ type: PropType<(...args: any[]) => any>;
593
+ default: undefined;
594
+ };
595
+ 'onClick:append': {
596
+ type: PropType<(...args: any[]) => any>;
597
+ default: undefined;
598
+ };
599
+ prependIcon: {
600
+ type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
601
+ default: undefined;
602
+ validator: (value: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
603
+ };
604
+ appendIcon: {
605
+ type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
606
+ default: undefined;
607
+ validator: (value: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
608
+ };
609
+ error: {
610
+ type: PropType<boolean>;
611
+ default: boolean;
612
+ };
613
+ errorMessages: {
614
+ type: PropType<string | string[]>;
615
+ default: () => never[];
616
+ };
617
+ maxErrors: {
618
+ type: PropType<string | number>;
619
+ default: number;
620
+ };
621
+ name: {
622
+ type: PropType<string | undefined>;
623
+ default: undefined;
624
+ };
625
+ rules: {
626
+ type: PropType<import("../../composable").TValidationRule[]>;
627
+ default: () => never[];
628
+ };
629
+ modelValue: {
630
+ type: PropType<any>;
631
+ default: null;
632
+ };
633
+ validateOn: {
634
+ type: PropType<"input" | "blur" | "submit">;
635
+ default: string;
636
+ available: readonly ["blur", "input", "submit"];
637
+ validator: (value: "input" | "blur" | "submit") => boolean;
638
+ };
639
+ validationValue: {
640
+ type: PropType<any>;
641
+ default: undefined;
642
+ };
643
+ hideMessages: {
644
+ type: PropType<boolean>;
645
+ default: boolean;
646
+ };
647
+ id: {
648
+ type: PropType<string>;
649
+ default: undefined;
650
+ };
651
+ label: {
652
+ type: PropType<string>;
653
+ default: undefined;
654
+ };
655
+ description: {
656
+ type: PropType<string>; /**
657
+ * Автоматическое увеличение высоты текстовой области
658
+ */
659
+ default: undefined;
660
+ };
661
+ value: {
662
+ type: PropType<any>;
663
+ default: null; /**
664
+ * Количество строк в текстовой области
665
+ */
666
+ };
667
+ messages: {
668
+ type: PropType<string | string[]>;
669
+ default: () => never[];
670
+ };
671
+ persistentMessages: {
672
+ type: PropType<boolean>;
673
+ default: boolean;
674
+ };
675
+ active: {
676
+ type: PropType<boolean>;
677
+ default: boolean;
678
+ };
679
+ autofocus: {
680
+ type: PropType<boolean>;
681
+ default: boolean;
682
+ };
683
+ prefix: {
684
+ type: PropType<string>;
685
+ default: undefined;
686
+ };
687
+ suffix: {
688
+ type: PropType<string>;
689
+ default: undefined;
690
+ };
691
+ prependInnerIcon: {
692
+ type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
693
+ default: undefined;
694
+ validator: (value: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
695
+ };
696
+ appendInnerIcon: {
697
+ type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
698
+ default: undefined; /**
699
+ * Событие очистки поля ввода
700
+ */
701
+ validator: (value: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
702
+ };
703
+ type: {
704
+ type: PropType<"number" | "text" | "password" | "email" | "tel" | "url">;
705
+ default: string;
706
+ validator: (value: "number" | "text" | "password" | "email" | "tel" | "url") => boolean;
707
+ };
708
+ placeholder: {
709
+ type: PropType<string>;
710
+ default: undefined;
711
+ };
712
+ counter: {
713
+ type: PropType<boolean>;
714
+ default: boolean;
715
+ };
716
+ limit: {
717
+ type: PropType<number>;
718
+ default: undefined;
719
+ };
720
+ clearable: {
721
+ type: PropType<boolean>;
722
+ default: boolean;
723
+ };
724
+ 'onClick:prependInner': {
725
+ type: PropType<(...args: any[]) => any>;
726
+ default: undefined;
727
+ };
728
+ 'onClick:appendInner': {
729
+ type: PropType<(...args: any[]) => any>;
730
+ default: undefined;
731
+ };
732
+ }>> & {
733
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
734
+ "onClick:prepend"?: ((event: MouseEvent) => any) | undefined;
735
+ "onClick:append"?: ((event: MouseEvent) => any) | undefined;
736
+ "onUpdate:focused"?: ((value: boolean) => any) | undefined;
737
+ "onClick:prependInner"?: ((event: MouseEvent) => any) | undefined;
738
+ "onClick:appendInner"?: ((event: MouseEvent) => any) | undefined;
739
+ "onClick:clear"?: ((event: MouseEvent) => any) | undefined;
740
+ }, {
741
+ name: string | undefined;
742
+ type: "number" | "text" | "password" | "email" | "tel" | "url";
743
+ description: string;
744
+ disabled: boolean;
745
+ value: any;
746
+ error: boolean;
747
+ prependIcon: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
748
+ appendIcon: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
749
+ readonly: boolean;
750
+ loading: boolean;
751
+ messages: string | string[];
752
+ active: boolean;
753
+ id: string;
754
+ label: string;
755
+ persistentMessages: boolean;
756
+ errorMessages: string | string[];
757
+ maxErrors: string | number;
758
+ rules: import("../../composable").TValidationRule[];
759
+ modelValue: any;
760
+ validateOn: "input" | "blur" | "submit";
761
+ validationValue: any;
762
+ hideMessages: boolean;
763
+ focused: boolean;
764
+ 'onClick:prepend': (...args: any[]) => any;
765
+ 'onClick:append': (...args: any[]) => any;
766
+ autofocus: boolean;
767
+ prefix: string;
768
+ suffix: string;
769
+ prependInnerIcon: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
770
+ appendInnerIcon: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
771
+ placeholder: string;
772
+ counter: boolean;
773
+ limit: number;
774
+ clearable: boolean;
775
+ 'onClick:prependInner': (...args: any[]) => any;
776
+ 'onClick:appendInner': (...args: any[]) => any;
777
+ autoGrow: boolean;
778
+ rows: string | number;
779
+ maxRows: string | number;
780
+ noResize: boolean;
781
+ }>;
782
+ export default _sfc_main;