mediacube-ui-v2 0.0.7 → 0.0.9

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 (342) hide show
  1. package/dist/App.vue.js +54 -0
  2. package/dist/assets/tokens/json/animations.json +6 -0
  3. package/dist/assets/tokens/json/border-radius.json +24 -0
  4. package/dist/assets/tokens/json/box-shadows.json +24 -0
  5. package/dist/assets/tokens/json/colors.json +71 -0
  6. package/dist/assets/tokens/json/durations.json +10 -0
  7. package/dist/assets/tokens/json/easings.json +3 -0
  8. package/dist/assets/tokens/json/font-families.json +4 -0
  9. package/dist/assets/tokens/json/font-sizes.json +18 -0
  10. package/dist/assets/tokens/json/font-weights.json +12 -0
  11. package/dist/assets/tokens/json/gradients.json +13 -0
  12. package/dist/assets/tokens/json/index.js +18 -0
  13. package/dist/assets/tokens/json/letter-spacings.json +4 -0
  14. package/dist/assets/tokens/json/line-heights.json +18 -0
  15. package/dist/assets/tokens/json/media-queries.json +26 -0
  16. package/dist/assets/tokens/json/opacities.json +5 -0
  17. package/dist/assets/tokens/json/sizes.json +42 -0
  18. package/dist/assets/tokens/json/spacings.json +34 -0
  19. package/dist/assets/tokens/json/z-indexes.json +12 -0
  20. package/dist/components/elements/McAvatar/McAvatar.vue.js +412 -0
  21. package/dist/components/elements/McBadge/McBadge.vue.js +188 -0
  22. package/dist/components/elements/McBottomLoader/McBottomLoader.vue.js +83 -0
  23. package/dist/components/elements/McButton/McButton.vue.js +1037 -0
  24. package/dist/components/elements/McChip/McChip.vue.js +326 -0
  25. package/dist/components/elements/McCropper/McCropper.vue.js +98 -0
  26. package/dist/components/elements/McDatepicker/McDatepicker.vue.js +1255 -0
  27. package/dist/components/elements/McDraggable/McDraggable.vue.js +280 -0
  28. package/dist/components/elements/McFieldCheckbox/McFieldCheckbox.vue.js +542 -0
  29. package/dist/components/elements/McFieldRadio/McFieldRadio.vue.js +489 -0
  30. package/dist/components/elements/McFieldRadioGroup/McFieldRadioGroup.vue.js +471 -0
  31. package/dist/components/elements/McFieldRange/McFieldRange.vue.js +547 -0
  32. package/dist/components/elements/McFieldSelect/McFieldSelect.vue.js +1440 -0
  33. package/dist/components/elements/McFieldText/McFieldText.vue.js +1404 -0
  34. package/dist/components/elements/McFieldToggle/McFieldToggle.vue.js +408 -0
  35. package/dist/components/elements/McInfinityLoadingTrigger/McInfinityLoadingTrigger.vue.js +192 -0
  36. package/dist/components/elements/McNodata/McNoData.vue.js +319 -0
  37. package/dist/components/elements/McNotification/McNotification.vue.js +367 -0
  38. package/dist/components/elements/McProgress/McProgress.vue.js +361 -0
  39. package/dist/components/elements/McSeparator/McSeparator.vue.js +325 -0
  40. package/dist/components/elements/McSlideUpDown/McSlideUpDown.vue.js +271 -0
  41. package/dist/components/elements/McStack/McStack.vue.js +180 -0
  42. package/dist/components/elements/McSvgIcon/McSvgIcon.vue.js +289 -0
  43. package/dist/components/elements/McTitle/McTitle.vue.js +468 -0
  44. package/dist/components/elements/McTooltip/McTooltip.vue.js +246 -0
  45. package/dist/components/index.js +73 -0
  46. package/dist/components/patterns/McAccordion/McAccordion.vue.js +120 -0
  47. package/dist/components/patterns/McCell/McCell.vue.js +197 -0
  48. package/dist/components/patterns/McCollapse/McCollapse.vue.js +315 -0
  49. package/dist/components/patterns/McDropdown/McDropdown.vue.js +366 -0
  50. package/dist/components/patterns/McDropdown/McDropdownPanel.vue.js +83 -0
  51. package/dist/components/patterns/McFilter/McFilter.vue.js +1068 -0
  52. package/dist/components/patterns/McFilter/McFilterChip/McFilterChip.vue.js +211 -0
  53. package/dist/components/patterns/McFilter/McFilterTags/McFilterTags.vue.js +552 -0
  54. package/dist/components/patterns/McFilter/McFilterTypeDate/McFilterTypeDate.vue.js +188 -0
  55. package/dist/components/patterns/McFilter/McFilterTypeRange/McFilterTypeRange.vue.js +238 -0
  56. package/dist/components/patterns/McFilter/McFilterTypeRelation/McFilterTypeRelation.vue.js +359 -0
  57. package/dist/components/patterns/McFilter/McFilterTypeText/McFilterTypeText.vue.js +171 -0
  58. package/dist/components/patterns/McGridCol/McGridCol.vue.js +246 -0
  59. package/dist/components/patterns/McGridRow/McGridRow.vue.js +292 -0
  60. package/dist/components/patterns/McOverlay/McOverlay.vue.js +107 -0
  61. package/dist/components/patterns/McPreview/McPreview.vue.js +118 -0
  62. package/dist/components/patterns/McSideBar/McSideBar.vue.js +740 -0
  63. package/dist/components/patterns/McSideBar/McSideBarBottom/McSideBarBottom.vue.js +204 -0
  64. package/dist/components/patterns/McSideBar/McSideBarButton/McSideBarButton.vue.js +510 -0
  65. package/dist/components/patterns/McSideBar/McSideBarCenter/McSideBarCenter.vue.js +413 -0
  66. package/dist/components/patterns/McSideBar/McSideBarTop/McSideBarTop.vue.js +419 -0
  67. package/dist/components/patterns/McTab/McTab.vue.js +518 -0
  68. package/dist/components/patterns/McTabs/McTabs.vue.js +427 -0
  69. package/dist/components/patterns/McWrapScroll/McWrapScroll.vue.js +422 -0
  70. package/dist/components/templates/McDrawer/McDrawer.vue.js +304 -0
  71. package/dist/components/templates/McDrawer/McDrawerContainer.vue.js +133 -0
  72. package/dist/components/templates/McDrawer/McDrawerContentTemplate/McDrawerContentTemplate.vue.js +134 -0
  73. package/dist/components/templates/McModal/McModal.vue.js +664 -0
  74. package/dist/components/templates/McModal/McModalContainer.vue.js +119 -0
  75. package/dist/components/templates/McTable/McTable/McTable.vue.js +862 -0
  76. package/dist/components/templates/McTable/McTableCard/McTableCard.vue.js +339 -0
  77. package/dist/components/templates/McTable/McTableCard/McTableCardHeader/McTableCardHeader.vue.js +119 -0
  78. package/dist/components/templates/McTable/McTableSkeletonLoading/McTableSkeletonLoading.vue.js +118 -0
  79. package/dist/components/templates/McTable/McTableSort/McTableSort.vue.js +136 -0
  80. package/dist/components/templates/McTopBar/McTopBar.vue.js +309 -0
  81. package/dist/components/templates/McVirtualScroll/McVirtualScroll.vue.js +239 -0
  82. package/dist/composables/index.js +8 -0
  83. package/dist/composables/useDrawer.js +72 -0
  84. package/dist/composables/useEncodeDecode.js +25 -0
  85. package/dist/composables/useFieldErrors.js +20 -0
  86. package/dist/composables/useHelper.js +79 -0
  87. package/dist/composables/useModal.js +71 -0
  88. package/dist/composables/useRandomNumber.js +10 -0
  89. package/dist/composables/useTooltip.js +154 -0
  90. package/dist/consts/table.js +6 -0
  91. package/dist/enums/Cell.js +6 -0
  92. package/dist/enums/Chip.js +11 -0
  93. package/dist/enums/Datepicker.js +42 -0
  94. package/dist/enums/Drawer.js +5 -0
  95. package/dist/enums/Dropdown.js +12 -0
  96. package/dist/enums/Filter.js +14 -0
  97. package/dist/enums/Grid.js +24 -0
  98. package/dist/enums/Input.js +20 -0
  99. package/dist/enums/Modal.js +5 -0
  100. package/dist/enums/Preview.js +6 -0
  101. package/dist/enums/Radio.js +5 -0
  102. package/dist/enums/RadioGroup.js +5 -0
  103. package/dist/enums/Select.js +11 -0
  104. package/dist/enums/Sidebar.js +5 -0
  105. package/dist/enums/Tab.js +6 -0
  106. package/dist/enums/Title.js +21 -0
  107. package/dist/enums/Tooltip.js +15 -0
  108. package/dist/enums/index.js +22 -0
  109. package/dist/enums/ui/Alignment.js +6 -0
  110. package/dist/enums/ui/Button.js +24 -0
  111. package/dist/enums/ui/Directions.js +5 -0
  112. package/dist/enums/ui/Weights.js +7 -0
  113. package/dist/index.cjs +3 -3
  114. package/dist/index.js +13 -10584
  115. package/dist/main.js +6 -0
  116. package/dist/mocks/authUser.js +162 -0
  117. package/dist/mocks/categories.js +107 -0
  118. package/dist/mocks/filterMocks.js +128 -0
  119. package/dist/mocks/icons.json +1 -0
  120. package/dist/mocks/menuLangs.js +19 -0
  121. package/dist/mocks/sidebar.js +125 -0
  122. package/dist/mocks/tableData.js +8180 -0
  123. package/dist/style.css +1 -1
  124. package/dist/types/App.vue.d.ts +2 -0
  125. package/dist/types/IButton.js +1 -0
  126. package/dist/types/ICell.js +1 -0
  127. package/dist/types/IChip.js +1 -0
  128. package/dist/types/ICollapse.js +1 -0
  129. package/dist/types/IDatepicker.js +1 -0
  130. package/dist/types/IDirections.js +1 -0
  131. package/dist/types/IDrawer.js +1 -0
  132. package/dist/types/IDropdown.js +1 -0
  133. package/dist/types/IFilter.js +1 -0
  134. package/dist/types/IGrid.js +1 -0
  135. package/dist/types/IInput.js +1 -0
  136. package/dist/types/IModal.js +1 -0
  137. package/dist/types/IPreview.js +1 -0
  138. package/dist/types/IRadio.js +1 -0
  139. package/dist/types/IRadioGroup.js +1 -0
  140. package/dist/types/IRoute.js +1 -0
  141. package/dist/types/ISelect.js +1 -0
  142. package/dist/types/ISideBar.js +1 -0
  143. package/dist/types/ITable.js +1 -0
  144. package/dist/types/ITabs.js +1 -0
  145. package/dist/types/ITitle.js +1 -0
  146. package/dist/types/ITooltip.js +1 -0
  147. package/dist/types/assets/tokens/json/index.d.ts +18 -0
  148. package/dist/{components → types/components}/elements/McAvatar/McAvatar.vue.d.ts +5 -5
  149. package/dist/{components → types/components}/elements/McBadge/McBadge.vue.d.ts +3 -3
  150. package/dist/types/components/elements/McBottomLoader/McBottomLoader.vue.d.ts +14 -0
  151. package/dist/{components → types/components}/elements/McButton/McButton.vue.d.ts +13 -12
  152. package/dist/{components → types/components}/elements/McChip/McChip.vue.d.ts +7 -6
  153. package/dist/types/components/elements/McCropper/McCropper.vue.d.ts +2 -0
  154. package/dist/{components → types/components}/elements/McDatepicker/McDatepicker.vue.d.ts +2 -1
  155. package/dist/{components → types/components}/elements/McDraggable/McDraggable.vue.d.ts +4 -4
  156. package/dist/{components → types/components}/elements/McFieldCheckbox/McFieldCheckbox.vue.d.ts +1 -1
  157. package/dist/{components → types/components}/elements/McFieldRadio/McFieldRadio.vue.d.ts +8 -8
  158. package/dist/{components → types/components}/elements/McFieldRadioGroup/McFieldRadioGroup.vue.d.ts +1 -1
  159. package/dist/{components → types/components}/elements/McFieldRange/McFieldRange.vue.d.ts +6 -6
  160. package/dist/{components → types/components}/elements/McFieldSelect/McFieldSelect.vue.d.ts +12 -11
  161. package/dist/{components → types/components}/elements/McFieldText/McFieldText.vue.d.ts +9 -9
  162. package/dist/{components → types/components}/elements/McFieldToggle/McFieldToggle.vue.d.ts +6 -6
  163. package/dist/{components → types/components}/elements/McInfinityLoadingTrigger/McInfinityLoadingTrigger.vue.d.ts +4 -4
  164. package/dist/types/components/elements/McNodata/McNoData.vue.d.ts +110 -0
  165. package/dist/types/components/elements/McNotification/McNotification.vue.d.ts +124 -0
  166. package/dist/{components → types/components}/elements/McProgress/McProgress.vue.d.ts +5 -5
  167. package/dist/{components → types/components}/elements/McSeparator/McSeparator.vue.d.ts +4 -4
  168. package/dist/{components → types/components}/elements/McSlideUpDown/McSlideUpDown.vue.d.ts +5 -5
  169. package/dist/{components → types/components}/elements/McStack/McStack.vue.d.ts +4 -4
  170. package/dist/{components → types/components}/elements/McSvgIcon/McSvgIcon.vue.d.ts +9 -9
  171. package/dist/{components → types/components}/elements/McTitle/McTitle.vue.d.ts +7 -7
  172. package/dist/{components → types/components}/elements/McTooltip/McTooltip.vue.d.ts +6 -6
  173. package/dist/types/components/index.d.ts +70 -0
  174. package/dist/{components → types/components}/patterns/McAccordion/McAccordion.vue.d.ts +4 -4
  175. package/dist/{components → types/components}/patterns/McCell/McCell.vue.d.ts +6 -6
  176. package/dist/{components → types/components}/patterns/McCollapse/McCollapse.vue.d.ts +6 -6
  177. package/dist/{components → types/components}/patterns/McDropdown/McDropdown.vue.d.ts +7 -7
  178. package/dist/types/components/patterns/McDropdown/McDropdownPanel.vue.d.ts +22 -0
  179. package/dist/{components → types/components}/patterns/McFilter/McFilter.vue.d.ts +6 -6
  180. package/dist/{components → types/components}/patterns/McFilter/McFilterChip/McFilterChip.vue.d.ts +6 -6
  181. package/dist/{components → types/components}/patterns/McFilter/McFilterTags/McFilterTags.vue.d.ts +6 -6
  182. package/dist/{components → types/components}/patterns/McFilter/McFilterTypeDate/McFilterTypeDate.vue.d.ts +6 -6
  183. package/dist/{components → types/components}/patterns/McFilter/McFilterTypeRange/McFilterTypeRange.vue.d.ts +6 -6
  184. package/dist/{components → types/components}/patterns/McFilter/McFilterTypeRelation/McFilterTypeRelation.vue.d.ts +6 -6
  185. package/dist/{components → types/components}/patterns/McFilter/McFilterTypeText/McFilterTypeText.vue.d.ts +6 -6
  186. package/dist/{components → types/components}/patterns/McGridCol/McGridCol.vue.d.ts +4 -4
  187. package/dist/{components → types/components}/patterns/McGridRow/McGridRow.vue.d.ts +5 -5
  188. package/dist/{components → types/components}/patterns/McOverlay/McOverlay.vue.d.ts +4 -4
  189. package/dist/{components → types/components}/patterns/McPreview/McPreview.vue.d.ts +4 -4
  190. package/dist/types/components/patterns/McSideBar/McSideBar.vue.d.ts +292 -0
  191. package/dist/{components → types/components}/patterns/McSideBar/McSideBarBottom/McSideBarBottom.vue.d.ts +5 -5
  192. package/dist/{components → types/components}/patterns/McSideBar/McSideBarButton/McSideBarButton.vue.d.ts +6 -6
  193. package/dist/{components → types/components}/patterns/McSideBar/McSideBarCenter/McSideBarCenter.vue.d.ts +6 -6
  194. package/dist/types/components/patterns/McSideBar/McSideBarTop/McSideBarTop.vue.d.ts +123 -0
  195. package/dist/types/components/patterns/McTab/McTab.vue.d.ts +224 -0
  196. package/dist/{components → types/components}/patterns/McTabs/McTabs.vue.d.ts +8 -7
  197. package/dist/{components → types/components}/patterns/McWrapScroll/McWrapScroll.vue.d.ts +7 -7
  198. package/dist/types/components/templates/McDrawer/McDrawer.vue.d.ts +104 -0
  199. package/dist/{components → types/components}/templates/McDrawer/McDrawerContainer.vue.d.ts +5 -5
  200. package/dist/{components → types/components}/templates/McDrawer/McDrawerContentTemplate/McDrawerContentTemplate.vue.d.ts +4 -4
  201. package/dist/{components → types/components}/templates/McModal/McModal.vue.d.ts +7 -7
  202. package/dist/{components → types/components}/templates/McModal/McModalContainer.vue.d.ts +5 -5
  203. package/dist/types/components/templates/McTable/McTable/McTable.vue.d.ts +295 -0
  204. package/dist/{components → types/components}/templates/McTable/McTableCard/McTableCard.vue.d.ts +6 -6
  205. package/dist/{components → types/components}/templates/McTable/McTableCard/McTableCardHeader/McTableCardHeader.vue.d.ts +4 -4
  206. package/dist/types/components/templates/McTable/McTableSkeletonLoading/McTableSkeletonLoading.vue.d.ts +18 -0
  207. package/dist/{components → types/components}/templates/McTable/McTableSort/McTableSort.vue.d.ts +7 -7
  208. package/dist/{components → types/components}/templates/McTopBar/McTopBar.vue.d.ts +4 -4
  209. package/dist/{components → types/components}/templates/McVirtualScroll/McVirtualScroll.vue.d.ts +4 -4
  210. package/dist/{composables → types/composables}/index.d.ts +1 -1
  211. package/dist/{composables → types/composables}/useDrawer.d.ts +1 -1
  212. package/dist/types/composables/useFieldErrors.d.ts +5 -0
  213. package/dist/{composables → types/composables}/useTooltip.d.ts +1 -1
  214. package/dist/types/index.d.ts +9 -36
  215. package/dist/types/index.js +38 -0
  216. package/dist/types/main.d.ts +2 -0
  217. package/dist/{mocks → types/mocks}/filterMocks.d.ts +1 -1
  218. package/dist/{mocks → types/mocks}/sidebar.d.ts +1 -1
  219. package/dist/{mocks → types/mocks}/tableData.d.ts +1 -1
  220. package/dist/types/styles/Alignment.js +1 -0
  221. package/dist/types/styles/AvatarSizes.js +3 -0
  222. package/dist/types/styles/Colors.js +3 -0
  223. package/dist/types/styles/Durations.js +3 -0
  224. package/dist/types/styles/FontSizes.js +3 -0
  225. package/dist/types/styles/FontWeights.js +3 -0
  226. package/dist/types/styles/Grid.js +1 -0
  227. package/dist/types/styles/Icons.js +2 -0
  228. package/dist/types/styles/LineHeights.js +3 -0
  229. package/dist/types/styles/MediaQueries.js +3 -0
  230. package/dist/types/styles/Radiuses.js +3 -0
  231. package/dist/types/styles/Sizes.js +3 -0
  232. package/dist/types/styles/Spaces.js +3 -0
  233. package/dist/types/styles/Weights.js +1 -0
  234. package/dist/types/{IButton.d.ts → types/IButton.d.ts} +5 -5
  235. package/dist/types/{ICell.d.ts → types/ICell.d.ts} +1 -1
  236. package/dist/types/{IChip.d.ts → types/IChip.d.ts} +2 -2
  237. package/dist/types/{IDatepicker.d.ts → types/IDatepicker.d.ts} +1 -1
  238. package/dist/types/{IDirections.d.ts → types/IDirections.d.ts} +1 -1
  239. package/dist/types/{IDrawer.d.ts → types/IDrawer.d.ts} +2 -2
  240. package/dist/types/{IDropdown.d.ts → types/IDropdown.d.ts} +1 -1
  241. package/dist/types/{IFilter.d.ts → types/IFilter.d.ts} +1 -1
  242. package/dist/types/{IInput.d.ts → types/IInput.d.ts} +1 -1
  243. package/dist/types/{IModal.d.ts → types/IModal.d.ts} +2 -2
  244. package/dist/types/{IPreview.d.ts → types/IPreview.d.ts} +1 -1
  245. package/dist/types/{IRadio.d.ts → types/IRadio.d.ts} +1 -1
  246. package/dist/types/{IRadioGroup.d.ts → types/IRadioGroup.d.ts} +1 -1
  247. package/dist/types/{ISelect.d.ts → types/ISelect.d.ts} +1 -1
  248. package/dist/types/{ISideBar.d.ts → types/ISideBar.d.ts} +5 -5
  249. package/dist/types/{ITable.d.ts → types/ITable.d.ts} +2 -2
  250. package/dist/types/{ITabs.d.ts → types/ITabs.d.ts} +4 -4
  251. package/dist/types/{ITitle.d.ts → types/ITitle.d.ts} +1 -1
  252. package/dist/types/{ITooltip.d.ts → types/ITooltip.d.ts} +1 -1
  253. package/dist/types/types/index.d.ts +36 -0
  254. package/dist/types/{styles → types/styles}/Alignment.d.ts +1 -1
  255. package/dist/types/{styles → types/styles}/Grid.d.ts +1 -1
  256. package/dist/types/{styles → types/styles}/Weights.d.ts +1 -1
  257. package/dist/{utils → types/utils}/dayjs.d.ts +2 -1
  258. package/dist/{utils → types/utils}/mcGridColAdaptiveProps.d.ts +1 -1
  259. package/dist/{utils → types/utils}/mcTitleAdaptiveProps.d.ts +1 -1
  260. package/dist/utils/dayjs.js +18 -0
  261. package/dist/utils/mcGridColAdaptiveProps.js +10 -0
  262. package/dist/utils/mcTitleAdaptiveProps.js +10 -0
  263. package/package.json +7 -3
  264. package/dist/App.vue.d.ts +0 -2
  265. package/dist/assets/tokens/json/animations.json.d.ts +0 -8
  266. package/dist/assets/tokens/json/border-radius.json.d.ts +0 -26
  267. package/dist/assets/tokens/json/box-shadows.json.d.ts +0 -26
  268. package/dist/assets/tokens/json/colors.json.d.ts +0 -73
  269. package/dist/assets/tokens/json/durations.json.d.ts +0 -12
  270. package/dist/assets/tokens/json/easings.json.d.ts +0 -5
  271. package/dist/assets/tokens/json/font-families.json.d.ts +0 -6
  272. package/dist/assets/tokens/json/font-sizes.json.d.ts +0 -20
  273. package/dist/assets/tokens/json/font-weights.json.d.ts +0 -14
  274. package/dist/assets/tokens/json/gradients.json.d.ts +0 -15
  275. package/dist/assets/tokens/json/index.d.ts +0 -18
  276. package/dist/assets/tokens/json/letter-spacings.json.d.ts +0 -6
  277. package/dist/assets/tokens/json/line-heights.json.d.ts +0 -20
  278. package/dist/assets/tokens/json/media-queries.json.d.ts +0 -28
  279. package/dist/assets/tokens/json/opacities.json.d.ts +0 -7
  280. package/dist/assets/tokens/json/sizes.json.d.ts +0 -44
  281. package/dist/assets/tokens/json/spacings.json.d.ts +0 -36
  282. package/dist/assets/tokens/json/z-indexes.json.d.ts +0 -14
  283. package/dist/components/elements/McBottomLoader/McBottomLoader.vue.d.ts +0 -14
  284. package/dist/components/elements/McCropper/McCropper.vue.d.ts +0 -28
  285. package/dist/components/elements/McNodata/McNoData.vue.d.ts +0 -110
  286. package/dist/components/elements/McNotification/McNotification.vue.d.ts +0 -124
  287. package/dist/components/index.d.ts +0 -62
  288. package/dist/components/patterns/McDropdown/McDropdownPanel.vue.d.ts +0 -22
  289. package/dist/components/patterns/McSideBar/McSideBar.vue.d.ts +0 -292
  290. package/dist/components/patterns/McSideBar/McSideBarTop/McSideBarTop.vue.d.ts +0 -123
  291. package/dist/components/patterns/McTab/McTab.vue.d.ts +0 -224
  292. package/dist/components/templates/McDrawer/McDrawer.vue.d.ts +0 -104
  293. package/dist/components/templates/McTable/McTable/McTable.vue.d.ts +0 -295
  294. package/dist/components/templates/McTable/McTableSkeletonLoading/McTableSkeletonLoading.vue.d.ts +0 -18
  295. package/dist/composables/useFieldErrors.d.ts +0 -5
  296. package/dist/index.d.ts +0 -9
  297. package/dist/main.d.ts +0 -0
  298. package/dist/mocks/icons.json.d.ts +0 -3
  299. /package/dist/{composables → types/composables}/useEncodeDecode.d.ts +0 -0
  300. /package/dist/{composables → types/composables}/useHelper.d.ts +0 -0
  301. /package/dist/{composables → types/composables}/useModal.d.ts +0 -0
  302. /package/dist/{composables → types/composables}/useRandomNumber.d.ts +0 -0
  303. /package/dist/{consts → types/consts}/table.d.ts +0 -0
  304. /package/dist/{enums → types/enums}/Cell.d.ts +0 -0
  305. /package/dist/{enums → types/enums}/Chip.d.ts +0 -0
  306. /package/dist/{enums → types/enums}/Datepicker.d.ts +0 -0
  307. /package/dist/{enums → types/enums}/Drawer.d.ts +0 -0
  308. /package/dist/{enums → types/enums}/Dropdown.d.ts +0 -0
  309. /package/dist/{enums → types/enums}/Filter.d.ts +0 -0
  310. /package/dist/{enums → types/enums}/Grid.d.ts +0 -0
  311. /package/dist/{enums → types/enums}/Input.d.ts +0 -0
  312. /package/dist/{enums → types/enums}/Modal.d.ts +0 -0
  313. /package/dist/{enums → types/enums}/Preview.d.ts +0 -0
  314. /package/dist/{enums → types/enums}/Radio.d.ts +0 -0
  315. /package/dist/{enums → types/enums}/RadioGroup.d.ts +0 -0
  316. /package/dist/{enums → types/enums}/Select.d.ts +0 -0
  317. /package/dist/{enums → types/enums}/Sidebar.d.ts +0 -0
  318. /package/dist/{enums → types/enums}/Tab.d.ts +0 -0
  319. /package/dist/{enums → types/enums}/Title.d.ts +0 -0
  320. /package/dist/{enums → types/enums}/Tooltip.d.ts +0 -0
  321. /package/dist/{enums → types/enums}/index.d.ts +0 -0
  322. /package/dist/{enums → types/enums}/ui/Alignment.d.ts +0 -0
  323. /package/dist/{enums → types/enums}/ui/Button.d.ts +0 -0
  324. /package/dist/{enums → types/enums}/ui/Directions.d.ts +0 -0
  325. /package/dist/{enums → types/enums}/ui/Weights.d.ts +0 -0
  326. /package/dist/{mocks → types/mocks}/authUser.d.ts +0 -0
  327. /package/dist/{mocks → types/mocks}/categories.d.ts +0 -0
  328. /package/dist/{mocks → types/mocks}/menuLangs.d.ts +0 -0
  329. /package/dist/types/{ICollapse.d.ts → types/ICollapse.d.ts} +0 -0
  330. /package/dist/types/{IGrid.d.ts → types/IGrid.d.ts} +0 -0
  331. /package/dist/types/{IRoute.d.ts → types/IRoute.d.ts} +0 -0
  332. /package/dist/types/{styles → types/styles}/AvatarSizes.d.ts +0 -0
  333. /package/dist/types/{styles → types/styles}/Colors.d.ts +0 -0
  334. /package/dist/types/{styles → types/styles}/Durations.d.ts +0 -0
  335. /package/dist/types/{styles → types/styles}/FontSizes.d.ts +0 -0
  336. /package/dist/types/{styles → types/styles}/FontWeights.d.ts +0 -0
  337. /package/dist/types/{styles → types/styles}/Icons.d.ts +0 -0
  338. /package/dist/types/{styles → types/styles}/LineHeights.d.ts +0 -0
  339. /package/dist/types/{styles → types/styles}/MediaQueries.d.ts +0 -0
  340. /package/dist/types/{styles → types/styles}/Radiuses.d.ts +0 -0
  341. /package/dist/types/{styles → types/styles}/Sizes.d.ts +0 -0
  342. /package/dist/types/{styles → types/styles}/Spaces.d.ts +0 -0
