@telus-uds/components-base 1.9.0 → 1.12.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 (57) hide show
  1. package/CHANGELOG.md +41 -2
  2. package/component-docs.json +650 -27
  3. package/lib/Carousel/Carousel.js +672 -0
  4. package/lib/Carousel/CarouselContext.js +59 -0
  5. package/lib/Carousel/CarouselItem/CarouselItem.js +92 -0
  6. package/lib/Carousel/CarouselItem/index.js +13 -0
  7. package/lib/Carousel/dictionary.js +23 -0
  8. package/lib/Carousel/index.js +32 -0
  9. package/lib/InputSupports/InputSupports.js +10 -3
  10. package/lib/InputSupports/useInputSupports.js +3 -2
  11. package/lib/Modal/Modal.js +4 -0
  12. package/lib/Skeleton/Skeleton.js +1 -0
  13. package/lib/StepTracker/StepTracker.js +15 -12
  14. package/lib/TextInput/TextInput.js +3 -1
  15. package/lib/index.js +23 -0
  16. package/lib/utils/index.js +9 -0
  17. package/lib/utils/props/clickProps.js +2 -2
  18. package/lib/utils/props/handlerProps.js +77 -31
  19. package/lib/utils/useScrollBlocking.js +66 -0
  20. package/lib/utils/useScrollBlocking.native.js +11 -0
  21. package/lib-module/Carousel/Carousel.js +617 -0
  22. package/lib-module/Carousel/CarouselContext.js +43 -0
  23. package/lib-module/Carousel/CarouselItem/CarouselItem.js +75 -0
  24. package/lib-module/Carousel/CarouselItem/index.js +2 -0
  25. package/lib-module/Carousel/dictionary.js +16 -0
  26. package/lib-module/Carousel/index.js +2 -0
  27. package/lib-module/InputSupports/InputSupports.js +10 -3
  28. package/lib-module/InputSupports/useInputSupports.js +3 -2
  29. package/lib-module/Modal/Modal.js +3 -0
  30. package/lib-module/Skeleton/Skeleton.js +1 -0
  31. package/lib-module/StepTracker/StepTracker.js +14 -12
  32. package/lib-module/TextInput/TextInput.js +3 -1
  33. package/lib-module/index.js +2 -0
  34. package/lib-module/utils/index.js +1 -0
  35. package/lib-module/utils/props/clickProps.js +2 -2
  36. package/lib-module/utils/props/handlerProps.js +78 -31
  37. package/lib-module/utils/useScrollBlocking.js +58 -0
  38. package/lib-module/utils/useScrollBlocking.native.js +2 -0
  39. package/package.json +4 -4
  40. package/src/Carousel/Carousel.jsx +649 -0
  41. package/src/Carousel/CarouselContext.jsx +30 -0
  42. package/src/Carousel/CarouselItem/CarouselItem.jsx +66 -0
  43. package/src/Carousel/CarouselItem/index.js +3 -0
  44. package/src/Carousel/dictionary.js +16 -0
  45. package/src/Carousel/index.js +2 -0
  46. package/src/InputSupports/InputSupports.jsx +18 -3
  47. package/src/InputSupports/useInputSupports.js +2 -2
  48. package/src/Modal/Modal.jsx +3 -1
  49. package/src/Skeleton/Skeleton.jsx +1 -0
  50. package/src/StepTracker/StepTracker.jsx +21 -8
  51. package/src/TextInput/TextInput.jsx +1 -1
  52. package/src/index.js +2 -0
  53. package/src/utils/index.js +1 -0
  54. package/src/utils/props/clickProps.js +2 -2
  55. package/src/utils/props/handlerProps.js +64 -16
  56. package/src/utils/useScrollBlocking.js +57 -0
  57. package/src/utils/useScrollBlocking.native.js +2 -0
package/CHANGELOG.md CHANGED
@@ -1,12 +1,51 @@
1
1
  # Change Log - @telus-uds/components-base
2
2
 
3
- This log was last generated on Fri, 08 Jul 2022 22:41:05 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 28 Jul 2022 19:37:23 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 1.12.0
8
+
9
+ Thu, 28 Jul 2022 19:37:23 GMT
10
+
11
+ ### Minor changes
12
+
13
+ - export useScrollBlocking for using on allium (tiagohldb@gmail.com)
14
+
15
+ ## 1.11.0
16
+
17
+ Mon, 25 Jul 2022 18:18:31 GMT
18
+
19
+ ### Minor changes
20
+
21
+ - adding reference for html dom element (tiagohldb@gmail.com)
22
+ - adding useScrollBlocking hook to avoid modal background content from scrolling (tiagohldb@gmail.com)
23
+ - feat: add InputSupports to the base exports (ruslan.bredikhin@nearform.com)
24
+ - limiting skeleton width to be max to container width (tiagohldb@gmail.com)
25
+
26
+ ### Patches
27
+
28
+ - Fill in RN TextInput handlers (alan.slater@nearform.com)
29
+ - Make Carousel multi-lingual with nameable items (alan.slater@nearform.com)
30
+ - Carousel accessibility: unordered list with hidden siblings (alan.slater@nearform.com)
31
+ - fix: react native and web version updates (srikanthkhari@gmail.com)
32
+
33
+ ## 1.10.0
34
+
35
+ Wed, 20 Jul 2022 23:57:28 GMT
36
+
37
+ ### Minor changes
38
+
39
+ - Add Carousel component 🎉 (shahzaibkhalidmalik@outlook.com)
40
+ - Bump @telus-uds/system-theme-tokens to v2.1.0
41
+
42
+ ### Patches
43
+
44
+ - Fix an issue where StepTracker might break where `stepLabel` and/or `stepTrackerLabel` are not read before reading their `dictionary` values (shahzaibkhalidmalik@outlook.com)
45
+
7
46
  ## 1.9.0
8
47
 
9
- Fri, 08 Jul 2022 22:41:05 GMT
48
+ Fri, 08 Jul 2022 22:41:55 GMT
10
49
 
11
50
  ### Minor changes
12
51