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