@telus-uds/components-base 1.15.0 → 1.17.0

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 (54) hide show
  1. package/CHANGELOG.md +36 -2
  2. package/component-docs.json +1322 -346
  3. package/lib/BaseProvider/index.js +5 -1
  4. package/lib/Button/ButtonBase.js +2 -1
  5. package/lib/Carousel/Carousel.js +18 -2
  6. package/lib/Carousel/CarouselTabs/CarouselTabs.js +6 -7
  7. package/lib/List/List.js +11 -8
  8. package/lib/List/PressableListItemBase.js +5 -9
  9. package/lib/QuickLinks/QuickLinks.js +91 -0
  10. package/lib/QuickLinks/QuickLinksCard.js +47 -0
  11. package/lib/QuickLinks/QuickLinksItem.js +73 -0
  12. package/lib/QuickLinks/index.js +16 -0
  13. package/lib/Skeleton/Skeleton.js +18 -13
  14. package/lib/Skeleton/useSkeletonNativeAnimation.js +4 -2
  15. package/lib/Timeline/Timeline.js +193 -0
  16. package/lib/Timeline/index.js +13 -0
  17. package/lib/ToggleSwitch/ToggleSwitch.js +24 -19
  18. package/lib/index.js +28 -1
  19. package/lib/utils/props/a11yProps.js +50 -47
  20. package/lib-module/BaseProvider/index.js +4 -1
  21. package/lib-module/Button/ButtonBase.js +2 -1
  22. package/lib-module/Carousel/Carousel.js +16 -2
  23. package/lib-module/Carousel/CarouselTabs/CarouselTabs.js +7 -6
  24. package/lib-module/List/List.js +12 -8
  25. package/lib-module/List/PressableListItemBase.js +6 -10
  26. package/lib-module/QuickLinks/QuickLinks.js +71 -0
  27. package/lib-module/QuickLinks/QuickLinksCard.js +33 -0
  28. package/lib-module/QuickLinks/QuickLinksItem.js +50 -0
  29. package/lib-module/QuickLinks/index.js +4 -0
  30. package/lib-module/Skeleton/Skeleton.js +15 -13
  31. package/lib-module/Skeleton/useSkeletonNativeAnimation.js +3 -2
  32. package/lib-module/Timeline/Timeline.js +174 -0
  33. package/lib-module/Timeline/index.js +2 -0
  34. package/lib-module/ToggleSwitch/ToggleSwitch.js +24 -19
  35. package/lib-module/index.js +4 -1
  36. package/lib-module/utils/props/a11yProps.js +50 -47
  37. package/package.json +8 -7
  38. package/src/BaseProvider/index.jsx +2 -1
  39. package/src/Button/ButtonBase.jsx +2 -2
  40. package/src/Carousel/Carousel.jsx +15 -2
  41. package/src/Carousel/CarouselTabs/CarouselTabs.jsx +5 -3
  42. package/src/List/List.jsx +9 -13
  43. package/src/List/PressableListItemBase.jsx +7 -9
  44. package/src/QuickLinks/QuickLinks.jsx +61 -0
  45. package/src/QuickLinks/QuickLinksCard.jsx +26 -0
  46. package/src/QuickLinks/QuickLinksItem.jsx +46 -0
  47. package/src/QuickLinks/index.js +6 -0
  48. package/src/Skeleton/Skeleton.jsx +25 -19
  49. package/src/Skeleton/useSkeletonNativeAnimation.js +3 -3
  50. package/src/Timeline/Timeline.jsx +148 -0
  51. package/src/Timeline/index.js +3 -0
  52. package/src/ToggleSwitch/ToggleSwitch.jsx +3 -3
  53. package/src/index.js +3 -0
  54. package/src/utils/props/a11yProps.js +61 -68
package/CHANGELOG.md CHANGED
@@ -1,12 +1,46 @@
1
1
  # Change Log - @telus-uds/components-base
2
2
 
3
- This log was last generated on Thu, 08 Sep 2022 15:35:51 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 19 Sep 2022 22:48:56 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 1.17.0
8
+
9
+ Mon, 19 Sep 2022 22:48:56 GMT
10
+
11
+ ### Minor changes
12
+
13
+ - Timeline component implementation (tiagohldb@gmail.com)
14
+ - Add buttons-style view to QuickLinks (alan.slater@nearform.com)
15
+ - Create QuickLinks component, with themes (alan.slater@nearform.com)
16
+ - Bump @telus-uds/system-theme-tokens to v2.6.0
17
+
18
+ ### Patches
19
+
20
+ - fix footnote component error (evander.owusu@telus.com)
21
+ - updates to proptypes (srikanthkhari@gmail.com)
22
+ - Remove misplaced code causing docs to fail (alan.slater@nearform.com)
23
+ - Make List more permissive about its children (alan.slater@nearform.com)
24
+
25
+ ## 1.16.0
26
+
27
+ Mon, 12 Sep 2022 20:05:13 GMT
28
+
29
+ ### Minor changes
30
+
31
+ - Support React ^18.1 (alan.slater@nearform.com)
32
+ - Add tabs prop to Carousel, deprecating CarouselTabs (alan.slater@nearform.com)
33
+ - Bump @telus-uds/system-theme-tokens to v2.5.0
34
+
35
+ ### Patches
36
+
37
+ - fix: correct ToggleSwitch regressions (ruslan.bredikhin@nearform.com)
38
+ - fix Skeleton animation to work with RNW 0.18 (ruslan.bredikhin@nearform.com)
39
+ - fix: docs button & buttonlink a11yprops build crash (srikanthkhari@gmail.com)
40
+
7
41
  ## 1.15.0
8
42
 
9
- Thu, 08 Sep 2022 15:35:51 GMT
43
+ Thu, 08 Sep 2022 15:38:07 GMT
10
44
 
11
45
  ### Minor changes
12
46