@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
@@ -58,6 +58,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
58
58
  type: PropType<boolean>;
59
59
  default: boolean;
60
60
  };
61
+ locale: {
62
+ type: PropType<"ru" | "en" | import("../../locale").ILocale>;
63
+ default: undefined;
64
+ };
61
65
  menu: {
62
66
  type: PropType<boolean | undefined>;
63
67
  default: undefined;
@@ -83,14 +87,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
83
87
  default: undefined;
84
88
  };
85
89
  prependIcon: {
86
- type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
90
+ type: 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">;
87
91
  default: undefined;
88
- 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;
92
+ 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;
89
93
  };
90
94
  appendIcon: {
91
- type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
95
+ type: 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">;
92
96
  default: undefined;
93
- 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;
97
+ 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;
94
98
  };
95
99
  error: {
96
100
  type: PropType<boolean>;
@@ -106,16 +110,17 @@ declare const _sfc_main: import("vue").DefineComponent<{
106
110
  };
107
111
  name: {
108
112
  type: PropType<string | undefined>;
109
- default: undefined; /**
110
- * Событие открытия меню
111
- * @type { boolean }
112
- */
113
+ default: undefined;
113
114
  };
114
115
  rules: {
115
116
  type: PropType<import("../../composable").TValidationRule[]>;
116
117
  default: () => never[];
117
118
  };
118
119
  modelValue: {
120
+ /**
121
+ * Событие при вводе значения в поле
122
+ * @type { string }
123
+ */
119
124
  type: PropType<any>;
120
125
  default: null;
121
126
  };
@@ -174,19 +179,26 @@ declare const _sfc_main: import("vue").DefineComponent<{
174
179
  default: undefined;
175
180
  };
176
181
  prependInnerIcon: {
177
- type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
182
+ type: 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
183
  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;
184
+ 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
185
  };
181
186
  appendInnerIcon: {
182
- type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
187
+ type: 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
188
  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;
189
+ 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
190
  };
186
191
  type: {
187
- type: PropType<"number" | "text" | "password" | "email" | "tel" | "url">;
192
+ type: PropType<"number" | "password" | "text" | "email" | "tel" | "url">;
193
+ default: string;
194
+ validator: (value: "number" | "password" | "text" | "email" | "tel" | "url") => boolean;
195
+ };
196
+ role: Omit<{
197
+ type: PropType<string>;
198
+ default: undefined;
199
+ }, "default" | "type"> & {
200
+ type: PropType<string>;
188
201
  default: string;
189
- validator: (value: "number" | "text" | "password" | "email" | "tel" | "url") => boolean;
190
202
  };
191
203
  placeholder: {
192
204
  type: PropType<string>;
@@ -204,6 +216,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
204
216
  type: PropType<boolean>;
205
217
  default: boolean;
206
218
  };
219
+ persistentClearable: {
220
+ type: PropType<boolean>;
221
+ default: boolean;
222
+ };
207
223
  'onClick:prependInner': {
208
224
  type: PropType<(...args: any[]) => any>;
209
225
  default: undefined;
@@ -249,10 +265,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
249
265
  type: PropType<boolean>;
250
266
  default: boolean;
251
267
  };
252
- noDataText: {
253
- type: PropType<string>;
254
- default: string;
255
- };
256
268
  hideNoData: Omit<{
257
269
  type: PropType<boolean>;
258
270
  default: boolean;
@@ -264,9 +276,101 @@ declare const _sfc_main: import("vue").DefineComponent<{
264
276
  type: PropType<boolean>;
265
277
  default: boolean;
266
278
  };
267
- selectAllText: {
268
- type: PropType<string>;
269
- default: string;
279
+ listProps: {
280
+ type: PropType<Omit<Partial<{
281
+ items: any[];
282
+ itemTitle: import("../../composable").TItemKey;
283
+ itemValue: import("../../composable").TItemKey;
284
+ itemChildren: import("../../composable").TItemKey;
285
+ itemProps: import("../../composable").TItemKey;
286
+ returnObject: boolean;
287
+ tag: string;
288
+ size: NonNullable<"xs" | "sm" | "md" | "lg" | "xl">;
289
+ disabled: boolean;
290
+ dark: boolean;
291
+ required: boolean;
292
+ selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
293
+ openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
294
+ lines: false | "one" | "two" | "three";
295
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
296
+ selectStrategy: {
297
+ type: PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
298
+ default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
299
+ };
300
+ openStrategy: {
301
+ type: PropType<NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>>;
302
+ default: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
303
+ };
304
+ opened: PropType<unknown[]>;
305
+ selected: PropType<unknown[]>;
306
+ required: BooleanConstructor;
307
+ dark: {
308
+ type: PropType<boolean>;
309
+ default: boolean;
310
+ };
311
+ disabled: {
312
+ type: PropType<boolean>;
313
+ default: boolean;
314
+ };
315
+ size: Omit<{
316
+ type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
317
+ default: string;
318
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
319
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
320
+ }, "default" | "type"> & {
321
+ type: PropType<NonNullable<"xs" | "sm" | "md" | "lg" | "xl">>;
322
+ default: NonNullable<"xs" | "sm" | "md" | "lg" | "xl">;
323
+ };
324
+ tag: {
325
+ type: PropType<string>;
326
+ default: string;
327
+ description: string;
328
+ };
329
+ items: {
330
+ type: PropType<any[]>;
331
+ default: () => never[];
332
+ };
333
+ itemTitle: {
334
+ type: PropType<import("../../composable").TItemKey>;
335
+ default: string;
336
+ };
337
+ itemValue: {
338
+ type: PropType<import("../../composable").TItemKey>;
339
+ default: string;
340
+ };
341
+ itemChildren: {
342
+ type: PropType<import("../../composable").TItemKey>;
343
+ default: string;
344
+ };
345
+ itemProps: {
346
+ type: PropType<import("../../composable").TItemKey>;
347
+ default: string;
348
+ };
349
+ returnObject: {
350
+ type: PropType<boolean>;
351
+ default: boolean;
352
+ };
353
+ lines: {
354
+ type: PropType<false | "one" | "two" | "three">;
355
+ default: string;
356
+ };
357
+ }>> & {
358
+ "onUpdate:selected"?: ((value: unknown[]) => any) | undefined;
359
+ "onUpdate:opened"?: ((value: unknown[]) => any) | undefined;
360
+ "onClick:open"?: ((value: {
361
+ id: unknown;
362
+ value: boolean;
363
+ path: unknown[];
364
+ event: Event;
365
+ }) => any) | undefined;
366
+ "onClick:select"?: ((value: {
367
+ id: unknown;
368
+ value: boolean;
369
+ path: unknown[];
370
+ event: Event;
371
+ }) => any) | undefined;
372
+ } & 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>>;
373
+ default: undefined;
270
374
  };
271
375
  /**
272
376
  * Разделители для ввода нескольких значений, при вводе будет создавать новый элемент.
@@ -323,14 +427,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
323
427
  default: undefined;
324
428
  };
325
429
  prependIcon: {
326
- type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
430
+ type: 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">;
327
431
  default: undefined;
328
- 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;
432
+ 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;
329
433
  };
330
434
  appendIcon: {
331
- type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
435
+ type: 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">;
332
436
  default: undefined;
333
- 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;
437
+ 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;
334
438
  };
335
439
  error: {
336
440
  type: PropType<boolean>;
@@ -346,16 +450,17 @@ declare const _sfc_main: import("vue").DefineComponent<{
346
450
  };
347
451
  name: {
348
452
  type: PropType<string | undefined>;
349
- default: undefined; /**
350
- * Событие открытия меню
351
- * @type { boolean }
352
- */
453
+ default: undefined;
353
454
  };
354
455
  rules: {
355
456
  type: PropType<import("../../composable").TValidationRule[]>;
356
457
  default: () => never[];
357
458
  };
358
459
  modelValue: {
460
+ /**
461
+ * Событие при вводе значения в поле
462
+ * @type { string }
463
+ */
359
464
  type: PropType<any>;
360
465
  default: null;
361
466
  };
@@ -414,19 +519,23 @@ declare const _sfc_main: import("vue").DefineComponent<{
414
519
  default: undefined;
415
520
  };
416
521
  prependInnerIcon: {
417
- type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
522
+ type: 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">;
418
523
  default: undefined;
419
- 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;
524
+ 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;
420
525
  };
421
526
  appendInnerIcon: {
422
- type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
527
+ type: 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">;
423
528
  default: undefined;
424
- 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;
529
+ 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;
425
530
  };
426
531
  type: {
427
- type: PropType<"number" | "text" | "password" | "email" | "tel" | "url">;
532
+ type: PropType<"number" | "password" | "text" | "email" | "tel" | "url">;
428
533
  default: string;
429
- validator: (value: "number" | "text" | "password" | "email" | "tel" | "url") => boolean;
534
+ validator: (value: "number" | "password" | "text" | "email" | "tel" | "url") => boolean;
535
+ };
536
+ role: {
537
+ type: PropType<string>;
538
+ default: undefined;
430
539
  };
431
540
  placeholder: {
432
541
  type: PropType<string>;
@@ -444,6 +553,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
444
553
  type: PropType<boolean>;
445
554
  default: boolean;
446
555
  };
556
+ persistentClearable: {
557
+ type: PropType<boolean>;
558
+ default: boolean;
559
+ };
447
560
  'onClick:prependInner': {
448
561
  type: PropType<(...args: any[]) => any>;
449
562
  default: undefined;
@@ -494,16 +607,17 @@ declare const _sfc_main: import("vue").DefineComponent<{
494
607
  };
495
608
  name: {
496
609
  type: PropType<string | undefined>;
497
- default: undefined; /**
498
- * Событие открытия меню
499
- * @type { boolean }
500
- */
610
+ default: undefined;
501
611
  };
502
612
  rules: {
503
613
  type: PropType<import("../../composable").TValidationRule[]>;
504
614
  default: () => never[];
505
615
  };
506
616
  modelValue: {
617
+ /**
618
+ * Событие при вводе значения в поле
619
+ * @type { string }
620
+ */
507
621
  type: PropType<any>;
508
622
  default: null;
509
623
  };
@@ -522,14 +636,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
522
636
  default: boolean;
523
637
  };
524
638
  prependIcon: {
525
- type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
639
+ type: 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">;
526
640
  default: undefined;
527
- 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;
641
+ 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;
528
642
  };
529
643
  appendIcon: {
530
- type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
644
+ type: 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">;
531
645
  default: undefined;
532
- 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;
646
+ 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;
533
647
  };
534
648
  id: {
535
649
  type: PropType<string>;
@@ -555,25 +669,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
555
669
  type: PropType<boolean>;
556
670
  default: boolean;
557
671
  };
558
- }, {
559
- isFocused: import("vue").Ref<boolean>;
560
- hasPrepend: import("vue").ComputedRef<boolean>;
561
- hasAppend: import("vue").ComputedRef<boolean>;
562
- hasDefault: import("vue").ComputedRef<boolean>;
563
- hasMessages: import("vue").ComputedRef<number | boolean>;
564
- slotProps: import("vue").ComputedRef<import("../../composable").IInputSlot>;
565
- messagesId: import("vue").ComputedRef<string>;
566
- messages: import("vue").ComputedRef<string | string[]>;
567
- isValid: import("vue").ComputedRef<boolean | null>;
568
- validationClasses: import("vue").ComputedRef<Record<string, boolean>>;
569
- focusClasses: import("vue").ComputedRef<Record<string, boolean>>;
570
- sizeClasses: import("vue").ComputedRef<string>;
571
- reset: () => void;
572
- resetValidation: () => void;
573
- validate: () => Promise<string[]>;
574
- handleClickPrepend: (event: MouseEvent) => void;
575
- handleClickAppend: (event: MouseEvent) => void;
576
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
672
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
577
673
  'update:modelValue': (value: any) => boolean;
578
674
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
579
675
  'onClick:prepend': PropType<(...args: any[]) => any>;
@@ -610,16 +706,17 @@ declare const _sfc_main: import("vue").DefineComponent<{
610
706
  };
611
707
  name: {
612
708
  type: PropType<string | undefined>;
613
- default: undefined; /**
614
- * Событие открытия меню
615
- * @type { boolean }
616
- */
709
+ default: undefined;
617
710
  };
618
711
  rules: {
619
712
  type: PropType<import("../../composable").TValidationRule[]>;
620
713
  default: () => never[];
621
714
  };
622
715
  modelValue: {
716
+ /**
717
+ * Событие при вводе значения в поле
718
+ * @type { string }
719
+ */
623
720
  type: PropType<any>;
624
721
  default: null;
625
722
  };
@@ -638,14 +735,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
638
735
  default: boolean;
639
736
  };
640
737
  prependIcon: {
641
- type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
738
+ type: 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">;
642
739
  default: undefined;
643
- 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;
740
+ 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;
644
741
  };
645
742
  appendIcon: {
646
- type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
743
+ type: 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">;
647
744
  default: undefined;
648
- 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;
745
+ 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;
649
746
  };
650
747
  id: {
651
748
  type: PropType<string>;
@@ -674,18 +771,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
674
771
  }>> & {
675
772
  "onUpdate:modelValue"?: ((value: any) => any) | undefined;
676
773
  }, {
677
- name: string | undefined;
678
- description: string;
679
- disabled: boolean;
680
774
  value: any;
775
+ description: string;
681
776
  size: "xs" | "sm" | "md" | "lg" | "xl";
682
- error: boolean;
683
- 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";
684
- 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";
685
- readonly: boolean;
686
- messages: string | string[];
777
+ disabled: boolean;
778
+ name: string | undefined;
687
779
  id: string;
780
+ error: boolean;
688
781
  label: string;
782
+ messages: string | string[];
689
783
  persistentMessages: boolean;
690
784
  errorMessages: string | string[];
691
785
  maxErrors: string | number;
@@ -694,21 +788,26 @@ declare const _sfc_main: import("vue").DefineComponent<{
694
788
  validateOn: "input" | "blur" | "submit";
695
789
  validationValue: any;
696
790
  hideMessages: boolean;
791
+ 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";
792
+ 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";
697
793
  focused: boolean;
794
+ readonly: boolean;
698
795
  }> | undefined>;
699
796
  isFocused: import("vue").Ref<boolean>;
700
797
  rootAttrs: import("vue").Ref<{}>;
701
798
  inputAttrs: import("vue").Ref<{}>;
702
799
  inputProps: import("vue").Ref<{
703
- readonly type?: "number" | "text" | "password" | "email" | "tel" | "url" | undefined;
704
- readonly disabled?: boolean | undefined;
705
800
  readonly value?: any;
706
801
  readonly size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
802
+ readonly disabled?: boolean | undefined;
803
+ readonly type?: "number" | "password" | "text" | "email" | "tel" | "url" | undefined;
804
+ readonly active?: boolean | undefined;
805
+ readonly autofocus?: boolean | undefined;
707
806
  readonly error?: boolean | undefined;
708
- readonly readonly?: boolean | undefined;
709
- readonly loading?: boolean | undefined;
807
+ readonly counter?: boolean | undefined;
808
+ readonly clearable?: boolean | undefined;
809
+ readonly persistentClearable?: boolean | undefined;
710
810
  readonly messages?: string | string[] | undefined;
711
- readonly active?: boolean | undefined;
712
811
  readonly persistentMessages?: boolean | undefined;
713
812
  readonly errorMessages?: string | string[] | undefined;
714
813
  readonly maxErrors?: string | number | undefined;
@@ -718,29 +817,29 @@ declare const _sfc_main: import("vue").DefineComponent<{
718
817
  readonly modelValue?: any;
719
818
  readonly validateOn?: "input" | "blur" | "submit" | undefined;
720
819
  readonly hideMessages?: boolean | undefined;
820
+ readonly loading?: boolean | undefined;
721
821
  readonly focused?: boolean | undefined;
722
- readonly autofocus?: boolean | undefined;
723
- readonly counter?: boolean | undefined;
724
- readonly clearable?: boolean | undefined;
725
- readonly name?: string | undefined;
822
+ readonly readonly?: boolean | undefined;
726
823
  readonly description?: string | undefined;
727
- 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;
728
- 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;
824
+ readonly name?: string | undefined;
729
825
  readonly id?: string | undefined;
730
- readonly label?: string | undefined;
731
- readonly validationValue?: any;
732
- readonly 'onClick:prepend'?: (((...args: any[]) => any) & ((event: MouseEvent) => any)) | undefined;
733
- readonly 'onClick:append'?: (((...args: any[]) => any) & ((event: MouseEvent) => any)) | undefined;
734
826
  readonly prefix?: string | undefined;
735
827
  readonly suffix?: string | undefined;
736
- 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;
737
- 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;
828
+ 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;
829
+ 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;
830
+ readonly role?: string | undefined;
738
831
  readonly placeholder?: string | undefined;
739
832
  readonly limit?: number | undefined;
740
833
  readonly 'onClick:prependInner'?: (((...args: any[]) => any) & ((event: MouseEvent) => any)) | undefined;
741
834
  readonly 'onClick:appendInner'?: (((...args: any[]) => any) & ((event: MouseEvent) => any)) | undefined;
742
- readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
835
+ readonly label?: string | undefined;
836
+ readonly validationValue?: any;
837
+ 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;
838
+ 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;
839
+ readonly 'onClick:prepend'?: (((...args: any[]) => any) & ((event: MouseEvent) => any)) | undefined;
840
+ readonly 'onClick:append'?: (((...args: any[]) => any) & ((event: MouseEvent) => any)) | undefined;
743
841
  readonly "onUpdate:focused"?: ((value: boolean) => any) | undefined;
842
+ readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
744
843
  readonly "onClick:clear"?: ((event: MouseEvent) => any) | undefined;
745
844
  readonly "onClick:control"?: ((event: MouseEvent) => any) | undefined;
746
845
  readonly "onMousedown:control"?: ((event: MouseEvent) => any) | undefined;
@@ -761,6 +860,20 @@ declare const _sfc_main: import("vue").DefineComponent<{
761
860
  }>;
762
861
  fieldClasses: import("vue").ComputedRef<Record<string, boolean>>;
763
862
  loadingClasses: import("vue").ComputedRef<string | undefined>;
863
+ classesStates: Readonly<{
864
+ hover: "cds-state-hover";
865
+ focus: "cds-state-focus";
866
+ active: "cds-state-active";
867
+ visited: "cds-state-visited";
868
+ disabled: "cds-state-disabled";
869
+ checked: "cds-state-checked";
870
+ indeterminate: "cds-state-indeterminate";
871
+ invalid: "cds-state-invalid";
872
+ empty: "cds-state-empty";
873
+ loading: "cds-state-loading";
874
+ readonly: "cds-state-readonly";
875
+ dragging: "cds-state-dragging";
876
+ }>;
764
877
  onBlur: () => void;
765
878
  onFocus: () => void;
766
879
  onInput: (event: Event) => void;
@@ -778,7 +891,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
778
891
  'click:prependInner': (event: MouseEvent) => true;
779
892
  'click:appendInner': (event: MouseEvent) => true;
780
893
  'click:control': (event: MouseEvent) => true;
781
- 'mousedown:control': (event: MouseEvent) => true;
894
+ 'mousedown:control': (event: MouseEvent) => true; /**
895
+ * Событие открытия меню
896
+ * @type { boolean }
897
+ */
782
898
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
783
899
  size: {
784
900
  type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
@@ -811,14 +927,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
811
927
  default: undefined;
812
928
  };
813
929
  prependIcon: {
814
- type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
930
+ type: 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">;
815
931
  default: undefined;
816
- 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;
932
+ 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;
817
933
  };
818
934
  appendIcon: {
819
- type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
935
+ type: 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">;
820
936
  default: undefined;
821
- 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;
937
+ 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;
822
938
  };
823
939
  error: {
824
940
  type: PropType<boolean>;
@@ -834,16 +950,17 @@ declare const _sfc_main: import("vue").DefineComponent<{
834
950
  };
835
951
  name: {
836
952
  type: PropType<string | undefined>;
837
- default: undefined; /**
838
- * Событие открытия меню
839
- * @type { boolean }
840
- */
953
+ default: undefined;
841
954
  };
842
955
  rules: {
843
956
  type: PropType<import("../../composable").TValidationRule[]>;
844
957
  default: () => never[];
845
958
  };
846
959
  modelValue: {
960
+ /**
961
+ * Событие при вводе значения в поле
962
+ * @type { string }
963
+ */
847
964
  type: PropType<any>;
848
965
  default: null;
849
966
  };
@@ -902,19 +1019,23 @@ declare const _sfc_main: import("vue").DefineComponent<{
902
1019
  default: undefined;
903
1020
  };
904
1021
  prependInnerIcon: {
905
- type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
1022
+ type: 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">;
906
1023
  default: undefined;
907
- 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;
1024
+ 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;
908
1025
  };
909
1026
  appendInnerIcon: {
910
- type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
1027
+ type: 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">;
911
1028
  default: undefined;
912
- 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;
1029
+ 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;
913
1030
  };
914
1031
  type: {
915
- type: PropType<"number" | "text" | "password" | "email" | "tel" | "url">;
1032
+ type: PropType<"number" | "password" | "text" | "email" | "tel" | "url">;
916
1033
  default: string;
917
- validator: (value: "number" | "text" | "password" | "email" | "tel" | "url") => boolean;
1034
+ validator: (value: "number" | "password" | "text" | "email" | "tel" | "url") => boolean;
1035
+ };
1036
+ role: {
1037
+ type: PropType<string>;
1038
+ default: undefined;
918
1039
  };
919
1040
  placeholder: {
920
1041
  type: PropType<string>;
@@ -932,6 +1053,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
932
1053
  type: PropType<boolean>;
933
1054
  default: boolean;
934
1055
  };
1056
+ persistentClearable: {
1057
+ type: PropType<boolean>;
1058
+ default: boolean;
1059
+ };
935
1060
  'onClick:prependInner': {
936
1061
  type: PropType<(...args: any[]) => any>;
937
1062
  default: undefined;
@@ -941,31 +1066,40 @@ declare const _sfc_main: import("vue").DefineComponent<{
941
1066
  default: undefined;
942
1067
  };
943
1068
  }>> & {
944
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
1069
+ "onClick:prependInner"?: ((event: MouseEvent) => any) | undefined;
1070
+ "onClick:appendInner"?: ((event: MouseEvent) => any) | undefined;
945
1071
  "onClick:prepend"?: ((event: MouseEvent) => any) | undefined;
946
1072
  "onClick:append"?: ((event: MouseEvent) => any) | undefined;
947
1073
  "onUpdate:focused"?: ((value: boolean) => any) | undefined;
948
- "onClick:prependInner"?: ((event: MouseEvent) => any) | undefined;
949
- "onClick:appendInner"?: ((event: MouseEvent) => any) | undefined;
1074
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
950
1075
  "onClick:clear"?: ((event: MouseEvent) => any) | undefined;
951
1076
  "onClick:control"?: ((event: MouseEvent) => any) | undefined;
952
1077
  "onMousedown:control"?: ((event: MouseEvent) => any) | undefined;
953
1078
  }, {
954
- name: string | undefined;
955
- type: "number" | "text" | "password" | "email" | "tel" | "url";
956
- description: string;
957
- disabled: boolean;
958
1079
  value: any;
1080
+ description: string;
959
1081
  size: "xs" | "sm" | "md" | "lg" | "xl";
960
- error: boolean;
961
- 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";
962
- 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";
963
- readonly: boolean;
964
- loading: boolean;
965
- messages: string | string[];
966
- active: boolean;
1082
+ disabled: boolean;
1083
+ type: "number" | "password" | "text" | "email" | "tel" | "url";
1084
+ name: string | undefined;
967
1085
  id: string;
1086
+ active: boolean;
1087
+ autofocus: boolean;
1088
+ prefix: string;
1089
+ suffix: string;
1090
+ 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";
1091
+ error: boolean;
1092
+ 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";
1093
+ role: string;
1094
+ placeholder: string;
1095
+ counter: boolean;
1096
+ limit: number;
1097
+ clearable: boolean;
1098
+ persistentClearable: boolean;
1099
+ 'onClick:prependInner': (...args: any[]) => any;
1100
+ 'onClick:appendInner': (...args: any[]) => any;
968
1101
  label: string;
1102
+ messages: string | string[];
969
1103
  persistentMessages: boolean;
970
1104
  errorMessages: string | string[];
971
1105
  maxErrors: string | number;
@@ -974,20 +1108,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
974
1108
  validateOn: "input" | "blur" | "submit";
975
1109
  validationValue: any;
976
1110
  hideMessages: boolean;
977
- focused: boolean;
1111
+ 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";
1112
+ 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";
978
1113
  'onClick:prepend': (...args: any[]) => any;
979
1114
  'onClick:append': (...args: any[]) => any;
980
- autofocus: boolean;
981
- prefix: string;
982
- suffix: string;
983
- 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";
984
- 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";
985
- placeholder: string;
986
- counter: boolean;
987
- limit: number;
988
- clearable: boolean;
989
- 'onClick:prependInner': (...args: any[]) => any;
990
- 'onClick:appendInner': (...args: any[]) => any;
1115
+ loading: boolean;
1116
+ focused: boolean;
1117
+ readonly: boolean;
991
1118
  }> | undefined>;
992
1119
  menuRef: import("vue").Ref<import("vue").DefineComponent<{
993
1120
  transition: {
@@ -1052,7 +1179,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1052
1179
  default: string;
1053
1180
  };
1054
1181
  origin: {
1055
- type: PropType<import('../../utils').TAnchor | "auto" | "overlap">;
1182
+ type: PropType<import('../../utils').TAnchor | "auto" | "overlap">; /**
1183
+ * Событие выбора всех элементов
1184
+ * @type { boolean }
1185
+ */
1056
1186
  default: string;
1057
1187
  };
1058
1188
  offset: {
@@ -1143,337 +1273,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
1143
1273
  type: PropType<Record<string, unknown>>;
1144
1274
  default: () => {};
1145
1275
  };
1276
+ noClickAnimation: {
1277
+ type: PropType<boolean>;
1278
+ default: boolean;
1279
+ };
1146
1280
  id: {
1147
1281
  type: PropType<string>;
1148
1282
  default: undefined;
1149
1283
  };
1150
- }, {
1151
- overlay: import("vue").Ref<import("vue").DefineComponent<{
1152
- transition: {
1153
- type: PropType<string | boolean | (import("vue").TransitionProps & {
1154
- component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
1155
- })>;
1156
- default: string;
1157
- validator: (value: unknown) => boolean;
1158
- };
1159
- eager: {
1160
- type: PropType<boolean>;
1161
- default: boolean;
1162
- };
1163
- scrollStrategy: {
1164
- type: PropType<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
1165
- default: string;
1166
- validator: (value: any) => boolean;
1167
- };
1168
- locationStrategy: {
1169
- type: PropType<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
1170
- updateLocation: (event: Event) => void;
1171
- } | undefined)>;
1172
- default: string;
1173
- validator: (value: any) => boolean;
1174
- };
1175
- location: {
1176
- type: PropType<import('../../utils').TAnchor>;
1177
- default: string;
1178
- };
1179
- origin: {
1180
- type: PropType<import('../../utils').TAnchor | "auto" | "overlap">;
1181
- default: string;
1182
- };
1183
- offset: {
1184
- type: PropType<string | number | number[]>;
1185
- default: null;
1186
- };
1187
- height: {
1188
- type: PropType<string | number>;
1189
- default: string;
1190
- };
1191
- width: {
1192
- type: PropType<string | number>;
1193
- default: string;
1194
- };
1195
- maxHeight: {
1196
- type: PropType<string | number>;
1197
- default: string;
1198
- };
1199
- maxWidth: {
1200
- type: PropType<string | number>;
1201
- default: string;
1202
- };
1203
- minHeight: {
1204
- type: PropType<string | number>;
1205
- default: string;
1206
- };
1207
- minWidth: {
1208
- type: PropType<string | number>;
1209
- default: string;
1210
- };
1211
- closeDelay: {
1212
- type: PropType<string | number>;
1213
- default: null;
1214
- };
1215
- openDelay: {
1216
- type: PropType<string | number>;
1217
- default: null;
1218
- };
1219
- activator: {
1220
- type: PropType<string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element>;
1221
- default: null;
1222
- };
1223
- activatorProps: {
1224
- type: PropType<Record<string, any>>;
1225
- default: () => {};
1226
- };
1227
- openOnClick: {
1228
- type: PropType<boolean | undefined>;
1229
- default: undefined;
1230
- };
1231
- openOnHover: {
1232
- type: PropType<boolean>;
1233
- default: boolean;
1234
- };
1235
- openOnFocus: {
1236
- type: PropType<boolean | undefined>;
1237
- default: undefined;
1238
- };
1239
- closeOnContentClick: {
1240
- type: PropType<boolean>;
1241
- default: boolean;
1242
- };
1243
- attach: {
1244
- type: PropType<string | boolean | Element>;
1245
- default: boolean;
1246
- };
1247
- contained: {
1248
- type: PropType<boolean>;
1249
- default: boolean;
1250
- };
1251
- disabled: {
1252
- type: PropType<boolean>;
1253
- default: boolean;
1254
- };
1255
- persistent: {
1256
- type: PropType<boolean>;
1257
- default: boolean;
1258
- };
1259
- scrim: {
1260
- type: PropType<string | boolean>;
1261
- default: boolean;
1262
- };
1263
- modelValue: {
1264
- type: PropType<boolean>;
1265
- default: boolean;
1266
- };
1267
- closeOnBack: {
1268
- type: PropType<boolean>;
1269
- default: boolean;
1270
- };
1271
- zIndex: {
1272
- type: PropType<string | number>;
1273
- default: number;
1274
- };
1275
- contentClasses: {
1276
- type: PropType<string | string[] | Record<string, boolean>>;
1277
- default: null;
1278
- };
1279
- contentProps: {
1280
- type: PropType<Record<string, unknown>>;
1281
- default: () => {};
1282
- };
1283
- absolute: {
1284
- type: PropType<boolean>;
1285
- default: boolean;
1286
- };
1287
- }, {
1288
- activatorEl: import("vue").Ref<HTMLElement | undefined>;
1289
- contentEl: import("vue").Ref<HTMLElement | undefined>;
1290
- globalTop: Readonly<import("vue").Ref<boolean>>;
1291
- localTop: import("vue").ComputedRef<boolean>;
1292
- updateLocation: import("vue").Ref<((event: Event) => void) | undefined>;
1293
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1294
- 'update:modelValue': (value: boolean) => true;
1295
- 'click:outside': (event: MouseEvent) => true;
1296
- afterLeave: () => true;
1297
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1298
- transition: {
1299
- type: PropType<string | boolean | (import("vue").TransitionProps & {
1300
- component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
1301
- })>;
1302
- default: string;
1303
- validator: (value: unknown) => boolean;
1304
- };
1305
- eager: {
1306
- type: PropType<boolean>;
1307
- default: boolean;
1308
- };
1309
- scrollStrategy: {
1310
- type: PropType<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
1311
- default: string;
1312
- validator: (value: any) => boolean;
1313
- };
1314
- locationStrategy: {
1315
- type: PropType<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
1316
- updateLocation: (event: Event) => void;
1317
- } | undefined)>;
1318
- default: string;
1319
- validator: (value: any) => boolean;
1320
- };
1321
- location: {
1322
- type: PropType<import('../../utils').TAnchor>;
1323
- default: string;
1324
- };
1325
- origin: {
1326
- type: PropType<import('../../utils').TAnchor | "auto" | "overlap">;
1327
- default: string;
1328
- };
1329
- offset: {
1330
- type: PropType<string | number | number[]>;
1331
- default: null;
1332
- };
1333
- height: {
1334
- type: PropType<string | number>;
1335
- default: string;
1336
- };
1337
- width: {
1338
- type: PropType<string | number>;
1339
- default: string;
1340
- };
1341
- maxHeight: {
1342
- type: PropType<string | number>;
1343
- default: string;
1344
- };
1345
- maxWidth: {
1346
- type: PropType<string | number>;
1347
- default: string;
1348
- };
1349
- minHeight: {
1350
- type: PropType<string | number>;
1351
- default: string;
1352
- };
1353
- minWidth: {
1354
- type: PropType<string | number>;
1355
- default: string;
1356
- };
1357
- closeDelay: {
1358
- type: PropType<string | number>;
1359
- default: null;
1360
- };
1361
- openDelay: {
1362
- type: PropType<string | number>;
1363
- default: null;
1364
- };
1365
- activator: {
1366
- type: PropType<string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element>;
1367
- default: null;
1368
- };
1369
- activatorProps: {
1370
- type: PropType<Record<string, any>>;
1371
- default: () => {};
1372
- };
1373
- openOnClick: {
1374
- type: PropType<boolean | undefined>;
1375
- default: undefined;
1376
- };
1377
- openOnHover: {
1378
- type: PropType<boolean>;
1379
- default: boolean;
1380
- };
1381
- openOnFocus: {
1382
- type: PropType<boolean | undefined>;
1383
- default: undefined;
1384
- };
1385
- closeOnContentClick: {
1386
- type: PropType<boolean>;
1387
- default: boolean;
1388
- };
1389
- attach: {
1390
- type: PropType<string | boolean | Element>;
1391
- default: boolean;
1392
- };
1393
- contained: {
1394
- type: PropType<boolean>;
1395
- default: boolean;
1396
- };
1397
- disabled: {
1398
- type: PropType<boolean>;
1399
- default: boolean;
1400
- };
1401
- persistent: {
1402
- type: PropType<boolean>;
1403
- default: boolean;
1404
- };
1405
- scrim: {
1406
- type: PropType<string | boolean>;
1407
- default: boolean;
1408
- };
1409
- modelValue: {
1410
- type: PropType<boolean>;
1411
- default: boolean;
1412
- };
1413
- closeOnBack: {
1414
- type: PropType<boolean>;
1415
- default: boolean;
1416
- };
1417
- zIndex: {
1418
- type: PropType<string | number>;
1419
- default: number;
1420
- };
1421
- contentClasses: {
1422
- type: PropType<string | string[] | Record<string, boolean>>;
1423
- default: null;
1424
- };
1425
- contentProps: {
1426
- type: PropType<Record<string, unknown>>;
1427
- default: () => {};
1428
- };
1429
- absolute: {
1430
- type: PropType<boolean>;
1431
- default: boolean;
1432
- };
1433
- }>> & {
1434
- onAfterLeave?: (() => any) | undefined;
1435
- "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1436
- "onClick:outside"?: ((event: MouseEvent) => any) | undefined;
1437
- }, {
1438
- disabled: boolean;
1439
- location: import('../../utils').TAnchor;
1440
- transition: string | boolean | (import("vue").TransitionProps & {
1441
- component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
1442
- });
1443
- origin: import('../../utils').TAnchor | "auto" | "overlap";
1444
- modelValue: boolean;
1445
- attach: string | boolean | Element;
1446
- contained: boolean;
1447
- persistent: boolean;
1448
- scrim: string | boolean;
1449
- closeOnBack: boolean;
1450
- zIndex: string | number;
1451
- contentClasses: string | string[] | Record<string, boolean>;
1452
- contentProps: Record<string, unknown>;
1453
- activator: string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element;
1454
- activatorProps: Record<string, any>;
1455
- openOnClick: boolean | undefined;
1456
- openOnHover: boolean;
1457
- openOnFocus: boolean | undefined;
1458
- closeOnContentClick: boolean;
1459
- closeDelay: string | number;
1460
- openDelay: string | number;
1461
- locationStrategy: "static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
1462
- updateLocation: (event: Event) => void;
1463
- } | undefined);
1464
- offset: string | number | number[];
1465
- scrollStrategy: "none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void);
1466
- eager: boolean;
1467
- height: string | number;
1468
- width: string | number;
1469
- maxHeight: string | number;
1470
- maxWidth: string | number;
1471
- minHeight: string | number;
1472
- minWidth: string | number;
1473
- absolute: boolean;
1474
- }> | undefined>;
1475
- openChildren: import("vue").Ref<number>;
1476
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1284
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1477
1285
  'update:modelValue': (value: boolean) => true;