@@ -1,6 +1,6 @@
1
- import { PropType } from 'vue';
2
- import { ICollapseEmitPayload } from '../../../types/ICollapse';
3
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1
+ import { type PropType } from 'vue';
2
+ import type { ICollapseEmitPayload } from '@/types/ICollapse';
3
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
4
  isDisabled: {
5
5
  type: PropType<boolean>;
6
6
  default: boolean;
@@ -17,7 +17,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
17
17
  type: PropType<boolean>;
18
18
  default: boolean;
19
19
  };
20
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
20
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
21
21
  close: (value: ICollapseEmitPayload) => any;
22
22
  toggle: (value: ICollapseEmitPayload) => any;
23
23
  open: (value: ICollapseEmitPayload) => any;
@@ -25,7 +25,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
25
25
  "collapse-open-end": (value: ICollapseEmitPayload) => any;
26
26
  "collapse-close-start": (value: ICollapseEmitPayload) => any;
27
27
  "collapse-close-end": (value: ICollapseEmitPayload) => any;
28
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
28
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
29
29
  isDisabled: {
30
30
  type: PropType<boolean>;
31
31
  default: boolean;
@@ -54,7 +54,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
54
54
  icon: boolean;
55
55
  isDisabled: boolean;
56
56
  border: boolean;
57
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
57
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLElement>, {
58
58
  activator?(_: {}): any;
59
59
  body?(_: {}): any;
60
60
  bottom?(_: {}): any;
@@ -1,7 +1,7 @@
1
- import { PropType } from 'vue';
2
- import { DropdownListPositionsUnion, DropdownPositionsUnion } from '../../../types/IDropdown';
3
- import { DropdownListPositions, DropdownPositions } from '../../../enums/Dropdown';
4
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1
+ import { type PropType } from 'vue';
2
+ import type { DropdownListPositionsUnion, DropdownPositionsUnion } from '@/types/IDropdown';
3
+ import { DropdownListPositions, DropdownPositions } from '@/enums/Dropdown';
4
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
5
5
  /**
6
6
  * Состояние видимости контента
7
7
  */
@@ -47,10 +47,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
47
47
  type: PropType<boolean>;
48
48
  default: boolean;
49
49
  };
50
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
50
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
51
51
  select: (value: any) => any;
52
52
  "update:modelValue": (value: boolean) => any;
53
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
53
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
54
54
  /**
55
55
  * Состояние видимости контента
56
56
  */
@@ -107,7 +107,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
107
107
  listMinWidth: string;
108
108
  listMaxHeight: number;
109
109
  hideOnSelect: boolean;
110
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
110
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>, {
111
111
  activator?(_: {}): any;
112
112
  default?(_: {}): any;
113
113
  item?(_: {
@@ -0,0 +1,22 @@
1
+ import { type PropType } from 'vue';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
+ maxHeight: {
4
+ type: PropType<number>;
5
+ default: number;
6
+ };
7
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
8
+ maxHeight: {
9
+ type: PropType<number>;
10
+ default: number;
11
+ };
12
+ }>> & Readonly<{}>, {
13
+ maxHeight: number;
14
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLElement>, {
15
+ default?(_: {}): any;
16
+ }>;
17
+ export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -1,6 +1,6 @@
1
- import { PropType } from 'vue';
2
- import { IFilter, IFilterPlaceholders, IFilterValue } from '../../../types';
3
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1
+ import { type PropType } from 'vue';
2
+ import type { IFilter, IFilterPlaceholders, IFilterValue } from '@/types';
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
4
  /**
5
5
  * Имя фильтра
6
6
  * (для записи данных в стор)
@@ -64,13 +64,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
64
64
  type: PropType<Partial<IFilterPlaceholders>>;
65
65
  default: () => {};
66
66
  };
67
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
67
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
68
68
  error: (value: string) => any;
69
69
  clear: (value: string) => any;
70
70
  "update:modelValue": (value: IFilterValue) => any;
71
71
  confirm: (value: IFilterValue) => any;
72
72
  "delete-preset": (value: string) => any;
73
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
73
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
74
74
  /**
75
75
  * Имя фильтра
76
76
  * (для записи данных в стор)
@@ -148,5 +148,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
148
148
  buttonConfirmIsLoading: boolean;
149
149
  useTeleport: boolean;
150
150
  disabledOpen: boolean;
151
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
151
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
152
152
  export default _default;
@@ -1,6 +1,6 @@
1
- import { PropType } from 'vue';
2
- import { IFilterTag } from '../../../../types/IFilter';
3
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1
+ import { type PropType } from 'vue';
2
+ import { type IFilterTag } from '@/types/IFilter';
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
4
  /**
5
5
  * Объект тэга
6
6
  */
@@ -22,9 +22,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
22
22
  type: PropType<boolean>;
23
23
  default: boolean;
24
24
  };
25
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
25
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
26
26
  close: () => any;
27
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
27
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
28
28
  /**
29
29
  * Объект тэга
30
30
  */
@@ -51,5 +51,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
51
51
  }>, {
52
52
  isActive: boolean;
53
53
  closable: boolean;
54
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
54
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLElement>;
55
55
  export default _default;
@@ -1,6 +1,6 @@
1
- import { PropType } from 'vue';
2
- import { IFilter, IFilterTag, IFilterPlaceholders, IFilterParsedValueFilterName } from '../../../../types/IFilter';
3
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1
+ import { type PropType } from 'vue';
2
+ import type { IFilter, IFilterTag, IFilterPlaceholders, IFilterParsedValueFilterName } from '@/types/IFilter';
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
4
  /**
5
5
  * Данные фильтра
6
6
  */
@@ -34,11 +34,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
34
34
  type: PropType<boolean>;
35
35
  default: boolean;
36
36
  };
37
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
37
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
38
38
  clear: () => any;
39
39
  "tag-click": (value: IFilterTag) => any;
40
40
  "tag-change": (value: IFilterParsedValueFilterName) => any;
41
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
41
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
42
42
  /**
43
43
  * Данные фильтра
44
44
  */
@@ -81,5 +81,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
81
81
  filters: IFilter[];
82
82
  useTimezone: boolean;
83
83
  activeTag: IFilterTag | null;
84
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
84
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
85
85
  export default _default;
@@ -1,6 +1,6 @@
1
- import { PropType } from 'vue';
2
- import { IBaseFilter, IFilterCondition, IFilterDateValue } from '../../../../types/IFilter';
3
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1
+ import { type PropType } from 'vue';
2
+ import type { IBaseFilter, IFilterCondition, IFilterDateValue } from '@/types/IFilter';
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
4
  /**
5
5
  * Значение
6
6
  */
@@ -27,9 +27,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
27
27
  type: PropType<boolean>;
28
28
  default: boolean;
29
29
  };
30
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
30
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
31
31
  "update:modelValue": (value: IFilterCondition) => any;
32
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
32
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
33
33
  /**
34
34
  * Значение
35
35
  */
@@ -62,5 +62,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
62
62
  filter: IBaseFilter;
63
63
  modelValue: IFilterDateValue;
64
64
  useTimezone: boolean;
65
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
65
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
66
66
  export default _default;
@@ -1,6 +1,6 @@
1
- import { IFilterCondition, IFilterPlaceholders, IFilterRangeValue, IRangeFilter } from '../../../../types/IFilter.js';
2
- import { PropType } from 'vue';
3
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1
+ import type { IFilterCondition, IFilterPlaceholders, IFilterRangeValue, IRangeFilter } from '@/types/IFilter.js';
2
+ import { type PropType } from 'vue';
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
4
  /**
5
5
  * Значение
6
6
  */
@@ -23,9 +23,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
23
23
  type: PropType<IFilterPlaceholders>;
24
24
  required: true;
25
25
  };
