@nurtjahjo/swaraksara-ui-theme 0.3.10 → 0.3.12

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/dist/index.d.ts CHANGED
@@ -67,9 +67,12 @@ declare interface ThemeContextType {
67
67
 
68
68
  export declare type ThemeMode = 'light' | 'dark' | 'auto';
69
69
 
70
- export declare const ThemeProvider: default_2.FC<{
70
+ export declare const ThemeProvider: default_2.FC<ThemeProviderProps>;
71
+
72
+ declare interface ThemeProviderProps {
71
73
  children: default_2.ReactNode;
72
- }>;
74
+ defaultMode?: ThemeMode;
75
+ }
73
76
 
74
77
  export declare const ThemeSwitcher: default_2.FC;
75
78