1478
1286
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1479
1287
  transition: {
@@ -1538,7 +1346,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1538
1346
  default: string;
1539
1347
  };
1540
1348
  origin: {
1541
- type: PropType<import('../../utils').TAnchor | "auto" | "overlap">;
1349
+ type: PropType<import('../../utils').TAnchor | "auto" | "overlap">; /**
1350
+ * Событие выбора всех элементов
1351
+ * @type { boolean }
1352
+ */
1542
1353
  default: string;
1543
1354
  };
1544
1355
  offset: {
@@ -1629,6 +1440,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
1629
1440
  type: PropType<Record<string, unknown>>;
1630
1441
  default: () => {};
1631
1442
  };
1443
+ noClickAnimation: {
1444
+ type: PropType<boolean>;
1445
+ default: boolean;
1446
+ };
1632
1447
  id: {
1633
1448
  type: PropType<string>;
1634
1449
  default: undefined;
@@ -1637,13 +1452,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
1637
1452
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1638
1453
  }, {
1639
1454
  disabled: boolean;
1455
+ id: string;
1640
1456
  location: import('../../utils').TAnchor;
1457
+ modelValue: boolean;
1458
+ eager: boolean;
1641
1459
  transition: string | boolean | (import("vue").TransitionProps & {
1642
1460
  component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
1643
1461
  });
1644
- origin: import('../../utils').TAnchor | "auto" | "overlap";
1645
- id: string;
1646
- modelValue: boolean;
1647
1462
  attach: string | boolean | Element;
1648
1463
  contained: boolean;
1649
1464
  persistent: boolean;
@@ -1652,6 +1467,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1652
1467
  zIndex: string | number;
1653
1468
  contentClasses: string | string[] | Record<string, boolean>;
1654
1469
  contentProps: Record<string, unknown>;
1470
+ noClickAnimation: boolean;
1655
1471
  activator: string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element;
1656
1472
  activatorProps: Record<string, any>;
1657
1473
  openOnClick: boolean | undefined;
@@ -1663,9 +1479,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
1663
1479
  locationStrategy: NonNullable<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
1664
1480
  updateLocation: (event: Event) => void;
1665
1481
  } | undefined)>;
