Rating
Star rating input with half-star support
Accessibility
- Pair the control with a visible label or aria-label and keep helper or error text programmatically associated.
- Preserve expected keyboard entry, selection, and state announcements for the chosen input pattern.
Styled quick start
Copy this entrypoint first. It includes the imports required to get the component on screen.
svelte
<script lang="ts">
import '@dryui/ui/themes/default.css';
import '@dryui/ui/themes/dark.css';
import { Rating } from '@dryui/ui';
</script>
<Rating bind:value={score} /> Import options
Root package
ts
import { Rating } from '@dryui/ui' Per-component subpath
ts
import { Rating } from '@dryui/ui/rating' API
Props, CSS variables, and the public data attributes you can target when styling.
| Prop | Type | Description | Default | Required | Bindable |
|---|---|---|---|---|---|
| size | smmdlg | Size preset affecting density, spacing, or typography. | 'md' | — | — |
| value | number | Current controlled or bindable value. | 0 | — | ✓ |
| max | number | Maximum allowed value. | 5 | — | — |
| disabled | boolean | Prevents interaction and applies disabled styling. | false | — | — |
| readonly | boolean | — | false | — | — |
| allowHalf | boolean | — | false | — | — |
| onValueChange | (value: number) => void | — | — | — | — |