@central-design-system/components 3.0.0-alpha.9 → 3.0.0-beta.2

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 (264) hide show
  1. package/dist/cds.css +1 -1
  2. package/dist/cds.d.ts +31 -1
  3. package/dist/cds.es.js +13731 -5362
  4. package/dist/cds.umd.js +18 -1
  5. package/dist/components/CdsAutocomplete/CdsAutocomplete.vue.d.ts +963 -0
  6. package/dist/components/CdsAutocomplete/index.d.ts +1 -0
  7. package/dist/components/CdsBadge/CdsBadge.vue.d.ts +4 -7
  8. package/dist/components/CdsBadge/index.d.ts +1 -0
  9. package/dist/components/CdsBreadcrumbs/CdsBreadcrumbs.vue.d.ts +1 -5
  10. package/dist/components/CdsBreadcrumbs/CdsBreadcrumbsItem.vue.d.ts +1 -6
  11. package/dist/components/CdsButton/CdsButton.vue.d.ts +84 -33
  12. package/dist/components/CdsCheckbox/CdsCheckbox.vue.d.ts +10 -56
  13. package/dist/components/CdsCheckbox/CdsCheckboxGroup.vue.d.ts +8 -8
  14. package/dist/components/CdsCombobox/CdsCombobox.vue.d.ts +687 -588
  15. package/dist/components/CdsCombobox/composable/highlight.d.ts +1 -1
  16. package/dist/components/CdsCombobox/composable/index.d.ts +1 -0
  17. package/dist/components/CdsCombobox/index.d.ts +1 -0
  18. package/dist/components/CdsContainer/CdsContainer.vue.d.ts +205 -0
  19. package/dist/components/CdsContainer/CdsContainerItem.vue.d.ts +123 -0
  20. package/dist/components/CdsContainer/context.d.ts +15 -0
  21. package/dist/components/CdsContainer/index.d.ts +2 -0
  22. package/dist/components/CdsDatePicker/CdsDatePicker.vue.d.ts +13 -46
  23. package/dist/components/CdsDatePicker/index.d.ts +1 -0
  24. package/dist/components/CdsDrawer/CdsDrawer.vue.d.ts +8 -3
  25. package/dist/components/CdsDrawer/index.d.ts +1 -0
  26. package/dist/components/CdsDropdown/CdsDropdown.vue.d.ts +668 -618
  27. package/dist/components/CdsDropdown/composable/index.d.ts +1 -0
  28. package/dist/components/CdsDropdown/composable/scrolling.d.ts +7 -0
  29. package/dist/components/CdsDropdown/index.d.ts +1 -0
  30. package/dist/components/CdsEmptyState/CdsEmptyState.vue.d.ts +4 -4
  31. package/dist/components/CdsEmptyState/index.d.ts +1 -0
  32. package/dist/components/CdsExpandablePanel/CdsExpandablePanel.vue.d.ts +119 -0
  33. package/dist/components/CdsExpandablePanel/CdsExpandablePanelContent.vue.d.ts +15 -0
  34. package/dist/components/CdsExpandablePanel/CdsExpandablePanelTitle.vue.d.ts +55 -0
  35. package/dist/components/CdsExpandablePanel/CdsExpandablePanels.vue.d.ts +115 -0
  36. package/dist/components/CdsExpandablePanel/composable/expandablePanelTitleProps.d.ts +31 -0
  37. package/dist/components/CdsExpandablePanel/composable/expandablePanels.d.ts +16 -0
  38. package/dist/components/CdsExpandablePanel/composable/index.d.ts +1 -0
  39. package/dist/components/CdsExpandablePanel/index.d.ts +4 -0
  40. package/dist/components/CdsFooter/CdsFooter.vue.d.ts +75 -0
  41. package/dist/components/CdsFooter/index.d.ts +1 -0
  42. package/dist/components/CdsForm/CdsForm.vue.d.ts +2 -29
  43. package/dist/components/CdsForm/index.d.ts +1 -0
  44. package/dist/components/CdsGrid/index.d.ts +3 -0
  45. package/dist/components/CdsHeader/CdsHeader.vue.d.ts +75 -0
  46. package/dist/components/CdsHeader/index.d.ts +1 -0
  47. package/dist/components/CdsIcon/CdsIcon.vue.d.ts +3 -3
  48. package/dist/components/CdsInput/CdsInput.vue.d.ts +24 -37
  49. package/dist/components/CdsInput/CdsInputDescription.vue.d.ts +1 -1
  50. package/dist/components/CdsInput/CdsInputLabel.vue.d.ts +1 -1
  51. package/dist/components/CdsInput/CdsInputMessages.vue.d.ts +1 -1
  52. package/dist/components/CdsLayout/CdsLayout.vue.d.ts +36 -0
  53. package/dist/components/CdsLayout/components/LayoutResizeObserver.d.ts +19 -0
  54. package/dist/components/CdsLayout/components/LayoutScrollObserver.d.ts +55 -0
  55. package/dist/components/CdsLayout/components/index.d.ts +2 -0
  56. package/dist/components/CdsLayout/context.d.ts +33 -0
  57. package/dist/components/CdsLayout/index.d.ts +1 -0
  58. package/dist/components/CdsLink/CdsLink.vue.d.ts +1 -1
  59. package/dist/components/CdsList/CdsList.vue.d.ts +21 -11
  60. package/dist/components/CdsList/CdsListGroup.vue.d.ts +8 -8
  61. package/dist/components/CdsList/CdsListItem.vue.d.ts +19 -31
  62. package/dist/components/CdsLoader/CdsLoader.vue.d.ts +1 -1
  63. package/dist/components/CdsMain/CdsMain.vue.d.ts +3 -0
  64. package/dist/components/CdsMain/context.d.ts +4 -0
  65. package/dist/components/CdsMain/index.d.ts +1 -0
  66. package/dist/components/CdsMenu/CdsMenu.vue.d.ts +14 -331
  67. package/dist/components/CdsModal/CdsModal.vue.d.ts +447 -0
  68. package/dist/components/CdsModal/index.d.ts +1 -0
  69. package/dist/components/CdsNotification/CdsNotification.vue.d.ts +155 -0
  70. package/dist/components/CdsNotification/CdsNotificationAlert.vue.d.ts +454 -0
  71. package/dist/components/CdsNotification/composable/index.d.ts +1 -0
  72. package/dist/components/CdsNotification/composable/notification.d.ts +64 -0
  73. package/dist/components/CdsNotification/index.d.ts +2 -0
  74. package/dist/components/CdsOverlay/CdsOverlay.vue.d.ts +14 -11
  75. package/dist/components/CdsOverlay/composable/locationStrategies.d.ts +18 -0
  76. package/dist/components/CdsPage/CdsPage.vue.d.ts +25 -0
  77. package/dist/components/CdsPage/index.d.ts +1 -0
  78. package/dist/components/CdsPagination/CdsPagination.vue.d.ts +3 -8
  79. package/dist/components/CdsPagination/index.d.ts +1 -0
  80. package/dist/components/CdsProgress/CdsProgress.vue.d.ts +145 -0
  81. package/dist/components/CdsProgress/index.d.ts +1 -0
  82. package/dist/components/CdsRadioButton/CdsRadio.vue.d.ts +222 -8
  83. package/dist/components/CdsRadioButton/CdsRadioButton.vue.d.ts +8 -8
  84. package/dist/components/CdsRadioButton/index.d.ts +2 -0
  85. package/dist/components/CdsSelect/CdsSelect.vue.d.ts +121 -115
  86. package/dist/components/CdsSelect/index.d.ts +1 -0
  87. package/dist/components/CdsSidebar/CdsSidebar.vue.d.ts +8 -2
  88. package/dist/components/CdsSidebar/index.d.ts +1 -0
  89. package/dist/components/CdsSkeletonLoader/CdsSkeletonLoader.vue.d.ts +121 -0
  90. package/dist/components/CdsSkeletonLoader/index.d.ts +1 -0
  91. package/dist/components/CdsSkeletonLoader/types.d.ts +37 -0
  92. package/dist/components/CdsSlideGroup/CdsSlideGroup.vue.d.ts +162 -0
  93. package/dist/components/CdsSlideGroup/CdsSlideGroupItem.vue.d.ts +43 -0
  94. package/dist/components/CdsSlideGroup/index.d.ts +2 -0
  95. package/dist/components/CdsSlideGroup/utils/calculate.d.ts +14 -0
  96. package/dist/components/CdsSlideGroup/utils/index.d.ts +1 -0
  97. package/dist/components/CdsStages/index.d.ts +1 -0
  98. package/dist/components/CdsStatus/index.d.ts +1 -0
  99. package/dist/components/CdsSteps/CdsSteps.vue.d.ts +163 -0
  100. package/dist/components/CdsSteps/CdsStepsItem.vue.d.ts +84 -0
  101. package/dist/components/CdsSteps/context.d.ts +11 -0
  102. package/dist/components/CdsSteps/index.d.ts +2 -0
  103. package/dist/components/CdsSteps/svg/_CdsStepCurrentIcon.vue.d.ts +2 -0
  104. package/dist/components/CdsSteps/svg/_CdsStepsIconIncomplete.vue.d.ts +2 -0
  105. package/dist/components/CdsTable/CdsTable.vue.d.ts +1162 -0
  106. package/dist/components/CdsTable/CdsTableColumn.vue.d.ts +10 -0
  107. package/dist/components/CdsTable/CdsTableColumnGroup.vue.d.ts +10 -0
  108. package/dist/components/CdsTable/components/Body/Body.d.ts +12 -0
  109. package/dist/components/CdsTable/components/Body/BodyRow.d.ts +22 -0
  110. package/dist/components/CdsTable/components/Body/ExpandedRow.d.ts +13 -0
  111. package/dist/components/CdsTable/components/Body/index.d.ts +1 -0
  112. package/dist/components/CdsTable/components/Cell/Cell.d.ts +34 -0
  113. package/dist/components/CdsTable/components/Cell/MeasureCell.d.ts +7 -0
  114. package/dist/components/CdsTable/components/Cell/index.d.ts +2 -0
  115. package/dist/components/CdsTable/components/ColGroup/ColGroup.d.ts +8 -0
  116. package/dist/components/CdsTable/components/ColGroup/index.d.ts +1 -0
  117. package/dist/components/CdsTable/components/Filter/FilterDropdown.d.ts +14 -0
  118. package/dist/components/CdsTable/components/Filter/FilterSearch.d.ts +9 -0
  119. package/dist/components/CdsTable/components/Filter/FilterWrapper.d.ts +4 -0
  120. package/dist/components/CdsTable/components/Filter/index.d.ts +1 -0
  121. package/dist/components/CdsTable/components/FixedHolder/FixedHolder.d.ts +21 -0
  122. package/dist/components/CdsTable/components/FixedHolder/index.d.ts +1 -0
  123. package/dist/components/CdsTable/components/Footer/Footer.d.ts +8 -0
  124. package/dist/components/CdsTable/components/Footer/index.d.ts +1 -0
  125. package/dist/components/CdsTable/components/Header/DragHandle.d.ts +44 -0
  126. package/dist/components/CdsTable/components/Header/Header.d.ts +11 -0
  127. package/dist/components/CdsTable/components/Header/HeaderRow.d.ts +15 -0
  128. package/dist/components/CdsTable/components/Header/index.d.ts +1 -0
  129. package/dist/components/CdsTable/components/Icons/ExpandIcon.d.ts +12 -0
  130. package/dist/components/CdsTable/components/Panel/Panel.d.ts +4 -0
  131. package/dist/components/CdsTable/components/Panel/index.d.ts +1 -0
  132. package/dist/components/CdsTable/components/ResizeObserver/ResizeObserver.d.ts +11 -0
  133. package/dist/components/CdsTable/components/ResizeObserver/index.d.ts +1 -0
  134. package/dist/components/CdsTable/components/StickyScrollbar/StickyScrollbar.d.ts +15 -0
  135. package/dist/components/CdsTable/components/StickyScrollbar/index.d.ts +1 -0
  136. package/dist/components/CdsTable/components/Table/InternalTable.d.ts +1154 -0
  137. package/dist/components/CdsTable/components/TableProvider.d.ts +1147 -0
  138. package/dist/components/CdsTable/composable/columns.d.ts +28 -0
  139. package/dist/components/CdsTable/composable/filter.d.ts +16 -0
  140. package/dist/components/CdsTable/composable/flat.d.ts +17 -0
  141. package/dist/components/CdsTable/composable/frame.d.ts +6 -0
  142. package/dist/components/CdsTable/composable/index.d.ts +10 -0
  143. package/dist/components/CdsTable/composable/pagination.d.ts +18 -0
  144. package/dist/components/CdsTable/composable/selection.d.ts +23 -0
  145. package/dist/components/CdsTable/composable/sorter.d.ts +21 -0
  146. package/dist/components/CdsTable/composable/sticky.d.ts +12 -0
  147. package/dist/components/CdsTable/composable/table.d.ts +649 -0
  148. package/dist/components/CdsTable/constants.d.ts +2 -0
  149. package/dist/components/CdsTable/context/body.d.ts +19 -0
  150. package/dist/components/CdsTable/context/expandedRow.d.ts +10 -0
  151. package/dist/components/CdsTable/context/hover.d.ts +9 -0
  152. package/dist/components/CdsTable/context/index.d.ts +8 -0
  153. package/dist/components/CdsTable/context/resize.d.ts +9 -0
  154. package/dist/components/CdsTable/context/slots.d.ts +17 -0
  155. package/dist/components/CdsTable/context/sticky.d.ts +2 -0
  156. package/dist/components/CdsTable/context/summary.d.ts +14 -0
  157. package/dist/components/CdsTable/context/table.d.ts +20 -0
  158. package/dist/components/CdsTable/index.d.ts +6 -0
  159. package/dist/components/CdsTable/interface.d.ts +323 -0
  160. package/dist/components/CdsTable/utils/column.d.ts +7 -0
  161. package/dist/components/CdsTable/utils/expand.d.ts +2 -0
  162. package/dist/components/CdsTable/utils/fixed.d.ts +13 -0
  163. package/dist/components/CdsTable/utils/index.d.ts +5 -0
  164. package/dist/components/CdsTable/utils/listener.d.ts +5 -0
  165. package/dist/components/CdsTable/utils/value.d.ts +10 -0
  166. package/dist/components/CdsTabs/CdsTab.vue.d.ts +132 -0
  167. package/dist/components/CdsTabs/CdsTabs.vue.d.ts +225 -0
  168. package/dist/components/CdsTabs/index.d.ts +2 -0
  169. package/dist/components/CdsTabs/shared.d.ts +3 -0
  170. package/dist/components/CdsTabs/utils/helpers.d.ts +2 -0
  171. package/dist/components/CdsTabs/utils/index.d.ts +1 -0
  172. package/dist/components/CdsTag/CdsTag.vue.d.ts +2 -2
  173. package/dist/components/CdsTextArea/CdsTextArea.vue.d.ts +102 -104
  174. package/dist/components/CdsTextArea/index.d.ts +1 -0
  175. package/dist/components/CdsTextInput/CdsTextInput.vue.d.ts +137 -139
  176. package/dist/components/CdsTimePicker/CdsTimePicker.vue.d.ts +10 -37
  177. package/dist/components/CdsTimePicker/index.d.ts +1 -0
  178. package/dist/components/CdsToggle/CdsToggle.vue.d.ts +192 -0
  179. package/dist/components/CdsToggle/index.d.ts +1 -0
  180. package/dist/components/CdsToolbar/CdsToolbar.vue.d.ts +45 -0
  181. package/dist/components/CdsToolbar/CdsToolbarTitle.vue.d.ts +18 -0
  182. package/dist/components/CdsToolbar/index.d.ts +2 -0
  183. package/dist/components/CdsTooltip/CdsTooltip.vue.d.ts +15 -331
  184. package/dist/components/CdsTooltip/index.d.ts +1 -0
  185. package/dist/components/CdsTree/composable/index.d.ts +1 -0
  186. package/dist/components/CdsTree/composable/tree.d.ts +6 -0
  187. package/dist/components/CdsTree/interface.d.ts +60 -0
  188. package/dist/components/CdsTree/utils/conduct.d.ts +11 -0
  189. package/dist/components/CdsTree/utils/data.d.ts +36 -0
  190. package/dist/components/CdsTree/utils/index.d.ts +2 -0
  191. package/dist/components/CdsUploader/CdsUploader.vue.d.ts +525 -0
  192. package/dist/components/CdsUploader/components/AjaxUploader.d.ts +342 -0
  193. package/dist/components/CdsUploader/components/UploadList/ListItem.d.ts +400 -0
  194. package/dist/components/CdsUploader/components/UploadList/UploadList.d.ts +403 -0
  195. package/dist/components/CdsUploader/components/index.d.ts +2 -0
  196. package/dist/components/CdsUploader/composable/index.d.ts +2 -0
  197. package/dist/components/CdsUploader/composable/request.d.ts +4 -0
  198. package/dist/components/CdsUploader/composable/upload.d.ts +360 -0
  199. package/dist/components/CdsUploader/index.d.ts +1 -0
  200. package/dist/components/CdsUploader/interface.d.ts +98 -0
  201. package/dist/components/CdsUploader/utils/accept.d.ts +2 -0
  202. package/dist/components/CdsUploader/utils/helpers.d.ts +5 -0
  203. package/dist/components/CdsUploader/utils/index.d.ts +4 -0
  204. package/dist/components/CdsUploader/utils/traverseFileTree.d.ts +14 -0
  205. package/dist/components/CdsUploader/utils/uid.d.ts +1 -0
  206. package/dist/components/index.d.ts +79 -1
  207. package/dist/composable/align.d.ts +17 -0
  208. package/dist/composable/datetime.d.ts +2 -18
  209. package/dist/composable/display.d.ts +3 -0
  210. package/dist/composable/field.d.ts +19 -3
  211. package/dist/composable/filter.d.ts +2 -2
  212. package/dist/composable/group.d.ts +139 -0
  213. package/dist/composable/icon.d.ts +2 -2
  214. package/dist/composable/index.d.ts +8 -0
  215. package/dist/composable/input.d.ts +1 -1
  216. package/dist/composable/intersectionObserver.d.ts +4 -0
  217. package/dist/composable/items.d.ts +6 -0
  218. package/dist/composable/layout.d.ts +79 -0
  219. package/dist/composable/locale.d.ts +18 -0
  220. package/dist/composable/nested/nested.d.ts +1 -2
  221. package/dist/composable/overlay.d.ts +8 -0
  222. package/dist/composable/resizeObserver.d.ts +1 -1
  223. package/dist/composable/select.d.ts +100 -15
  224. package/dist/composable/ssrBoot.d.ts +6 -0
  225. package/dist/composable/state.d.ts +13 -0
  226. package/dist/composable/status.d.ts +5 -1
  227. package/dist/composable/text.d.ts +3 -1
  228. package/dist/composable/variant.d.ts +26 -0
  229. package/dist/create.d.ts +2 -0
  230. package/dist/directives/index.d.ts +1 -0
  231. package/dist/directives/touch/index.d.ts +46 -0
  232. package/dist/globals.d.ts +5 -0
  233. package/dist/locale/en.d.ts +3 -0
  234. package/dist/locale/index.d.ts +23 -10
  235. package/dist/transitions/index.d.ts +61 -0
  236. package/dist/transitions/modalTransition.d.ts +8 -0
  237. package/dist/utils/{date.d.ts → date/date.d.ts} +10 -2
  238. package/dist/utils/dom/classNames.d.ts +4 -0
  239. package/dist/utils/dom/dom.d.ts +11 -0
  240. package/dist/utils/dom/getScrollParent.d.ts +16 -0
  241. package/dist/utils/dom/hRender.d.ts +9 -0
  242. package/dist/utils/dom/scrollTo.d.ts +10 -0
  243. package/dist/utils/dom/warn.d.ts +1 -0
  244. package/dist/utils/dom/wrapperRaf.d.ts +4 -0
  245. package/dist/utils/helpers.d.ts +63 -2
  246. package/dist/utils/index.d.ts +18 -9
  247. package/dist/utils/use/copyToClipboard.d.ts +1 -0
  248. package/dist/utils/use/eagerComputed.d.ts +3 -0
  249. package/dist/utils/use/pickAttrs.d.ts +11 -0
  250. package/dist/utils/use/reactiveComputed.d.ts +4 -0
  251. package/dist/utils/use/reactivePick.d.ts +8 -0
  252. package/dist/utils/use/toReactive.d.ts +8 -0
  253. package/dist/utils/use/toValue.d.ts +5 -0
  254. package/package.json +8 -4
  255. package/src/scss/modules/_reset.scss +5 -0
  256. package/src/scss/modules/_transition.scss +72 -1
  257. package/src/scss/themes/index.ts +1 -1
  258. package/dist/utils/dom.d.ts +0 -6
  259. package/dist/utils/getScrollParent.d.ts +0 -3
  260. /package/dist/utils/{anchor.d.ts → dom/anchor.d.ts} +0 -0
  261. /package/dist/utils/{animation.d.ts → dom/animation.d.ts} +0 -0
  262. /package/dist/utils/{box.d.ts → dom/box.d.ts} +0 -0
  263. /package/dist/utils/{globals.d.ts → dom/globals.d.ts} +0 -0
  264. /package/dist/utils/{cache.d.ts → use/cache.d.ts} +0 -0
