UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) [![Discord Chat](https://img.shields.io/discord/55794023

70 lines (63 loc) 1.62 kB
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers'; export interface InputSwitchProps { /** * Specifies whether a inputswitch should be checked or not. */ modelValue?: boolean | string | undefined; /** * Inline style of the component. */ class?: any; /** * Style class of the component input field. */ style?: any; /** * Value in checked state. */ trueValue?: any; /** * Value in unchecked state. */ falseValue?: any; } export interface InputSwitchSlots { } export declare type InputSwitchEmits = { /** * Emitted when the value changes. * @param {boolean} value - New value. */ 'update:modelValue': (value: boolean) => void; /** * Callback to invoke on click. * @param {Event} event - Browser event. */ 'click': (event: Event) => void; /** * Callback to invoke on value change. * @param {Event} event - Browser event. */ 'change': (event: Event) => void; /** * Callback to invoke on value change. * @param {boolean} value - New value. */ 'input': (value: boolean) => void; } declare class InputSwitch extends ClassComponent<InputSwitchProps, InputSwitchSlots, InputSwitchEmits> { } declare module '@vue/runtime-core' { interface GlobalComponents { InputSwitch: GlobalComponentConstructor<InputSwitch> } } /** * * InputSwitch is used to select a boolean value. * * Demos: * * - [InputSwitch](https://www.primefaces.org/primevue/showcase/#/inputswitch) * */ export default InputSwitch;