@orfium/ictinus 5.43.7 → 5.43.8

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 (1309) hide show
  1. package/dist/components/Avatar/UserAvatar.js +5 -6
  2. package/dist/components/Breadcrumb/BreadcrumbItem/BreadcrumbItem.js +7 -8
  3. package/dist/components/Button/Button.js +21 -22
  4. package/dist/components/ButtonBase/constants.js +1 -7
  5. package/dist/components/Controls/CheckBox/CheckBox.js +28 -27
  6. package/dist/components/IconButton/IconButton.js +11 -10
  7. package/dist/index.js +233 -239
  8. package/dist/package.json.d.ts +8 -5
  9. package/dist/package.json.js +1 -1
  10. package/dist/src/actions/ActionsContent.d.ts +281 -281
  11. package/dist/src/actions/ActionsRoot.d.ts +281 -281
  12. package/dist/src/components/Avatar/UserAvatar.d.ts +1 -2
  13. package/dist/src/components/IconButton/IconButton.d.ts +5 -6
  14. package/dist/src/data-table/DataTable.d.ts +281 -281
  15. package/dist/src/data-table/DataTableBody.d.ts +281 -281
  16. package/dist/src/data-table/DataTableHeader.d.ts +281 -281
  17. package/dist/src/data-table/DataTableRow.d.ts +563 -563
  18. package/dist/src/index.d.ts +0 -2
  19. package/dist/src/skeleton/Skeleton.d.ts +281 -281
  20. package/dist/src/sprinkles/properties.css.d.ts +369 -369
  21. package/dist/src/sprinkles/sprinkles.d.ts +625 -625
  22. package/dist/src/vanilla/Box/Box.d.ts +281 -281
  23. package/dist/src/vanilla/Box/extractBoxProps.d.ts +2 -2
  24. package/dist/src/vanilla/Table/Table.d.ts +281 -281
  25. package/dist/src/vanilla/Table/TableBody.d.ts +281 -281
  26. package/dist/src/vanilla/Table/TableCell.d.ts +282 -282
  27. package/dist/src/vanilla/Table/TableFooter.d.ts +281 -281
  28. package/dist/src/vanilla/Table/TableHeader.d.ts +281 -281
  29. package/dist/src/vanilla/Table/TableHeaderCell.d.ts +282 -282
  30. package/dist/src/vanilla/Table/TableRow.d.ts +281 -281
  31. package/dist/src/vanilla/Text/Text.d.ts +281 -281
  32. package/dist/src/vanilla/index.d.ts +2 -0
  33. package/dist/vanilla/Dropdown/Dropdown-css.js +3 -4
  34. package/dist/vanilla/Menu/Menu-css.js +5 -6
  35. package/dist/vanilla/Popover/Popover-css.js +4 -5
  36. package/dist/vanilla/Table/Table-css.js +5 -6
  37. package/dist/vanilla/Table/TableBody-css.js +3 -3
  38. package/dist/vanilla/Table/TableCell-css.js +5 -6
  39. package/dist/vanilla/Table/TableFooter-css.js +3 -3
  40. package/dist/vanilla/Table/TableHeader-css.js +3 -3
  41. package/dist/vanilla/Table/TableHeaderCell-css.js +7 -8
  42. package/dist/vanilla/Table/TableRow-css.js +4 -5
  43. package/dist/vanilla/Text/Text-css.js +3 -3
  44. package/dist/vanilla/ThemeProvider/ThemeProvider.js +2 -0
  45. package/dist/vanilla/Tooltip/Tooltip-css.js +7 -8
  46. package/dist/vanilla/assets/src/actions/ActionsContent.css.ts.vanilla-CY_zQdRt.css +22 -0
  47. package/dist/vanilla/assets/src/actions/ActionsRoot.css.ts.vanilla-Sfxv3QTp.css +4 -0
  48. package/dist/vanilla/assets/src/data-table/DataTableBody.css.ts.vanilla-C5CLCAO-.css +70 -0
  49. package/dist/vanilla/assets/src/data-table/DataTableHeaderCell.css.ts.vanilla-CJ7qRgCp.css +36 -0
  50. package/dist/vanilla/assets/src/layers/layers.css.ts.vanilla-DOIEZBDT.css +1 -0
  51. package/dist/vanilla/assets/src/skeleton/Skeleton.css.ts.vanilla-DdlGEtT6.css +6 -0
  52. package/dist/vanilla/assets/src/sprinkles/properties.css.ts.vanilla-DunamBlA.css +10127 -0
  53. package/dist/vanilla/assets/src/vanilla/Menu/Menu.css.ts.vanilla-CCuBBcIY.css +15 -0
  54. package/dist/vanilla/assets/src/vanilla/Popover/Popover.css.ts.vanilla-D_hJVnXG.css +10 -0
  55. package/dist/vanilla/assets/src/vanilla/Table/Table.css.ts.vanilla-CtMyXgp5.css +21 -0
  56. package/dist/vanilla/assets/src/vanilla/Table/TableBody.css.ts.vanilla-NM1bg9yo.css +6 -0
  57. package/dist/vanilla/assets/src/vanilla/Table/TableCell.css.ts.vanilla-C9lOnXw3.css +28 -0
  58. package/dist/vanilla/assets/src/vanilla/Table/TableFooter.css.ts.vanilla-DdPLAnn2.css +11 -0
  59. package/dist/vanilla/assets/src/vanilla/Table/TableHeader.css.ts.vanilla-BFZehdGr.css +8 -0
  60. package/dist/vanilla/assets/src/vanilla/Table/TableHeaderCell.css.ts.vanilla-BKqTSx1s.css +25 -0
  61. package/dist/vanilla/assets/src/vanilla/Table/TableRow.css.ts.vanilla-ConQ39lM.css +18 -0
  62. package/dist/vanilla/assets/src/vanilla/Text/Text.css.ts.vanilla-yQfwZHu2.css +38 -0
  63. package/dist/vanilla/assets/src/vanilla/Tooltip/Tooltip.css.ts.vanilla-CgAdIrpn.css +39 -0
  64. package/dist/vanilla/index.d.ts +9735 -2
  65. package/dist/vanilla/index.js +3 -0
  66. package/dist/vanilla/package.json.js +1 -1
  67. package/dist/vanilla/src/actions/ActionsContent-css.js +5 -6
  68. package/dist/vanilla/src/actions/ActionsRoot-css.js +3 -3
  69. package/dist/vanilla/src/components/Avatar/UserAvatar.js +4 -6
  70. package/dist/vanilla/src/components/Button/Button.js +5 -8
  71. package/dist/vanilla/src/components/ButtonBase/constants.js +1 -7
  72. package/dist/vanilla/src/components/Controls/CheckBox/CheckBox.js +7 -6
  73. package/dist/vanilla/src/components/Icon/Icon.js +44 -0
  74. package/dist/vanilla/src/components/Icon/Icon.style.js +42 -0
  75. package/dist/vanilla/src/components/Icon/assets/audioControls/forward.svg.js +16 -0
  76. package/dist/vanilla/src/components/Icon/assets/audioControls/next.svg.js +16 -0
  77. package/dist/vanilla/src/components/Icon/assets/audioControls/pause.svg.js +16 -0
  78. package/dist/vanilla/src/components/Icon/assets/audioControls/play.svg.js +16 -0
  79. package/dist/vanilla/src/components/Icon/assets/audioControls/previous.svg.js +16 -0
  80. package/dist/vanilla/src/components/Icon/assets/audioControls/resume.svg.js +16 -0
  81. package/dist/vanilla/src/components/Icon/assets/audioControls/rewind.svg.js +16 -0
  82. package/dist/vanilla/src/components/Icon/assets/audioControls/stop.svg.js +16 -0
  83. package/dist/vanilla/src/components/Icon/assets/basicActions/check.svg.js +16 -0
  84. package/dist/vanilla/src/components/Icon/assets/basicActions/close.svg.js +16 -0
  85. package/dist/vanilla/src/components/Icon/assets/basicActions/columnChooser.svg.js +16 -0
  86. package/dist/vanilla/src/components/Icon/assets/basicActions/convert.svg.js +16 -0
  87. package/dist/vanilla/src/components/Icon/assets/basicActions/copy.svg.js +16 -0
  88. package/dist/vanilla/src/components/Icon/assets/basicActions/delete.svg.js +16 -0
  89. package/dist/vanilla/src/components/Icon/assets/basicActions/download.svg.js +16 -0
  90. package/dist/vanilla/src/components/Icon/assets/basicActions/edit.svg.js +16 -0
  91. package/dist/vanilla/src/components/Icon/assets/basicActions/login.svg.js +16 -0
  92. package/dist/vanilla/src/components/Icon/assets/basicActions/logout.svg.js +16 -0
  93. package/dist/vanilla/src/components/Icon/assets/basicActions/mediaFile.svg.js +16 -0
  94. package/dist/vanilla/src/components/Icon/assets/basicActions/minus.svg.js +16 -0
  95. package/dist/vanilla/src/components/Icon/assets/basicActions/plus.svg.js +16 -0
  96. package/dist/vanilla/src/components/Icon/assets/basicActions/redo.svg.js +16 -0
  97. package/dist/vanilla/src/components/Icon/assets/basicActions/refresh.svg.js +16 -0
  98. package/dist/vanilla/src/components/Icon/assets/basicActions/restore.svg.js +19 -0
  99. package/dist/vanilla/src/components/Icon/assets/basicActions/review.svg.js +16 -0
  100. package/dist/vanilla/src/components/Icon/assets/basicActions/search.svg.js +16 -0
  101. package/dist/vanilla/src/components/Icon/assets/basicActions/share.svg.js +16 -0
  102. package/dist/vanilla/src/components/Icon/assets/basicActions/sort.svg.js +18 -0
  103. package/dist/vanilla/src/components/Icon/assets/basicActions/sortAscending.svg.js +24 -0
  104. package/dist/vanilla/src/components/Icon/assets/basicActions/sortDescending.svg.js +21 -0
  105. package/dist/vanilla/src/components/Icon/assets/basicActions/thumbsDown.svg.js +16 -0
  106. package/dist/vanilla/src/components/Icon/assets/basicActions/thumbsUp.svg.js +16 -0
  107. package/dist/vanilla/src/components/Icon/assets/basicActions/undo.svg.js +16 -0
  108. package/dist/vanilla/src/components/Icon/assets/basicActions/update.svg.js +19 -0
  109. package/dist/vanilla/src/components/Icon/assets/basicActions/upload.svg.js +16 -0
  110. package/dist/vanilla/src/components/Icon/assets/dataAndFinance/analytics.svg.js +16 -0
  111. package/dist/vanilla/src/components/Icon/assets/dataAndFinance/dashboard.svg.js +16 -0
  112. package/dist/vanilla/src/components/Icon/assets/dataAndFinance/dataset.svg.js +16 -0
  113. package/dist/vanilla/src/components/Icon/assets/dataAndFinance/earnings.svg.js +16 -0
  114. package/dist/vanilla/src/components/Icon/assets/dataAndFinance/income.svg.js +16 -0
  115. package/dist/vanilla/src/components/Icon/assets/dataAndFinance/insight.svg.js +16 -0
  116. package/dist/vanilla/src/components/Icon/assets/dataAndFinance/invoice.svg.js +18 -0
  117. package/dist/vanilla/src/components/Icon/assets/dataAndFinance/trendingDown.svg.js +16 -0
  118. package/dist/vanilla/src/components/Icon/assets/dataAndFinance/trendingUp.svg.js +16 -0
  119. package/dist/vanilla/src/components/Icon/assets/generic/calendar.svg.js +16 -0
  120. package/dist/vanilla/src/components/Icon/assets/generic/chat.svg.js +16 -0
  121. package/dist/vanilla/src/components/Icon/assets/generic/delivery.svg.js +16 -0
  122. package/dist/vanilla/src/components/Icon/assets/generic/details.svg.js +16 -0
  123. package/dist/vanilla/src/components/Icon/assets/generic/externalLink.svg.js +16 -0
  124. package/dist/vanilla/src/components/Icon/assets/generic/file.svg.js +16 -0
  125. package/dist/vanilla/src/components/Icon/assets/generic/filter.svg.js +16 -0
  126. package/dist/vanilla/src/components/Icon/assets/generic/issue.svg.js +16 -0
  127. package/dist/vanilla/src/components/Icon/assets/generic/keyword.svg.js +18 -0
  128. package/dist/vanilla/src/components/Icon/assets/generic/language.svg.js +16 -0
  129. package/dist/vanilla/src/components/Icon/assets/generic/legal.svg.js +16 -0
  130. package/dist/vanilla/src/components/Icon/assets/generic/location.svg.js +16 -0
  131. package/dist/vanilla/src/components/Icon/assets/generic/mail.svg.js +16 -0
  132. package/dist/vanilla/src/components/Icon/assets/generic/manual.svg.js +16 -0
  133. package/dist/vanilla/src/components/Icon/assets/generic/moreOptions.svg.js +16 -0
  134. package/dist/vanilla/src/components/Icon/assets/generic/notification.svg.js +16 -0
  135. package/dist/vanilla/src/components/Icon/assets/generic/policy.svg.js +16 -0
  136. package/dist/vanilla/src/components/Icon/assets/generic/report.svg.js +16 -0
  137. package/dist/vanilla/src/components/Icon/assets/generic/search filled.svg.js +18 -0
  138. package/dist/vanilla/src/components/Icon/assets/generic/settings.svg.js +16 -0
  139. package/dist/vanilla/src/components/Icon/assets/generic/tag.svg.js +16 -0
  140. package/dist/vanilla/src/components/Icon/assets/iconSelector.js +301 -0
  141. package/dist/vanilla/src/components/Icon/assets/musicBusiness/album.svg.js +18 -0
  142. package/dist/vanilla/src/components/Icon/assets/musicBusiness/artist.svg.js +16 -0
  143. package/dist/vanilla/src/components/Icon/assets/musicBusiness/asset.svg.js +16 -0
  144. package/dist/vanilla/src/components/Icon/assets/musicBusiness/broadcast.svg.js +16 -0
  145. package/dist/vanilla/src/components/Icon/assets/musicBusiness/catalog.svg.js +16 -0
  146. package/dist/vanilla/src/components/Icon/assets/musicBusiness/channel.svg.js +21 -0
  147. package/dist/vanilla/src/components/Icon/assets/musicBusiness/cinema.svg.js +16 -0
  148. package/dist/vanilla/src/components/Icon/assets/musicBusiness/claim.svg.js +16 -0
  149. package/dist/vanilla/src/components/Icon/assets/musicBusiness/composition.svg.js +16 -0
  150. package/dist/vanilla/src/components/Icon/assets/musicBusiness/concert.svg.js +16 -0
  151. package/dist/vanilla/src/components/Icon/assets/musicBusiness/conflict.svg.js +16 -0
  152. package/dist/vanilla/src/components/Icon/assets/musicBusiness/cueSheet.svg.js +16 -0
  153. package/dist/vanilla/src/components/Icon/assets/musicBusiness/digital.svg.js +18 -0
  154. package/dist/vanilla/src/components/Icon/assets/musicBusiness/distribution.svg.js +16 -0
  155. package/dist/vanilla/src/components/Icon/assets/musicBusiness/license.svg.js +18 -0
  156. package/dist/vanilla/src/components/Icon/assets/musicBusiness/playcount.svg.js +16 -0
  157. package/dist/vanilla/src/components/Icon/assets/musicBusiness/publicPerformance.svg.js +16 -0
  158. package/dist/vanilla/src/components/Icon/assets/musicBusiness/publisher.svg.js +21 -0
  159. package/dist/vanilla/src/components/Icon/assets/musicBusiness/radio.svg.js +16 -0
  160. package/dist/vanilla/src/components/Icon/assets/musicBusiness/recordLabel.svg.js +18 -0
  161. package/dist/vanilla/src/components/Icon/assets/musicBusiness/recording.svg.js +16 -0
  162. package/dist/vanilla/src/components/Icon/assets/musicBusiness/television.svg.js +16 -0
  163. package/dist/vanilla/src/components/Icon/assets/musicBusiness/usage.svg.js +18 -0
  164. package/dist/vanilla/src/components/Icon/assets/musicBusiness/work.svg.js +18 -0
  165. package/dist/vanilla/src/components/Icon/assets/musicBusiness/writer.svg.js +16 -0
  166. package/dist/vanilla/src/components/Icon/assets/musicBusiness/youTube.svg.js +18 -0
  167. package/dist/vanilla/src/components/Icon/assets/navigation/apps.svg.js +16 -0
  168. package/dist/vanilla/src/components/Icon/assets/navigation/arrowDown.svg.js +16 -0
  169. package/dist/vanilla/src/components/Icon/assets/navigation/arrowLeft.svg.js +16 -0
  170. package/dist/vanilla/src/components/Icon/assets/navigation/arrowRight.svg.js +16 -0
  171. package/dist/vanilla/src/components/Icon/assets/navigation/arrowUp.svg.js +16 -0
  172. package/dist/vanilla/src/components/Icon/assets/navigation/chevronDown.svg.js +16 -0
  173. package/dist/vanilla/src/components/Icon/assets/navigation/chevronLeft.svg.js +16 -0
  174. package/dist/vanilla/src/components/Icon/assets/navigation/chevronRight.svg.js +16 -0
  175. package/dist/vanilla/src/components/Icon/assets/navigation/chevronUp.svg.js +16 -0
  176. package/dist/vanilla/src/components/Icon/assets/navigation/menu.svg.js +16 -0
  177. package/dist/vanilla/src/components/Icon/assets/navigation/pageFirst.svg.js +16 -0
  178. package/dist/vanilla/src/components/Icon/assets/navigation/pageLast.svg.js +16 -0
  179. package/dist/vanilla/src/components/Icon/assets/navigation/triangleDown.svg.js +18 -0
  180. package/dist/vanilla/src/components/Icon/assets/navigation/triangleLeft.svg.js +18 -0
  181. package/dist/vanilla/src/components/Icon/assets/navigation/triangleRight.svg.js +18 -0
  182. package/dist/vanilla/src/components/Icon/assets/navigation/triangleUp.svg.js +18 -0
  183. package/dist/vanilla/src/components/Icon/assets/toggledActions/audio.svg.js +16 -0
  184. package/dist/vanilla/src/components/Icon/assets/toggledActions/audioOff.svg.js +16 -0
  185. package/dist/vanilla/src/components/Icon/assets/toggledActions/bookmark.svg.js +18 -0
  186. package/dist/vanilla/src/components/Icon/assets/toggledActions/bookmarkOff.svg.js +18 -0
  187. package/dist/vanilla/src/components/Icon/assets/toggledActions/eye.svg.js +16 -0
  188. package/dist/vanilla/src/components/Icon/assets/toggledActions/eyeOff.svg.js +16 -0
  189. package/dist/vanilla/src/components/Icon/assets/toggledActions/favorite.svg.js +16 -0
  190. package/dist/vanilla/src/components/Icon/assets/toggledActions/favoriteOff.svg.js +16 -0
  191. package/dist/vanilla/src/components/Icon/assets/toggledActions/flag.svg.js +16 -0
  192. package/dist/vanilla/src/components/Icon/assets/toggledActions/flagOff.svg.js +16 -0
  193. package/dist/vanilla/src/components/Icon/assets/toggledActions/freeze.svg.js +18 -0
  194. package/dist/vanilla/src/components/Icon/assets/toggledActions/image.svg.js +16 -0
  195. package/dist/vanilla/src/components/Icon/assets/toggledActions/imageOff.svg.js +21 -0
  196. package/dist/vanilla/src/components/Icon/assets/toggledActions/link.svg.js +16 -0
  197. package/dist/vanilla/src/components/Icon/assets/toggledActions/lock.svg.js +16 -0
  198. package/dist/vanilla/src/components/Icon/assets/toggledActions/pair.svg.js +16 -0
  199. package/dist/vanilla/src/components/Icon/assets/toggledActions/unfreeze.svg.js +21 -0
  200. package/dist/vanilla/src/components/Icon/assets/toggledActions/unlink.svg.js +16 -0
  201. package/dist/vanilla/src/components/Icon/assets/toggledActions/unlock.svg.js +16 -0
  202. package/dist/vanilla/src/components/Icon/assets/toggledActions/unpair.svg.js +16 -0
  203. package/dist/vanilla/src/components/Icon/assets/toggledActions/video.svg.js +16 -0
  204. package/dist/vanilla/src/components/Icon/assets/toggledActions/videoOff.svg.js +16 -0
  205. package/dist/vanilla/src/components/Icon/assets/usersAndStatus/account.svg.js +16 -0
  206. package/dist/vanilla/src/components/Icon/assets/usersAndStatus/entities.svg.js +16 -0
  207. package/dist/vanilla/src/components/Icon/assets/usersAndStatus/error.svg.js +16 -0
  208. package/dist/vanilla/src/components/Icon/assets/usersAndStatus/help.svg.js +16 -0
  209. package/dist/vanilla/src/components/Icon/assets/usersAndStatus/informational.svg.js +18 -0
  210. package/dist/vanilla/src/components/Icon/assets/usersAndStatus/organization.svg.js +16 -0
  211. package/dist/vanilla/src/components/Icon/assets/usersAndStatus/pending.svg.js +16 -0
  212. package/dist/vanilla/src/components/Icon/assets/usersAndStatus/role.svg.js +16 -0
  213. package/dist/vanilla/src/components/Icon/assets/usersAndStatus/statusIndicator.svg.js +20 -0
  214. package/dist/vanilla/src/components/Icon/assets/usersAndStatus/success.svg.js +16 -0
  215. package/dist/vanilla/src/components/Icon/assets/usersAndStatus/unverified.svg.js +21 -0
  216. package/dist/vanilla/src/components/Icon/assets/usersAndStatus/user.svg.js +16 -0
  217. package/dist/vanilla/src/components/Icon/assets/usersAndStatus/users.svg.js +16 -0
  218. package/dist/vanilla/src/components/Icon/assets/usersAndStatus/verified.svg.js +16 -0
  219. package/dist/vanilla/src/components/Icon/assets/usersAndStatus/warning.svg.js +18 -0
  220. package/dist/vanilla/src/components/IconButton/IconButton.js +5 -4
  221. package/dist/vanilla/src/data-table/DataTableBody-css.js +11 -12
  222. package/dist/vanilla/src/data-table/DataTableCheckbox.js +1 -1
  223. package/dist/vanilla/src/data-table/DataTableHeaderCell-css.js +9 -10
  224. package/dist/vanilla/src/data-table/DataTableHeaderCell.js +1 -1
  225. package/dist/vanilla/src/layers/layers-css.js +9 -0
  226. package/dist/vanilla/src/skeleton/Skeleton-css.js +4 -5
  227. package/dist/vanilla/src/sprinkles/properties-css.js +5 -6
  228. package/dist/vanilla/src/sprinkles/sprinkles.js +3 -3
  229. package/package.json +8 -5
  230. package/.turbo/turbo-build.log +0 -660
  231. package/CHANGELOG.md +0 -169
  232. package/codemods/avatarCodemod.ts +0 -53
  233. package/codemods/buttonCodemod.ts +0 -52
  234. package/codemods/checkboxCodemod.ts +0 -42
  235. package/codemods/chipCodemode.ts +0 -45
  236. package/codemods/drawerCodemod.ts +0 -73
  237. package/codemods/filterCodemod.ts +0 -29
  238. package/codemods/globalsCodemod.ts +0 -145
  239. package/codemods/iconButtonCodemod.ts +0 -54
  240. package/codemods/iconCodemod.ts +0 -24
  241. package/codemods/loaderCodemod.ts +0 -47
  242. package/codemods/menuCodemod.ts +0 -43
  243. package/codemods/notificationsCodemod.ts +0 -21
  244. package/codemods/paginationCodemod.ts +0 -36
  245. package/codemods/radioCodemod.ts +0 -27
  246. package/codemods/radioGroupCodemod.ts +0 -23
  247. package/codemods/searchCodemod.ts +0 -38
  248. package/codemods/selectCodemod.ts +0 -88
  249. package/codemods/switchCodemod.ts +0 -40
  250. package/codemods/tableCodemod.ts +0 -24
  251. package/codemods/textareaCodemod.ts +0 -58
  252. package/codemods/textfieldCodemod.ts +0 -55
  253. package/codemods/tooltipCodemod.ts +0 -35
  254. package/codemods/unchangedIconsCodemod.ts +0 -62
  255. package/dist/icon/Icon.js +0 -309
  256. package/dist/icons/AccountIcon.js +0 -8
  257. package/dist/icons/AlbumIcon.js +0 -8
  258. package/dist/icons/AnalyticsIcon.js +0 -8
  259. package/dist/icons/AppsIcon.js +0 -8
  260. package/dist/icons/ArrowDownIcon.js +0 -8
  261. package/dist/icons/ArrowLeftIcon.js +0 -8
  262. package/dist/icons/ArrowRightIcon.js +0 -8
  263. package/dist/icons/ArrowUpIcon.js +0 -8
  264. package/dist/icons/ArtistIcon.js +0 -8
  265. package/dist/icons/AssetIcon.js +0 -8
  266. package/dist/icons/AudioIcon.js +0 -8
  267. package/dist/icons/AudioOffIcon.js +0 -13
  268. package/dist/icons/BookmarkIcon.js +0 -8
  269. package/dist/icons/BookmarkOffIcon.js +0 -8
  270. package/dist/icons/BroadcastIcon.js +0 -8
  271. package/dist/icons/CalendarIcon.js +0 -8
  272. package/dist/icons/CatalogIcon.js +0 -8
  273. package/dist/icons/ChannelIcon.js +0 -12
  274. package/dist/icons/ChatIcon.js +0 -8
  275. package/dist/icons/CheckIcon.js +0 -8
  276. package/dist/icons/ChevronDownIcon.js +0 -8
  277. package/dist/icons/ChevronLeftIcon.js +0 -8
  278. package/dist/icons/ChevronRightIcon.js +0 -8
  279. package/dist/icons/ChevronUpIcon.js +0 -8
  280. package/dist/icons/CinemaIcon.js +0 -8
  281. package/dist/icons/ClaimIcon.js +0 -8
  282. package/dist/icons/CloseIcon.js +0 -8
  283. package/dist/icons/ColumnChooserIcon.js +0 -8
  284. package/dist/icons/CompositionIcon.js +0 -8
  285. package/dist/icons/ConcertIcon.js +0 -8
  286. package/dist/icons/ConflictIcon.js +0 -8
  287. package/dist/icons/ConvertIcon.js +0 -8
  288. package/dist/icons/CopyIcon.js +0 -8
  289. package/dist/icons/CueSheetIcon.js +0 -8
  290. package/dist/icons/DashboardIcon.js +0 -8
  291. package/dist/icons/DatasetIcon.js +0 -8
  292. package/dist/icons/DeleteIcon.js +0 -8
  293. package/dist/icons/DeliveryIcon.js +0 -8
  294. package/dist/icons/DetailsIcon.js +0 -8
  295. package/dist/icons/DigitalIcon.js +0 -8
  296. package/dist/icons/DistributionIcon.js +0 -8
  297. package/dist/icons/DownloadIcon.js +0 -8
  298. package/dist/icons/EarningsIcon.js +0 -8
  299. package/dist/icons/EditIcon.js +0 -8
  300. package/dist/icons/EntitiesIcon.js +0 -8
  301. package/dist/icons/ErrorIcon.js +0 -8
  302. package/dist/icons/ExternalLinkIcon.js +0 -8
  303. package/dist/icons/EyeIcon.js +0 -8
  304. package/dist/icons/EyeOffIcon.js +0 -8
  305. package/dist/icons/FavoriteIcon.js +0 -8
  306. package/dist/icons/FavoriteOffIcon.js +0 -8
  307. package/dist/icons/FileIcon.js +0 -8
  308. package/dist/icons/FilterIcon.js +0 -8
  309. package/dist/icons/FlagIcon.js +0 -8
  310. package/dist/icons/FlagOffIcon.js +0 -8
  311. package/dist/icons/ForwardIcon.js +0 -8
  312. package/dist/icons/FreezeIcon.js +0 -8
  313. package/dist/icons/HelpIcon.js +0 -8
  314. package/dist/icons/ImageIcon.js +0 -8
  315. package/dist/icons/ImageOffIcon.js +0 -11
  316. package/dist/icons/IncomeIcon.js +0 -8
  317. package/dist/icons/InformationalIcon.js +0 -8
  318. package/dist/icons/InsightIcon.js +0 -8
  319. package/dist/icons/InvoiceIcon.js +0 -8
  320. package/dist/icons/IssueIcon.js +0 -8
  321. package/dist/icons/KeywordIcon.js +0 -8
  322. package/dist/icons/LanguageIcon.js +0 -8
  323. package/dist/icons/LegalIcon.js +0 -8
  324. package/dist/icons/LicenseIcon.js +0 -8
  325. package/dist/icons/LinkIcon.js +0 -8
  326. package/dist/icons/LocationIcon.js +0 -8
  327. package/dist/icons/LockIcon.js +0 -8
  328. package/dist/icons/LoginIcon.js +0 -8
  329. package/dist/icons/LogoutIcon.js +0 -8
  330. package/dist/icons/MailIcon.js +0 -8
  331. package/dist/icons/ManualIcon.js +0 -8
  332. package/dist/icons/MediaFileIcon.js +0 -8
  333. package/dist/icons/MenuIcon.js +0 -8
  334. package/dist/icons/MinusIcon.js +0 -8
  335. package/dist/icons/MoreOptionsIcon.js +0 -12
  336. package/dist/icons/NextIcon.js +0 -8
  337. package/dist/icons/NotificationIcon.js +0 -8
  338. package/dist/icons/OrganizationIcon.js +0 -8
  339. package/dist/icons/PageFirstIcon.js +0 -8
  340. package/dist/icons/PageLastIcon.js +0 -8
  341. package/dist/icons/PairIcon.js +0 -8
  342. package/dist/icons/PauseIcon.js +0 -8
  343. package/dist/icons/PendingIcon.js +0 -8
  344. package/dist/icons/PlayIcon.js +0 -8
  345. package/dist/icons/PlaycountIcon.js +0 -8
  346. package/dist/icons/PlusIcon.js +0 -8
  347. package/dist/icons/PolicyIcon.js +0 -8
  348. package/dist/icons/PreviousIcon.js +0 -8
  349. package/dist/icons/PublicPerformanceIcon.js +0 -8
  350. package/dist/icons/PublisherIcon.js +0 -11
  351. package/dist/icons/RadioIcon.js +0 -8
  352. package/dist/icons/RecordLabelIcon.js +0 -8
  353. package/dist/icons/RecordingIcon.js +0 -8
  354. package/dist/icons/RedoIcon.js +0 -8
  355. package/dist/icons/RefreshIcon.js +0 -8
  356. package/dist/icons/ReportIcon.js +0 -8
  357. package/dist/icons/RestoreIcon.js +0 -11
  358. package/dist/icons/ResumeIcon.js +0 -11
  359. package/dist/icons/ReviewIcon.js +0 -8
  360. package/dist/icons/RewindIcon.js +0 -8
  361. package/dist/icons/RoleIcon.js +0 -8
  362. package/dist/icons/SearchFilledIcon.js +0 -8
  363. package/dist/icons/SearchIcon.js +0 -8
  364. package/dist/icons/SettingsIcon.js +0 -8
  365. package/dist/icons/ShareIcon.js +0 -8
  366. package/dist/icons/SortAscendingIcon.js +0 -12
  367. package/dist/icons/SortDescendingIcon.js +0 -12
  368. package/dist/icons/SortIcon.js +0 -11
  369. package/dist/icons/StatusIndicatorIcon.js +0 -8
  370. package/dist/icons/StopIcon.js +0 -8
  371. package/dist/icons/SuccessIcon.js +0 -8
  372. package/dist/icons/TagIcon.js +0 -8
  373. package/dist/icons/TelevisionIcon.js +0 -8
  374. package/dist/icons/ThumbsDownIcon.js +0 -8
  375. package/dist/icons/ThumbsUpIcon.js +0 -8
  376. package/dist/icons/TrendingDownIcon.js +0 -8
  377. package/dist/icons/TrendingUpIcon.js +0 -8
  378. package/dist/icons/TriangleDownIcon.js +0 -8
  379. package/dist/icons/TriangleLeftIcon.js +0 -8
  380. package/dist/icons/TriangleRightIcon.js +0 -8
  381. package/dist/icons/TriangleUpIcon.js +0 -8
  382. package/dist/icons/UndoIcon.js +0 -8
  383. package/dist/icons/UnfreezeIcon.js +0 -11
  384. package/dist/icons/UnlinkIcon.js +0 -8
  385. package/dist/icons/UnlockIcon.js +0 -8
  386. package/dist/icons/UnpairIcon.js +0 -8
  387. package/dist/icons/UnverifiedIcon.js +0 -11
  388. package/dist/icons/UpdateIcon.js +0 -11
  389. package/dist/icons/UploadIcon.js +0 -8
  390. package/dist/icons/UsageIcon.js +0 -8
  391. package/dist/icons/UserIcon.js +0 -8
  392. package/dist/icons/UsersIcon.js +0 -13
  393. package/dist/icons/VerifiedIcon.js +0 -8
  394. package/dist/icons/VideoIcon.js +0 -8
  395. package/dist/icons/VideoOffIcon.js +0 -11
  396. package/dist/icons/WarningIcon.js +0 -8
  397. package/dist/icons/WorkIcon.js +0 -8
  398. package/dist/icons/WriterIcon.js +0 -12
  399. package/dist/icons/YouTubeIcon.js +0 -8
  400. package/dist/layers/layers.css.js +0 -9
  401. package/dist/layers/layers.css.ts.vanilla.css +0 -1
  402. package/dist/sprinkles/createSprinklesMerge.js +0 -27
  403. package/dist/sprinkles/properties.css.js +0 -9
  404. package/dist/sprinkles/properties.css.ts.vanilla.css +0 -1
  405. package/dist/sprinkles/sprinkles.js +0 -8
  406. package/dist/sprinkles/sprinklesMerge.js +0 -6
  407. package/dist/utils/cn.js +0 -7
  408. package/dist/vanilla/assets/src/actions/ActionsContent.css.ts.vanilla-BVxWvGVF.css +0 -22
  409. package/dist/vanilla/assets/src/actions/ActionsRoot.css.ts.vanilla-B5JvX1-v.css +0 -4
  410. package/dist/vanilla/assets/src/data-table/DataTableBody.css.ts.vanilla-B8JRxzQ8.css +0 -70
  411. package/dist/vanilla/assets/src/data-table/DataTableHeaderCell.css.ts.vanilla-B2HJ86a7.css +0 -36
  412. package/dist/vanilla/assets/src/layers/layers.css.ts.vanilla-CBkaYCBT.css +0 -1
  413. package/dist/vanilla/assets/src/skeleton/Skeleton.css.ts.vanilla-CNzX69JK.css +0 -6
  414. package/dist/vanilla/assets/src/sprinkles/properties.css.ts.vanilla-CRlOneec.css +0 -10127
  415. package/dist/vanilla/assets/src/vanilla/Menu/Menu.css.ts.vanilla-C4DzWzim.css +0 -15
  416. package/dist/vanilla/assets/src/vanilla/Popover/Popover.css.ts.vanilla-CVYpB1bf.css +0 -10
  417. package/dist/vanilla/assets/src/vanilla/Table/Table.css.ts.vanilla-D8zK7RSt.css +0 -21
  418. package/dist/vanilla/assets/src/vanilla/Table/TableBody.css.ts.vanilla-BWkZ_Hqu.css +0 -6
  419. package/dist/vanilla/assets/src/vanilla/Table/TableCell.css.ts.vanilla-BmF3z2D_.css +0 -28
  420. package/dist/vanilla/assets/src/vanilla/Table/TableFooter.css.ts.vanilla-CpsnDIuH.css +0 -11
  421. package/dist/vanilla/assets/src/vanilla/Table/TableHeader.css.ts.vanilla-2yw_MsU1.css +0 -8
  422. package/dist/vanilla/assets/src/vanilla/Table/TableHeaderCell.css.ts.vanilla-CZtubUTB.css +0 -25
  423. package/dist/vanilla/assets/src/vanilla/Table/TableRow.css.ts.vanilla-B1NNK8v8.css +0 -18
  424. package/dist/vanilla/assets/src/vanilla/Text/Text.css.ts.vanilla-cv9I-28W.css +0 -38
  425. package/dist/vanilla/assets/src/vanilla/Tooltip/Tooltip.css.ts.vanilla-nRPDcOsw.css +0 -39
  426. package/dist/vanilla-extract/global.css.ts.vanilla.css +0 -1
  427. package/eslint.config.mjs +0 -176
  428. package/postcss.config.mjs +0 -13
  429. package/rollup.config.mjs +0 -66
  430. package/src/actions/ActionsContent.css.ts +0 -52
  431. package/src/actions/ActionsContent.tsx +0 -19
  432. package/src/actions/ActionsRoot.css.ts +0 -8
  433. package/src/actions/ActionsRoot.tsx +0 -19
  434. package/src/actions/index.ts +0 -2
  435. package/src/components/Avatar/Avatar.style.ts +0 -124
  436. package/src/components/Avatar/Avatar.tsx +0 -38
  437. package/src/components/Avatar/Avatar.types.ts +0 -24
  438. package/src/components/Avatar/AvatarStack/AvatarStack.style.ts +0 -25
  439. package/src/components/Avatar/AvatarStack/AvatarStack.tsx +0 -49
  440. package/src/components/Avatar/AvatarStack/AvatarStack.types.ts +0 -12
  441. package/src/components/Avatar/AvatarStack/index.ts +0 -2
  442. package/src/components/Avatar/AvatarStack/utils.ts +0 -10
  443. package/src/components/Avatar/UserAvatar.tsx +0 -18
  444. package/src/components/Avatar/index.ts +0 -3
  445. package/src/components/Box/Box.style.ts +0 -3
  446. package/src/components/Box/Box.test.ts +0 -98
  447. package/src/components/Box/Box.tsx +0 -57
  448. package/src/components/Box/Box.types.ts +0 -336
  449. package/src/components/Box/Box.utilities.ts +0 -171
  450. package/src/components/Box/index.ts +0 -3
  451. package/src/components/Breadcrumb/BackToItem/BackToItem.tsx +0 -25
  452. package/src/components/Breadcrumb/BackToItem/index.ts +0 -1
  453. package/src/components/Breadcrumb/Breadcrumb.style.ts +0 -16
  454. package/src/components/Breadcrumb/Breadcrumb.tsx +0 -79
  455. package/src/components/Breadcrumb/Breadcrumb.types.ts +0 -16
  456. package/src/components/Breadcrumb/BreadcrumbItem/BreadcrumbItem.style.ts +0 -25
  457. package/src/components/Breadcrumb/BreadcrumbItem/BreadcrumbItem.tsx +0 -35
  458. package/src/components/Breadcrumb/BreadcrumbItem/index.ts +0 -1
  459. package/src/components/Breadcrumb/index.ts +0 -3
  460. package/src/components/Broadcast/Broadcast.style.ts +0 -132
  461. package/src/components/Broadcast/Broadcast.tsx +0 -89
  462. package/src/components/Broadcast/Broadcast.types.ts +0 -43
  463. package/src/components/Broadcast/index.ts +0 -1
  464. package/src/components/Broadcast/tests/Broadcast.test.tsx +0 -71
  465. package/src/components/Button/Button.tsx +0 -57
  466. package/src/components/Button/Button.types.ts +0 -5
  467. package/src/components/Button/ButtonLoader/ButtonLoader.style.ts +0 -49
  468. package/src/components/Button/ButtonLoader/ButtonLoader.tsx +0 -20
  469. package/src/components/Button/ButtonLoader/index.ts +0 -2
  470. package/src/components/Button/index.ts +0 -2
  471. package/src/components/ButtonBase/ButtonBase.style.ts +0 -94
  472. package/src/components/ButtonBase/ButtonBase.tsx +0 -102
  473. package/src/components/ButtonBase/constants.ts +0 -43
  474. package/src/components/ButtonBase/index.ts +0 -2
  475. package/src/components/Card/Card.style.ts +0 -17
  476. package/src/components/Card/Card.tsx +0 -25
  477. package/src/components/Card/index.ts +0 -2
  478. package/src/components/Chart/BarChart/BarChart.tsx +0 -154
  479. package/src/components/Chart/BarChart/components/CustomLabel/CustomLabel.tsx +0 -35
  480. package/src/components/Chart/BarChart/components/CustomLabel/index.ts +0 -1
  481. package/src/components/Chart/BarChart/components/CustomTooltip/CustomTooltip.style.ts +0 -36
  482. package/src/components/Chart/BarChart/components/CustomTooltip/CustomTooltip.tsx +0 -47
  483. package/src/components/Chart/BarChart/components/CustomTooltip/index.ts +0 -1
  484. package/src/components/Chart/BarChart/components/CustomTooltipContent/CustomTooltipContent.style.ts +0 -45
  485. package/src/components/Chart/BarChart/components/CustomTooltipContent/CustomTooltipContent.tsx +0 -31
  486. package/src/components/Chart/BarChart/components/CustomTooltipContent/index.ts +0 -1
  487. package/src/components/Chart/BarChart/index.ts +0 -1
  488. package/src/components/Chart/BarChart/utils.ts +0 -69
  489. package/src/components/Chart/DonutChart/DonutChart.tsx +0 -50
  490. package/src/components/Chart/DonutChart/components/CustomLabel/CustomLabel.style.ts +0 -16
  491. package/src/components/Chart/DonutChart/components/CustomLabel/CustomLabel.tsx +0 -45
  492. package/src/components/Chart/DonutChart/components/CustomLabel/index.ts +0 -1
  493. package/src/components/Chart/DonutChart/index.ts +0 -1
  494. package/src/components/Chart/LineChart/LineChart.test.ts +0 -33
  495. package/src/components/Chart/LineChart/LineChart.tsx +0 -103
  496. package/src/components/Chart/LineChart/components/CustomTooltip/CustomTooltip.style.ts +0 -40
  497. package/src/components/Chart/LineChart/components/CustomTooltip/CustomTooltip.tsx +0 -32
  498. package/src/components/Chart/LineChart/components/CustomTooltip/index.ts +0 -1
  499. package/src/components/Chart/LineChart/components/GradientLine/GradientLine.tsx +0 -17
  500. package/src/components/Chart/LineChart/components/GradientLine/index.ts +0 -1
  501. package/src/components/Chart/LineChart/index.ts +0 -1
  502. package/src/components/Chart/LineChart/mockedData.ts +0 -43
  503. package/src/components/Chart/LineChart/story.utils.ts +0 -13
  504. package/src/components/Chart/LineChart/utils.ts +0 -33
  505. package/src/components/Chart/Wrapper.tsx +0 -31
  506. package/src/components/Controls/CheckBox/CheckBox.style.ts +0 -84
  507. package/src/components/Controls/CheckBox/CheckBox.test.tsx +0 -86
  508. package/src/components/Controls/CheckBox/CheckBox.tsx +0 -98
  509. package/src/components/Controls/CheckBox/__snapshots__/CheckBox.stories.storyshot +0 -2410
  510. package/src/components/Controls/CheckBox/__snapshots__/CheckBox.test.tsx.snap +0 -145
  511. package/src/components/Controls/CheckBox/index.ts +0 -2
  512. package/src/components/Controls/ControlLabel/ControlHelpText.tsx +0 -16
  513. package/src/components/Controls/ControlLabel/ControlLabel.style.ts +0 -39
  514. package/src/components/Controls/ControlLabel/ControlLabelText.tsx +0 -18
  515. package/src/components/Controls/ControlLabel/index.ts +0 -2
  516. package/src/components/Controls/Controls.types.ts +0 -12
  517. package/src/components/Controls/Radio/Radio.style.ts +0 -96
  518. package/src/components/Controls/Radio/Radio.test.tsx +0 -62
  519. package/src/components/Controls/Radio/Radio.tsx +0 -73
  520. package/src/components/Controls/Radio/__snapshots__/Radio.stories.storyshot +0 -2659
  521. package/src/components/Controls/Radio/__snapshots__/Radio.test.tsx.snap +0 -122
  522. package/src/components/Controls/Radio/components/RadioGroup/RadioGroup.tsx +0 -42
  523. package/src/components/Controls/Radio/components/RadioGroup/RadioGroupContext.ts +0 -6
  524. package/src/components/Controls/Radio/components/RadioGroup/index.ts +0 -2
  525. package/src/components/Controls/Radio/index.ts +0 -2
  526. package/src/components/Controls/Switch/Switch.style.ts +0 -91
  527. package/src/components/Controls/Switch/Switch.test.tsx +0 -53
  528. package/src/components/Controls/Switch/Switch.tsx +0 -84
  529. package/src/components/Controls/Switch/__snapshots__/Switch.test.tsx.snap +0 -141
  530. package/src/components/Controls/Switch/index.ts +0 -2
  531. package/src/components/Controls/index.ts +0 -5
  532. package/src/components/DatePicker/DatePickInput/DatePickInput.style.ts +0 -47
  533. package/src/components/DatePicker/DatePickInput/DatePickInput.tsx +0 -165
  534. package/src/components/DatePicker/DatePickInput/index.ts +0 -2
  535. package/src/components/DatePicker/DatePicker.style.ts +0 -15
  536. package/src/components/DatePicker/DatePicker.test.tsx +0 -346
  537. package/src/components/DatePicker/DatePicker.tsx +0 -231
  538. package/src/components/DatePicker/DatePicker.types.ts +0 -57
  539. package/src/components/DatePicker/Day/Day.style.ts +0 -111
  540. package/src/components/DatePicker/Day/Day.test.tsx +0 -97
  541. package/src/components/DatePicker/Day/Day.tsx +0 -100
  542. package/src/components/DatePicker/Day/__snapshots__/Day.test.tsx.snap +0 -320
  543. package/src/components/DatePicker/Day/index.ts +0 -2
  544. package/src/components/DatePicker/Month/Month.style.ts +0 -32
  545. package/src/components/DatePicker/Month/Month.test.tsx +0 -96
  546. package/src/components/DatePicker/Month/Month.tsx +0 -154
  547. package/src/components/DatePicker/Month/Month.utils.ts +0 -107
  548. package/src/components/DatePicker/Month/__snapshots__/Month.test.tsx.snap +0 -803
  549. package/src/components/DatePicker/Month/hooks/useMonthKeyboardNavigation.ts +0 -84
  550. package/src/components/DatePicker/Month/index.ts +0 -2
  551. package/src/components/DatePicker/OverlayComponent/OverlayComponent.style.ts +0 -71
  552. package/src/components/DatePicker/OverlayComponent/OverlayComponent.test.tsx +0 -109
  553. package/src/components/DatePicker/OverlayComponent/OverlayComponent.tsx +0 -118
  554. package/src/components/DatePicker/OverlayComponent/__snapshots__/OverlayComponent.test.tsx.snap +0 -3183
  555. package/src/components/DatePicker/OverlayComponent/components/MonthWrapper/MonthWrapper.style.ts +0 -55
  556. package/src/components/DatePicker/OverlayComponent/components/MonthWrapper/MonthWrapper.test.tsx +0 -52
  557. package/src/components/DatePicker/OverlayComponent/components/MonthWrapper/MonthWrapper.tsx +0 -154
  558. package/src/components/DatePicker/OverlayComponent/components/MonthWrapper/__snapshots__/MonthWrapper.test.tsx.snap +0 -1098
  559. package/src/components/DatePicker/OverlayComponent/components/MonthWrapper/index.ts +0 -0
  560. package/src/components/DatePicker/OverlayComponent/index.ts +0 -2
  561. package/src/components/DatePicker/OverlayComponent/utils.ts +0 -15
  562. package/src/components/DatePicker/constants.ts +0 -28
  563. package/src/components/DatePicker/index.ts +0 -4
  564. package/src/components/DatePicker/utils.ts +0 -17
  565. package/src/components/Drawer/Drawer.style.ts +0 -204
  566. package/src/components/Drawer/Drawer.test.tsx +0 -127
  567. package/src/components/Drawer/Drawer.tsx +0 -80
  568. package/src/components/Drawer/Drawer.types.ts +0 -20
  569. package/src/components/Drawer/DrawerContext.tsx +0 -103
  570. package/src/components/Drawer/components/DrawerContent/DrawerContent.tsx +0 -26
  571. package/src/components/Drawer/components/DrawerContent/hooks/useDrawerContentObserver.ts +0 -52
  572. package/src/components/Drawer/components/DrawerContent/index.ts +0 -1
  573. package/src/components/Drawer/components/DrawerFooter/DrawerFooter.tsx +0 -20
  574. package/src/components/Drawer/components/DrawerFooter/index.ts +0 -1
  575. package/src/components/Drawer/components/DrawerHeader/DrawerHeader.tsx +0 -22
  576. package/src/components/Drawer/components/DrawerHeader/index.ts +0 -1
  577. package/src/components/Drawer/components/index.ts +0 -3
  578. package/src/components/Drawer/index.ts +0 -5
  579. package/src/components/DropdownButton/DropdownButton.style.ts +0 -90
  580. package/src/components/DropdownButton/DropdownButton.test.tsx +0 -57
  581. package/src/components/DropdownButton/DropdownButton.tsx +0 -159
  582. package/src/components/DropdownButton/index.ts +0 -1
  583. package/src/components/ExpandCollapse/ExpandCollapse.style.ts +0 -9
  584. package/src/components/ExpandCollapse/ExpandCollapse.tsx +0 -56
  585. package/src/components/ExpandCollapse/ExpandCollapse.types.ts +0 -68
  586. package/src/components/ExpandCollapse/index.ts +0 -3
  587. package/src/components/ExpandCollapse/useManageContentRef.ts +0 -45
  588. package/src/components/ExpandCollapse/utils.ts +0 -21
  589. package/src/components/Filter/Filter.test.tsx +0 -218
  590. package/src/components/Filter/Filter.tsx +0 -162
  591. package/src/components/Filter/Filter.types.ts +0 -77
  592. package/src/components/Filter/StatefulFilter.tsx +0 -37
  593. package/src/components/Filter/components/FilterButton/FilterButton.style.ts +0 -74
  594. package/src/components/Filter/components/FilterButton/FilterButton.tsx +0 -101
  595. package/src/components/Filter/components/FilterButton/index.ts +0 -1
  596. package/src/components/Filter/components/FilterMenu/FilterMenu.style.ts +0 -15
  597. package/src/components/Filter/components/FilterMenu/FilterMenu.tsx +0 -78
  598. package/src/components/Filter/components/FilterMenu/components/FilterSearchField/FilterSearchField.style.ts +0 -31
  599. package/src/components/Filter/components/FilterMenu/components/FilterSearchField/FilterSearchField.tsx +0 -106
  600. package/src/components/Filter/components/FilterMenu/components/FilterSearchField/index.ts +0 -1
  601. package/src/components/Filter/components/FilterMenu/components/Options/Options.style.ts +0 -40
  602. package/src/components/Filter/components/FilterMenu/components/Options/Options.tsx +0 -94
  603. package/src/components/Filter/components/FilterMenu/components/Options/index.ts +0 -1
  604. package/src/components/Filter/components/FilterMenu/index.ts +0 -1
  605. package/src/components/Filter/constants.ts +0 -39
  606. package/src/components/Filter/hooks/index.ts +0 -1
  607. package/src/components/Filter/hooks/useFilterWithSelectionUtils.ts +0 -122
  608. package/src/components/Filter/index.ts +0 -3
  609. package/src/components/Icon/Icon.style.ts +0 -52
  610. package/src/components/Icon/Icon.tsx +0 -68
  611. package/src/components/Icon/Icon.types.ts +0 -169
  612. package/src/components/Icon/assets/audioControls/forward.svg +0 -3
  613. package/src/components/Icon/assets/audioControls/next.svg +0 -3
  614. package/src/components/Icon/assets/audioControls/pause.svg +0 -3
  615. package/src/components/Icon/assets/audioControls/play.svg +0 -3
  616. package/src/components/Icon/assets/audioControls/previous.svg +0 -3
  617. package/src/components/Icon/assets/audioControls/resume.svg +0 -4
  618. package/src/components/Icon/assets/audioControls/rewind.svg +0 -3
  619. package/src/components/Icon/assets/audioControls/stop.svg +0 -3
  620. package/src/components/Icon/assets/basicActions/check.svg +0 -3
  621. package/src/components/Icon/assets/basicActions/close.svg +0 -3
  622. package/src/components/Icon/assets/basicActions/columnChooser.svg +0 -3
  623. package/src/components/Icon/assets/basicActions/convert.svg +0 -3
  624. package/src/components/Icon/assets/basicActions/copy.svg +0 -3
  625. package/src/components/Icon/assets/basicActions/delete.svg +0 -3
  626. package/src/components/Icon/assets/basicActions/download.svg +0 -3
  627. package/src/components/Icon/assets/basicActions/edit.svg +0 -3
  628. package/src/components/Icon/assets/basicActions/login.svg +0 -3
  629. package/src/components/Icon/assets/basicActions/logout.svg +0 -3
  630. package/src/components/Icon/assets/basicActions/mediaFile.svg +0 -3
  631. package/src/components/Icon/assets/basicActions/minus.svg +0 -3
  632. package/src/components/Icon/assets/basicActions/plus.svg +0 -3
  633. package/src/components/Icon/assets/basicActions/redo.svg +0 -3
  634. package/src/components/Icon/assets/basicActions/refresh.svg +0 -3
  635. package/src/components/Icon/assets/basicActions/restore.svg +0 -4
  636. package/src/components/Icon/assets/basicActions/review.svg +0 -3
  637. package/src/components/Icon/assets/basicActions/search.svg +0 -3
  638. package/src/components/Icon/assets/basicActions/share.svg +0 -3
  639. package/src/components/Icon/assets/basicActions/sort.svg +0 -4
  640. package/src/components/Icon/assets/basicActions/sortAscending.svg +0 -5
  641. package/src/components/Icon/assets/basicActions/sortDescending.svg +0 -5
  642. package/src/components/Icon/assets/basicActions/thumbsDown.svg +0 -3
  643. package/src/components/Icon/assets/basicActions/thumbsUp.svg +0 -3
  644. package/src/components/Icon/assets/basicActions/undo.svg +0 -3
  645. package/src/components/Icon/assets/basicActions/update.svg +0 -4
  646. package/src/components/Icon/assets/basicActions/upload.svg +0 -3
  647. package/src/components/Icon/assets/dataAndFinance/analytics.svg +0 -3
  648. package/src/components/Icon/assets/dataAndFinance/dashboard.svg +0 -3
  649. package/src/components/Icon/assets/dataAndFinance/dataset.svg +0 -3
  650. package/src/components/Icon/assets/dataAndFinance/earnings.svg +0 -3
  651. package/src/components/Icon/assets/dataAndFinance/income.svg +0 -3
  652. package/src/components/Icon/assets/dataAndFinance/insight.svg +0 -3
  653. package/src/components/Icon/assets/dataAndFinance/invoice.svg +0 -3
  654. package/src/components/Icon/assets/dataAndFinance/trendingDown.svg +0 -3
  655. package/src/components/Icon/assets/dataAndFinance/trendingUp.svg +0 -3
  656. package/src/components/Icon/assets/generic/calendar.svg +0 -3
  657. package/src/components/Icon/assets/generic/chat.svg +0 -3
  658. package/src/components/Icon/assets/generic/delivery.svg +0 -3
  659. package/src/components/Icon/assets/generic/details.svg +0 -3
  660. package/src/components/Icon/assets/generic/externalLink.svg +0 -3
  661. package/src/components/Icon/assets/generic/file.svg +0 -3
  662. package/src/components/Icon/assets/generic/filter.svg +0 -3
  663. package/src/components/Icon/assets/generic/issue.svg +0 -3
  664. package/src/components/Icon/assets/generic/keyword.svg +0 -3
  665. package/src/components/Icon/assets/generic/language.svg +0 -3
  666. package/src/components/Icon/assets/generic/legal.svg +0 -3
  667. package/src/components/Icon/assets/generic/location.svg +0 -3
  668. package/src/components/Icon/assets/generic/mail.svg +0 -3
  669. package/src/components/Icon/assets/generic/manual.svg +0 -3
  670. package/src/components/Icon/assets/generic/moreOptions.svg +0 -5
  671. package/src/components/Icon/assets/generic/notification.svg +0 -3
  672. package/src/components/Icon/assets/generic/policy.svg +0 -3
  673. package/src/components/Icon/assets/generic/report.svg +0 -3
  674. package/src/components/Icon/assets/generic/search filled.svg +0 -3
  675. package/src/components/Icon/assets/generic/settings.svg +0 -3
  676. package/src/components/Icon/assets/generic/tag.svg +0 -3
  677. package/src/components/Icon/assets/iconSelector.ts +0 -312
  678. package/src/components/Icon/assets/musicBusiness/album.svg +0 -3
  679. package/src/components/Icon/assets/musicBusiness/artist.svg +0 -3
  680. package/src/components/Icon/assets/musicBusiness/asset.svg +0 -3
  681. package/src/components/Icon/assets/musicBusiness/broadcast.svg +0 -3
  682. package/src/components/Icon/assets/musicBusiness/catalog.svg +0 -3
  683. package/src/components/Icon/assets/musicBusiness/channel.svg +0 -5
  684. package/src/components/Icon/assets/musicBusiness/cinema.svg +0 -3
  685. package/src/components/Icon/assets/musicBusiness/claim.svg +0 -3
  686. package/src/components/Icon/assets/musicBusiness/composition.svg +0 -3
  687. package/src/components/Icon/assets/musicBusiness/concert.svg +0 -3
  688. package/src/components/Icon/assets/musicBusiness/conflict.svg +0 -3
  689. package/src/components/Icon/assets/musicBusiness/cueSheet.svg +0 -3
  690. package/src/components/Icon/assets/musicBusiness/digital.svg +0 -3
  691. package/src/components/Icon/assets/musicBusiness/distribution.svg +0 -3
  692. package/src/components/Icon/assets/musicBusiness/license.svg +0 -3
  693. package/src/components/Icon/assets/musicBusiness/playcount.svg +0 -3
  694. package/src/components/Icon/assets/musicBusiness/publicPerformance.svg +0 -3
  695. package/src/components/Icon/assets/musicBusiness/publisher.svg +0 -4
  696. package/src/components/Icon/assets/musicBusiness/radio.svg +0 -3
  697. package/src/components/Icon/assets/musicBusiness/recordLabel.svg +0 -3
  698. package/src/components/Icon/assets/musicBusiness/recording.svg +0 -3
  699. package/src/components/Icon/assets/musicBusiness/television.svg +0 -3
  700. package/src/components/Icon/assets/musicBusiness/usage.svg +0 -3
  701. package/src/components/Icon/assets/musicBusiness/work.svg +0 -3
  702. package/src/components/Icon/assets/musicBusiness/writer.svg +0 -5
  703. package/src/components/Icon/assets/musicBusiness/youTube.svg +0 -3
  704. package/src/components/Icon/assets/navigation/apps.svg +0 -3
  705. package/src/components/Icon/assets/navigation/arrowDown.svg +0 -3
  706. package/src/components/Icon/assets/navigation/arrowLeft.svg +0 -3
  707. package/src/components/Icon/assets/navigation/arrowRight.svg +0 -3
  708. package/src/components/Icon/assets/navigation/arrowUp.svg +0 -3
  709. package/src/components/Icon/assets/navigation/chevronDown.svg +0 -3
  710. package/src/components/Icon/assets/navigation/chevronLeft.svg +0 -3
  711. package/src/components/Icon/assets/navigation/chevronRight.svg +0 -3
  712. package/src/components/Icon/assets/navigation/chevronUp.svg +0 -3
  713. package/src/components/Icon/assets/navigation/menu.svg +0 -3
  714. package/src/components/Icon/assets/navigation/pageFirst.svg +0 -3
  715. package/src/components/Icon/assets/navigation/pageLast.svg +0 -3
  716. package/src/components/Icon/assets/navigation/triangleDown.svg +0 -3
  717. package/src/components/Icon/assets/navigation/triangleLeft.svg +0 -3
  718. package/src/components/Icon/assets/navigation/triangleRight.svg +0 -3
  719. package/src/components/Icon/assets/navigation/triangleUp.svg +0 -3
  720. package/src/components/Icon/assets/toggledActions/audio.svg +0 -3
  721. package/src/components/Icon/assets/toggledActions/audioOff.svg +0 -6
  722. package/src/components/Icon/assets/toggledActions/bookmark.svg +0 -3
  723. package/src/components/Icon/assets/toggledActions/bookmarkOff.svg +0 -3
  724. package/src/components/Icon/assets/toggledActions/eye.svg +0 -3
  725. package/src/components/Icon/assets/toggledActions/eyeOff.svg +0 -3
  726. package/src/components/Icon/assets/toggledActions/favorite.svg +0 -3
  727. package/src/components/Icon/assets/toggledActions/favoriteOff.svg +0 -3
  728. package/src/components/Icon/assets/toggledActions/flag.svg +0 -3
  729. package/src/components/Icon/assets/toggledActions/flagOff.svg +0 -3
  730. package/src/components/Icon/assets/toggledActions/freeze.svg +0 -3
  731. package/src/components/Icon/assets/toggledActions/image.svg +0 -3
  732. package/src/components/Icon/assets/toggledActions/imageOff.svg +0 -4
  733. package/src/components/Icon/assets/toggledActions/link.svg +0 -3
  734. package/src/components/Icon/assets/toggledActions/lock.svg +0 -3
  735. package/src/components/Icon/assets/toggledActions/pair.svg +0 -3
  736. package/src/components/Icon/assets/toggledActions/unfreeze.svg +0 -4
  737. package/src/components/Icon/assets/toggledActions/unlink.svg +0 -3
  738. package/src/components/Icon/assets/toggledActions/unlock.svg +0 -3
  739. package/src/components/Icon/assets/toggledActions/unpair.svg +0 -3
  740. package/src/components/Icon/assets/toggledActions/video.svg +0 -3
  741. package/src/components/Icon/assets/toggledActions/videoOff.svg +0 -4
  742. package/src/components/Icon/assets/usersAndStatus/account.svg +0 -3
  743. package/src/components/Icon/assets/usersAndStatus/entities.svg +0 -3
  744. package/src/components/Icon/assets/usersAndStatus/error.svg +0 -3
  745. package/src/components/Icon/assets/usersAndStatus/help.svg +0 -3
  746. package/src/components/Icon/assets/usersAndStatus/informational.svg +0 -3
  747. package/src/components/Icon/assets/usersAndStatus/organization.svg +0 -3
  748. package/src/components/Icon/assets/usersAndStatus/pending.svg +0 -3
  749. package/src/components/Icon/assets/usersAndStatus/role.svg +0 -3
  750. package/src/components/Icon/assets/usersAndStatus/statusIndicator.svg +0 -3
  751. package/src/components/Icon/assets/usersAndStatus/success.svg +0 -3
  752. package/src/components/Icon/assets/usersAndStatus/unverified.svg +0 -4
  753. package/src/components/Icon/assets/usersAndStatus/user.svg +0 -3
  754. package/src/components/Icon/assets/usersAndStatus/users.svg +0 -6
  755. package/src/components/Icon/assets/usersAndStatus/verified.svg +0 -3
  756. package/src/components/Icon/assets/usersAndStatus/warning.svg +0 -3
  757. package/src/components/Icon/constants.ts +0 -199
  758. package/src/components/Icon/index.ts +0 -5
  759. package/src/components/IconButton/IconButton.tsx +0 -59
  760. package/src/components/IconButton/index.ts +0 -2
  761. package/src/components/InlineAlert/InlineAlert.style.ts +0 -117
  762. package/src/components/InlineAlert/InlineAlert.tsx +0 -89
  763. package/src/components/InlineAlert/InlineAlert.types.ts +0 -48
  764. package/src/components/InlineAlert/index.ts +0 -2
  765. package/src/components/InlineAlert/tests/InlineAlert.test.tsx +0 -71
  766. package/src/components/Label/Label.style.ts +0 -42
  767. package/src/components/Label/Label.tsx +0 -36
  768. package/src/components/Label/index.ts +0 -2
  769. package/src/components/Link/Link.style.ts +0 -90
  770. package/src/components/Link/Link.tsx +0 -58
  771. package/src/components/Link/Link.types.ts +0 -23
  772. package/src/components/Link/index.ts +0 -1
  773. package/src/components/List/List.style.ts +0 -50
  774. package/src/components/List/List.tsx +0 -168
  775. package/src/components/List/ListItem.tsx +0 -28
  776. package/src/components/List/ListSection.tsx +0 -22
  777. package/src/components/List/Window.tsx +0 -86
  778. package/src/components/List/components/ListItemAction/ListItemAction.style.ts +0 -10
  779. package/src/components/List/components/ListItemAction/ListItemAction.tsx +0 -12
  780. package/src/components/List/components/ListItemAction/index.ts +0 -2
  781. package/src/components/List/components/ListItemText/ListItemText.style.ts +0 -45
  782. package/src/components/List/components/ListItemText/ListItemText.tsx +0 -19
  783. package/src/components/List/components/ListItemText/index.ts +0 -2
  784. package/src/components/List/components/ListItemWrapper/ListItemWrapper.style.ts +0 -65
  785. package/src/components/List/components/ListItemWrapper/ListItemWrapper.tsx +0 -49
  786. package/src/components/List/components/ListItemWrapper/README.md +0 -1
  787. package/src/components/List/components/ListItemWrapper/index.ts +0 -2
  788. package/src/components/List/index.ts +0 -7
  789. package/src/components/List/types.ts +0 -13
  790. package/src/components/List/utils.tsx +0 -13
  791. package/src/components/Menu/Menu.style.ts +0 -83
  792. package/src/components/Menu/Menu.tsx +0 -91
  793. package/src/components/Menu/MenuItemDivider.tsx +0 -31
  794. package/src/components/Menu/index.ts +0 -4
  795. package/src/components/Modal/Modal.style.ts +0 -45
  796. package/src/components/Modal/Modal.test.tsx +0 -93
  797. package/src/components/Modal/Modal.tsx +0 -87
  798. package/src/components/Modal/ModalContent/ModalContent.style.ts +0 -47
  799. package/src/components/Modal/ModalContent/ModalContent.tsx +0 -78
  800. package/src/components/Modal/ModalContent/index.ts +0 -1
  801. package/src/components/Modal/index.ts +0 -1
  802. package/src/components/MultiTextFieldBase/MultiTextFieldBase.style.ts +0 -111
  803. package/src/components/MultiTextFieldBase/MultiTextFieldBase.tsx +0 -181
  804. package/src/components/MultiTextFieldBase/hooks.tsx +0 -97
  805. package/src/components/MultiTextFieldBase/index.ts +0 -1
  806. package/src/components/Notification/Banner/Banner.tsx +0 -63
  807. package/src/components/Notification/Banner/index.tsx +0 -2
  808. package/src/components/Notification/InlineNotification/InlineNotification.tsx +0 -59
  809. package/src/components/Notification/InlineNotification/index.tsx +0 -2
  810. package/src/components/Notification/Notification.style.ts +0 -59
  811. package/src/components/Notification/Notification.test.tsx +0 -293
  812. package/src/components/Notification/Notification.tsx +0 -16
  813. package/src/components/Notification/NotificationVisual/NotificationVisual.style.tsx +0 -14
  814. package/src/components/Notification/NotificationVisual/NotificationVisual.tsx +0 -58
  815. package/src/components/Notification/NotificationVisual/index.tsx +0 -2
  816. package/src/components/Notification/NotificationsContainer/NotificationsContainer.style.tsx +0 -54
  817. package/src/components/Notification/NotificationsContainer/NotificationsContainer.tsx +0 -31
  818. package/src/components/Notification/NotificationsContainer/index.ts +0 -2
  819. package/src/components/Notification/Snackbar/Snackbar.style.ts +0 -55
  820. package/src/components/Notification/Snackbar/Snackbar.tsx +0 -94
  821. package/src/components/Notification/Snackbar/index.tsx +0 -2
  822. package/src/components/Notification/subcomponents/CompactNotification/CompactNotification.style.ts +0 -48
  823. package/src/components/Notification/subcomponents/CompactNotification/CompactNotification.tsx +0 -118
  824. package/src/components/Notification/subcomponents/CompactNotification/index.tsx +0 -2
  825. package/src/components/Notification/subcomponents/NotificationActionsArea/NotificationActionsArea.tsx +0 -43
  826. package/src/components/Notification/subcomponents/NotificationActionsArea/index.ts +0 -1
  827. package/src/components/NumberField/NumberField.style.ts +0 -10
  828. package/src/components/NumberField/NumberField.test.tsx +0 -83
  829. package/src/components/NumberField/NumberField.tsx +0 -135
  830. package/src/components/NumberField/components/Stepper/Stepper.style.ts +0 -37
  831. package/src/components/NumberField/components/Stepper/Stepper.tsx +0 -46
  832. package/src/components/NumberField/components/Stepper/index.ts +0 -1
  833. package/src/components/NumberField/index.ts +0 -2
  834. package/src/components/Pagination/Pagination.tsx +0 -86
  835. package/src/components/Pagination/index.ts +0 -2
  836. package/src/components/ProgressIndicator/ProgressIndicator.tsx +0 -25
  837. package/src/components/ProgressIndicator/ProgressIndicator.types.ts +0 -12
  838. package/src/components/ProgressIndicator/__snapshots__/ProgressIndicator.stories.storyshot +0 -883
  839. package/src/components/ProgressIndicator/components/ProgressBar/ProgressBar.style.ts +0 -85
  840. package/src/components/ProgressIndicator/components/ProgressBar/ProgressBar.tsx +0 -37
  841. package/src/components/ProgressIndicator/components/ProgressBar/index.ts +0 -1
  842. package/src/components/ProgressIndicator/components/ProgressCircle/ProgressCircle.style.ts +0 -24
  843. package/src/components/ProgressIndicator/components/ProgressCircle/ProgressCircle.tsx +0 -60
  844. package/src/components/ProgressIndicator/components/ProgressCircle/index.ts +0 -1
  845. package/src/components/ProgressIndicator/index.ts +0 -1
  846. package/src/components/Search/Search.style.ts +0 -104
  847. package/src/components/Search/Search.test.tsx +0 -87
  848. package/src/components/Search/Search.tsx +0 -86
  849. package/src/components/Search/Search.types.ts +0 -33
  850. package/src/components/Search/StatefulSearch.tsx +0 -66
  851. package/src/components/Search/constants.ts +0 -10
  852. package/src/components/Search/index.ts +0 -3
  853. package/src/components/Select/Select.style.ts +0 -21
  854. package/src/components/Select/Select.test.tsx +0 -413
  855. package/src/components/Select/Select.tsx +0 -406
  856. package/src/components/Select/StatefulSelect.tsx +0 -36
  857. package/src/components/Select/components/SelectMenu/SelectMenu.style.tsx +0 -66
  858. package/src/components/Select/components/SelectMenu/SelectMenu.tsx +0 -119
  859. package/src/components/Select/components/SelectMenu/index.ts +0 -2
  860. package/src/components/Select/constants.ts +0 -58
  861. package/src/components/Select/index.ts +0 -4
  862. package/src/components/Select/types.ts +0 -74
  863. package/src/components/Slider/Slider.style.tsx +0 -23
  864. package/src/components/Slider/Slider.tsx +0 -208
  865. package/src/components/Slider/components/SliderMark/SliderMark.style.tsx +0 -74
  866. package/src/components/Slider/components/SliderMark/SliderMark.tsx +0 -54
  867. package/src/components/Slider/components/SliderMark/index.ts +0 -2
  868. package/src/components/Slider/components/SliderThumb/SliderThumb.style.tsx +0 -44
  869. package/src/components/Slider/components/SliderThumb/SliderThumb.tsx +0 -36
  870. package/src/components/Slider/components/SliderThumb/index.ts +0 -2
  871. package/src/components/Slider/components/SliderTrack/SliderTrack.style.tsx +0 -14
  872. package/src/components/Slider/components/SliderTrack/SliderTrack.tsx +0 -58
  873. package/src/components/Slider/components/SliderTrack/index.ts +0 -2
  874. package/src/components/Slider/index.ts +0 -2
  875. package/src/components/TabStepper/TabStepper.tsx +0 -44
  876. package/src/components/TabStepper/components/TabStep/TabStep.style.ts +0 -29
  877. package/src/components/TabStepper/components/TabStep/TabStep.tsx +0 -75
  878. package/src/components/TabStepper/components/TabStep/index.ts +0 -1
  879. package/src/components/TabStepper/components/TabStepList/TabStepList.style.ts +0 -126
  880. package/src/components/TabStepper/components/TabStepList/TabStepList.tsx +0 -19
  881. package/src/components/TabStepper/components/TabStepList/index.ts +0 -1
  882. package/src/components/TabStepper/components/index.ts +0 -2
  883. package/src/components/TabStepper/index.ts +0 -3
  884. package/src/components/TabStepper/types.ts +0 -48
  885. package/src/components/TabStepper/utils/TabStepperStoryComponents.tsx +0 -8
  886. package/src/components/Table/Table.style.ts +0 -30
  887. package/src/components/Table/Table.tsx +0 -167
  888. package/src/components/Table/components/OptimizedTableRow.tsx +0 -121
  889. package/src/components/Table/components/TBody/TBody.style.ts +0 -22
  890. package/src/components/Table/components/TBody/TBody.tsx +0 -25
  891. package/src/components/Table/components/TBody/index.ts +0 -1
  892. package/src/components/Table/components/TD/TD.style.ts +0 -64
  893. package/src/components/Table/components/TD/TD.tsx +0 -64
  894. package/src/components/Table/components/TD/index.ts +0 -1
  895. package/src/components/Table/components/TH/TH.style.ts +0 -88
  896. package/src/components/Table/components/TH/TH.tsx +0 -120
  897. package/src/components/Table/components/TH/components/SortingButton/SortingButton.style.ts +0 -14
  898. package/src/components/Table/components/TH/components/SortingButton/SortingButton.tsx +0 -48
  899. package/src/components/Table/components/TH/components/SortingButton/index.ts +0 -1
  900. package/src/components/Table/components/TH/components/THOptions/THOptions.style.ts +0 -8
  901. package/src/components/Table/components/TH/components/THOptions/THOptions.tsx +0 -106
  902. package/src/components/Table/components/TH/components/THOptions/components/SortingOption.tsx +0 -40
  903. package/src/components/Table/components/TH/components/THOptions/components/index.ts +0 -1
  904. package/src/components/Table/components/TH/components/THOptions/index.ts +0 -1
  905. package/src/components/Table/components/TH/components/index.ts +0 -1
  906. package/src/components/Table/components/TH/index.ts +0 -1
  907. package/src/components/Table/components/THead/THead.style.ts +0 -34
  908. package/src/components/Table/components/THead/THead.tsx +0 -18
  909. package/src/components/Table/components/THead/index.ts +0 -1
  910. package/src/components/Table/components/TPagination/TPagination.style.ts +0 -59
  911. package/src/components/Table/components/TPagination/TPagination.tsx +0 -106
  912. package/src/components/Table/components/TPagination/index.ts +0 -1
  913. package/src/components/Table/components/TR/TR.style.ts +0 -33
  914. package/src/components/Table/components/TR/TR.tsx +0 -39
  915. package/src/components/Table/components/TR/index.ts +0 -1
  916. package/src/components/Table/components/TTitle/TTitle.style.ts +0 -33
  917. package/src/components/Table/components/TTitle/TTitle.tsx +0 -86
  918. package/src/components/Table/components/TTitle/components/ColumnChooser/ColumnChooser.style.ts +0 -8
  919. package/src/components/Table/components/TTitle/components/ColumnChooser/ColumnChooser.tsx +0 -152
  920. package/src/components/Table/components/TTitle/components/ColumnChooser/index.ts +0 -1
  921. package/src/components/Table/components/TTitle/components/utils.ts +0 -9
  922. package/src/components/Table/components/TTitle/index.ts +0 -1
  923. package/src/components/Table/components/index.ts +0 -7
  924. package/src/components/Table/constants.tsx +0 -8
  925. package/src/components/Table/hooks/index.ts +0 -1
  926. package/src/components/Table/hooks/useTable.tsx +0 -243
  927. package/src/components/Table/index.ts +0 -7
  928. package/src/components/Table/types.ts +0 -152
  929. package/src/components/Table/utils/TableStoryComponents.tsx +0 -21
  930. package/src/components/TableV4/TableRowContext.ts +0 -37
  931. package/src/components/TableV4/TableV4.style.ts +0 -40
  932. package/src/components/TableV4/TableV4.test.tsx +0 -232
  933. package/src/components/TableV4/TableV4.tsx +0 -294
  934. package/src/components/TableV4/components/ExtendedColumnItem/ExtendedColumnItem.style.tsx +0 -15
  935. package/src/components/TableV4/components/ExtendedColumnItem/ExtendedColumnItem.tsx +0 -99
  936. package/src/components/TableV4/components/ExtendedColumnItem/index.ts +0 -2
  937. package/src/components/TableV4/components/RenderRowOrNestedRow/RenderRowOrNestedRow.style.ts +0 -41
  938. package/src/components/TableV4/components/RenderRowOrNestedRow/RenderRowOrNestedRow.tsx +0 -178
  939. package/src/components/TableV4/components/RenderRowOrNestedRow/components/ContentCell/ContentCell.style.ts +0 -11
  940. package/src/components/TableV4/components/RenderRowOrNestedRow/components/ContentCell/ContentCell.tsx +0 -71
  941. package/src/components/TableV4/components/RenderRowOrNestedRow/components/ContentCell/index.ts +0 -1
  942. package/src/components/TableV4/components/RenderRowOrNestedRow/components/ExpandedButtonCell/ExpandedButtonCell.tsx +0 -67
  943. package/src/components/TableV4/components/RenderRowOrNestedRow/components/ExpandedButtonCell/index.ts +0 -1
  944. package/src/components/TableV4/components/RenderRowOrNestedRow/index.ts +0 -1
  945. package/src/components/TableV4/components/TableCell/TableCell.style.tsx +0 -23
  946. package/src/components/TableV4/components/TableCell/TableCell.tsx +0 -89
  947. package/src/components/TableV4/components/TableCell/index.ts +0 -2
  948. package/src/components/TableV4/components/TableCell/utils.tsx +0 -27
  949. package/src/components/TableV4/components/TableRow/TableRow.tsx +0 -47
  950. package/src/components/TableV4/components/TableRow/index.ts +0 -2
  951. package/src/components/TableV4/components/TableRowWrapper/TableRowWrapper.tsx +0 -75
  952. package/src/components/TableV4/components/TableRowWrapper/index.ts +0 -2
  953. package/src/components/TableV4/index.ts +0 -3
  954. package/src/components/TableV4/types.ts +0 -94
  955. package/src/components/TableV4/utils/TableStoryComponents.tsx +0 -12
  956. package/src/components/TableV4/utils/index.ts +0 -1
  957. package/src/components/TableV4/utils/utils.ts +0 -10
  958. package/src/components/Tabs/Tabs.style.ts +0 -19
  959. package/src/components/Tabs/Tabs.test.tsx +0 -81
  960. package/src/components/Tabs/Tabs.tsx +0 -54
  961. package/src/components/Tabs/components/Tab/Tab.style.ts +0 -12
  962. package/src/components/Tabs/components/Tab/Tab.tsx +0 -19
  963. package/src/components/Tabs/components/Tab/index.ts +0 -1
  964. package/src/components/Tabs/components/TabList/TabList.style.ts +0 -85
  965. package/src/components/Tabs/components/TabList/TabList.tsx +0 -19
  966. package/src/components/Tabs/components/TabList/index.ts +0 -1
  967. package/src/components/Tabs/components/TabPanel/TabPanel.tsx +0 -18
  968. package/src/components/Tabs/components/TabPanel/index.ts +0 -1
  969. package/src/components/Tabs/components/TabsContainer/TabsContainer.style.ts +0 -12
  970. package/src/components/Tabs/components/TabsContainer/TabsContainer.tsx +0 -25
  971. package/src/components/Tabs/components/TabsContainer/index.ts +0 -1
  972. package/src/components/Tabs/components/index.ts +0 -4
  973. package/src/components/Tabs/index.ts +0 -3
  974. package/src/components/Tabs/types.ts +0 -74
  975. package/src/components/Tabs/utils/TabsStoryComponents.tsx +0 -8
  976. package/src/components/Tag/Tag.style.ts +0 -106
  977. package/src/components/Tag/Tag.test.tsx +0 -94
  978. package/src/components/Tag/Tag.tsx +0 -53
  979. package/src/components/Tag/Tag.types.ts +0 -30
  980. package/src/components/Tag/constants.ts +0 -36
  981. package/src/components/Tag/hooks/useGetTagUtils.tsx +0 -79
  982. package/src/components/Tag/index.ts +0 -2
  983. package/src/components/TextArea/TextArea.style.ts +0 -54
  984. package/src/components/TextArea/TextArea.tsx +0 -115
  985. package/src/components/TextArea/index.ts +0 -2
  986. package/src/components/TextField/TextField.style.ts +0 -34
  987. package/src/components/TextField/TextField.test.tsx +0 -145
  988. package/src/components/TextField/TextField.tsx +0 -152
  989. package/src/components/TextField/components/commons.tsx +0 -13
  990. package/src/components/TextField/index.ts +0 -2
  991. package/src/components/TextInputBase/TextInputBase.style.ts +0 -219
  992. package/src/components/TextInputBase/TextInputBase.tsx +0 -96
  993. package/src/components/TextInputBase/index.ts +0 -2
  994. package/src/components/ThemeProvider/Test.tsx +0 -14
  995. package/src/components/ThemeProvider/ThemeProvider.style.ts +0 -31
  996. package/src/components/ThemeProvider/ThemeProvider.test.tsx +0 -46
  997. package/src/components/ThemeProvider/ThemeProvider.tsx +0 -48
  998. package/src/components/ThemeProvider/index.ts +0 -2
  999. package/src/components/Toast/Toast.style.ts +0 -127
  1000. package/src/components/Toast/Toast.test.tsx +0 -114
  1001. package/src/components/Toast/Toast.tsx +0 -168
  1002. package/src/components/Toast/Toast.types.ts +0 -51
  1003. package/src/components/Toast/index.ts +0 -2
  1004. package/src/components/ToastV4/ToastV4.style.ts +0 -96
  1005. package/src/components/ToastV4/ToastV4.test.tsx +0 -68
  1006. package/src/components/ToastV4/ToastV4.tsx +0 -112
  1007. package/src/components/ToastV4/index.tsx +0 -2
  1008. package/src/components/Tooltip/Tooltip.style.ts +0 -43
  1009. package/src/components/Tooltip/Tooltip.tsx +0 -49
  1010. package/src/components/Tooltip/Tooltip.types.ts +0 -36
  1011. package/src/components/Tooltip/index.ts +0 -3
  1012. package/src/components/TopAppBar/TopAppBar.style.ts +0 -47
  1013. package/src/components/TopAppBar/TopAppBar.test.tsx +0 -59
  1014. package/src/components/TopAppBar/TopAppBar.tsx +0 -48
  1015. package/src/components/TopAppBar/TopAppBar.types.ts +0 -25
  1016. package/src/components/TopAppBar/__snapshots__/TopAppBar.test.tsx.snap +0 -769
  1017. package/src/components/TopAppBar/components/Logo/Logo.style.ts +0 -27
  1018. package/src/components/TopAppBar/components/Logo/Logo.wrapper.tsx +0 -20
  1019. package/src/components/TopAppBar/components/Logo/index.ts +0 -2
  1020. package/src/components/TopAppBar/components/Search/Search.style.ts +0 -71
  1021. package/src/components/TopAppBar/components/Search/Search.tsx +0 -49
  1022. package/src/components/TopAppBar/components/Search/index.ts +0 -2
  1023. package/src/components/TopAppBar/components/SidebarMenuIcon/SidebarMenuIcon.style.ts +0 -13
  1024. package/src/components/TopAppBar/components/SidebarMenuIcon/SidebarMenuIcon.tsx +0 -21
  1025. package/src/components/TopAppBar/components/SidebarMenuIcon/index.ts +0 -2
  1026. package/src/components/TopAppBar/components/UserMenu/UserMenu.style.ts +0 -12
  1027. package/src/components/TopAppBar/components/UserMenu/UserMenu.tsx +0 -59
  1028. package/src/components/TopAppBar/components/UserMenu/index.ts +0 -2
  1029. package/src/components/TopAppBar/components/index.ts +0 -6
  1030. package/src/components/TopAppBar/index.ts +0 -3
  1031. package/src/components/TruncatedContent/TruncatedContent.style.tsx +0 -7
  1032. package/src/components/TruncatedContent/TruncatedContent.test.tsx +0 -58
  1033. package/src/components/TruncatedContent/TruncatedContent.tsx +0 -75
  1034. package/src/components/TruncatedContent/index.ts +0 -2
  1035. package/src/components/Typography/Typography.config.styles.ts +0 -87
  1036. package/src/components/Typography/Typography.style.ts +0 -75
  1037. package/src/components/Typography/Typography.tsx +0 -108
  1038. package/src/components/Typography/index.ts +0 -4
  1039. package/src/components/Typography/utils.ts +0 -13
  1040. package/src/components/utils/ClickAwayListener/ClickAwayListener.tsx +0 -45
  1041. package/src/components/utils/ClickAwayListener/index.tsx +0 -1
  1042. package/src/components/utils/DropdownOptions/index.tsx +0 -31
  1043. package/src/components/utils/Overlay/Overlay.tsx +0 -196
  1044. package/src/components/utils/Overlay/index.ts +0 -1
  1045. package/src/components/utils/PositionInScreen/PositionInScreen.tsx +0 -58
  1046. package/src/components/utils/PositionInScreen/hooks.ts +0 -158
  1047. package/src/components/utils/PositionInScreen/index.tsx +0 -1
  1048. package/src/components/utils/Slots.tsx +0 -109
  1049. package/src/components/utils/handleSearch.ts +0 -36
  1050. package/src/components/utils/tests/Slots.test.tsx +0 -94
  1051. package/src/components/utils/useDOMRef.ts +0 -49
  1052. package/src/data-table/DataTable.test.tsx +0 -425
  1053. package/src/data-table/DataTable.tsx +0 -52
  1054. package/src/data-table/DataTableBody.css.ts +0 -127
  1055. package/src/data-table/DataTableBody.tsx +0 -330
  1056. package/src/data-table/DataTableBulkActions.tsx +0 -17
  1057. package/src/data-table/DataTableCheckbox.tsx +0 -68
  1058. package/src/data-table/DataTableContext.tsx +0 -27
  1059. package/src/data-table/DataTableCounter.tsx +0 -46
  1060. package/src/data-table/DataTableEditColumns.tsx +0 -90
  1061. package/src/data-table/DataTableHeader.tsx +0 -32
  1062. package/src/data-table/DataTableHeaderCell.css.ts +0 -90
  1063. package/src/data-table/DataTableHeaderCell.tsx +0 -220
  1064. package/src/data-table/DataTableRow.tsx +0 -226
  1065. package/src/data-table/DataTableRowContext.tsx +0 -67
  1066. package/src/data-table/index.ts +0 -7
  1067. package/src/hooks/useBreakpoints.test.ts +0 -40
  1068. package/src/hooks/useBreakpoints.tsx +0 -47
  1069. package/src/hooks/useCheck.ts +0 -25
  1070. package/src/hooks/useCombinedRefs.ts +0 -23
  1071. package/src/hooks/useElementSize.ts +0 -47
  1072. package/src/hooks/useEscape.ts +0 -18
  1073. package/src/hooks/useEventListener.ts +0 -43
  1074. package/src/hooks/useFieldUtils.tsx +0 -55
  1075. package/src/hooks/useIsoMorphicLayoutEffect.ts +0 -5
  1076. package/src/hooks/useKeyboardEvents.ts +0 -78
  1077. package/src/hooks/useLoading.ts +0 -29
  1078. package/src/hooks/useOverlayStack.ts +0 -92
  1079. package/src/hooks/usePagination.ts +0 -62
  1080. package/src/hooks/useTheme.ts +0 -7
  1081. package/src/hooks/useThemeSwitch.tsx +0 -32
  1082. package/src/hooks/useToggle.ts +0 -16
  1083. package/src/hooks/useTypeColorToColorMatch.tsx +0 -101
  1084. package/src/icon/Icon.tsx +0 -312
  1085. package/src/icon/index.ts +0 -1
  1086. package/src/icons/AccountIcon.tsx +0 -14
  1087. package/src/icons/AlbumIcon.tsx +0 -16
  1088. package/src/icons/AnalyticsIcon.tsx +0 -14
  1089. package/src/icons/AppsIcon.tsx +0 -14
  1090. package/src/icons/ArrowDownIcon.tsx +0 -14
  1091. package/src/icons/ArrowLeftIcon.tsx +0 -14
  1092. package/src/icons/ArrowRightIcon.tsx +0 -14
  1093. package/src/icons/ArrowUpIcon.tsx +0 -14
  1094. package/src/icons/ArtistIcon.tsx +0 -14
  1095. package/src/icons/AssetIcon.tsx +0 -14
  1096. package/src/icons/AudioIcon.tsx +0 -14
  1097. package/src/icons/AudioOffIcon.tsx +0 -26
  1098. package/src/icons/BookmarkIcon.tsx +0 -16
  1099. package/src/icons/BookmarkOffIcon.tsx +0 -16
  1100. package/src/icons/BroadcastIcon.tsx +0 -14
  1101. package/src/icons/CalendarIcon.tsx +0 -14
  1102. package/src/icons/CatalogIcon.tsx +0 -14
  1103. package/src/icons/ChannelIcon.tsx +0 -24
  1104. package/src/icons/ChatIcon.tsx +0 -14
  1105. package/src/icons/CheckIcon.tsx +0 -14
  1106. package/src/icons/ChevronDownIcon.tsx +0 -14
  1107. package/src/icons/ChevronLeftIcon.tsx +0 -14
  1108. package/src/icons/ChevronRightIcon.tsx +0 -14
  1109. package/src/icons/ChevronUpIcon.tsx +0 -14
  1110. package/src/icons/CinemaIcon.tsx +0 -14
  1111. package/src/icons/ClaimIcon.tsx +0 -14
  1112. package/src/icons/CloseIcon.tsx +0 -14
  1113. package/src/icons/ColumnChooserIcon.tsx +0 -14
  1114. package/src/icons/CompositionIcon.tsx +0 -14
  1115. package/src/icons/ConcertIcon.tsx +0 -14
  1116. package/src/icons/ConflictIcon.tsx +0 -14
  1117. package/src/icons/ConvertIcon.tsx +0 -14
  1118. package/src/icons/CopyIcon.tsx +0 -14
  1119. package/src/icons/CueSheetIcon.tsx +0 -14
  1120. package/src/icons/DashboardIcon.tsx +0 -14
  1121. package/src/icons/DatasetIcon.tsx +0 -14
  1122. package/src/icons/DeleteIcon.tsx +0 -14
  1123. package/src/icons/DeliveryIcon.tsx +0 -14
  1124. package/src/icons/DetailsIcon.tsx +0 -14
  1125. package/src/icons/DigitalIcon.tsx +0 -16
  1126. package/src/icons/DistributionIcon.tsx +0 -14
  1127. package/src/icons/DownloadIcon.tsx +0 -14
  1128. package/src/icons/EarningsIcon.tsx +0 -14
  1129. package/src/icons/EditIcon.tsx +0 -14
  1130. package/src/icons/EntitiesIcon.tsx +0 -14
  1131. package/src/icons/ErrorIcon.tsx +0 -14
  1132. package/src/icons/ExternalLinkIcon.tsx +0 -14
  1133. package/src/icons/EyeIcon.tsx +0 -14
  1134. package/src/icons/EyeOffIcon.tsx +0 -14
  1135. package/src/icons/FavoriteIcon.tsx +0 -14
  1136. package/src/icons/FavoriteOffIcon.tsx +0 -14
  1137. package/src/icons/FileIcon.tsx +0 -14
  1138. package/src/icons/FilterIcon.tsx +0 -14
  1139. package/src/icons/FlagIcon.tsx +0 -14
  1140. package/src/icons/FlagOffIcon.tsx +0 -14
  1141. package/src/icons/ForwardIcon.tsx +0 -14
  1142. package/src/icons/FreezeIcon.tsx +0 -16
  1143. package/src/icons/HelpIcon.tsx +0 -14
  1144. package/src/icons/ImageIcon.tsx +0 -14
  1145. package/src/icons/ImageOffIcon.tsx +0 -20
  1146. package/src/icons/IncomeIcon.tsx +0 -14
  1147. package/src/icons/InformationalIcon.tsx +0 -16
  1148. package/src/icons/InsightIcon.tsx +0 -14
  1149. package/src/icons/InvoiceIcon.tsx +0 -16
  1150. package/src/icons/IssueIcon.tsx +0 -14
  1151. package/src/icons/KeywordIcon.tsx +0 -16
  1152. package/src/icons/LanguageIcon.tsx +0 -14
  1153. package/src/icons/LegalIcon.tsx +0 -14
  1154. package/src/icons/LicenseIcon.tsx +0 -16
  1155. package/src/icons/LinkIcon.tsx +0 -14
  1156. package/src/icons/LocationIcon.tsx +0 -14
  1157. package/src/icons/LockIcon.tsx +0 -14
  1158. package/src/icons/LoginIcon.tsx +0 -14
  1159. package/src/icons/LogoutIcon.tsx +0 -14
  1160. package/src/icons/MailIcon.tsx +0 -14
  1161. package/src/icons/ManualIcon.tsx +0 -14
  1162. package/src/icons/MediaFileIcon.tsx +0 -14
  1163. package/src/icons/MenuIcon.tsx +0 -14
  1164. package/src/icons/MinusIcon.tsx +0 -14
  1165. package/src/icons/MoreOptionsIcon.tsx +0 -22
  1166. package/src/icons/NextIcon.tsx +0 -14
  1167. package/src/icons/NotificationIcon.tsx +0 -14
  1168. package/src/icons/OrganizationIcon.tsx +0 -14
  1169. package/src/icons/PageFirstIcon.tsx +0 -14
  1170. package/src/icons/PageLastIcon.tsx +0 -14
  1171. package/src/icons/PairIcon.tsx +0 -14
  1172. package/src/icons/PauseIcon.tsx +0 -14
  1173. package/src/icons/PendingIcon.tsx +0 -14
  1174. package/src/icons/PlayIcon.tsx +0 -14
  1175. package/src/icons/PlaycountIcon.tsx +0 -14
  1176. package/src/icons/PlusIcon.tsx +0 -14
  1177. package/src/icons/PolicyIcon.tsx +0 -14
  1178. package/src/icons/PreviousIcon.tsx +0 -14
  1179. package/src/icons/PublicPerformanceIcon.tsx +0 -14
  1180. package/src/icons/PublisherIcon.tsx +0 -20
  1181. package/src/icons/RadioIcon.tsx +0 -14
  1182. package/src/icons/RecordLabelIcon.tsx +0 -16
  1183. package/src/icons/RecordingIcon.tsx +0 -14
  1184. package/src/icons/RedoIcon.tsx +0 -14
  1185. package/src/icons/RefreshIcon.tsx +0 -14
  1186. package/src/icons/ReportIcon.tsx +0 -14
  1187. package/src/icons/RestoreIcon.tsx +0 -18
  1188. package/src/icons/ResumeIcon.tsx +0 -18
  1189. package/src/icons/ReviewIcon.tsx +0 -14
  1190. package/src/icons/RewindIcon.tsx +0 -14
  1191. package/src/icons/RoleIcon.tsx +0 -14
  1192. package/src/icons/SearchFilledIcon.tsx +0 -16
  1193. package/src/icons/SearchIcon.tsx +0 -14
  1194. package/src/icons/SettingsIcon.tsx +0 -14
  1195. package/src/icons/ShareIcon.tsx +0 -14
  1196. package/src/icons/SortAscendingIcon.tsx +0 -24
  1197. package/src/icons/SortDescendingIcon.tsx +0 -24
  1198. package/src/icons/SortIcon.tsx +0 -22
  1199. package/src/icons/StatusIndicatorIcon.tsx +0 -11
  1200. package/src/icons/StopIcon.tsx +0 -14
  1201. package/src/icons/SuccessIcon.tsx +0 -14
  1202. package/src/icons/TagIcon.tsx +0 -14
  1203. package/src/icons/TelevisionIcon.tsx +0 -14
  1204. package/src/icons/ThumbsDownIcon.tsx +0 -14
  1205. package/src/icons/ThumbsUpIcon.tsx +0 -14
  1206. package/src/icons/TrendingDownIcon.tsx +0 -14
  1207. package/src/icons/TrendingUpIcon.tsx +0 -14
  1208. package/src/icons/TriangleDownIcon.tsx +0 -16
  1209. package/src/icons/TriangleLeftIcon.tsx +0 -16
  1210. package/src/icons/TriangleRightIcon.tsx +0 -16
  1211. package/src/icons/TriangleUpIcon.tsx +0 -16
  1212. package/src/icons/UndoIcon.tsx +0 -14
  1213. package/src/icons/UnfreezeIcon.tsx +0 -20
  1214. package/src/icons/UnlinkIcon.tsx +0 -14
  1215. package/src/icons/UnlockIcon.tsx +0 -14
  1216. package/src/icons/UnpairIcon.tsx +0 -14
  1217. package/src/icons/UnverifiedIcon.tsx +0 -20
  1218. package/src/icons/UpdateIcon.tsx +0 -18
  1219. package/src/icons/UploadIcon.tsx +0 -14
  1220. package/src/icons/UsageIcon.tsx +0 -16
  1221. package/src/icons/UserIcon.tsx +0 -14
  1222. package/src/icons/UsersIcon.tsx +0 -26
  1223. package/src/icons/VerifiedIcon.tsx +0 -14
  1224. package/src/icons/VideoIcon.tsx +0 -14
  1225. package/src/icons/VideoOffIcon.tsx +0 -18
  1226. package/src/icons/WarningIcon.tsx +0 -16
  1227. package/src/icons/WorkIcon.tsx +0 -16
  1228. package/src/icons/WriterIcon.tsx +0 -22
  1229. package/src/icons/YouTubeIcon.tsx +0 -16
  1230. package/src/icons/index.ts +0 -144
  1231. package/src/index.ts +0 -290
  1232. package/src/layers/index.ts +0 -1
  1233. package/src/layers/layers.css.ts +0 -10
  1234. package/src/skeleton/Skeleton.css.ts +0 -19
  1235. package/src/skeleton/Skeleton.tsx +0 -34
  1236. package/src/skeleton/index.ts +0 -1
  1237. package/src/sprinkles/createSprinklesMerge.ts +0 -61
  1238. package/src/sprinkles/index.ts +0 -1
  1239. package/src/sprinkles/properties.css.ts +0 -504
  1240. package/src/sprinkles/sprinkles.ts +0 -18
  1241. package/src/sprinkles/sprinklesMerge.ts +0 -4
  1242. package/src/test/index.ts +0 -1
  1243. package/src/test/setup.ts +0 -61
  1244. package/src/test/utils.tsx +0 -25
  1245. package/src/theme/emotion.d.ts +0 -7
  1246. package/src/theme/functions.ts +0 -77
  1247. package/src/theme/index.ts +0 -44
  1248. package/src/theme/overrides.ts +0 -5
  1249. package/src/theme/types.ts +0 -93
  1250. package/src/types.d.ts +0 -21
  1251. package/src/utils/ExtendProps.ts +0 -5
  1252. package/src/utils/cn.ts +0 -5
  1253. package/src/utils/common.ts +0 -36
  1254. package/src/utils/date.ts +0 -19
  1255. package/src/utils/errors.ts +0 -13
  1256. package/src/utils/helpers.ts +0 -51
  1257. package/src/utils/storyshots.ts +0 -37
  1258. package/src/utils/tests/helpers.test.ts +0 -21
  1259. package/src/utils/types.ts +0 -12
  1260. package/src/vanilla/Box/Box.tsx +0 -37
  1261. package/src/vanilla/Box/extractBoxProps.ts +0 -19
  1262. package/src/vanilla/Box/index.ts +0 -2
  1263. package/src/vanilla/Dialog/Dialog.tsx +0 -130
  1264. package/src/vanilla/Dialog/index.ts +0 -1
  1265. package/src/vanilla/Dropdown/Dropdown.css.ts +0 -11
  1266. package/src/vanilla/Dropdown/Dropdown.tsx +0 -78
  1267. package/src/vanilla/Dropdown/index.ts +0 -1
  1268. package/src/vanilla/Menu/Menu.css.ts +0 -42
  1269. package/src/vanilla/Menu/Menu.tsx +0 -136
  1270. package/src/vanilla/Menu/index.ts +0 -1
  1271. package/src/vanilla/Popover/Popover.css.ts +0 -24
  1272. package/src/vanilla/Popover/Popover.tsx +0 -89
  1273. package/src/vanilla/Popover/index.ts +0 -1
  1274. package/src/vanilla/Table/Table.css.ts +0 -61
  1275. package/src/vanilla/Table/Table.tsx +0 -21
  1276. package/src/vanilla/Table/TableBody.css.ts +0 -5
  1277. package/src/vanilla/Table/TableBody.tsx +0 -17
  1278. package/src/vanilla/Table/TableCell.css.ts +0 -81
  1279. package/src/vanilla/Table/TableCell.tsx +0 -53
  1280. package/src/vanilla/Table/TableFooter.css.ts +0 -20
  1281. package/src/vanilla/Table/TableFooter.tsx +0 -17
  1282. package/src/vanilla/Table/TableHeader.css.ts +0 -21
  1283. package/src/vanilla/Table/TableHeader.tsx +0 -22
  1284. package/src/vanilla/Table/TableHeaderCell.css.ts +0 -85
  1285. package/src/vanilla/Table/TableHeaderCell.tsx +0 -53
  1286. package/src/vanilla/Table/TableRow.css.ts +0 -34
  1287. package/src/vanilla/Table/TableRow.tsx +0 -17
  1288. package/src/vanilla/Table/index.ts +0 -7
  1289. package/src/vanilla/Text/Text.css.ts +0 -38
  1290. package/src/vanilla/Text/Text.tsx +0 -33
  1291. package/src/vanilla/Text/index.ts +0 -1
  1292. package/src/vanilla/ThemeProvider/ThemeProvider.tsx +0 -91
  1293. package/src/vanilla/ThemeProvider/index.ts +0 -1
  1294. package/src/vanilla/Tooltip/Tooltip.css.ts +0 -93
  1295. package/src/vanilla/Tooltip/Tooltip.tsx +0 -147
  1296. package/src/vanilla/Tooltip/index.ts +0 -1
  1297. package/src/vanilla/index.ts +0 -13
  1298. package/src/vanilla-extract/global.css.ts +0 -184
  1299. package/src/vanilla-extract/index.ts +0 -12
  1300. package/src/vanilla-extract/style.ts +0 -13
  1301. package/src/version/index.ts +0 -1
  1302. package/src/version/version.ts +0 -1
  1303. package/src/vite-env.d.ts +0 -5
  1304. package/tsconfig.codemods.json +0 -4
  1305. package/tsconfig.json +0 -37
  1306. package/tsconfig.node.json +0 -15
  1307. package/tsconfig.vanilla.json +0 -9
  1308. package/vite.codemods.config.ts +0 -40
  1309. package/vite.config.ts +0 -101
