primus-saas-react 1.0.6 → 1.0.8

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.js CHANGED
@@ -912,8 +912,8 @@ function usePrimusTheme() {
912
912
  const context = (0, import_react12.useContext)(PrimusThemeContext);
913
913
  if (!context) {
914
914
  return {
915
- theme: "dark",
916
- colors: themeColors.dark,
915
+ theme: "light",
916
+ colors: themeColors.light,
917
917
  setTheme: () => console.warn("PrimusThemeProvider not found"),
918
918
  toggleTheme: () => console.warn("PrimusThemeProvider not found")
919
919
  };
package/dist/index.mjs CHANGED
@@ -836,8 +836,8 @@ function usePrimusTheme() {
836
836
  const context = useContext(PrimusThemeContext);
837
837
  if (!context) {
838
838
  return {
839
- theme: "dark",
840
- colors: themeColors.dark,
839
+ theme: "light",
840
+ colors: themeColors.light,
841
841
  setTheme: () => console.warn("PrimusThemeProvider not found"),
842
842
  toggleTheme: () => console.warn("PrimusThemeProvider not found")
843
843
  };
package/dist/styles.css CHANGED
@@ -39,6 +39,7 @@ body {
39
39
  /* Layout - Critical */
40
40
  .min-h-screen {
41
41
  min-height: 100vh;
42
+ width: 100%;
42
43
  }
43
44
 
44
45
  .flex {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "primus-saas-react",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "description": "Premium React UI Elements for Primus SaaS Framework",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",