@compsych/mobile-ui 1.0.23 → 1.0.24

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compsych/mobile-ui",
3
- "version": "1.0.23",
3
+ "version": "1.0.24",
4
4
  "description": "ComPsych React Native Design System — 19 mobile UI components with self-contained design tokens",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -1,6 +1,7 @@
1
1
  import React, { useMemo } from 'react';
2
2
 
3
3
  import {
4
+ I18nManager,
4
5
  Image,
5
6
  type ImageSourcePropType,
6
7
  Pressable,
@@ -368,7 +369,9 @@ export function ServiceCard({
368
369
  style={{
369
370
  position: 'absolute',
370
371
  bottom: s.paddingV,
371
- right: s.paddingH,
372
+ ...(I18nManager.isRTL
373
+ ? { left: s.paddingH }
374
+ : { right: s.paddingH }),
372
375
  }}
373
376
  pointerEvents="none"
374
377
  >