@@ -150,7 +150,10 @@ export { WarningIcon } from './src/icons/WarningIcon.js';
150
150
  export { WorkIcon } from './src/icons/WorkIcon.js';
151
151
  export { WriterIcon } from './src/icons/WriterIcon.js';
152
152
  export { YouTubeIcon } from './src/icons/YouTubeIcon.js';
153
+ import * as layers_css from './src/layers/layers-css.js';
154
+ export { layers_css as layers };
153
155
  export { Skeleton } from './src/skeleton/Skeleton.js';
156
+ export { mapResponsiveValue, normalizeResponsiveValue, sprinkles } from './src/sprinkles/sprinkles.js';
154
157
  export { cn } from './src/utils/cn.js';
155
158
  export { Box } from './Box/Box.js';
156
159
  export { extractBoxProps } from './Box/extractBoxProps.js';
@@ -1,3 +1,3 @@
1
- var version = "5.43.7";
1
+ var version = "5.43.8";
2
2
 
3
3
  export { version };
@@ -1,10 +1,9 @@
1
- import './../../assets/src/layers/layers.css.ts.vanilla-CBkaYCBT.css';
2
- import './../../assets/src/vanilla-extract/global.css.ts.vanilla-BHTgxO8_.css';
3
- import './../../assets/src/sprinkles/properties.css.ts.vanilla-CRlOneec.css';
4
- import './../../assets/src/actions/ActionsRoot.css.ts.vanilla-B5JvX1-v.css';
5
- import './../../assets/src/actions/ActionsContent.css.ts.vanilla-BVxWvGVF.css';
1
+ import './../../assets/src/layers/layers.css.ts.vanilla-DOIEZBDT.css';
2
+ import './../../assets/src/sprinkles/properties.css.ts.vanilla-DunamBlA.css';
3
+ import './../../assets/src/actions/ActionsRoot.css.ts.vanilla-Sfxv3QTp.css';
4
+ import './../../assets/src/actions/ActionsContent.css.ts.vanilla-CY_zQdRt.css';
6
5
  import { createRuntimeFn } from '@vanilla-extract/recipes/createRuntimeFn';