@@ -66,15 +66,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
66
66
  type: import("vue").PropType<string | number>;
67
67
  default: number;
68
68
  };
69
+ locale: {
70
+ type: import("vue").PropType<"ru" | "en" | import("../../locale").ILocale>;
71
+ default: undefined;
72
+ };
69
73
  eager: {
70
74
  type: import("vue").PropType<boolean>;
71
75
  default: boolean;
72
76
  };
73
77
  'onClick:prepend': {
74
- type: import("vue").PropType<(...args: any[]) => any>; /**
75
- * Событие при фокусе
76
- * @type { boolean }
77
- */
78
+ type: import("vue").PropType<(...args: any[]) => any>;
78
79
  default: undefined;
79
80
  };
80
81
  'onClick:append': {
@@ -82,14 +83,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
82
83
  default: undefined;
83
84
  };
84
85
  prependIcon: {
85
- type: import("vue").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">;
86
+ type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
86
87
  default: undefined;
87
- 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;
88
+ validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
88
89
  };
89
90
  appendIcon: {
90
- type: import("vue").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">;
91
+ type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
91
92
  default: undefined;
92
- 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;
93
+ validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
93
94
  };
94
95
  error: {
95
96
  type: import("vue").PropType<boolean>;
@@ -146,10 +147,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
146
147
  default: null;
147
148
  };
148
149
  messages: {
149
- /**
150
- * Событие при фокусе
151
- * @type { boolean }
152
- */
153
150
  type: import("vue").PropType<string | string[]>;
154
151
  default: () => never[];
155
152
  };
@@ -174,19 +171,23 @@ declare const _sfc_main: import("vue").DefineComponent<{
174
171
  default: undefined;
175
172
  };