26
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
26
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
27
27
  "update:modelValue": (value: IFilterCondition) => any;
28
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
28
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
29
29
  /**
30
30
  * Значение
31
31
  */
@@ -53,5 +53,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
53
53
  }>, {
54
54
  filter: IRangeFilter;
55
55
  modelValue: IFilterRangeValue;
56
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
56
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
57
57
  export default _default;
@@ -1,6 +1,6 @@
1
- import { PropType } from 'vue';
2
- import { IFilterPlaceholders, FilterRelationValue, IRelationFilter, IFilterParsedValueFilter, IFilterCondition } from '../../../../types';
3
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1
+ import { type PropType } from 'vue';
2
+ import type { IFilterPlaceholders, FilterRelationValue, IRelationFilter, IFilterParsedValueFilter, IFilterCondition } from '@/types';
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
4
  /**
5
5
  * Значение
6
6
  */
@@ -31,9 +31,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
31
31
  type: PropType<IFilterParsedValueFilter>;
32
32
  default: () => {};
33
33
  };
34
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
34
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
35
35
  "update:modelValue": (value: IFilterCondition) => any;
36
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
36
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
37
37
  /**
38
38
  * Значение
39
39
  */
@@ -70,5 +70,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
70
70
  filter: IRelationFilter;
71
71
  modelValue: FilterRelationValue;
