@pisodev/test-component-library 2.1.2 → 2.1.3

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.
@@ -0,0 +1,6 @@
1
+ // This file exists for TypeScript type resolution
2
+ // The actual implementation is in ThemeProvider.web.tsx and ThemeProvider.native.tsx
3
+ // Metro bundler and Rollup will automatically pick the correct platform-specific file
4
+
5
+ export { ThemeProvider } from './ThemeProvider.native';
6
+ export type { ThemeProviderProps } from './ThemeProvider.native';
@@ -1,4 +1,5 @@
1
- export { ThemeProvider } from './ThemeProvider.native';
1
+ export { ThemeProvider } from './ThemeProvider';
2
+ export type { ThemeProviderProps } from './ThemeProvider';
2
3
  export { useTheme } from './useTheme';
3
4
  export { lightTheme, darkTheme } from './colors';
4
5
  export type { Theme, ThemeMode, ColorScale, SemanticColors, PaperColors } from './colors.types';
@@ -0,0 +1,2 @@
1
+ export { ThemeProvider } from './ThemeProvider.native';
2
+ export type { ThemeProviderProps } from './ThemeProvider.native';
@@ -1,4 +1,5 @@
1
- export { ThemeProvider } from './ThemeProvider.native';
1
+ export { ThemeProvider } from './ThemeProvider';
2
+ export type { ThemeProviderProps } from './ThemeProvider';
2
3
  export { useTheme } from './useTheme';
3
4
  export { lightTheme, darkTheme } from './colors';
4
5
  export type { Theme, ThemeMode, ColorScale, SemanticColors, PaperColors } from './colors.types';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pisodev/test-component-library",
3
- "version": "2.1.2",
3
+ "version": "2.1.3",
4
4
  "description": "웹과 React Native를 위한 컴포넌트 라이브러리",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",