176
173
  prependInnerIcon: {
177
- type: import("vue").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">;
174
+ type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
178
175
  default: undefined;
179
- 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;
176
+ validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
180
177
  };
181
178
  appendInnerIcon: {
182
- type: import("vue").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">;
179
+ type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
183
180
  default: undefined;
184
- 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;
181
+ validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
185
182
  };
186
183
  type: {
187
- type: import("vue").PropType<"number" | "text" | "password" | "email" | "tel" | "url">;
184
+ type: import("vue").PropType<"number" | "password" | "text" | "email" | "tel" | "url">;
188
185
  default: string;
189
- validator: (value: "number" | "text" | "password" | "email" | "tel" | "url") => boolean;
186
+ validator: (value: "number" | "password" | "text" | "email" | "tel" | "url") => boolean;
187
+ };
188
+ role: {
189
+ type: import("vue").PropType<string>;
190
+ default: undefined;
190
191
  };
191
192
  placeholder: {
192
193
  type: import("vue").PropType<string>;
@@ -204,6 +205,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
204
205
  type: import("vue").PropType<boolean>;
205
206
  default: boolean;
206
207
  };
208
+ persistentClearable: {
209
+ type: import("vue").PropType<boolean>;
210
+ default: boolean;
211
+ };
207
212
  'onClick:prependInner': {
208
213
  type: import("vue").PropType<(...args: any[]) => any>;
209
214
  default: undefined;
@@ -224,10 +229,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
224
229
  type: import("vue").PropType<boolean>;
225
230
  default: boolean;
226
231
  };
