pgo-uiux2 1.0.0 → 1.0.1
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
|
@@ -52,9 +52,11 @@ export { setRtl }
|
|
|
52
52
|
export { drawerOpen }
|
|
53
53
|
// export { useSnackBar }
|
|
54
54
|
export { _useTheme as useTheme }
|
|
55
|
+
export { createThemePlugin } from './plugins/theme-plugin.js'
|
|
56
|
+
export { themes } from './tokens/index.js'
|
|
55
57
|
|
|
56
58
|
// create default plugin instance
|
|
57
|
-
const defaultPlugin = createThemePlugin({ themes, defaultTheme: 'default', defaultVariant: '
|
|
59
|
+
const defaultPlugin = createThemePlugin({ themes, defaultTheme: 'default', defaultVariant: 'dark' })
|
|
58
60
|
|
|
59
61
|
// attach to window for the demo/example app convenience
|
|
60
62
|
if (typeof window !== 'undefined') {
|