Add `disabled` attribute to osds-quantity only.
#### using ODS components
```html
<osds-quantity disabled>
  <osds-button slot="minus" color="primary" size="sm">-</osds-button>
  <osds-input style="max-width: 45px" type="number" color="primary" min="1" max="10" step="1" value="1"></osds-input>
  <osds-button slot="plus" color="primary" size="sm">+</osds-button>
</osds-quantity>
```

#### using vanilla elements
```html
<osds-quantity disabled>
  <button slot="minus">-</button>
  <input style="max-width: 45px" type="number" min="1" max="10" step="1" value="1"/>
  <button slot="plus">+</button>
</osds-quantity>
```

