On this page
Loading...
| name | description | type | default |
| ---- | ----------- | ---- | ------- |
| `activeIcon` | Template id for custom active icons. | `string` \| `string[]` | _undefined_ |
| `allowClear` | Enables the clearing upon clicking the selected item again. | `boolean` | _false_ |
| `disabled` | Toggle the disabled state for the component. | `boolean` | _false_ |
| `highlightOnlySelected` | If enabled, only the currently selected icon will be visibly highlighted. | `boolean` | _false_ |
| `icon` | Template id for custom icons. | `string` \| `string[]` | _undefined_ |
| `itemCount` | Specifies the total number of stars to be displayed in the star rating component. This property determines the scale of the rating, such as out of 5 stars, 10 stars, etc. | `number` | _5_ |
| `precision` | Minimum increment value change allowed. | `1` \| `0.5` \| `0.25` | _1_ |
| `readOnly` | Toggle the readonly state for the component. | `boolean` | _false_ |
| `size` | Size the component small, large, or custom if you define custom icons with custom height. | `sm` \| `lg` \| `custom` | _undefined_ |
| `tooltips` | Enable tooltips with default values or set specific labels for each icon. | `boolean` \| `string[]` | _undefined_ |
| `value` | The value of component. | `number` \| `null` | _null_ |
##### Outputs
| name | description | type |
| ---- | ----------- | ---- |
| `hoverValueChange` | Event emitted on `mouseenter` and `mouseleave` | `number` \| `null` |
| `valueChange` | Event emitted on `value` change | `number` \| `null` |