alouette 11.1.0 → 11.2.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [11.2.0](https://github.com/christophehurpeau/alouette/compare/alouette@11.1.0...alouette@11.2.0) (2025-08-02)
7
+
8
+ ### Features
9
+
10
+ * add InternalLinkButton ([6d1487a](https://github.com/christophehurpeau/alouette/commit/6d1487aad220cdad0ec17afea26d129b147c2178))
11
+
6
12
  ## [11.1.0](https://github.com/christophehurpeau/alouette/compare/alouette@11.0.0...alouette@11.1.0) (2025-07-09)
7
13
 
8
14
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alouette",
3
- "version": "11.1.0",
3
+ "version": "11.2.0",
4
4
  "description": "A modern, customizable design system built on top of Tamagui with configurable defaults",
5
5
  "keywords": [],
6
6
  "author": "Christophe Hurpeau <302891+christophehurpeau@users.noreply.github.com> (https://christophe.hurpeau.com)",
@@ -135,3 +135,9 @@ export function ExternalLinkButton(
135
135
  />
136
136
  );
137
137
  }
138
+
139
+ export function InternalLinkButton(
140
+ props: Except<ButtonProps, "href" | "role" | "tag"> & { href: string },
141
+ ): ReactNode {
142
+ return <Button {...props} tag="a" role="link" />;
143
+ }
package/src/index.ts CHANGED
@@ -1,7 +1,11 @@
1
1
  export type { IconButtonProps } from "./components/actions/IconButton";
2
2
  export { IconButton } from "./components/actions/IconButton";
3
3
  export type { ButtonProps } from "./components/actions/Button";
4
- export { Button, ExternalLinkButton } from "./components/actions/Button";
4
+ export {
5
+ Button,
6
+ ExternalLinkButton,
7
+ InternalLinkButton,
8
+ } from "./components/actions/Button";
5
9
  export type { BoxProps } from "./components/containers/Box";
6
10
  export { Box } from "./components/containers/Box";
7
11
  export type { PressableBoxProps } from "./components/containers/PressableBox";