forked from ubie-oss/ubie-vitals-website
-
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.
Merge pull request ubie-oss#78 from 8845musign/chore/upgrade-ubie-ui-…
…0.0.25 Upgrade Ubie UI v0.0.26
- Loading branch information
Showing
7 changed files
with
6,420 additions
and
14,205 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
10 changes: 10 additions & 0 deletions
10
src/components/react/examples/accordion/OpenInInitialExample.tsx
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,10 @@ | ||
import { Accordion } from '@ubie/ubie-ui'; | ||
import type { FC } from 'react'; | ||
|
||
export const OpenInInitialExample: FC = () => { | ||
return ( | ||
<Accordion header="夏目漱石「私の個人主義」" initialOpen> | ||
何は時分どうもどんな観念顔というののところを云ったいまし。とうてい今日に説明院は現にこういう反対たますくらいから思わて来るないにも撲殺なるたたて、始終にも願うただですん。 | ||
</Accordion> | ||
); | ||
}; |
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
8 changes: 8 additions & 0 deletions
8
src/pages/components/examples/accordion/open-in-initial.astro
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,8 @@ | ||
--- | ||
import { OpenInInitialExample } from '@components/react/examples/accordion/OpenInInitialExample'; | ||
import ExampleLayout from '@layouts/ExampleLayout.astro'; | ||
--- | ||
|
||
<ExampleLayout title="OpenInInitial Example | Accordion"> | ||
<OpenInInitialExample client:only="react" /> | ||
</ExampleLayout> |