medusa-storefront-theme-base 2.0.0 → 3.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": "medusa-storefront-theme-base",
3
- "version": "2.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Default Tailwind preset and className maps for Medusa storefront UI packages.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -61,7 +61,7 @@
61
61
  "peerDependencies": {
62
62
  "tailwindcss": "^3.0.0",
63
63
  "@medusajs/ui-preset": "*",
64
- "medusa-ui-home": ">=2.1.0"
64
+ "medusa-ui-home": ">=3.0.0"
65
65
  },
66
66
  "peerDependenciesMeta": {
67
67
  "medusa-ui-home": {
@@ -69,7 +69,7 @@
69
69
  }
70
70
  },
71
71
  "devDependencies": {
72
- "medusa-ui-home": "workspace:*",
72
+ "medusa-ui-home": "3.0.4",
73
73
  "typescript": "^5.6.0"
74
74
  }
75
75
  }
package/src/index.ts CHANGED
@@ -34,7 +34,7 @@ export {
34
34
  type FormThemeClassNames,
35
35
  type SiteThemeInputTokens,
36
36
  } from "./form-theme";
37
- export { mergePageTheme, mergeThemeSlots } from "./page-theme-merge";
37
+ export { mergeThemeSlots } from "./page-theme-merge";
38
38
  export { joinClasses, layoutSlots, responsivePageX, responsivePageY } from "./theme-layout";
39
39
  export { resolveThemeSection } from "./theme-resolve";
40
40
  export {
@@ -1 +1 @@
1
- export { mergeThemeSlots, mergeThemeSlots as mergePageTheme } from "./theme-slot-merge";
1
+ export { mergeThemeSlots } from "./theme-slot-merge";
@@ -28,7 +28,4 @@ export function mergeThemeSlots<T extends Record<string, unknown>>(
28
28
  }
29
29
  }
30
30
  return result;
31
- }
32
-
33
- /** @deprecated Use mergeThemeSlots */
34
- export const mergePageTheme = mergeThemeSlots;
31
+ }