-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Documentation** - Updated the version display logic in the UI Components documentation. - Added a "Getting Started - Changelogs" section for easier access to component and system changelogs. - Improved navigation within the Getting Started guide, including better alignment and additional navigation buttons. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
- Loading branch information
Showing
4 changed files
with
74 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
packages/documentation/src/GettingStarted/6-changelogs.stories.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
import { linkTo, Meta } from "@ladle/react"; | ||
import { Button, ButtonIcon, Card } from "@versini/ui-components"; | ||
import { Flexgrid, FlexgridItem } from "@versini/ui-system"; | ||
import { IconNext, IconPrevious } from "@versini/ui-icons"; | ||
import ComponentsChangelog from "../../../ui-components/CHANGELOG.md"; | ||
import StylesChangelog from "../../../ui-styles/CHANGELOG.md"; | ||
import FormComponentsChangelog from "../../../ui-form/CHANGELOG.md"; | ||
import IconsChangelog from "../../../ui-icons/CHANGELOG.md"; | ||
import SystemChangelog from "../../../ui-system/CHANGELOG.md"; | ||
|
||
<Meta title="Getting started/Changelogs" /> | ||
|
||
<h1>Changelogs</h1> | ||
|
||
<details> | ||
<summary>Components</summary> | ||
<Card> | ||
<ComponentsChangelog /> | ||
</Card> | ||
</details> | ||
|
||
<details> | ||
<summary>Styles</summary> | ||
<Card> | ||
<StylesChangelog /> | ||
</Card> | ||
</details> | ||
|
||
<details> | ||
<summary>Form Components</summary> | ||
<Card> | ||
<FormComponentsChangelog /> | ||
</Card> | ||
</details> | ||
|
||
<details> | ||
<summary>Icons</summary> | ||
<Card> | ||
<IconsChangelog /> | ||
</Card> | ||
</details> | ||
|
||
<details> | ||
<summary>System</summary> | ||
<Card> | ||
<SystemChangelog /> | ||
</Card> | ||
</details> | ||
|
||
<div className="mt-8"> | ||
<Flexgrid alignHorizontal="space-between"> | ||
<FlexgridItem> | ||
<ButtonIcon | ||
labelRight="Release Tags" | ||
onClick={linkTo("getting-started--release-tags")} | ||
> | ||
<IconPrevious monotone /> | ||
</ButtonIcon> | ||
</FlexgridItem> | ||
</Flexgrid> | ||
</div> |