@autoguru/overdrive 4.1.6 → 4.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (654) hide show
  1. package/dist/components/Actions/Actions.js +20 -3
  2. package/dist/components/Actions/index.js +3 -1
  3. package/dist/components/Alert/Alert.css.js +28 -20
  4. package/dist/components/Alert/Alert.js +84 -26
  5. package/dist/components/Alert/index.js +3 -1
  6. package/dist/components/Anchor/Anchor.css.js +11 -3
  7. package/dist/components/Anchor/Anchor.js +53 -28
  8. package/dist/components/Anchor/index.js +3 -1
  9. package/dist/components/AutoSuggest/AutoSuggest.css.js +84 -76
  10. package/dist/components/AutoSuggest/AutoSuggest.js +629 -306
  11. package/dist/components/AutoSuggest/index.js +3 -1
  12. package/dist/components/AutoSuggest/useLayoutSuggestionVisible.js +29 -31
  13. package/dist/components/Badge/Badge.css.js +79 -71
  14. package/dist/components/Badge/Badge.js +43 -28
  15. package/dist/components/Badge/index.js +3 -1
  16. package/dist/components/Box/Box.js +122 -53
  17. package/dist/components/Box/argTypes.js +64 -94
  18. package/dist/components/Box/index.js +4 -2
  19. package/dist/components/Box/useBoxStyles.css.js +105 -85
  20. package/dist/components/Box/useBoxStyles.js +75 -47
  21. package/dist/components/BulletList/Bullet.css.js +49 -41
  22. package/dist/components/BulletList/Bullet.js +38 -24
  23. package/dist/components/BulletList/BulletList.css.js +13 -5
  24. package/dist/components/BulletList/BulletList.js +23 -10
  25. package/dist/components/BulletList/context.js +3 -1
  26. package/dist/components/BulletList/index.js +4 -2
  27. package/dist/components/BulletText/BulletText.css.js +21 -13
  28. package/dist/components/BulletText/BulletText.js +56 -15
  29. package/dist/components/BulletText/index.js +3 -1
  30. package/dist/components/Button/Button.css.js +151 -143
  31. package/dist/components/Button/Button.js +112 -72
  32. package/dist/components/Button/index.js +3 -1
  33. package/dist/components/CheckBox/CheckBox.css.js +28 -20
  34. package/dist/components/CheckBox/CheckBox.js +54 -16
  35. package/dist/components/CheckBox/index.js +3 -1
  36. package/dist/components/Columns/Column.css.js +36 -26
  37. package/dist/components/Columns/Column.js +51 -16
  38. package/dist/components/Columns/Columns.css.js +39 -31
  39. package/dist/components/Columns/Columns.js +54 -21
  40. package/dist/components/Columns/index.js +4 -2
  41. package/dist/components/DateInput/DateInput.js +33 -7
  42. package/dist/components/DateInput/index.js +3 -1
  43. package/dist/components/Flyout/Flyout.js +40 -4
  44. package/dist/components/Flyout/index.js +3 -1
  45. package/dist/components/Heading/Heading.js +38 -19
  46. package/dist/components/Heading/index.js +3 -1
  47. package/dist/components/Icon/Icon.css.js +13 -5
  48. package/dist/components/Icon/Icon.js +25 -8
  49. package/dist/components/Icon/index.js +3 -1
  50. package/dist/components/Image/Image.js +22 -4
  51. package/dist/components/Image/ImageServerProvider.js +54 -37
  52. package/dist/components/Image/ResponsiveImage.js +46 -19
  53. package/dist/components/Image/SimpleImage.js +29 -1
  54. package/dist/components/Image/index.js +4 -1
  55. package/dist/components/Image/types.js +3 -1
  56. package/dist/components/Inline/Inline.js +71 -30
  57. package/dist/components/Inline/index.js +3 -1
  58. package/dist/components/LinearProgressIndicator/LinearProgressIndicator.css.js +56 -48
  59. package/dist/components/LinearProgressIndicator/LinearProgressIndicator.js +31 -7
  60. package/dist/components/LinearProgressIndicator/index.js +3 -1
  61. package/dist/components/LoadingBox/LoadingBox.css.js +26 -18
  62. package/dist/components/LoadingBox/LoadingBox.js +38 -6
  63. package/dist/components/LoadingBox/index.js +3 -1
  64. package/dist/components/Meta/Meta.css.js +16 -8
  65. package/dist/components/Meta/Meta.js +29 -7
  66. package/dist/components/Meta/index.js +3 -1
  67. package/dist/components/MinimalModal/MinimalModal.css.js +15 -7
  68. package/dist/components/MinimalModal/MinimalModal.js +62 -27
  69. package/dist/components/MinimalModal/index.js +3 -1
  70. package/dist/components/Modal/Modal.css.js +38 -30
  71. package/dist/components/Modal/Modal.js +128 -72
  72. package/dist/components/Modal/index.js +3 -1
  73. package/dist/components/NumberInput/NumberInput.js +60 -29
  74. package/dist/components/NumberInput/index.js +3 -1
  75. package/dist/components/OrderedList/OrderedList.css.js +16 -8
  76. package/dist/components/OrderedList/OrderedList.js +60 -26
  77. package/dist/components/OrderedList/index.js +3 -1
  78. package/dist/components/OutsideClick/OutsideClick.js +40 -35
  79. package/dist/components/OutsideClick/index.js +3 -1
  80. package/dist/components/OverdriveProvider/OverdriveProvider.js +34 -18
  81. package/dist/components/OverdriveProvider/index.js +3 -1
  82. package/dist/components/Pagination/Bubble.js +41 -19
  83. package/dist/components/Pagination/Pagination.css.js +28 -20
  84. package/dist/components/Pagination/Pagination.js +164 -69
  85. package/dist/components/Pagination/index.js +3 -1
  86. package/dist/components/Portal/Portal.js +36 -22
  87. package/dist/components/Portal/index.js +3 -1
  88. package/dist/components/Positioner/Positioner.css.js +14 -6
  89. package/dist/components/Positioner/Positioner.js +107 -84
  90. package/dist/components/Positioner/alignment.js +13 -10
  91. package/dist/components/Positioner/index.js +4 -2
  92. package/dist/components/ProgressBar/ProgressBar.css.js +14 -6
  93. package/dist/components/ProgressBar/ProgressBar.js +29 -11
  94. package/dist/components/ProgressBar/index.js +3 -1
  95. package/dist/components/ProgressBarGroup/ProgressBarGroup.css.js +12 -4
  96. package/dist/components/ProgressBarGroup/ProgressBarGroup.js +42 -14
  97. package/dist/components/ProgressBarGroup/index.js +3 -1
  98. package/dist/components/ProgressSpinner/ProgressSpinner.css.js +81 -73
  99. package/dist/components/ProgressSpinner/ProgressSpinner.js +31 -13
  100. package/dist/components/ProgressSpinner/index.js +3 -1
  101. package/dist/components/Radio/Radio.css.js +31 -23
  102. package/dist/components/Radio/Radio.js +58 -19
  103. package/dist/components/Radio/RadioGroup.js +32 -7
  104. package/dist/components/Radio/index.js +4 -2
  105. package/dist/components/Section/Section.css.js +13 -5
  106. package/dist/components/Section/Section.js +18 -3
  107. package/dist/components/Section/index.js +3 -1
  108. package/dist/components/SelectInput/SelectInput.css.js +19 -11
  109. package/dist/components/SelectInput/SelectInput.js +59 -11
  110. package/dist/components/SelectInput/index.js +3 -1
  111. package/dist/components/SimplePagination/SimplePagination.js +55 -17
  112. package/dist/components/SimplePagination/index.js +3 -1
  113. package/dist/components/Stack/Divider.css.js +12 -4
  114. package/dist/components/Stack/Divider.js +13 -4
  115. package/dist/components/Stack/Stack.css.js +18 -10
  116. package/dist/components/Stack/Stack.js +43 -23
  117. package/dist/components/Stack/index.js +3 -1
  118. package/dist/components/StandardModal/StandardModal.css.js +69 -57
  119. package/dist/components/StandardModal/StandardModal.js +123 -50
  120. package/dist/components/StandardModal/index.js +3 -1
  121. package/dist/components/StarRating/StarRating.css.js +16 -8
  122. package/dist/components/StarRating/StarRating.js +89 -46
  123. package/dist/components/StarRating/index.js +3 -1
  124. package/dist/components/Stepper/Stepper.css.js +39 -29
  125. package/dist/components/Stepper/Stepper.js +176 -95
  126. package/dist/components/Stepper/index.js +3 -1
  127. package/dist/components/Switch/Switch.css.js +49 -41
  128. package/dist/components/Switch/Switch.js +62 -27
  129. package/dist/components/Switch/index.js +3 -1
  130. package/dist/components/Table/Table.css.js +14 -6
  131. package/dist/components/Table/Table.js +28 -5
  132. package/dist/components/Table/TableCell.css.js +28 -20
  133. package/dist/components/Table/TableCell.js +41 -11
  134. package/dist/components/Table/TableHeadCell.css.js +61 -50
  135. package/dist/components/Table/TableHeadCell.js +86 -40
  136. package/dist/components/Table/TableRow.js +17 -2
  137. package/dist/components/Table/TableRowGroup.js +15 -2
  138. package/dist/components/Table/context.js +21 -10
  139. package/dist/components/Table/index.js +7 -5
  140. package/dist/components/Tabs/Tab.css.js +43 -35
  141. package/dist/components/Tabs/Tab.js +80 -50
  142. package/dist/components/Tabs/TabList.css.js +30 -22
  143. package/dist/components/Tabs/TabList.js +119 -68
  144. package/dist/components/Tabs/TabPane.css.js +11 -3
  145. package/dist/components/Tabs/TabPane.js +32 -15
  146. package/dist/components/Tabs/TabPanes.css.js +16 -8
  147. package/dist/components/Tabs/TabPanes.js +22 -5
  148. package/dist/components/Tabs/Tabs.js +22 -10
  149. package/dist/components/Tabs/index.js +7 -5
  150. package/dist/components/Text/Text.js +36 -13
  151. package/dist/components/Text/index.js +4 -2
  152. package/dist/components/Text/stories.js +16 -1
  153. package/dist/components/Text/useTextStyles.css.js +42 -19
  154. package/dist/components/Text/useTextStyles.js +20 -5
  155. package/dist/components/TextAreaInput/TextAreaInput.js +34 -7
  156. package/dist/components/TextAreaInput/index.js +3 -1
  157. package/dist/components/TextContainer/TextContainer.js +42 -8
  158. package/dist/components/TextContainer/index.js +3 -1
  159. package/dist/components/TextInput/TextInput.js +35 -5
  160. package/dist/components/TextInput/index.js +3 -1
  161. package/dist/components/TextLink/TextLink.css.js +23 -15
  162. package/dist/components/TextLink/TextLink.js +63 -25
  163. package/dist/components/TextLink/index.js +3 -1
  164. package/dist/components/ThemeProvider/ThemeProvider.js +30 -12
  165. package/dist/components/ThemeProvider/index.js +3 -1
  166. package/dist/components/Toaster/Toast.css.js +17 -9
  167. package/dist/components/Toaster/Toast.js +217 -105
  168. package/dist/components/Toaster/index.js +3 -1
  169. package/dist/components/Tooltip/Tooltip.css.js +21 -9
  170. package/dist/components/Tooltip/Tooltip.js +61 -32
  171. package/dist/components/Tooltip/index.js +3 -1
  172. package/dist/components/VisuallyHidden/VisuallyHidden.css.js +13 -5
  173. package/dist/components/VisuallyHidden/VisuallyHidden.js +19 -3
  174. package/dist/components/VisuallyHidden/index.js +3 -1
  175. package/dist/components/index.js +54 -51
  176. package/dist/components/private/CheckableBase/CheckableBase.css.js +46 -38
  177. package/dist/components/private/CheckableBase/CheckableBase.js +89 -27
  178. package/dist/components/private/CheckableBase/index.js +3 -1
  179. package/dist/components/private/CheckableBase/useCheckableStyles.js +5 -3
  180. package/dist/components/private/InputBase/HintText.css.js +11 -3
  181. package/dist/components/private/InputBase/HintText.js +28 -14
  182. package/dist/components/private/InputBase/InputState.css.js +96 -80
  183. package/dist/components/private/InputBase/NotchedBase.css.js +78 -83
  184. package/dist/components/private/InputBase/NotchedBase.js +79 -34
  185. package/dist/components/private/InputBase/index.js +3 -1
  186. package/dist/components/private/InputBase/withEnhancedInput.css.js +56 -44
  187. package/dist/components/private/InputBase/withEnhancedInput.js +176 -89
  188. package/dist/hooks/useAttachedBoxes/index.js +3 -1
  189. package/dist/hooks/useAttachedBoxes/useAttachedBoxes.css.js +26 -18
  190. package/dist/hooks/useAttachedBoxes/useAttachedBoxes.js +71 -46
  191. package/dist/hooks/useMedia/index.js +3 -1
  192. package/dist/hooks/useMedia/useMedia.js +37 -31
  193. package/dist/hooks/useNegativeMargin/useNegativeMargin.js +4 -2
  194. package/dist/hooks/useNegativeMargin/useNegativeMarginLeft.css.js +13 -5
  195. package/dist/hooks/useNegativeMargin/useNegativeMarginLeft.js +5 -3
  196. package/dist/hooks/useNegativeMargin/useNegativeMarginTop.css.js +12 -4
  197. package/dist/hooks/useNegativeMargin/useNegativeMarginTop.js +5 -3
  198. package/dist/hooks/useResponsiveValue/index.js +3 -1
  199. package/dist/hooks/useResponsiveValue/useResponsiveValue.js +14 -14
  200. package/dist/index.js +7 -5
  201. package/dist/reset/globalFonts.css.js +20 -12
  202. package/dist/reset/globalReset.css.js +21 -13
  203. package/dist/reset/reset.css.js +105 -109
  204. package/dist/themes/base/index.js +9 -7
  205. package/dist/themes/base/tokens.js +256 -249
  206. package/dist/themes/base/vars.css.js +10 -2
  207. package/dist/themes/flat_red/index.js +10 -8
  208. package/dist/themes/flat_red/tokens.js +171 -167
  209. package/dist/themes/flat_red/vars.css.js +10 -2
  210. package/dist/themes/helpers.js +9 -10
  211. package/dist/themes/index.js +4 -2
  212. package/dist/themes/makeTheme.js +29 -18
  213. package/dist/themes/tokens.js +3 -1
  214. package/dist/utils/index.js +93 -77
  215. package/dist/utils/mapTokenToProperty.js +22 -10
  216. package/dist/utils/resolveResponsiveProps.js +29 -31
  217. package/dist/utils/responsiveProps.css.js +29 -17
  218. package/dist/utils/responsiveStyle.js +26 -16
  219. package/package.json +3 -3
  220. package/CHANGELOG.md +0 -1291
  221. package/dist/components/Actions/Actions.d.ts +0 -7
  222. package/dist/components/Actions/Actions.d.ts.map +0 -1
  223. package/dist/components/Actions/index.d.ts +0 -2
  224. package/dist/components/Actions/index.d.ts.map +0 -1
  225. package/dist/components/Alert/Alert.css.d.ts +0 -4
  226. package/dist/components/Alert/Alert.css.d.ts.map +0 -1
  227. package/dist/components/Alert/Alert.d.ts +0 -15
  228. package/dist/components/Alert/Alert.d.ts.map +0 -1
  229. package/dist/components/Alert/index.d.ts +0 -2
  230. package/dist/components/Alert/index.d.ts.map +0 -1
  231. package/dist/components/Anchor/Anchor.css.d.ts +0 -2
  232. package/dist/components/Anchor/Anchor.css.d.ts.map +0 -1
  233. package/dist/components/Anchor/Anchor.d.ts +0 -14
  234. package/dist/components/Anchor/Anchor.d.ts.map +0 -1
  235. package/dist/components/Anchor/index.d.ts +0 -2
  236. package/dist/components/Anchor/index.d.ts.map +0 -1
  237. package/dist/components/AutoSuggest/AutoSuggest.css.d.ts +0 -15
  238. package/dist/components/AutoSuggest/AutoSuggest.css.d.ts.map +0 -1
  239. package/dist/components/AutoSuggest/AutoSuggest.d.ts +0 -30
  240. package/dist/components/AutoSuggest/AutoSuggest.d.ts.map +0 -1
  241. package/dist/components/AutoSuggest/index.d.ts +0 -3
  242. package/dist/components/AutoSuggest/index.d.ts.map +0 -1
  243. package/dist/components/AutoSuggest/useLayoutSuggestionVisible.d.ts +0 -3
  244. package/dist/components/AutoSuggest/useLayoutSuggestionVisible.d.ts.map +0 -1
  245. package/dist/components/Badge/Badge.css.d.ts +0 -13
  246. package/dist/components/Badge/Badge.css.d.ts.map +0 -1
  247. package/dist/components/Badge/Badge.d.ts +0 -11
  248. package/dist/components/Badge/Badge.d.ts.map +0 -1
  249. package/dist/components/Badge/index.d.ts +0 -2
  250. package/dist/components/Badge/index.d.ts.map +0 -1
  251. package/dist/components/Box/Box.d.ts +0 -7
  252. package/dist/components/Box/Box.d.ts.map +0 -1
  253. package/dist/components/Box/argTypes.d.ts +0 -7
  254. package/dist/components/Box/argTypes.d.ts.map +0 -1
  255. package/dist/components/Box/index.d.ts +0 -4
  256. package/dist/components/Box/index.d.ts.map +0 -1
  257. package/dist/components/Box/useBoxStyles.css.d.ts +0 -46
  258. package/dist/components/Box/useBoxStyles.css.d.ts.map +0 -1
  259. package/dist/components/Box/useBoxStyles.d.ts +0 -66
  260. package/dist/components/Box/useBoxStyles.d.ts.map +0 -1
  261. package/dist/components/BulletList/Bullet.css.d.ts +0 -3
  262. package/dist/components/BulletList/Bullet.css.d.ts.map +0 -1
  263. package/dist/components/BulletList/Bullet.d.ts +0 -7
  264. package/dist/components/BulletList/Bullet.d.ts.map +0 -1
  265. package/dist/components/BulletList/BulletList.css.d.ts +0 -3
  266. package/dist/components/BulletList/BulletList.css.d.ts.map +0 -1
  267. package/dist/components/BulletList/BulletList.d.ts +0 -6
  268. package/dist/components/BulletList/BulletList.d.ts.map +0 -1
  269. package/dist/components/BulletList/context.d.ts +0 -5
  270. package/dist/components/BulletList/context.d.ts.map +0 -1
  271. package/dist/components/BulletList/index.d.ts +0 -3
  272. package/dist/components/BulletList/index.d.ts.map +0 -1
  273. package/dist/components/BulletText/BulletText.css.d.ts +0 -6
  274. package/dist/components/BulletText/BulletText.css.d.ts.map +0 -1
  275. package/dist/components/BulletText/BulletText.d.ts +0 -8
  276. package/dist/components/BulletText/BulletText.d.ts.map +0 -1
  277. package/dist/components/BulletText/index.d.ts +0 -2
  278. package/dist/components/BulletText/index.d.ts.map +0 -1
  279. package/dist/components/Button/Button.css.d.ts +0 -30
  280. package/dist/components/Button/Button.css.d.ts.map +0 -1
  281. package/dist/components/Button/Button.d.ts +0 -20
  282. package/dist/components/Button/Button.d.ts.map +0 -1
  283. package/dist/components/Button/index.d.ts +0 -2
  284. package/dist/components/Button/index.d.ts.map +0 -1
  285. package/dist/components/CheckBox/CheckBox.css.d.ts +0 -3
  286. package/dist/components/CheckBox/CheckBox.css.d.ts.map +0 -1
  287. package/dist/components/CheckBox/CheckBox.d.ts +0 -14
  288. package/dist/components/CheckBox/CheckBox.d.ts.map +0 -1
  289. package/dist/components/CheckBox/index.d.ts +0 -2
  290. package/dist/components/CheckBox/index.d.ts.map +0 -1
  291. package/dist/components/Columns/Column.css.d.ts +0 -3
  292. package/dist/components/Columns/Column.css.d.ts.map +0 -1
  293. package/dist/components/Columns/Column.d.ts +0 -15
  294. package/dist/components/Columns/Column.d.ts.map +0 -1
  295. package/dist/components/Columns/Columns.css.d.ts +0 -7
  296. package/dist/components/Columns/Columns.css.d.ts.map +0 -1
  297. package/dist/components/Columns/Columns.d.ts +0 -25
  298. package/dist/components/Columns/Columns.d.ts.map +0 -1
  299. package/dist/components/Columns/index.d.ts +0 -3
  300. package/dist/components/Columns/index.d.ts.map +0 -1
  301. package/dist/components/DateInput/DateInput.d.ts +0 -3
  302. package/dist/components/DateInput/DateInput.d.ts.map +0 -1
  303. package/dist/components/DateInput/index.d.ts +0 -2
  304. package/dist/components/DateInput/index.d.ts.map +0 -1
  305. package/dist/components/Flyout/Flyout.d.ts +0 -4
  306. package/dist/components/Flyout/Flyout.d.ts.map +0 -1
  307. package/dist/components/Flyout/index.d.ts +0 -2
  308. package/dist/components/Flyout/index.d.ts.map +0 -1
  309. package/dist/components/Heading/Heading.d.ts +0 -11
  310. package/dist/components/Heading/Heading.d.ts.map +0 -1
  311. package/dist/components/Heading/index.d.ts +0 -2
  312. package/dist/components/Heading/index.d.ts.map +0 -1
  313. package/dist/components/Icon/Icon.css.d.ts +0 -2
  314. package/dist/components/Icon/Icon.css.d.ts.map +0 -1
  315. package/dist/components/Icon/Icon.d.ts +0 -13
  316. package/dist/components/Icon/Icon.d.ts.map +0 -1
  317. package/dist/components/Icon/index.d.ts +0 -2
  318. package/dist/components/Icon/index.d.ts.map +0 -1
  319. package/dist/components/Image/Image.d.ts +0 -8
  320. package/dist/components/Image/Image.d.ts.map +0 -1
  321. package/dist/components/Image/ImageServerProvider.d.ts +0 -18
  322. package/dist/components/Image/ImageServerProvider.d.ts.map +0 -1
  323. package/dist/components/Image/ResponsiveImage.d.ts +0 -11
  324. package/dist/components/Image/ResponsiveImage.d.ts.map +0 -1
  325. package/dist/components/Image/SimpleImage.d.ts +0 -12
  326. package/dist/components/Image/SimpleImage.d.ts.map +0 -1
  327. package/dist/components/Image/index.d.ts +0 -2
  328. package/dist/components/Image/index.d.ts.map +0 -1
  329. package/dist/components/Image/types.d.ts +0 -2
  330. package/dist/components/Image/types.d.ts.map +0 -1
  331. package/dist/components/Inline/Inline.d.ts +0 -13
  332. package/dist/components/Inline/Inline.d.ts.map +0 -1
  333. package/dist/components/Inline/index.d.ts +0 -2
  334. package/dist/components/Inline/index.d.ts.map +0 -1
  335. package/dist/components/LinearProgressIndicator/LinearProgressIndicator.css.d.ts +0 -4
  336. package/dist/components/LinearProgressIndicator/LinearProgressIndicator.css.d.ts.map +0 -1
  337. package/dist/components/LinearProgressIndicator/LinearProgressIndicator.d.ts +0 -6
  338. package/dist/components/LinearProgressIndicator/LinearProgressIndicator.d.ts.map +0 -1
  339. package/dist/components/LinearProgressIndicator/index.d.ts +0 -2
  340. package/dist/components/LinearProgressIndicator/index.d.ts.map +0 -1
  341. package/dist/components/LoadingBox/LoadingBox.css.d.ts +0 -3
  342. package/dist/components/LoadingBox/LoadingBox.css.d.ts.map +0 -1
  343. package/dist/components/LoadingBox/LoadingBox.d.ts +0 -9
  344. package/dist/components/LoadingBox/LoadingBox.d.ts.map +0 -1
  345. package/dist/components/LoadingBox/index.d.ts +0 -2
  346. package/dist/components/LoadingBox/index.d.ts.map +0 -1
  347. package/dist/components/Meta/Meta.css.d.ts +0 -2
  348. package/dist/components/Meta/Meta.css.d.ts.map +0 -1
  349. package/dist/components/Meta/Meta.d.ts +0 -10
  350. package/dist/components/Meta/Meta.d.ts.map +0 -1
  351. package/dist/components/Meta/index.d.ts +0 -2
  352. package/dist/components/Meta/index.d.ts.map +0 -1
  353. package/dist/components/MinimalModal/MinimalModal.css.d.ts +0 -3
  354. package/dist/components/MinimalModal/MinimalModal.css.d.ts.map +0 -1
  355. package/dist/components/MinimalModal/MinimalModal.d.ts +0 -7
  356. package/dist/components/MinimalModal/MinimalModal.d.ts.map +0 -1
  357. package/dist/components/MinimalModal/index.d.ts +0 -2
  358. package/dist/components/MinimalModal/index.d.ts.map +0 -1
  359. package/dist/components/Modal/Modal.css.d.ts +0 -5
  360. package/dist/components/Modal/Modal.css.d.ts.map +0 -1
  361. package/dist/components/Modal/Modal.d.ts +0 -9
  362. package/dist/components/Modal/Modal.d.ts.map +0 -1
  363. package/dist/components/Modal/index.d.ts +0 -2
  364. package/dist/components/Modal/index.d.ts.map +0 -1
  365. package/dist/components/NumberInput/NumberInput.d.ts +0 -7
  366. package/dist/components/NumberInput/NumberInput.d.ts.map +0 -1
  367. package/dist/components/NumberInput/index.d.ts +0 -2
  368. package/dist/components/NumberInput/index.d.ts.map +0 -1
  369. package/dist/components/OrderedList/OrderedList.css.d.ts +0 -2
  370. package/dist/components/OrderedList/OrderedList.css.d.ts.map +0 -1
  371. package/dist/components/OrderedList/OrderedList.d.ts +0 -14
  372. package/dist/components/OrderedList/OrderedList.d.ts.map +0 -1
  373. package/dist/components/OrderedList/index.d.ts +0 -2
  374. package/dist/components/OrderedList/index.d.ts.map +0 -1
  375. package/dist/components/OutsideClick/OutsideClick.d.ts +0 -8
  376. package/dist/components/OutsideClick/OutsideClick.d.ts.map +0 -1
  377. package/dist/components/OutsideClick/index.d.ts +0 -2
  378. package/dist/components/OutsideClick/index.d.ts.map +0 -1
  379. package/dist/components/OverdriveProvider/OverdriveProvider.d.ts +0 -7
  380. package/dist/components/OverdriveProvider/OverdriveProvider.d.ts.map +0 -1
  381. package/dist/components/OverdriveProvider/index.d.ts +0 -2
  382. package/dist/components/OverdriveProvider/index.d.ts.map +0 -1
  383. package/dist/components/Pagination/Bubble.d.ts +0 -10
  384. package/dist/components/Pagination/Bubble.d.ts.map +0 -1
  385. package/dist/components/Pagination/Pagination.css.d.ts +0 -4
  386. package/dist/components/Pagination/Pagination.css.d.ts.map +0 -1
  387. package/dist/components/Pagination/Pagination.d.ts +0 -16
  388. package/dist/components/Pagination/Pagination.d.ts.map +0 -1
  389. package/dist/components/Pagination/index.d.ts +0 -2
  390. package/dist/components/Pagination/index.d.ts.map +0 -1
  391. package/dist/components/Portal/Portal.d.ts +0 -10
  392. package/dist/components/Portal/Portal.d.ts.map +0 -1
  393. package/dist/components/Portal/index.d.ts +0 -2
  394. package/dist/components/Portal/index.d.ts.map +0 -1
  395. package/dist/components/Positioner/Positioner.css.d.ts +0 -2
  396. package/dist/components/Positioner/Positioner.css.d.ts.map +0 -1
  397. package/dist/components/Positioner/Positioner.d.ts +0 -12
  398. package/dist/components/Positioner/Positioner.d.ts.map +0 -1
  399. package/dist/components/Positioner/alignment.d.ts +0 -11
  400. package/dist/components/Positioner/alignment.d.ts.map +0 -1
  401. package/dist/components/Positioner/index.d.ts +0 -3
  402. package/dist/components/Positioner/index.d.ts.map +0 -1
  403. package/dist/components/ProgressBar/ProgressBar.css.d.ts +0 -3
  404. package/dist/components/ProgressBar/ProgressBar.css.d.ts.map +0 -1
  405. package/dist/components/ProgressBar/ProgressBar.d.ts +0 -9
  406. package/dist/components/ProgressBar/ProgressBar.d.ts.map +0 -1
  407. package/dist/components/ProgressBar/index.d.ts +0 -2
  408. package/dist/components/ProgressBar/index.d.ts.map +0 -1
  409. package/dist/components/ProgressBarGroup/ProgressBarGroup.css.d.ts +0 -2
  410. package/dist/components/ProgressBarGroup/ProgressBarGroup.css.d.ts.map +0 -1
  411. package/dist/components/ProgressBarGroup/ProgressBarGroup.d.ts +0 -10
  412. package/dist/components/ProgressBarGroup/ProgressBarGroup.d.ts.map +0 -1
  413. package/dist/components/ProgressBarGroup/index.d.ts +0 -2
  414. package/dist/components/ProgressBarGroup/index.d.ts.map +0 -1
  415. package/dist/components/ProgressSpinner/ProgressSpinner.css.d.ts +0 -9
  416. package/dist/components/ProgressSpinner/ProgressSpinner.css.d.ts.map +0 -1
  417. package/dist/components/ProgressSpinner/ProgressSpinner.d.ts +0 -9
  418. package/dist/components/ProgressSpinner/ProgressSpinner.d.ts.map +0 -1
  419. package/dist/components/ProgressSpinner/index.d.ts +0 -2
  420. package/dist/components/ProgressSpinner/index.d.ts.map +0 -1
  421. package/dist/components/Radio/Radio.css.d.ts +0 -2
  422. package/dist/components/Radio/Radio.css.d.ts.map +0 -1
  423. package/dist/components/Radio/Radio.d.ts +0 -10
  424. package/dist/components/Radio/Radio.d.ts.map +0 -1
  425. package/dist/components/Radio/RadioGroup.d.ts +0 -19
  426. package/dist/components/Radio/RadioGroup.d.ts.map +0 -1
  427. package/dist/components/Radio/index.d.ts +0 -3
  428. package/dist/components/Radio/index.d.ts.map +0 -1
  429. package/dist/components/Section/Section.css.d.ts +0 -3
  430. package/dist/components/Section/Section.css.d.ts.map +0 -1
  431. package/dist/components/Section/Section.d.ts +0 -8
  432. package/dist/components/Section/Section.d.ts.map +0 -1
  433. package/dist/components/Section/index.d.ts +0 -2
  434. package/dist/components/Section/index.d.ts.map +0 -1
  435. package/dist/components/SelectInput/SelectInput.css.d.ts +0 -4
  436. package/dist/components/SelectInput/SelectInput.css.d.ts.map +0 -1
  437. package/dist/components/SelectInput/SelectInput.d.ts +0 -6
  438. package/dist/components/SelectInput/SelectInput.d.ts.map +0 -1
  439. package/dist/components/SelectInput/index.d.ts +0 -2
  440. package/dist/components/SelectInput/index.d.ts.map +0 -1
  441. package/dist/components/SimplePagination/SimplePagination.d.ts +0 -14
  442. package/dist/components/SimplePagination/SimplePagination.d.ts.map +0 -1
  443. package/dist/components/SimplePagination/index.d.ts +0 -2
  444. package/dist/components/SimplePagination/index.d.ts.map +0 -1
  445. package/dist/components/Stack/Divider.css.d.ts +0 -2
  446. package/dist/components/Stack/Divider.css.d.ts.map +0 -1
  447. package/dist/components/Stack/Divider.d.ts +0 -3
  448. package/dist/components/Stack/Divider.d.ts.map +0 -1
  449. package/dist/components/Stack/Stack.css.d.ts +0 -5
  450. package/dist/components/Stack/Stack.css.d.ts.map +0 -1
  451. package/dist/components/Stack/Stack.d.ts +0 -11
  452. package/dist/components/Stack/Stack.d.ts.map +0 -1
  453. package/dist/components/Stack/index.d.ts +0 -2
  454. package/dist/components/Stack/index.d.ts.map +0 -1
  455. package/dist/components/StandardModal/StandardModal.css.d.ts +0 -8
  456. package/dist/components/StandardModal/StandardModal.css.d.ts.map +0 -1
  457. package/dist/components/StandardModal/StandardModal.d.ts +0 -16
  458. package/dist/components/StandardModal/StandardModal.d.ts.map +0 -1
  459. package/dist/components/StandardModal/index.d.ts +0 -2
  460. package/dist/components/StandardModal/index.d.ts.map +0 -1
  461. package/dist/components/StarRating/StarRating.css.d.ts +0 -2
  462. package/dist/components/StarRating/StarRating.css.d.ts.map +0 -1
  463. package/dist/components/StarRating/StarRating.d.ts +0 -13
  464. package/dist/components/StarRating/StarRating.d.ts.map +0 -1
  465. package/dist/components/StarRating/index.d.ts +0 -2
  466. package/dist/components/StarRating/index.d.ts.map +0 -1
  467. package/dist/components/Stepper/Stepper.css.d.ts +0 -5
  468. package/dist/components/Stepper/Stepper.css.d.ts.map +0 -1
  469. package/dist/components/Stepper/Stepper.d.ts +0 -13
  470. package/dist/components/Stepper/Stepper.d.ts.map +0 -1
  471. package/dist/components/Stepper/index.d.ts +0 -2
  472. package/dist/components/Stepper/index.d.ts.map +0 -1
  473. package/dist/components/Switch/Switch.css.d.ts +0 -5
  474. package/dist/components/Switch/Switch.css.d.ts.map +0 -1
  475. package/dist/components/Switch/Switch.d.ts +0 -9
  476. package/dist/components/Switch/Switch.d.ts.map +0 -1
  477. package/dist/components/Switch/index.d.ts +0 -2
  478. package/dist/components/Switch/index.d.ts.map +0 -1
  479. package/dist/components/Table/Table.css.d.ts +0 -2
  480. package/dist/components/Table/Table.css.d.ts.map +0 -1
  481. package/dist/components/Table/Table.d.ts +0 -9
  482. package/dist/components/Table/Table.d.ts.map +0 -1
  483. package/dist/components/Table/TableCell.css.d.ts +0 -2
  484. package/dist/components/Table/TableCell.css.d.ts.map +0 -1
  485. package/dist/components/Table/TableCell.d.ts +0 -12
  486. package/dist/components/Table/TableCell.d.ts.map +0 -1
  487. package/dist/components/Table/TableHeadCell.css.d.ts +0 -10
  488. package/dist/components/Table/TableHeadCell.css.d.ts.map +0 -1
  489. package/dist/components/Table/TableHeadCell.d.ts +0 -14
  490. package/dist/components/Table/TableHeadCell.d.ts.map +0 -1
  491. package/dist/components/Table/TableRow.d.ts +0 -8
  492. package/dist/components/Table/TableRow.d.ts.map +0 -1
  493. package/dist/components/Table/TableRowGroup.d.ts +0 -7
  494. package/dist/components/Table/TableRowGroup.d.ts.map +0 -1
  495. package/dist/components/Table/context.d.ts +0 -9
  496. package/dist/components/Table/context.d.ts.map +0 -1
  497. package/dist/components/Table/index.d.ts +0 -6
  498. package/dist/components/Table/index.d.ts.map +0 -1
  499. package/dist/components/Tabs/Tab.css.d.ts +0 -7
  500. package/dist/components/Tabs/Tab.css.d.ts.map +0 -1
  501. package/dist/components/Tabs/Tab.d.ts +0 -10
  502. package/dist/components/Tabs/Tab.d.ts.map +0 -1
  503. package/dist/components/Tabs/TabList.css.d.ts +0 -3
  504. package/dist/components/Tabs/TabList.css.d.ts.map +0 -1
  505. package/dist/components/Tabs/TabList.d.ts +0 -9
  506. package/dist/components/Tabs/TabList.d.ts.map +0 -1
  507. package/dist/components/Tabs/TabPane.css.d.ts +0 -2
  508. package/dist/components/Tabs/TabPane.css.d.ts.map +0 -1
  509. package/dist/components/Tabs/TabPane.d.ts +0 -5
  510. package/dist/components/Tabs/TabPane.d.ts.map +0 -1
  511. package/dist/components/Tabs/TabPanes.css.d.ts +0 -2
  512. package/dist/components/Tabs/TabPanes.css.d.ts.map +0 -1
  513. package/dist/components/Tabs/TabPanes.d.ts +0 -13
  514. package/dist/components/Tabs/TabPanes.d.ts.map +0 -1
  515. package/dist/components/Tabs/Tabs.d.ts +0 -16
  516. package/dist/components/Tabs/Tabs.d.ts.map +0 -1
  517. package/dist/components/Tabs/index.d.ts +0 -6
  518. package/dist/components/Tabs/index.d.ts.map +0 -1
  519. package/dist/components/Text/Text.d.ts +0 -11
  520. package/dist/components/Text/Text.d.ts.map +0 -1
  521. package/dist/components/Text/index.d.ts +0 -4
  522. package/dist/components/Text/index.d.ts.map +0 -1
  523. package/dist/components/Text/useTextStyles.css.d.ts +0 -7
  524. package/dist/components/Text/useTextStyles.css.d.ts.map +0 -1
  525. package/dist/components/Text/useTextStyles.d.ts +0 -15
  526. package/dist/components/Text/useTextStyles.d.ts.map +0 -1
  527. package/dist/components/TextAreaInput/TextAreaInput.d.ts +0 -3
  528. package/dist/components/TextAreaInput/TextAreaInput.d.ts.map +0 -1
  529. package/dist/components/TextAreaInput/index.d.ts +0 -2
  530. package/dist/components/TextAreaInput/index.d.ts.map +0 -1
  531. package/dist/components/TextContainer/TextContainer.d.ts +0 -9
  532. package/dist/components/TextContainer/TextContainer.d.ts.map +0 -1
  533. package/dist/components/TextContainer/index.d.ts +0 -2
  534. package/dist/components/TextContainer/index.d.ts.map +0 -1
  535. package/dist/components/TextInput/TextInput.d.ts +0 -3
  536. package/dist/components/TextInput/TextInput.d.ts.map +0 -1
  537. package/dist/components/TextInput/index.d.ts +0 -2
  538. package/dist/components/TextInput/index.d.ts.map +0 -1
  539. package/dist/components/TextLink/TextLink.css.d.ts +0 -3
  540. package/dist/components/TextLink/TextLink.css.d.ts.map +0 -1
  541. package/dist/components/TextLink/TextLink.d.ts +0 -14
  542. package/dist/components/TextLink/TextLink.d.ts.map +0 -1
  543. package/dist/components/TextLink/index.d.ts +0 -2
  544. package/dist/components/TextLink/index.d.ts.map +0 -1
  545. package/dist/components/ThemeProvider/ThemeProvider.d.ts +0 -19
  546. package/dist/components/ThemeProvider/ThemeProvider.d.ts.map +0 -1
  547. package/dist/components/ThemeProvider/index.d.ts +0 -2
  548. package/dist/components/ThemeProvider/index.d.ts.map +0 -1
  549. package/dist/components/Toaster/Toast.css.d.ts +0 -3
  550. package/dist/components/Toaster/Toast.css.d.ts.map +0 -1
  551. package/dist/components/Toaster/Toast.d.ts +0 -13
  552. package/dist/components/Toaster/Toast.d.ts.map +0 -1
  553. package/dist/components/Toaster/index.d.ts +0 -2
  554. package/dist/components/Toaster/index.d.ts.map +0 -1
  555. package/dist/components/Tooltip/Tooltip.css.d.ts +0 -2
  556. package/dist/components/Tooltip/Tooltip.css.d.ts.map +0 -1
  557. package/dist/components/Tooltip/Tooltip.d.ts +0 -9
  558. package/dist/components/Tooltip/Tooltip.d.ts.map +0 -1
  559. package/dist/components/Tooltip/index.d.ts +0 -2
  560. package/dist/components/Tooltip/index.d.ts.map +0 -1
  561. package/dist/components/VisuallyHidden/VisuallyHidden.css.d.ts +0 -2
  562. package/dist/components/VisuallyHidden/VisuallyHidden.css.d.ts.map +0 -1
  563. package/dist/components/VisuallyHidden/VisuallyHidden.d.ts +0 -7
  564. package/dist/components/VisuallyHidden/VisuallyHidden.d.ts.map +0 -1
  565. package/dist/components/VisuallyHidden/index.d.ts +0 -2
  566. package/dist/components/VisuallyHidden/index.d.ts.map +0 -1
  567. package/dist/components/index.d.ts +0 -52
  568. package/dist/components/index.d.ts.map +0 -1
  569. package/dist/components/private/CheckableBase/CheckableBase.css.d.ts +0 -7
  570. package/dist/components/private/CheckableBase/CheckableBase.css.d.ts.map +0 -1
  571. package/dist/components/private/CheckableBase/CheckableBase.d.ts +0 -16
  572. package/dist/components/private/CheckableBase/CheckableBase.d.ts.map +0 -1
  573. package/dist/components/private/CheckableBase/index.d.ts +0 -2
  574. package/dist/components/private/CheckableBase/index.d.ts.map +0 -1
  575. package/dist/components/private/CheckableBase/useCheckableStyles.d.ts +0 -4
  576. package/dist/components/private/CheckableBase/useCheckableStyles.d.ts.map +0 -1
  577. package/dist/components/private/InputBase/HintText.css.d.ts +0 -2
  578. package/dist/components/private/InputBase/HintText.css.d.ts.map +0 -1
  579. package/dist/components/private/InputBase/HintText.d.ts +0 -9
  580. package/dist/components/private/InputBase/HintText.d.ts.map +0 -1
  581. package/dist/components/private/InputBase/InputState.css.d.ts +0 -58
  582. package/dist/components/private/InputBase/InputState.css.d.ts.map +0 -1
  583. package/dist/components/private/InputBase/NotchedBase.css.d.ts +0 -14
  584. package/dist/components/private/InputBase/NotchedBase.css.d.ts.map +0 -1
  585. package/dist/components/private/InputBase/NotchedBase.d.ts +0 -14
  586. package/dist/components/private/InputBase/NotchedBase.d.ts.map +0 -1
  587. package/dist/components/private/InputBase/index.d.ts +0 -2
  588. package/dist/components/private/InputBase/index.d.ts.map +0 -1
  589. package/dist/components/private/InputBase/withEnhancedInput.css.d.ts +0 -9
  590. package/dist/components/private/InputBase/withEnhancedInput.css.d.ts.map +0 -1
  591. package/dist/components/private/InputBase/withEnhancedInput.d.ts +0 -57
  592. package/dist/components/private/InputBase/withEnhancedInput.d.ts.map +0 -1
  593. package/dist/hooks/useAttachedBoxes/index.d.ts +0 -2
  594. package/dist/hooks/useAttachedBoxes/index.d.ts.map +0 -1
  595. package/dist/hooks/useAttachedBoxes/useAttachedBoxes.css.d.ts +0 -9
  596. package/dist/hooks/useAttachedBoxes/useAttachedBoxes.css.d.ts.map +0 -1
  597. package/dist/hooks/useAttachedBoxes/useAttachedBoxes.d.ts +0 -18
  598. package/dist/hooks/useAttachedBoxes/useAttachedBoxes.d.ts.map +0 -1
  599. package/dist/hooks/useMedia/index.d.ts +0 -2
  600. package/dist/hooks/useMedia/index.d.ts.map +0 -1
  601. package/dist/hooks/useMedia/useMedia.d.ts +0 -3
  602. package/dist/hooks/useMedia/useMedia.d.ts.map +0 -1
  603. package/dist/hooks/useNegativeMargin/useNegativeMargin.d.ts +0 -3
  604. package/dist/hooks/useNegativeMargin/useNegativeMargin.d.ts.map +0 -1
  605. package/dist/hooks/useNegativeMargin/useNegativeMarginLeft.css.d.ts +0 -2
  606. package/dist/hooks/useNegativeMargin/useNegativeMarginLeft.css.d.ts.map +0 -1
  607. package/dist/hooks/useNegativeMargin/useNegativeMarginLeft.d.ts +0 -4
  608. package/dist/hooks/useNegativeMargin/useNegativeMarginLeft.d.ts.map +0 -1
  609. package/dist/hooks/useNegativeMargin/useNegativeMarginTop.css.d.ts +0 -2
  610. package/dist/hooks/useNegativeMargin/useNegativeMarginTop.css.d.ts.map +0 -1
  611. package/dist/hooks/useNegativeMargin/useNegativeMarginTop.d.ts +0 -4
  612. package/dist/hooks/useNegativeMargin/useNegativeMarginTop.d.ts.map +0 -1
  613. package/dist/hooks/useResponsiveValue/index.d.ts +0 -2
  614. package/dist/hooks/useResponsiveValue/index.d.ts.map +0 -1
  615. package/dist/hooks/useResponsiveValue/useResponsiveValue.d.ts +0 -3
  616. package/dist/hooks/useResponsiveValue/useResponsiveValue.d.ts.map +0 -1
  617. package/dist/index.d.ts +0 -6
  618. package/dist/index.d.ts.map +0 -1
  619. package/dist/reset/globalFonts.css.d.ts +0 -2
  620. package/dist/reset/globalFonts.css.d.ts.map +0 -1
  621. package/dist/reset/globalReset.css.d.ts +0 -2
  622. package/dist/reset/globalReset.css.d.ts.map +0 -1
  623. package/dist/reset/reset.css.d.ts +0 -49
  624. package/dist/reset/reset.css.d.ts.map +0 -1
  625. package/dist/themes/base/index.d.ts +0 -8
  626. package/dist/themes/base/index.d.ts.map +0 -1
  627. package/dist/themes/base/tokens.d.ts +0 -3
  628. package/dist/themes/base/tokens.d.ts.map +0 -1
  629. package/dist/themes/base/vars.css.d.ts +0 -3
  630. package/dist/themes/base/vars.css.d.ts.map +0 -1
  631. package/dist/themes/flat_red/index.d.ts +0 -8
  632. package/dist/themes/flat_red/index.d.ts.map +0 -1
  633. package/dist/themes/flat_red/tokens.d.ts +0 -3
  634. package/dist/themes/flat_red/tokens.d.ts.map +0 -1
  635. package/dist/themes/flat_red/vars.css.d.ts +0 -2
  636. package/dist/themes/flat_red/vars.css.d.ts.map +0 -1
  637. package/dist/themes/helpers.d.ts +0 -2
  638. package/dist/themes/helpers.d.ts.map +0 -1
  639. package/dist/themes/index.d.ts +0 -3
  640. package/dist/themes/index.d.ts.map +0 -1
  641. package/dist/themes/makeTheme.d.ts +0 -12
  642. package/dist/themes/makeTheme.d.ts.map +0 -1
  643. package/dist/themes/tokens.d.ts +0 -95
  644. package/dist/themes/tokens.d.ts.map +0 -1
  645. package/dist/utils/index.d.ts +0 -19
  646. package/dist/utils/index.d.ts.map +0 -1
  647. package/dist/utils/mapTokenToProperty.d.ts +0 -6
  648. package/dist/utils/mapTokenToProperty.d.ts.map +0 -1
  649. package/dist/utils/resolveResponsiveProps.d.ts +0 -7
  650. package/dist/utils/resolveResponsiveProps.d.ts.map +0 -1
  651. package/dist/utils/responsiveProps.css.d.ts +0 -5
  652. package/dist/utils/responsiveProps.css.d.ts.map +0 -1
  653. package/dist/utils/responsiveStyle.d.ts +0 -4
  654. package/dist/utils/responsiveStyle.d.ts.map +0 -1
