@widergy/mobile-ui 2.5.0 → 2.5.2
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
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [2.5.2](https://github.com/widergy/mobile-ui/compare/v2.5.1...v2.5.2) (2026-01-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* disabled checked color prop unused ([#458](https://github.com/widergy/mobile-ui/issues/458)) ([e99093f](https://github.com/widergy/mobile-ui/commit/e99093f66c44542b1ddebae811c55216bac145b9))
|
|
7
|
+
* update node image ([#475](https://github.com/widergy/mobile-ui/issues/475)) ([6e078b2](https://github.com/widergy/mobile-ui/commit/6e078b2418e26585abc38747d479ff00b261bf23))
|
|
8
|
+
|
|
9
|
+
## [2.5.1](https://github.com/widergy/mobile-ui/compare/v2.5.0...v2.5.1) (2026-01-27)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* change selected index ([#474](https://github.com/widergy/mobile-ui/issues/474)) ([351d864](https://github.com/widergy/mobile-ui/commit/351d864768a2adac1616a5ed826fdf98d6f83fe7))
|
|
15
|
+
|
|
1
16
|
# [2.5.0](https://github.com/widergy/mobile-ui/compare/v2.4.0...v2.5.0) (2026-01-22)
|
|
2
17
|
|
|
3
18
|
|
|
@@ -85,6 +85,7 @@ class CheckList extends PureComponent {
|
|
|
85
85
|
input,
|
|
86
86
|
options,
|
|
87
87
|
checkedColor,
|
|
88
|
+
disabledCheckedColor,
|
|
88
89
|
selectAllContainerStyle,
|
|
89
90
|
selectAlllabelStyle,
|
|
90
91
|
reversedSelectAll,
|
|
@@ -112,6 +113,7 @@ class CheckList extends PureComponent {
|
|
|
112
113
|
checked={areAllSelected(input, options)}
|
|
113
114
|
bold
|
|
114
115
|
checkedColor={checkedColor}
|
|
116
|
+
disabledCheckedColor={disabledCheckedColor}
|
|
115
117
|
labelsContainerStyle={selectAlllabelStyle}
|
|
116
118
|
reversed={reversedSelectAll}
|
|
117
119
|
style={[
|
|
@@ -44,6 +44,12 @@ const UTTabs = ({
|
|
|
44
44
|
}
|
|
45
45
|
}, [tabs, scrollableTabs]);
|
|
46
46
|
|
|
47
|
+
useEffect(() => {
|
|
48
|
+
if (selectedIndex !== selectedTab) {
|
|
49
|
+
setSelectedTab(selectedIndex);
|
|
50
|
+
}
|
|
51
|
+
}, [selectedIndex]);
|
|
52
|
+
|
|
47
53
|
useEffect(() => {
|
|
48
54
|
Animated.timing(position, {
|
|
49
55
|
toValue: selectedTab,
|
package/package.json
CHANGED