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 +6 -0
- package/package.json +1 -1
- package/src/components/actions/Button.tsx +6 -0
- package/src/index.ts +5 -1
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.
|
|
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)",
|
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 {
|
|
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";
|