227
- noDataText: {
228
- type: import("vue").PropType<string>;
229
- default: string;
230
- };
231
232
  hideNoData: {
232
233
  type: import("vue").PropType<boolean>;
233
234
  default: boolean;
@@ -236,9 +237,104 @@ declare const _sfc_main: import("vue").DefineComponent<{
236
237
  type: import("vue").PropType<boolean>;
237
238
  default: boolean;
238
239
  };
239
- selectAllText: {
240
- type: import("vue").PropType<string>;
241
- default: string;
240
+ listProps: {
241
+ type: import("vue").PropType<Omit<Partial<{
242
+ items: any[];
243
+ itemTitle: import("../../composable").TItemKey;
244
+ itemValue: import("../../composable").TItemKey;
245
+ itemChildren: import("../../composable").TItemKey;
246
+ itemProps: import("../../composable").TItemKey;
247
+ returnObject: boolean;
248
+ tag: string;
249
+ size: NonNullable<"xs" | "sm" | "md" | "lg" | "xl">;
250
+ disabled: boolean;
251
+ dark: boolean;
252
+ required: boolean;
253
+ selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
254
+ openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
255
+ lines: false | "one" | "two" | "three";
256
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
257
+ selectStrategy: {
258
+ type: import("vue").PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
259
+ default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
260
+ };
261
+ openStrategy: {
262
+ type: import("vue").PropType<NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>>;
263
+ default: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
264
+ };
265
+ opened: import("vue").PropType<unknown[]>;
266
+ selected: import("vue").PropType<unknown[]>;
267
+ required: BooleanConstructor;
268
+ dark: {
269
+ type: import("vue").PropType<boolean>;
270
+ default: boolean;
271
+ };
272
+ disabled: {
273
+ type: import("vue").PropType<boolean>;
274
+ default: boolean;
275
+ };
276
+ size: Omit<{
277
+ type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
278
+ default: string;
279
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
280
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
281
+ }, "default" | "type"> & {
282
+ type: import("vue").PropType<NonNullable<"xs" | "sm" | "md" | "lg" | "xl">>;
283
+ default: NonNullable<"xs" | "sm" | "md" | "lg" | "xl">;
284
+ };
285
+ tag: {
286
+ type: import("vue").PropType<string>;
287
+ default: string;
288
+ description: string;
289
+ };
290
+ items: {
291
+ type: import("vue").PropType<any[]>;
292
+ default: () => never[];
293
+ };
294
+ itemTitle: {
295
+ type: import("vue").PropType<import("../../composable").TItemKey>;
296
+ default: string;
297
+ };
298
+ itemValue: {
299
+ type: import("vue").PropType<import("../../composable").TItemKey>;
300
+ default: string;
301
+ };
302
+ itemChildren: {
303
+ type: import("vue").PropType<import("../../composable").TItemKey>;
304
+ default: string;
305
+ };
306
+ itemProps: {
307
+ type: import("vue").PropType<import("../../composable").TItemKey>;
308
+ default: string;
309
+ };
310
+ returnObject: {
311
+ type: import("vue").PropType<boolean>;
312
+ default: boolean;
313
+ };
314
+ lines: {
315
+ type: import("vue").PropType<false | "one" | "two" | "three">;
316
+ default: string;
317
+ };
318
+ }>> & {
319
+ "onUpdate:selected"?: ((value: unknown[]) => any) | undefined;
320
+ "onUpdate:opened"?: ((value: unknown[]) => any) | undefined;
321
+ "onClick:open"?: ((value: {
322
+ id: unknown;
323
+ value: boolean;
324
+ path: unknown[];
325
+ event: Event;
326
+ }) => any) | undefined;
327
+ "onClick:select"?: ((value: {
328
+ id: unknown;
329
+ value: boolean;
330
+ path: unknown[]; /**
331
+ * Событие выбора всех элементов
332
+ * @type { boolean }
333
+ */
334
+ event: Event;
335
+ }) => any) | undefined;
336
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "items" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "returnObject" | "tag" | "size" | "disabled" | "dark" | "required" | "selectStrategy" | "openStrategy" | "lines">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>>;
337
+ default: undefined;
242
338
  };
243
339
  }, {
244
340
  model: import("vue").Ref<readonly IInternalItem<any>[]> & {
@@ -279,10 +375,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
279
375
  default: boolean;
280
376
  };
281
377
  'onClick:prepend': {
282
- type: import("vue").PropType<(...args: any[]) => any>; /**
283
- * Событие при фокусе
284
- * @type { boolean }
285
- */
378
+ type: import("vue").PropType<(...args: any[]) => any>;
286
379
  default: undefined;
287
380
  };
288
381
  'onClick:append': {
@@ -290,14 +383,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
290
383
  default: undefined;
291
384
  };
292
385
  prependIcon: {
293
- type: import("vue").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">;
386
+ type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
294
387
  default: undefined;
295
- 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;
388
+ validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
296
389
  };
297
390
  appendIcon: {
298
- type: import("vue").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">;
391
+ type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
299
392
  default: undefined;
300
- 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;
393
+ validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
301
394
  };
302
395
  error: {
303
396
  type: import("vue").PropType<boolean>;
@@ -354,10 +447,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
354
447
  default: null;
355
448
  };
356
449
  messages: {
357
- /**
358
- * Событие при фокусе
359
- * @type { boolean }
360
- */
361
450
  type: import("vue").PropType<string | string[]>;
362
451
  default: () => never[];
363
452
  };
@@ -382,19 +471,23 @@ declare const _sfc_main: import("vue").DefineComponent<{
382
471
  default: undefined;
383
472
  };
384
473
  prependInnerIcon: {
385
- type: import("vue").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">;
474
+ type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
386
475
  default: undefined;
387
- 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;
476
+ validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
388
477
  };
389
478
  appendInnerIcon: {
390
- type: import("vue").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">;
479
+ type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
391
480
  default: undefined;
392
- 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;
481
+ validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
393
482
  };
394
483
  type: {
395
- type: import("vue").PropType<"number" | "text" | "password" | "email" | "tel" | "url">;
484
+ type: import("vue").PropType<"number" | "password" | "text" | "email" | "tel" | "url">;
396
485
  default: string;
397
- validator: (value: "number" | "text" | "password" | "email" | "tel" | "url") => boolean;
486
+ validator: (value: "number" | "password" | "text" | "email" | "tel" | "url") => boolean;
487
+ };
488
+ role: {
489
+ type: import("vue").PropType<string>;
490
+ default: undefined;
398
491
  };
399
492
  placeholder: {
400
493
  type: import("vue").PropType<string>;
@@ -412,6 +505,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
412
505
  type: import("vue").PropType<boolean>;
413
506
  default: boolean;
414
507
  };
508
+ persistentClearable: {
509
+ type: import("vue").PropType<boolean>;
510
+ default: boolean;
511
+ };
415
512
  'onClick:prependInner': {
416
513
  type: import("vue").PropType<(...args: any[]) => any>;
417
514
  default: undefined;
@@ -487,14 +584,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
487
584
  default: boolean;
488
585
  };
489
586
  prependIcon: {
490
- type: import("vue").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">;
587
+ type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
491
588
  default: undefined;
492
- 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;
589
+ validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
493
590
  };
494
591
  appendIcon: {
495
- type: import("vue").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">;
592
+ type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
496
593
  default: undefined;
497
- 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;
594
+ validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
498
595
  };
499
596
  id: {
500
597
  type: import("vue").PropType<string>;
@@ -513,10 +610,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
513
610
  default: null;
514
611
  };
515
612
  messages: {
516
- /**
517
- * Событие при фокусе
518
- * @type { boolean }
519
- */
520
613
  type: import("vue").PropType<string | string[]>;
521
614
  default: () => never[];
522
615
  };
@@ -524,25 +617,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
524
617
  type: import("vue").PropType<boolean>;
525
618
  default: boolean;
526
619
  };
527
- }, {
528
- isFocused: import("vue").Ref<boolean>;
529
- hasPrepend: import("vue").ComputedRef<boolean>;
530
- hasAppend: import("vue").ComputedRef<boolean>;
531
- hasDefault: import("vue").ComputedRef<boolean>;
532
- hasMessages: import("vue").ComputedRef<number | boolean>;
533
- slotProps: import("vue").ComputedRef<import("../../composable").IInputSlot>;
534
- messagesId: import("vue").ComputedRef<string>;
535
- messages: import("vue").ComputedRef<string | string[]>;
536
- isValid: import("vue").ComputedRef<boolean | null>;
537
- validationClasses: import("vue").ComputedRef<Record<string, boolean>>;
538
- focusClasses: import("vue").ComputedRef<Record<string, boolean>>;
539
- sizeClasses: import("vue").ComputedRef<string>;
540
- reset: () => void;
541
- resetValidation: () => void;
542
- validate: () => Promise<string[]>;
543
- handleClickPrepend: (event: MouseEvent) => void;
544
- handleClickAppend: (event: MouseEvent) => void;
545
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
620
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
546
621
  'update:modelValue': (value: any) => boolean;
547
622
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
548
623
  'onClick:prepend': import("vue").PropType<(...args: any[]) => any>;
@@ -604,14 +679,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
604
679
  default: boolean;
605
680
  };
606
681
  prependIcon: {
607
- type: import("vue").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">;
682
+ type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
608
683
  default: undefined;
609
- 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;
684
+ validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
610
685
  };
611
686
  appendIcon: {
612
- type: import("vue").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">;
687
+ type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
613
688
  default: undefined;
614
- 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;
689
+ validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
615
690
  };
616
691
  id: {
617
692
  type: import("vue").PropType<string>;
@@ -630,10 +705,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
630
705
  default: null;
631
706
  };
632
707
  messages: {
633
- /**
634
- * Событие при фокусе
635
- * @type { boolean }
636
- */
637
708
  type: import("vue").PropType<string | string[]>;
638
709
  default: () => never[];
639
710
  };
@@ -644,18 +715,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
644
715
  }>> & {
645
716
  "onUpdate:modelValue"?: ((value: any) => any) | undefined;
646
717
  }, {
647
- name: string | undefined;
648
- description: string;
649
- disabled: boolean;
650
718
  value: any;
719
+ description: string;
651
720
  size: "xs" | "sm" | "md" | "lg" | "xl";
652
- error: boolean;
653
- 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";
654
- 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";
655
- readonly: boolean;
656
- messages: string | string[];
721
+ disabled: boolean;
722
+ name: string | undefined;
657
723
  id: string;
724
+ error: boolean;
658
725
  label: string;
726
+ messages: string | string[];
659
727
  persistentMessages: boolean;
660
728
  errorMessages: string | string[];
661
729
  maxErrors: string | number;
@@ -664,21 +732,26 @@ declare const _sfc_main: import("vue").DefineComponent<{
664
732
  validateOn: "input" | "blur" | "submit";
665
733
  validationValue: any;
666
734
  hideMessages: boolean;
735
+ prependIcon: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
736
+ appendIcon: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
667
737
  focused: boolean;
738
+ readonly: boolean;
668
739
  }> | undefined>;
669
740
  isFocused: import("vue").Ref<boolean>;
670
741
  rootAttrs: import("vue").Ref<{}>;
671
742
  inputAttrs: import("vue").Ref<{}>;
672
743
  inputProps: import("vue").Ref<{
673
- readonly type?: "number" | "text" | "password" | "email" | "tel" | "url" | undefined;
674
- readonly disabled?: boolean | undefined;
675
744
  readonly value?: any;
676
745
  readonly size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
746
+ readonly disabled?: boolean | undefined;
747
+ readonly type?: "number" | "password" | "text" | "email" | "tel" | "url" | undefined;
748
+ readonly active?: boolean | undefined;
749
+ readonly autofocus?: boolean | undefined;
677
750
  readonly error?: boolean | undefined;
678
- readonly readonly?: boolean | undefined;
679
- readonly loading?: boolean | undefined;
751
+ readonly counter?: boolean | undefined;
752
+ readonly clearable?: boolean | undefined;
753
+ readonly persistentClearable?: boolean | undefined;
680
754
  readonly messages?: string | string[] | undefined;
681
- readonly active?: boolean | undefined;
682
755
  readonly persistentMessages?: boolean | undefined;
683
756
  readonly errorMessages?: string | string[] | undefined;
684
757
  readonly maxErrors?: string | number | undefined;
@@ -688,29 +761,29 @@ declare const _sfc_main: import("vue").DefineComponent<{
688
761
  readonly modelValue?: any;
689
762
  readonly validateOn?: "input" | "blur" | "submit" | undefined;
690
763
  readonly hideMessages?: boolean | undefined;
764
+ readonly loading?: boolean | undefined;
691
765
  readonly focused?: boolean | undefined;
692
- readonly autofocus?: boolean | undefined;
693
- readonly counter?: boolean | undefined;
694
- readonly clearable?: boolean | undefined;
695
- readonly name?: string | undefined;
766
+ readonly readonly?: boolean | undefined;
696
767
  readonly description?: string | undefined;
697
- 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;
698
- 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;
768
+ readonly name?: string | undefined;
699
769
  readonly id?: string | undefined;
700
- readonly label?: string | undefined;
701
- readonly validationValue?: any;
702
- readonly 'onClick:prepend'?: (((...args: any[]) => any) & ((event: MouseEvent) => any)) | undefined;
703
- readonly 'onClick:append'?: (((...args: any[]) => any) & ((event: MouseEvent) => any)) | undefined;
704
770
  readonly prefix?: string | undefined;
705
771
  readonly suffix?: string | undefined;
706
- 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;
707
- 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;
772
+ readonly prependInnerIcon?: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined;
773
+ readonly appendInnerIcon?: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined;
774
+ readonly role?: string | undefined;
708
775
  readonly placeholder?: string | undefined;
709
776
  readonly limit?: number | undefined;
710
777
  readonly 'onClick:prependInner'?: (((...args: any[]) => any) & ((event: MouseEvent) => any)) | undefined;
711
778
  readonly 'onClick:appendInner'?: (((...args: any[]) => any) & ((event: MouseEvent) => any)) | undefined;
712
- readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
779
+ readonly label?: string | undefined;
780
+ readonly validationValue?: any;
781
+ readonly prependIcon?: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined;
782
+ readonly appendIcon?: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined;
783
+ readonly 'onClick:prepend'?: (((...args: any[]) => any) & ((event: MouseEvent) => any)) | undefined;
784
+ readonly 'onClick:append'?: (((...args: any[]) => any) & ((event: MouseEvent) => any)) | undefined;
713
785
  readonly "onUpdate:focused"?: ((value: boolean) => any) | undefined;
786
+ readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
714
787
  readonly "onClick:clear"?: ((event: MouseEvent) => any) | undefined;
715
788
  readonly "onClick:control"?: ((event: MouseEvent) => any) | undefined;
716
789
  readonly "onMousedown:control"?: ((event: MouseEvent) => any) | undefined;
@@ -731,6 +804,20 @@ declare const _sfc_main: import("vue").DefineComponent<{
731
804
  }>;
732
805
  fieldClasses: import("vue").ComputedRef<Record<string, boolean>>;
733
806
  loadingClasses: import("vue").ComputedRef<string | undefined>;
807
+ classesStates: Readonly<{
808
+ hover: "cds-state-hover";
809
+ focus: "cds-state-focus";
810
+ active: "cds-state-active";
811
+ visited: "cds-state-visited";
812
+ disabled: "cds-state-disabled";
813
+ checked: "cds-state-checked";
814
+ indeterminate: "cds-state-indeterminate";
815
+ invalid: "cds-state-invalid";
816
+ empty: "cds-state-empty";
817
+ loading: "cds-state-loading";
818
+ readonly: "cds-state-readonly";
819
+ dragging: "cds-state-dragging";
820
+ }>;
734
821
  onBlur: () => void;
735
822
  onFocus: () => void;
736
823
  onInput: (event: Event) => void;
@@ -773,10 +860,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
773
860
  default: boolean;
774
861
  };
775
862
  'onClick:prepend': {
776
- type: import("vue").PropType<(...args: any[]) => any>; /**
777
- * Событие при фокусе
778
- * @type { boolean }
779
- */
863
+ type: import("vue").PropType<(...args: any[]) => any>;
780
864
  default: undefined;
781
865
  };
782
866
  'onClick:append': {
@@ -784,14 +868,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
784
868
  default: undefined;
785
869
  };
786
870
  prependIcon: {
787
- type: import("vue").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">;
871
+ type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
788
872
  default: undefined;
789
- 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;
873
+ validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
790
874
  };
791
875
  appendIcon: {
792
- type: import("vue").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">;
876
+ type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
793
877
  default: undefined;
794
- 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;
878
+ validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
795
879
  };
796
880
  error: {
797
881
  type: import("vue").PropType<boolean>;
@@ -848,10 +932,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
848
932
  default: null;
849
933
  };
850
934
  messages: {
851
- /**
852
- * Событие при фокусе
853
- * @type { boolean }
854
- */
855
935
  type: import("vue").PropType<string | string[]>;
856
936
  default: () => never[];
857
937
  };
@@ -876,19 +956,23 @@ declare const _sfc_main: import("vue").DefineComponent<{
876
956
  default: undefined;
877
957
  };
878
958
  prependInnerIcon: {
879
- type: import("vue").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">;
959
+ type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
880
960
  default: undefined;
881
- 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;
961
+ validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
882
962
  };
883
963
  appendInnerIcon: {
884
- type: import("vue").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">;
964
+ type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
885
965
  default: undefined;
886
- 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;
966
+ validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
887
967
  };
888
968
  type: {
889
- type: import("vue").PropType<"number" | "text" | "password" | "email" | "tel" | "url">;
969
+ type: import("vue").PropType<"number" | "password" | "text" | "email" | "tel" | "url">;
890
970
  default: string;
891
- validator: (value: "number" | "text" | "password" | "email" | "tel" | "url") => boolean;
971
+ validator: (value: "number" | "password" | "text" | "email" | "tel" | "url") => boolean;
972
+ };
973
+ role: {
974
+ type: import("vue").PropType<string>;
975
+ default: undefined;
892
976
  };
893
977
  placeholder: {
894
978
  type: import("vue").PropType<string>;
@@ -906,6 +990,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
906
990
  type: import("vue").PropType<boolean>;
907
991
  default: boolean;
908
992
  };
993
+ persistentClearable: {
994
+ type: import("vue").PropType<boolean>;
995
+ default: boolean;
996
+ };
909
997
  'onClick:prependInner': {
910
998
  type: import("vue").PropType<(...args: any[]) => any>;
911
999
  default: undefined;
@@ -915,31 +1003,40 @@ declare const _sfc_main: import("vue").DefineComponent<{
915
1003
  default: undefined;
916
1004
  };
917
1005
  }>> & {
918
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
1006
+ "onClick:prependInner"?: ((event: MouseEvent) => any) | undefined;
1007
+ "onClick:appendInner"?: ((event: MouseEvent) => any) | undefined;
919
1008
  "onClick:prepend"?: ((event: MouseEvent) => any) | undefined;
920
1009
  "onClick:append"?: ((event: MouseEvent) => any) | undefined;
921
1010
  "onUpdate:focused"?: ((value: boolean) => any) | undefined;
922
- "onClick:prependInner"?: ((event: MouseEvent) => any) | undefined;
923
- "onClick:appendInner"?: ((event: MouseEvent) => any) | undefined;
1011
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
924
1012
  "onClick:clear"?: ((event: MouseEvent) => any) | undefined;
925
1013
  "onClick:control"?: ((event: MouseEvent) => any) | undefined;
926
1014
  "onMousedown:control"?: ((event: MouseEvent) => any) | undefined;
927
1015
  }, {
928
- name: string | undefined;
929
- type: "number" | "text" | "password" | "email" | "tel" | "url";
930
- description: string;
931
- disabled: boolean;
932
1016
  value: any;
1017
+ description: string;
933
1018
  size: "xs" | "sm" | "md" | "lg" | "xl";
934
- error: boolean;
935
- 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";
936
- 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";
937
- readonly: boolean;
938
- loading: boolean;
939
- messages: string | string[];
940
- active: boolean;
1019
+ disabled: boolean;
1020
+ type: "number" | "password" | "text" | "email" | "tel" | "url";
1021
+ name: string | undefined;
941
1022
  id: string;
1023
+ active: boolean;
1024
+ autofocus: boolean;
1025
+ prefix: string;
1026
+ suffix: string;
1027
+ prependInnerIcon: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
1028
+ error: boolean;
1029
+ appendInnerIcon: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
1030
+ role: string;
1031
+ placeholder: string;
1032
+ counter: boolean;
1033
+ limit: number;
1034
+ clearable: boolean;
1035
+ persistentClearable: boolean;
1036
+ 'onClick:prependInner': (...args: any[]) => any;
1037
+ 'onClick:appendInner': (...args: any[]) => any;
942
1038
  label: string;
1039
+ messages: string | string[];
943
1040
  persistentMessages: boolean;
944
1041
  errorMessages: string | string[];
945
1042
  maxErrors: string | number;
@@ -948,20 +1045,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
948
1045
  validateOn: "input" | "blur" | "submit";
949
1046
  validationValue: any;
950
1047
  hideMessages: boolean;
951
- focused: boolean;
1048
+ prependIcon: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
1049
+ appendIcon: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
952
1050
  'onClick:prepend': (...args: any[]) => any;
953
1051
  'onClick:append': (...args: any[]) => any;
954
- autofocus: boolean;
955
- prefix: string;
956
- suffix: string;
957
- 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";
958
- 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";
959
- placeholder: string;
960
- counter: boolean;
961
- limit: number;
962
- clearable: boolean;
963
- 'onClick:prependInner': (...args: any[]) => any;
964
- 'onClick:appendInner': (...args: any[]) => any;
1052
+ loading: boolean;
1053
+ focused: boolean;
1054
+ readonly: boolean;
965
1055
  }> | undefined>;
966
1056
  menuRef: import("vue").Ref<import("vue").DefineComponent<{
967
1057
  transition: {
@@ -1012,10 +1102,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1012
1102
  updateLocation: (event: Event) => void;
1013
1103
  } | undefined)>;
1014
1104
  default: string;
1015
- validator: (value: any) => boolean; /**
1016
- * Событие выбора всех элементов
1017
- * @type { boolean }
1018
- */
1105
+ validator: (value: any) => boolean;
1019
1106
  }, "default" | "type"> & {
1020
1107
  type: import("vue").PropType<NonNullable<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
1021
1108
  updateLocation: (event: Event) => void;
@@ -1051,8 +1138,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
1051
1138
  default: NonNullable<string | number>;
1052
1139
  };
1053
1140
  activator: {
1141
+ /**
1142
+ * Событие при фокусе
1143
+ * @type { boolean }
1144
+ */
1054
1145
  type: import("vue").PropType<string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element>;
1055
- default: null;
1146
+ default: null; /**
1147
+ * Событие при изменении значения (v-model)
1148
+ * @type { any }
1149
+ */
1056
1150
  };
1057
1151
  activatorProps: {
1058
1152
  type: import("vue").PropType<Record<string, any>>;
@@ -1101,10 +1195,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1101
1195
  default: NonNullable<string | boolean>;
1102
1196
  };
1103
1197
  modelValue: {
1104
- type: import("vue").PropType<boolean>; /**
1105
- * Событие выбора всех элементов
1106
- * @type { boolean }
1107
- */
1198
+ type: import("vue").PropType<boolean>;
1108
1199
  default: boolean;
1109
1200
  };
1110
1201
  closeOnBack: {
@@ -1123,349 +1214,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
1123
1214
  type: import("vue").PropType<Record<string, unknown>>;
1124
1215
  default: () => {};
1125
1216
  };
1217
+ noClickAnimation: {
1218
+ type: import("vue").PropType<boolean>;
1219
+ default: boolean;
1220
+ };
1126
1221
  id: {
1127
1222
  type: import("vue").PropType<string>;
1128
1223
  default: undefined;
1129
1224
  };
1130
- }, {
1131
- overlay: import("vue").Ref<import("vue").DefineComponent<{
1132
- transition: {
1133
- type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
1134
- component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
1135
- })>;
1136
- default: string;
1137
- validator: (value: unknown) => boolean;
1138
- };
1139
- eager: {
1140
- type: import("vue").PropType<boolean>;
1141
- default: boolean;
1142
- };
1143
- scrollStrategy: {
1144
- type: import("vue").PropType<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
1145
- default: string;
1146
- validator: (value: any) => boolean;
1147
- };
1148
- locationStrategy: {
1149
- type: import("vue").PropType<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
1150
- updateLocation: (event: Event) => void;
1151
- } | undefined)>;
1152
- default: string;
1153
- validator: (value: any) => boolean; /**
1154
- * Событие выбора всех элементов
1155
- * @type { boolean }
1156
- */
1157
- };
1158
- location: {
1159
- type: import("vue").PropType<import('../../utils').TAnchor>;
1160
- default: string;
1161
- };
1162
- origin: {
1163
- type: import("vue").PropType<import('../../utils').TAnchor | "auto" | "overlap">;
1164
- default: string;
1165
- };
1166
- offset: {
1167
- type: import("vue").PropType<string | number | number[]>;
1168
- default: null;
1169
- };
1170
- height: {
1171
- type: import("vue").PropType<string | number>;
1172
- default: string;
1173
- };
1174
- width: {
1175
- type: import("vue").PropType<string | number>;
1176
- default: string;
1177
- };
1178
- maxHeight: {
1179
- type: import("vue").PropType<string | number>;
1180
- default: string;
1181
- };
1182
- maxWidth: {
1183
- type: import("vue").PropType<string | number>;
1184
- default: string;
1185
- };
1186
- minHeight: {
1187
- type: import("vue").PropType<string | number>;
1188
- default: string;
1189
- };
1190
- minWidth: {
1191
- type: import("vue").PropType<string | number>;
1192
- default: string;
1193
- };
1194
- closeDelay: {
1195
- type: import("vue").PropType<string | number>;
1196
- default: null;
1197
- };
1198
- openDelay: {
1199
- type: import("vue").PropType<string | number>;
1200
- default: null;
1201
- };
1202
- activator: {
1203
- type: import("vue").PropType<string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element>;
1204
- default: null;
1205
- };
1206
- activatorProps: {
1207
- type: import("vue").PropType<Record<string, any>>;
1208
- default: () => {};
1209
- };
1210
- openOnClick: {
1211
- type: import("vue").PropType<boolean | undefined>;
1212
- default: undefined;
1213
- };
1214
- openOnHover: {
1215
- type: import("vue").PropType<boolean>;
1216
- default: boolean;
1217
- };
1218
- openOnFocus: {
1219
- type: import("vue").PropType<boolean | undefined>;
1220
- default: undefined;
1221
- };
1222
- closeOnContentClick: {
1223
- type: import("vue").PropType<boolean>;
1224
- default: boolean;
1225
- };
1226
- attach: {
1227
- type: import("vue").PropType<string | boolean | Element>;
1228
- default: boolean;
1229
- };
1230
- contained: {
1231
- type: import("vue").PropType<boolean>;
1232
- default: boolean;
1233
- };
1234
- disabled: {
1235
- type: import("vue").PropType<boolean>;
1236
- default: boolean;
1237
- };
1238
- persistent: {
1239
- type: import("vue").PropType<boolean>;
1240
- default: boolean;
1241
- };
1242
- scrim: {
1243
- type: import("vue").PropType<string | boolean>;
1244
- default: boolean;
1245
- };
1246
- modelValue: {
1247
- type: import("vue").PropType<boolean>; /**
1248
- * Событие выбора всех элементов
1249
- * @type { boolean }
1250
- */
1251
- default: boolean;
1252
- };
1253
- closeOnBack: {
1254
- type: import("vue").PropType<boolean>;
1255
- default: boolean;
1256
- };
1257
- zIndex: {
1258
- type: import("vue").PropType<string | number>;
1259
- default: number;
1260
- };
1261
- contentClasses: {
1262
- type: import("vue").PropType<string | string[] | Record<string, boolean>>;
1263
- default: null;
1264
- };
1265
- contentProps: {
1266
- type: import("vue").PropType<Record<string, unknown>>;
1267
- default: () => {};
1268
- };
1269
- absolute: {
1270
- type: import("vue").PropType<boolean>;
1271
- default: boolean;
1272
- };
1273
- }, {
1274
- activatorEl: import("vue").Ref<HTMLElement | undefined>;
1275
- contentEl: import("vue").Ref<HTMLElement | undefined>;
1276
- globalTop: Readonly<import("vue").Ref<boolean>>;
1277
- localTop: import("vue").ComputedRef<boolean>;
1278
- updateLocation: import("vue").Ref<((event: Event) => void) | undefined>;
1279
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1280
- 'update:modelValue': (value: boolean) => true;
1281
- 'click:outside': (event: MouseEvent) => true;
1282
- afterLeave: () => true;
1283
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1284
- transition: {
1285
- type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
1286
- component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
1287
- })>;
1288
- default: string;
1289
- validator: (value: unknown) => boolean;
1290
- };
1291
- eager: {
1292
- type: import("vue").PropType<boolean>;
1293
- default: boolean;
1294
- };
1295
- scrollStrategy: {
1296
- type: import("vue").PropType<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
1297
- default: string;
1298
- validator: (value: any) => boolean;
1299
- };
1300
- locationStrategy: {
1301
- type: import("vue").PropType<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
1302
- updateLocation: (event: Event) => void;
1303
- } | undefined)>;
1304
- default: string;
1305
- validator: (value: any) => boolean; /**
1306
- * Событие выбора всех элементов
1307
- * @type { boolean }
1308
- */
1309
- };
1310
- location: {
1311
- type: import("vue").PropType<import('../../utils').TAnchor>;
1312
- default: string;
1313
- };
1314
- origin: {
1315
- type: import("vue").PropType<import('../../utils').TAnchor | "auto" | "overlap">;
1316
- default: string;
1317
- };
1318
- offset: {
1319
- type: import("vue").PropType<string | number | number[]>;
1320
- default: null;
1321
- };
1322
- height: {
1323
- type: import("vue").PropType<string | number>;
1324
- default: string;
1325
- };
1326
- width: {
1327
- type: import("vue").PropType<string | number>;
1328
- default: string;
1329
- };
1330
- maxHeight: {
1331
- type: import("vue").PropType<string | number>;
1332
- default: string;
1333
- };
1334
- maxWidth: {
1335
- type: import("vue").PropType<string | number>;
1336
- default: string;
1337
- };
1338
- minHeight: {
1339
- type: import("vue").PropType<string | number>;
1340
- default: string;
1341
- };
1342
- minWidth: {
1343
- type: import("vue").PropType<string | number>;
1344
- default: string;
1345
- };
1346
- closeDelay: {
1347
- type: import("vue").PropType<string | number>;
1348
- default: null;
1349
- };
1350
- openDelay: {
1351
- type: import("vue").PropType<string | number>;
1352
- default: null;
1353
- };
1354
- activator: {
1355
- type: import("vue").PropType<string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element>;
1356
- default: null;
1357
- };
1358
- activatorProps: {
1359
- type: import("vue").PropType<Record<string, any>>;
1360
- default: () => {};
1361
- };
1362
- openOnClick: {
1363
- type: import("vue").PropType<boolean | undefined>;
1364
- default: undefined;
1365
- };
1366
- openOnHover: {
1367
- type: import("vue").PropType<boolean>;
1368
- default: boolean;
1369
- };
1370
- openOnFocus: {
1371
- type: import("vue").PropType<boolean | undefined>;
1372
- default: undefined;
1373
- };
1374
- closeOnContentClick: {
1375
- type: import("vue").PropType<boolean>;
1376
- default: boolean;
1377
- };
1378
- attach: {
1379
- type: import("vue").PropType<string | boolean | Element>;
1380
- default: boolean;
1381
- };
1382
- contained: {
1383
- type: import("vue").PropType<boolean>;
1384
- default: boolean;
1385
- };
1386
- disabled: {
1387
- type: import("vue").PropType<boolean>;
1388
- default: boolean;
1389
- };
1390
- persistent: {
1391
- type: import("vue").PropType<boolean>;
1392
- default: boolean;
1393
- };
1394
- scrim: {
1395
- type: import("vue").PropType<string | boolean>;
1396
- default: boolean;
1397
- };
1398
- modelValue: {
1399
- type: import("vue").PropType<boolean>; /**
1400
- * Событие выбора всех элементов
1401
- * @type { boolean }
1402
- */
1403
- default: boolean;
1404
- };
1405
- closeOnBack: {
1406
- type: import("vue").PropType<boolean>;
1407
- default: boolean;
1408
- };
1409
- zIndex: {
1410
- type: import("vue").PropType<string | number>;
1411
- default: number;
1412
- };
1413
- contentClasses: {
1414
- type: import("vue").PropType<string | string[] | Record<string, boolean>>;
1415
- default: null;
1416
- };
1417
- contentProps: {
1418
- type: import("vue").PropType<Record<string, unknown>>;
1419
- default: () => {};
1420
- };
1421
- absolute: {
1422
- type: import("vue").PropType<boolean>;
1423
- default: boolean;
1424
- };
1425
- }>> & {
1426
- onAfterLeave?: (() => any) | undefined;
1427
- "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1428
- "onClick:outside"?: ((event: MouseEvent) => any) | undefined;
1429
- }, {
1430
- disabled: boolean;
1431
- location: import('../../utils').TAnchor;
1432
- transition: string | boolean | (import("vue").TransitionProps & {
1433
- component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
1434
- });
1435
- origin: import('../../utils').TAnchor | "auto" | "overlap";
1436
- modelValue: boolean;
1437
- attach: string | boolean | Element;
1438
- contained: boolean;
1439
- persistent: boolean;
1440
- scrim: string | boolean;
1441
- closeOnBack: boolean;
1442
- zIndex: string | number;
1443
- contentClasses: string | string[] | Record<string, boolean>;
1444
- contentProps: Record<string, unknown>;
1445
- activator: string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element;
1446
- activatorProps: Record<string, any>;
1447
- openOnClick: boolean | undefined;
1448
- openOnHover: boolean;
1449
- openOnFocus: boolean | undefined;
1450
- closeOnContentClick: boolean;
1451
- closeDelay: string | number;
1452
- openDelay: string | number;
1453
- locationStrategy: "static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
1454
- updateLocation: (event: Event) => void;
1455
- } | undefined);
1456
- offset: string | number | number[];
1457
- scrollStrategy: "none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void);
1458
- eager: boolean;
1459
- height: string | number;
1460
- width: string | number;
1461
- maxHeight: string | number;
1462
- maxWidth: string | number;
1463
- minHeight: string | number;
1464
- minWidth: string | number;
1465
- absolute: boolean;
1466
- }> | undefined>;
1467
- openChildren: import("vue").Ref<number>;
1468
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1225
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1469
1226
  'update:modelValue': (value: boolean) => true;
