@max-ts/components 0.0.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 (962) hide show
  1. package/.storybook/main.ts +26 -0
  2. package/.storybook/preview.ts +14 -0
  3. package/.turbo/turbo-build.log +508 -0
  4. package/.turbo/turbo-type$colon$check.log +760 -0
  5. package/CHANGELOG.md +7 -0
  6. package/dist/components/Accordion/Accordion.d.ts +39 -0
  7. package/dist/components/Accordion/index.d.ts +1 -0
  8. package/dist/components/Accordion/styles.d.ts +21 -0
  9. package/dist/components/ActionCell/ActionCell.d.ts +24 -0
  10. package/dist/components/ActionCell/MainAction/MainAction.d.ts +13 -0
  11. package/dist/components/ActionCell/MainAction/index.d.ts +1 -0
  12. package/dist/components/ActionCell/SecondaryAction/SecondaryActions.d.ts +13 -0
  13. package/dist/components/ActionCell/SecondaryAction/index.d.ts +1 -0
  14. package/dist/components/ActionCell/index.d.ts +1 -0
  15. package/dist/components/ActionCell/styles.d.ts +1 -0
  16. package/dist/components/ActionCell/types.d.ts +66 -0
  17. package/dist/components/ActionCell/useLogic/index.d.ts +1 -0
  18. package/dist/components/ActionCell/useLogic/useLogic.d.ts +11 -0
  19. package/dist/components/AsyncAutocomplete/AsyncAutocomplete.d.ts +61 -0
  20. package/dist/components/AsyncAutocomplete/constants.d.ts +4 -0
  21. package/dist/components/AsyncAutocomplete/index.d.ts +1 -0
  22. package/dist/components/AsyncAutocomplete/useLogic/index.d.ts +1 -0
  23. package/dist/components/AsyncAutocomplete/useLogic/useLogic.d.ts +12 -0
  24. package/dist/components/Autocomplete/Autocomplete.d.ts +47 -0
  25. package/dist/components/Autocomplete/constants.d.ts +2 -0
  26. package/dist/components/Autocomplete/enums.d.ts +4 -0
  27. package/dist/components/Autocomplete/index.d.ts +1 -0
  28. package/dist/components/Autocomplete/styles.d.ts +7 -0
  29. package/dist/components/Autocomplete/useLogic/index.d.ts +1 -0
  30. package/dist/components/Autocomplete/useLogic/useLogic.d.ts +15 -0
  31. package/dist/components/Autocomplete/useLogic/utils/checkIsInputEmpty/checkIsInputEmpty.d.ts +1 -0
  32. package/dist/components/Autocomplete/useLogic/utils/checkIsInputEmpty/index.d.ts +1 -0
  33. package/dist/components/Autocomplete/useLogic/utils/index.d.ts +1 -0
  34. package/dist/components/Badge/Badge.d.ts +18 -0
  35. package/dist/components/Badge/index.d.ts +2 -0
  36. package/dist/components/Badge/styles.d.ts +8 -0
  37. package/dist/components/Badge/types.d.ts +2 -0
  38. package/dist/components/BottomDrawer/BottomDrawer.d.ts +15 -0
  39. package/dist/components/BottomDrawer/constants.d.ts +2 -0
  40. package/dist/components/BottomDrawer/index.d.ts +1 -0
  41. package/dist/components/BottomDrawer/styles.d.ts +20 -0
  42. package/dist/components/Button/Button.d.ts +35 -0
  43. package/dist/components/Button/constants.d.ts +1 -0
  44. package/dist/components/Button/enums.d.ts +23 -0
  45. package/dist/components/Button/index.d.ts +4 -0
  46. package/dist/components/Button/styles.d.ts +5 -0
  47. package/dist/components/Button/types.d.ts +19 -0
  48. package/dist/components/Button/useLogic/index.d.ts +1 -0
  49. package/dist/components/Button/useLogic/useLogic.d.ts +5 -0
  50. package/dist/components/Checkbox/Checkbox.d.ts +9 -0
  51. package/dist/components/Checkbox/icons.d.ts +4 -0
  52. package/dist/components/Checkbox/index.d.ts +1 -0
  53. package/dist/components/Checkbox/styles.d.ts +5 -0
  54. package/dist/components/CheckboxField/CheckboxField.d.ts +24 -0
  55. package/dist/components/CheckboxField/index.d.ts +1 -0
  56. package/dist/components/CheckboxField/styles.d.ts +8 -0
  57. package/dist/components/Chevron/Chevron.d.ts +7 -0
  58. package/dist/components/Chevron/index.d.ts +1 -0
  59. package/dist/components/Chevron/styles.d.ts +5 -0
  60. package/dist/components/CircularProgress/CircularProgress.d.ts +19 -0
  61. package/dist/components/CircularProgress/constants.d.ts +8 -0
  62. package/dist/components/CircularProgress/index.d.ts +1 -0
  63. package/dist/components/CircularProgress/useLogic/index.d.ts +1 -0
  64. package/dist/components/CircularProgress/useLogic/useLogic.d.ts +6 -0
  65. package/dist/components/Collapse/Collapse.d.ts +4 -0
  66. package/dist/components/Collapse/index.d.ts +1 -0
  67. package/dist/components/ConfigProvider/ConfigProvider.d.ts +91 -0
  68. package/dist/components/ConfigProvider/index.d.ts +1 -0
  69. package/dist/components/ConfirmAction/ConfirmAction.d.ts +38 -0
  70. package/dist/components/ConfirmAction/constants.d.ts +8 -0
  71. package/dist/components/ConfirmAction/index.d.ts +1 -0
  72. package/dist/components/ConfirmAction/styles.d.ts +16 -0
  73. package/dist/components/ConfirmAction/useLogic/index.d.ts +1 -0
  74. package/dist/components/ConfirmAction/useLogic/useLogic.d.ts +22 -0
  75. package/dist/components/Container/Container.d.ts +8 -0
  76. package/dist/components/Container/index.d.ts +1 -0
  77. package/dist/components/Container/styles.d.ts +24 -0
  78. package/dist/components/ContentState/ContentState.d.ts +36 -0
  79. package/dist/components/ContentState/index.d.ts +2 -0
  80. package/dist/components/ContentState/styles.d.ts +1 -0
  81. package/dist/components/ContentState/types.d.ts +29 -0
  82. package/dist/components/CopyTypography/CopyTypography.d.ts +17 -0
  83. package/dist/components/CopyTypography/enums.d.ts +5 -0
  84. package/dist/components/CopyTypography/index.d.ts +1 -0
  85. package/dist/components/CopyTypography/styles.d.ts +17 -0
  86. package/dist/components/CopyTypography/useLogic/index.d.ts +1 -0
  87. package/dist/components/CopyTypography/useLogic/useLogic.d.ts +10 -0
  88. package/dist/components/DataGrid/Body/Body.d.ts +99 -0
  89. package/dist/components/DataGrid/Body/index.d.ts +1 -0
  90. package/dist/components/DataGrid/Body/styles.d.ts +4 -0
  91. package/dist/components/DataGrid/Body/useLogic/index.d.ts +1 -0
  92. package/dist/components/DataGrid/Body/useLogic/useLogic.d.ts +11 -0
  93. package/dist/components/DataGrid/Cell/Cell.d.ts +26 -0
  94. package/dist/components/DataGrid/Cell/index.d.ts +1 -0
  95. package/dist/components/DataGrid/Cell/styles.d.ts +8 -0
  96. package/dist/components/DataGrid/Cell/useLogic/index.d.ts +1 -0
  97. package/dist/components/DataGrid/Cell/useLogic/useLogic.d.ts +8 -0
  98. package/dist/components/DataGrid/DataGrid.d.ts +154 -0
  99. package/dist/components/DataGrid/DataGridContext/DataGridContext.d.ts +7 -0
  100. package/dist/components/DataGrid/DataGridContext/DataGridProvider/DataGridProvider.d.ts +6 -0
  101. package/dist/components/DataGrid/DataGridContext/DataGridProvider/index.d.ts +1 -0
  102. package/dist/components/DataGrid/DataGridContext/index.d.ts +2 -0
  103. package/dist/components/DataGrid/Head/Head.d.ts +37 -0
  104. package/dist/components/DataGrid/Head/index.d.ts +1 -0
  105. package/dist/components/DataGrid/Head/styles.d.ts +4 -0
  106. package/dist/components/DataGrid/Head/useLogic/index.d.ts +1 -0
  107. package/dist/components/DataGrid/Head/useLogic/useLogic.d.ts +12 -0
  108. package/dist/components/DataGrid/HeadCell/HeadCell.d.ts +18 -0
  109. package/dist/components/DataGrid/HeadCell/index.d.ts +1 -0
  110. package/dist/components/DataGrid/HeadCell/styles.d.ts +22 -0
  111. package/dist/components/DataGrid/HeadCell/useLogic/index.d.ts +1 -0
  112. package/dist/components/DataGrid/HeadCell/useLogic/useLogic.d.ts +10 -0
  113. package/dist/components/DataGrid/Loader/Loader.d.ts +6 -0
  114. package/dist/components/DataGrid/Loader/index.d.ts +1 -0
  115. package/dist/components/DataGrid/Loader/styles.d.ts +4 -0
  116. package/dist/components/DataGrid/NoData/NoData.d.ts +34 -0
  117. package/dist/components/DataGrid/NoData/index.d.ts +1 -0
  118. package/dist/components/DataGrid/Row/NestedChildren/NestedChildren.d.ts +55 -0
  119. package/dist/components/DataGrid/Row/NestedChildren/index.d.ts +1 -0
  120. package/dist/components/DataGrid/Row/NestedChildren/styles.d.ts +20 -0
  121. package/dist/components/DataGrid/Row/NestedChildren/useLogic/index.d.ts +1 -0
  122. package/dist/components/DataGrid/Row/NestedChildren/useLogic/useLogic.d.ts +18 -0
  123. package/dist/components/DataGrid/Row/Row.d.ts +91 -0
  124. package/dist/components/DataGrid/Row/RowContext/RowContext.d.ts +7 -0
  125. package/dist/components/DataGrid/Row/RowContext/RowProvider/RowProvider.d.ts +6 -0
  126. package/dist/components/DataGrid/Row/RowContext/RowProvider/index.d.ts +1 -0
  127. package/dist/components/DataGrid/Row/RowContext/index.d.ts +2 -0
  128. package/dist/components/DataGrid/Row/constants.d.ts +2 -0
  129. package/dist/components/DataGrid/Row/index.d.ts +2 -0
  130. package/dist/components/DataGrid/Row/styles.d.ts +31 -0
  131. package/dist/components/DataGrid/Row/useLogic/index.d.ts +1 -0
  132. package/dist/components/DataGrid/Row/useLogic/useLogic.d.ts +35 -0
  133. package/dist/components/DataGrid/Row/useLogic/utils/getColumnsMap/getColumnsMap.d.ts +4 -0
  134. package/dist/components/DataGrid/Row/useLogic/utils/getColumnsMap/index.d.ts +1 -0
  135. package/dist/components/DataGrid/Row/useLogic/utils/index.d.ts +2 -0
  136. package/dist/components/DataGrid/Row/useLogic/utils/mergeColumnsOptions/index.d.ts +1 -0
  137. package/dist/components/DataGrid/Row/useLogic/utils/mergeColumnsOptions/mergeColumnsOptions.d.ts +2 -0
  138. package/dist/components/DataGrid/Row/utils/checkIsDisabled/checkIsDisabled.d.ts +1 -0
  139. package/dist/components/DataGrid/Row/utils/checkIsDisabled/index.d.ts +1 -0
  140. package/dist/components/DataGrid/Row/utils/index.d.ts +1 -0
  141. package/dist/components/DataGrid/constants.d.ts +6 -0
  142. package/dist/components/DataGrid/enums.d.ts +8 -0
  143. package/dist/components/DataGrid/faker.d.ts +24 -0
  144. package/dist/components/DataGrid/index.d.ts +6 -0
  145. package/dist/components/DataGrid/styles.d.ts +5 -0
  146. package/dist/components/DataGrid/types.d.ts +91 -0
  147. package/dist/components/DataGrid/useLogic/index.d.ts +1 -0
  148. package/dist/components/DataGrid/useLogic/useLogic.d.ts +32 -0
  149. package/dist/components/DataGrid/useLogic/utils/getGridTemplateColumns/getGridTemplateColumns.d.ts +3 -0
  150. package/dist/components/DataGrid/useLogic/utils/getGridTemplateColumns/index.d.ts +1 -0
  151. package/dist/components/DataGrid/useLogic/utils/index.d.ts +1 -0
  152. package/dist/components/DataGrid/utils/alignToJustifyContent/alignToJustifyContent.d.ts +5 -0
  153. package/dist/components/DataGrid/utils/alignToJustifyContent/constants.d.ts +6 -0
  154. package/dist/components/DataGrid/utils/alignToJustifyContent/index.d.ts +1 -0
  155. package/dist/components/DataGrid/utils/index.d.ts +1 -0
  156. package/dist/components/DataGridActionCell/DataGridActionCell.d.ts +22 -0
  157. package/dist/components/DataGridActionCell/MainAction/MainAction.d.ts +22 -0
  158. package/dist/components/DataGridActionCell/MainAction/MainIconButton/MainIconButton.d.ts +19 -0
  159. package/dist/components/DataGridActionCell/MainAction/MainIconButton/index.d.ts +1 -0
  160. package/dist/components/DataGridActionCell/MainAction/MainIconButton/useLogic/index.d.ts +1 -0
  161. package/dist/components/DataGridActionCell/MainAction/MainIconButton/useLogic/useLogic.d.ts +11 -0
  162. package/dist/components/DataGridActionCell/MainAction/index.d.ts +1 -0
  163. package/dist/components/DataGridActionCell/SecondaryAction/SecondaryAction.d.ts +22 -0
  164. package/dist/components/DataGridActionCell/SecondaryAction/index.d.ts +1 -0
  165. package/dist/components/DataGridActionCell/index.d.ts +1 -0
  166. package/dist/components/DataGridActionCell/styles.d.ts +1 -0
  167. package/dist/components/DataGridActionCell/types.d.ts +98 -0
  168. package/dist/components/DataGridActionCell/useLogic/index.d.ts +1 -0
  169. package/dist/components/DataGridActionCell/useLogic/useLogic.d.ts +10 -0
  170. package/dist/components/DataGridOld/Body/Body.d.ts +13 -0
  171. package/dist/components/DataGridOld/Body/index.d.ts +1 -0
  172. package/dist/components/DataGridOld/Body/styles.d.ts +1 -0
  173. package/dist/components/DataGridOld/Cell/Cell.d.ts +7 -0
  174. package/dist/components/DataGridOld/Cell/index.d.ts +1 -0
  175. package/dist/components/DataGridOld/Cell/styles.d.ts +4 -0
  176. package/dist/components/DataGridOld/DataGridOld.d.ts +20 -0
  177. package/dist/components/DataGridOld/Head/Head.d.ts +7 -0
  178. package/dist/components/DataGridOld/Head/index.d.ts +1 -0
  179. package/dist/components/DataGridOld/Head/styles.d.ts +4 -0
  180. package/dist/components/DataGridOld/HeadCell/HeadCell.d.ts +5 -0
  181. package/dist/components/DataGridOld/HeadCell/index.d.ts +1 -0
  182. package/dist/components/DataGridOld/HeadCell/styles.d.ts +3 -0
  183. package/dist/components/DataGridOld/Row/Row.d.ts +11 -0
  184. package/dist/components/DataGridOld/Row/index.d.ts +1 -0
  185. package/dist/components/DataGridOld/Row/styles.d.ts +5 -0
  186. package/dist/components/DataGridOld/State/State.d.ts +6 -0
  187. package/dist/components/DataGridOld/State/index.d.ts +1 -0
  188. package/dist/components/DataGridOld/State/styles.d.ts +1 -0
  189. package/dist/components/DataGridOld/constants.d.ts +1 -0
  190. package/dist/components/DataGridOld/index.d.ts +2 -0
  191. package/dist/components/DataGridOld/styles.d.ts +7 -0
  192. package/dist/components/DataGridOld/types.d.ts +15 -0
  193. package/dist/components/DataGridPagination/DataGridPagination.d.ts +25 -0
  194. package/dist/components/DataGridPagination/constants.d.ts +2 -0
  195. package/dist/components/DataGridPagination/faker.d.ts +3 -0
  196. package/dist/components/DataGridPagination/index.d.ts +1 -0
  197. package/dist/components/DataGridPagination/styles.d.ts +16 -0
  198. package/dist/components/DataGridPagination/useLogic/index.d.ts +1 -0
  199. package/dist/components/DataGridPagination/useLogic/useLogic.d.ts +10 -0
  200. package/dist/components/Description/Description.d.ts +34 -0
  201. package/dist/components/Description/DescriptionContext/DescriptionContext.d.ts +6 -0
  202. package/dist/components/Description/DescriptionContext/DescriptionContextProvider/DescriptionContextProvider.d.ts +7 -0
  203. package/dist/components/Description/DescriptionContext/DescriptionContextProvider/index.d.ts +1 -0
  204. package/dist/components/Description/DescriptionContext/index.d.ts +2 -0
  205. package/dist/components/Description/Name/Name.d.ts +3 -0
  206. package/dist/components/Description/Name/index.d.ts +1 -0
  207. package/dist/components/Description/Name/styles.d.ts +6 -0
  208. package/dist/components/Description/Value/Value.d.ts +22 -0
  209. package/dist/components/Description/Value/index.d.ts +1 -0
  210. package/dist/components/Description/Value/styles.d.ts +43 -0
  211. package/dist/components/Description/Value/useLogic/index.d.ts +1 -0
  212. package/dist/components/Description/Value/useLogic/useLogic.d.ts +9 -0
  213. package/dist/components/Description/constants.d.ts +3 -0
  214. package/dist/components/Description/index.d.ts +2 -0
  215. package/dist/components/Description/styles.d.ts +4 -0
  216. package/dist/components/Description/useLogic/index.d.ts +1 -0
  217. package/dist/components/Description/useLogic/useLogic.d.ts +9 -0
  218. package/dist/components/DescriptionList/DescriptionList.d.ts +2 -0
  219. package/dist/components/DescriptionList/index.d.ts +2 -0
  220. package/dist/components/DescriptionList/styles.d.ts +22 -0
  221. package/dist/components/DescriptionList/types.d.ts +32 -0
  222. package/dist/components/DescriptionList/utils/getTooltipProps/getTooltipProps.d.ts +3 -0
  223. package/dist/components/DescriptionList/utils/getTooltipProps/index.d.ts +1 -0
  224. package/dist/components/DescriptionList/utils/index.d.ts +1 -0
  225. package/dist/components/Dialog/Dialog.d.ts +20 -0
  226. package/dist/components/Dialog/constants.d.ts +22 -0
  227. package/dist/components/Dialog/index.d.ts +1 -0
  228. package/dist/components/Dialog/styles.d.ts +5 -0
  229. package/dist/components/DialogActions/DialogActions.d.ts +4 -0
  230. package/dist/components/DialogActions/index.d.ts +1 -0
  231. package/dist/components/DialogActions/styles.d.ts +6 -0
  232. package/dist/components/DialogContent/DialogContent.d.ts +4 -0
  233. package/dist/components/DialogContent/index.d.ts +1 -0
  234. package/dist/components/DialogContent/styles.d.ts +2 -0
  235. package/dist/components/DialogContentText/DialogContentText.d.ts +4 -0
  236. package/dist/components/DialogContentText/index.d.ts +1 -0
  237. package/dist/components/DialogContentText/styles.d.ts +1 -0
  238. package/dist/components/DialogHeader/DialogHeader.d.ts +17 -0
  239. package/dist/components/DialogHeader/index.d.ts +1 -0
  240. package/dist/components/DialogHeader/styles.d.ts +18 -0
  241. package/dist/components/DialogTitle/DialogTitle.d.ts +6 -0
  242. package/dist/components/DialogTitle/index.d.ts +1 -0
  243. package/dist/components/Divider/Divider.d.ts +4 -0
  244. package/dist/components/Divider/index.d.ts +1 -0
  245. package/dist/components/ErrorBoundary/ErrorBoundary.d.ts +36 -0
  246. package/dist/components/ErrorBoundary/ErrorBoundary.stubs.d.ts +12 -0
  247. package/dist/components/ErrorBoundary/constants.d.ts +9 -0
  248. package/dist/components/ErrorBoundary/enums.d.ts +9 -0
  249. package/dist/components/ErrorBoundary/index.d.ts +1 -0
  250. package/dist/components/FormControl/FormControl.d.ts +4 -0
  251. package/dist/components/FormControl/index.d.ts +1 -0
  252. package/dist/components/FormControlLabel/FormControlLabel.d.ts +2 -0
  253. package/dist/components/FormControlLabel/index.d.ts +2 -0
  254. package/dist/components/FormControlLabel/styles.d.ts +2 -0
  255. package/dist/components/FormControlLabel/types.d.ts +3 -0
  256. package/dist/components/FormHelperText/FormHelperText.d.ts +7 -0
  257. package/dist/components/FormHelperText/FormHelperTextContent/FormHelperTextContent.d.ts +7 -0
  258. package/dist/components/FormHelperText/FormHelperTextContent/index.d.ts +1 -0
  259. package/dist/components/FormHelperText/FormHelperTextContent/styles.d.ts +9 -0
  260. package/dist/components/FormHelperText/index.d.ts +2 -0
  261. package/dist/components/GuidTypography/GuidTypography.d.ts +3 -0
  262. package/dist/components/GuidTypography/index.d.ts +1 -0
  263. package/dist/components/IconButton/IconButton.d.ts +9 -0
  264. package/dist/components/IconButton/index.d.ts +1 -0
  265. package/dist/components/IconButton/styles.d.ts +23 -0
  266. package/dist/components/IconDropdownButton/IconDropdownButton.d.ts +9 -0
  267. package/dist/components/IconDropdownButton/index.d.ts +1 -0
  268. package/dist/components/InternalErrorPlaceholder/InternalErrorPlaceholder.d.ts +1 -0
  269. package/dist/components/InternalErrorPlaceholder/index.d.ts +1 -0
  270. package/dist/components/Link/Link.d.ts +24 -0
  271. package/dist/components/Link/index.d.ts +1 -0
  272. package/dist/components/Link/styles.d.ts +1 -0
  273. package/dist/components/List/List.d.ts +4 -0
  274. package/dist/components/List/index.d.ts +1 -0
  275. package/dist/components/ListItem/ListItem.d.ts +4 -0
  276. package/dist/components/ListItem/index.d.ts +1 -0
  277. package/dist/components/ListItemButton/ListItemButton.d.ts +21 -0
  278. package/dist/components/ListItemButton/constants.d.ts +5 -0
  279. package/dist/components/ListItemButton/index.d.ts +1 -0
  280. package/dist/components/ListItemIcon/ListItemIcon.d.ts +5 -0
  281. package/dist/components/ListItemIcon/index.d.ts +1 -0
  282. package/dist/components/ListItemIcon/styles.d.ts +1 -0
  283. package/dist/components/ListItemText/ListItemText.d.ts +4 -0
  284. package/dist/components/ListItemText/index.d.ts +1 -0
  285. package/dist/components/ListSubheader/ListSubheader.d.ts +4 -0
  286. package/dist/components/ListSubheader/index.d.ts +1 -0
  287. package/dist/components/Menu/Menu.d.ts +9 -0
  288. package/dist/components/Menu/index.d.ts +1 -0
  289. package/dist/components/MenuItem/MenuItem.d.ts +28 -0
  290. package/dist/components/MenuItem/index.d.ts +1 -0
  291. package/dist/components/MenuList/MenuList.d.ts +2 -0
  292. package/dist/components/MenuList/index.d.ts +2 -0
  293. package/dist/components/MenuList/styles.d.ts +1 -0
  294. package/dist/components/MenuList/types.d.ts +3 -0
  295. package/dist/components/NavMenu/Item/Item.d.ts +16 -0
  296. package/dist/components/NavMenu/Item/ItemButton/ItemButton.d.ts +11 -0
  297. package/dist/components/NavMenu/Item/ItemButton/index.d.ts +1 -0
  298. package/dist/components/NavMenu/Item/ItemButton/styles.d.ts +639 -0
  299. package/dist/components/NavMenu/Item/List/List.d.ts +13 -0
  300. package/dist/components/NavMenu/Item/List/index.d.ts +1 -0
  301. package/dist/components/NavMenu/Item/index.d.ts +1 -0
  302. package/dist/components/NavMenu/NavMenu.d.ts +15 -0
  303. package/dist/components/NavMenu/index.d.ts +1 -0
  304. package/dist/components/OutdatedReleasePlaceholder/OutdatedReleasePlaceholder.d.ts +1 -0
  305. package/dist/components/OutdatedReleasePlaceholder/index.d.ts +1 -0
  306. package/dist/components/OverflowTypography/OverflowTypography.d.ts +35 -0
  307. package/dist/components/OverflowTypography/hooks/index.d.ts +1 -0
  308. package/dist/components/OverflowTypography/hooks/useOverflowed/index.d.ts +1 -0
  309. package/dist/components/OverflowTypography/hooks/useOverflowed/useOverflowed.d.ts +5 -0
  310. package/dist/components/OverflowTypography/index.d.ts +1 -0
  311. package/dist/components/OverflowTypography/styles.d.ts +35 -0
  312. package/dist/components/OverflowTypography/useLogic/index.d.ts +1 -0
  313. package/dist/components/OverflowTypography/useLogic/useLogic.d.ts +8 -0
  314. package/dist/components/OverflowTypography/utils/index.d.ts +1 -0
  315. package/dist/components/OverflowTypography/utils/truncateString/index.d.ts +1 -0
  316. package/dist/components/OverflowTypography/utils/truncateString/truncateString.d.ts +4 -0
  317. package/dist/components/Pagination/Pagination.d.ts +2 -0
  318. package/dist/components/Pagination/index.d.ts +2 -0
  319. package/dist/components/Pagination/types.d.ts +3 -0
  320. package/dist/components/Paper/Paper.d.ts +14 -0
  321. package/dist/components/Paper/index.d.ts +1 -0
  322. package/dist/components/Placeholder/Image/Image.d.ts +21 -0
  323. package/dist/components/Placeholder/Image/index.d.ts +1 -0
  324. package/dist/components/Placeholder/Image/styles.d.ts +4 -0
  325. package/dist/components/Placeholder/Placeholder.d.ts +45 -0
  326. package/dist/components/Placeholder/constants.d.ts +14 -0
  327. package/dist/components/Placeholder/index.d.ts +3 -0
  328. package/dist/components/Placeholder/styles.d.ts +35 -0
  329. package/dist/components/Placeholder/types.d.ts +1 -0
  330. package/dist/components/Popover/Popover.d.ts +9 -0
  331. package/dist/components/Popover/index.d.ts +1 -0
  332. package/dist/components/SearchField/SearchField.d.ts +3 -0
  333. package/dist/components/SearchField/index.d.ts +1 -0
  334. package/dist/components/SearchField/styles.d.ts +22 -0
  335. package/dist/components/Select/Select.d.ts +25 -0
  336. package/dist/components/Select/constants.d.ts +1 -0
  337. package/dist/components/Select/index.d.ts +1 -0
  338. package/dist/components/Select/styles.d.ts +23 -0
  339. package/dist/components/Select/useLogic/index.d.ts +1 -0
  340. package/dist/components/Select/useLogic/useLogic.d.ts +10 -0
  341. package/dist/components/Tag/Tag.d.ts +36 -0
  342. package/dist/components/Tag/enums.d.ts +18 -0
  343. package/dist/components/Tag/index.d.ts +2 -0
  344. package/dist/components/Tag/styles.d.ts +27 -0
  345. package/dist/components/Tag/types.d.ts +5 -0
  346. package/dist/components/TagBadge/TagBadge.d.ts +23 -0
  347. package/dist/components/TagBadge/index.d.ts +1 -0
  348. package/dist/components/TagBadge/styles.d.ts +5 -0
  349. package/dist/components/TagBadge/utils/getCheckableTagBadgeBgColor/getCheckableTagBadgeBgColor.d.ts +15 -0
  350. package/dist/components/TagBadge/utils/getCheckableTagBadgeBgColor/index.d.ts +1 -0
  351. package/dist/components/TagBadge/utils/index.d.ts +1 -0
  352. package/dist/components/TagsList/Tag/Tag.d.ts +25 -0
  353. package/dist/components/TagsList/Tag/index.d.ts +1 -0
  354. package/dist/components/TagsList/Tag/styles.d.ts +11 -0
  355. package/dist/components/TagsList/Tag/useLogic/index.d.ts +1 -0
  356. package/dist/components/TagsList/Tag/useLogic/useLogic.d.ts +4 -0
  357. package/dist/components/TagsList/TagsList.d.ts +34 -0
  358. package/dist/components/TagsList/index.d.ts +2 -0
  359. package/dist/components/TagsList/styles.d.ts +1 -0
  360. package/dist/components/TagsList/types.d.ts +1 -0
  361. package/dist/components/TagsList/useLogic/index.d.ts +1 -0
  362. package/dist/components/TagsList/useLogic/useLogic.d.ts +14 -0
  363. package/dist/components/TagsList/utils/getElementByText/getElementByText.d.ts +4 -0
  364. package/dist/components/TagsList/utils/getElementByText/index.d.ts +1 -0
  365. package/dist/components/TagsList/utils/getKey/getKey.d.ts +2 -0
  366. package/dist/components/TagsList/utils/getKey/index.d.ts +1 -0
  367. package/dist/components/TagsList/utils/index.d.ts +2 -0
  368. package/dist/components/TextField/TextField.d.ts +28 -0
  369. package/dist/components/TextField/index.d.ts +1 -0
  370. package/dist/components/Tooltip/Tooltip.d.ts +16 -0
  371. package/dist/components/Tooltip/constants.d.ts +4 -0
  372. package/dist/components/Tooltip/index.d.ts +2 -0
  373. package/dist/components/Tooltip/styles.d.ts +7 -0
  374. package/dist/components/Tooltip/types.d.ts +2 -0
  375. package/dist/components/Typography/Typography.d.ts +48 -0
  376. package/dist/components/Typography/enums.d.ts +14 -0
  377. package/dist/components/Typography/hooks/index.d.ts +1 -0
  378. package/dist/components/Typography/hooks/useTypographyColor/index.d.ts +1 -0
  379. package/dist/components/Typography/hooks/useTypographyColor/useTypographyColor.d.ts +16 -0
  380. package/dist/components/Typography/index.d.ts +2 -0
  381. package/dist/components/Typography/styles.d.ts +2 -0
  382. package/dist/components/Typography/types.d.ts +4 -0
  383. package/dist/components/index.d.ts +62 -0
  384. package/dist/components/types.d.ts +1 -0
  385. package/dist/hooks/index.d.ts +3 -0
  386. package/dist/hooks/useMenu/index.d.ts +1 -0
  387. package/dist/hooks/useMenu/useMenu.d.ts +21 -0
  388. package/dist/hooks/usePopover/index.d.ts +1 -0
  389. package/dist/hooks/usePopover/usePopover.d.ts +11 -0
  390. package/dist/hooks/useViewportType/index.d.ts +1 -0
  391. package/dist/hooks/useViewportType/useViewportType.d.ts +5 -0
  392. package/dist/index.d.ts +3 -0
  393. package/dist/index.js +1080 -0
  394. package/dist/index.mjs +1080 -0
  395. package/dist/theme/baseTheme/baseTheme.d.ts +9 -0
  396. package/dist/theme/baseTheme/index.d.ts +1 -0
  397. package/dist/theme/breakpoints.d.ts +2 -0
  398. package/dist/theme/components/MuiAlert.d.ts +3 -0
  399. package/dist/theme/components/MuiAutocomplete.d.ts +3 -0
  400. package/dist/theme/components/MuiButton.d.ts +32 -0
  401. package/dist/theme/components/MuiButtonBase.d.ts +3 -0
  402. package/dist/theme/components/MuiCircularProgress.d.ts +4 -0
  403. package/dist/theme/components/MuiDialog.d.ts +3 -0
  404. package/dist/theme/components/MuiDialogActions.d.ts +3 -0
  405. package/dist/theme/components/MuiDialogContent.d.ts +3 -0
  406. package/dist/theme/components/MuiDialogTitle.d.ts +3 -0
  407. package/dist/theme/components/MuiDrawer.d.ts +3 -0
  408. package/dist/theme/components/MuiFormHelperText.d.ts +4 -0
  409. package/dist/theme/components/MuiFormLabel.d.ts +4 -0
  410. package/dist/theme/components/MuiInputLabel.d.ts +4 -0
  411. package/dist/theme/components/MuiLinearProgress.d.ts +4 -0
  412. package/dist/theme/components/MuiListItemButton.d.ts +3 -0
  413. package/dist/theme/components/MuiListItemText.d.ts +3 -0
  414. package/dist/theme/components/MuiMenu.d.ts +4 -0
  415. package/dist/theme/components/MuiMenuItem.d.ts +4 -0
  416. package/dist/theme/components/MuiOutlinedInput.d.ts +4 -0
  417. package/dist/theme/components/MuiPaginationItem.d.ts +3 -0
  418. package/dist/theme/components/MuiPaper.d.ts +3 -0
  419. package/dist/theme/components/MuiStep.d.ts +3 -0
  420. package/dist/theme/components/MuiStepConnector.d.ts +3 -0
  421. package/dist/theme/components/MuiStepLabel.d.ts +3 -0
  422. package/dist/theme/components/MuiSwitch.d.ts +3 -0
  423. package/dist/theme/components/MuiTab.d.ts +3 -0
  424. package/dist/theme/components/MuiTableCell.d.ts +3 -0
  425. package/dist/theme/components/MuiTableHead.d.ts +3 -0
  426. package/dist/theme/components/MuiTableRow.d.ts +3 -0
  427. package/dist/theme/components/MuiTabs.d.ts +3 -0
  428. package/dist/theme/components/MuiTextField.d.ts +3 -0
  429. package/dist/theme/components/MuiToggleButton.d.ts +3 -0
  430. package/dist/theme/components/MuiToggleButtonGroup.d.ts +3 -0
  431. package/dist/theme/components/MuiTypography.d.ts +21 -0
  432. package/dist/theme/components/components.d.ts +21 -0
  433. package/dist/theme/components/index.d.ts +1 -0
  434. package/dist/theme/constants.d.ts +1 -0
  435. package/dist/theme/elevation.d.ts +8 -0
  436. package/dist/theme/hooks/index.d.ts +1 -0
  437. package/dist/theme/hooks/useTheme/index.d.ts +2 -0
  438. package/dist/theme/index.d.ts +7 -0
  439. package/dist/theme/palette/componentsColors/componentsColors.d.ts +5 -0
  440. package/dist/theme/palette/componentsColors/index.d.ts +1 -0
  441. package/dist/theme/palette/componentsColors/linkColors/index.d.ts +1 -0
  442. package/dist/theme/palette/componentsColors/linkColors/linkColors.d.ts +7 -0
  443. package/dist/theme/palette/index.d.ts +3 -0
  444. package/dist/theme/palette/palette.d.ts +2 -0
  445. package/dist/theme/palette/types.d.ts +44 -0
  446. package/dist/theme/shape.d.ts +6 -0
  447. package/dist/theme/types.d.ts +21 -0
  448. package/dist/theme/typography.d.ts +153 -0
  449. package/package.json +47 -0
  450. package/rslib.config.ts +32 -0
  451. package/src/components/Accordion/Accordion.stories.tsx +126 -0
  452. package/src/components/Accordion/Accordion.tsx +80 -0
  453. package/src/components/Accordion/index.ts +1 -0
  454. package/src/components/Accordion/styles.ts +30 -0
  455. package/src/components/ActionCell/ActionCell.stories.tsx +226 -0
  456. package/src/components/ActionCell/ActionCell.tsx +71 -0
  457. package/src/components/ActionCell/MainAction/MainAction.tsx +85 -0
  458. package/src/components/ActionCell/MainAction/index.ts +1 -0
  459. package/src/components/ActionCell/SecondaryAction/SecondaryActions.tsx +45 -0
  460. package/src/components/ActionCell/SecondaryAction/index.ts +1 -0
  461. package/src/components/ActionCell/index.ts +1 -0
  462. package/src/components/ActionCell/styles.ts +6 -0
  463. package/src/components/ActionCell/types.ts +89 -0
  464. package/src/components/ActionCell/useLogic/index.ts +1 -0
  465. package/src/components/ActionCell/useLogic/useLogic.ts +46 -0
  466. package/src/components/AsyncAutocomplete/AsyncAutocomplete.stories.tsx +244 -0
  467. package/src/components/AsyncAutocomplete/AsyncAutocomplete.tsx +139 -0
  468. package/src/components/AsyncAutocomplete/constants.ts +7 -0
  469. package/src/components/AsyncAutocomplete/index.ts +1 -0
  470. package/src/components/AsyncAutocomplete/useLogic/index.ts +1 -0
  471. package/src/components/AsyncAutocomplete/useLogic/useLogic.ts +117 -0
  472. package/src/components/Autocomplete/Autocomplete.stories.tsx +275 -0
  473. package/src/components/Autocomplete/Autocomplete.tsx +301 -0
  474. package/src/components/Autocomplete/constants.ts +3 -0
  475. package/src/components/Autocomplete/enums.ts +4 -0
  476. package/src/components/Autocomplete/index.ts +1 -0
  477. package/src/components/Autocomplete/styles.ts +10 -0
  478. package/src/components/Autocomplete/useLogic/index.ts +1 -0
  479. package/src/components/Autocomplete/useLogic/useLogic.ts +88 -0
  480. package/src/components/Autocomplete/useLogic/utils/checkIsInputEmpty/checkIsInputEmpty.ts +8 -0
  481. package/src/components/Autocomplete/useLogic/utils/checkIsInputEmpty/index.ts +1 -0
  482. package/src/components/Autocomplete/useLogic/utils/index.ts +1 -0
  483. package/src/components/Badge/Badge.stories.tsx +189 -0
  484. package/src/components/Badge/Badge.tsx +43 -0
  485. package/src/components/Badge/index.ts +3 -0
  486. package/src/components/Badge/styles.ts +104 -0
  487. package/src/components/Badge/types.ts +9 -0
  488. package/src/components/BottomDrawer/BottomDrawer.stories.tsx +104 -0
  489. package/src/components/BottomDrawer/BottomDrawer.tsx +52 -0
  490. package/src/components/BottomDrawer/constants.ts +3 -0
  491. package/src/components/BottomDrawer/index.ts +1 -0
  492. package/src/components/BottomDrawer/styles.ts +44 -0
  493. package/src/components/Button/Button.stories.tsx +203 -0
  494. package/src/components/Button/Button.tsx +85 -0
  495. package/src/components/Button/constants.ts +1 -0
  496. package/src/components/Button/enums.ts +26 -0
  497. package/src/components/Button/index.ts +7 -0
  498. package/src/components/Button/styles.ts +19 -0
  499. package/src/components/Button/types.ts +30 -0
  500. package/src/components/Button/useLogic/index.ts +1 -0
  501. package/src/components/Button/useLogic/useLogic.ts +22 -0
  502. package/src/components/Checkbox/Checkbox.stories.tsx +154 -0
  503. package/src/components/Checkbox/Checkbox.tsx +39 -0
  504. package/src/components/Checkbox/icons.tsx +41 -0
  505. package/src/components/Checkbox/index.ts +1 -0
  506. package/src/components/Checkbox/styles.ts +70 -0
  507. package/src/components/CheckboxField/CheckboxField.stories.tsx +50 -0
  508. package/src/components/CheckboxField/CheckboxField.tsx +64 -0
  509. package/src/components/CheckboxField/index.ts +1 -0
  510. package/src/components/CheckboxField/styles.ts +17 -0
  511. package/src/components/Chevron/Chevron.stories.tsx +35 -0
  512. package/src/components/Chevron/Chevron.tsx +12 -0
  513. package/src/components/Chevron/index.ts +1 -0
  514. package/src/components/Chevron/styles.tsx +17 -0
  515. package/src/components/CircularProgress/CircularProgress.stories.tsx +52 -0
  516. package/src/components/CircularProgress/CircularProgress.tsx +42 -0
  517. package/src/components/CircularProgress/constants.ts +9 -0
  518. package/src/components/CircularProgress/index.ts +1 -0
  519. package/src/components/CircularProgress/useLogic/index.ts +1 -0
  520. package/src/components/CircularProgress/useLogic/useLogic.ts +9 -0
  521. package/src/components/Collapse/Collapse.stories.tsx +68 -0
  522. package/src/components/Collapse/Collapse.tsx +10 -0
  523. package/src/components/Collapse/index.ts +1 -0
  524. package/src/components/ConfigProvider/ConfigProvider.tsx +165 -0
  525. package/src/components/ConfigProvider/index.ts +1 -0
  526. package/src/components/ConfirmAction/ConfirmAction.stories.tsx +118 -0
  527. package/src/components/ConfirmAction/ConfirmAction.tsx +97 -0
  528. package/src/components/ConfirmAction/constants.ts +9 -0
  529. package/src/components/ConfirmAction/index.ts +1 -0
  530. package/src/components/ConfirmAction/styles.ts +17 -0
  531. package/src/components/ConfirmAction/useLogic/index.ts +1 -0
  532. package/src/components/ConfirmAction/useLogic/useLogic.ts +46 -0
  533. package/src/components/Container/Container.tsx +15 -0
  534. package/src/components/Container/index.ts +1 -0
  535. package/src/components/Container/styles.ts +76 -0
  536. package/src/components/ContentState/ContentState.stories.tsx +243 -0
  537. package/src/components/ContentState/ContentState.tsx +90 -0
  538. package/src/components/ContentState/index.ts +3 -0
  539. package/src/components/ContentState/styles.ts +11 -0
  540. package/src/components/ContentState/types.ts +30 -0
  541. package/src/components/CopyTypography/CopyTypography.stories.tsx +95 -0
  542. package/src/components/CopyTypography/CopyTypography.tsx +55 -0
  543. package/src/components/CopyTypography/enums.ts +5 -0
  544. package/src/components/CopyTypography/index.ts +1 -0
  545. package/src/components/CopyTypography/styles.ts +28 -0
  546. package/src/components/CopyTypography/useLogic/index.ts +1 -0
  547. package/src/components/CopyTypography/useLogic/useLogic.ts +38 -0
  548. package/src/components/DataGrid/Body/Body.tsx +185 -0
  549. package/src/components/DataGrid/Body/index.ts +1 -0
  550. package/src/components/DataGrid/Body/styles.tsx +16 -0
  551. package/src/components/DataGrid/Body/useLogic/index.ts +1 -0
  552. package/src/components/DataGrid/Body/useLogic/useLogic.ts +20 -0
  553. package/src/components/DataGrid/Cell/Cell.tsx +63 -0
  554. package/src/components/DataGrid/Cell/index.ts +1 -0
  555. package/src/components/DataGrid/Cell/styles.ts +26 -0
  556. package/src/components/DataGrid/Cell/useLogic/index.ts +1 -0
  557. package/src/components/DataGrid/Cell/useLogic/useLogic.ts +35 -0
  558. package/src/components/DataGrid/DataGrid.stories.tsx +1882 -0
  559. package/src/components/DataGrid/DataGrid.tsx +307 -0
  560. package/src/components/DataGrid/DataGridContext/DataGridContext.ts +15 -0
  561. package/src/components/DataGrid/DataGridContext/DataGridProvider/DataGridProvider.tsx +83 -0
  562. package/src/components/DataGrid/DataGridContext/DataGridProvider/index.ts +1 -0
  563. package/src/components/DataGrid/DataGridContext/index.ts +3 -0
  564. package/src/components/DataGrid/Head/Head.tsx +110 -0
  565. package/src/components/DataGrid/Head/index.ts +1 -0
  566. package/src/components/DataGrid/Head/styles.ts +21 -0
  567. package/src/components/DataGrid/Head/useLogic/index.ts +1 -0
  568. package/src/components/DataGrid/Head/useLogic/useLogic.tsx +65 -0
  569. package/src/components/DataGrid/HeadCell/HeadCell.tsx +68 -0
  570. package/src/components/DataGrid/HeadCell/index.ts +1 -0
  571. package/src/components/DataGrid/HeadCell/styles.ts +39 -0
  572. package/src/components/DataGrid/HeadCell/useLogic/index.ts +1 -0
  573. package/src/components/DataGrid/HeadCell/useLogic/useLogic.ts +29 -0
  574. package/src/components/DataGrid/Loader/Loader.tsx +26 -0
  575. package/src/components/DataGrid/Loader/index.ts +1 -0
  576. package/src/components/DataGrid/Loader/styles.ts +26 -0
  577. package/src/components/DataGrid/NoData/NoData.tsx +65 -0
  578. package/src/components/DataGrid/NoData/index.ts +1 -0
  579. package/src/components/DataGrid/Row/NestedChildren/NestedChildren.tsx +158 -0
  580. package/src/components/DataGrid/Row/NestedChildren/index.ts +1 -0
  581. package/src/components/DataGrid/Row/NestedChildren/styles.ts +80 -0
  582. package/src/components/DataGrid/Row/NestedChildren/useLogic/index.ts +1 -0
  583. package/src/components/DataGrid/Row/NestedChildren/useLogic/useLogic.ts +44 -0
  584. package/src/components/DataGrid/Row/Row.tsx +307 -0
  585. package/src/components/DataGrid/Row/RowContext/RowContext.ts +14 -0
  586. package/src/components/DataGrid/Row/RowContext/RowProvider/RowProvider.tsx +35 -0
  587. package/src/components/DataGrid/Row/RowContext/RowProvider/index.ts +1 -0
  588. package/src/components/DataGrid/Row/RowContext/index.ts +3 -0
  589. package/src/components/DataGrid/Row/constants.ts +3 -0
  590. package/src/components/DataGrid/Row/index.ts +3 -0
  591. package/src/components/DataGrid/Row/styles.ts +124 -0
  592. package/src/components/DataGrid/Row/useLogic/index.ts +1 -0
  593. package/src/components/DataGrid/Row/useLogic/useLogic.ts +144 -0
  594. package/src/components/DataGrid/Row/useLogic/utils/getColumnsMap/getColumnsMap.ts +20 -0
  595. package/src/components/DataGrid/Row/useLogic/utils/getColumnsMap/index.ts +1 -0
  596. package/src/components/DataGrid/Row/useLogic/utils/index.ts +3 -0
  597. package/src/components/DataGrid/Row/useLogic/utils/mergeColumnsOptions/index.ts +1 -0
  598. package/src/components/DataGrid/Row/useLogic/utils/mergeColumnsOptions/mergeColumnsOptions.ts +34 -0
  599. package/src/components/DataGrid/Row/utils/checkIsDisabled/checkIsDisabled.ts +15 -0
  600. package/src/components/DataGrid/Row/utils/checkIsDisabled/index.ts +1 -0
  601. package/src/components/DataGrid/Row/utils/index.ts +1 -0
  602. package/src/components/DataGrid/constants.ts +11 -0
  603. package/src/components/DataGrid/enums.ts +9 -0
  604. package/src/components/DataGrid/faker.ts +116 -0
  605. package/src/components/DataGrid/index.ts +11 -0
  606. package/src/components/DataGrid/styles.ts +31 -0
  607. package/src/components/DataGrid/types.ts +118 -0
  608. package/src/components/DataGrid/useLogic/index.ts +1 -0
  609. package/src/components/DataGrid/useLogic/useLogic.tsx +139 -0
  610. package/src/components/DataGrid/useLogic/utils/getGridTemplateColumns/getGridTemplateColumns.ts +7 -0
  611. package/src/components/DataGrid/useLogic/utils/getGridTemplateColumns/index.ts +1 -0
  612. package/src/components/DataGrid/useLogic/utils/index.ts +1 -0
  613. package/src/components/DataGrid/utils/alignToJustifyContent/alignToJustifyContent.ts +20 -0
  614. package/src/components/DataGrid/utils/alignToJustifyContent/constants.ts +7 -0
  615. package/src/components/DataGrid/utils/alignToJustifyContent/index.ts +1 -0
  616. package/src/components/DataGrid/utils/index.ts +1 -0
  617. package/src/components/DataGridActionCell/DataGridActionCell.stories.tsx +271 -0
  618. package/src/components/DataGridActionCell/DataGridActionCell.tsx +70 -0
  619. package/src/components/DataGridActionCell/MainAction/MainAction.tsx +76 -0
  620. package/src/components/DataGridActionCell/MainAction/MainIconButton/MainIconButton.tsx +88 -0
  621. package/src/components/DataGridActionCell/MainAction/MainIconButton/index.ts +1 -0
  622. package/src/components/DataGridActionCell/MainAction/MainIconButton/useLogic/index.ts +1 -0
  623. package/src/components/DataGridActionCell/MainAction/MainIconButton/useLogic/useLogic.ts +31 -0
  624. package/src/components/DataGridActionCell/MainAction/index.ts +1 -0
  625. package/src/components/DataGridActionCell/SecondaryAction/SecondaryAction.tsx +54 -0
  626. package/src/components/DataGridActionCell/SecondaryAction/index.ts +1 -0
  627. package/src/components/DataGridActionCell/index.ts +1 -0
  628. package/src/components/DataGridActionCell/styles.ts +6 -0
  629. package/src/components/DataGridActionCell/types.ts +123 -0
  630. package/src/components/DataGridActionCell/useLogic/index.ts +1 -0
  631. package/src/components/DataGridActionCell/useLogic/useLogic.ts +53 -0
  632. package/src/components/DataGridOld/Body/Body.tsx +56 -0
  633. package/src/components/DataGridOld/Body/index.ts +1 -0
  634. package/src/components/DataGridOld/Body/styles.ts +12 -0
  635. package/src/components/DataGridOld/Cell/Cell.tsx +41 -0
  636. package/src/components/DataGridOld/Cell/index.ts +1 -0
  637. package/src/components/DataGridOld/Cell/styles.ts +25 -0
  638. package/src/components/DataGridOld/DataGridOld.tsx +65 -0
  639. package/src/components/DataGridOld/Head/Head.tsx +31 -0
  640. package/src/components/DataGridOld/Head/index.ts +1 -0
  641. package/src/components/DataGridOld/Head/styles.ts +11 -0
  642. package/src/components/DataGridOld/HeadCell/HeadCell.tsx +14 -0
  643. package/src/components/DataGridOld/HeadCell/index.ts +1 -0
  644. package/src/components/DataGridOld/HeadCell/styles.ts +29 -0
  645. package/src/components/DataGridOld/Row/Row.tsx +53 -0
  646. package/src/components/DataGridOld/Row/index.ts +1 -0
  647. package/src/components/DataGridOld/Row/styles.ts +24 -0
  648. package/src/components/DataGridOld/State/State.tsx +32 -0
  649. package/src/components/DataGridOld/State/index.ts +1 -0
  650. package/src/components/DataGridOld/State/styles.ts +25 -0
  651. package/src/components/DataGridOld/constants.ts +1 -0
  652. package/src/components/DataGridOld/index.ts +2 -0
  653. package/src/components/DataGridOld/styles.ts +24 -0
  654. package/src/components/DataGridOld/types.ts +18 -0
  655. package/src/components/DataGridPagination/DataGridPagination.stories.tsx +206 -0
  656. package/src/components/DataGridPagination/DataGridPagination.tsx +102 -0
  657. package/src/components/DataGridPagination/constants.ts +3 -0
  658. package/src/components/DataGridPagination/faker.ts +36 -0
  659. package/src/components/DataGridPagination/index.ts +1 -0
  660. package/src/components/DataGridPagination/styles.ts +26 -0
  661. package/src/components/DataGridPagination/useLogic/index.ts +1 -0
  662. package/src/components/DataGridPagination/useLogic/useLogic.ts +53 -0
  663. package/src/components/Description/Description.stories.tsx +327 -0
  664. package/src/components/Description/Description.tsx +73 -0
  665. package/src/components/Description/DescriptionContext/DescriptionContext.tsx +15 -0
  666. package/src/components/Description/DescriptionContext/DescriptionContextProvider/DescriptionContextProvider.tsx +21 -0
  667. package/src/components/Description/DescriptionContext/DescriptionContextProvider/index.ts +1 -0
  668. package/src/components/Description/DescriptionContext/index.ts +3 -0
  669. package/src/components/Description/Name/Name.tsx +28 -0
  670. package/src/components/Description/Name/index.ts +1 -0
  671. package/src/components/Description/Name/styles.ts +29 -0
  672. package/src/components/Description/Value/Value.tsx +73 -0
  673. package/src/components/Description/Value/index.ts +1 -0
  674. package/src/components/Description/Value/styles.ts +62 -0
  675. package/src/components/Description/Value/useLogic/index.ts +1 -0
  676. package/src/components/Description/Value/useLogic/useLogic.ts +18 -0
  677. package/src/components/Description/constants.ts +5 -0
  678. package/src/components/Description/index.ts +3 -0
  679. package/src/components/Description/styles.ts +27 -0
  680. package/src/components/Description/useLogic/index.ts +1 -0
  681. package/src/components/Description/useLogic/useLogic.ts +21 -0
  682. package/src/components/DescriptionList/DescriptionList.stories.tsx +475 -0
  683. package/src/components/DescriptionList/DescriptionList.tsx +108 -0
  684. package/src/components/DescriptionList/index.ts +3 -0
  685. package/src/components/DescriptionList/styles.ts +67 -0
  686. package/src/components/DescriptionList/types.ts +46 -0
  687. package/src/components/DescriptionList/utils/getTooltipProps/getTooltipProps.ts +3 -0
  688. package/src/components/DescriptionList/utils/getTooltipProps/index.ts +1 -0
  689. package/src/components/DescriptionList/utils/index.ts +1 -0
  690. package/src/components/Dialog/Dialog.stories.tsx +429 -0
  691. package/src/components/Dialog/Dialog.tsx +68 -0
  692. package/src/components/Dialog/constants.ts +7 -0
  693. package/src/components/Dialog/index.ts +1 -0
  694. package/src/components/Dialog/styles.ts +26 -0
  695. package/src/components/DialogActions/DialogActions.stories.tsx +114 -0
  696. package/src/components/DialogActions/DialogActions.tsx +19 -0
  697. package/src/components/DialogActions/index.ts +1 -0
  698. package/src/components/DialogActions/styles.ts +17 -0
  699. package/src/components/DialogContent/DialogContent.stories.tsx +70 -0
  700. package/src/components/DialogContent/DialogContent.tsx +11 -0
  701. package/src/components/DialogContent/index.ts +1 -0
  702. package/src/components/DialogContent/styles.ts +13 -0
  703. package/src/components/DialogContentText/DialogContentText.stories.tsx +64 -0
  704. package/src/components/DialogContentText/DialogContentText.tsx +12 -0
  705. package/src/components/DialogContentText/index.ts +1 -0
  706. package/src/components/DialogContentText/styles.ts +8 -0
  707. package/src/components/DialogHeader/DialogHeader.stories.tsx +107 -0
  708. package/src/components/DialogHeader/DialogHeader.tsx +58 -0
  709. package/src/components/DialogHeader/index.ts +1 -0
  710. package/src/components/DialogHeader/styles.ts +63 -0
  711. package/src/components/DialogTitle/DialogTitle.tsx +43 -0
  712. package/src/components/DialogTitle/index.ts +1 -0
  713. package/src/components/Divider/Divider.stories.tsx +57 -0
  714. package/src/components/Divider/Divider.tsx +10 -0
  715. package/src/components/Divider/index.ts +1 -0
  716. package/src/components/ErrorBoundary/ErrorBoundary.stories.tsx +57 -0
  717. package/src/components/ErrorBoundary/ErrorBoundary.stubs.tsx +67 -0
  718. package/src/components/ErrorBoundary/ErrorBoundary.tsx +73 -0
  719. package/src/components/ErrorBoundary/constants.ts +15 -0
  720. package/src/components/ErrorBoundary/enums.ts +9 -0
  721. package/src/components/ErrorBoundary/index.ts +1 -0
  722. package/src/components/FormControl/FormControl.tsx +12 -0
  723. package/src/components/FormControl/index.tsx +1 -0
  724. package/src/components/FormControlLabel/FormControlLabel.tsx +6 -0
  725. package/src/components/FormControlLabel/index.ts +3 -0
  726. package/src/components/FormControlLabel/styles.ts +14 -0
  727. package/src/components/FormControlLabel/types.ts +6 -0
  728. package/src/components/FormHelperText/FormHelperText.tsx +29 -0
  729. package/src/components/FormHelperText/FormHelperTextContent/FormHelperTextContent.tsx +38 -0
  730. package/src/components/FormHelperText/FormHelperTextContent/index.ts +1 -0
  731. package/src/components/FormHelperText/FormHelperTextContent/styles.ts +44 -0
  732. package/src/components/FormHelperText/index.ts +3 -0
  733. package/src/components/GuidTypography/GuidTypography.stories.tsx +57 -0
  734. package/src/components/GuidTypography/GuidTypography.tsx +10 -0
  735. package/src/components/GuidTypography/index.ts +1 -0
  736. package/src/components/IconButton/IconButton.stories.tsx +236 -0
  737. package/src/components/IconButton/IconButton.tsx +57 -0
  738. package/src/components/IconButton/index.ts +1 -0
  739. package/src/components/IconButton/styles.ts +52 -0
  740. package/src/components/IconDropdownButton/IconDropdownButton.stories.tsx +196 -0
  741. package/src/components/IconDropdownButton/IconDropdownButton.tsx +38 -0
  742. package/src/components/IconDropdownButton/index.ts +1 -0
  743. package/src/components/InternalErrorPlaceholder/InternalErrorPlaceholder.stories.tsx +33 -0
  744. package/src/components/InternalErrorPlaceholder/InternalErrorPlaceholder.tsx +39 -0
  745. package/src/components/InternalErrorPlaceholder/index.ts +1 -0
  746. package/src/components/Link/Link.stories.tsx +88 -0
  747. package/src/components/Link/Link.tsx +44 -0
  748. package/src/components/Link/index.ts +1 -0
  749. package/src/components/Link/styles.ts +37 -0
  750. package/src/components/List/List.stories.tsx +254 -0
  751. package/src/components/List/List.tsx +9 -0
  752. package/src/components/List/index.ts +1 -0
  753. package/src/components/ListItem/ListItem.stories.tsx +84 -0
  754. package/src/components/ListItem/ListItem.tsx +12 -0
  755. package/src/components/ListItem/index.ts +1 -0
  756. package/src/components/ListItemButton/ListItemButton.stories.tsx +112 -0
  757. package/src/components/ListItemButton/ListItemButton.tsx +74 -0
  758. package/src/components/ListItemButton/constants.ts +5 -0
  759. package/src/components/ListItemButton/index.ts +1 -0
  760. package/src/components/ListItemIcon/ListItemIcon.stories.tsx +41 -0
  761. package/src/components/ListItemIcon/ListItemIcon.tsx +14 -0
  762. package/src/components/ListItemIcon/index.ts +1 -0
  763. package/src/components/ListItemIcon/styles.ts +5 -0
  764. package/src/components/ListItemText/ListItemText.stories.tsx +39 -0
  765. package/src/components/ListItemText/ListItemText.tsx +11 -0
  766. package/src/components/ListItemText/index.ts +1 -0
  767. package/src/components/ListSubheader/ListSubheader.stories.tsx +42 -0
  768. package/src/components/ListSubheader/ListSubheader.tsx +12 -0
  769. package/src/components/ListSubheader/index.ts +1 -0
  770. package/src/components/Menu/Menu.stories.tsx +108 -0
  771. package/src/components/Menu/Menu.tsx +38 -0
  772. package/src/components/Menu/index.ts +1 -0
  773. package/src/components/MenuItem/MenuItem.stories.tsx +110 -0
  774. package/src/components/MenuItem/MenuItem.tsx +68 -0
  775. package/src/components/MenuItem/index.ts +1 -0
  776. package/src/components/MenuList/MenuList.stories.tsx +86 -0
  777. package/src/components/MenuList/MenuList.tsx +6 -0
  778. package/src/components/MenuList/index.ts +3 -0
  779. package/src/components/MenuList/styles.ts +10 -0
  780. package/src/components/MenuList/types.ts +11 -0
  781. package/src/components/NavMenu/Item/Item.tsx +87 -0
  782. package/src/components/NavMenu/Item/ItemButton/ItemButton.tsx +76 -0
  783. package/src/components/NavMenu/Item/ItemButton/index.ts +1 -0
  784. package/src/components/NavMenu/Item/ItemButton/styles.ts +143 -0
  785. package/src/components/NavMenu/Item/List/List.tsx +43 -0
  786. package/src/components/NavMenu/Item/List/index.ts +1 -0
  787. package/src/components/NavMenu/Item/index.ts +1 -0
  788. package/src/components/NavMenu/NavMenu.stories.tsx +116 -0
  789. package/src/components/NavMenu/NavMenu.tsx +32 -0
  790. package/src/components/NavMenu/index.ts +1 -0
  791. package/src/components/OutdatedReleasePlaceholder/OutdatedReleasePlaceholder.stories.tsx +31 -0
  792. package/src/components/OutdatedReleasePlaceholder/OutdatedReleasePlaceholder.tsx +30 -0
  793. package/src/components/OutdatedReleasePlaceholder/index.ts +1 -0
  794. package/src/components/OverflowTypography/OverflowTypography.stories.tsx +112 -0
  795. package/src/components/OverflowTypography/OverflowTypography.tsx +106 -0
  796. package/src/components/OverflowTypography/hooks/index.ts +1 -0
  797. package/src/components/OverflowTypography/hooks/useOverflowed/index.ts +1 -0
  798. package/src/components/OverflowTypography/hooks/useOverflowed/useOverflowed.ts +58 -0
  799. package/src/components/OverflowTypography/index.ts +1 -0
  800. package/src/components/OverflowTypography/styles.ts +39 -0
  801. package/src/components/OverflowTypography/useLogic/index.ts +1 -0
  802. package/src/components/OverflowTypography/useLogic/useLogic.ts +29 -0
  803. package/src/components/OverflowTypography/utils/index.ts +1 -0
  804. package/src/components/OverflowTypography/utils/truncateString/index.ts +1 -0
  805. package/src/components/OverflowTypography/utils/truncateString/truncateString.ts +9 -0
  806. package/src/components/Pagination/Pagination.stories.tsx +55 -0
  807. package/src/components/Pagination/Pagination.tsx +7 -0
  808. package/src/components/Pagination/index.ts +3 -0
  809. package/src/components/Pagination/types.ts +13 -0
  810. package/src/components/Paper/Paper.tsx +25 -0
  811. package/src/components/Paper/index.ts +1 -0
  812. package/src/components/Placeholder/Image/Image.tsx +16 -0
  813. package/src/components/Placeholder/Image/index.ts +1 -0
  814. package/src/components/Placeholder/Image/styles.ts +24 -0
  815. package/src/components/Placeholder/Placeholder.stories.tsx +204 -0
  816. package/src/components/Placeholder/Placeholder.tsx +108 -0
  817. package/src/components/Placeholder/constants.ts +31 -0
  818. package/src/components/Placeholder/index.ts +5 -0
  819. package/src/components/Placeholder/styles.ts +94 -0
  820. package/src/components/Placeholder/types.ts +1 -0
  821. package/src/components/Popover/Popover.stories.tsx +210 -0
  822. package/src/components/Popover/Popover.tsx +39 -0
  823. package/src/components/Popover/index.ts +1 -0
  824. package/src/components/SearchField/SearchField.tsx +93 -0
  825. package/src/components/SearchField/index.ts +1 -0
  826. package/src/components/SearchField/styles.ts +38 -0
  827. package/src/components/Select/Select.stories.tsx +324 -0
  828. package/src/components/Select/Select.tsx +204 -0
  829. package/src/components/Select/constants.ts +1 -0
  830. package/src/components/Select/index.ts +1 -0
  831. package/src/components/Select/styles.ts +60 -0
  832. package/src/components/Select/useLogic/index.ts +1 -0
  833. package/src/components/Select/useLogic/useLogic.ts +53 -0
  834. package/src/components/Tag/Tag.stories.tsx +592 -0
  835. package/src/components/Tag/Tag.tsx +102 -0
  836. package/src/components/Tag/enums.ts +20 -0
  837. package/src/components/Tag/index.ts +3 -0
  838. package/src/components/Tag/styles.ts +332 -0
  839. package/src/components/Tag/types.ts +9 -0
  840. package/src/components/TagBadge/TagBadge.stories.tsx +235 -0
  841. package/src/components/TagBadge/TagBadge.tsx +47 -0
  842. package/src/components/TagBadge/index.ts +1 -0
  843. package/src/components/TagBadge/styles.ts +14 -0
  844. package/src/components/TagBadge/utils/getCheckableTagBadgeBgColor/getCheckableTagBadgeBgColor.ts +31 -0
  845. package/src/components/TagBadge/utils/getCheckableTagBadgeBgColor/index.ts +1 -0
  846. package/src/components/TagBadge/utils/index.ts +1 -0
  847. package/src/components/TagsList/Tag/Tag.tsx +49 -0
  848. package/src/components/TagsList/Tag/index.ts +1 -0
  849. package/src/components/TagsList/Tag/styles.ts +19 -0
  850. package/src/components/TagsList/Tag/useLogic/index.ts +1 -0
  851. package/src/components/TagsList/Tag/useLogic/useLogic.ts +11 -0
  852. package/src/components/TagsList/TagsList.tsx +80 -0
  853. package/src/components/TagsList/index.ts +3 -0
  854. package/src/components/TagsList/styles.ts +6 -0
  855. package/src/components/TagsList/types.ts +1 -0
  856. package/src/components/TagsList/useLogic/index.ts +1 -0
  857. package/src/components/TagsList/useLogic/useLogic.ts +184 -0
  858. package/src/components/TagsList/utils/getElementByText/getElementByText.ts +21 -0
  859. package/src/components/TagsList/utils/getElementByText/index.ts +1 -0
  860. package/src/components/TagsList/utils/getKey/getKey.ts +11 -0
  861. package/src/components/TagsList/utils/getKey/index.ts +1 -0
  862. package/src/components/TagsList/utils/index.ts +3 -0
  863. package/src/components/TextField/TextField.stories.tsx +97 -0
  864. package/src/components/TextField/TextField.tsx +117 -0
  865. package/src/components/TextField/index.ts +1 -0
  866. package/src/components/Tooltip/Tooltip.stories.tsx +237 -0
  867. package/src/components/Tooltip/Tooltip.tsx +48 -0
  868. package/src/components/Tooltip/constants.ts +4 -0
  869. package/src/components/Tooltip/index.ts +3 -0
  870. package/src/components/Tooltip/styles.tsx +65 -0
  871. package/src/components/Tooltip/types.ts +3 -0
  872. package/src/components/Typography/Typography.stories.tsx +193 -0
  873. package/src/components/Typography/Typography.tsx +107 -0
  874. package/src/components/Typography/enums.ts +14 -0
  875. package/src/components/Typography/hooks/index.ts +1 -0
  876. package/src/components/Typography/hooks/useTypographyColor/index.ts +1 -0
  877. package/src/components/Typography/hooks/useTypographyColor/useTypographyColor.tsx +54 -0
  878. package/src/components/Typography/index.ts +3 -0
  879. package/src/components/Typography/styles.ts +9 -0
  880. package/src/components/Typography/types.ts +30 -0
  881. package/src/components/index.ts +123 -0
  882. package/src/components/types.ts +1 -0
  883. package/src/hooks/index.ts +3 -0
  884. package/src/hooks/useMenu/index.ts +1 -0
  885. package/src/hooks/useMenu/useMenu.stories.tsx +31 -0
  886. package/src/hooks/useMenu/useMenu.ts +45 -0
  887. package/src/hooks/usePopover/index.ts +1 -0
  888. package/src/hooks/usePopover/usePopover.ts +27 -0
  889. package/src/hooks/useViewportType/index.ts +1 -0
  890. package/src/hooks/useViewportType/useViewportType.stories.tsx +30 -0
  891. package/src/hooks/useViewportType/useViewportType.ts +13 -0
  892. package/src/illustrations/certificates-not-found.svg +91 -0
  893. package/src/illustrations/data-access-disabled.svg +103 -0
  894. package/src/illustrations/data-access-success.svg +119 -0
  895. package/src/illustrations/drop-files-in.svg +40 -0
  896. package/src/illustrations/drop-files-out.svg +43 -0
  897. package/src/illustrations/error.svg +159 -0
  898. package/src/illustrations/features.svg +35 -0
  899. package/src/illustrations/mail.svg +84 -0
  900. package/src/illustrations/no-data.svg +1 -0
  901. package/src/illustrations/no-notifications.svg +102 -0
  902. package/src/illustrations/outdated-release.svg +173 -0
  903. package/src/illustrations/placeholder.svg +20 -0
  904. package/src/illustrations/search.svg +38 -0
  905. package/src/illustrations/sketchpad.svg +114 -0
  906. package/src/illustrations/technical-support.svg +341 -0
  907. package/src/index.ts +3 -0
  908. package/src/theme/baseTheme/baseTheme.ts +49 -0
  909. package/src/theme/baseTheme/index.ts +1 -0
  910. package/src/theme/breakpoints.ts +11 -0
  911. package/src/theme/components/MuiAlert.ts +70 -0
  912. package/src/theme/components/MuiAutocomplete.ts +94 -0
  913. package/src/theme/components/MuiButton.ts +418 -0
  914. package/src/theme/components/MuiButtonBase.ts +16 -0
  915. package/src/theme/components/MuiCircularProgress.ts +22 -0
  916. package/src/theme/components/MuiDialog.ts +13 -0
  917. package/src/theme/components/MuiDialogActions.ts +17 -0
  918. package/src/theme/components/MuiDialogContent.ts +13 -0
  919. package/src/theme/components/MuiDialogTitle.ts +24 -0
  920. package/src/theme/components/MuiDrawer.ts +15 -0
  921. package/src/theme/components/MuiFormHelperText.ts +23 -0
  922. package/src/theme/components/MuiFormLabel.ts +16 -0
  923. package/src/theme/components/MuiInputLabel.ts +33 -0
  924. package/src/theme/components/MuiLinearProgress.ts +22 -0
  925. package/src/theme/components/MuiListItemButton.ts +16 -0
  926. package/src/theme/components/MuiListItemText.ts +16 -0
  927. package/src/theme/components/MuiMenu.ts +32 -0
  928. package/src/theme/components/MuiMenuItem.ts +36 -0
  929. package/src/theme/components/MuiOutlinedInput.ts +75 -0
  930. package/src/theme/components/MuiPaginationItem.ts +16 -0
  931. package/src/theme/components/MuiPaper.ts +38 -0
  932. package/src/theme/components/MuiStep.ts +16 -0
  933. package/src/theme/components/MuiStepConnector.ts +11 -0
  934. package/src/theme/components/MuiStepLabel.ts +30 -0
  935. package/src/theme/components/MuiSwitch.ts +153 -0
  936. package/src/theme/components/MuiTab.ts +15 -0
  937. package/src/theme/components/MuiTableCell.ts +16 -0
  938. package/src/theme/components/MuiTableHead.ts +15 -0
  939. package/src/theme/components/MuiTableRow.ts +19 -0
  940. package/src/theme/components/MuiTabs.ts +19 -0
  941. package/src/theme/components/MuiTextField.ts +28 -0
  942. package/src/theme/components/MuiToggleButton.ts +14 -0
  943. package/src/theme/components/MuiToggleButtonGroup.ts +10 -0
  944. package/src/theme/components/MuiTypography.ts +41 -0
  945. package/src/theme/components/components.ts +155 -0
  946. package/src/theme/components/index.ts +1 -0
  947. package/src/theme/constants.ts +1 -0
  948. package/src/theme/elevation.ts +15 -0
  949. package/src/theme/hooks/index.ts +1 -0
  950. package/src/theme/hooks/useTheme/index.ts +7 -0
  951. package/src/theme/index.ts +13 -0
  952. package/src/theme/palette/componentsColors/componentsColors.ts +9 -0
  953. package/src/theme/palette/componentsColors/index.ts +1 -0
  954. package/src/theme/palette/componentsColors/linkColors/index.ts +1 -0
  955. package/src/theme/palette/componentsColors/linkColors/linkColors.ts +13 -0
  956. package/src/theme/palette/index.ts +5 -0
  957. package/src/theme/palette/palette.ts +125 -0
  958. package/src/theme/palette/types.ts +55 -0
  959. package/src/theme/shape.ts +11 -0
  960. package/src/theme/types.ts +30 -0
  961. package/src/theme/typography.ts +191 -0
  962. package/tsconfig.json +15 -0
