@widergy/mobile-ui 2.0.0 → 2.0.1
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,11 @@
|
|
|
1
|
+
## [2.0.1](https://github.com/widergy/mobile-ui/compare/v2.0.0...v2.0.1) (2025-10-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* [CX-1176] changes action card widy ([162e236](https://github.com/widergy/mobile-ui/commit/162e2363a7fd65912967d15513fd11456ff73cba))
|
|
7
|
+
* add suggestion ([db892b5](https://github.com/widergy/mobile-ui/commit/db892b54bd689d80af05ba869c25022c55fa539d))
|
|
8
|
+
|
|
1
9
|
# [2.0.0](https://github.com/widergy/mobile-ui/compare/v1.51.0...v2.0.0) (2025-09-22)
|
|
2
10
|
|
|
3
11
|
|
|
@@ -65,7 +65,10 @@ export const statusPropsMapper = (status, theme) => {
|
|
|
65
65
|
export const renderAdornment = (adornment, position) => {
|
|
66
66
|
if (isEmpty(adornment) || adornment.position !== position) return null;
|
|
67
67
|
const AdornmentComponent = ADORNMENT_COMPONENT_MAPPER[adornment.type];
|
|
68
|
-
const defaultPlaceSelf =
|
|
68
|
+
const defaultPlaceSelf =
|
|
69
|
+
adornment.position === 'left' || adornment.position === 'right'
|
|
70
|
+
? PLACE_SELF_TYPES.CENTER
|
|
71
|
+
: PLACE_SELF_TYPES.START;
|
|
69
72
|
|
|
70
73
|
return (
|
|
71
74
|
<AdornmentComponent
|
package/package.json
CHANGED