7
6
 
8
- var content = createRuntimeFn({defaultClassName:'_146hxcf6 _146hxcf2i _146hxcf1m gfg8xi0',variantClassNames:{visible:{always:'gfg8xi1','if-needed':'gfg8xi2'}},defaultVariants:{},compoundVariants:[]});
7
+ var content = createRuntimeFn({defaultClassName:'nwum6v ndnm0h _99k1ze m71etg',variantClassNames:{visible:{always:'_6jgzwx','if-needed':'_1vm03f0'}},defaultVariants:{},compoundVariants:[]});
9
8
 
10
9
  export { content };
@@ -1,7 +1,7 @@
1
- import './../../assets/src/layers/layers.css.ts.vanilla-CBkaYCBT.css';
2
- import './../../assets/src/actions/ActionsRoot.css.ts.vanilla-B5JvX1-v.css';
1
+ import './../../assets/src/layers/layers.css.ts.vanilla-DOIEZBDT.css';
2
+ import './../../assets/src/actions/ActionsRoot.css.ts.vanilla-Sfxv3QTp.css';
3
3
  import { createRuntimeFn } from '@vanilla-extract/recipes/createRuntimeFn';
4
4
 
5
- var root = createRuntimeFn({defaultClassName:'_17y19ri1 _17y19ri0',variantClassNames:{},defaultVariants:{},compoundVariants:[]});
5
+ var root = createRuntimeFn({defaultClassName:'s23xt2 c9g0xv',variantClassNames:{},defaultVariants:{},compoundVariants:[]});
6
6
 