1482
+ origin: import('../../utils').TAnchor | "auto" | "overlap";
1666
1483
  offset: string | number | number[];
1667
1484
  scrollStrategy: NonNullable<"none" | "close" | "block" | "reposition" | ((data: import("../CdsOverlay/composable").IScrollStrategyData, props: import("../CdsOverlay/composable").IScrollStrategyProps, scope: import("vue").EffectScope) => void)>;
1668
- eager: boolean;
1669
1485
  height: string | number;
1670
1486
  width: string | number;
1671
1487
  maxHeight: string | number;
@@ -1735,11 +1551,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1735
1551
  type: PropType<false | "one" | "two" | "three">;
1736
1552
  default: string;
1737
1553
  };
1738
- }, {
1739
- open: (id: unknown, value: boolean, event?: Event | undefined) => void;
1740
- select: (id: unknown, value: boolean, event?: Event | undefined) => void;
1741
- focus: (location?: import("../CdsList/composable").TFocusLocation | undefined) => void;
1742
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1554
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1743
1555
  'update:selected': (value: unknown[]) => boolean;
1744
1556
  'update:opened': (value: unknown[]) => boolean;
1745
1557
  'click:open': (value: {
@@ -1832,25 +1644,27 @@ declare const _sfc_main: import("vue").DefineComponent<{
1832
1644
  event: Event;
1833
1645
  }) => any) | undefined;
1834
1646
  }, {
1835
- dark: boolean;
1836
- required: boolean;
1837
- disabled: boolean;
1838
- tag: string;
1839
1647
  items: any[];
1840
1648
  itemTitle: import("../../composable").TItemKey;
1841
1649
  itemValue: import("../../composable").TItemKey;
1842
1650
  itemChildren: import("../../composable").TItemKey;
1843
1651
  itemProps: import("../../composable").TItemKey;
1844
1652
  returnObject: boolean;
1653
+ tag: string;
1845
1654
  size: NonNullable<"xs" | "sm" | "md" | "lg" | "xl">;
1655
+ disabled: boolean;
1656
+ dark: boolean;
1657
+ required: boolean;
1846
1658
  selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
1847
1659
  openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
1848
1660
  lines: false | "one" | "two" | "three";
1849
1661
  }> | undefined>;