1470
1227
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1471
1228
  transition: {
@@ -1516,10 +1273,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1516
1273
  updateLocation: (event: Event) => void;
1517
1274
  } | undefined)>;
1518
1275
  default: string;
1519
- validator: (value: any) => boolean; /**
1520
- * Событие выбора всех элементов
1521
- * @type { boolean }
1522
- */
1276
+ validator: (value: any) => boolean;
1523
1277
  }, "default" | "type"> & {
1524
1278
  type: import("vue").PropType<NonNullable<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
1525
1279
  updateLocation: (event: Event) => void;
@@ -1555,8 +1309,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
1555
1309
  default: NonNullable<string | number>;
1556
1310
  };
1557
1311
  activator: {
1312
+ /**
1313
+ * Событие при фокусе
1314
+ * @type { boolean }
1315
+ */
1558
1316
  type: import("vue").PropType<string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element>;
1559
- default: null;
1317
+ default: null; /**
1318
+ * Событие при изменении значения (v-model)
1319
+ * @type { any }
1320
+ */
1560
1321
  };
1561
1322
  activatorProps: {
1562
1323
  type: import("vue").PropType<Record<string, any>>;
@@ -1605,10 +1366,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1605
1366
  default: NonNullable<string | boolean>;
1606
1367
  };
