import Group from '@ovhcloud/ods-stencil-select/docs/osds-select/usage.group.mdx';
import Placeholder from '@ovhcloud/ods-stencil-select/docs/osds-select/usage.placeholder.mdx';
import Selected from '@ovhcloud/ods-stencil-select/docs/osds-select/usage.selected.mdx';
import AriaLabelProperty from '@ovhcloud/ods-stencil-select/docs/osds-select/properties/usage.ariaLabel.mdx';
import AriaLabelledByProperty from '@ovhcloud/ods-stencil-select/docs/osds-select/properties/usage.ariaLabelledby.mdx';
import DisabledProperty from '@ovhcloud/ods-stencil-select/docs/osds-select/properties/usage.disabled.mdx';
import FlexProperty from '@ovhcloud/ods-stencil-select/docs/osds-select/properties/usage.flex.mdx';
import Opened from '@ovhcloud/ods-stencil-select/docs/osds-select/properties/usage.opened.mdx';
import RequiredProperty from '@ovhcloud/ods-stencil-select/docs/osds-select/properties/usage.required.mdx';
import SizeProperty from '@ovhcloud/ods-stencil-select/docs/osds-select/properties/usage.size.mdx';

import GenericStyle from '@ovhcloud/ods-core/docs/generic-style.mdx';

import Events from '@ovhcloud/ods-stencil-select/docs/osds-select/events/usage.events.mdx';
import Methods from '@ovhcloud/ods-stencil-select/docs/osds-select/methods/usage.methods.mdx';

<GenericStyle />

## Usage

### Default

<osds-select>
  <osds-select-option value="1">Value 1</osds-select-option>
  <osds-select-option value="2">Value 2</osds-select-option>
  <osds-select-option value="3">Value 3</osds-select-option>
</osds-select>

```html
<osds-select>
  <osds-select-option value="1">Value 1</osds-select-option>
  <osds-select-option value="2">Value 2</osds-select-option>
  <osds-select-option value="3">Value 3</osds-select-option>
</osds-select>
```

### Placeholder

<Placeholder />

### Group

<Group />

### Selected

<Selected />

### Properties
#### Size

<SizeProperty />

#### Flex

<FlexProperty />

#### Opened

<Opened />

#### AriaLabel

<AriaLabelProperty />

#### AriaLabelledBy

<AriaLabelledByProperty />

#### Disabled

<DisabledProperty />

#### Required

<RequiredProperty />

### Events

<Events />

### Methods

<Methods />