7
7
  export { root };
@@ -1,9 +1,7 @@
1
- import { jsx, jsxs } from '@emotion/react/jsx-runtime';
2
- import { Box } from '../../../Box/Box.js';
3
- import '../../sprinkles/sprinkles.js';
1
+ import { jsxs, jsx } from '@emotion/react/jsx-runtime';
4
2
 
5
- function UserAvatar(props) {
6
- return /* @__PURE__ */ jsx(Box, { asChild: true, ...props, children: /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 14 17", xmlns: "http://www.w3.org/2000/svg", children: [
3
+ function UserAvatar() {
4
+ return /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 14 17", xmlns: "http://www.w3.org/2000/svg", children: [
7
5
  /* @__PURE__ */ jsx(
8
6
  "path",
9
7
  {
@@ -18,7 +16,7 @@ function UserAvatar(props) {
18
16
  fill: "currentColor"
19
17
  }
20
18
  )
21
- ] }) });
19
+ ] });
22
20
  }
23
21
 
24
22
  export { UserAvatar };
@@ -1,9 +1,8 @@
1
1
  import { jsxs, jsx } from '@emotion/react/jsx-runtime';
2
2
  import React__default from 'react';
3
3
  import Avatar from '../Avatar/Avatar.js';
4
- import { BUTTON_ICON_COLOR } from '../ButtonBase/constants.js';
5
- import { Icon } from '../../icon/Icon.js';
6
- import { Text } from '../../../Text/Text.js';
4
+ import { BUTTON_COLOR } from '../ButtonBase/constants.js';
5
+ import Icon from '../Icon/Icon.js';
7
6
  import ButtonBase from '../ButtonBase/ButtonBase.js';