1607
1368
  modelValue: {
1608
- type: import("vue").PropType<boolean>; /**
1609
- * Событие выбора всех элементов
1610
- * @type { boolean }
1611
- */
1369
+ type: import("vue").PropType<boolean>;
1612
1370
  default: boolean;
1613
1371
  };
1614
1372
  closeOnBack: {
@@ -1627,6 +1385,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1627
1385
  type: import("vue").PropType<Record<string, unknown>>;
1628
1386
  default: () => {};
1629
1387
  };
1388
+ noClickAnimation: {
1389
+ type: import("vue").PropType<boolean>;
1390
+ default: boolean;
1391
+ };
1630
1392
  id: {
1631
1393
  type: import("vue").PropType<string>;
1632
1394
  default: undefined;
@@ -1635,13 +1397,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
1635
1397
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1636
1398
  }, {
1637
1399
  disabled: boolean;
1400
+ id: string;
1638
1401
  location: import('../../utils').TAnchor;
1402
+ modelValue: boolean;
1403
+ eager: boolean;
1639
1404
  transition: string | boolean | (import("vue").TransitionProps & {
1640
1405
  component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
1641
1406
  });
1642
- origin: import('../../utils').TAnchor | "auto" | "overlap";
1643
- id: string;
1644
- modelValue: boolean;
1645
1407
  attach: string | boolean | Element;
1646
1408
  contained: boolean;
1647
1409
  persistent: boolean;
@@ -1650,6 +1412,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1650
1412
  zIndex: string | number;
1651
1413
  contentClasses: string | string[] | Record<string, boolean>;
1652
1414
  contentProps: Record<string, unknown>;
1415
+ noClickAnimation: boolean;
1653
1416
  activator: string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element;
1654
1417
  activatorProps: Record<string, any>;
1655
1418
  openOnClick: boolean | undefined;
@@ -1661,9 +1424,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
1661
1424
  locationStrategy: NonNullable<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
1662
1425
  updateLocation: (event: Event) => void;
1663
1426
  } | undefined)>;
1427
+ origin: import('../../utils').TAnchor | "auto" | "overlap";
1664
1428
  offset: string | number | number[];
1665
1429
  scrollStrategy: NonNullable<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
1666
- eager: boolean;
1667
1430
  height: string | number;
1668
1431
  width: string | number;
1669
1432
  maxHeight: string | number;
@@ -1733,11 +1496,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1733
1496
  type: import("vue").PropType<false | "one" | "two" | "three">;
1734
1497
  default: string;
1735
1498
  };
