@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
@@ -17,14 +17,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
17
17
  * Иконка свернутой группы списка
18
18
  */
19
19
  collapseIcon: {
20
- 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">;
20
+ 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">;
21
21
  default: string;
22
22
  };
23
23
  /**
24
24
  * Иконка развернутой группы списка
25
25
  */
26
26
  expandIcon: {
27
- 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">;
27
+ 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">;
28
28
  default: string;
29
29
  };
30
30
  /**
@@ -54,7 +54,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
54
54
  activatorProps: import("vue").ComputedRef<{
55
55
  onClick: (event: Event) => void;
56
56
  id: string;
57
- 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";
57
+ 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";
58
58
  class: string;
59
59
  isClickable: boolean;
60
60
  }>;
@@ -82,14 +82,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
82
82
  * Иконка свернутой группы списка
83
83
  */
84
84
  collapseIcon: {
85
- 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">;
85
+ 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">;
86
86
  default: string;
87
87
  };
88
88
  /**
89
89
  * Иконка развернутой группы списка
90
90
  */
91
91
  expandIcon: {
92
- 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">;
92
+ 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">;
93
93
  default: string;
94
94
  };
95
95
  /**
@@ -114,11 +114,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
114
114
  default: boolean;
115
115
  };
116
116
  }>>, {
117
- tag: string;
118
117
  title: string;
119
118
  value: string | number;
120
- collapseIcon: "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";
121
- expandIcon: "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";
119
+ tag: string;
120
+ expandIcon: "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";
121
+ collapseIcon: "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";
122
122
  fluid: boolean;
123
123
  subgroup: boolean;
124
124
  }>;
@@ -1,11 +1,10 @@
1
1
  import type { PropType } from 'vue';
2
+ import type { IItemSlotProps } from '../../composable';
2
3
  export declare const componentName = "CdsListItem";
3
4
  declare const _sfc_main: import("vue").DefineComponent<{
4
5
  disabled: {
5
6
  type: PropType<boolean>;
6
- default: boolean; /**
7
- * Заголовок элемента списка
8
- */
7
+ default: boolean;
9
8
  };
10
9
  tag: {
11
10
  type: PropType<string>;
@@ -21,16 +20,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
21
20
  default: undefined;
22
21
  };
23
22
  prependIcon: {
24
- 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">; /**
25
- * Активное состояние
26
- */
23
+ 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">;
27
24
  default: undefined;
28
- 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;
25
+ 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;
29
26
  };
30
27
  appendIcon: {
31
- 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">;
28
+ 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">;
32
29
  default: undefined;
33
- 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;
30
+ 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;
34
31
  };
35
32
  /**
36
33
  * Заголовок элемента списка
@@ -71,12 +68,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
71
68
  tag: import("vue").ComputedRef<string>;
72
69
  href: import("vue").ComputedRef<string | undefined>;
73
70
  to: import("vue").ComputedRef<import("vue-router").RouteLocationRaw | undefined>;
74
- slotProps: import("vue").ComputedRef<{
75
- isActive: boolean;
76
- select: (selected: boolean, event?: Event | undefined) => void;
77
- isSelected: boolean;
78
- isIndeterminate: boolean;
79
- }>;
71
+ slotProps: import("vue").ComputedRef<IItemSlotProps>;
80
72
  hasTitle: import("vue").ComputedRef<boolean>;
81
73
  hasDescription: import("vue").ComputedRef<boolean>;
82
74
  hasPrepend: import("vue").ComputedRef<boolean>;
@@ -99,9 +91,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
99
91
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
100
92
  disabled: {
101
93
  type: PropType<boolean>;
102
- default: boolean; /**
103
- * Заголовок элемента списка
104
- */
94
+ default: boolean;
105
95
  };
106
96
  tag: {
107
97
  type: PropType<string>;
@@ -117,16 +107,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
117
107
  default: undefined;
118
108
  };
119
109
  prependIcon: {
120
- 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">; /**
121
- * Активное состояние
122
- */
110
+ 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">;
123
111
  default: undefined;
124
- 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;
112
+ 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;
125
113
  };
126
114
  appendIcon: {
127
- 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">;
115
+ 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">;
128
116
  default: undefined;
129
- 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;
117
+ 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;
130
118
  };
131
119
  /**
132
120
  * Заголовок элемента списка
@@ -166,16 +154,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
166
154
  }>> & {
167
155
  onClick?: ((event: MouseEvent | KeyboardEvent | TouchEvent) => any) | undefined;
168
156
  }, {
169
- description: string;
170
- href: string;
171
- to: import("vue-router").RouteLocationRaw;
172
- disabled: boolean;
173
- tag: string;
174
157
  title: string;
175
158
  value: any;
176
- 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";
177
- 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";
159
+ tag: string;
160
+ description: string;
161
+ disabled: boolean;
178
162
  active: boolean;
163
+ 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";
164
+ 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";
165
+ href: string;
166
+ to: import("vue-router").RouteLocationRaw;
179
167
  isClickable: boolean;
180
168
  }>;
181
169
  export default _sfc_main;
@@ -54,8 +54,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
54
54
  description: string;
55
55
  };
56
56
  }>>, {
57
- description: string;
58
57
  fixed: boolean;
58
+ description: string;
59
59
  size: "xs" | "sm" | "md" | "lg" | "xl";
60
60
  overlay: boolean;
61
61
  }>;
@@ -0,0 +1,3 @@
1
+ export declare const componentName = "CdsMain";
2
+ declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
3
+ export default _sfc_main;
@@ -0,0 +1,4 @@
1
+ import type { InjectionKey } from 'vue';
2
+ export declare const CdsMainSymbol: InjectionKey<boolean>;
3
+ export declare const useProvideMain: (provided: boolean) => void;
4
+ export declare const useInjectMain: () => boolean;
@@ -0,0 +1 @@
1
+ export { default as CdsMain } from './CdsMain.vue';