8
7
 
9
8
  const Button = React__default.forwardRef((props, ref) => {
@@ -18,13 +17,11 @@ const Button = React__default.forwardRef((props, ref) => {
18
17
  isLoading
19
18
  } = props;
20
19
  const hasAvatar = ["primary", "secondary", "tertiary"].includes(type) && avatar;
21
- const isCompact = size === "compact";
22
- const iconSize = isCompact ? "sm" : "md";
23
20
  return /* @__PURE__ */ jsxs(ButtonBase, { ...props, ref, isLoading, onClick, children: [
24
21
  hasAvatar && /* @__PURE__ */ jsx(Avatar, { src: avatar?.src, children: avatar?.label }),
25
- iconLeftName && !hasAvatar && /* @__PURE__ */ jsx(Icon, { name: iconLeftName, color: BUTTON_ICON_COLOR[type], size: iconSize }),
26
- /* @__PURE__ */ jsx(Text, { children }),
27
- iconRightName && /* @__PURE__ */ jsx(Icon, { name: iconRightName, color: BUTTON_ICON_COLOR[type], size: iconSize })
22
+ iconLeftName && !hasAvatar && /* @__PURE__ */ jsx(Icon, { name: iconLeftName, color: BUTTON_COLOR[type].text }),
23
+ /* @__PURE__ */ jsx("span", { children }),
24
+ iconRightName && /* @__PURE__ */ jsx(Icon, { name: iconRightName, color: BUTTON_COLOR[type].text })
28
25
  ] });
29
26
  });
30
27
  Button.displayName = "Button";
@@ -26,15 +26,9 @@ const BUTTON_COLOR = {
26
26
  text: vars.color.text.default.error
27
27
  }
28
28
  };