1736
- }, {
1737
- open: (id: unknown, value: boolean, event?: Event | undefined) => void;
1738
- select: (id: unknown, value: boolean, event?: Event | undefined) => void;
1739
- focus: (location?: import("../CdsList/composable").TFocusLocation | undefined) => void;
1740
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1499
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1741
1500
  'update:selected': (value: unknown[]) => boolean;
1742
1501
  'update:opened': (value: unknown[]) => boolean;
1743
1502
  'click:open': (value: {
@@ -1749,7 +1508,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1749
1508
  'click:select': (value: {
1750
1509
  id: unknown;
1751
1510
  value: boolean;
1752
- path: unknown[];
1511
+ path: unknown[]; /**
1512
+ * Событие выбора всех элементов
1513
+ * @type { boolean }
1514
+ */
1753
1515
  event: Event;
1754
1516
  }) => boolean;
1755
1517
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -1826,28 +1588,34 @@ declare const _sfc_main: import("vue").DefineComponent<{
1826
1588
  "onClick:select"?: ((value: {
1827
1589
  id: unknown;
1828
1590
  value: boolean;
1829
- path: unknown[];
1591
+ path: unknown[]; /**
1592
+ * Событие выбора всех элементов
1593
+ * @type { boolean }
1594
+ */
1830
1595
  event: Event;
1831
1596
  }) => any) | undefined;
1832
1597
  }, {
1833
- dark: boolean;
1834
- required: boolean;
1835
- disabled: boolean;
1836
- tag: string;
1837
1598
  items: any[];
1838
1599
  itemTitle: import("../../composable").TItemKey;
1839
1600
  itemValue: import("../../composable").TItemKey;
1840
1601
  itemChildren: import("../../composable").TItemKey;
1841
1602
  itemProps: import("../../composable").TItemKey;
1842
1603
  returnObject: boolean;
1604
+ tag: string;
1843
1605
  size: NonNullable<"xs" | "sm" | "md" | "lg" | "xl">;
1606
+ disabled: boolean;
1607
+ dark: boolean;
1608
+ required: boolean;
1844
1609
  selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
1845
1610
  openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
1846
1611
  lines: false | "one" | "two" | "three";
1847
1612
  }> | undefined>;
1848
1613
  inputProps: import("vue").Ref<{
1849
- readonly type?: "number" | "text" | "password" | "email" | "tel" | "url" | undefined;
1850
- readonly disabled?: boolean | undefined;
1614
+ readonly multiple?: boolean | undefined;
1615
+ readonly openOnClear?: boolean | undefined;
1616
+ readonly hideSelected?: boolean | undefined;
1617
+ readonly hideNoData?: boolean | undefined;
1618
+ readonly isSelectAll?: boolean | undefined;
1851
1619
  readonly items?: any[] | undefined;
1852
1620
  readonly itemTitle?: import("../../composable").TItemKey | undefined;
1853
1621
  readonly itemValue?: import("../../composable").TItemKey | undefined;
@@ -1856,9 +1624,30 @@ declare const _sfc_main: import("vue").DefineComponent<{
1856
1624
  readonly itemProps?: import("../../composable").TItemKey | undefined;
1857
1625
  readonly returnObject?: boolean | undefined;
1858
1626
  readonly size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1627
+ readonly disabled?: boolean | undefined;
1628
+ readonly type?: "number" | "password" | "text" | "email" | "tel" | "url" | undefined;
1629
+ readonly active?: boolean | undefined;
1630
+ readonly autofocus?: boolean | undefined;
1859
1631
  readonly error?: boolean | undefined;
1860
- readonly readonly?: boolean | undefined;
1632
+ readonly counter?: boolean | undefined;
1633
+ readonly clearable?: boolean | undefined;
1634
+ readonly persistentClearable?: boolean | undefined;
1635
+ readonly messages?: string | string[] | undefined;
1636
+ readonly persistentMessages?: boolean | undefined;
1637
+ readonly errorMessages?: string | string[] | undefined;
1638
+ readonly maxErrors?: string | number | undefined;
1639
+ readonly rules?: (import("../../composable").TValidationResult | ((value: any) => import("../../composable").TValidationResult) | ((value: any) => PromiseLike<import("../../composable").TValidationResult>) | {
1640
+ 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>;
1641
+ })[] | undefined;
1642
+ readonly modelValue?: any;
1643
+ readonly validateOn?: "input" | "blur" | "submit" | undefined;
1644
+ readonly hideMessages?: boolean | undefined;
1645
+ readonly eager?: boolean | undefined;
1861
1646
  readonly loading?: boolean | undefined;
1647
+ readonly focused?: boolean | undefined;
1648
+ readonly readonly?: boolean | undefined;
1649
+ readonly menuProps?: any;
1650
+ readonly menuHeight?: string | number | undefined;
1862
1651
  readonly transition?: string | boolean | {
1863
1652
  name?: string | undefined;
1864
1653
  type?: ("transition" | "animation") | undefined;
@@ -2013,51 +1802,115 @@ declare const _sfc_main: import("vue").DefineComponent<{
2013
1802
  beforeRouteLeave?: import("vue-router").NavigationGuard | undefined;
2014
1803
  } | undefined;
2015
1804
  } | undefined;
2016
- readonly messages?: string | string[] | undefined;
2017
- readonly active?: boolean | undefined;
2018
- readonly persistentMessages?: boolean | undefined;
2019
- readonly errorMessages?: string | string[] | undefined;
2020
- readonly maxErrors?: string | number | undefined;
2021
- readonly rules?: (import("../../composable").TValidationResult | ((value: any) => import("../../composable").TValidationResult) | ((value: any) => PromiseLike<import("../../composable").TValidationResult>) | {
2022
- 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>;
2023
- })[] | undefined;
2024
- readonly modelValue?: any;
2025
- readonly validateOn?: "input" | "blur" | "submit" | undefined;
2026
- readonly hideMessages?: boolean | undefined;
2027
- readonly focused?: boolean | undefined;
2028
- readonly autofocus?: boolean | undefined;
2029
- readonly counter?: boolean | undefined;
2030
- readonly clearable?: boolean | undefined;
2031
- readonly eager?: boolean | undefined;
2032
- readonly multiple?: boolean | undefined;
2033
- readonly openOnClear?: boolean | undefined;
2034
- readonly hideSelected?: boolean | undefined;
2035
- readonly noDataText?: string | undefined;
2036
- readonly hideNoData?: boolean | undefined;
2037
- readonly isSelectAll?: boolean | undefined;
2038
- readonly selectAllText?: string | undefined;
2039
- readonly menuProps?: any;
2040
- readonly menuHeight?: string | number | undefined;
2041
- readonly name?: string | undefined;
1805
+ readonly listProps?: {
1806
+ items?: any[] | undefined;
1807
+ itemTitle?: import("../../composable").TItemKey | undefined;
1808
+ itemValue?: import("../../composable").TItemKey | undefined;
1809
+ itemChildren?: import("../../composable").TItemKey | undefined;
1810
+ itemProps?: import("../../composable").TItemKey | undefined;
1811
+ returnObject?: boolean | undefined;
1812
+ tag?: string | undefined;
1813
+ size?: NonNullable<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
1814
+ disabled?: boolean | undefined;
1815
+ dark?: boolean | undefined;
1816
+ required?: boolean | undefined;
1817
+ selectStrategy?: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp> | undefined;
1818
+ openStrategy?: "multiple" | "single" | "list" | {
1819
+ open: import("../../composable/nested/openStrategies").TOpenStrategyFn;
1820
+ select: import("../../composable/nested/openStrategies").TOpenSelectStrategyFn;
1821
+ } | undefined;
1822
+ readonly opened?: unknown[] | undefined;
1823
+ readonly selected?: unknown[] | undefined;
1824
+ "onUpdate:selected"?: ((value: unknown[]) => any) | undefined;
1825
+ "onUpdate:opened"?: ((value: unknown[]) => any) | undefined;
1826
+ "onClick:open"?: ((value: {
1827
+ id: unknown;
1828
+ value: boolean;
1829
+ path: unknown[];
1830
+ event: Event;
1831
+ }) => any) | undefined;
1832
+ "onClick:select"?: ((value: {
1833
+ id: unknown;
1834
+ value: boolean;
1835
+ path: unknown[]; /**
1836
+ * Событие выбора всех элементов
1837
+ * @type { boolean }
1838
+ */
1839
+ event: Event;
1840
+ }) => any) | undefined;
1841
+ lines?: false | "one" | "two" | "three" | undefined;
1842
+ } | undefined;
2042
1843
  readonly description?: string | undefined;
2043
- readonly menu?: boolean | undefined;
2044
- 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;
2045
- 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;
1844
+ readonly name?: string | undefined;
2046
1845
  readonly id?: string | undefined;
2047
- readonly label?: string | undefined;
2048
- readonly validationValue?: any;
2049
- readonly 'onClick:prepend'?: ((...args: any[]) => any) | undefined;
2050
- readonly 'onClick:append'?: ((...args: any[]) => any) | undefined;
2051
1846
  readonly prefix?: string | undefined;
2052
1847
  readonly suffix?: string | undefined;
2053
- 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;
2054
- 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;
1848
+ readonly prependInnerIcon?: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined;
1849
+ readonly menu?: boolean | undefined;
1850
+ readonly appendInnerIcon?: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined;
1851
+ readonly role?: string | undefined;
2055
1852
  readonly placeholder?: string | undefined;
2056
1853
  readonly limit?: number | undefined;
2057
1854
  readonly 'onClick:prependInner'?: ((...args: any[]) => any) | undefined;
2058
1855
  readonly 'onClick:appendInner'?: ((...args: any[]) => any) | undefined;
2059
- readonly "onUpdate:modelValue"?: ((value: any) => any) | undefined;
1856
+ readonly label?: string | undefined;
1857
+ readonly validationValue?: any;
1858
+ readonly locale?: "ru" | "en" | {
1859
+ notification: {
1860
+ closeLabel?: string | undefined;
1861
+ };
1862
+ table: {
1863
+ filterTitle?: string | undefined;
1864
+ filterConfirm?: any;
1865
+ filterReset?: any;
1866
+ filterEmptyText?: any;
1867
+ filterCheckAll?: any;
1868
+ filterSearchPlaceholder?: any;
1869
+ emptyText?: any;
1870
+ selectAll?: any;
1871
+ selectNone?: any;
1872
+ selectInvert?: any;
1873
+ selectionAll?: any;
1874
+ sortTitle?: string | undefined;
1875
+ expand?: string | undefined;
1876
+ collapse?: string | undefined;
1877
+ triggerDesc?: string | undefined;
1878
+ triggerAsc?: string | undefined;
1879
+ cancelSort?: string | undefined;
1880
+ };
1881
+ date: {
1882
+ days: string[];
1883
+ daysShort: string[];
1884
+ months: string[];
1885
+ monthsLong: string[];
1886
+ monthsShort: string[];
1887
+ firstDayOfWeek: number;
1888
+ format24h: boolean;
1889
+ pluralDay: (day?: number | undefined) => string;
1890
+ };
1891
+ container: {
1892
+ prev?: string | undefined;
1893
+ next?: string | undefined;
1894
+ };
1895
+ uploader: {
1896
+ uploading?: string | undefined;
1897
+ uploadFile?: string | undefined;
1898
+ downloadFile?: string | undefined;
1899
+ removeFile?: string | undefined;
1900
+ uploadError?: string | undefined;
1901
+ previewFile?: string | undefined;
1902
+ };
1903
+ dropdown: {
1904
+ noData: string;
1905
+ selectAll: string;
1906
+ };
1907
+ } | undefined;
1908
+ readonly prependIcon?: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined;
1909
+ readonly appendIcon?: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined;
1910
+ readonly 'onClick:prepend'?: ((...args: any[]) => any) | undefined;
1911
+ readonly 'onClick:append'?: ((...args: any[]) => any) | undefined;
2060
1912
  readonly "onUpdate:focused"?: ((value: boolean) => any) | undefined;
1913
+ readonly "onUpdate:modelValue"?: ((value: any) => any) | undefined;
2061
1914
  readonly "onUpdate:menu"?: ((value: boolean) => any) | undefined;
2062
1915
  readonly "onUpdate:selectedAll"?: ((value: boolean) => any) | undefined;
2063
1916
  }>;
@@ -2073,6 +1926,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
2073
1926
  'cds-dropdown--active-menu': boolean | undefined;
2074
1927
  'cds-dropdown--selected': number;
2075
1928
  }>;
1929
+ dropdownLocale: {
1930
+ noData: string;
1931
+ selectAll: string;
1932
+ };
2076
1933
  select: (item: IInternalItem) => void;
2077
1934
  selectAll: () => void;
2078
1935
  mergeItemProps: (item: IInternalItem) => {
@@ -2172,15 +2029,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
2172
2029
  type: import("vue").PropType<string | number>;
2173
2030
  default: number;
2174
2031
  };
2032
+ locale: {
2033
+ type: import("vue").PropType<"ru" | "en" | import("../../locale").ILocale>;
2034
+ default: undefined;
2035
+ };
2175
2036
  eager: {
2176
2037
  type: import("vue").PropType<boolean>;
2177
2038
  default: boolean;
2178
2039
  };
2179
2040
  'onClick:prepend': {
2180
- type: import("vue").PropType<(...args: any[]) => any>; /**
2181
- * Событие при фокусе
2182
- * @type { boolean }
2183
- */
2041
+ type: import("vue").PropType<(...args: any[]) => any>;
2184
2042
  default: undefined;
2185
2043
  };
2186
2044
  'onClick:append': {
@@ -2188,14 +2046,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
2188
2046
  default: undefined;
2189
2047
  };
2190
2048
  prependIcon: {
2191
- type: import("vue").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">;
2049
+ type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
2192
2050
  default: undefined;
2193
- 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;
2051
+ validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
2194
2052
  };
2195
2053
  appendIcon: {
2196
- type: import("vue").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">;
2054
+ type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
2197
2055
  default: undefined;
2198
- 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;
2056
+ validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
2199
2057
  };
2200
2058
  error: {
2201
2059
  type: import("vue").PropType<boolean>;
@@ -2252,10 +2110,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
2252
2110
  default: null;
2253
2111
  };
2254
2112
  messages: {
2255
- /**
2256
- * Событие при фокусе
2257
- * @type { boolean }
2258
- */
2259
2113
  type: import("vue").PropType<string | string[]>;
2260
2114
  default: () => never[];
2261
2115
  };
@@ -2280,19 +2134,23 @@ declare const _sfc_main: import("vue").DefineComponent<{
2280
2134
  default: undefined;
2281
2135
  };
2282
2136
  prependInnerIcon: {
2283
- type: import("vue").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">;
2137
+ type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
2284
2138
  default: undefined;
2285
- 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;
2139
+ validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
2286
2140
  };
2287
2141
  appendInnerIcon: {
2288
- type: import("vue").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">;
2142
+ type: import("vue").PropType<"search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
2289
2143
  default: undefined;
2290
- 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;
2144
+ validator: (value: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
2291
2145
  };
2292
2146
  type: {
2293
- type: import("vue").PropType<"number" | "text" | "password" | "email" | "tel" | "url">;
2147
+ type: import("vue").PropType<"number" | "password" | "text" | "email" | "tel" | "url">;
2294
2148
  default: string;
2295
- validator: (value: "number" | "text" | "password" | "email" | "tel" | "url") => boolean;
2149
+ validator: (value: "number" | "password" | "text" | "email" | "tel" | "url") => boolean;
2150
+ };
2151
+ role: {
2152
+ type: import("vue").PropType<string>;
2153
+ default: undefined;
2296
2154
  };
2297
2155
  placeholder: {
2298
2156
  type: import("vue").PropType<string>;
@@ -2310,6 +2168,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
2310
2168
  type: import("vue").PropType<boolean>;
2311
2169
  default: boolean;
2312
2170
  };
2171
+ persistentClearable: {
2172
+ type: import("vue").PropType<boolean>;
2173
+ default: boolean;
2174
+ };
2313
2175
  'onClick:prependInner': {
2314
2176
  type: import("vue").PropType<(...args: any[]) => any>;
2315
2177
  default: undefined;
@@ -2330,10 +2192,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
2330
2192
  type: import("vue").PropType<boolean>;
2331
2193
  default: boolean;
2332
2194
  };
2333
- noDataText: {
2334
- type: import("vue").PropType<string>;
2335
- default: string;
2336
- };
2337
2195
  hideNoData: {
2338
2196
  type: import("vue").PropType<boolean>;
2339
2197
  default: boolean;
@@ -2342,20 +2200,212 @@ declare const _sfc_main: import("vue").DefineComponent<{
2342
2200
  type: import("vue").PropType<boolean>;
2343
2201
  default: boolean;
2344
2202
  };
2345
- selectAllText: {
2346
- type: import("vue").PropType<string>;
2347
- default: string;
2203
+ listProps: {
2204
+ type: import("vue").PropType<Omit<Partial<{
2205
+ items: any[];
2206
+ itemTitle: import("../../composable").TItemKey;
2207
+ itemValue: import("../../composable").TItemKey;
2208
+ itemChildren: import("../../composable").TItemKey;
2209
+ itemProps: import("../../composable").TItemKey;
2210
+ returnObject: boolean;
2211
+ tag: string;
2212
+ size: NonNullable<"xs" | "sm" | "md" | "lg" | "xl">;
2213
+ disabled: boolean;
2214
+ dark: boolean;
2215
+ required: boolean;
2216
+ selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
2217
+ openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
2218
+ lines: false | "one" | "two" | "three";
2219
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
2220
+ selectStrategy: {
2221
+ type: import("vue").PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
2222
+ default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
2223
+ };
2224
+ openStrategy: {
2225
+ type: import("vue").PropType<NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>>;
2226
+ default: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
2227
+ };
2228
+ opened: import("vue").PropType<unknown[]>;
2229
+ selected: import("vue").PropType<unknown[]>;
2230
+ required: BooleanConstructor;
2231
+ dark: {
2232
+ type: import("vue").PropType<boolean>;
2233
+ default: boolean;
2234
+ };
2235
+ disabled: {
2236
+ type: import("vue").PropType<boolean>;
2237
+ default: boolean;
2238
+ };
2239
+ size: Omit<{
2240
+ type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
2241
+ default: string;
2242
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
2243
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
2244
+ }, "default" | "type"> & {
2245
+ type: import("vue").PropType<NonNullable<"xs" | "sm" | "md" | "lg" | "xl">>;
2246
+ default: NonNullable<"xs" | "sm" | "md" | "lg" | "xl">;
2247
+ };
2248
+ tag: {
2249
+ type: import("vue").PropType<string>;
2250
+ default: string;
2251
+ description: string;
2252
+ };
2253
+ items: {
2254
+ type: import("vue").PropType<any[]>;
2255
+ default: () => never[];
2256
+ };
2257
+ itemTitle: {
2258
+ type: import("vue").PropType<import("../../composable").TItemKey>;
2259
+ default: string;
2260
+ };
2261
+ itemValue: {
2262
+ type: import("vue").PropType<import("../../composable").TItemKey>;
2263
+ default: string;
2264
+ };
2265
+ itemChildren: {
2266
+ type: import("vue").PropType<import("../../composable").TItemKey>;
2267
+ default: string;
2268
+ };
2269
+ itemProps: {
2270
+ type: import("vue").PropType<import("../../composable").TItemKey>;
2271
+ default: string;
2272
+ };
2273
+ returnObject: {
2274
+ type: import("vue").PropType<boolean>;
2275
+ default: boolean;
2276
+ };
2277
+ lines: {
2278
+ type: import("vue").PropType<false | "one" | "two" | "three">;
2279
+ default: string;
2280
+ };
2281
+ }>> & {
2282
+ "onUpdate:selected"?: ((value: unknown[]) => any) | undefined;
2283
+ "onUpdate:opened"?: ((value: unknown[]) => any) | undefined;
2284
+ "onClick:open"?: ((value: {
2285
+ id: unknown;
2286
+ value: boolean;
2287
+ path: unknown[];
2288
+ event: Event;
2289
+ }) => any) | undefined;
2290
+ "onClick:select"?: ((value: {
2291
+ id: unknown;
2292
+ value: boolean;
2293
+ path: unknown[]; /**
2294
+ * Событие выбора всех элементов
2295
+ * @type { boolean }
2296
+ */
2297
+ event: Event;
2298
+ }) => any) | undefined;
2299
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "items" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "returnObject" | "tag" | "size" | "disabled" | "dark" | "required" | "selectStrategy" | "openStrategy" | "lines">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>>;
2300
+ default: undefined;
2348
2301
  };
2349
2302
  }>> & {
2350
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
2351
2303
  "onUpdate:focused"?: ((value: boolean) => any) | undefined;
2304
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
2352
2305
  "onUpdate:menu"?: ((value: boolean) => any) | undefined;
2353
2306
  "onUpdate:selectedAll"?: ((value: boolean) => any) | undefined;
2354
2307
  }, {
2355
- name: string | undefined;
2356
- type: "number" | "text" | "password" | "email" | "tel" | "url";
2357
- description: string;
2358
- disabled: boolean;
2308
+ multiple: boolean;
2309
+ openOnClear: boolean;
2310
+ hideSelected: boolean;
2311
+ hideNoData: boolean;
2312
+ isSelectAll: boolean;
2313
+ listProps: Omit<Partial<{
2314
+ items: any[];
2315
+ itemTitle: import("../../composable").TItemKey;
2316
+ itemValue: import("../../composable").TItemKey;
2317
+ itemChildren: import("../../composable").TItemKey;
2318
+ itemProps: import("../../composable").TItemKey;
2319
+ returnObject: boolean;
2320
+ tag: string;
2321
+ size: NonNullable<"xs" | "sm" | "md" | "lg" | "xl">;
2322
+ disabled: boolean;
2323
+ dark: boolean;
2324
+ required: boolean;
2325
+ selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
2326
+ openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
2327
+ lines: false | "one" | "two" | "three";
2328
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
2329
+ selectStrategy: {
2330
+ type: import("vue").PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
2331
+ default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
2332
+ };
2333
+ openStrategy: {
2334
+ type: import("vue").PropType<NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>>;
2335
+ default: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
2336
+ };
2337
+ opened: import("vue").PropType<unknown[]>;
2338
+ selected: import("vue").PropType<unknown[]>;
2339
+ required: BooleanConstructor;
2340
+ dark: {
2341
+ type: import("vue").PropType<boolean>;
2342
+ default: boolean;
2343
+ };
2344
+ disabled: {
2345
+ type: import("vue").PropType<boolean>;
2346
+ default: boolean;
2347
+ };
2348
+ size: Omit<{
2349
+ type: import("vue").PropType<"xs" | "sm" | "md" | "lg" | "xl">;
2350
+ default: string;
2351
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
2352
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
2353
+ }, "default" | "type"> & {
2354
+ type: import("vue").PropType<NonNullable<"xs" | "sm" | "md" | "lg" | "xl">>;
2355
+ default: NonNullable<"xs" | "sm" | "md" | "lg" | "xl">;
2356
+ };
2357
+ tag: {
2358
+ type: import("vue").PropType<string>;
2359
+ default: string;
2360
+ description: string;
2361
+ };
2362
+ items: {
2363
+ type: import("vue").PropType<any[]>;
2364
+ default: () => never[];
2365
+ };
2366
+ itemTitle: {
2367
+ type: import("vue").PropType<import("../../composable").TItemKey>;
2368
+ default: string;
2369
+ };
2370
+ itemValue: {
2371
+ type: import("vue").PropType<import("../../composable").TItemKey>;
2372
+ default: string;
2373
+ };
2374
+ itemChildren: {
2375
+ type: import("vue").PropType<import("../../composable").TItemKey>;
2376
+ default: string;
2377
+ };
2378
+ itemProps: {
2379
+ type: import("vue").PropType<import("../../composable").TItemKey>;
2380
+ default: string;
2381
+ };
2382
+ returnObject: {
2383
+ type: import("vue").PropType<boolean>;
2384
+ default: boolean;
2385
+ };
2386
+ lines: {
2387
+ type: import("vue").PropType<false | "one" | "two" | "three">;
2388
+ default: string;
2389
+ };
2390
+ }>> & {
2391
+ "onUpdate:selected"?: ((value: unknown[]) => any) | undefined;
2392
+ "onUpdate:opened"?: ((value: unknown[]) => any) | undefined;
2393
+ "onClick:open"?: ((value: {
2394
+ id: unknown;
2395
+ value: boolean;
2396
+ path: unknown[];
2397
+ event: Event;
2398
+ }) => any) | undefined;
2399
+ "onClick:select"?: ((value: {
2400
+ id: unknown;
2401
+ value: boolean;
2402
+ path: unknown[]; /**
2403
+ * Событие выбора всех элементов
2404
+ * @type { boolean }
2405
+ */
2406
+ event: Event;
2407
+ }) => any) | undefined;
2408
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "items" | "itemTitle" | "itemValue" | "itemChildren" | "itemProps" | "returnObject" | "tag" | "size" | "disabled" | "dark" | "required" | "selectStrategy" | "openStrategy" | "lines">, keyof import("vue").VNodeProps | keyof import("vue").AllowedComponentProps>;
2359
2409
  items: any[];
2360
2410
  itemTitle: import("../../composable").TItemKey;
2361
2411
  itemValue: import("../../composable").TItemKey;
@@ -2363,20 +2413,30 @@ declare const _sfc_main: import("vue").DefineComponent<{
2363
2413
  itemChildren: import("../../composable").TItemKey;
2364
2414
  itemProps: import("../../composable").TItemKey;
2365
2415
  returnObject: boolean;
2416
+ description: string;
2366
2417
  size: "xs" | "sm" | "md" | "lg" | "xl";
2418
+ disabled: boolean;
2419
+ type: "number" | "password" | "text" | "email" | "tel" | "url";
2420
+ name: string | undefined;
2421
+ id: string;
2422
+ active: boolean;
2423
+ autofocus: boolean;
2424
+ prefix: string;
2425
+ suffix: string;
2426
+ prependInnerIcon: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
2367
2427
  error: boolean;
2368
2428
  menu: boolean | undefined;
2369
- 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";
2370
- 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";
2371
- readonly: boolean;
2372
- loading: boolean;
2373
- transition: string | boolean | (import("vue").TransitionProps & {
2374
- component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
2375
- });
2376
- messages: string | string[];
2377
- active: boolean;
2378
- id: string;
2429
+ appendInnerIcon: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
2430
+ role: string;
2431
+ placeholder: string;
2432
+ counter: boolean;
2433
+ limit: number;
2434
+ clearable: boolean;
2435
+ persistentClearable: boolean;
2436
+ 'onClick:prependInner': (...args: any[]) => any;
2437
+ 'onClick:appendInner': (...args: any[]) => any;
2379
2438
  label: string;
2439
+ messages: string | string[];
2380
2440
  persistentMessages: boolean;
2381
2441
  errorMessages: string | string[];
2382
2442
  maxErrors: string | number;
@@ -2385,29 +2445,19 @@ declare const _sfc_main: import("vue").DefineComponent<{
2385
2445
  validateOn: "input" | "blur" | "submit";
2386
2446
  validationValue: any;
2387
2447
  hideMessages: boolean;
2388
- focused: boolean;
2448
+ locale: "ru" | "en" | import("../../locale").ILocale;
2449
+ prependIcon: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
2450
+ appendIcon: "search" | "link" | "list" | "filters" | "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" | "checkbox-fill" | "checkbox" | "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" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "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" | "source" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
2389
2451
  'onClick:prepend': (...args: any[]) => any;
2390
2452
  'onClick:append': (...args: any[]) => any;
2391
- autofocus: boolean;
2392
- prefix: string;
2393
- suffix: string;
2394
- 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";
2395
- 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";
2396
- placeholder: string;
2397
- counter: boolean;
2398
- limit: number;
2399
- clearable: boolean;
2400
- 'onClick:prependInner': (...args: any[]) => any;
2401
- 'onClick:appendInner': (...args: any[]) => any;
2402
2453
  eager: boolean;
2403
- multiple: boolean;
2404
- openOnClear: boolean;
2405
- hideSelected: boolean;
2406
- noDataText: string;
2407
- hideNoData: boolean;
2408
- isSelectAll: boolean;
2409
- selectAllText: string;
2454
+ loading: boolean;
2455
+ focused: boolean;
2456
+ readonly: boolean;
2410
2457
  menuProps: any;
2411
2458
  menuHeight: string | number;
2459
+ transition: string | boolean | (import("vue").TransitionProps & {
2460
+ component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
2461
+ });
2412
2462
  }>;
2413
2463
  export default _sfc_main;