@umituz/react-native-design-system 2.3.22 → 2.3.23

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": "@umituz/react-native-design-system",
3
- "version": "2.3.22",
3
+ "version": "2.3.23",
4
4
  "description": "Universal design system for React Native apps - Consolidated package with atoms, molecules, organisms, theme, typography, responsive and safe area utilities",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -24,7 +24,7 @@ export const TimeUnit: React.FC<TimeUnitProps> = ({
24
24
 
25
25
  const config = sizeConfig[size];
26
26
 
27
- // 2 basamaklı sayılar için 0 padding, 3+ basamak için olduğu gibi
27
+ // Pad 2-digit values with leading zero, display 3+ digits as-is
28
28
  const displayValue = value >= 100 ? String(value) : String(value).padStart(2, '0');
29
29
 
30
30
  return (