File tree Expand file tree Collapse file tree
packages/ui-components/src/components/DataGridToolbar Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,10 +35,7 @@ type Story = StoryObj<typeof meta>
3535export const Default : Story = {
3636 render : ( args : DataGridToolbarProps ) => (
3737 < DataGridToolbar { ...args } >
38- < Stack gap = "4" >
39- < SearchInput placeholder = "Search items..." />
40- < Button label = "Create" />
41- </ Stack >
38+ < Button label = "Create" />
4239 </ DataGridToolbar >
4340 ) ,
4441 parameters : {
@@ -58,15 +55,15 @@ export const ComplexCustomLayout: Story = {
5855 < Stack direction = "vertical" gap = "4" >
5956 < Stack alignment = "center" gap = "4" >
6057 < InputGroup >
61- < NativeSelect name = "Filter" value = "category" >
58+ < NativeSelect name = "Filter" value = "category" wrapperClassName = "jn:w-full" >
6259 < NativeSelectOption value = "category" label = "Category" />
6360 < NativeSelectOption value = "status" label = "Status" />
6461 < NativeSelectOption value = "priority" label = "Priority" />
6562 </ NativeSelect >
6663 < ComboBox >
67- < ComboBoxOption value = "electronics " />
68- < ComboBoxOption value = "clothing " />
69- < ComboBoxOption value = "furniture " />
64+ < ComboBoxOption value = "Electronics " />
65+ < ComboBoxOption value = "Clothing " />
66+ < ComboBoxOption value = "Furniture " />
7067 </ ComboBox >
7168 </ InputGroup >
7269 < Button label = "Clear all" variant = "subdued" />
You can’t perform that action at this time.
0 commit comments