primevue-mirror/components/lib/rating/Rating.d.ts

271 lines
6.4 KiB
TypeScript
Executable File

/**
*
* Rating component is a star based selection input.
*
* [Live Demo](https://www.primevue.org/rating/)
*
* @module rating
*
*/
import { VNode } from 'vue';
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
export declare type RatingPassThroughOptionType = RatingPassThroughAttributes | ((options: RatingPassThroughMethodOptions) => RatingPassThroughAttributes) | null | undefined;
/**
* Custom passthrough(pt) option method.
*/
export interface RatingPassThroughMethodOptions {
props: RatingProps;
state: RatingState;
context: RatingContext;
}
/**
* Custom passthrough(pt) options.
* @see {@link RatingProps.pt}
*/
export interface RatingPassThroughOptions {
/**
* Uses to pass attributes to the root's DOM element.
*/
root?: RatingPassThroughOptionType;
/**
* Uses to pass attributes to the cancel item's DOM element.
*/
cancelItem?: RatingPassThroughOptionType;
/**
* Uses to pass attributes to the cancel icon's DOM element.
*/
cancelIcon?: RatingPassThroughOptionType;
/**
* Uses to pass attributes to the item's DOM element.
*/
item?: RatingPassThroughOptionType;
/**
* Uses to pass attributes to the on icon's DOM element.
*/
onIcon?: RatingPassThroughOptionType;
/**
* Uses to pass attributes to the off icon's DOM element.
*/
offIcon?: RatingPassThroughOptionType;
/**
* Uses to pass attributes to the hidden cancel inputW wapper's DOM element.
*/
hiddenCancelInputWrapper?: RatingPassThroughOptionType;
/**
* Uses to pass attributes to the hidden cancel input's DOM element.
*/
hiddenCancelInput?: RatingPassThroughOptionType;
/**
* Uses to pass attributes to the hidden item input wrapper's DOM element.
*/
hiddenItemInputWrapper?: RatingPassThroughOptionType;
/**
* Uses to pass attributes to the hidden item input's DOM element.
*/
hiddenItemInput?: RatingPassThroughOptionType;
}
/**
* Custom passthrough attributes for each DOM elements
*/
export interface RatingPassThroughAttributes {
[key: string]: any;
}
/**
* Defines current inline state in Rating component.
*/
export interface RatingState {
/**
* name state as a number.
*/
name: string;
/**
* focusedOptionIndex state as a number.
*/
focusedOptionIndex: number;
}
/**
* Defines current options in Rating component.
*/
export interface RatingContext {
/**
* Current active state of the item as a boolean.
* @defaultValue false
*/
active: boolean;
/**
* Current focused state of item as a boolean.
* @defaultValue false
*/
focused: boolean;
}
/**
* Custom change event.
* @see {@link RatingEmits.change}
*/
export interface RatingChangeEvent {
/**
* Browser event
*/
originalEvent: Event;
/**
* Selected option value
*/
value: number;
}
/**
* Defines valid properties in Rating component.
*/
export interface RatingProps {
/**
* Value of the rating.
*/
modelValue?: number | undefined;
/**
* Name of the element.
*/
name?: string | undefined;
/**
* When present, it specifies that the element should be disabled.
* @defaultValue false
*/
disabled?: boolean | undefined;
/**
* When present, it specifies that component is read-only.
* @defaultValue false
*/
readonly?: boolean | undefined;
/**
* Number of stars.
* @defaultValue 5
*/
stars?: number | undefined;
/**
* When specified a cancel icon is displayed to allow clearing the value.
* @defaultValue true
*/
cancel?: boolean | undefined;
/**
* Icon for the on state.
* @deprecated since v3.27.0. Use 'onicon' slot.
*/
onIcon?: string | undefined;
/**
* Icon for the off state.
* @deprecated since v3.27.0. Use 'officon' slot.
*/
offIcon?: string | undefined;
/**
* Icon for the cancelable state.
* @deprecated since v3.27.0. Use 'cancelicon' slot.
*/
cancelIcon?: string | undefined;
/**
* Uses to pass attributes to DOM elements inside the component.
* @type {RatingPassThroughOptions}
*/
pt?: RatingPassThroughOptions;
/**
* When enabled, it removes component related styles in the core.
* @defaultValue false
*/
unstyled?: boolean;
}
/**
* Defines valid slots in Rating component.
*/
export interface RatingSlots {
/**
* Custom cancel icon template.
*/
cancelicon(scope: {
/**
* Style class of the icon.
*/
class: string;
}): VNode[];
/**
* Custom on icon template.
* @param {Object} scope - on icon slot's params.
*/
onicon(scope: {
/**
* Item value
*/
value: number;
/**
* Style class of the icon.
*/
class: string;
}): VNode[];
/**
* Custom off icon template.
* @param {Object} scope - off icon slot's params.
*/
officon(scope: {
/**
* Item value
*/
value: number;
/**
* Style class of the icon.
*/
class: string;
}): VNode[];
}
/**
* Defines valid emits in Rating component.
*/
export interface RatingEmits {
/**
* Emitted when the value changes.
* @param {number} value - New value.
*/
'update:modelValue'(value: number): void;
/**
* Callback to invoke when a suggestion is selected.
* @param {RatingChangeEvent} event - Custom change event.
*/
change(event: RatingChangeEvent): void;
/**
* Callback to invoke when the component receives focus.
* @param {Event} event - Browser event.
*/
focus(event: Event): void;
/**
* Callback to invoke when the component loses focus.
* @param {Event} event - Browser event.
*/
blur(event: Event): void;
}
/**
* **PrimeVue - Rating**
*
* _Rating component is a star based selection input._
*
* [Live Demo](https://www.primevue.org/rating/)
* --- ---
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
*
* @group Component
*/
declare class Rating extends ClassComponent<RatingProps, RatingSlots, RatingEmits> {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
Rating: GlobalComponentConstructor<Rating>;
}
}
export default Rating;