@latte-macchiat-io/latte-vanilla-components 0.0.428 → 0.0.430

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.428",
3
+ "version": "0.0.430",
4
4
  "description": "Beautiful components for amazing projects, with a touch of Vanilla 🥤",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -93,10 +93,10 @@ export const ConsentCookie = ({
93
93
  {children}
94
94
 
95
95
  <div className={consentActions}>
96
- <Button size="sm" variant="secondary" style="outline" onClick={handleReject}>
96
+ <Button as="button" size="sm" variant="secondary" style="outline" onClick={handleReject}>
97
97
  {translations?.actions.reject || 'Reject'}
98
98
  </Button>
99
- <Button variant="primary" size="sm" onClick={handleAccept}>
99
+ <Button as="button" variant="primary" size="sm" onClick={handleAccept}>
100
100
  {translations?.actions.accept || 'Accept'}
101
101
  </Button>
102
102
  </div>
@@ -1,2 +1 @@
1
1
  export { LanguageSwitcher, type LanguageSwitcherProps, type Locale } from './';
2
- export { type LanguageSwitcherVariants } from './styles.css';