@nr1e/qwik-ui 0.0.42 → 0.0.43
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,15 @@
|
|
|
1
|
+
export declare function themeToName(theme: string): string;
|
|
2
|
+
export declare const THEMES: string[];
|
|
3
|
+
/**
|
|
4
|
+
* Properties for ThemeSelector.
|
|
5
|
+
*/
|
|
6
|
+
export interface ThemeSelectorProps {
|
|
7
|
+
/**
|
|
8
|
+
* List of themes to show in the dropdown. Default is all themes.
|
|
9
|
+
*/
|
|
10
|
+
themes?: string[];
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* ThemeSelector drop down component. This will save theme selection to localStorage under 'theme'.
|
|
14
|
+
*/
|
|
15
|
+
export declare const ThemeSelector: import("@builder.io/qwik").Component<ThemeSelectorProps | undefined>;
|