/** * * SelectButton is used to choose single or multiple items from a list using buttons. * * [Live Demo](https://www.primevue.org/selectbutton/) * * @module selectbutton * */ import { VNode } from 'vue'; import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers'; export declare type SelectButtonPassThroughOptionType = SelectButtonPassThroughAttributes | ((options: SelectButtonPassThroughMethodOptions) => SelectButtonPassThroughAttributes) | null | undefined; /** * Custom passthrough(pt) option method. */ export interface SelectButtonPassThroughMethodOptions { props: SelectButtonProps; state: SelectButtonState; context: SelectButtonContext; } /** * Custom passthrough(pt) options. * @see {@link SelectButtonProps.pt} */ export interface SelectButtonPassThroughOptions { /** * Uses to pass attributes to the root's DOM element. */ root?: SelectButtonPassThroughOptionType; /** * Uses to pass attributes to the button's DOM element. */ button?: SelectButtonPassThroughOptionType; /** * Uses to pass attributes to the label's DOM element. */ label?: SelectButtonPassThroughOptionType; } /** * Custom passthrough attributes for each DOM elements */ export interface SelectButtonPassThroughAttributes { [key: string]: any; } /** * Custom change event. * @see {@link SelectButtonEmits.change} */ export interface SelectButtonChangeEvent { /** * Browser event. */ originalEvent: Event; /** * Single value or an array of values that are selected. */ value: any; } /** * Defines current inline state in SelectButton component. */ export interface SelectButtonState { /** * FocusedIndex state as a number. */ focusedIndex: number; } /** * Defines current options in SelectButton component. */ export interface SelectButtonContext { /** * 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; } /** * Defines valid properties in SelectButton component. */ export interface SelectButtonProps { /** * Value of the component. */ modelValue?: any; /** * An array of selectitems to display as the available options. */ options?: any[] | undefined; /** * Property name or getter function to use as the label of an option. */ optionLabel?: string | ((data: any) => string) | undefined; /** * Property name or getter function to use as the value of an option, defaults to the option itself when not defined. */ optionValue?: string | ((data: any) => any) | undefined; /** * Property name or getter function to use as the disabled flag of an option, defaults to false when not defined. */ optionDisabled?: string | ((data: any) => boolean) | undefined; /** * When specified, allows selecting multiple values. * @defaultValue false */ multiple?: boolean | undefined; /** * When present, it specifies that the element should be disabled. * @defaultValue false */ disabled?: boolean | undefined; /** * A property to uniquely identify an option. */ dataKey?: string | undefined; /** * Whether selection can be cleared. * @defaultValue false */ unselectable?: boolean | undefined; /** * Identifier of the underlying element. */ 'aria-labelledby'?: string | undefined; /** * Uses to pass attributes to DOM elements inside the component. * @type {SelectButtonPassThroughOptions} */ pt?: SelectButtonPassThroughOptions; } /** * Defines valid slots in SelectButton component. */ export interface SelectButtonSlots { /** * Custom content for each option. * @param {Object} scope - option slot's params. */ option(scope: { /** * Option instance */ option: any; /** * Index of the option */ index: number; }): VNode[]; } /** * Defines valid emits in SelectButton component. */ export interface SelectButtonEmits { /** * Emitted when the value changes. * @param {*} value - New value. */ 'update:modelValue'(value: any): void; /** * Callback to invoke on value change. * @param {SelectButtonChangeEvent} event - Custom change event. */ change(event: SelectButtonChangeEvent): void; /** * Callback to invoke on focus. */ focus(event: Event): void; /** * Callback to invoke on blur. * @param {Event} event - Browser event. */ blur(event: Event): void; } /** * **PrimeVue - SelectButton** * * _SelectButton is used to choose single or multiple items from a list using buttons._ * * [Live Demo](https://www.primevue.org/selectbutton/) * --- --- * ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png) * * @group Component */ declare class SelectButton extends ClassComponent {} declare module '@vue/runtime-core' { interface GlobalComponents { SelectButton: GlobalComponentConstructor; } } export default SelectButton;