@telus-uds/components-base 0.0.2-prerelease.3 → 0.0.2-prerelease.7

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 (266) hide show
  1. package/.ultra.cache.json +1 -0
  2. package/CHANGELOG.md +55 -0
  3. package/__fixtures__/testTheme.js +528 -42
  4. package/__tests__/Button/ButtonBase.test.jsx +3 -32
  5. package/__tests__/Checkbox/Checkbox.test.jsx +94 -0
  6. package/__tests__/Divider/Divider.test.jsx +26 -5
  7. package/__tests__/Feedback/Feedback.test.jsx +42 -0
  8. package/__tests__/FlexGrid/Col.test.jsx +5 -0
  9. package/__tests__/InputSupports/InputSupports.test.jsx +50 -0
  10. package/__tests__/List/List.test.jsx +60 -0
  11. package/__tests__/Radio/Radio.test.jsx +87 -0
  12. package/__tests__/Select/Select.test.jsx +93 -0
  13. package/__tests__/Skeleton/Skeleton.test.jsx +61 -0
  14. package/__tests__/Spacer/Spacer.test.jsx +63 -0
  15. package/__tests__/StackView/StackView.test.jsx +216 -0
  16. package/__tests__/StackView/StackWrap.test.jsx +47 -0
  17. package/__tests__/StackView/getStackedContent.test.jsx +295 -0
  18. package/__tests__/Tags/Tags.test.jsx +328 -0
  19. package/__tests__/TextInput/TextArea.test.jsx +34 -0
  20. package/__tests__/TextInput/TextInputBase.test.jsx +120 -0
  21. package/__tests__/Tooltip/Tooltip.test.jsx +65 -0
  22. package/__tests__/Tooltip/getTooltipPosition.test.js +79 -0
  23. package/__tests__/utils/useCopy.test.js +31 -0
  24. package/__tests__/utils/useResponsiveProp.test.jsx +202 -0
  25. package/__tests__/utils/{spacing.test.jsx → useSpacingScale.test.jsx} +1 -1
  26. package/__tests__/utils/useUniqueId.test.js +31 -0
  27. package/jest.config.js +8 -2
  28. package/lib/Box/Box.js +7 -2
  29. package/lib/Button/Button.js +10 -3
  30. package/lib/Button/ButtonBase.js +79 -75
  31. package/lib/Button/ButtonGroup.js +24 -49
  32. package/lib/Button/ButtonLink.js +5 -0
  33. package/lib/Checkbox/Checkbox.js +308 -0
  34. package/lib/Checkbox/CheckboxInput.native.js +6 -0
  35. package/lib/Checkbox/CheckboxInput.web.js +57 -0
  36. package/lib/Checkbox/index.js +2 -0
  37. package/lib/Divider/Divider.js +40 -2
  38. package/lib/Feedback/Feedback.js +132 -0
  39. package/lib/Feedback/index.js +2 -0
  40. package/lib/Icon/Icon.js +9 -6
  41. package/lib/Icon/IconText.js +72 -0
  42. package/lib/Icon/index.js +2 -1
  43. package/lib/InputLabel/InputLabel.js +88 -0
  44. package/lib/InputLabel/LabelContent.native.js +8 -0
  45. package/lib/InputLabel/LabelContent.web.js +17 -0
  46. package/lib/InputLabel/index.js +2 -0
  47. package/lib/InputSupports/InputSupports.js +90 -0
  48. package/lib/InputSupports/index.js +2 -0
  49. package/lib/InputSupports/propTypes.js +55 -0
  50. package/lib/Link/ChevronLink.js +35 -10
  51. package/lib/Link/InlinePressable.native.js +78 -0
  52. package/lib/Link/InlinePressable.web.js +32 -0
  53. package/lib/Link/Link.js +11 -10
  54. package/lib/Link/LinkBase.js +69 -124
  55. package/lib/Link/TextButton.js +20 -9
  56. package/lib/Link/index.js +2 -1
  57. package/lib/List/List.js +52 -0
  58. package/lib/List/ListItem.js +207 -0
  59. package/lib/List/index.js +2 -0
  60. package/lib/Pagination/PageButton.js +3 -26
  61. package/lib/Pagination/SideButton.js +32 -42
  62. package/lib/Radio/Radio.js +291 -0
  63. package/lib/Radio/RadioInput.native.js +6 -0
  64. package/lib/Radio/RadioInput.web.js +59 -0
  65. package/lib/Radio/index.js +2 -0
  66. package/lib/Select/Group.native.js +14 -0
  67. package/lib/Select/Group.web.js +18 -0
  68. package/lib/Select/Item.native.js +9 -0
  69. package/lib/Select/Item.web.js +15 -0
  70. package/lib/Select/Picker.native.js +87 -0
  71. package/lib/Select/Picker.web.js +63 -0
  72. package/lib/Select/Select.js +272 -0
  73. package/lib/Select/index.js +6 -0
  74. package/lib/Skeleton/Skeleton.js +119 -0
  75. package/lib/Skeleton/index.js +2 -0
  76. package/lib/Spacer/Spacer.js +98 -0
  77. package/lib/Spacer/index.js +2 -0
  78. package/lib/StackView/StackView.js +107 -0
  79. package/lib/StackView/StackWrap.js +32 -0
  80. package/lib/StackView/StackWrap.native.js +3 -0
  81. package/lib/StackView/StackWrapBox.js +90 -0
  82. package/lib/StackView/StackWrapGap.js +50 -0
  83. package/lib/StackView/common.js +30 -0
  84. package/lib/StackView/getStackedContent.js +111 -0
  85. package/lib/StackView/index.js +5 -0
  86. package/lib/Tags/Tags.js +217 -0
  87. package/lib/Tags/index.js +2 -0
  88. package/lib/TextInput/TextArea.js +82 -0
  89. package/lib/TextInput/TextInput.js +54 -0
  90. package/lib/TextInput/TextInputBase.js +229 -0
  91. package/lib/TextInput/index.js +3 -0
  92. package/lib/TextInput/propTypes.js +31 -0
  93. package/lib/ThemeProvider/useThemeTokens.js +54 -3
  94. package/lib/ToggleSwitch/ToggleSwitch.js +1 -1
  95. package/lib/Tooltip/Backdrop.native.js +35 -0
  96. package/lib/Tooltip/Backdrop.web.js +52 -0
  97. package/lib/Tooltip/Tooltip.js +315 -0
  98. package/lib/Tooltip/dictionary.js +8 -0
  99. package/lib/Tooltip/getTooltipPosition.js +164 -0
  100. package/lib/Tooltip/index.js +2 -0
  101. package/lib/TooltipButton/TooltipButton.js +64 -0
  102. package/lib/TooltipButton/index.js +2 -0
  103. package/lib/Typography/Typography.js +4 -23
  104. package/lib/ViewportProvider/ViewportProvider.js +25 -0
  105. package/lib/ViewportProvider/index.js +2 -43
  106. package/lib/ViewportProvider/useViewport.js +3 -0
  107. package/lib/ViewportProvider/useViewportListener.js +43 -0
  108. package/lib/index.js +15 -1
  109. package/lib/utils/a11y/index.js +1 -0
  110. package/lib/utils/a11y/textSize.js +33 -0
  111. package/lib/utils/index.js +7 -1
  112. package/lib/utils/info/index.js +7 -0
  113. package/lib/utils/info/platform/index.js +11 -0
  114. package/lib/utils/info/platform/platform.android.js +1 -0
  115. package/lib/utils/info/platform/platform.ios.js +1 -0
  116. package/lib/utils/info/platform/platform.native.js +4 -0
  117. package/lib/utils/info/platform/platform.web.js +1 -0
  118. package/lib/utils/info/versions.js +5 -0
  119. package/lib/utils/input.js +3 -1
  120. package/lib/utils/pressability.js +92 -0
  121. package/lib/utils/propTypes.js +77 -8
  122. package/lib/utils/useCopy.js +16 -0
  123. package/lib/utils/useResponsiveProp.js +47 -0
  124. package/lib/utils/{spacing/useSpacingScale.js → useSpacingScale.js} +30 -9
  125. package/lib/utils/useUniqueId.js +12 -0
  126. package/package.json +7 -5
  127. package/release-context.json +4 -4
  128. package/src/Box/Box.jsx +4 -2
  129. package/src/Button/Button.jsx +6 -3
  130. package/src/Button/ButtonBase.jsx +72 -75
  131. package/src/Button/ButtonGroup.jsx +22 -39
  132. package/src/Button/ButtonLink.jsx +11 -2
  133. package/src/Checkbox/Checkbox.jsx +275 -0
  134. package/src/Checkbox/CheckboxInput.native.jsx +6 -0
  135. package/src/Checkbox/CheckboxInput.web.jsx +55 -0
  136. package/src/Checkbox/index.js +3 -0
  137. package/src/Divider/Divider.jsx +38 -3
  138. package/src/Feedback/Feedback.jsx +108 -0
  139. package/src/Feedback/index.js +3 -0
  140. package/src/Icon/Icon.jsx +11 -6
  141. package/src/Icon/IconText.jsx +63 -0
  142. package/src/Icon/index.js +2 -1
  143. package/src/InputLabel/InputLabel.jsx +99 -0
  144. package/src/InputLabel/LabelContent.native.jsx +6 -0
  145. package/src/InputLabel/LabelContent.web.jsx +13 -0
  146. package/src/InputLabel/index.js +3 -0
  147. package/src/InputSupports/InputSupports.jsx +86 -0
  148. package/src/InputSupports/index.js +3 -0
  149. package/src/InputSupports/propTypes.js +44 -0
  150. package/src/Link/ChevronLink.jsx +28 -7
  151. package/src/Link/InlinePressable.native.jsx +73 -0
  152. package/src/Link/InlinePressable.web.jsx +37 -0
  153. package/src/Link/Link.jsx +17 -13
  154. package/src/Link/LinkBase.jsx +62 -139
  155. package/src/Link/TextButton.jsx +25 -11
  156. package/src/Link/index.js +2 -1
  157. package/src/List/List.jsx +47 -0
  158. package/src/List/ListItem.jsx +187 -0
  159. package/src/List/index.js +3 -0
  160. package/src/Pagination/PageButton.jsx +3 -17
  161. package/src/Pagination/SideButton.jsx +27 -38
  162. package/src/Radio/Radio.jsx +270 -0
  163. package/src/Radio/RadioInput.native.jsx +6 -0
  164. package/src/Radio/RadioInput.web.jsx +57 -0
  165. package/src/Radio/index.js +3 -0
  166. package/src/Select/Group.native.jsx +14 -0
  167. package/src/Select/Group.web.jsx +15 -0
  168. package/src/Select/Item.native.jsx +10 -0
  169. package/src/Select/Item.web.jsx +11 -0
  170. package/src/Select/Picker.native.jsx +95 -0
  171. package/src/Select/Picker.web.jsx +67 -0
  172. package/src/Select/Select.jsx +265 -0
  173. package/src/Select/index.js +8 -0
  174. package/src/Skeleton/Skeleton.jsx +101 -0
  175. package/src/Skeleton/index.js +3 -0
  176. package/src/Spacer/Spacer.jsx +91 -0
  177. package/src/Spacer/index.js +3 -0
  178. package/src/StackView/StackView.jsx +104 -0
  179. package/src/StackView/StackWrap.jsx +33 -0
  180. package/src/StackView/StackWrap.native.jsx +4 -0
  181. package/src/StackView/StackWrapBox.jsx +93 -0
  182. package/src/StackView/StackWrapGap.jsx +49 -0
  183. package/src/StackView/common.jsx +28 -0
  184. package/src/StackView/getStackedContent.jsx +106 -0
  185. package/src/StackView/index.js +6 -0
  186. package/src/Tags/Tags.jsx +206 -0
  187. package/src/Tags/index.js +3 -0
  188. package/src/TextInput/TextArea.jsx +78 -0
  189. package/src/TextInput/TextInput.jsx +52 -0
  190. package/src/TextInput/TextInputBase.jsx +220 -0
  191. package/src/TextInput/index.js +4 -0
  192. package/src/TextInput/propTypes.js +29 -0
  193. package/src/ThemeProvider/useThemeTokens.js +54 -3
  194. package/src/ToggleSwitch/ToggleSwitch.jsx +1 -1
  195. package/src/Tooltip/Backdrop.native.jsx +33 -0
  196. package/src/Tooltip/Backdrop.web.jsx +60 -0
  197. package/src/Tooltip/Tooltip.jsx +294 -0
  198. package/src/Tooltip/dictionary.js +8 -0
  199. package/src/Tooltip/getTooltipPosition.js +161 -0
  200. package/src/Tooltip/index.js +3 -0
  201. package/src/TooltipButton/TooltipButton.jsx +53 -0
  202. package/src/TooltipButton/index.js +3 -0
  203. package/src/Typography/Typography.jsx +4 -19
  204. package/src/ViewportProvider/ViewportProvider.jsx +21 -0
  205. package/src/ViewportProvider/index.jsx +2 -41
  206. package/src/ViewportProvider/useViewport.js +5 -0
  207. package/src/ViewportProvider/useViewportListener.js +43 -0
  208. package/src/index.js +15 -1
  209. package/src/utils/a11y/index.js +1 -0
  210. package/src/utils/a11y/textSize.js +30 -0
  211. package/src/utils/index.js +8 -1
  212. package/src/utils/info/index.js +8 -0
  213. package/src/utils/info/platform/index.js +11 -0
  214. package/src/utils/info/platform/platform.android.js +1 -0
  215. package/src/utils/info/platform/platform.ios.js +1 -0
  216. package/src/utils/info/platform/platform.native.js +4 -0
  217. package/src/utils/info/platform/platform.web.js +1 -0
  218. package/src/utils/info/versions.js +6 -0
  219. package/src/utils/input.js +2 -1
  220. package/src/utils/pressability.js +92 -0
  221. package/src/utils/propTypes.js +97 -13
  222. package/src/utils/useCopy.js +13 -0
  223. package/src/utils/useResponsiveProp.js +50 -0
  224. package/src/utils/{spacing/useSpacingScale.js → useSpacingScale.js} +25 -10
  225. package/src/utils/useUniqueId.js +14 -0
  226. package/stories/A11yText/A11yText.stories.jsx +11 -5
  227. package/stories/ActivityIndicator/ActivityIndicator.stories.jsx +11 -2
  228. package/stories/Box/Box.stories.jsx +29 -2
  229. package/stories/Button/Button.stories.jsx +21 -20
  230. package/stories/Button/ButtonGroup.stories.jsx +2 -1
  231. package/stories/Button/ButtonLink.stories.jsx +6 -4
  232. package/stories/Card/Card.stories.jsx +13 -1
  233. package/stories/Checkbox/Checkbox.stories.jsx +71 -0
  234. package/stories/Divider/Divider.stories.jsx +26 -2
  235. package/stories/ExpandCollapse/ExpandCollapse.stories.jsx +74 -79
  236. package/stories/Feedback/Feedback.stories.jsx +96 -0
  237. package/stories/FlexGrid/01 FlexGrid.stories.jsx +20 -7
  238. package/stories/Icon/Icon.stories.jsx +11 -3
  239. package/stories/InputLabel/InputLabel.stories.jsx +42 -0
  240. package/stories/Link/ChevronLink.stories.jsx +20 -4
  241. package/stories/Link/Link.stories.jsx +39 -3
  242. package/stories/Link/TextButton.stories.jsx +24 -2
  243. package/stories/List/List.stories.jsx +117 -0
  244. package/stories/Pagination/Pagination.stories.jsx +28 -14
  245. package/stories/Radio/Radio.stories.jsx +113 -0
  246. package/stories/Select/Select.stories.jsx +55 -0
  247. package/stories/SideNav/SideNav.stories.jsx +17 -2
  248. package/stories/Skeleton/Skeleton.stories.jsx +36 -0
  249. package/stories/Spacer/Spacer.stories.jsx +38 -0
  250. package/stories/StackView/StackView.stories.jsx +75 -0
  251. package/stories/StackView/StackWrap.stories.jsx +64 -0
  252. package/stories/Tags/Tags.stories.jsx +69 -0
  253. package/stories/TextInput/TextArea.stories.jsx +100 -0
  254. package/stories/TextInput/TextInput.stories.jsx +103 -0
  255. package/stories/ToggleSwitch/ToggleSwitch.stories.jsx +16 -3
  256. package/stories/Tooltip/Tooltip.stories.jsx +81 -0
  257. package/stories/TooltipButton/TooltipButton.stories.jsx +11 -0
  258. package/stories/Typography/Typography.stories.jsx +12 -3
  259. package/stories/platform-supports.web.jsx +1 -1
  260. package/stories/supports.jsx +110 -14
  261. package/lib/Pagination/useCopy.js +0 -10
  262. package/lib/utils/spacing/index.js +0 -2
  263. package/lib/utils/spacing/utils.js +0 -32
  264. package/src/Pagination/useCopy.js +0 -7
  265. package/src/utils/spacing/index.js +0 -3
  266. package/src/utils/spacing/utils.js +0 -28
