Skip to content

Commit

Permalink
chore: updata docs
Browse files Browse the repository at this point in the history
  • Loading branch information
hirsch88 committed Sep 27, 2024
1 parent d40d781 commit 2eaa258
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 14 deletions.
41 changes: 27 additions & 14 deletions docs/stories/components/00-overview.stories.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -518,6 +518,24 @@ Form components serve as tools for gathering user input through a range of metho
<bal-date value="2023-10-21"></bal-date>
</div>
</GridComponent>
<GridComponent
scale="1"
label="DropDown"
pageTitle="Components/Form/DropDown"
description="Select allows the user to choose one or multiple option from a list."
>
<bal-dropdown value="Apple" style={{ width: '227px' }}>
<bal-option value="Apple" label="Apple">
Apple
</bal-option>
<bal-option value="Banana" label="Banana">
Banana
</bal-option>
<bal-option value="Mango" label="Mango">
Mango
</bal-option>
</bal-dropdown>
</GridComponent>
<GridComponent
scale="1"
label="Field"
Expand Down Expand Up @@ -677,21 +695,16 @@ Form components serve as tools for gathering user input through a range of metho
</GridComponent>
<GridComponent
scale="1"
label="Select"
pageTitle="Components/Form/Select"
description="Select allows the user to choose one or multiple option from a list."
label="Segment"
pageTitle="Components/Form/Segment"
description="Segment offers a list of options. The user can only select one option from a number of choices."
>
<bal-select value="Apple">
<bal-select-option value="Apple" label="Apple">
Apple
</bal-select-option>
<bal-select-option value="Banana" label="Banana">
Banana
</bal-select-option>
<bal-select-option value="Mango" label="Mango">
Mango
</bal-select-option>
</bal-select>
<div class="text-align-center">
<bal-segment value="yes">
<bal-segment-item value="yes" label="Yes"></bal-segment-item>
<bal-segment-item value="no" label="No"></bal-segment-item>
</bal-segment>
</div>
</GridComponent>
<GridComponent
scale="1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
display: block
position: relative
flex: 1
width: 100%

// Root interactive element
// --------------------------------------------------
Expand Down

0 comments on commit 2eaa258

Please sign in to comment.