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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pgo-uiux2",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A Vue 3 component library with PGO design system",
5
5
  "private": false,
6
6
  "type": "module",
@@ -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: 'light' })
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') {