primevue-mirror/components/togglebutton/ToggleButton.d.ts

112 lines
2.9 KiB
TypeScript
Raw Normal View History

2022-09-06 12:03:37 +00:00
import { InputHTMLAttributes } from 'vue';
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
type ToggleButtonType = 'left' | 'right' | undefined;
export interface ToggleButtonProps {
/**
* Value of the component.
*/
modelValue?: boolean | undefined;
/**
* Icon for the on state.
*/
onIcon?: string | undefined;
/**
* Icon for the off state.
*/
offIcon?: string | undefined;
/**
* Label for the on state.
* Default value is 'yes'.
*/
onLabel?: string | undefined;
/**
* Label for the off state.
* Default value is 'no'.
*/
offLabel?: string | undefined;
/**
* Position of the icon.
* @see ToggleButtonType
* Default value is 'left'.
*/
iconPos?: ToggleButtonType;
/**
* When present, it specifies that the element should be disabled.
*/
disabled?: boolean | undefined;
/**
* Index of the element in tabbing order.
*/
tabindex?: string | undefined;
/**
* Identifier of the focus input to match a label defined for the chips.
*/
inputId?: string | undefined;
/**
* Style class of the input field.
*/
inputClass?: any | undefined;
/**
* Inline style of the input field.
*/
inputStyle?: any | undefined;
/**
* Uses to pass all properties of the HTMLInputElement to the focusable input element inside the component.
*/
inputProps?: InputHTMLAttributes | undefined;
/**
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
*/
'aria-labelledby'?: string | undefined;
/**
* Establishes a string value that labels the component.
*/
'aria-label'?: string | undefined;
}
2022-09-14 11:26:01 +00:00
export interface ToggleButtonSlots {}
2022-09-06 12:03:37 +00:00
export declare type ToggleButtonEmits = {
/**
* Emitted when the value changes.
* @param {boolean} value - New value.
*/
'update:modelValue': (value: boolean) => void;
/**
* Callback to invoke on value change.
* @param {Event} event - Browser event.
*/
2022-09-14 11:26:01 +00:00
change: (event: Event) => void;
2022-09-06 12:03:37 +00:00
/**
* Callback to invoke when the component receives focus.
* @param {Event} 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 when the component loses focus.
* @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 ToggleButton extends ClassComponent<ToggleButtonProps, ToggleButtonSlots, ToggleButtonEmits> {}
2022-09-06 12:03:37 +00:00
declare module '@vue/runtime-core' {
interface GlobalComponents {
2022-09-14 11:26:01 +00:00
ToggleButton: GlobalComponentConstructor<ToggleButton>;
2022-09-06 12:03:37 +00:00
}
}
/**
*
* ToggleButton is used to select a boolean value using a button.
*
* Demos:
*
2022-09-14 11:26:01 +00:00
* - [ToggleButton](https://www.primefaces.org/primevue/togglebutton)
2022-09-06 12:03:37 +00:00
*
*/
export default ToggleButton;