@latte-macchiat-io/latte-vanilla-components 0.0.195 → 0.0.197

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": "@latte-macchiat-io/latte-vanilla-components",
3
- "version": "0.0.195",
3
+ "version": "0.0.197",
4
4
  "description": "Beautiful components for amazing projects, with a touch of Vanilla 🥤",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
package/src/index.ts CHANGED
@@ -1,8 +1,7 @@
1
1
  // Theme system - Import this first to apply global styles
2
2
  export { themeContract } from './theme/contract.css';
3
3
  export { baseLightTheme, baseDarkTheme } from './theme/baseThemeValues';
4
- export { createLightTheme, createDarkTheme } from './theme/createTheme';
5
- export type { ThemeOverrides } from './theme/createTheme';
4
+ export { createLightTheme, createDarkTheme, type ThemeOverrides } from './theme/createTheme';
6
5
 
7
6
  // Styles utilities (sprinkles, media queries, etc.)
8
7
  export { sprinkles, type Sprinkles } from './styles/sprinkles.css';
@@ -23,10 +22,10 @@ export { Footer, type FooterProps } from './components/Footer';
23
22
 
24
23
  export { Nav, type NavProps } from './components/Nav';
25
24
 
26
- export { Heading, type HeadingProps } from './components/Heading';
27
-
28
25
  export { Icon, type IconProps } from './components/Icon';
29
26
 
27
+ export { Heading, type HeadingProps } from './components/Heading';
28
+
30
29
  export { Modal, type ModalProps } from './components/Modal';
31
30
  export { type ModalVariants } from './components/Modal/styles.css';
32
31
 
@@ -1,5 +1,3 @@
1
- import { breakpoints } from '../styles/mediaqueries';
2
-
3
1
  // Base theme values that can be imported and extended by apps
4
2
  export const baseLightTheme = {
5
3
  colors: {
@@ -39,7 +37,7 @@ export const baseLightTheme = {
39
37
  heading: 'system-ui, sans-serif',
40
38
  mono: '"Fira Code", monospace',
41
39
  },
42
- maxWidth: breakpoints['2xl'],
40
+ maxWidth: '1500px',
43
41
  fontSizes: {
44
42
  xs: '13px',
45
43
  sm: '15px',
@@ -656,7 +654,7 @@ export const baseDarkTheme = {
656
654
  heading: 'system-ui, sans-serif',
657
655
  mono: '"Fira Code", monospace',
658
656
  },
659
- maxWidth: breakpoints['2xl'],
657
+ maxWidth: '1500px',
660
658
  fontSizes: {
661
659
  xs: '13px',
662
660
  sm: '15px',