29
- const BUTTON_ICON_COLOR = {
30
- primary: "inverted.primary",
31
- secondary: "active",
32
- tertiary: "active",
33
- danger: "error"
34
- };
35
29
  const typographySizes = {
36
30
  normal: "normal.label02",
37
31
  compact: "normal.label03"
38
32
  };
39
33
 
40
- export { BUTTON_COLOR, BUTTON_ICON_COLOR, typographySizes };
34
+ export { BUTTON_COLOR, typographySizes };
@@ -1,8 +1,9 @@
1
1
  import { jsxs, jsx } from '@emotion/react/jsx-runtime';
2
2
  import React__default from 'react';
3
3
  import { Checkbox } from 'react-aria-components';
4
+ import { vars } from '@orfium/tokens';
4
5
  import Box from '../../Box/Box.js';
5
- import { Icon } from '../../../icon/Icon.js';
6
+ import Icon from '../../Icon/Icon.js';
6
7
  import ControlHelpText from '../ControlLabel/ControlHelpText.js';
7
8
  import ControlLabelText from '../ControlLabel/ControlLabelText.js';
8
9
  import { checkboxWrapperStyles, checkboxStyles } from './CheckBox.style.js';
@@ -42,15 +43,15 @@ const CheckBox = React__default.forwardRef((props, ref) => {
42
43
  flexDirection: placement === "left" ? "row-reverse" : "row",
43
44
  justifyContent: placement === "left" ? "space-between" : "unset",
44
45
  children: [
45
- /* @__PURE__ */ jsx(Box, { "data-role": "checkbox-icon", children: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(
46
+ /* @__PURE__ */ jsx(Box, { "data-role": "checkbox-icon", children: /* @__PURE__ */ jsx(
46
47
  Icon,
47
48
  {
48
49
  name: isIndeterminate ? "minus" : "check",
49
- size: "md",
50
- color: "inverted.primary",
51
- "data-testid": `${dataTestPrefixId}${value ? `_${value}` : ""}_${isIndeterminate ? "minus" : isSelected ? "checkmark" : "unselected"}`
50
+ size: vars.sizing["5"],
51
+ color: vars.color.text.inverted.primary,
52
+ dataTestId: `${dataTestPrefixId}${value ? `_${value}` : ""}_${isIndeterminate ? "minus" : isSelected ? "checkmark" : "unselected"}`
52
53
  }
53
- ) }) }),
54
+ ) }),
54
55
  children && /* @__PURE__ */ jsx(
55
56
  ControlLabelText,
56
57
  {
@@ -0,0 +1,44 @@
1
+ import { jsx } from '@emotion/react/jsx-runtime';
2
+ import { vars } from '@orfium/tokens';
3
+ import { useSlotProps } from '../utils/Slots.js';
4
+ import useCombinedRefs from '../../hooks/useCombinedRefs.js';
5
+ import * as React from 'react';
6
+ import { useRef } from 'react';
7
+ import iconSelector from './assets/iconSelector.js';
8
+ import { iconContainerStyles, iconStyles } from './Icon.style.js';
9
+
10
+ const Icon = React.forwardRef((props, ref) => {
11
+ props = useSlotProps(props, "icon");
12
+ const {
13
+ name,
14
+ color = vars.color.text.default.secondary,
15
+ size = 20,
16
+ onClick,
17
+ dataTestId,
18
+ hasHover,
19
+ ...rest
20
+ } = props;
21
+ const combinedRef = useCombinedRefs(ref, useRef(null));
22
+ const isInteractive = Boolean(onClick);
23
+ const Icon2 = iconSelector[name];
24
+ return /* @__PURE__ */ jsx(
25
+ "div",
26
+ {
27
+ onClick,
28
+ css: iconContainerStyles({ size, hasHover: hasHover ?? isInteractive, isInteractive }),
29
+ "data-testid": dataTestId,
30
+ ref: combinedRef,
31
+ tabIndex: isInteractive ? 0 : void 0,
32
+ onKeyDown: (e) => {
33
+ if (e.key === "Enter" && onClick) {
34
+ combinedRef.current.click();
35
+ }
36
+ },
37
+ ...rest,
38
+ children: /* @__PURE__ */ jsx(Icon2, { css: iconStyles({ color, size }) })
39
+ }
40
+ );
41
+ });
42
+ Icon.displayName = "Icon";
43
+
44
+ export { Icon as default };
@@ -0,0 +1,42 @@
1
+ import { css } from '@emotion/react';
2
+ import { rem } from '@orfium/tokens';
3
+
4
+ const iconContainerStyles = ({
5
+ hasHover,
6
+ isInteractive,
7
+ size = 20
8
+ }) => (theme) => {
9
+ const iconSize = typeof size === "number" || size.includes("px") ? rem(size) : size;
10
+ return css`
11
+ width: ${iconSize};
12
+ height: ${iconSize};
13
+ display: flex;
14
+
15
+ ${isInteractive && `
16
+ cursor: pointer;
17
+ `}
18
+
19
+ ${hasHover && `
20
+ &:hover, &:focus-visible {
21
+ transition: all 0.2s;
22
+ border-radius: 100%;
23
+ background: ${theme.tokens.state.get("backgroundColor.hover")};
24
+ box-shadow: 0px 0px 0px 8px ${theme.tokens.state.get("backgroundColor.hover")};
25
+ }
26
+ `}
27
+ `;
28
+ };
29
+ const iconStyles = ({ color, size = 20 }) => () => {
30
+ const iconSize = typeof size === "number" || size.includes("px") ? rem(size) : size;
31
+ return css`
32
+ width: ${iconSize};
33
+ height: ${iconSize};
34
+
35
+ path,
36
+ rect {
37
+ fill: ${color} !important;
38
+ }
39
+ `;
40
+ };
41
+
42
+ export { iconContainerStyles, iconStyles };
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
5
+ var SvgForward = function SvgForward(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ viewBox: "0 0 20 20"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ fill: "#6265AD",
12
+ d: "M4.38 13.833q-.441.302-.91.057-.47-.246-.47-.814V6.929q0-.569.47-.818.469-.25.91.061l4.425 3.066q.386.266.386.764 0 .5-.386.764zm7.809 0q-.442.302-.911.057-.47-.246-.47-.814V6.929q0-.569.47-.818.47-.25.91.061l4.425 3.066q.387.266.387.764 0 .5-.387.764z"
13
+ })));
14
+ };
15
+
16
+ export { SvgForward as default };
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
5
+ var SvgNext = function SvgNext(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ viewBox: "0 0 20 20"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ fill: "#6265AD",
12
+ d: "M15.056 15a.96.96 0 0 1-.667-.252.8.8 0 0 1-.276-.607V5.86q0-.354.277-.607A.96.96 0 0 1 15.057 5q.39 0 .666.252.277.252.277.607v8.282a.8.8 0 0 1-.277.607.96.96 0 0 1-.667.252m-9.405-1.002a1.11 1.11 0 0 1-1.09.06Q4 13.802 4 13.208V6.792q0-.597.561-.855.562-.26 1.09.065l5.294 3.2q.463.277.463.798 0 .52-.463.797z"
13
+ })));
14
+ };
15
+
16
+ export { SvgNext as default };
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
5
+ var SvgPause = function SvgPause(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ viewBox: "0 0 20 20"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ fill: "#6265AD",
12
+ d: "M12.86 15.5q-.675 0-1.13-.469a1.6 1.6 0 0 1-.457-1.162V6.131q0-.693.456-1.162a1.51 1.51 0 0 1 1.13-.469h.554q.675 0 1.13.469.457.47.457 1.162v7.738q0 .693-.456 1.162a1.51 1.51 0 0 1-1.13.469zm-6.273 0q-.675 0-1.13-.469A1.6 1.6 0 0 1 5 13.869V6.131q0-.693.456-1.162a1.51 1.51 0 0 1 1.13-.469h.554q.675 0 1.13.469.457.47.457 1.162v7.738q0 .693-.456 1.162a1.51 1.51 0 0 1-1.13.469z"
13
+ })));
14
+ };
15
+
16
+ export { SvgPause as default };
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
5
+ var SvgPlay = function SvgPlay(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ viewBox: "0 0 20 20"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ fill: "#6265AD",
12
+ d: "M7.156 15.307q-.537.358-1.097.052t-.559-.955V5.596q0-.649.56-.955.558-.306 1.096.052l6.843 4.39q.501.315.501.917t-.5.917z"
13
+ })));
14
+ };
15
+
16
+ export { SvgPlay as default };
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
5
+ var SvgPrevious = function SvgPrevious(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ viewBox: "0 0 20 20"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ fill: "#6265AD",
12
+ d: "M4.944 15q.39 0 .667-.252a.8.8 0 0 0 .276-.607V5.86a.8.8 0 0 0-.277-.607A.96.96 0 0 0 4.943 5a.96.96 0 0 0-.666.252A.8.8 0 0 0 4 5.86v8.282q0 .354.277.607a.96.96 0 0 0 .667.252m9.405-1.002a1.11 1.11 0 0 0 1.09.06q.561-.256.561-.85V6.792q0-.597-.561-.855a1.09 1.09 0 0 0-1.09.065l-5.294 3.2q-.463.277-.463.798 0 .52.463.797z"
13
+ })));
14
+ };
15
+
16
+ export { SvgPrevious as default };
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
5
+ var SvgResume = function SvgResume(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ viewBox: "0 0 20 20"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ fill: "#6265AD",
12
+ d: "M9.01 15.338q.51.334 1-.02l6.03-4.322q.46-.354.46-.996t-.46-.996l-6.03-4.322q-.49-.354-1-.02T8.5 5.669v8.662q0 .674.51 1.007M3.867 15.031q.367.47.91.469h.446q.543 0 .91-.469.367-.47.367-1.162V6.131q0-.693-.367-1.162-.367-.47-.91-.469h-.446q-.543 0-.91.469-.367.47-.367 1.162v7.738q0 .693.367 1.162"
13
+ })));
14
+ };
15
+
16
+ export { SvgResume as default };
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
5
+ var SvgRewind = function SvgRewind(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ viewBox: "0 0 20 20"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ fill: "#6265AD",
12
+ d: "m15.62 13.833-4.425-3.067q-.386-.264-.386-.764 0-.498.386-.764l4.425-3.066q.442-.31.91-.06.47.248.47.817v6.147q0 .568-.47.814-.469.246-.91-.058m-7.808 0-4.425-3.067Q3 10.502 3 10.002q0-.498.387-.764l4.425-3.066q.442-.31.91-.06.47.248.47.817v6.147q0 .568-.47.814-.468.246-.91-.058"
13
+ })));
14
+ };
15
+
16
+ export { SvgRewind as default };
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
5
+ var SvgStop = function SvgStop(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ viewBox: "0 0 20 20"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ fill: "#6265AD",
12
+ d: "M7.031 15q-.864 0-1.448-.584Q5 13.833 5 12.97V7.03q0-.864.583-1.448Q6.167 5 7.031 5h5.938q.864 0 1.447.583.584.584.584 1.448v5.938q0 .864-.584 1.447-.583.584-1.447.584z"
13
+ })));
14
+ };
15
+
16
+ export { SvgStop as default };
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
5
+ var SvgCheck = function SvgCheck(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ viewBox: "0 0 20 20"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ fill: "#6265AD",
12
+ d: "M7.986 15a1 1 0 0 1-.367-.072.95.95 0 0 1-.334-.239l-3.532-3.78a.92.92 0 0 1-.253-.664.96.96 0 0 1 .266-.663.81.81 0 0 1 .614-.278q.354 0 .614.278l2.992 3.201L15 5.277A.82.82 0 0 1 15.62 5a.82.82 0 0 1 .62.277q.26.277.26.664a.94.94 0 0 1-.26.664l-7.554 8.084a.95.95 0 0 1-.333.239 1 1 0 0 1-.367.072"
13
+ })));
14
+ };
15
+
16
+ export { SvgCheck as default };
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
5
+ var SvgClose = function SvgClose(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ viewBox: "0 0 20 20"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ fill: "#6265AD",
12
+ d: "M10.044 11.128 6.408 14.75a.78.78 0 0 1-1.142 0 .77.77 0 0 1-.251-.559q0-.309.251-.56l3.655-3.64-3.673-3.639A.77.77 0 0 1 5 5.804q-.003-.303.248-.553A.78.78 0 0 1 5.81 5q.31 0 .561.25l3.636 3.604 3.6-3.585a.78.78 0 0 1 1.142 0q.25.25.251.578 0 .327-.252.577l-3.617 3.622 3.636 3.621q.225.225.23.547a.74.74 0 0 1-.23.554.75.75 0 0 1-.543.232.75.75 0 0 1-.544-.232z"
13
+ })));
14
+ };
15
+
16
+ export { SvgClose as default };
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
5
+ var SvgColumnChooser = function SvgColumnChooser(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ viewBox: "0 0 20 20"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ fill: "#6265AD",
12
+ d: "M2.5 15.25V4.75q0-.906.472-1.578T4.107 2.5h11.786q.663 0 1.135.672T17.5 4.75v10.5q0 .906-.472 1.578t-1.135.672H4.107q-.663 0-1.135-.672T2.5 15.25m6.071.688h2.858V4.063H8.57zm4.465 0h2.857V4.063h-2.857z"
13
+ })));
14
+ };
15
+
16
+ export { SvgColumnChooser as default };
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
5
+ var SvgConvert = function SvgConvert(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ viewBox: "0 0 20 20"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ fill: "#6265AD",
12
+ d: "m4.812 13.438 1.637 1.624q.26.258.264.593a.77.77 0 0 1-.264.586.79.79 0 0 1-.577.259.8.8 0 0 1-.583-.259l-2.988-2.944a1.2 1.2 0 0 1-.22-.316.84.84 0 0 1-.081-.367.84.84 0 0 1 .08-.366 1.1 1.1 0 0 1 .221-.308L5.26 9.025a.83.83 0 0 1 1.199-.008.79.79 0 0 1 .254.579.81.81 0 0 1-.264.58l-1.637 1.623h5.212a.8.8 0 0 1 .583.24.78.78 0 0 1 .243.575q0 .336-.243.58a.8.8 0 0 1-.583.244zM15.188 8.2H9.976a.8.8 0 0 1-.583-.24.78.78 0 0 1-.243-.575q0-.336.243-.58a.8.8 0 0 1 .583-.244h5.212L13.55 4.938a.83.83 0 0 1-.264-.593.77.77 0 0 1 .264-.586.79.79 0 0 1 .577-.259.8.8 0 0 1 .583.259l2.988 2.944q.14.147.22.316a.84.84 0 0 1 .081.367.84.84 0 0 1-.08.366 1.1 1.1 0 0 1-.221.308l-2.959 2.915a.77.77 0 0 1-.576.248.86.86 0 0 1-.601-.26.79.79 0 0 1-.255-.58.81.81 0 0 1 .265-.58z"
13
+ })));
14
+ };
15
+
16
+ export { SvgConvert as default };
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
5
+ var SvgCopy = function SvgCopy(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ viewBox: "0 0 20 20"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ fill: "#6265AD",
12
+ d: "M11.49 11.99a.75.75 0 0 0 .55-.23.75.75 0 0 0 .23-.552V9.774h1.435a.75.75 0 0 0 .551-.23.75.75 0 0 0 .23-.551.75.75 0 0 0-.23-.552.75.75 0 0 0-.551-.23H12.27V6.778a.75.75 0 0 0-.23-.551.75.75 0 0 0-.551-.23.75.75 0 0 0-.552.23.75.75 0 0 0-.229.551v1.435H9.274a.75.75 0 0 0-.552.23.75.75 0 0 0-.23.551q0 .323.23.552t.552.229h1.434v1.434q0 .322.23.552.228.23.551.23M7.3 14.985q-.746 0-1.265-.52a1.72 1.72 0 0 1-.52-1.266V4.785q0-.745.52-1.265T7.3 3h8.415q.745 0 1.265.52t.52 1.265V13.2q0 .746-.52 1.265-.52.52-1.265.52zM4.285 18q-.745 0-1.265-.52a1.72 1.72 0 0 1-.52-1.265V7.019q0-.323.23-.552a.75.75 0 0 1 .551-.229q.323 0 .552.23.229.229.229.55v9.197q0 .084.07.153.069.07.153.07h9.196q.322 0 .552.23.229.228.229.551a.75.75 0 0 1-.23.552.75.75 0 0 1-.55.229z"
13
+ })));
14
+ };
15
+
16
+ export { SvgCopy as default };
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
5
+ var SvgDelete = function SvgDelete(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ viewBox: "0 0 20 20"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ fill: "#6265AD",
12
+ d: "M6.079 17.5q-.84 0-1.42-.573a1.9 1.9 0 0 1-.58-1.405V5.937h-.204a.85.85 0 0 1-.618-.254A.83.83 0 0 1 3 5.07q0-.357.257-.61a.85.85 0 0 1 .618-.255h3.622c0-.242.099-1.282.296-1.451q.295-.255.684-.255h3.046q.389 0 .684.255c.197.17.296 1.21.296 1.451h3.622q.36 0 .618.255.257.254.257.611a.83.83 0 0 1-.257.611.85.85 0 0 1-.618.254h-.203v9.585a1.9 1.9 0 0 1-.58 1.405q-.58.573-1.421.573zm1.36-5.06q0 .359.257.612.257.255.618.254.361 0 .618-.254a.83.83 0 0 0 .257-.611V8.432a.83.83 0 0 0-.257-.61.85.85 0 0 0-.618-.255.85.85 0 0 0-.618.254.83.83 0 0 0-.257.611zm3.372 0q0 .359.257.612.257.255.618.254.361 0 .618-.254a.83.83 0 0 0 .257-.611V8.432a.83.83 0 0 0-.257-.61.85.85 0 0 0-.619-.255.85.85 0 0 0-.617.254.83.83 0 0 0-.257.611z"
13
+ })));
14
+ };
15
+
16
+ export { SvgDelete as default };
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
5
+ var SvgDownload = function SvgDownload(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ viewBox: "0 0 20 20"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ fill: "#6265AD",
12
+ d: "M6.37 7.631a.82.82 0 0 1 .639-.265q.376.01.654.286l1.486 1.473v-5.76q0-.358.255-.611a.84.84 0 0 1 .616-.254q.36 0 .616.254a.83.83 0 0 1 .256.61v5.761l1.534-1.521a.8.8 0 0 1 .608-.25q.346.011.616.277.27.276.27.629a.86.86 0 0 1-.278.628l-2.947 2.922a.94.94 0 0 1-.695.287q-.187 0-.364-.067a.94.94 0 0 1-.331-.22L6.35 8.88a.83.83 0 0 1-.26-.616.88.88 0 0 1 .28-.633M2.5 10.872q0-.357.256-.61a.84.84 0 0 1 .616-.254q.36 0 .615.253.256.255.256.611v4.652q0 .093.078.17a.24.24 0 0 0 .172.077h11.014a.24.24 0 0 0 .172-.077.24.24 0 0 0 .078-.17v-4.652q0-.357.255-.61a.84.84 0 0 1 .616-.254q.36 0 .616.253.256.255.256.611v4.652a1.9 1.9 0 0 1-.578 1.403 1.93 1.93 0 0 1-1.415.573H4.493q-.837 0-1.415-.573a1.9 1.9 0 0 1-.578-1.403z"
13
+ })));
14
+ };
15
+
16
+ export { SvgDownload as default };
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
5
+ var SvgEdit = function SvgEdit(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ viewBox: "0 0 20 20"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ fill: "#6265AD",
12
+ d: "M5.265 17q-.543 0-.904-.367a1.26 1.26 0 0 1-.361-.92q0-.546.364-.917.363-.37.9-.37h9.471q.543 0 .904.367.36.368.361.92 0 .547-.364.917-.363.37-.9.37zm.914-4.07a.704.704 0 0 1-.708-.72V10.83q0-.153.045-.273a.7.7 0 0 1 .158-.234L10.77 5.15l2.347 2.387-5.085 5.186a.7.7 0 0 1-.23.16.7.7 0 0 1-.27.047zm7.767-6.211L11.6 4.313l1.13-1.121A.57.57 0 0 1 13.153 3a.54.54 0 0 1 .42.192l1.494 1.52a.606.606 0 0 1 .01.856z"
13
+ })));
14
+ };
15
+
16
+ export { SvgEdit as default };
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
5
+ var SvgLogin = function SvgLogin(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ viewBox: "0 0 20 20"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ fill: "#6265AD",
12
+ d: "M7.631 13.63a.82.82 0 0 1-.265-.639.94.94 0 0 1 .286-.654l1.473-1.486h-5.76a.83.83 0 0 1-.611-.255.84.84 0 0 1-.254-.616q0-.36.254-.616a.83.83 0 0 1 .61-.256h5.761L7.604 7.574a.8.8 0 0 1-.25-.608.9.9 0 0 1 .277-.616.87.87 0 0 1 .629-.27q.353 0 .628.278l2.922 2.947a.94.94 0 0 1 .287.695q0 .187-.067.364a.94.94 0 0 1-.22.331L8.88 13.65a.83.83 0 0 1-.616.26.88.88 0 0 1-.633-.28m3.241 3.87a.83.83 0 0 1-.61-.256.84.84 0 0 1-.254-.616q0-.36.253-.616a.83.83 0 0 1 .611-.255h4.652a.24.24 0 0 0 .17-.078.24.24 0 0 0 .077-.172V4.493a.24.24 0 0 0-.077-.172.24.24 0 0 0-.17-.078h-4.652a.83.83 0 0 1-.61-.255.84.84 0 0 1-.254-.616q0-.36.253-.616a.83.83 0 0 1 .611-.256h4.652a1.9 1.9 0 0 1 1.403.578q.573.578.573 1.415v11.014q0 .838-.573 1.415a1.9 1.9 0 0 1-1.403.578z"
13
+ })));
14
+ };
15
+
16
+ export { SvgLogin as default };
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
5
+ var SvgLogout = function SvgLogout(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ viewBox: "0 0 20 20"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ fill: "#6265AD",
12
+ d: "M12.912 13.63a.8.8 0 0 1-.273-.639.92.92 0 0 1 .293-.654l1.514-1.486h-5.92a.86.86 0 0 1-.627-.255.83.83 0 0 1-.26-.616q0-.36.26-.616a.86.86 0 0 1 .627-.256h5.92l-1.563-1.534a.8.8 0 0 1-.257-.608.88.88 0 0 1 .286-.616.897.897 0 0 1 1.292.008l3.002 2.947A.94.94 0 0 1 17.5 10q0 .187-.068.364a.94.94 0 0 1-.226.331l-3.01 2.955a.87.87 0 0 1-.63.256.9.9 0 0 1-.655-.276M4.53 17.5a1.98 1.98 0 0 1-1.442-.578 1.9 1.9 0 0 1-.589-1.415V4.493q0-.837.589-1.415A1.98 1.98 0 0 1 4.53 2.5h4.78q.367 0 .628.256.26.256.26.616t-.26.616a.86.86 0 0 1-.628.255h-4.78a.25.25 0 0 0-.175.078.24.24 0 0 0-.08.172v11.014q0 .094.08.172a.25.25 0 0 0 .175.078h4.78q.367 0 .628.255.26.256.26.616t-.26.616a.86.86 0 0 1-.628.256z"
13
+ })));
14
+ };
15
+
16
+ export { SvgLogout as default };
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
5
+ var SvgMediaFile = function SvgMediaFile(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ viewBox: "0 0 20 20"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ fill: "#6265AD",
12
+ d: "m9.026 12.901 3.6-2.321a.66.66 0 0 0 .32-.581.65.65 0 0 0-.32-.579L9.026 7.1a.64.64 0 0 0-.7 0 .66.66 0 0 0-.346.6v4.603q0 .39.346.598a.64.64 0 0 0 .7.001m.98 5.099a7.8 7.8 0 0 1-3.11-.625 8.1 8.1 0 0 1-2.552-1.718 8.1 8.1 0 0 1-1.719-2.55A7.8 7.8 0 0 1 2 9.991q0-1.662.626-3.115a8.1 8.1 0 0 1 1.722-2.55A7.92 7.92 0 0 1 10.008 2q1.662 0 3.115.615a7.95 7.95 0 0 1 4.262 4.265Q18 8.338 18 9.995a7.9 7.9 0 0 1-.614 3.109 7.9 7.9 0 0 1-1.712 2.547 8.1 8.1 0 0 1-2.553 1.723 7.8 7.8 0 0 1-3.114.626"
13
+ })));
14
+ };
15
+
16
+ export { SvgMediaFile as default };
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
5
+ var SvgMinus = function SvgMinus(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ viewBox: "0 0 20 20"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ fill: "#6265AD",
12
+ d: "M4.902 11a.83.83 0 0 1-.637-.294A1.02 1.02 0 0 1 4 10q0-.413.265-.707A.83.83 0 0 1 4.902 9h10.196q.372 0 .637.294Q16 9.587 16 10t-.265.707a.83.83 0 0 1-.637.293z"
13
+ })));
14
+ };
15
+
16
+ export { SvgMinus as default };
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
5
+ var SvgPlus = function SvgPlus(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "none",
9
+ viewBox: "0 0 20 20"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ fill: "#6265AD",
12
+ d: "M10 16a.87.87 0 0 1-.64-.266.87.87 0 0 1-.265-.64v-4.189h-4.19a.87.87 0 0 1-.64-.266A.87.87 0 0 1 4 10q0-.373.266-.639a.87.87 0 0 1 .64-.265h4.189v-4.19q0-.373.266-.64A.87.87 0 0 1 10 4q.373 0 .639.266.265.265.265.64v4.189h4.19q.373 0 .64.266.264.265.265.64 0 .373-.266.639a.87.87 0 0 1-.64.265h-4.189v4.19q0 .373-.266.64A.87.87 0 0 1 10 16"
13
+ })));
14
+ };
15
+
16
+ export { SvgPlus as default };