@@ -0,0 +1 @@
1
+ {"files":{"lib":"1637690204304.1897","node_modules":"1637690170007.9678","CHANGELOG.md":"1812b97d63bc48032025736a21b3688ebda3aad9","README.md":"acc5433a698785066c3daa62811b6efad2195525","__fixtures__/Theme.jsx":"98540416fcd0b932d18083f9256ccba8ff559cf4","__fixtures__/Viewport.jsx":"c9b2af9a0786fbe2445e77e5da76ef4c500f04d3","__fixtures__/accessible.icon.svg":"bbb1d7e26cfae4e93a60bfbd4f007ddcf65fad1e","__fixtures__/testTheme.js":"166fd67a7c84561d8e165a8ddc738f25212fc1a5","__tests__/A11yText/A11yText.test.jsx":"bb544fd8f00c2e6135588049c62bf5910f9ffcda","__tests__/ActivityIndicator/ActivityIndicator.test.jsx":"97743ff5bc82c2fb537b0ab76f578d1f5b33c045","__tests__/Box/Box.test.jsx":"5635f1b28e1bf5b07c09bc31218bbb90533445f9","__tests__/Button/Button.test.jsx":"c5b7e97ffb7171ce6e9ceaa4d6c6e6cbd78562e7","__tests__/Button/ButtonBase.test.jsx":"f8cf3ecdbafcea37c7f9f57ca5060c18b17dc56f","__tests__/Button/ButtonGroup.test.jsx":"9fab9933ee8cd17361b6e22a6d59e8a64c5ba482","__tests__/Button/ButtonLink.test.jsx":"60200e31dcabcde9f800d9c56cabcfa931168518","__tests__/Card/Card.test.jsx":"627cbf03d2bbf569bd29e33345d79f8cefaedfd1","__tests__/Checkbox/Checkbox.test.jsx":"9c3b4e6e4756836f9bf2c661d43f90b3d9e4feeb","__tests__/Divider/Divider.test.jsx":"026de7361850866ffe8f553d10834e6dc835417b","__tests__/ExpandCollapse/ExpandCollapse.test.jsx":"9e85e341a050ee10f15cdd5a7a0faba0629be2fd","__tests__/Feedback/Feedback.test.jsx":"c26bcd8a8b528dd45a656fb58e157e759b7c4284","__tests__/FlexGrid/Col.test.jsx":"c5c224c841d87e79e8feccc297d4ee2dd0075a09","__tests__/FlexGrid/FlexGrid.test.jsx":"f7cd0601b26c39e6113ae4068022c6ea4646f731","__tests__/FlexGrid/Row.test.jsx":"084735ca2082515a1ebfe7c5e62bd7016efe922c","__tests__/Icon/Icon.test.jsx":"1fe7ad1002c5f9d627a4eb639ef4a8f3aae515eb","__tests__/InputSupports/InputSupports.test.jsx":"6590d5033b31b30fb6290bb2fe4e1c60696ce9a5","__tests__/Link/Link.test.jsx":"deb9ea0fbedbe8a214d1c3047c93b830bf8588b3","__tests__/Link/LinkBase.test.jsx":"fc19b014a988512c41931434e9be3cf0bd8cfadf","__tests__/Link/TextButton.test.jsx":"e5653b75e6dece08d7f64a99e9880cbb21a61cbe","__tests__/List/List.test.jsx":"8ba93772fcf305c49d73fdddc66a51ec098169f1","__tests__/Pagination/Pagination.test.jsx":"c019229070390f963600f5fa4237300cd874d821","__tests__/Radio/Radio.test.jsx":"28fd22b9c8cecdeee15cf345645cfd5d42fb64ae","__tests__/Select/Select.test.jsx":"ae58e09250d15276a883c4fb5214825260082ee1","__tests__/SideNav/SideNav.test.jsx":"9c5548f7a6c891741a7e60a520dc4da2b54ecb82","__tests__/Skeleton/Skeleton.test.jsx":"4a00a884d362dd0b638cf044d894185160757465","__tests__/Spacer/Spacer.test.jsx":"6ab4f9c2e75409bbe6aeef3708bc28da1a06de7b","__tests__/StackView/StackView.test.jsx":"051e7bb2dcee923a610dbf547143d21e19a52616","__tests__/StackView/StackWrap.test.jsx":"f1c7e1f9f0d35bd76fd97e11bc36e8d86b8e47dd","__tests__/StackView/getStackedContent.test.jsx":"73d7bd8448641fea18ded75254d6ecc4bf04e836","__tests__/Tags/Tags.test.jsx":"8d9feb128dc15172f67b18ce1e3da090f559423b","__tests__/TextInput/TextArea.test.jsx":"37e56e251941ccdb1d175449e558a2e1508eeaaf","__tests__/TextInput/TextInputBase.test.jsx":"318f7fa1c7d841594326839cfc6324b98f08cfed","__tests__/ThemeProvider/useThemeTokens.test.jsx":"86febf0023161098a21aa08d0132a1df693de31a","__tests__/ToggleSwitch/ToggleSwitch.test.jsx":"e1372aae6c8b7a3d0c1aa7bf63fb0dc8773f51ad","__tests__/Tooltip/Tooltip.test.jsx":"6c88c6dfd4aa97994ec8686d986e149ba9de5d5a","__tests__/Tooltip/getTooltipPosition.test.js":"b9fb1a5f5849216de602a66b810435e2e95f71ec","__tests__/Typography/typography.test.jsx":"f63a1d7137cc3c981adb343abf2db6f8d88cfe3b","__tests__/utils/input.test.js":"7b05ed73d518d06775b3b1bc77f1e202976ee0df","__tests__/utils/useCopy.test.js":"b8c9c97697dc883a635c36f6faa5d95358788aa0","__tests__/utils/useResponsiveProp.test.jsx":"d1fe7f195df30c7623f5c221b59ab421ded34769","__tests__/utils/useSpacingScale.test.jsx":"3acd952f4e8ca3673f7f2b25a8fbeb82f12d8bda","__tests__/utils/useUniqueId.test.js":"6886d52bb63423cc88293a60a2495c0934b4e447","babel.config.json":"dc58fbf56a37b1a38091fd4d4d2371bb4870c132","docs/Contributing.stories.mdx":"84e1387e266594e419b3bb103de5f7690d6194c0","docs/Fonts.stories.mdx":"ad571658ef1abc1d0a3ac29d389f4807dea8a9e8","docs/Icons.stories.mdx":"7963881168ba2b1601c612660705ec6da0179b53","docs/Introduction.stories.mdx":"d06d68f43ba897428570fb73d933967525359083","jest.config.js":"b47ac6f5c6a0b11e6c7c255dcf9f264307d18e9e","package.json":"a47d5eaf84d2d33412070893b47f350cf2988014","src/A11yInfoProvider/index.jsx":"79a84eef336aa678d2adfe290bfdb15aae94687e","src/A11yText/index.jsx":"8bc34f4cdb15fb64718e2d535592f598265326af","src/ActivityIndicator/Spinner.native.jsx":"c6c1f9985121ac8e5d511539f899d4bfb5a61f8c","src/ActivityIndicator/Spinner.web.jsx":"42f0d695466b5312f5972d47d0b5803c3c5648f5","src/ActivityIndicator/index.jsx":"15d219d42aef7f29e689086d4d82ac0e225cc611","src/ActivityIndicator/shared.js":"ca6120fee59f7a0986bb823cc92ad21966d7bb2e","src/BaseProvider/index.jsx":"14773240cde78b596fe391cc1ef2525d87e6b246","src/Box/Box.jsx":"9c7107924fbc7ebad76e531e3fb99c6b06d951ac","src/Box/index.js":"280496403f647db4bb7d563109b72799b281c104","src/Button/Button.jsx":"2932bdb73f8f01b075b6e7b66ab72ea095b33b49","src/Button/ButtonBase.jsx":"06005ce51dcb95bb43c3c5f0dba078279531a087","src/Button/ButtonGroup.jsx":"c3ead23d2d5f67f7c8b21c999431382b23e2ffc5","src/Button/ButtonLink.jsx":"7f9706a17f9b4d69333670d8de5165f71ebf3ef9","src/Button/index.js":"46aecee948aff0b9039676c156098100a3ee6033","src/Button/propTypes.js":"169417a67a57e635f976a342b2a89f1d91b01ed3","src/Card/Card.jsx":"45a0f40e0d74b8829bd15d82d4fb9b91a5b7b330","src/Card/index.js":"38c8461d9b3da3108d24b99925914e77488dd8a2","src/Checkbox/Checkbox.jsx":"04e3dd8d283040a52e9c4a90632aa3aa089b1cc8","src/Checkbox/CheckboxInput.native.jsx":"393cc6721b14ae67ec336ed94639ae764d4dd928","src/Checkbox/CheckboxInput.web.jsx":"88d356f8287c502ecec4413ecfcd8ea231f271b6","src/Checkbox/index.js":"af09e22d110c618618cba00d59c90791aa277614","src/Divider/Divider.jsx":"f517d4501df2f31b0cf6213089f54abf5d4c50ff","src/Divider/index.js":"fa2817652d45ec83ae079679fb5a8c9eb786fc43","src/ExpandCollapse/Accordion.jsx":"382109f00c5ceed895e0ca6cc08bb21725645af9","src/ExpandCollapse/Control.jsx":"059aa89b7bfd4f2225e34d7055515e6e1403fad2","src/ExpandCollapse/ExpandCollapse.jsx":"74f6f110fb21ed6ff40dc163a984ebd76d9c6428","src/ExpandCollapse/Panel.jsx":"f7dd1696451dab10dccac424d1b242a52c442287","src/ExpandCollapse/index.js":"e553901efa8408d1753ecc329ea1361e57084199","src/Feedback/Feedback.jsx":"a92cfc5b996bc8fb8d406f5c27fcbe516486c498","src/Feedback/index.js":"a1181a81414ebd8797eb48975b1a377319de4ad2","src/FlexGrid/Col/Col.jsx":"84ed0037b3b7844b45eb78648b993020846b8744","src/FlexGrid/Col/index.js":"a5e8b19d6f2f0cf20635a9407421bd2448f22a55","src/FlexGrid/FlexGrid.jsx":"a885fa3328f796e0624a5158baa8b378265d8fde","src/FlexGrid/Row/Row.jsx":"c6993dd57024baffb5c2f6d54534ae5ab2c39ae7","src/FlexGrid/Row/index.js":"136065433ab96251df79b75f213e0fd9de30e7b7","src/FlexGrid/helpers/index.js":"640ddf9188848b52b35736a615b4124708b5cbec","src/FlexGrid/index.js":"c5c40a5d8c40df5c1a25309aeee1f740df58e261","src/FlexGrid/providers/GutterContext.jsx":"f6fd8ed5a72cb7daf1b5faeb7d15675bd61aca41","src/Icon/Icon.jsx":"20c0883baf32451f63d823349f3bd26383900201","src/Icon/IconText.jsx":"ccbbfe8bdb9aedcc4770d506a93a1e15cd374090","src/Icon/index.js":"5a739d555dc14992a5f74ec4b2813f341fb36b62","src/InputLabel/InputLabel.jsx":"fcdd897d37fdf68e98624f9c486cae5193463bf3","src/InputLabel/LabelContent.native.jsx":"ca05199ac6793615fbe65f19a30ec4145a0303d1","src/InputLabel/LabelContent.web.jsx":"7766c99498dbf61b5ee3486741fcdeebcd4fcfb1","src/InputLabel/index.js":"d73f3f71f8afdaa74b4e8f0905f9f9b8815c89b1","src/InputSupports/InputSupports.jsx":"64bf7ca5aac2ce63aee48df42f34e62aec42b4a9","src/InputSupports/index.js":"5173f3d29b1d427836b20906608fc7e2fdb6bb17","src/InputSupports/propTypes.js":"e66e0dad9ed1931416b57ffc996daba1d5c125e5","src/Link/ChevronLink.jsx":"acd2363f419abfa8c60c5813ae02e0a7b269ee28","src/Link/InlinePressable.native.jsx":"995bf9c884c972cafa0b33564efb57c9504d9e57","src/Link/InlinePressable.web.jsx":"a55d82e1428ff56cbef68e4d6a177298fd61ecd0","src/Link/Link.jsx":"71869fd0b1458b8b3b9bca11e7861731d632abbb","src/Link/LinkBase.jsx":"fc45f87ecbbdb041be43827e7a7ce86a4c41924f","src/Link/TextButton.jsx":"a56911d540d4e071579674cdd710694fdc701fff","src/Link/index.js":"09d2787b9253295551e08326120969635c040b7a","src/List/List.jsx":"2d4c1581095e2e1ae723ba25da66b31f82f088e7","src/List/ListItem.jsx":"500f627d3f6ec6116b0627546c43769fecd918f9","src/List/index.js":"6cd88f9e42f35d8494a0a273250b3f349c88acbe","src/Pagination/PageButton.jsx":"2ce68be66c220923cf52e1cf0d647e79aa7137ae","src/Pagination/Pagination.jsx":"9d0aa65dc4acf042751ab252e1c46dd5b6df0ada","src/Pagination/SideButton.jsx":"26f6191ab6db248175a065744764ce5fb5870b0c","src/Pagination/dictionary.js":"ccfb5733071adfd9b8a067f407627461dce68a9a","src/Pagination/index.js":"1466412190cfefc75aaa042004374f9f19505c64","src/Pagination/usePagination.js":"ca67794bd989d870a9bf68acbdf4d847e19a0ded","src/Radio/Radio.jsx":"88a82011b0d044e2d30507e8b0d65a914686e256","src/Radio/RadioInput.native.jsx":"227eb3d2893549ba6a7a12a3f0d9a5b0ba9a5df8","src/Radio/RadioInput.web.jsx":"a0a8e4bc2d483d79b2ff91e15da582054ba38370","src/Radio/index.js":"9ec2ccf2c775bf061e00b53dca48a172383b064b","src/Select/Group.native.jsx":"e949aca728b9df2e73b0c0f03a78af1c0c64287b","src/Select/Group.web.jsx":"ed00f24c67e7979a6e5058775e81c62a8c810031","src/Select/Item.native.jsx":"3ae9bf5713525621674fa3db2f18dabed22c345a","src/Select/Item.web.jsx":"a82c7147e30f64c0fae2be100de060eafecd9bb1","src/Select/Picker.native.jsx":"6c115fe65101945cf2610b038cc69b6d6414ac56","src/Select/Picker.web.jsx":"fab65fafe5ec9542fe7554aee5a2a59eaced2a78","src/Select/Select.jsx":"5233d539be0c7e0e2f5e55abaf41fe6ff689a025","src/Select/index.js":"7169081eb3d414a76095b7f44c0f64460b7cd53e","src/SideNav/Item.jsx":"37b5fdaa69dcb412f57039c46f2883e98268da84","src/SideNav/ItemContent.jsx":"fd1d090470a79fedb8c991204c20668497e2e372","src/SideNav/ItemsGroup.jsx":"3da969daa7b6fe5aacdcb0fcd0ca6aedc0834ecf","src/SideNav/SideNav.jsx":"5d7a0984684f0621039b83d6121246fe39c6e11a","src/SideNav/index.js":"07bd001f3d51fcb378612a8f52ec51e0d37f207c","src/Skeleton/Skeleton.jsx":"785c8c2b04dadde3b8218c9a4b8a290bca5f8f9b","src/Skeleton/index.js":"032fa38fe8f7abfeca030301aa602a85a0f4e52c","src/Spacer/Spacer.jsx":"7591757948f1294a4c0f5e7dff3bdcf05b2ae30e","src/Spacer/index.js":"2674e6f47037b82fa9587b2cbb081dcbe42b506c","src/StackView/StackView.jsx":"1947659ba9ed19c5033b6789075b94c4e2619028","src/StackView/StackWrap.jsx":"3708de1bcc6eefb3fc91d7f15c9958452652b2ea","src/StackView/StackWrap.native.jsx":"44fc5973fea70b528b3597519a4d0aec9fdd323d","src/StackView/StackWrapBox.jsx":"f470c7fa9d8b9c8e0ba378e74e20dce696f0d56a","src/StackView/StackWrapGap.jsx":"3bdffe20fc63981edb8d0b45a3ca8433a4ea7fa4","src/StackView/common.jsx":"2582f176e5c91071747089ce498f07e9ba02b87c","src/StackView/getStackedContent.jsx":"73c5af1d52e71a86efd9c69fd510ef93519de22b","src/StackView/index.js":"8a3ad6ded46712f67e5a520220bdfee60cd262ed","src/Tags/Tags.jsx":"df2b93a6dab2e2051e4369c43a17065679dc4db0","src/Tags/index.js":"ad96785c7165bd33a85b0b2589292098e2baf6ca","src/TextInput/TextArea.jsx":"60aa9869b8aa923fdd1cf976215b26ea10a78ee3","src/TextInput/TextInput.jsx":"8d5d320ac09ad6db771c695e5c272277dd6e2100","src/TextInput/TextInputBase.jsx":"82fc41008ad80f51c78097cd4a15394b691171d3","src/TextInput/index.js":"437c6f792ac811cd8eb2a8d3d4bcd2cc1423bb46","src/TextInput/propTypes.js":"a3d489be19df6b9bfacc907874bd5508c0b3b1ef","src/ThemeProvider/ThemeProvider.jsx":"a1b3d40de1ba0237bba08f2fbc911be636f64e9b","src/ThemeProvider/index.js":"e760f3d3e4257b79286ad0ea9177be3c28e2bbb0","src/ThemeProvider/useSetTheme.js":"93fb289621efc0dfd4539485e4fcd7cb74a0db41","src/ThemeProvider/useTheme.js":"d76b9a6607d6beeeedf18c3685d8f33464b93862","src/ThemeProvider/useThemeTokens.js":"6a866b8f181cbb5d54d6f831028343ef02e6bc92","src/ThemeProvider/utils/index.js":"91b8a1965980bba29b286e4af92ccf2a33379d33","src/ThemeProvider/utils/styles.js":"a80155cd384470d6591153798dd20dda269b376a","src/ThemeProvider/utils/theme-tokens.js":"43e1bc06af4628d9e0069e60e769a080e4b91b3a","src/ToggleSwitch/ToggleSwitch.jsx":"87d96367c7ca026b7c2bb0cec3660b31f8356eed","src/ToggleSwitch/index.js":"e64f52f7b34559f2fda37c9c6d389aa93f9dd0ab","src/Tooltip/Backdrop.native.jsx":"dafa102a533f3b4ad0c97900c340f9b70414a3f8","src/Tooltip/Backdrop.web.jsx":"f4fb660b21350756247e8c4cdd01614dceb071f7","src/Tooltip/Tooltip.jsx":"2f079525b37cb3b4ba778336b08fd621e02c6120","src/Tooltip/dictionary.js":"b68f778fe4885a66c30076593b665ffd2cf21768","src/Tooltip/getTooltipPosition.js":"a08ff8b8aaa124f70893642e5313e8c61a69e05c","src/Tooltip/index.js":"33178590407a2a57b03f2c54f84e099ddec5d981","src/TooltipButton/TooltipButton.jsx":"41541712b45fa1cf66fd77100f0fed5d597e7b68","src/TooltipButton/index.js":"fcb73069cb7c57a70f8103adf941c8e6a7b7d27a","src/Typography/Typography.jsx":"22056cc29518f86e13051ad809d7901dfffe68c3","src/Typography/index.js":"3e2c97cd6c718560ce5a0e0cad5253535029133a","src/ViewportProvider/ViewportProvider.jsx":"e1b9b7ca47b8e1bd8a0234cef61aa2f9eedfbeb9","src/ViewportProvider/index.jsx":"09d29bb9b616094157963d1df37231463c14be38","src/ViewportProvider/useViewport.js":"853192112855ec8447ae0a96ae2e5f88cd260bbb","src/ViewportProvider/useViewportListener.js":"4af2d136d0a116630ff1017b9c493db3cdf5d723","src/config/svgr-icons-web.js":"c4906b3ac69876ca613c6a4bd2c590fff1dc3501","src/config/svgr-icons.js":"02a5a92b7426c7fd22359037fb69bc62375e810d","src/index.js":"35a25c0e99e8489696bd3a411a2f01e5b77831b3","src/utils/a11y/index.js":"d4e9fc105374821fb29b3e6bd9befc971b9f946b","src/utils/a11y/textSize.js":"69fc64f71f7a566dae1c74cc71421c631d6c2261","src/utils/animation/index.js":"826e6a13f4d8ebecb37214942d54584d32458db7","src/utils/animation/useVerticalExpandAnimation.js":"53b8fd94922ef2502a2b56ed3bf7fec9181fb0f2","src/utils/index.js":"0b79475863f6517ebe0f4fb89da10d0d5778979e","src/utils/info/index.js":"fa745289aec95c4c8760842abd9ef1a069e190f9","src/utils/info/platform/index.js":"35090561512cc6e6eb188d27297ac79c2040cf2a","src/utils/info/platform/platform.android.js":"d9ed506d3f13da692dd979e1b3e8e54e5953b9e3","src/utils/info/platform/platform.ios.js":"c0b73ee281326cb67bd1808062564685e963db7a","src/utils/info/platform/platform.native.js":"e5f5be1e6c86f89d6a55331532077702b8c45a87","src/utils/info/platform/platform.web.js":"f473e95cc41535658a6a32eb09d0f82abdb838c7","src/utils/info/versions.js":"7c20b08234325f52ab0b188ed795c9e83d3842d5","src/utils/input.js":"4a38d0319acd91713a1196c7ed9a9d2eaa20efcf","src/utils/pressability.js":"c25b350d0a4c8a0d18a880b8e243b90c1ef8c8e2","src/utils/propTypes.js":"88609bcc4338fca1e2e17ce15a7a53ca5fbfe458","src/utils/useCopy.js":"0200d8be3c061f0196823bdee41f1b9f54e1dcce","src/utils/useResponsiveProp.js":"63d1cc35b6ea313b35e3f23e3bc7a7c0bad74e76","src/utils/useSpacingScale.js":"0c1106da09be680fc6155e76514250845e56bc0e","src/utils/useUniqueId.js":"cf003781273080b70460791569909d6b19b28c06","stories/A11yText/A11yText.stories.jsx":"4bacc5b3f75266a04c1d9e3f28a31b5c7eb96d26","stories/ActivityIndicator/ActivityIndicator.stories.jsx":"d64e822e56629900677fd4d630f3f5609d5b449e","stories/Box/Box.stories.jsx":"facdb8b9c831bcfbe20d5f7274405febd7c7ea4e","stories/Button/Button.stories.jsx":"8a89aad8d0eca38bc23f83e8e98ff41a492d91b7","stories/Button/ButtonGroup.stories.jsx":"c789e0cae74ec586ad89cba0cdf981e7a8f47d8c","stories/Button/ButtonLink.stories.jsx":"3a74a862fa232243f79c0f7392da7b0ffe2fae1b","stories/Card/Card.stories.jsx":"e2e836873c4a2860533f9414e9135d9b1fe4bae6","stories/Checkbox/Checkbox.stories.jsx":"9f8b9f811bc46a3a034e6afb4d703be5a277ffbe","stories/Divider/Divider.stories.jsx":"915e48a437371c7b0a9c5e3217bfb7472a1dc60f","stories/ExpandCollapse/ExpandCollapse.stories.jsx":"0202d99e1b6261b2982f298d9c4ff19497bf9d39","stories/Feedback/Feedback.stories.jsx":"aa681938edb512626fdcf870b93729ead7988cc9","stories/FlexGrid/01 FlexGrid.stories.jsx":"2a167c821373be06f3711dda96ffb2a3a2359b6a","stories/FlexGrid/02 Row.stories.jsx":"6080fd863e2b8a1937910a5542ebfa1c5c785354","stories/FlexGrid/03 Col.stories.jsx":"275468c54dc745607b666743922e0fda2620ecfe","stories/Icon/Icon.stories.jsx":"569572676f313b607747a305854229572ff3bcee","stories/InputLabel/InputLabel.stories.jsx":"d617e10f6d4103d5cf68c7ec298511870038ae81","stories/Link/ChevronLink.stories.jsx":"0e57c45603f49430bcc6413789e6707a343ec350","stories/Link/Link.stories.jsx":"c6de26704be74b9be2451a1af33a6cb8a3e191d8","stories/Link/TextButton.stories.jsx":"b12469c061f4672904bea80d9e78afcef6385551","stories/List/List.stories.jsx":"020a87ad7ec1bf6b4feaabfdaa367a6b1432bbce","stories/Pagination/Pagination.stories.jsx":"b2101af449f199f03b0eae520d8ae52557484eb5","stories/Radio/Radio.stories.jsx":"b92789846e1fea50724f91fb874fc2e346aacb1b","stories/Select/Select.stories.jsx":"8d73fb9850834d4c837221ef028fa3c7fed124a8","stories/SideNav/SideNav.stories.jsx":"36f98572fa651be8db6d8f3633cef8d5db2221e6","stories/SideNav/SideNavItem.stories.jsx":"a9bf9189f7c8c2c322ffc291eaab24e00259e9da","stories/SideNav/SideNavItemsGroup.stories.jsx":"316adeb93421a258792b0810cf1cb8ca43384453","stories/Skeleton/Skeleton.stories.jsx":"e517538b89ff539b196712dbcaebb45e11004833","stories/Spacer/Spacer.stories.jsx":"151762f905deaadf7396369329633f3b69aaba26","stories/StackView/StackView.stories.jsx":"e7d9b663dc64996d86aa5c62fb74c587bca13b82","stories/StackView/StackWrap.stories.jsx":"38f73364c6fead41694e9f9d6b36f9ffc4f34e66","stories/Tags/Tags.stories.jsx":"370c180758881efab1ac3966fe7a39cd2904b593","stories/TextInput/TextArea.stories.jsx":"02d62f5de6582aad07f9add961af22adfa7814c9","stories/TextInput/TextInput.stories.jsx":"26fd05b15e02bf265670310d52e82c97a0f50341","stories/ToggleSwitch/ToggleSwitch.stories.jsx":"a473e05d4f5938d2835e21c28a5b6da5db582515","stories/Tooltip/Tooltip.stories.jsx":"e03b7c0ce05ba537ab2582bd26217230c47d0fc0","stories/TooltipButton/TooltipButton.stories.jsx":"81b9f4f91f3e29ffc1f70b20b61cd54b7be38551","stories/Typography/Typography.stories.jsx":"3b3bf6c8b6bb6272ffc41a4fbd9c2365cf14ca82","stories/platform-supports.native.jsx":"fcfbb23b926b3440b0f684119832a388e880bd82","stories/platform-supports.web.jsx":"1e6f6f8fd3e09f99fe667cc46d86c7da50b399e4","stories/supports.jsx":"e6d963245aeaefabb7f9cf3e873667c59ba8c1b4"},"deps":{"@telus-uds/system-constants":1637690202412.1768,"@telus-uds/system-themes":1637690202552.1775}}
package/CHANGELOG.md CHANGED
@@ -2,6 +2,61 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.0.2-prerelease.7](https://github.com/telus/universal-design-system/compare/@telus-uds/components-base/v0.0.2-prerelease.6...@telus-uds/components-base/v0.0.2-prerelease.7) (2021-11-23)
6
+
7
+ ### Features
8
+
9
+ - **base:** add `Radio` button ([#731](https://github.com/telus/universal-design-system/issues/731)) ([ad1613c](https://github.com/telus/universal-design-system/commit/ad1613c547fe3b0cdf1490a92267f32045356133))
10
+ - **base:** add base `Checkbox` component ([#706](https://github.com/telus/universal-design-system/issues/706)) ([a3fa01a](https://github.com/telus/universal-design-system/commit/a3fa01ad0da342be02c15284a103c22d7b315ae9))
11
+ - **base:** add Tags component ([#785](https://github.com/telus/universal-design-system/issues/785)) ([90bbf40](https://github.com/telus/universal-design-system/commit/90bbf4035a0bc0a8cdf319d9b366c8498c0dfb56))
12
+ - **base:** add TextArea ([#720](https://github.com/telus/universal-design-system/issues/720)) ([b18cae3](https://github.com/telus/universal-design-system/commit/b18cae3357375019ecc4e24e78ed9a2345b26139))
13
+ - **base:** add the Select component ([#759](https://github.com/telus/universal-design-system/issues/759)) ([9cfdf84](https://github.com/telus/universal-design-system/commit/9cfdf846b7a273dd140537b60e08f30a70c13a66))
14
+ - **base:** adding list component ([#296](https://github.com/telus/universal-design-system/issues/296)) ([#703](https://github.com/telus/universal-design-system/issues/703)) ([50e474d](https://github.com/telus/universal-design-system/commit/50e474d3d7f1988f5971a10be8416c8ac510626f))
15
+ - **base:** implementing base Skeleton component ([#770](https://github.com/telus/universal-design-system/issues/770)) ([1138f08](https://github.com/telus/universal-design-system/commit/1138f08885f4cf67fc0fb7273758d20cc0a989c1)), closes [#296](https://github.com/telus/universal-design-system/issues/296) [#296](https://github.com/telus/universal-design-system/issues/296) [#296](https://github.com/telus/universal-design-system/issues/296) [#296](https://github.com/telus/universal-design-system/issues/296) [#296](https://github.com/telus/universal-design-system/issues/296) [#296](https://github.com/telus/universal-design-system/issues/296) [#296](https://github.com/telus/universal-design-system/issues/296)
16
+
17
+ ### Bug Fixes
18
+
19
+ - **base:** adjust event handlers for checkbox / radio inputs on Web ([#820](https://github.com/telus/universal-design-system/issues/820)) ([87624d2](https://github.com/telus/universal-design-system/commit/87624d29166ce85aeaf7dc1db4dc5b60ecd170a5))
20
+ - **base:** fix button text alignment ([#794](https://github.com/telus/universal-design-system/issues/794)) ([9671087](https://github.com/telus/universal-design-system/commit/9671087477eb45b0d3c872b47f1d24cdd43a727f))
21
+ - **base:** various visual fixes for native/app ([#797](https://github.com/telus/universal-design-system/issues/797)) ([a00ab12](https://github.com/telus/universal-design-system/commit/a00ab124c40e1ea46441270acfd64ae0f37b0a68))
22
+ - export a11ytext [prerelease-components-base] ([#830](https://github.com/telus/universal-design-system/issues/830)) ([af627a2](https://github.com/telus/universal-design-system/commit/af627a2b4fa4cbf78983521bbb66b86ab9f87601))
23
+ - **jest:** pick .web files in -allium-web tests ([#765](https://github.com/telus/universal-design-system/issues/765)) ([e0b1bd5](https://github.com/telus/universal-design-system/commit/e0b1bd5edcc52b916685f8c5dcd8d2901d2ecdbd))
24
+
25
+ ### [0.0.2-prerelease.6](https://github.com/telus/universal-design-system/compare/@telus-uds/components-base/v0.0.2-prerelease.5...@telus-uds/components-base/v0.0.2-prerelease.6) (2021-11-08)
26
+
27
+ ### Features
28
+
29
+ - **base:** add Tooltip component ([#687](https://github.com/telus/universal-design-system/issues/687)) ([38aaad4](https://github.com/telus/universal-design-system/commit/38aaad43d664b76e85a264901df5e1ca045a0304))
30
+ - **base:** responsive directions with `useResponsiveProp` ([#677](https://github.com/telus/universal-design-system/issues/677)) ([b61e6a7](https://github.com/telus/universal-design-system/commit/b61e6a75159ce3fbd81758148ff8d10ab73cb409))
31
+
32
+ ### Bug Fixes
33
+
34
+ - **base:** fix Tooltip positioning when page scrollbar is rendered ([#728](https://github.com/telus/universal-design-system/issues/728)) ([c52167d](https://github.com/telus/universal-design-system/commit/c52167d94b1306749f2755ed2c4fb39bedd5dbf6))
35
+ - **base:** refresh viewport on first render, for SSR ([#712](https://github.com/telus/universal-design-system/issues/712)) ([b6288c0](https://github.com/telus/universal-design-system/commit/b6288c0e003a73f88e3fa5743ee085a767c53a0b))
36
+
37
+ ### [0.0.2-prerelease.5](https://github.com/telus/universal-design-system/compare/@telus-uds/components-base/v0.0.2-prerelease.4...@telus-uds/components-base/v0.0.2-prerelease.5) (2021-10-27)
38
+
39
+ ### Features
40
+
41
+ - **allium-web:** Add `ExpandCollapseMiniControl` component ([#661](https://github.com/telus/universal-design-system/issues/661)) ([227407e](https://github.com/telus/universal-design-system/commit/227407ec6a48c0a170b8e39761ba33293f13eb3c)), closes [#605](https://github.com/telus/universal-design-system/issues/605) [#605](https://github.com/telus/universal-design-system/issues/605) [#605](https://github.com/telus/universal-design-system/issues/605) [#605](https://github.com/telus/universal-design-system/issues/605) [#605](https://github.com/telus/universal-design-system/issues/605)
42
+ - **allium:** add Allium `Card` ([#639](https://github.com/telus/universal-design-system/issues/639)) ([f88179c](https://github.com/telus/universal-design-system/commit/f88179c503dfe574bf7bac6bb36ce4726a9af338))
43
+ - **base, allium:** add reverse directions and switch Allium card to using `StackView` ([#676](https://github.com/telus/universal-design-system/issues/676)) ([819a15f](https://github.com/telus/universal-design-system/commit/819a15f059faa47d1bc4e96c6370e9694effc003))
44
+ - **base:** add StackView and Spacer ([#662](https://github.com/telus/universal-design-system/issues/662)) ([cc3965e](https://github.com/telus/universal-design-system/commit/cc3965e83c1ec2fa0f0dd006a03eeeeda5384940))
45
+ - **base:** add StackWrap component ([#666](https://github.com/telus/universal-design-system/issues/666)) ([f34fb60](https://github.com/telus/universal-design-system/commit/f34fb60d0a923b1e4b3105c21b4a762b630ab309))
46
+ - **base:** add TextInput component ([#649](https://github.com/telus/universal-design-system/issues/649)) ([245c073](https://github.com/telus/universal-design-system/commit/245c073ed3ba3a022f989d234fbf5cf972edec25))
47
+ - **base:** add the Feedback component ([#656](https://github.com/telus/universal-design-system/issues/656)) ([5d7a5b6](https://github.com/telus/universal-design-system/commit/5d7a5b69c870ce1077adfdb230fddd1aa120b373))
48
+
49
+ ### Bug Fixes
50
+
51
+ - **base:** control stretch from a row parent ([#668](https://github.com/telus/universal-design-system/issues/668)) ([fa13c37](https://github.com/telus/universal-design-system/commit/fa13c37b2bd6b4118dbeb39bc2cdf59d13d5b151))
52
+ - **base:** fix icon link width in block container ([#645](https://github.com/telus/universal-design-system/issues/645)) ([ff60d1d](https://github.com/telus/universal-design-system/commit/ff60d1d1d0a66b7735b902098c7ca22e442265e1))
53
+
54
+ ### [0.0.2-prerelease.4](https://github.com/telus/universal-design-system/compare/@telus-uds/components-base/v0.0.2-prerelease.3...@telus-uds/components-base/v0.0.2-prerelease.4) (2021-10-13)
55
+
56
+ ### Bug Fixes
57
+
58
+ - same rnw dep specification for base as components-allium-web ([#642](https://github.com/telus/universal-design-system/issues/642)) ([d40a9a2](https://github.com/telus/universal-design-system/commit/d40a9a2eade0a6ab276f13d02758fff0a88c2ecd))
59
+
5
60
  ### [0.0.2-prerelease.3](https://github.com/telus/universal-design-system/compare/@telus-uds/components-base/v0.0.2-prerelease.2...@telus-uds/components-base/v0.0.2-prerelease.3) (2021-10-12)
6
61
 
7
62
  ### Features