72
72
  currentValues: IFilterParsedValueFilter;
73
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
73
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
74
74
  export default _default;
@@ -1,6 +1,6 @@
1
- import { PropType } from 'vue';
2
- import { FilterTextValue, IBaseFilter, IFilterCondition, IFilterPlaceholders } from '../../../../types';
3
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1
+ import { type PropType } from 'vue';
2
+ import type { FilterTextValue, IBaseFilter, IFilterCondition, IFilterPlaceholders } from '@/types';
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
4
  /**
5
5
  * Значение
6
6
  */
@@ -23,9 +23,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
23
23
  type: PropType<IFilterPlaceholders>;
24
24
  required: true;
25
25
  };
26
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
26
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
27
27
  "update:modelValue": (value: IFilterCondition) => any;
28
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
28
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
29
29
  /**
30
30
  * Значение
31
31
  */
@@ -53,5 +53,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
53
53
  }>, {
54
54
  filter: IBaseFilter;
55
55
  modelValue: FilterTextValue;
56
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
56
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
57
57
  export default _default;
@@ -1,5 +1,5 @@
1
- import { ColumnSpanUnion } from '../../../types/styles/Grid';
2
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1
+ import type { ColumnSpanUnion } from '@/types/styles/Grid';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
3
  /**
4
4
  * Кол-во колонок (всего 12)
5
5
  */
@@ -46,7 +46,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
46
46
  type: StringConstructor;
47
47
  default: string;
48
48
  };