1850
1662
  inputProps: import("vue").Ref<{
1851
- readonly type?: "number" | "text" | "password" | "email" | "tel" | "url" | undefined;
1852
- readonly disabled?: boolean | undefined;
1853
- readonly delimiters?: string[] | undefined;
1663
+ readonly multiple?: boolean | undefined;
1664
+ readonly openOnClear?: boolean | undefined;
1665
+ readonly hideSelected?: boolean | undefined;
1666
+ readonly hideNoData?: boolean | undefined;
1667
+ readonly isSelectAll?: boolean | undefined;
1854
1668
  readonly items?: any[] | undefined;
1855
1669
  readonly itemTitle?: import("../../composable").TItemKey | undefined;
1856
1670
  readonly itemValue?: import("../../composable").TItemKey | undefined;
@@ -1859,9 +1673,39 @@ declare const _sfc_main: import("vue").DefineComponent<{
1859
1673
  readonly itemProps?: import("../../composable").TItemKey | undefined;
1860
1674
  readonly returnObject?: boolean | undefined;
1861
1675
  readonly size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
1676
+ readonly disabled?: boolean | undefined;
1677
+ readonly type?: "number" | "password" | "text" | "email" | "tel" | "url" | undefined;
1678
+ readonly delimiters?: string[] | undefined;
1679
+ readonly customFilter?: ((value: string, query: string, item?: any) => import("../../composable").TFilterMath) | undefined;
1680
+ readonly customKeyFilter?: {
1681
+ [x: string]: (value: string, query: string, item?: any) => import("../../composable").TFilterMath;
1682
+ } | undefined;
1683
+ readonly filterKeys?: NonNullable<string | string[]> | undefined;
1684
+ readonly filterMode?: ("every" | "some" | "union" | "intersection") | undefined;
1685
+ readonly noFilter?: boolean | undefined;
1686
+ readonly active?: boolean | undefined;
1687
+ readonly autofocus?: boolean | undefined;
1862
1688
  readonly error?: boolean | undefined;
1863
- readonly readonly?: boolean | undefined;
1689
+ readonly role?: string | undefined;
1690
+ readonly counter?: boolean | undefined;
1691
+ readonly clearable?: boolean | undefined;
1692
+ readonly persistentClearable?: boolean | undefined;
1693
+ readonly messages?: string | string[] | undefined;
1694
+ readonly persistentMessages?: boolean | undefined;
1695
+ readonly errorMessages?: string | string[] | undefined;
1696
+ readonly maxErrors?: string | number | undefined;
1697
+ readonly rules?: (import("../../composable").TValidationResult | ((value: any) => import("../../composable").TValidationResult) | ((value: any) => PromiseLike<import("../../composable").TValidationResult>) | {
1698
+ 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>;
1699
+ })[] | undefined;
1700
+ readonly modelValue?: any;
1701
+ readonly validateOn?: "input" | "blur" | "submit" | undefined;
1702
+ readonly hideMessages?: boolean | undefined;
1703
+ readonly eager?: boolean | undefined;
1864
1704
  readonly loading?: boolean | undefined;
1705
+ readonly focused?: boolean | undefined;
1706
+ readonly readonly?: boolean | undefined;
1707
+ readonly menuProps?: any;
1708
+ readonly menuHeight?: string | number | undefined;
1865
1709
  readonly transition?: string | boolean | {
1866
1710
  name?: string | undefined;
1867
1711
  type?: ("transition" | "animation") | undefined;
@@ -2016,58 +1860,111 @@ declare const _sfc_main: import("vue").DefineComponent<{
2016
1860
  beforeRouteLeave?: import("vue-router").NavigationGuard | undefined;
2017
1861
  } | undefined;
2018
1862
  } | undefined;
2019
- readonly messages?: string | string[] | undefined;
2020
- readonly active?: boolean | undefined;
2021
- readonly persistentMessages?: boolean | undefined;
2022
- readonly errorMessages?: string | string[] | undefined;
2023
- readonly maxErrors?: string | number | undefined;
2024
- readonly rules?: (import("../../composable").TValidationResult | ((value: any) => import("../../composable").TValidationResult) | ((value: any) => PromiseLike<import("../../composable").TValidationResult>) | {
2025
- 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>;
2026
- })[] | undefined;
2027
- readonly modelValue?: any;
2028
- readonly validateOn?: "input" | "blur" | "submit" | undefined;
2029
- readonly hideMessages?: boolean | undefined;
2030
- readonly focused?: boolean | undefined;
2031
- readonly autofocus?: boolean | undefined;
2032
- readonly counter?: boolean | undefined;
2033
- readonly clearable?: boolean | undefined;
2034
- readonly eager?: boolean | undefined;
2035
- readonly multiple?: boolean | undefined;
2036
- readonly openOnClear?: boolean | undefined;
2037
- readonly hideSelected?: boolean | undefined;
2038
- readonly noDataText?: string | undefined;
2039
- readonly hideNoData?: boolean | undefined;
2040
- readonly isSelectAll?: boolean | undefined;
2041
- readonly selectAllText?: string | undefined;
2042
- readonly customFilter?: ((value: string, query: string, item?: any) => import("../../composable").TFilterMath) | undefined;
2043
- readonly customKeyFilter?: {
2044
- [x: string]: (value: string, query: string, item?: any) => import("../../composable").TFilterMath;
1863
+ readonly listProps?: {
1864
+ items?: any[] | undefined;
1865
+ itemTitle?: import("../../composable").TItemKey | undefined;
1866
+ itemValue?: import("../../composable").TItemKey | undefined;
1867
+ itemChildren?: import("../../composable").TItemKey | undefined;
1868
+ itemProps?: import("../../composable").TItemKey | undefined;
1869
+ returnObject?: boolean | undefined;
1870
+ tag?: string | undefined;
1871
+ size?: NonNullable<"xs" | "sm" | "md" | "lg" | "xl"> | undefined;
1872
+ disabled?: boolean | undefined;
1873
+ dark?: boolean | undefined;
1874
+ required?: boolean | undefined;
1875
+ selectStrategy?: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp> | undefined;
1876
+ openStrategy?: "multiple" | "single" | "list" | {
1877
+ open: import("../../composable/nested/openStrategies").TOpenStrategyFn;
1878
+ select: import("../../composable/nested/openStrategies").TOpenSelectStrategyFn;
1879
+ } | undefined;
1880
+ readonly opened?: unknown[] | undefined;
1881
+ readonly selected?: unknown[] | undefined;
1882
+ "onUpdate:selected"?: ((value: unknown[]) => any) | undefined;
1883
+ "onUpdate:opened"?: ((value: unknown[]) => any) | undefined;
1884
+ "onClick:open"?: ((value: {
1885
+ id: unknown;
1886
+ value: boolean;
1887
+ path: unknown[];
1888
+ event: Event;
1889
+ }) => any) | undefined;
1890
+ "onClick:select"?: ((value: {
1891
+ id: unknown;
1892
+ value: boolean;
1893
+ path: unknown[];
1894
+ event: Event;
1895
+ }) => any) | undefined;
1896
+ lines?: false | "one" | "two" | "three" | undefined;
2045
1897
  } | undefined;
2046
- readonly filterKeys?: NonNullable<string | string[]> | undefined;
2047
- readonly filterMode?: ("every" | "some" | "union" | "intersection") | undefined;
2048
- readonly noFilter?: boolean | undefined;
2049
- readonly menuProps?: any;
2050
- readonly menuHeight?: string | number | undefined;
2051
- readonly name?: string | undefined;
2052
1898
  readonly description?: string | undefined;
2053
- readonly menu?: boolean | undefined;
2054
- 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;
2055
- 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;
1899
+ readonly name?: string | undefined;
2056
1900
  readonly id?: string | undefined;
2057
- readonly label?: string | undefined;
2058
- readonly validationValue?: any;
2059
- readonly 'onClick:prepend'?: ((...args: any[]) => any) | undefined;
2060
- readonly 'onClick:append'?: ((...args: any[]) => any) | undefined;
2061
1901
  readonly prefix?: string | undefined;
2062
1902
  readonly suffix?: string | undefined;
2063
- 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;
2064
- 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;
1903
+ 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;
1904
+ readonly menu?: boolean | undefined;
1905
+ 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;
2065
1906
  readonly placeholder?: string | undefined;
2066
1907
  readonly limit?: number | undefined;
2067
1908
  readonly 'onClick:prependInner'?: ((...args: any[]) => any) | undefined;
2068
1909
  readonly 'onClick:appendInner'?: ((...args: any[]) => any) | undefined;
2069
- readonly "onUpdate:modelValue"?: ((value: any) => any) | undefined;
1910
+ readonly label?: string | undefined;
1911
+ readonly validationValue?: any;
1912
+ readonly locale?: "ru" | "en" | {
1913
+ notification: {
1914
+ closeLabel?: string | undefined;
1915
+ };
1916
+ table: {
1917
+ filterTitle?: string | undefined;
1918
+ filterConfirm?: any;
1919
+ filterReset?: any;
1920
+ filterEmptyText?: any;
1921
+ filterCheckAll?: any;
1922
+ filterSearchPlaceholder?: any;
1923
+ emptyText?: any;
1924
+ selectAll?: any;
1925
+ selectNone?: any;
1926
+ selectInvert?: any;
1927
+ selectionAll?: any;
1928
+ sortTitle?: string | undefined;
1929
+ expand?: string | undefined;
1930
+ collapse?: string | undefined;
1931
+ triggerDesc?: string | undefined;
1932
+ triggerAsc?: string | undefined;
1933
+ cancelSort?: string | undefined;
1934
+ };
1935
+ date: {
1936
+ days: string[];
1937
+ daysShort: string[];
1938
+ months: string[];
1939
+ monthsLong: string[];
1940
+ monthsShort: string[];
1941
+ firstDayOfWeek: number;
1942
+ format24h: boolean;
1943
+ pluralDay: (day?: number | undefined) => string;
1944
+ };
1945
+ container: {
1946
+ prev?: string | undefined;
1947
+ next?: string | undefined;
1948
+ };
1949
+ uploader: {
1950
+ uploading?: string | undefined;
1951
+ uploadFile?: string | undefined;
1952
+ downloadFile?: string | undefined;
1953
+ removeFile?: string | undefined;
1954
+ uploadError?: string | undefined;
1955
+ previewFile?: string | undefined;
1956
+ };
1957
+ dropdown: {
1958
+ noData: string;
1959
+ selectAll: string;
1960
+ };
1961
+ } | undefined;
1962
+ 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;
1963
+ 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;
1964
+ readonly 'onClick:prepend'?: ((...args: any[]) => any) | undefined;
1965
+ readonly 'onClick:append'?: ((...args: any[]) => any) | undefined;
2070
1966
  readonly "onUpdate:focused"?: ((value: boolean) => any) | undefined;
1967
+ readonly "onUpdate:modelValue"?: ((value: any) => any) | undefined;
2071
1968
  readonly "onUpdate:menu"?: ((value: boolean) => any) | undefined;
2072
1969
  readonly "onUpdate:search"?: ((value: string) => any) | undefined;
2073
1970
  readonly "onUpdate:selectedAll"?: ((value: boolean) => any) | undefined;
@@ -2086,6 +1983,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
2086
1983
  'cds-combobox--selected': number;
2087
1984
  'cds-combobox--selecting-index': boolean;
2088
1985
  }>;
1986
+ comboboxLocale: {
1987
+ noData: string;
1988
+ selectAll: string;
1989
+ };
2089
1990
  select: (item: IInternalItem) => void;
2090
1991
  selectAll: () => void;
2091
1992
  mergeItemProps: (item: IInternalItem) => {
@@ -2182,6 +2083,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
2182
2083
  type: PropType<boolean>;
2183
2084
  default: boolean;
2184
2085
  };
2086
+ locale: {
2087
+ type: PropType<"ru" | "en" | import("../../locale").ILocale>;
2088
+ default: undefined;
2089
+ };
2185
2090
  menu: {
2186
2091
  type: PropType<boolean | undefined>;
2187
2092
  default: undefined;
@@ -2207,14 +2112,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
2207
2112
  default: undefined;
2208
2113
  };
2209
2114
  prependIcon: {
2210
- type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
2115
+ type: 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">;
2211
2116
  default: undefined;
2212
- 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;
2117
+ 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;
2213
2118
  };
2214
2119
  appendIcon: {
2215
- type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
2120
+ type: 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">;
2216
2121
  default: undefined;
2217
- 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;
2122
+ 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;
2218
2123
  };
2219
2124
  error: {
2220
2125
  type: PropType<boolean>;
@@ -2230,16 +2135,17 @@ declare const _sfc_main: import("vue").DefineComponent<{
2230
2135
  };
2231
2136
  name: {
2232
2137
  type: PropType<string | undefined>;
2233
- default: undefined; /**
2234
- * Событие открытия меню
2235
- * @type { boolean }
2236
- */
2138
+ default: undefined;
2237
2139
  };
2238
2140
  rules: {
2239
2141
  type: PropType<import("../../composable").TValidationRule[]>;
2240
2142
  default: () => never[];
2241
2143
  };
2242
2144
  modelValue: {
2145
+ /**
2146
+ * Событие при вводе значения в поле
2147
+ * @type { string }
2148
+ */
2243
2149
  type: PropType<any>;
2244
2150
  default: null;
2245
2151
  };
@@ -2298,19 +2204,26 @@ declare const _sfc_main: import("vue").DefineComponent<{
2298
2204
  default: undefined;
2299
2205
  };
2300
2206
  prependInnerIcon: {
2301
- type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
2207
+ type: 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">;
2302
2208
  default: undefined;
2303
- 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;
2209
+ 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;
2304
2210
  };
2305
2211
  appendInnerIcon: {
2306
- type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
2212
+ type: 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">;
2307
2213
  default: undefined;
2308
- 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;
2214
+ 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;
2309
2215
  };
2310
2216
  type: {
2311
- type: PropType<"number" | "text" | "password" | "email" | "tel" | "url">;
2217
+ type: PropType<"number" | "password" | "text" | "email" | "tel" | "url">;
2218
+ default: string;
2219
+ validator: (value: "number" | "password" | "text" | "email" | "tel" | "url") => boolean;
2220
+ };
2221
+ role: Omit<{
2222
+ type: PropType<string>;
2223
+ default: undefined;
2224
+ }, "default" | "type"> & {
2225
+ type: PropType<string>;
2312
2226
  default: string;
2313
- validator: (value: "number" | "text" | "password" | "email" | "tel" | "url") => boolean;
2314
2227
  };
2315
2228
  placeholder: {
2316
2229
  type: PropType<string>;
@@ -2328,6 +2241,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
2328
2241
  type: PropType<boolean>;
2329
2242
  default: boolean;
2330
2243
  };
2244
+ persistentClearable: {
2245
+ type: PropType<boolean>;
2246
+ default: boolean;
2247
+ };
2331
2248
  'onClick:prependInner': {
2332
2249
  type: PropType<(...args: any[]) => any>;
2333
2250
  default: undefined;
@@ -2373,10 +2290,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
2373
2290
  type: PropType<boolean>;
2374
2291
  default: boolean;
2375
2292
  };
2376
- noDataText: {
2377
- type: PropType<string>;
2378
- default: string;
2379
- };
2380
2293
  hideNoData: Omit<{
2381
2294
  type: PropType<boolean>;
2382
2295
  default: boolean;
@@ -2388,9 +2301,101 @@ declare const _sfc_main: import("vue").DefineComponent<{
2388
2301
  type: PropType<boolean>;
2389
2302
  default: boolean;
2390
2303
  };
2391
- selectAllText: {
2392
- type: PropType<string>;
2393
- default: string;
2304
+ listProps: {
2305
+ type: PropType<Omit<Partial<{
2306
+ items: any[];
2307
+ itemTitle: import("../../composable").TItemKey;
2308
+ itemValue: import("../../composable").TItemKey;
2309
+ itemChildren: import("../../composable").TItemKey;
2310
+ itemProps: import("../../composable").TItemKey;
2311
+ returnObject: boolean;
2312
+ tag: string;
2313
+ size: NonNullable<"xs" | "sm" | "md" | "lg" | "xl">;
2314
+ disabled: boolean;
2315
+ dark: boolean;
2316
+ required: boolean;
2317
+ selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
2318
+ openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
2319
+ lines: false | "one" | "two" | "three";
2320
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
2321
+ selectStrategy: {
2322
+ type: PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
2323
+ default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
2324
+ };
2325
+ openStrategy: {
2326
+ type: PropType<NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>>;
2327
+ default: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
2328
+ };
2329
+ opened: PropType<unknown[]>;
2330
+ selected: PropType<unknown[]>;
2331
+ required: BooleanConstructor;
2332
+ dark: {
2333
+ type: PropType<boolean>;
2334
+ default: boolean;
2335
+ };
2336
+ disabled: {
2337
+ type: PropType<boolean>;
2338
+ default: boolean;
2339
+ };
2340
+ size: Omit<{
2341
+ type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
2342
+ default: string;
2343
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
2344
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
2345
+ }, "default" | "type"> & {
2346
+ type: PropType<NonNullable<"xs" | "sm" | "md" | "lg" | "xl">>;
2347
+ default: NonNullable<"xs" | "sm" | "md" | "lg" | "xl">;
2348
+ };
2349
+ tag: {
2350
+ type: PropType<string>;
2351
+ default: string;
2352
+ description: string;
2353
+ };
2354
+ items: {
2355
+ type: PropType<any[]>;
2356
+ default: () => never[];
2357
+ };
2358
+ itemTitle: {
2359
+ type: PropType<import("../../composable").TItemKey>;
2360
+ default: string;
2361
+ };
2362
+ itemValue: {
2363
+ type: PropType<import("../../composable").TItemKey>;
2364
+ default: string;
2365
+ };
2366
+ itemChildren: {
2367
+ type: PropType<import("../../composable").TItemKey>;
2368
+ default: string;
2369
+ };
2370
+ itemProps: {
2371
+ type: PropType<import("../../composable").TItemKey>;
2372
+ default: string;
2373
+ };
2374
+ returnObject: {
2375
+ type: PropType<boolean>;
2376
+ default: boolean;
2377
+ };
2378
+ lines: {
2379
+ type: PropType<false | "one" | "two" | "three">;
2380
+ default: string;
2381
+ };
2382
+ }>> & {
2383
+ "onUpdate:selected"?: ((value: unknown[]) => any) | undefined;
2384
+ "onUpdate:opened"?: ((value: unknown[]) => any) | undefined;
2385
+ "onClick:open"?: ((value: {
2386
+ id: unknown;
2387
+ value: boolean;
2388
+ path: unknown[];
2389
+ event: Event;
2390
+ }) => any) | undefined;
2391
+ "onClick:select"?: ((value: {
2392
+ id: unknown;
2393
+ value: boolean;
2394
+ path: unknown[];
2395
+ event: Event;
2396
+ }) => any) | undefined;
2397
+ } & 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>>;
2398
+ default: undefined;
2394
2399
  };
2395
2400
  /**
2396
2401
  * Разделители для ввода нескольких значений, при вводе будет создавать новый элемент.
@@ -2400,17 +2405,110 @@ declare const _sfc_main: import("vue").DefineComponent<{
2400
2405
  default: () => never[];
2401
2406
  };
2402
2407
  }>> & {
2403
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
2404
2408
  "onUpdate:focused"?: ((value: boolean) => any) | undefined;
2409
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
2405
2410
  "onUpdate:menu"?: ((value: boolean) => any) | undefined;
2406
2411
  "onUpdate:search"?: ((value: string) => any) | undefined;
2407
2412
  "onUpdate:selectedAll"?: ((value: boolean) => any) | undefined;
2408
2413
  }, {
2409
- name: string | undefined;
2410
- type: "number" | "text" | "password" | "email" | "tel" | "url";
2411
- description: string;
2412
- disabled: boolean;
2413
- delimiters: string[];
2414
+ multiple: boolean;
2415
+ openOnClear: boolean;
2416
+ hideSelected: boolean;
2417
+ hideNoData: boolean;
2418
+ isSelectAll: boolean;
2419
+ listProps: Omit<Partial<{
2420
+ items: any[];
2421
+ itemTitle: import("../../composable").TItemKey;
2422
+ itemValue: import("../../composable").TItemKey;
2423
+ itemChildren: import("../../composable").TItemKey;
2424
+ itemProps: import("../../composable").TItemKey;
2425
+ returnObject: boolean;
2426
+ tag: string;
2427
+ size: NonNullable<"xs" | "sm" | "md" | "lg" | "xl">;
2428
+ disabled: boolean;
2429
+ dark: boolean;
2430
+ required: boolean;
2431
+ selectStrategy: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
2432
+ openStrategy: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
2433
+ lines: false | "one" | "two" | "three";
2434
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
2435
+ selectStrategy: {
2436
+ type: PropType<NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>>;
2437
+ default: NonNullable<import("../../composable/nested/selectStrategies").TSelectStrategyProp>;
2438
+ };
2439
+ openStrategy: {
2440
+ type: PropType<NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>>;
2441
+ default: NonNullable<import("../../composable/nested/openStrategies").TOpenStrategyProp>;
2442
+ };
2443
+ opened: PropType<unknown[]>;
2444
+ selected: PropType<unknown[]>;
2445
+ required: BooleanConstructor;
2446
+ dark: {
2447
+ type: PropType<boolean>;
2448
+ default: boolean;
2449
+ };
2450
+ disabled: {
2451
+ type: PropType<boolean>;
2452
+ default: boolean;
2453
+ };
2454
+ size: Omit<{
2455
+ type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
2456
+ default: string;
2457
+ available: readonly ["xs", "sm", "md", "lg", "xl"];
2458
+ validator: (value: "xs" | "sm" | "md" | "lg" | "xl") => boolean;
2459
+ }, "default" | "type"> & {
2460
+ type: PropType<NonNullable<"xs" | "sm" | "md" | "lg" | "xl">>;
2461
+ default: NonNullable<"xs" | "sm" | "md" | "lg" | "xl">;
2462
+ };
2463
+ tag: {
2464
+ type: PropType<string>;
2465
+ default: string;
2466
+ description: string;
2467
+ };
2468
+ items: {
2469
+ type: PropType<any[]>;
2470
+ default: () => never[];
2471
+ };
2472
+ itemTitle: {
2473
+ type: PropType<import("../../composable").TItemKey>;
2474
+ default: string;
2475
+ };
2476
+ itemValue: {
2477
+ type: PropType<import("../../composable").TItemKey>;
2478
+ default: string;
2479
+ };
2480
+ itemChildren: {
2481
+ type: PropType<import("../../composable").TItemKey>;
2482
+ default: string;
2483
+ };
2484
+ itemProps: {
2485
+ type: PropType<import("../../composable").TItemKey>;
2486
+ default: string;
2487
+ };
2488
+ returnObject: {
2489
+ type: PropType<boolean>;
2490
+ default: boolean;
2491
+ };
2492
+ lines: {
2493
+ type: PropType<false | "one" | "two" | "three">;
2494
+ default: string;
2495
+ };
2496
+ }>> & {
2497
+ "onUpdate:selected"?: ((value: unknown[]) => any) | undefined;
2498
+ "onUpdate:opened"?: ((value: unknown[]) => any) | undefined;
2499
+ "onClick:open"?: ((value: {
2500
+ id: unknown;
2501
+ value: boolean;
2502
+ path: unknown[];
2503
+ event: Event;
2504
+ }) => any) | undefined;
2505
+ "onClick:select"?: ((value: {
2506
+ id: unknown;
2507
+ value: boolean;
2508
+ path: unknown[];
2509
+ event: Event;
2510
+ }) => any) | undefined;
2511
+ } & 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>;
2414
2512
  items: any[];
2415
2513
  itemTitle: import("../../composable").TItemKey;
2416
2514
  itemValue: import("../../composable").TItemKey;
@@ -2418,20 +2516,38 @@ declare const _sfc_main: import("vue").DefineComponent<{
2418
2516
  itemChildren: import("../../composable").TItemKey;
2419
2517
  itemProps: import("../../composable").TItemKey;
2420
2518
  returnObject: boolean;
2519
+ description: string;
2421
2520
  size: "xs" | "sm" | "md" | "lg" | "xl";
2521
+ disabled: boolean;
2522
+ type: "number" | "password" | "text" | "email" | "tel" | "url";
2523
+ name: string | undefined;
2524
+ id: string;
2525
+ delimiters: string[];
2526
+ customFilter: (value: string, query: string, item?: any) => import("../../composable").TFilterMath;
2527
+ customKeyFilter: {
2528
+ [x: string]: (value: string, query: string, item?: any) => import("../../composable").TFilterMath;
2529
+ };
2530
+ filterKeys: NonNullable<string | string[]>;
2531
+ filterMode: "every" | "some" | "union" | "intersection";
2532
+ noFilter: boolean;
2533
+ active: boolean;
2534
+ autofocus: boolean;
2535
+ prefix: string;
2536
+ suffix: string;
2537
+ 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";
2422
2538
  error: boolean;
2423
2539
  menu: boolean | undefined;
2424
- 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";
2425
- 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";
2426
- readonly: boolean;
2427
- loading: boolean;
2428
- transition: string | boolean | (import("vue").TransitionProps & {
2429
- component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
2430
- });
2431
- messages: string | string[];
2432
- active: boolean;
2433
- id: string;
2540
+ 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";
2541
+ role: string;
2542
+ placeholder: string;
2543
+ counter: boolean;
2544
+ limit: number;
2545
+ clearable: boolean;
2546
+ persistentClearable: boolean;
2547
+ 'onClick:prependInner': (...args: any[]) => any;
2548
+ 'onClick:appendInner': (...args: any[]) => any;
2434
2549
  label: string;
2550
+ messages: string | string[];
2435
2551
  persistentMessages: boolean;
2436
2552
  errorMessages: string | string[];
2437
2553
  maxErrors: string | number;
@@ -2440,36 +2556,19 @@ declare const _sfc_main: import("vue").DefineComponent<{
2440
2556
  validateOn: "input" | "blur" | "submit";
2441
2557
  validationValue: any;
2442
2558
  hideMessages: boolean;
2443
- focused: boolean;
2559
+ locale: "ru" | "en" | import("../../locale").ILocale;
2560
+ 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";
2561
+ 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";
2444
2562
  'onClick:prepend': (...args: any[]) => any;
2445
2563
  'onClick:append': (...args: any[]) => any;
2446
- autofocus: boolean;
2447
- prefix: string;
2448
- suffix: string;
2449
- 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";
2450
- 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";
2451
- placeholder: string;
2452
- counter: boolean;
2453
- limit: number;
2454
- clearable: boolean;
2455
- 'onClick:prependInner': (...args: any[]) => any;
2456
- 'onClick:appendInner': (...args: any[]) => any;
2457
2564
  eager: boolean;
2458
- multiple: boolean;
2459
- openOnClear: boolean;
2460
- hideSelected: boolean;
2461
- noDataText: string;
2462
- hideNoData: boolean;
2463
- isSelectAll: boolean;
2464
- selectAllText: string;
2465
- customFilter: (value: string, query: string, item?: any) => import("../../composable").TFilterMath;
2466
- customKeyFilter: {
2467
- [x: string]: (value: string, query: string, item?: any) => import("../../composable").TFilterMath;
2468
- };
2469
- filterKeys: NonNullable<string | string[]>;
2470
- filterMode: "every" | "some" | "union" | "intersection";
2471
- noFilter: boolean;
2565
+ loading: boolean;
2566
+ focused: boolean;
2567
+ readonly: boolean;
2472
2568
  menuProps: any;
2473
2569
  menuHeight: string | number;
2570
+ transition: string | boolean | (import("vue").TransitionProps & {
2571
+ component?: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
2572
+ });
2474
2573
  }>;
2475
2574
  export default _sfc_main;