@umituz/react-native-design-system 2.6.91 → 2.6.92

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.91",
3
+ "version": "2.6.92",
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",
@@ -14,7 +14,6 @@ export const SplashScreen: React.FC<SplashScreenProps> = ({
14
14
  appName,
15
15
  tagline,
16
16
  colors: customColors,
17
- gradientColors,
18
17
  visible = true,
19
18
  maxDuration,
20
19
  onTimeout,
@@ -1,5 +1,5 @@
1
1
  import type { ColorPalette, ThemeMode } from "./ColorPalette";
2
- import type { ExtendedColorPalette } from "./themes";
2
+
3
3
 
4
4
  /**
5
5
  * Font weight type compatible with React Navigation v7
@@ -51,7 +51,7 @@ export interface NavigationTheme {
51
51
  * Compatible with React Navigation v7+
52
52
  */
53
53
  export const createNavigationTheme = (
54
- colors: ColorPalette | ExtendedColorPalette,
54
+ colors: ColorPalette,
55
55
  themeMode: ThemeMode
56
56
  ): NavigationTheme => ({
57
57
  dark: themeMode === "dark",
@@ -86,7 +86,6 @@ export {
86
86
  darkTheme,
87
87
  createResponsiveValue,
88
88
  type Theme,
89
- type ExtendedColorPalette,
90
89
  } from './core/themes';
91
90
 
92
91
  // =============================================================================