49
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
49
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
50
50
  /**
51
51
  * Кол-во колонок (всего 12)
52
52
  */
@@ -96,7 +96,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
96
96
  }>> & Readonly<{}>, {
97
97
  stretchSelf: boolean;
98
98
  basis: string;
99
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
99
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>, {
100
100
  default?(_: {}): any;
101
101
  }>;
102
102
  export default _default;
@@ -1,6 +1,6 @@
1
- import { ColumnAlignment, ColumnJustifyAlignment } from '../../../enums/Grid';
2
- import { ColumnAlignmentUnion, ColumnJustifyAlignmentUnion } from '../../../types/styles/Grid';
3
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1
+ import { ColumnAlignment, ColumnJustifyAlignment } from '@/enums/Grid';
2
+ import type { ColumnAlignmentUnion, ColumnJustifyAlignmentUnion } from '@/types/styles/Grid';
3
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
4
  /**
5
5
  * Расстояние между колонками по горизонтали
6
6
  */
@@ -43,7 +43,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
43
43
  type: BooleanConstructor;
44
44
  default: boolean;
45
45
  };
46
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
46
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
47
47
  /**
48
48
  * Расстояние между колонками по горизонтали
49
49
  */
@@ -93,7 +93,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
93
93
  gutterY: number;
94
94
  justify: ColumnJustifyAlignmentUnion;