@@ -0,0 +1,508 @@
1
+
2
+ 
3
+ > @max-ts/components@0.0.1 build /Users/maksim/Projects/PET/toolkit/packages/components
4
+ > rslib build
5
+
6
+   Rslib v0.4.1
7
+ 
8
+ ready  Built in 0.56 s (cjs)
9
+ ready  Built in 0.67 s (esm)
10
+ start  Generating DTS... (cjs)
11
+ start  Generating DTS... (esm)
12
+ error  Failed to emit declaration files. (cjs)
13
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Accordion/styles.ts:4:14 - error TS2742: The inferred type of 'Header' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
14
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Accordion/styles.ts:13:14 - error TS2742: The inferred type of 'ContentWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
15
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Accordion/styles.ts:21:14 - error TS2742: The inferred type of 'Summary' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
16
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Accordion/styles.ts:25:14 - error TS2742: The inferred type of 'ChevronWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
17
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ActionCell/styles.ts:3:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
18
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Autocomplete/styles.ts:4:14 - error TS2742: The inferred type of 'StyledMenuItem' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
19
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Badge/styles.ts:70:14 - error TS2742: The inferred type of 'StyledBadge' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
20
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/BottomDrawer/styles.ts:13:14 - error TS2742: The inferred type of 'StyledDrawer' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
21
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/BottomDrawer/styles.ts:26:14 - error TS2742: The inferred type of 'Header' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
22
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/BottomDrawer/styles.ts:38:14 - error TS2742: The inferred type of 'HeaderTitle' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
23
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/BottomDrawer/styles.ts:42:14 - error TS2742: The inferred type of 'Body' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
24
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Button/styles.ts:7:14 - error TS2742: The inferred type of 'StyledButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
25
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Button/styles.ts:17:14 - error TS2742: The inferred type of 'StyledCircularProgress' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
26
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Checkbox/styles.ts:22:14 - error TS2742: The inferred type of 'StyledCheckbox' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
27
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/CheckboxField/styles.ts:8:14 - error TS2742: The inferred type of 'StyledFormControlledLabel' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
28
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/CheckboxField/styles.ts:15:14 - error TS2742: The inferred type of 'StyledCheckbox' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
29
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Chevron/styles.tsx:7:14 - error TS2742: The inferred type of 'ChevronIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
30
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ConfirmAction/styles.ts:4:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
31
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ConfirmAction/styles.ts:9:14 - error TS2742: The inferred type of 'StyledTypography' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
32
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ConfirmAction/styles.ts:13:14 - error TS2742: The inferred type of 'Actions' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
33
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Container/styles.ts:26:14 - error TS2742: The inferred type of 'ContainerRoot' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
34
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ContentState/styles.ts:3:14 - error TS2742: The inferred type of 'LoadingContainer' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
35
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/CopyTypography/styles.ts:5:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
36
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/CopyTypography/styles.ts:16:14 - error TS2742: The inferred type of 'StyledCopyIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
37
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Body/styles.tsx:4:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
38
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Cell/styles.ts:12:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
39
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Head/styles.ts:4:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
40
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Head/styles.ts:15:14 - error TS2742: The inferred type of 'CheckboxCell' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
41
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/HeadCell/styles.ts:13:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
42
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/HeadCell/styles.ts:31:14 - error TS2742: The inferred type of 'StyledTypography' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
43
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Loader/styles.ts:5:14 - error TS2742: The inferred type of 'Backdrop' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
44
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Loader/styles.ts:16:14 - error TS2742: The inferred type of 'StyledDivider' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
45
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Loader/styles.ts:20:14 - error TS2742: The inferred type of 'LoaderWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
46
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Loader/styles.ts:24:14 - error TS2742: The inferred type of 'StyledLinearProgress' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
47
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/NestedChildren/styles.ts:6:14 - error TS2742: The inferred type of 'NestedRows' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
48
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/NestedChildren/styles.ts:38:14 - error TS2742: The inferred type of 'MoreButtonRow' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
49
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/NestedChildren/styles.ts:72:14 - error TS2742: The inferred type of 'MoreButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
50
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:9:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
51
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:35:14 - error TS2742: The inferred type of 'ContentWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
52
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:82:14 - error TS2742: The inferred type of 'CellStyled' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
53
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:86:14 - error TS2742: The inferred type of 'CheckboxCell' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
54
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:95:14 - error TS2742: The inferred type of 'CollapseCell' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
55
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:103:14 - error TS2742: The inferred type of 'CollapseButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
56
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:114:14 - error TS2742: The inferred type of 'ChevronIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
57
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/styles.ts:3:14 - error TS2742: The inferred type of 'Container' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
58
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/styles.ts:18:14 - error TS2742: The inferred type of 'DataGridWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
59
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/styles.ts:26:14 - error TS2742: The inferred type of 'DisabledDataGridWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
60
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridActionCell/styles.ts:3:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
61
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/Body/styles.ts:3:14 - error TS2742: The inferred type of 'StyledBody' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
62
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/Cell/styles.ts:3:14 - error TS2742: The inferred type of 'StyledCell' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
63
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/Head/styles.ts:3:14 - error TS2742: The inferred type of 'StyledHead' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
64
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/HeadCell/styles.ts:3:14 - error TS2742: The inferred type of 'StyledHeadCell' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
65
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/Row/styles.ts:3:14 - error TS2742: The inferred type of 'StyledRow' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
66
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/State/styles.ts:3:14 - error TS2742: The inferred type of 'Container' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
67
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/styles.ts:4:14 - error TS2742: The inferred type of 'Container' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
68
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/styles.ts:17:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
69
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridPagination/styles.ts:5:14 - error TS2742: The inferred type of 'PaginationWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
70
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridPagination/styles.ts:14:14 - error TS2742: The inferred type of 'Range' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
71
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridPagination/styles.ts:18:14 - error TS2742: The inferred type of 'RangeWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
72
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/Name/styles.ts:7:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
73
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/Name/styles.ts:17:14 - error TS2742: The inferred type of 'DashedSeparator' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
74
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/styles.ts:3:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
75
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/Value/styles.ts:16:14 - error TS2742: The inferred type of 'StyledTypography' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
76
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/Value/styles.ts:38:14 - error TS2742: The inferred type of 'StyledCopyTypography' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
77
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/Value/styles.ts:58:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
78
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DescriptionList/styles.ts:13:14 - error TS2742: The inferred type of 'StyledDescriptionName' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
79
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DescriptionList/styles.ts:27:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
80
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DescriptionList/styles.ts:47:14 - error TS2742: The inferred type of 'ListWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
81
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DescriptionList/styles.ts:61:14 - error TS2742: The inferred type of 'StyledDescriptionValue' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
82
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Dialog/styles.ts:16:14 - error TS2742: The inferred type of 'StyledDialog' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
83
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogActions/styles.ts:4:14 - error TS2742: The inferred type of 'StyledDialogActions' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
84
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogActions/styles.ts:12:14 - error TS2742: The inferred type of 'StyledGrid' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
85
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogContent/styles.ts:7:14 - error TS2742: The inferred type of 'StyledDialogContent' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
86
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogContentText/styles.ts:6:14 - error TS2742: The inferred type of 'StyledDialogContentText' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
87
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogHeader/styles.ts:15:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
88
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogHeader/styles.ts:49:14 - error TS2742: The inferred type of 'HeaderContent' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
89
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/FormControlLabel/styles.ts:5:14 - error TS2742: The inferred type of 'StyledFormControlLabel' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
90
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/FormHelperText/FormHelperTextContent/styles.ts:18:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
91
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/FormHelperText/FormHelperTextContent/styles.ts:34:14 - error TS2742: The inferred type of 'SuccessIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
92
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/FormHelperText/FormHelperTextContent/styles.ts:38:14 - error TS2742: The inferred type of 'ErrorIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
93
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/FormHelperText/FormHelperTextContent/styles.ts:42:14 - error TS2742: The inferred type of 'Message' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
94
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/IconButton/styles.ts:8:14 - error TS2742: The inferred type of 'StyledButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
95
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/IconButton/styles.ts:8:14 - error TS2742: The inferred type of 'StyledButton' cannot be named without a reference to '.pnpm/@mui+types@7.2.21_@types+react@19.0.8/node_modules/@mui/types'. This is likely not portable. A type annotation is necessary.
96
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Link/styles.ts:3:14 - error TS2742: The inferred type of 'StyledLink' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
97
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ListItemIcon/styles.ts:3:14 - error TS2742: The inferred type of 'StyledListItemIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
98
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/MenuList/styles.ts:3:14 - error TS2742: The inferred type of 'StyledMenuList' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
99
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/NavMenu/Item/ItemButton/styles.ts:8:14 - error TS2742: The inferred type of 'StyledListItemButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
100
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/NavMenu/Item/ItemButton/styles.ts:112:14 - error TS2742: The inferred type of 'NavMenuItemButtonIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
101
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/NavMenu/Item/ItemButton/styles.ts:116:14 - error TS2742: The inferred type of 'NavMenuItemButtonText' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
102
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/NavMenu/Item/ItemButton/styles.ts:126:14 - error TS2742: The inferred type of 'NavMenuItemButtonChevron' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
103
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/OverflowTypography/styles.ts:11:14 - error TS2742: The inferred type of 'StyledTypography' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
104
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/OverflowTypography/styles.ts:30:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
105
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/Image/Image.tsx:14:14 - error TS2742: The inferred type of 'Image' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
106
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/Image/Image.tsx:16:14 - error TS2742: The inferred type of 'setDefaultImageStyles' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
107
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/Image/styles.ts:5:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
108
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/styles.ts:15:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
109
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/styles.ts:39:14 - error TS2742: The inferred type of 'InnerContainer' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
110
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/styles.ts:46:14 - error TS2742: The inferred type of 'Title' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
111
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/styles.ts:63:14 - error TS2742: The inferred type of 'Description' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
112
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/styles.ts:80:14 - error TS2742: The inferred type of 'Footer' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
113
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/SearchField/styles.ts:6:14 - error TS2742: The inferred type of 'StyledSearchIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
114
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/SearchField/styles.ts:10:14 - error TS2742: The inferred type of 'StyledIconButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
115
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/SearchField/styles.ts:26:14 - error TS2742: The inferred type of 'StyledTextField' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
116
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/SearchField/styles.ts:33:14 - error TS2742: The inferred type of 'StyledCloseFillSm' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
117
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Select/styles.ts:7:14 - error TS2742: The inferred type of 'ProgressWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
118
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Select/styles.ts:21:14 - error TS2742: The inferred type of 'Placeholder' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
119
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Select/styles.ts:25:14 - error TS2742: The inferred type of 'StyledIconButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
120
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Select/styles.ts:42:14 - error TS2742: The inferred type of 'StyledCloseFillSm' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
121
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Select/styles.ts:49:14 - error TS2742: The inferred type of 'EndAdornmentWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
122
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Tag/styles.ts:242:14 - error TS2742: The inferred type of 'StyledTag' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
123
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Tag/styles.ts:328:14 - error TS2742: The inferred type of 'LabelContainer' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
124
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/TagBadge/styles.ts:4:14 - error TS2742: The inferred type of 'StyledBadge' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
125
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/TagsList/styles.ts:3:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
126
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/TagsList/Tag/styles.ts:8:14 - error TS2742: The inferred type of 'StyledTag' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
127
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Tooltip/styles.tsx:17:14 - error TS2742: The inferred type of 'StyledTooltip' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
128
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Tooltip/styles.tsx:62:14 - error TS2742: The inferred type of 'ContentWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
129
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/theme/typography.ts:72:14 - error TS2742: The inferred type of 'getTypography' cannot be named without a reference to '.pnpm/csstype@3.1.3/node_modules/csstype'. This is likely not portable. A type annotation is necessary.
130
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Accordion/styles.ts:4:14 - error TS2742: The inferred type of 'Header' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
131
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Accordion/styles.ts:13:14 - error TS2742: The inferred type of 'ContentWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
132
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Accordion/styles.ts:21:14 - error TS2742: The inferred type of 'Summary' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
133
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Accordion/styles.ts:25:14 - error TS2742: The inferred type of 'ChevronWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
134
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ActionCell/styles.ts:3:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
135
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Autocomplete/styles.ts:4:14 - error TS2742: The inferred type of 'StyledMenuItem' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
136
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Badge/styles.ts:70:14 - error TS2742: The inferred type of 'StyledBadge' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
137
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/BottomDrawer/styles.ts:13:14 - error TS2742: The inferred type of 'StyledDrawer' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
138
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/BottomDrawer/styles.ts:26:14 - error TS2742: The inferred type of 'Header' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
139
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/BottomDrawer/styles.ts:38:14 - error TS2742: The inferred type of 'HeaderTitle' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
140
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/BottomDrawer/styles.ts:42:14 - error TS2742: The inferred type of 'Body' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
141
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Button/styles.ts:7:14 - error TS2742: The inferred type of 'StyledButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
142
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Button/styles.ts:17:14 - error TS2742: The inferred type of 'StyledCircularProgress' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
143
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Checkbox/styles.ts:22:14 - error TS2742: The inferred type of 'StyledCheckbox' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
144
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/CheckboxField/styles.ts:8:14 - error TS2742: The inferred type of 'StyledFormControlledLabel' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
145
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/CheckboxField/styles.ts:15:14 - error TS2742: The inferred type of 'StyledCheckbox' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
146
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Chevron/styles.tsx:7:14 - error TS2742: The inferred type of 'ChevronIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
147
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ConfirmAction/styles.ts:4:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
148
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ConfirmAction/styles.ts:9:14 - error TS2742: The inferred type of 'StyledTypography' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
149
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ConfirmAction/styles.ts:13:14 - error TS2742: The inferred type of 'Actions' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
150
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Container/styles.ts:26:14 - error TS2742: The inferred type of 'ContainerRoot' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
151
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ContentState/styles.ts:3:14 - error TS2742: The inferred type of 'LoadingContainer' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
152
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/CopyTypography/styles.ts:5:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
153
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/CopyTypography/styles.ts:16:14 - error TS2742: The inferred type of 'StyledCopyIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
154
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Body/styles.tsx:4:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
155
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Cell/styles.ts:12:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
156
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Head/styles.ts:4:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
157
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Head/styles.ts:15:14 - error TS2742: The inferred type of 'CheckboxCell' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
158
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/HeadCell/styles.ts:13:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
159
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/HeadCell/styles.ts:31:14 - error TS2742: The inferred type of 'StyledTypography' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
160
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Loader/styles.ts:5:14 - error TS2742: The inferred type of 'Backdrop' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
161
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Loader/styles.ts:16:14 - error TS2742: The inferred type of 'StyledDivider' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
162
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Loader/styles.ts:20:14 - error TS2742: The inferred type of 'LoaderWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
163
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Loader/styles.ts:24:14 - error TS2742: The inferred type of 'StyledLinearProgress' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
164
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/NestedChildren/styles.ts:6:14 - error TS2742: The inferred type of 'NestedRows' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
165
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/NestedChildren/styles.ts:38:14 - error TS2742: The inferred type of 'MoreButtonRow' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
166
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/NestedChildren/styles.ts:72:14 - error TS2742: The inferred type of 'MoreButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
167
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:9:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
168
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:35:14 - error TS2742: The inferred type of 'ContentWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
169
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:82:14 - error TS2742: The inferred type of 'CellStyled' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
170
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:86:14 - error TS2742: The inferred type of 'CheckboxCell' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
171
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:95:14 - error TS2742: The inferred type of 'CollapseCell' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
172
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:103:14 - error TS2742: The inferred type of 'CollapseButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
173
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:114:14 - error TS2742: The inferred type of 'ChevronIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
174
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/styles.ts:3:14 - error TS2742: The inferred type of 'Container' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
175
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/styles.ts:18:14 - error TS2742: The inferred type of 'DataGridWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
176
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/styles.ts:26:14 - error TS2742: The inferred type of 'DisabledDataGridWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
177
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridActionCell/styles.ts:3:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
178
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/Body/styles.ts:3:14 - error TS2742: The inferred type of 'StyledBody' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
179
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/Cell/styles.ts:3:14 - error TS2742: The inferred type of 'StyledCell' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
180
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/Head/styles.ts:3:14 - error TS2742: The inferred type of 'StyledHead' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
181
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/HeadCell/styles.ts:3:14 - error TS2742: The inferred type of 'StyledHeadCell' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
182
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/Row/styles.ts:3:14 - error TS2742: The inferred type of 'StyledRow' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
183
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/State/styles.ts:3:14 - error TS2742: The inferred type of 'Container' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
184
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/styles.ts:4:14 - error TS2742: The inferred type of 'Container' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
185
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/styles.ts:17:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
186
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridPagination/styles.ts:5:14 - error TS2742: The inferred type of 'PaginationWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
187
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridPagination/styles.ts:14:14 - error TS2742: The inferred type of 'Range' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
188
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridPagination/styles.ts:18:14 - error TS2742: The inferred type of 'RangeWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
189
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/Name/styles.ts:7:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
190
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/Name/styles.ts:17:14 - error TS2742: The inferred type of 'DashedSeparator' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
191
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/Value/styles.ts:16:14 - error TS2742: The inferred type of 'StyledTypography' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
192
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/Value/styles.ts:38:14 - error TS2742: The inferred type of 'StyledCopyTypography' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
193
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/Value/styles.ts:58:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
194
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/styles.ts:3:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
195
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DescriptionList/styles.ts:13:14 - error TS2742: The inferred type of 'StyledDescriptionName' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
196
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DescriptionList/styles.ts:27:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
197
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DescriptionList/styles.ts:47:14 - error TS2742: The inferred type of 'ListWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
198
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DescriptionList/styles.ts:61:14 - error TS2742: The inferred type of 'StyledDescriptionValue' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
199
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Dialog/styles.ts:16:14 - error TS2742: The inferred type of 'StyledDialog' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
200
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogActions/styles.ts:4:14 - error TS2742: The inferred type of 'StyledDialogActions' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
201
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogActions/styles.ts:12:14 - error TS2742: The inferred type of 'StyledGrid' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
202
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogContent/styles.ts:7:14 - error TS2742: The inferred type of 'StyledDialogContent' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
203
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogContentText/styles.ts:6:14 - error TS2742: The inferred type of 'StyledDialogContentText' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
204
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogHeader/styles.ts:15:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
205
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogHeader/styles.ts:49:14 - error TS2742: The inferred type of 'HeaderContent' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
206
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/FormControlLabel/styles.ts:5:14 - error TS2742: The inferred type of 'StyledFormControlLabel' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
207
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/FormHelperText/FormHelperTextContent/styles.ts:18:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
208
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/FormHelperText/FormHelperTextContent/styles.ts:34:14 - error TS2742: The inferred type of 'SuccessIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
209
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/FormHelperText/FormHelperTextContent/styles.ts:38:14 - error TS2742: The inferred type of 'ErrorIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
210
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/FormHelperText/FormHelperTextContent/styles.ts:42:14 - error TS2742: The inferred type of 'Message' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
211
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/IconButton/styles.ts:8:14 - error TS2742: The inferred type of 'StyledButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
212
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/IconButton/styles.ts:8:14 - error TS2742: The inferred type of 'StyledButton' cannot be named without a reference to '.pnpm/@mui+types@7.2.21_@types+react@19.0.8/node_modules/@mui/types'. This is likely not portable. A type annotation is necessary.
213
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Link/styles.ts:3:14 - error TS2742: The inferred type of 'StyledLink' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
214
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ListItemIcon/styles.ts:3:14 - error TS2742: The inferred type of 'StyledListItemIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
215
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/MenuList/styles.ts:3:14 - error TS2742: The inferred type of 'StyledMenuList' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
216
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/NavMenu/Item/ItemButton/styles.ts:8:14 - error TS2742: The inferred type of 'StyledListItemButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
217
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/NavMenu/Item/ItemButton/styles.ts:112:14 - error TS2742: The inferred type of 'NavMenuItemButtonIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
218
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/NavMenu/Item/ItemButton/styles.ts:116:14 - error TS2742: The inferred type of 'NavMenuItemButtonText' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
219
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/NavMenu/Item/ItemButton/styles.ts:126:14 - error TS2742: The inferred type of 'NavMenuItemButtonChevron' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
220
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/OverflowTypography/styles.ts:11:14 - error TS2742: The inferred type of 'StyledTypography' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
221
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/OverflowTypography/styles.ts:30:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
222
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/Image/Image.tsx:14:14 - error TS2742: The inferred type of 'Image' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
223
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/Image/Image.tsx:16:14 - error TS2742: The inferred type of 'setDefaultImageStyles' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
224
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/Image/styles.ts:5:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
225
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/styles.ts:15:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
226
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/styles.ts:39:14 - error TS2742: The inferred type of 'InnerContainer' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
227
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/styles.ts:46:14 - error TS2742: The inferred type of 'Title' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
228
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/styles.ts:63:14 - error TS2742: The inferred type of 'Description' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
229
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/styles.ts:80:14 - error TS2742: The inferred type of 'Footer' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
230
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/SearchField/styles.ts:6:14 - error TS2742: The inferred type of 'StyledSearchIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
231
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/SearchField/styles.ts:10:14 - error TS2742: The inferred type of 'StyledIconButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
232
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/SearchField/styles.ts:26:14 - error TS2742: The inferred type of 'StyledTextField' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
233
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/SearchField/styles.ts:33:14 - error TS2742: The inferred type of 'StyledCloseFillSm' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
234
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Select/styles.ts:7:14 - error TS2742: The inferred type of 'ProgressWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
235
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Select/styles.ts:21:14 - error TS2742: The inferred type of 'Placeholder' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
236
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Select/styles.ts:25:14 - error TS2742: The inferred type of 'StyledIconButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
237
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Select/styles.ts:42:14 - error TS2742: The inferred type of 'StyledCloseFillSm' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
238
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Select/styles.ts:49:14 - error TS2742: The inferred type of 'EndAdornmentWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
239
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Tag/styles.ts:242:14 - error TS2742: The inferred type of 'StyledTag' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
240
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Tag/styles.ts:328:14 - error TS2742: The inferred type of 'LabelContainer' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
241
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/TagBadge/styles.ts:4:14 - error TS2742: The inferred type of 'StyledBadge' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
242
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/TagsList/Tag/styles.ts:8:14 - error TS2742: The inferred type of 'StyledTag' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
243
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/TagsList/styles.ts:3:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
244
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Tooltip/styles.tsx:17:14 - error TS2742: The inferred type of 'StyledTooltip' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
245
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Tooltip/styles.tsx:62:14 - error TS2742: The inferred type of 'ContentWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
246
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/theme/typography.ts:72:14 - error TS2742: The inferred type of 'getTypography' cannot be named without a reference to '.pnpm/csstype@3.1.3/node_modules/csstype'. This is likely not portable. A type annotation is necessary.
247
+ error  DTS generation failed
248
+  at handleDiagnosticsAndProcessFiles (file:///Users/maksim/Projects/PET/toolkit/node_modules/.pnpm/rsbuild-plugin-dts@0.4.1_@rsbuild+core@1.2.8_typescript@5.7.3/node_modules/rsbuild-plugin-dts/dist/tsc.js:16:15)
249
+ at async emitDts (file:///Users/maksim/Projects/PET/toolkit/node_modules/.pnpm/rsbuild-plugin-dts@0.4.1_@rsbuild+core@1.2.8_typescript@5.7.3/node_modules/rsbuild-plugin-dts/dist/tsc.js:115:13)
250
+ at async generateDts (file:///Users/maksim/Projects/PET/toolkit/node_modules/.pnpm/rsbuild-plugin-dts@0.4.1_@rsbuild+core@1.2.8_typescript@5.7.3/node_modules/rsbuild-plugin-dts/dist/dts.js:105:5)
251
+ at async process.<anonymous> (file:///Users/maksim/Projects/PET/toolkit/node_modules/.pnpm/rsbuild-plugin-dts@0.4.1_@rsbuild+core@1.2.8_typescript@5.7.3/node_modules/rsbuild-plugin-dts/dist/dts.js:120:9)
252
+ error  Failed to emit declaration files. (esm)
253
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Accordion/styles.ts:4:14 - error TS2742: The inferred type of 'Header' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
254
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Accordion/styles.ts:13:14 - error TS2742: The inferred type of 'ContentWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
255
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Accordion/styles.ts:21:14 - error TS2742: The inferred type of 'Summary' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
256
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Accordion/styles.ts:25:14 - error TS2742: The inferred type of 'ChevronWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
257
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ActionCell/styles.ts:3:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
258
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Autocomplete/styles.ts:4:14 - error TS2742: The inferred type of 'StyledMenuItem' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
259
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Badge/styles.ts:70:14 - error TS2742: The inferred type of 'StyledBadge' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
260
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/BottomDrawer/styles.ts:13:14 - error TS2742: The inferred type of 'StyledDrawer' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
261
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/BottomDrawer/styles.ts:26:14 - error TS2742: The inferred type of 'Header' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
262
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/BottomDrawer/styles.ts:38:14 - error TS2742: The inferred type of 'HeaderTitle' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
263
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/BottomDrawer/styles.ts:42:14 - error TS2742: The inferred type of 'Body' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
264
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Button/styles.ts:7:14 - error TS2742: The inferred type of 'StyledButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
265
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Button/styles.ts:17:14 - error TS2742: The inferred type of 'StyledCircularProgress' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
266
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Checkbox/styles.ts:22:14 - error TS2742: The inferred type of 'StyledCheckbox' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
267
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/CheckboxField/styles.ts:8:14 - error TS2742: The inferred type of 'StyledFormControlledLabel' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
268
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/CheckboxField/styles.ts:15:14 - error TS2742: The inferred type of 'StyledCheckbox' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
269
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Chevron/styles.tsx:7:14 - error TS2742: The inferred type of 'ChevronIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
270
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ConfirmAction/styles.ts:4:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
271
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ConfirmAction/styles.ts:9:14 - error TS2742: The inferred type of 'StyledTypography' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
272
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ConfirmAction/styles.ts:13:14 - error TS2742: The inferred type of 'Actions' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
273
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Container/styles.ts:26:14 - error TS2742: The inferred type of 'ContainerRoot' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
274
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ContentState/styles.ts:3:14 - error TS2742: The inferred type of 'LoadingContainer' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
275
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/CopyTypography/styles.ts:5:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
276
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/CopyTypography/styles.ts:16:14 - error TS2742: The inferred type of 'StyledCopyIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
277
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Body/styles.tsx:4:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
278
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Cell/styles.ts:12:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
279
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Head/styles.ts:4:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
280
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Head/styles.ts:15:14 - error TS2742: The inferred type of 'CheckboxCell' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
281
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/HeadCell/styles.ts:13:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
282
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/HeadCell/styles.ts:31:14 - error TS2742: The inferred type of 'StyledTypography' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
283
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Loader/styles.ts:5:14 - error TS2742: The inferred type of 'Backdrop' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
284
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Loader/styles.ts:16:14 - error TS2742: The inferred type of 'StyledDivider' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
285
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Loader/styles.ts:20:14 - error TS2742: The inferred type of 'LoaderWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
286
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Loader/styles.ts:24:14 - error TS2742: The inferred type of 'StyledLinearProgress' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
287
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/NestedChildren/styles.ts:6:14 - error TS2742: The inferred type of 'NestedRows' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
288
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/NestedChildren/styles.ts:38:14 - error TS2742: The inferred type of 'MoreButtonRow' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
289
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/NestedChildren/styles.ts:72:14 - error TS2742: The inferred type of 'MoreButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
290
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:9:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
291
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:35:14 - error TS2742: The inferred type of 'ContentWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
292
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:82:14 - error TS2742: The inferred type of 'CellStyled' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
293
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:86:14 - error TS2742: The inferred type of 'CheckboxCell' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
294
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:95:14 - error TS2742: The inferred type of 'CollapseCell' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
295
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:103:14 - error TS2742: The inferred type of 'CollapseButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
296
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:114:14 - error TS2742: The inferred type of 'ChevronIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
297
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/styles.ts:3:14 - error TS2742: The inferred type of 'Container' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
298
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/styles.ts:18:14 - error TS2742: The inferred type of 'DataGridWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
299
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/styles.ts:26:14 - error TS2742: The inferred type of 'DisabledDataGridWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
300
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridActionCell/styles.ts:3:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
301
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/Body/styles.ts:3:14 - error TS2742: The inferred type of 'StyledBody' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
302
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/Cell/styles.ts:3:14 - error TS2742: The inferred type of 'StyledCell' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
303
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/Head/styles.ts:3:14 - error TS2742: The inferred type of 'StyledHead' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
304
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/HeadCell/styles.ts:3:14 - error TS2742: The inferred type of 'StyledHeadCell' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
305
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/Row/styles.ts:3:14 - error TS2742: The inferred type of 'StyledRow' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
306
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/State/styles.ts:3:14 - error TS2742: The inferred type of 'Container' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
307
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/styles.ts:4:14 - error TS2742: The inferred type of 'Container' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
308
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/styles.ts:17:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
309
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridPagination/styles.ts:5:14 - error TS2742: The inferred type of 'PaginationWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
310
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridPagination/styles.ts:14:14 - error TS2742: The inferred type of 'Range' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
311
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridPagination/styles.ts:18:14 - error TS2742: The inferred type of 'RangeWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
312
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/Name/styles.ts:7:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
313
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/Name/styles.ts:17:14 - error TS2742: The inferred type of 'DashedSeparator' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
314
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/styles.ts:3:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
315
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/Value/styles.ts:16:14 - error TS2742: The inferred type of 'StyledTypography' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
316
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/Value/styles.ts:38:14 - error TS2742: The inferred type of 'StyledCopyTypography' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
317
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/Value/styles.ts:58:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
318
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DescriptionList/styles.ts:13:14 - error TS2742: The inferred type of 'StyledDescriptionName' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
319
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DescriptionList/styles.ts:27:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
320
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DescriptionList/styles.ts:47:14 - error TS2742: The inferred type of 'ListWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
321
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DescriptionList/styles.ts:61:14 - error TS2742: The inferred type of 'StyledDescriptionValue' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
322
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Dialog/styles.ts:16:14 - error TS2742: The inferred type of 'StyledDialog' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
323
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogActions/styles.ts:4:14 - error TS2742: The inferred type of 'StyledDialogActions' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
324
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogActions/styles.ts:12:14 - error TS2742: The inferred type of 'StyledGrid' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
325
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogContent/styles.ts:7:14 - error TS2742: The inferred type of 'StyledDialogContent' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
326
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogContentText/styles.ts:6:14 - error TS2742: The inferred type of 'StyledDialogContentText' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
327
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogHeader/styles.ts:15:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
328
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogHeader/styles.ts:49:14 - error TS2742: The inferred type of 'HeaderContent' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
329
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/FormControlLabel/styles.ts:5:14 - error TS2742: The inferred type of 'StyledFormControlLabel' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
330
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/FormHelperText/FormHelperTextContent/styles.ts:18:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
331
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/FormHelperText/FormHelperTextContent/styles.ts:34:14 - error TS2742: The inferred type of 'SuccessIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
332
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/FormHelperText/FormHelperTextContent/styles.ts:38:14 - error TS2742: The inferred type of 'ErrorIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
333
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/FormHelperText/FormHelperTextContent/styles.ts:42:14 - error TS2742: The inferred type of 'Message' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
334
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/IconButton/styles.ts:8:14 - error TS2742: The inferred type of 'StyledButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
335
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/IconButton/styles.ts:8:14 - error TS2742: The inferred type of 'StyledButton' cannot be named without a reference to '.pnpm/@mui+types@7.2.21_@types+react@19.0.8/node_modules/@mui/types'. This is likely not portable. A type annotation is necessary.
336
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Link/styles.ts:3:14 - error TS2742: The inferred type of 'StyledLink' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
337
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ListItemIcon/styles.ts:3:14 - error TS2742: The inferred type of 'StyledListItemIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
338
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/MenuList/styles.ts:3:14 - error TS2742: The inferred type of 'StyledMenuList' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
339
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/NavMenu/Item/ItemButton/styles.ts:8:14 - error TS2742: The inferred type of 'StyledListItemButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
340
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/NavMenu/Item/ItemButton/styles.ts:112:14 - error TS2742: The inferred type of 'NavMenuItemButtonIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
341
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/NavMenu/Item/ItemButton/styles.ts:116:14 - error TS2742: The inferred type of 'NavMenuItemButtonText' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
342
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/NavMenu/Item/ItemButton/styles.ts:126:14 - error TS2742: The inferred type of 'NavMenuItemButtonChevron' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
343
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/OverflowTypography/styles.ts:11:14 - error TS2742: The inferred type of 'StyledTypography' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
344
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/OverflowTypography/styles.ts:30:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
345
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/Image/Image.tsx:14:14 - error TS2742: The inferred type of 'Image' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
346
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/Image/Image.tsx:16:14 - error TS2742: The inferred type of 'setDefaultImageStyles' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
347
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/Image/styles.ts:5:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
348
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/styles.ts:15:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
349
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/styles.ts:39:14 - error TS2742: The inferred type of 'InnerContainer' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
350
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/styles.ts:46:14 - error TS2742: The inferred type of 'Title' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
351
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/styles.ts:63:14 - error TS2742: The inferred type of 'Description' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
352
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/styles.ts:80:14 - error TS2742: The inferred type of 'Footer' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
353
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/SearchField/styles.ts:6:14 - error TS2742: The inferred type of 'StyledSearchIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
354
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/SearchField/styles.ts:10:14 - error TS2742: The inferred type of 'StyledIconButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
355
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/SearchField/styles.ts:26:14 - error TS2742: The inferred type of 'StyledTextField' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
356
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/SearchField/styles.ts:33:14 - error TS2742: The inferred type of 'StyledCloseFillSm' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
357
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Select/styles.ts:7:14 - error TS2742: The inferred type of 'ProgressWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
358
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Select/styles.ts:21:14 - error TS2742: The inferred type of 'Placeholder' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
359
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Select/styles.ts:25:14 - error TS2742: The inferred type of 'StyledIconButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
360
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Select/styles.ts:42:14 - error TS2742: The inferred type of 'StyledCloseFillSm' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
361
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Select/styles.ts:49:14 - error TS2742: The inferred type of 'EndAdornmentWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
362
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Tag/styles.ts:242:14 - error TS2742: The inferred type of 'StyledTag' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
363
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Tag/styles.ts:328:14 - error TS2742: The inferred type of 'LabelContainer' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
364
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/TagBadge/styles.ts:4:14 - error TS2742: The inferred type of 'StyledBadge' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
365
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/TagsList/styles.ts:3:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
366
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/TagsList/Tag/styles.ts:8:14 - error TS2742: The inferred type of 'StyledTag' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
367
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Tooltip/styles.tsx:17:14 - error TS2742: The inferred type of 'StyledTooltip' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
368
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Tooltip/styles.tsx:62:14 - error TS2742: The inferred type of 'ContentWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
369
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/theme/typography.ts:72:14 - error TS2742: The inferred type of 'getTypography' cannot be named without a reference to '.pnpm/csstype@3.1.3/node_modules/csstype'. This is likely not portable. A type annotation is necessary.
370
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Accordion/styles.ts:4:14 - error TS2742: The inferred type of 'Header' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
371
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Accordion/styles.ts:13:14 - error TS2742: The inferred type of 'ContentWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
372
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Accordion/styles.ts:21:14 - error TS2742: The inferred type of 'Summary' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
373
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Accordion/styles.ts:25:14 - error TS2742: The inferred type of 'ChevronWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
374
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ActionCell/styles.ts:3:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
375
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Autocomplete/styles.ts:4:14 - error TS2742: The inferred type of 'StyledMenuItem' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
376
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Badge/styles.ts:70:14 - error TS2742: The inferred type of 'StyledBadge' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
377
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/BottomDrawer/styles.ts:13:14 - error TS2742: The inferred type of 'StyledDrawer' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
378
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/BottomDrawer/styles.ts:26:14 - error TS2742: The inferred type of 'Header' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
379
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/BottomDrawer/styles.ts:38:14 - error TS2742: The inferred type of 'HeaderTitle' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
380
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/BottomDrawer/styles.ts:42:14 - error TS2742: The inferred type of 'Body' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
381
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Button/styles.ts:7:14 - error TS2742: The inferred type of 'StyledButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
382
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Button/styles.ts:17:14 - error TS2742: The inferred type of 'StyledCircularProgress' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
383
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Checkbox/styles.ts:22:14 - error TS2742: The inferred type of 'StyledCheckbox' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
384
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/CheckboxField/styles.ts:8:14 - error TS2742: The inferred type of 'StyledFormControlledLabel' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
385
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/CheckboxField/styles.ts:15:14 - error TS2742: The inferred type of 'StyledCheckbox' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
386
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Chevron/styles.tsx:7:14 - error TS2742: The inferred type of 'ChevronIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
387
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ConfirmAction/styles.ts:4:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
388
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ConfirmAction/styles.ts:9:14 - error TS2742: The inferred type of 'StyledTypography' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
389
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ConfirmAction/styles.ts:13:14 - error TS2742: The inferred type of 'Actions' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
390
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Container/styles.ts:26:14 - error TS2742: The inferred type of 'ContainerRoot' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
391
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ContentState/styles.ts:3:14 - error TS2742: The inferred type of 'LoadingContainer' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
392
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/CopyTypography/styles.ts:5:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
393
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/CopyTypography/styles.ts:16:14 - error TS2742: The inferred type of 'StyledCopyIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
394
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Body/styles.tsx:4:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
395
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Cell/styles.ts:12:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
396
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Head/styles.ts:4:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
397
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Head/styles.ts:15:14 - error TS2742: The inferred type of 'CheckboxCell' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
398
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/HeadCell/styles.ts:13:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
399
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/HeadCell/styles.ts:31:14 - error TS2742: The inferred type of 'StyledTypography' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
400
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Loader/styles.ts:5:14 - error TS2742: The inferred type of 'Backdrop' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
401
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Loader/styles.ts:16:14 - error TS2742: The inferred type of 'StyledDivider' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
402
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Loader/styles.ts:20:14 - error TS2742: The inferred type of 'LoaderWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
403
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Loader/styles.ts:24:14 - error TS2742: The inferred type of 'StyledLinearProgress' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
404
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/NestedChildren/styles.ts:6:14 - error TS2742: The inferred type of 'NestedRows' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
405
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/NestedChildren/styles.ts:38:14 - error TS2742: The inferred type of 'MoreButtonRow' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
406
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/NestedChildren/styles.ts:72:14 - error TS2742: The inferred type of 'MoreButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
407
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:9:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
408
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:35:14 - error TS2742: The inferred type of 'ContentWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
409
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:82:14 - error TS2742: The inferred type of 'CellStyled' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
410
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:86:14 - error TS2742: The inferred type of 'CheckboxCell' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
411
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:95:14 - error TS2742: The inferred type of 'CollapseCell' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
412
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:103:14 - error TS2742: The inferred type of 'CollapseButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
413
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/Row/styles.ts:114:14 - error TS2742: The inferred type of 'ChevronIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
414
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/styles.ts:3:14 - error TS2742: The inferred type of 'Container' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
415
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/styles.ts:18:14 - error TS2742: The inferred type of 'DataGridWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
416
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGrid/styles.ts:26:14 - error TS2742: The inferred type of 'DisabledDataGridWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
417
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridActionCell/styles.ts:3:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
418
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/Body/styles.ts:3:14 - error TS2742: The inferred type of 'StyledBody' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
419
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/Cell/styles.ts:3:14 - error TS2742: The inferred type of 'StyledCell' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
420
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/Head/styles.ts:3:14 - error TS2742: The inferred type of 'StyledHead' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
421
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/HeadCell/styles.ts:3:14 - error TS2742: The inferred type of 'StyledHeadCell' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
422
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/Row/styles.ts:3:14 - error TS2742: The inferred type of 'StyledRow' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
423
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/State/styles.ts:3:14 - error TS2742: The inferred type of 'Container' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
424
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/styles.ts:4:14 - error TS2742: The inferred type of 'Container' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
425
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridOld/styles.ts:17:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
426
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridPagination/styles.ts:5:14 - error TS2742: The inferred type of 'PaginationWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
427
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridPagination/styles.ts:14:14 - error TS2742: The inferred type of 'Range' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
428
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DataGridPagination/styles.ts:18:14 - error TS2742: The inferred type of 'RangeWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
429
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/Name/styles.ts:7:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
430
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/Name/styles.ts:17:14 - error TS2742: The inferred type of 'DashedSeparator' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
431
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/Value/styles.ts:16:14 - error TS2742: The inferred type of 'StyledTypography' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
432
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/Value/styles.ts:38:14 - error TS2742: The inferred type of 'StyledCopyTypography' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
433
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/Value/styles.ts:58:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
434
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Description/styles.ts:3:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
435
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DescriptionList/styles.ts:13:14 - error TS2742: The inferred type of 'StyledDescriptionName' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
436
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DescriptionList/styles.ts:27:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
437
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DescriptionList/styles.ts:47:14 - error TS2742: The inferred type of 'ListWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
438
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DescriptionList/styles.ts:61:14 - error TS2742: The inferred type of 'StyledDescriptionValue' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
439
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Dialog/styles.ts:16:14 - error TS2742: The inferred type of 'StyledDialog' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
440
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogActions/styles.ts:4:14 - error TS2742: The inferred type of 'StyledDialogActions' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
441
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogActions/styles.ts:12:14 - error TS2742: The inferred type of 'StyledGrid' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
442
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogContent/styles.ts:7:14 - error TS2742: The inferred type of 'StyledDialogContent' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
443
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogContentText/styles.ts:6:14 - error TS2742: The inferred type of 'StyledDialogContentText' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
444
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogHeader/styles.ts:15:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
445
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/DialogHeader/styles.ts:49:14 - error TS2742: The inferred type of 'HeaderContent' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
446
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/FormControlLabel/styles.ts:5:14 - error TS2742: The inferred type of 'StyledFormControlLabel' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
447
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/FormHelperText/FormHelperTextContent/styles.ts:18:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
448
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/FormHelperText/FormHelperTextContent/styles.ts:34:14 - error TS2742: The inferred type of 'SuccessIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
449
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/FormHelperText/FormHelperTextContent/styles.ts:38:14 - error TS2742: The inferred type of 'ErrorIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
450
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/FormHelperText/FormHelperTextContent/styles.ts:42:14 - error TS2742: The inferred type of 'Message' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
451
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/IconButton/styles.ts:8:14 - error TS2742: The inferred type of 'StyledButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
452
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/IconButton/styles.ts:8:14 - error TS2742: The inferred type of 'StyledButton' cannot be named without a reference to '.pnpm/@mui+types@7.2.21_@types+react@19.0.8/node_modules/@mui/types'. This is likely not portable. A type annotation is necessary.
453
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Link/styles.ts:3:14 - error TS2742: The inferred type of 'StyledLink' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
454
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/ListItemIcon/styles.ts:3:14 - error TS2742: The inferred type of 'StyledListItemIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
455
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/MenuList/styles.ts:3:14 - error TS2742: The inferred type of 'StyledMenuList' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
456
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/NavMenu/Item/ItemButton/styles.ts:8:14 - error TS2742: The inferred type of 'StyledListItemButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
457
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/NavMenu/Item/ItemButton/styles.ts:112:14 - error TS2742: The inferred type of 'NavMenuItemButtonIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
458
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/NavMenu/Item/ItemButton/styles.ts:116:14 - error TS2742: The inferred type of 'NavMenuItemButtonText' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
459
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/NavMenu/Item/ItemButton/styles.ts:126:14 - error TS2742: The inferred type of 'NavMenuItemButtonChevron' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
460
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/OverflowTypography/styles.ts:11:14 - error TS2742: The inferred type of 'StyledTypography' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
461
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/OverflowTypography/styles.ts:30:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
462
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/Image/Image.tsx:14:14 - error TS2742: The inferred type of 'Image' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
463
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/Image/Image.tsx:16:14 - error TS2742: The inferred type of 'setDefaultImageStyles' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
464
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/Image/styles.ts:5:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
465
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/styles.ts:15:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
466
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/styles.ts:39:14 - error TS2742: The inferred type of 'InnerContainer' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
467
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/styles.ts:46:14 - error TS2742: The inferred type of 'Title' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
468
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/styles.ts:63:14 - error TS2742: The inferred type of 'Description' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
469
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Placeholder/styles.ts:80:14 - error TS2742: The inferred type of 'Footer' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
470
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/SearchField/styles.ts:6:14 - error TS2742: The inferred type of 'StyledSearchIcon' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
471
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/SearchField/styles.ts:10:14 - error TS2742: The inferred type of 'StyledIconButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
472
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/SearchField/styles.ts:26:14 - error TS2742: The inferred type of 'StyledTextField' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
473
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/SearchField/styles.ts:33:14 - error TS2742: The inferred type of 'StyledCloseFillSm' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
474
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Select/styles.ts:7:14 - error TS2742: The inferred type of 'ProgressWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
475
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Select/styles.ts:21:14 - error TS2742: The inferred type of 'Placeholder' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
476
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Select/styles.ts:25:14 - error TS2742: The inferred type of 'StyledIconButton' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
477
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Select/styles.ts:42:14 - error TS2742: The inferred type of 'StyledCloseFillSm' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
478
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Select/styles.ts:49:14 - error TS2742: The inferred type of 'EndAdornmentWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
479
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Tag/styles.ts:242:14 - error TS2742: The inferred type of 'StyledTag' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
480
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Tag/styles.ts:328:14 - error TS2742: The inferred type of 'LabelContainer' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
481
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/TagBadge/styles.ts:4:14 - error TS2742: The inferred type of 'StyledBadge' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
482
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/TagsList/Tag/styles.ts:8:14 - error TS2742: The inferred type of 'StyledTag' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
483
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/TagsList/styles.ts:3:14 - error TS2742: The inferred type of 'Wrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
484
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Tooltip/styles.tsx:17:14 - error TS2742: The inferred type of 'StyledTooltip' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
485
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/components/Tooltip/styles.tsx:62:14 - error TS2742: The inferred type of 'ContentWrapper' cannot be named without a reference to '.pnpm/@mui+system@6.4.3_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+sty_2c97e54651f464b772cc1da41b0e8d8a/node_modules/@mui/system'. This is likely not portable. A type annotation is necessary.
486
+ error  /Users/maksim/Projects/PET/toolkit/packages/components/src/theme/typography.ts:72:14 - error TS2742: The inferred type of 'getTypography' cannot be named without a reference to '.pnpm/csstype@3.1.3/node_modules/csstype'. This is likely not portable. A type annotation is necessary.
487
+ error  DTS generation failed
488
+  at handleDiagnosticsAndProcessFiles (file:///Users/maksim/Projects/PET/toolkit/node_modules/.pnpm/rsbuild-plugin-dts@0.4.1_@rsbuild+core@1.2.8_typescript@5.7.3/node_modules/rsbuild-plugin-dts/dist/tsc.js:16:15)
489
+ at async emitDts (file:///Users/maksim/Projects/PET/toolkit/node_modules/.pnpm/rsbuild-plugin-dts@0.4.1_@rsbuild+core@1.2.8_typescript@5.7.3/node_modules/rsbuild-plugin-dts/dist/tsc.js:115:13)
490
+ at async generateDts (file:///Users/maksim/Projects/PET/toolkit/node_modules/.pnpm/rsbuild-plugin-dts@0.4.1_@rsbuild+core@1.2.8_typescript@5.7.3/node_modules/rsbuild-plugin-dts/dist/dts.js:105:5)
491
+ at async process.<anonymous> (file:///Users/maksim/Projects/PET/toolkit/node_modules/.pnpm/rsbuild-plugin-dts@0.4.1_@rsbuild+core@1.2.8_typescript@5.7.3/node_modules/rsbuild-plugin-dts/dist/dts.js:120:9)
492
+
493
+  File (esm) Size Gzip 
494
+ dist/index.mjs 104.0 kB
495
+
496
+  -----
497
+
498
+  File (cjs) Size Gzip 
499
+ dist/index.js 138.3 kB 33.6 kB
500
+
501
+ error  Failed to build.
502
+ error  Error occurred in cjs DTS generation
503
+  at /Users/maksim/Projects/PET/toolkit/node_modules/.pnpm/rsbuild-plugin-dts@0.4.1_@rsbuild+core@1.2.8_typescript@5.7.3/node_modules/rsbuild-plugin-dts/dist/index.js:71:41
504
+ at Object.call (file:///Users/maksim/Projects/PET/toolkit/node_modules/.pnpm/@rsbuild+core@1.2.8/node_modules/@rsbuild/core/dist/index.js:1372:36)
505
+ at process.processTicksAndRejections (node:internal/process/task_queues:105:5)
506
+ at async onDone (file:///Users/maksim/Projects/PET/toolkit/node_modules/.pnpm/@rsbuild+core@1.2.8/node_modules/@rsbuild/core/dist/index.js:1419:30)
507
+ at async Object.fn (file:///Users/maksim/Projects/PET/toolkit/node_modules/.pnpm/@rsbuild+core@1.2.8/node_modules/@rsbuild/core/dist/index.js:1403:76)
508
+  ELIFECYCLE  Command failed with exit code 1.