loon-bulma-react 2024.1.3 → 2024.1.5
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.cjs +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/styles/_all.scss +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -4789,9 +4789,10 @@ declare const ColorSchemeContext: React$1.Context<{
|
|
|
4789
4789
|
scheme: ColorSchemeType;
|
|
4790
4790
|
setScheme: (v: ColorSchemeType) => void;
|
|
4791
4791
|
}>;
|
|
4792
|
-
declare function ColorSchemeProvider({ children, initialTheme }: {
|
|
4792
|
+
declare function ColorSchemeProvider({ children, initialTheme, onThemeChanged, }: {
|
|
4793
4793
|
children: React$1.ReactNode;
|
|
4794
4794
|
initialTheme?: ColorSchemeType | undefined;
|
|
4795
|
+
onThemeChanged?: (t: ColorSchemeType) => void;
|
|
4795
4796
|
}): react_jsx_runtime.JSX.Element;
|
|
4796
4797
|
declare function useColorScheme(): {
|
|
4797
4798
|
scheme: ColorSchemeType;
|
package/dist/index.d.ts
CHANGED
|
@@ -4789,9 +4789,10 @@ declare const ColorSchemeContext: React$1.Context<{
|
|
|
4789
4789
|
scheme: ColorSchemeType;
|
|
4790
4790
|
setScheme: (v: ColorSchemeType) => void;
|
|
4791
4791
|
}>;
|
|
4792
|
-
declare function ColorSchemeProvider({ children, initialTheme }: {
|
|
4792
|
+
declare function ColorSchemeProvider({ children, initialTheme, onThemeChanged, }: {
|
|
4793
4793
|
children: React$1.ReactNode;
|
|
4794
4794
|
initialTheme?: ColorSchemeType | undefined;
|
|
4795
|
+
onThemeChanged?: (t: ColorSchemeType) => void;
|
|
4795
4796
|
}): react_jsx_runtime.JSX.Element;
|
|
4796
4797
|
declare function useColorScheme(): {
|
|
4797
4798
|
scheme: ColorSchemeType;
|