UNPKG

@progress/kendo-angular-inputs

Version:

Kendo UI for Angular Inputs Package - Everything you need to build professional form functionality (Checkbox, ColorGradient, ColorPalette, ColorPicker, FlatColorPicker, FormField, MaskedTextBox, NumericTextBox, RadioButton, RangeSlider, Slider, Switch, Te

33 lines (32 loc) 1.01 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * An interface for the rating items in the Rating component * * @hidden * */ export interface RatingItem { /** * Specifies the rating item title. */ title?: string; /** * Specifies whether the rating item is selected. */ selected?: boolean; /** * Specifies whether the rating item should be indicated as selected (if the `k-selected` class should be rendered). */ selectedIndicator?: boolean; /** * Specifies whether the rating item is hovered. */ hovered?: boolean; /** * Specifies whether the value represents half icon or whole icon. */ half?: boolean; }