package/CHANGELOG.md DELETED
@@ -1,1291 +0,0 @@
1
- # @autoguru/overdrive
2
-
3
- ## 4.1.6
4
-
5
- ### Patch Changes
6
-
7
- - 13acf79: AutoSuggest: Calls onEnter with current value
8
-
9
- ## 4.1.5
10
-
11
- ### Patch Changes
12
-
13
- - 6ae288e: AutoSuggest: Type fixes
14
-
15
- ## 4.1.4
16
-
17
- ### Patch Changes
18
-
19
- - Overdrive: Fixed input ref type
20
-
21
- ## 4.1.3
22
-
23
- ### Patch Changes
24
-
25
- - 9884f4c: Autosuggest: Closes results when enter key is pressed
26
-
27
- ## 4.1.2
28
-
29
- ### Patch Changes
30
-
31
- - e825a3d: useResponsiveValue Accepts any generic type
32
-
33
- ## 4.1.1
34
-
35
- ### Patch Changes
36
-
37
- - 4bae7d0: AutoSuggest accepts an 'onEnter' event callback
38
-
39
- ## 4.1.0
40
-
41
- ### Minor Changes
42
-
43
- - af65bd3: New responsive Image component
44
-
45
- ## 4.0.4
46
-
47
- ### Patch Changes
48
-
49
- - 1ac5083: Adds babel preset env
50
-
51
- ## 4.0.3
52
-
53
- ### Patch Changes
54
-
55
- - 7f65be1: TextArea: Fixed min height
56
-
57
- ## 4.0.2
58
-
59
- ### Patch Changes
60
-
61
- - f7bfcdb: Tabs Get a more distinct colour for unselected tab labels
62
-
63
- ## 4.0.1
64
-
65
- ### Patch Changes
66
-
67
- - e2cebc8: Applies type fixes
68
-
69
- ## 4.0.0
70
-
71
- ### Major Changes
72
-
73
- - dd12f20: Migrates Overdrive to vanilla extract
74
-
75
- ## 3.0.0
76
-
77
- ### Major Changes
78
-
79
- - eb36462: Overdrive: Migrates styling away from treat to vanilla extract
80
- - aaac596: Migrate to vanilla extract
81
-
82
- ### Patch Changes
83
-
84
- - 4324095: OverdriveProvider: Imports reset styles
85
- - 4324095: OverdriveProvider: Imports global fonts
86
- - 2623174: fixes list of files with side effects
87
- - 03ca973: Autosuggest: Replaces deprecated fill-available with stretch
88
- - 56edcaf: Overdrive: Gets file extentions for imports
89
- - 2fbe7bf: OverdriveProvider: Accepts runtime breakpoint token
90
- - 4324095: Compiles released package to JS
91
- - 4858d44: Compiles Overdrive package into JS
92
- - 36736c3: useMedia
93
- - ec17939: Adds babel react preset
94
- - 965c7ed: Portal: Makes theme wrapping optional
95
- - 19d14a1: Multiple theming fixes
96
- - aa5d74b: Portal: Removes memo
97
- - 4324095: Reverts compiling to js
98
- - 713b1a3: Oderdrive: Fixed type generation for released package
99
- - 4b3b1ec: Adds inhouse babel config
100
- - ca4e971: Portal: Fixes unwrapped version
101
- - 158d3bb: Accept custom runtime breakpoint tokens
102
-
103
- ## 3.0.0-next.18
104
-
105
- ### Patch Changes
106
-
107
- - Fixes type generation for released package
108
-
109
- ## 3.0.0-next.17
110
-
111
- ### Patch Changes
112
-
113
- - useMedia
114
-
115
- ## 3.0.0-next.16
116
-
117
- ### Patch Changes
118
-
119
- - Portal: Removes memo
120
-
121
- ## 3.0.0-next.15
122
-
123
- ### Patch Changes
124
-
125
- - Portal: Fixes unwrapped version
126
-
127
- ## 3.0.0-next.14
128
-
129
- ### Patch Changes
130
-
131
- - Portal: Makes theme wrapping optional
132
-
133
- ## 3.0.0-next.13
134
-
135
- ### Patch Changes
136
-
137
- - OverdriveProvider: Accepts runtime breakpoint token
138
-
139
- ## 3.0.0-next.12
140
-
141
- ### Patch Changes
142
-
143
- - Accept custom runtime breakpoint tokens
144
-
145
- ## 3.0.0-next.11
146
-
147
- ### Patch Changes
148
-
149
- - Autosuggest: Replaces deprecated fill-available with stretch
150
-
151
- ## 3.0.0-next.10
152
-
153
- ### Patch Changes
154
-
155
- - fixes list of files with sideeffects
156
-
157
- ## 3.0.0-next.9
158
-
159
- ### Patch Changes
160
-
161
- - ec17939: Adds babel react preset
162
-
163
- ## 3.0.0-next.8
164
-
165
- ### Patch Changes
166
-
167
- - Overdrive: Gets file extentions for imports
168
-
169
- ## 3.0.0-next.7
170
-
171
- ### Patch Changes
172
-
173
- - Adds inhouse babel config
174
-
175
- ## 3.0.0-next.6
176
-
177
- ### Patch Changes
178
-
179
- - OverdriveProvider: Imports global fonts
180
-
181
- ## 3.0.0-next.5
182
-
183
- ### Patch Changes
184
-
185
- - OverdriveProvider: Imports reset styles
186
-
187
- ## 3.0.0-next.4
188
-
189
- ### Patch Changes
190
-
191
- - Compiles released package to JS
192
-
193
- ## 3.0.0-next.3
194
-
195
- ### Patch Changes
196
-
197
- - Reverts compiling to js
198
-
199
- ## 3.0.0-next.2
200
-
201
- ### Patch Changes
202
-
203
- - Compiles Overdrive package into JS
204
-
205
- ## 3.0.0-next.1
206
-
207
- ### Patch Changes
208
-
209
- - Multiple theming fixes
210
-
211
- ## 3.0.0-next.0
212
-
213
- ### Major Changes
214
-
215
- - eb36462: Overdrive: Migrates styling away from treat to vanilla extract
216
- - aaac596: Migrate to vanilla extract
217
-
218
- ## 3.0.0-next.1
219
-
220
- ### Major Changes
221
-
222
- - Migrate to vanilla extract
223
-
224
- ## 3.0.0-next.0
225
-
226
- ### Major Changes
227
-
228
- - Overdrive: Migrates styling away from treat to vanilla extract
229
-
230
- ## 2.7.0
231
-
232
- ### Minor Changes
233
-
234
- - f982d1c: Upgraded to react v18 alpha
235
- - 0fa7afd: Overdsrive: Gets compiled into javascripts and typescript types
236
- - 7033333: Hooks: New useAttachedBoxes helper hook
237
- - f15d951: Hooks: New useResponsiveValue value hook
238
-
239
- ### Patch Changes
240
-
241
- - b7e6aae: Adds relese script
242
- - 25dda76: Attached Boxes: Accept default box props
243
- - 85e9ceb: StandardModal: Hides it's frame overflow
244
- - d08c689: Badge: Gets new large size
245
- - 96a8299: NumberInput: Gets new preventMouseWheel prop to prevent value
246
- change while scrolling
247
- - fd3cea4: AttachedBoxes: Do not get default paddings
248
- - 7f2122b: Adds more utils root export
249
- - b7e6aae: Overdrive: Gets files list added to package.json
250
- - b7e6aae: Fixes main file
251
- - 006435e: StandardModal: Gets narrow and skinny sizes
252
- - d89cd04: LoadingBox Accepts default Box props
253
- - b7e6aae: Overdrive index main index files fixed
254
- - ded7b5d: Inputs: Get their hover states going to a darker shade
255
- - 8b1f6df: useResponsiveValue: Gets exported from libs root
256
- - fd3cea4: AttachedBoxes: Accept external classnames
257
- - ff9a789: Sets index.ts as main entry file
258
- - ba85147: Overdrive: Multiple export changes
259
- - 5c1b018: Publish command: Nolonger compiles to JS
260
-
261
- ## 2.7.0-next.18
262
-
263
- ### Patch Changes
264
-
265
- - Overdrive: Multiple export changes
266
-
267
- ## 2.7.0-next.17
268
-
269
- ### Patch Changes
270
-
271
- - Badge: Gets new large size
272
-
273
- ## 2.7.0-next.16
274
-
275
- ### Patch Changes
276
-
277
- - Publish command: Nolonger compiles to JS
278
-
279
- ## 2.7.0-next.15
280
-
281
- ### Patch Changes
282
-
283
- - Adds more utils root export
284
-
285
- ## 2.7.0-next.14
286
-
287
- ### Patch Changes
288
-
289
- - Sets index.ts as main entry file
290
-
291
- ## 2.7.0-next.13
292
-
293
- ### Patch Changes
294
-
295
- - Fixes main file
296
-
297
- ## 2.7.0-next.12
298
-
299
- ### Patch Changes
300
-
301
- - Overdrive index main index files fixed
302
-
303
- ## 2.7.0-next.11
304
-
305
- ### Patch Changes
306
-
307
- - Overdrive: Gets files list added to package.json
308
-
309
- ## 2.7.0-next.10
310
-
311
- ### Patch Changes
312
-
313
- - Adds relese script
314
-
315
- ## 2.7.0-next.9
316
-
317
- ### Minor Changes
318
-
319
- - Overdsrive: Gets compiled into javascripts and typescript types
320
-
321
- ## 2.7.0-next.8
322
-
323
- ### Patch Changes
324
-
325
- - NumberInput: Gets new preventMouseWheel prop to prevent value change while
326
- scrolling
327
-
328
- ## 2.7.0-next.7
329
-
330
- ### Patch Changes
331
-
332
- - StandardModal: Hides it's frame overflow
333
-
334
- ## 2.7.0-next.6
335
-
336
- ### Patch Changes
337
-
338
- - StandardModal: Gets narrow and skinny sizes
339
-
340
- ## 2.7.0-next.5
341
-
342
- ### Patch Changes
343
-
344
- - LoadingBox Accepts default Box props
345
-
346
- ## 2.7.0-next.4
347
-
348
- ### Patch Changes
349
-
350
- - AttachedBoxes: Do not get default paddings
351
- - AttachedBoxes: Accept external classnames
352
-
353
- ## 2.7.0-next.3
354
-
355
- ### Patch Changes
356
-
357
- - Attached Boxes: Accept default box props
358
- - 8b1f6df: useResponsiveValue: Gets exported from libs root
359
-
360
- ## 2.7.0-next.2
361
-
362
- ### Minor Changes
363
-
364
- - 7033333: Hooks: New useAttachedBoxes helper hook
365
- - f15d951: Hooks: New useResponsiveValue value hook
366
-
367
- ## 2.7.0-next.1
368
-
369
- ### Patch Changes
370
-
371
- - ded7b5d: Inputs: Get their hover states going to a darker shade
372
-
373
- ## 2.7.0-next.0
374
-
375
- ### Minor Changes
376
-
377
- - Upgraded to react v18 alpha
378
-
379
- ## 2.6.3
380
-
381
- ### Patch Changes
382
-
383
- - f6e8135: AutoSuggest: Gets increased results fylout maxHeight value
384
-
385
- ## 2.6.2
386
-
387
- ### Patch Changes
388
-
389
- - 23780cc: Autosuggest: Gets a fix for white background under round edges
390
-
391
- ## 2.6.1
392
-
393
- ### Patch Changes
394
-
395
- - d2ba68a: AutoSuggest: Gets white background for results ul element
396
-
397
- ## 2.6.0
398
-
399
- ### Minor Changes
400
-
401
- - b625d7c: AutoSuggest: Gets a clear input button when with value
402
- - b625d7c: AutoSuggest: Gets enforced inline options view
403
-
404
- ## 2.5.1
405
-
406
- ### Patch Changes
407
-
408
- - 7072055: Toaster: gets primary, secondary and shine variants
409
-
410
- ## 2.5.0
411
-
412
- ### Minor Changes
413
-
414
- - 9411d17: MinimalModal: New MinimalModal component with StandardModal
415
- features but without any baked in UI
416
-
417
- ## 2.4.4
418
-
419
- ### Patch Changes
420
-
421
- - 97f8b2d: Button: Uses theme secondary colour for secondary variation border
422
-
423
- ## 2.4.3
424
-
425
- ### Patch Changes
426
-
427
- - a3908d9: AutoSuggest: Gets fix for fullscreen veiw resizing html tag width
428
- to 0
429
-
430
- ## 2.4.2
431
-
432
- ### Patch Changes
433
-
434
- - e7fe560: Inputs: Get stories with no notch
435
-
436
- ## 2.4.1
437
-
438
- ### Patch Changes
439
-
440
- - dd39f3a: Overdrive Themes: Gets a new flat theme added
441
-
442
- ## 2.4.0
443
-
444
- ### Minor Changes
445
-
446
- - 4c96195: Theming: All explicitly set component colours now use theme based
447
- colours
448
-
449
- ## 2.3.1
450
-
451
- ### Patch Changes
452
-
453
- - a631d85: SelectInput: Gets option to be passed a custom field icon
454
-
455
- AutoSuggest: Gets option to be passed a custom field icon
456
-
457
- ## 2.3.0
458
-
459
- ### Minor Changes
460
-
461
- - f4eb420: Input fields: Get a loading state
462
-
463
- ## 2.2.8
464
-
465
- ### Patch Changes
466
-
467
- - 75d6708: Checkbox: Accepts ref
468
-
469
- RadioGroup: Accepts ref
470
-
471
- Radio: Accepts ref
472
-
473
- ## 2.2.7
474
-
475
- ### Patch Changes
476
-
477
- - e004bff: Text: Gets capitalise text transform prop
478
-
479
- ## 2.2.6
480
-
481
- ### Patch Changes
482
-
483
- - b328760: Box: Gets padding reset for field and fieldset elements
484
-
485
- AutoSuggest: Gets fix for exception when clicking outside an open
486
- AutoSuggest
487
-
488
- ## 2.2.5
489
-
490
- ### Patch Changes
491
-
492
- - 075e32e: useBoxStyles: Borders paddings and margins are no longer rest on
493
- block elements
494
- - 075e32e: Heading: Gets explicit reset styles
495
- - 6068142: AutoSuggest: Fixed undefined error caused by blurring out of
496
- AutoSuggest
497
-
498
- ## 2.2.4
499
-
500
- ### Patch Changes
501
-
502
- - ee67f76: TextLink: Gets inline reset styles
503
-
504
- ProgressSpinner: Gets svg and block resets for the animates SVG
505
-
506
- ## 2.2.3
507
-
508
- ### Patch Changes
509
-
510
- - 340da9a: Text: Gets explicit reset styles for span and p
511
-
512
- field: Gets explicit reset styles
513
-
514
- fieldset: Gets explicit reset styles
515
-
516
- ## 2.2.2
517
-
518
- ### Patch Changes
519
-
520
- - a3274cb: useBoxStyles: Applies base reset styles to div elements
521
- - a3274cb: TextAreaInput: Gets base input reset styles
522
-
523
- ## 2.2.1
524
-
525
- ### Patch Changes
526
-
527
- - 0e10140: useBoxStyles: Base reset styles now spread individually into
528
- element type reset styles
529
-
530
- ## 2.2.0
531
-
532
- ### Minor Changes
533
-
534
- - 667876a: **Checkboxes**: Disabled mode gets reduced opacity
535
-
536
- **Radio**: Disabled mode gets reduced opacity
537
-
538
- ## 2.1.9
539
-
540
- ### Patch Changes
541
-
542
- - 252f512: Upgrades treat to latest
543
- - ca5cb40: **Heading**: Heading component _should_ pass all text style props
544
- down
545
-
546
- ## 2.1.8
547
-
548
- ### Patch Changes
549
-
550
- - d9b96c6: **StandardModal**: Fixes mobile view to be pinned to the bottom and
551
- table view is all rounded corners
552
- - 99bc4f9: **Stepper**: Fixes extra re-render on each change
553
-
554
- ## 2.1.7
555
-
556
- ### Patch Changes
557
-
558
- - 977a99f: **Section**: Introduces a new small option for width values
559
-
560
- ## 2.1.6
561
-
562
- ### Patch Changes
563
-
564
- - 463422c: **Badge**: Fixes default text style colour incorrect style ordering
565
- ordering
566
-
567
- ## 2.1.5
568
-
569
- ### Patch Changes
570
-
571
- - 42057f4: **Badge**: Fixes inverted text style colours and incorrect ordering
572
- caused by [treat](https://github.com/seek-oss/treat)
573
-
574
- ## 2.1.4
575
-
576
- ### Patch Changes
577
-
578
- - a54636d: **AutoSuggest**: Fix's it so if Suggestions is ever undefined or
579
- empty, that the nextFn doesnt fail
580
- - dec98ef: **StandardModal**: The main region to be wrapped in a flex to allow
581
- stretching children
582
-
583
- ## 2.1.3
584
-
585
- ### Patch Changes
586
-
587
- - c81a433: **SelectInput**: Fixes wrong prop type needed
588
-
589
- ## 2.1.2
590
-
591
- ### Patch Changes
592
-
593
- - 1d4b39e: **SelectInput**: Increases target click area to cover the full
594
- width of component.
595
-
596
- ## 2.1.1
597
-
598
- ### Minor Changes
599
-
600
- - 052a024: Corrected types to be more type safe and accurate.
601
-
602
- Notably `<Box>`. Seeing as we `createElement`, we fixed types to only allow
603
- `IntrinsicElements | JSXElementConstructor`. As such, any `"button"` or
604
- `TextLink` prop values will work. However, `<TextLink />` will not.
605
-
606
- ## 2.0.27
607
-
608
- ### Patch Changes
609
-
610
- - 648ec6a: **Inputs:** Introduces `reserveHintSpace` prop—to _reserve_ the
611
- space that would otherwise be occupied by the hint text.
612
-
613
- Super useful in stacked forms with validation, so that page layout shifts
614
- don't occur.
615
-
616
- ## 2.0.26
617
-
618
- ### Patch Changes
619
-
620
- - dd3da7e: **Modal:** Introduces a focus-trap as well as correct some
621
- Concurrent Mode flickering.
622
- - dd3da7e: **Box:** Adds `opacity` prop
623
-
624
- ## 2.0.25
625
-
626
- ### Patch Changes
627
-
628
- - 4ce4fc6: **NumberInput:** Adds support for the html `step` attribute.
629
-
630
- ## 2.0.24
631
-
632
- ### Patch Changes
633
-
634
- - 8914008: **Box:** Adds `inlineFlex` as a display prop
635
- - 5bbe87a: **Tabs:** Adds new renderInactivePanes prop to render tabs that are
636
- inactive.
637
-
638
- By default, TabPanes themselves only render when they are active. Sometimes
639
- in certain cases you'd want to preserve the local state within those tabs as
640
- a user switches between tabs. Setting `renderInactivePanes` on TabPanes will
641
- be rendered but visually hidden.
642
-
643
- **Example:**
644
-
645
- ```jsx
646
- <Tabs active={0}>> > > > > > > } t > ></Tabs>
647
- ```
648
-
649
- - 7131a5f: **Tabs:** Fixes a visual quirk when indications are mixed with
650
- non-indicators
651
-
652
- ## 2.0.23
653
-
654
- ### Patch Changes
655
-
656
- - c585765: **Heading:** Adds an `id` prop which is applied directly to the
657
- underlying element
658
-
659
- ## 2.0.22
660
-
661
- ### Patch Changes
662
-
663
- - 5c913cc: Box: Allow non-intrinsics as Box `is` prop as well. With this
664
- change you can send things in like `svg`'s, or other components themselves.
665
- - e11909f: Text: Adds a `text-transform` prop to allow uppercasing text
666
-
667
- ## 2.0.21
668
-
669
- ### Patch Changes
670
-
671
- - 47335f6: Meta: FIxed issue where the icon and label would wrap
672
- - 230367f: SimplePagination: Should be centered in it's parent. Seeing as it's
673
- parent spans 100% width, this centering is now explicit.
674
-
675
- ## 2.0.20
676
-
677
- ### Patch Changes
678
-
679
- - bf51bbe: Fix: Added missing re-exports from our "to-monorepo" migration
680
-
681
- ## 2.0.19
682
-
683
- ### Patch Changes
684
-
685
- - c13df61: StandardModal: Fixes the issue where a mouseup on the backdrop
686
- triggered the requestClose callback. Despite the click originating on the
687
- modal itself. So now the callback will not fire.
688
-
689
- ## 2.0.18
690
-
691
- ### Patch Changes
692
-
693
- - 63d81e5: Major refactor of how `treat` files get used in our project.
694
- Instead of a redefinition of _shared_ styles such as margin/padding. We now
695
- instead prefer the usage of `useBoxStyles` or the `Box` component.
696
-
697
- There _should_ be no real regression in terms of usage api.
698
-
699
- - 63d81e5: Box: pointerEvents value can now be passed to `Box` and
700
- `useBoxStyles` as 'none' or undefined.
701
- - 63d81e5: BulletText: Now accepts an `is` prop, such that it's element can be
702
- changed. This is really because 9/10 times you'd be rendering this in a
703
- `Stack`, which already handles the `ul/li` couple.
704
-
705
- **FEATURES**
706
-
707
- ```jsx
708
- <Stack is="ul">> ></Stack>
709
- ```
710
-
711
- which already wraps each child in an `li`.
712
-
713
- ## 2.0.17
714
-
715
- ### Patch Changes
716
-
717
- - fbee5c0: AutoSuggest: Now has a full width wrapping box
718
-
719
- ## 2.0.16
720
-
721
- ### Patch Changes
722
-
723
- - 6d9e5b5: Reset: Table reset is no longer global. So use `<Box is="table" />`
724
-
725
- ```diff
726
- -<table>
727
- +<Box is="table">
728
- ```
729
-
730
- - 6d9e5b5: Inline: Supports alignX to position items on the x axis aka;
731
- `justifyContent`.
732
- - 6d9e5b5: Reset: Globally set overflowX to hidden
733
- - c90d645: Stepper: When pressing Home/End it should no longer jump to the end
734
- of the page.
735
- - 6d9e5b5: Table: Introduces Tables
736
-
737
- Implemented as a css-grid, so column widths are to be defined in
738
- gridTemplateColumns. All components in this scope accept a ref property.
739
-
740
- Please note! In order to remain structurally WAI-ARIA compliant; the
741
- `TableRowGroup` must be placed around the _traditional_ `tbody` and `thead`.
742
-
743
- **FEATURES**
744
-
745
- ### Example
746
-
747
- ```jsx
748
- <Table columnTemplate="repeat(2, auto)">></Table>
749
- ```
750
-
751
- ### Sticky Header
752
-
753
- ```diff
754
- -<Table columnTemplate="repeat(2, auto)">
755
- +<Table stickyHead columnTemplate="repeat(2, auto)">
756
- >
757
- >
758
- >
759
- ```
760
-
761
- ### Sorting Columns
762
-
763
- ```diff
764
- <Table columnTemplate="repeat(2, auto)">
765
- >
766
- >
767
- - <TableHeadCell>Col 1</TableHeadCell>
768
- + <TableHeadCell sort="asc" onSortChange={}>Col 1</TableHeadCell>
769
- ```
770
-
771
- A column can only have _sort_ functionality when the `sort` prop is set to
772
- either `asc | desc | none`. An `onSortChange` callback when applied to the
773
- cell that allows observing this. This callback will send the _new_ sort to
774
- have applied to it. This is a stateless component, so make sure you wire the
775
- value back into `sort`.
776
-
777
- ### Row Clicking
778
-
779
- ```diff
780
- <Table columnTemplate="repeat(2, auto)">
781
- >
782
- - <TableRow>
783
- + <TableRow onClick={}>
784
- >
785
- ```
786
-
787
- Please note; that if you're also tracking clicks of cell buttons, to check
788
- the currentTarget of whether to apply the callback.
789
-
790
- ## 2.0.15
791
-
792
- ### Patch Changes
793
-
794
- - 5353a1a: Box: Added textAlign as a prop
795
-
796
- Worth noting that we want to deprecate the use of `align` in our
797
- `useTextStyles`. As it's now shifted to our box. The `align` prop will still
798
- remain on the `Text` component.
799
-
800
- **FEATURES**
801
-
802
- ```jsx
803
- <Box textAlign="center" />
804
- ```
805
-
806
- - 715b035: Box: Added userSelect prop to disable selecting its content
807
- - 987a68b: VisuallyHidden: Added brand-new component to visually hide content
808
-
809
- **FEATURES**
810
-
811
- ```jsx
812
- <VisuallyHidden>hello screen reader</VisuallyHidden>
813
- <Text>
814
- o
815
- >
816
- </Text>
817
- ```
818
-
819
- - e2f4a5b: Text: Allow setting a display override
820
-
821
- **FEATURES**
822
-
823
- ```jsx
824
- <Text is="span" display="inlineBlock">
825
- k
826
- </Text>
827
- ```
828
-
829
- - 175cb09: Icon: Child svg's are cloned and positioned to the size of the
830
- parent
831
-
832
- ## 2.0.14
833
-
834
- ### Patch Changes
835
-
836
- - 5428b9e: LoadingBox: Exposes height and display box props
837
-
838
- **FEATURES**
839
-
840
- ```jsx
841
- <LoadingBox height="full" display="inlineBlock" />
842
- ```
843
-
844
- - e3e5aa9: Box: Display prop inline-block renamed to inlineBlock to be more
845
- consistent
846
- - a6530d5: Box: Supports sending in a height prop
847
-
848
- ## 2.0.13
849
-
850
- ### Patch Changes
851
-
852
- - df453b2: Badge: Applies a whiteSpace nowrap to badges, and now truncates
853
- - 292692f: Section: Typing update such that width prop is actually optional
854
- - 52c424f: Inline: Now wrap properly, and support a prop to enable/disable it.
855
- - e0a4291: Box: Introduces flex style props to `Box` and `useBoxStyles`
856
-
857
- **FEATURES**
858
-
859
- You can now send in `alignItems`,`flexDirection`, `flexGrow`, `flexShrink`,
860
- `flexWrap`, `justifyContent` to Box and useBoxStyles for whatever you like.
861
-
862
- We have specifically chosen `alignItems`, `flexDirection`, `justifyContent`
863
- as Responsive candidates as we've found the others won't have a responsive
864
- use case.
865
-
866
- ```jsx
867
- <Box display="flex" width="full" justifyContent="center">
868
- >
869
- </Box>
870
- ```
871
-
872
- ## 2.0.12
873
-
874
- ### Patch Changes
875
-
876
- - 62c7111: Stack: A Renamed prop from spacing to space
877
-
878
- eg:
879
-
880
- ```diff
881
- <Stack is="ul"
882
- - spacing="3">
883
- + space="3">
884
- >
885
- >
886
- >
887
- </Stack>
888
- ```
889
-
890
- - 822863d: Inline: Supports inline dividers between elements.
891
-
892
- Supports, text, numbers or elements.
893
-
894
- **FEATURES**
895
-
896
- ```jsx
897
- <Inline dividers>> > > ></Inline>
898
- ```
899
-
900
- - a0fce92: Text: Exposes a new white-space nowrap prop
901
-
902
- This is an **experimental** prop, we know of one use-case where this can be
903
- used, but will likely also appear on the Box.
904
-
905
- So do let us know if you're using this, and it hasnt worked in your
906
- use-case.
907
-
908
- **FEATURES**
909
-
910
- You can now pass a `noWrap` prop to any `<Text />` which applies a
911
- `white-space: nowrap` to itself.
912
-
913
- ```jsx
914
- <Text noWrap>I wont wrap</Text>
915
- ```
916
-
917
- ## 2.0.11
918
-
919
- ### Patch Changes
920
-
921
- - 358fb4b: Tabs: Incorrectly importing treat files inside treat
922
-
923
- ## 2.0.10
924
-
925
- ### Patch Changes
926
-
927
- - 0b6c621: Tabs: Adds `scrollable`, which scrolls the tabs horizontally on
928
- smaller devices.
929
-
930
- **FEATURES**
931
-
932
- ```jsx
933
- <Tabs>> > > > > ></Tabs>
934
- ```
935
-
936
- - 729dfdd: Input: Notchless inputs will no longer break when part of a flex
937
- container
938
-
939
- ## 2.0.9
940
-
941
- ### Patch Changes
942
-
943
- - 0b59110: Flatten fragments when provided as children
944
-
945
- Will now support fragments and otherwise boolean children that previously
946
- would not have worked:
947
-
948
- ```jsx
949
- <Stack>> ( > > > > > } ></Stack>
950
- ```
951
-
952
- > which would have the past not had lines 1-3 spaced evenly.
953
-
954
- this was also true for: `Actions`, `Inline`, `TabList`, `TabPanes` and
955
- `Stack`. Which have been rectified.
956
-
957
- ## 2.0.8
958
-
959
- ### Patch Changes
960
-
961
- - 55ee559: Positioner: Removes usingPositioner
962
-
963
- **FEATURES**
964
-
965
- Removes the usingPositioner HoC in favour of a plain-old component that'll
966
- gives us the ability to send _all_ our Box props onto it. It also aids in
967
- corrected aria-\* props.
968
-
969
- ## 2.0.7
970
-
971
- ### Patch Changes
972
-
973
- - b9a2c45: InputBase: Allow for notchless inputs
974
-
975
- **FEATURES**
976
-
977
- Sometimes the notch behavior won't work because of its context - much like
978
- an input that sits within a table, where the column already denotes what
979
- should be entered into the input.
980
-
981
- > Please be aware that this should be avoided, as in most cases we should
982
- > notch, so a user knows what's in the input especially when its defaulted.
983
-
984
- - 7736914: Box: Adds an overflow prop and allows className to be clsx
985
- compatible
986
-
987
- **FEATURES**
988
-
989
- `ClassName` can now be sent in directly to Box instead of through clsx.
990
-
991
- eg.
992
-
993
- ```diff
994
- - <Box className={clsx(styles.one, styles.two)}>
995
- + <Box className={[styles.one, styles.two]}>
996
- o
997
- </Box>
998
-
999
- - <Box className={clsx({[styles.one]: maybeDoMe}, styles.two)}>
1000
- + <Box className={[{[styles.one]: maybeDoMe}, styles.two]}>
1001
- o
1002
- </Box>
1003
- ```
1004
-
1005
- - 17d2354: Stack: Expose the Box width on Stack
1006
- - 475601c: Tabs: Now always fills the width of its parent
1007
-
1008
- ## 2.0.6
1009
-
1010
- ### Patch Changes
1011
-
1012
- - d1c6b09: responsiveProps: Fix argument where void is not the same as
1013
- undefined
1014
-
1015
- ## 2.0.5
1016
-
1017
- ### Patch Changes
1018
-
1019
- - 4df7e83: AutoSuggest: Introduce a autoWidth prop that either will size the
1020
- flyout to either the width of the children, or the input.
1021
-
1022
- **FEATURES**
1023
-
1024
- `<AutoSuggest>` can now be given a `autoWidth` prop that will auto the width
1025
- in relation to setting the width, or for it to be automatic.
1026
-
1027
- - `autoWidth={true}` means, size the flyout to the width of flyout children "automatically"
1028
- - `autoWidth={false}` means to set to the width of the select input.
1029
-
1030
- eg:
1031
-
1032
- ```jsx
1033
-
1034
- // size to the width of the flyout children
1035
- <AutoSuggest
1036
- "
1037
- }
1038
- h
1039
- />
1040
-
1041
- // size to the width of the input (current behaviour)
1042
- <AutoSuggest
1043
- "
1044
- }
1045
- />
1046
-
1047
- ```
1048
-
1049
- - 378e5da: AutoSuggest: Input search types to remove the webkit clear button
1050
-
1051
- **FEATURES**
1052
-
1053
- When we reset input type searches, we incorrectly "hid" the webkit search
1054
- buttons, this aims to correct that.
1055
-
1056
- - eb3cf9d: AutoSuggest: Support the usage of passing a ref down to the
1057
- implemented input
1058
-
1059
- **FEATURES**
1060
-
1061
- `<AutoSuggest>` can now be given a ref which will be passed down to the
1062
- underlying input.
1063
-
1064
- eg:
1065
-
1066
- ```tsx
1067
- const myRef = useRef<HTMLInputElement | null>(null);
1068
-
1069
- <AutoSuggest ref={myRef} value={null} placeholder={'My AutoSuggest'} />;
1070
- ```
1071
-
1072
- - bab9cd2: InputBase: Always full width the input wrapper
1073
-
1074
- ## 2.0.4
1075
-
1076
- ### Patch Changes
1077
-
1078
- - 801c254: Positioner: Uses Popper.js to run the flyouts.
1079
-
1080
- **FEATURES**
1081
-
1082
- **`<Positioner />`** uses Popper.js, as it offers a wide array of
1083
- performance improvements and caters for some edge-cases, like when the'yre
1084
- nested etc.
1085
-
1086
- Few stats: we use popper-lite which is rated at 3.73Kb minified and
1087
- compressed. Now getOptimalPosition was about 1.3Kb minified and compressed.
1088
- However, it had a few holes, and when I looked at what it'll take to
1089
- implement the features to solve the holes - we'd probably still beat the
1090
- file size, but not by much...
1091
-
1092
- So with that once internal bandwidth increase this'll likely be revisited -
1093
- and perhaps utilize `detectOverflow` as a roll-your-own solution.
1094
-
1095
- - 0964a1d: useNegativeMargin: Correctly fill columns to their parents width
1096
-
1097
- **BUG FIXES** Columns were not completely filling its parent due to negative
1098
- margins
1099
-
1100
- ## 2.0.3
1101
-
1102
- ### Patch Changes
1103
-
1104
- - 15f486c: Modals: Now uses a shared `<Portal />` component.
1105
-
1106
- **FEATURES**
1107
-
1108
- **`<Portal />`** component allowing for shared Portaling of components to
1109
- inside a container.
1110
-
1111
- Responsibility: Rendering a child into a container, which by default is
1112
- `window.body`.
1113
-
1114
- eg:
1115
-
1116
- ```jsx
1117
- // Input
1118
- <div>
1119
- g
1120
- >
1121
- >
1122
- >
1123
- </div>
1124
-
1125
- // Result
1126
- <body>
1127
- >
1128
- >
1129
- </body>
1130
- ```
1131
-
1132
- **`<Modal />`** is in charge of handling a backdrop - which also directly
1133
- uses the new `<Portal>` component.
1134
-
1135
- Responsibility: Renders a child into a Portal, with a backdrop and correct
1136
- aria attributes applied.
1137
-
1138
- You can give this component `hideBackdrop?: boolean` prop to disable the
1139
- backdrop. Also; if you wish to remove the fadeIn/fadeOut animation, a
1140
- `transition?: boolean` can also be provided.
1141
-
1142
- - Removes `<ModalPortal />` in favor of `<Modal />`
1143
- - Deprecated `withModal`, which could simply just use the Modal component
1144
-
1145
- Worth noting that a `role="presentation"` is applied to the `Modal`, so
1146
- consumers should be applying a `role="none presentation"` to their direct
1147
- parent, if you wish content to be read out.
1148
-
1149
- eg:
1150
-
1151
- ```jsx
1152
- <Modal isOpen={true} onRequestClose={function() {}}>
1153
- >
1154
- </Modal>
1155
- ```
1156
-
1157
- ## 2.0.2
1158
-
1159
- ### Patch Changes
1160
-
1161
- - 6c3ae76: Tabs: Support stretching tablist items to the width of the
1162
- container
1163
-
1164
- **FEATURES**
1165
-
1166
- **`<TabList />`**
1167
-
1168
- In small contexts, like sidebars, or mobile viewports with minimal tablist
1169
- items. It makes sense to stretch items to meet the width of the container.
1170
-
1171
- eg:
1172
-
1173
- ```
1174
- <Tabs>
1175
- >
1176
- >
1177
- >
1178
- >
1179
- </Tabs>
1180
- ```
1181
-
1182
- - 302405b: Alert: Inline is now full width
1183
-
1184
- **Features**
1185
-
1186
- `<Alert />`
1187
-
1188
- When passing the `inline` prop, in the past it was maxWidth 640px - which in
1189
- inline contexts, you'd want to span the entire width of its container.
1190
-
1191
- - 3bcf649: Adds the Inline and Section layout components
1192
-
1193
- **Features**
1194
-
1195
- Breakpoints have been amended to follow (mobile first):
1196
-
1197
- - `tablet` is iPad Mini width less 25%, so any device greater than 768px
1198
- - `desktop` we are considering as iPad Pro width less 25%, so any device larger than 1024px
1199
- - `largeDesktop` is taken as a 1920x1080 less 25%, so any device larger than 1440px
1200
-
1201
- all at landscape.
1202
-
1203
- **`<Inline />`**
1204
-
1205
- When you're wanting to `inline` something. Like a badge list; you can use
1206
- use the `<Inline />` component to solve this.
1207
-
1208
- eg:
1209
-
1210
- ```jsx
1211
- <Inline>> > ></Inline>
1212
- ```
1213
-
1214
- **`<Section />`**
1215
-
1216
- A component that wraps its children, setting a `max-width` and centering on
1217
- the screen. This will generally sit high up in the component tree. It offers
1218
- 2 widths `medium` and `large`. The medium width is intended for smaller more
1219
- concise layouts - like our Afterpay landing, or Uber landing. Were as the
1220
- `large` will probably be more for our Leads or Bookings list screens.
1221
-
1222
- When coupled with `Columns` we effectively have a full fletched layout
1223
- system, that can 🤷‍ replace our `ContainedLayout` and `ContentOnlyLayout`
1224
- internal components.
1225
-
1226
- To solve the `ThreeColumnLayout` and `TwoColumnLayout` we can build internal
1227
- abstractions that extend this perhaps.
1228
-
1229
- eg:
1230
-
1231
- ```jsx
1232
- <Section width="medium" paddingX={['3', , 'none']}>
1233
- >
1234
- </Section>
1235
- ```
1236
-
1237
- - f9dac97: Inline: Supporting alignY responsive prop StarRating: Consumes
1238
- `<Inline />`
1239
-
1240
- **FEATURES**
1241
-
1242
- **`<Inline />`**
1243
-
1244
- Now supports an alignY responsive prop to vertically center its items to
1245
- either `top | center | bottom`, eg: `<Inline alignY="center">`
1246
-
1247
- **`<StarRating />`**
1248
-
1249
- Uses the `<Inline />` component instead of columns, so should use less DOM
1250
-
1251
- ## 2.0.1
1252
-
1253
- ### Patch Changes
1254
-
1255
- - c66b727: Anchors are now cursor pointer by default
1256
-
1257
- Seeing as we use `<TextLink />` or `<Box is="a" href="" />` in a few places,
1258
- it only makes sense to use `a { cursor: pointer }`.
1259
-
1260
- - 57b8cf3: Actions now filters out undefined or null children
1261
-
1262
- **`<Actions />`**
1263
-
1264
- Removed the className prop, this will slowly start happening across the
1265
- stack.
1266
-
1267
- ```diff
1268
- -<Actions className="test">
1269
- +<Actions>
1270
- .
1271
- </Actions>
1272
- ```
1273
-
1274
- ## 2.0.0
1275
-
1276
- ### Major Changes
1277
-
1278
- - 8881bdd: Styles are now `treat` driven.
1279
-
1280
- **A few changes**
1281
-
1282
- - `OverdriveProvider` must now be provider
1283
- - `ToastProvider` must also be provided when using a `useToast`
1284
- - `@autoguru/overdrive/reset` must be given first.
1285
-
1286
- ... and a whole series of other things. Please consult to the PR (#273) to
1287
- get a better idea of what's changed.
1288
-
1289
- ### Patch Changes
1290
-
1291
- - 230a3cd: Forces explicit text colours to Button hover and active states