@umituz/react-native-design-system 2.6.93 → 2.6.94

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.6.93",
3
+ "version": "2.6.94",
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",
@@ -42,6 +42,5 @@ export {
42
42
  type ResponsiveSpacing,
43
43
  type ResponsiveTypography,
44
44
  type Theme,
45
- type ExtendedColorPalette,
46
45
  type NavigationTheme,
47
46
  } from '../theme';
@@ -7,7 +7,7 @@
7
7
  * Features:
8
8
  * - Consistent sizing system
9
9
  * - Optional background circle
10
- * - Optional gradient background
10
+ * - Optional background circle
11
11
  * - Theme-aware colors
12
12
  * - Accessibility support
13
13
  *
@@ -5,7 +5,7 @@ SplashScreen, uygulama başlatılırken gösterilen açılış ekranı bileşeni
5
5
  ## Özellikler
6
6
 
7
7
  - 🎨 **Theme-Aware**: Tema bilinci renkler
8
- - 🌈 **Gradient Desteği**: Arka plan gradient'i
8
+ - 🎨 **Theme-Aware**: Tema bilinci renkler
9
9
  - ⏱️ **Timeout Kontrolü**: Maksimum süre ve timeout callback
10
10
  - 🖼️ **Logo/İkon**: Uygulama logosu gösterimi
11
11
  - 📝 **App Name & Tagline**: Uygulama adı ve sloganı
@@ -81,16 +81,7 @@ export const App = () => {
81
81
  />
82
82
  ```
83
83
 
84
- ## Gradient Arka Plan
85
84
 
86
- ```tsx
87
- <SplashScreen
88
- appName="My App"
89
- tagline="Welcome"
90
- gradientColors={['#667eea', '#764ba2']}
91
- visible={true}
92
- />
93
- ```
94
85
 
95
86
  ## Zaman Aşımı
96
87
 
@@ -213,7 +204,6 @@ export const App = () => {
213
204
  <SplashScreen
214
205
  appName="My App"
215
206
  tagline="Giriş yapılıyor..."
216
- gradientColors={['#667eea', '#764ba2']}
217
207
  visible
218
208
  />
219
209
  );
@@ -283,7 +273,6 @@ export const AnimatedSplash = () => {
283
273
  <SplashScreen
284
274
  appName="My App"
285
275
  tagline="Welcome"
286
- gradientColors={['#667eea', '#764ba2']}
287
276
  visible={!isInitialized}
288
277
  />
289
278
  );
@@ -315,7 +304,6 @@ export const MultiStageSplash = () => {
315
304
  <SplashScreen
316
305
  appName="My App"
317
306
  tagline={getTagline()}
318
- gradientColors={['#667eea', '#764ba2']}
319
307
  visible
320
308
  />
321
309
  );
@@ -370,7 +358,7 @@ export const DebugSplash = () => {
370
358
  | `appName` | `string` | - | Uygulama adı |
371
359
  | `tagline` | `string` | - | Slogan |
372
360
  | `colors` | `SplashColors` | - | Custom renkler |
373
- | `gradientColors` | `string[]` | - | Gradient renkleri |
361
+
374
362
  | `visible` | `boolean` | `true` | Görünürlük |
375
363
  | `maxDuration` | `number` | - | Maksimum süre (ms) |
376
364
  | `onTimeout` | `() => void` | - | Timeout callback |