95
95
  wrap: boolean;
96
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
96
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>, {
97
97
  default?(_: {}): any;
98
98
  }>;
99
99
  export default _default;
@@ -1,5 +1,5 @@
1
- import { ColorTypes, SizeTypes } from '../../../types';
2
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1
+ import { type ColorTypes, type SizeTypes } from '@/types';
2
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
3
  size: {
4
4
  type: () => SizeTypes;
5
5
  default: string;
@@ -8,7 +8,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
8
8
  type: () => ColorTypes;
9
9
  default: string;
10
10
  };
11
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
11
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
12
12
  size: {
13
13
  type: () => SizeTypes;
14
14
  default: string;
@@ -20,5 +20,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
20
20
  }>> & Readonly<{}>, {
21
21
  size: "400" | "500" | "600" | "700" | "50" | "100" | "150" | "200" | "250" | "300" | "550" | "800" | "900" | "1000";
22
22
  backgroundColor: "transparent" | "purple" | "hover-purple" | "light-purple" | "bg-purple" | "lighter-purple" | "black" | "outline-light" | "dark-gray" | "gray" | "outline-gray" | "hover-gray" | "bg-gray" | "white" | "hover-blue" | "blue" | "light-blue" | "lighter-blue" | "dark-orange" | "orange" | "yellow" | "dark-red" | "red" | "bright-pink" | "pale-pink" | "dark-green" | "green" | "toxic" | "ultraviolet" | "pinkish" | "azure" | "turquoise" | "darken-turquoise";
23
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
23
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLElement>;
24
24
  export default _default;
@@ -1,5 +1,5 @@
1
- import { PreviewSizesUnion } from '../../../types/IPreview';
2
- declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1
+ import type { PreviewSizesUnion } from '@/types/IPreview';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
3
3
  /**
4
4
  * Размеры:
5
5
  * `s, m, l`
@@ -8,7 +8,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
8
8
  type: () => PreviewSizesUnion;
9
9
  default: string;
10
10
  };
11
- }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
11
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
12
12
  /**
13
13
  * Размеры:
14
14
  * `s, m, l`
@@ -19,7 +19,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
19
19
  };
20
20
  }>> & Readonly<{}>, {
21
21
  size: PreviewSizesUnion;
22
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
22
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLElement>, {
23
23
  left?(_: {}): any;
24
24
  top?(_: {}): any;
25
25
  bottom?(_: {}): any;