primevue-mirror/components/selectbutton/SelectButton.d.ts

122 lines
3.2 KiB
TypeScript
Raw Normal View History

2022-09-06 12:03:37 +00:00
import { VNode } from 'vue';
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
2022-09-14 11:26:01 +00:00
type SelectButtonOptionLabelType = string | ((data: any) => string) | undefined;
2022-09-06 12:03:37 +00:00
2022-09-14 11:26:01 +00:00
type SelectButtonOptionValueType = string | ((data: any) => any) | undefined;
2022-09-06 12:03:37 +00:00
2022-09-14 11:26:01 +00:00
type SelectButtonOptionDisabledType = string | ((data: any) => boolean) | undefined;
2022-09-06 12:03:37 +00:00
export interface SelectButtonChangeEvent {
/**
* Browser event.
*/
originalEvent: Event;
/**
* Single value or an array of values that are selected.
*/
value: any;
}
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?: SelectButtonOptionLabelType;
/**
* Property name or getter function to use as the value of an option, defaults to the option itself when not defined.
*/
optionValue?: SelectButtonOptionValueType;
/**
* Property name or getter function to use as the disabled flag of an option, defaults to false when not defined.
*/
optionDisabled?: SelectButtonOptionDisabledType;
/**
* When specified, allows selecting multiple values.
*/
multiple?: boolean | undefined;
/**
* When present, it specifies that the element should be disabled.
*/
disabled?: boolean | undefined;
/**
* A property to uniquely identify an option.
*/
dataKey?: string | undefined;
/**
* Whether selection can be cleared.
*/
unselectable?: boolean | undefined;
/**
* Identifier of the underlying element.
*/
2022-09-14 11:26:01 +00:00
'aria-labelledby'?: string | undefined;
2022-09-06 12:03:37 +00:00
}
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[];
}
export declare type 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.
*/
2022-09-14 11:26:01 +00:00
change: (event: SelectButtonChangeEvent) => void;
2022-09-06 12:03:37 +00:00
/**
* Callback to invoke on focus.
* @param {SelectButtonChangeEvent} event - Browser event.
*/
2022-09-14 11:26:01 +00:00
focus: (event: Event) => void;
2022-09-06 12:03:37 +00:00
/**
* Callback to invoke on blur.
* @param {Event} event - Browser event.
*/
2022-09-14 11:26:01 +00:00
blur: (event: Event) => void;
};
2022-09-06 12:03:37 +00:00
2022-09-14 11:26:01 +00:00
declare class SelectButton extends ClassComponent<SelectButtonProps, SelectButtonSlots, SelectButtonEmits> {}
2022-09-06 12:03:37 +00:00
declare module '@vue/runtime-core' {
interface GlobalComponents {
2022-09-14 11:26:01 +00:00
SelectButton: GlobalComponentConstructor<SelectButton>;
2022-09-06 12:03:37 +00:00
}
}
/**
*
* SelectButton is a form component to choose a value from a list of options using button elements.
*
* Demos:
*
2022-09-14 11:26:01 +00:00
* - [SelectButton](https://www.primefaces.org/primevue/selectbutton)
2022-09-06 12:03:37 +00:00
*
*/
export default SelectButton;