2023-03-01 12:40:56 +00:00
|
|
|
/**
|
|
|
|
*
|
2023-03-01 12:59:47 +00:00
|
|
|
* InputSwitch is used to select a boolean value.
|
2023-03-01 12:40:56 +00:00
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/inputswitch/)
|
|
|
|
*
|
|
|
|
* @module inputswitch
|
|
|
|
*
|
|
|
|
*/
|
2023-07-06 11:17:08 +00:00
|
|
|
import { ComponentHooks } from '../basecomponent';
|
2023-09-05 08:50:46 +00:00
|
|
|
import { PassThroughOptions } from '../passthrough';
|
2023-09-05 11:28:04 +00:00
|
|
|
import { ClassComponent, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2023-07-11 22:42:43 +00:00
|
|
|
export declare type InputSwitchPassThroughOptionType = InputSwitchPassThroughAttributes | ((options: InputSwitchPassThroughMethodOptions) => InputSwitchPassThroughAttributes | string) | string | null | undefined;
|
2023-05-05 13:10:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom passthrough(pt) option method.
|
|
|
|
*/
|
|
|
|
export interface InputSwitchPassThroughMethodOptions {
|
2023-09-05 06:50:04 +00:00
|
|
|
/**
|
|
|
|
* Defines instance.
|
|
|
|
*/
|
2023-07-06 12:01:33 +00:00
|
|
|
instance: any;
|
2023-09-05 06:50:04 +00:00
|
|
|
/**
|
|
|
|
* Defines valid properties.
|
|
|
|
*/
|
2023-05-05 13:10:07 +00:00
|
|
|
props: InputSwitchProps;
|
2024-01-14 13:38:51 +00:00
|
|
|
/**
|
|
|
|
* Defines current options.
|
|
|
|
*/
|
|
|
|
context: InputSwitchContext;
|
2023-12-10 21:41:17 +00:00
|
|
|
/**
|
|
|
|
* Defines valid attributes.
|
|
|
|
*/
|
|
|
|
attrs: any;
|
2023-12-05 11:06:32 +00:00
|
|
|
/**
|
|
|
|
* Defines parent options.
|
|
|
|
*/
|
|
|
|
parent: any;
|
2023-09-05 08:50:46 +00:00
|
|
|
/**
|
|
|
|
* Defines passthrough(pt) options in global config.
|
|
|
|
*/
|
|
|
|
global: object | undefined;
|
2023-05-05 13:10:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom passthrough(pt) options.
|
|
|
|
* @see {@link InputSwitchProps.pt}
|
|
|
|
*/
|
|
|
|
export interface InputSwitchPassThroughOptions {
|
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the root's DOM element.
|
2023-05-05 13:10:07 +00:00
|
|
|
*/
|
|
|
|
root?: InputSwitchPassThroughOptionType;
|
|
|
|
/**
|
2024-01-14 13:38:51 +00:00
|
|
|
* Used to pass attributes to the input's DOM element.
|
2023-05-05 13:10:07 +00:00
|
|
|
*/
|
2024-01-14 13:38:51 +00:00
|
|
|
input?: InputSwitchPassThroughOptionType;
|
2023-05-05 13:10:07 +00:00
|
|
|
/**
|
2024-01-14 13:38:51 +00:00
|
|
|
* Used to pass attributes to the slider's DOM element.
|
2023-05-05 13:10:07 +00:00
|
|
|
*/
|
2024-01-14 13:38:51 +00:00
|
|
|
slider?: InputSwitchPassThroughOptionType;
|
2023-07-06 11:09:01 +00:00
|
|
|
/**
|
2023-11-07 06:16:39 +00:00
|
|
|
* Used to manage all lifecycle hooks.
|
2023-07-06 11:09:01 +00:00
|
|
|
* @see {@link BaseComponent.ComponentHooks}
|
|
|
|
*/
|
|
|
|
hooks?: ComponentHooks;
|
2023-05-05 13:10:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom passthrough attributes for each DOM elements
|
|
|
|
*/
|
|
|
|
export interface InputSwitchPassThroughAttributes {
|
|
|
|
[key: string]: any;
|
|
|
|
}
|
|
|
|
|
2023-03-01 12:40:56 +00:00
|
|
|
/**
|
|
|
|
* Defines valid properties in InputSwitch component.
|
|
|
|
*/
|
2022-09-06 12:03:37 +00:00
|
|
|
export interface InputSwitchProps {
|
|
|
|
/**
|
|
|
|
* Specifies whether a inputswitch should be checked or not.
|
2023-03-10 14:00:58 +00:00
|
|
|
* @defaultValue false
|
2022-09-06 12:03:37 +00:00
|
|
|
*/
|
|
|
|
modelValue?: boolean | string | undefined;
|
|
|
|
/**
|
|
|
|
* Value in checked state.
|
2023-03-01 12:40:56 +00:00
|
|
|
* @defaultValue true
|
2022-09-06 12:03:37 +00:00
|
|
|
*/
|
|
|
|
trueValue?: any;
|
|
|
|
/**
|
|
|
|
* Value in unchecked state.
|
2023-03-01 12:40:56 +00:00
|
|
|
* @defaultValue false
|
2022-09-06 12:03:37 +00:00
|
|
|
*/
|
|
|
|
falseValue?: any;
|
2024-01-30 11:27:56 +00:00
|
|
|
/**
|
|
|
|
* When present, it specifies that the component should have invalid state style.
|
|
|
|
* @defaultValue false
|
|
|
|
*/
|
|
|
|
invalid?: boolean | undefined;
|
2023-10-05 13:33:45 +00:00
|
|
|
/**
|
|
|
|
* When present, it specifies that the component should be disabled.
|
|
|
|
* @defaultValue false
|
|
|
|
*/
|
|
|
|
disabled?: boolean | undefined;
|
2024-01-14 13:38:51 +00:00
|
|
|
/**
|
|
|
|
* When present, it specifies that an input field is read-only.
|
|
|
|
* @default false
|
|
|
|
*/
|
|
|
|
readonly?: boolean | undefined;
|
|
|
|
/**
|
|
|
|
* Index of the element in tabbing order.
|
|
|
|
*/
|
|
|
|
tabindex?: number | undefined;
|
2022-09-06 12:03:37 +00:00
|
|
|
/**
|
|
|
|
* Identifier of the underlying input element.
|
|
|
|
*/
|
|
|
|
inputId?: string | undefined;
|
|
|
|
/**
|
|
|
|
* Style class of the input field.
|
|
|
|
*/
|
2023-03-09 07:02:25 +00:00
|
|
|
inputClass?: string | object | undefined;
|
2022-09-06 12:03:37 +00:00
|
|
|
/**
|
|
|
|
* Inline style of the input field.
|
|
|
|
*/
|
2023-03-09 07:02:25 +00:00
|
|
|
inputStyle?: object | undefined;
|
2022-09-06 12:03:37 +00:00
|
|
|
/**
|
|
|
|
* Establishes relationships between the component and label(s) where its value should be one or more element IDs.
|
|
|
|
*/
|
2023-11-24 12:21:54 +00:00
|
|
|
ariaLabelledby?: string | undefined;
|
2022-09-06 12:03:37 +00:00
|
|
|
/**
|
|
|
|
* Establishes a string value that labels the component.
|
|
|
|
*/
|
2023-11-24 12:21:54 +00:00
|
|
|
ariaLabel?: string | undefined;
|
2023-05-24 11:15:28 +00:00
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to DOM elements inside the component.
|
2023-07-23 15:58:56 +00:00
|
|
|
* @type {InputSwitchPassThroughOptions}
|
2023-05-24 11:15:28 +00:00
|
|
|
*/
|
2023-09-05 11:28:04 +00:00
|
|
|
pt?: PassThrough<InputSwitchPassThroughOptions>;
|
2023-09-05 08:50:46 +00:00
|
|
|
/**
|
|
|
|
* Used to configure passthrough(pt) options of the component.
|
|
|
|
* @type {PassThroughOptions}
|
|
|
|
*/
|
|
|
|
ptOptions?: PassThroughOptions;
|
2023-05-24 11:15:28 +00:00
|
|
|
/**
|
|
|
|
* When enabled, it removes component related styles in the core.
|
|
|
|
* @defaultValue false
|
|
|
|
*/
|
|
|
|
unstyled?: boolean;
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
|
2024-01-14 13:38:51 +00:00
|
|
|
/**
|
|
|
|
* Defines current options in InputSwitch component.
|
|
|
|
*/
|
|
|
|
export interface InputSwitchContext {
|
|
|
|
/**
|
|
|
|
* Current checked state of the item as a boolean.
|
|
|
|
* @defaultValue false
|
|
|
|
*/
|
|
|
|
checked: boolean;
|
|
|
|
/**
|
|
|
|
* Current disabled state of the item as a boolean.
|
|
|
|
* @defaultValue false
|
|
|
|
*/
|
|
|
|
disabled: boolean;
|
|
|
|
}
|
|
|
|
|
2022-09-14 11:26:01 +00:00
|
|
|
export interface InputSwitchSlots {}
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2023-03-01 12:40:56 +00:00
|
|
|
/**
|
|
|
|
* Defines valid emits in InputSwitch component.
|
|
|
|
*/
|
|
|
|
export interface InputSwitchEmits {
|
2022-09-06 12:03:37 +00:00
|
|
|
/**
|
|
|
|
* Emitted when the value changes.
|
|
|
|
* @param {boolean} value - New value.
|
|
|
|
*/
|
2023-03-01 12:40:56 +00:00
|
|
|
'update:modelValue'(value: boolean): void;
|
2022-09-06 12:03:37 +00:00
|
|
|
/**
|
2024-01-14 13:38:51 +00:00
|
|
|
* Callback to invoke on value change.
|
2022-09-06 12:03:37 +00:00
|
|
|
* @param {Event} event - Browser event.
|
|
|
|
*/
|
2024-01-14 13:38:51 +00:00
|
|
|
change(event: Event): void;
|
2022-09-06 12:03:37 +00:00
|
|
|
/**
|
2024-01-14 13:38:51 +00:00
|
|
|
* Callback to invoke when the component receives focus.
|
2022-09-06 12:03:37 +00:00
|
|
|
* @param {Event} event - Browser event.
|
|
|
|
*/
|
2024-01-14 13:38:51 +00:00
|
|
|
focus(event: Event): void;
|
2022-09-06 12:03:37 +00:00
|
|
|
/**
|
2024-01-14 13:38:51 +00:00
|
|
|
* Callback to invoke when the component loses focus.
|
|
|
|
* @param {Event} event - Browser event.
|
2022-09-06 12:03:37 +00:00
|
|
|
*/
|
2024-01-14 13:38:51 +00:00
|
|
|
blur(event: Event): void;
|
2023-03-01 12:40:56 +00:00
|
|
|
}
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2023-03-01 12:40:56 +00:00
|
|
|
/**
|
|
|
|
* **PrimeVue - InputSwitch**
|
|
|
|
*
|
2023-03-01 12:59:47 +00:00
|
|
|
* _InputSwitch is used to select a boolean value._
|
2023-03-01 12:40:56 +00:00
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/inputswitch/)
|
|
|
|
* --- ---
|
2023-03-03 10:55:20 +00:00
|
|
|
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
|
2023-03-01 12:40:56 +00:00
|
|
|
*
|
|
|
|
* @group Component
|
|
|
|
*
|
|
|
|
*/
|
2022-09-14 11:26:01 +00:00
|
|
|
declare class InputSwitch extends ClassComponent<InputSwitchProps, InputSwitchSlots, InputSwitchEmits> {}
|
2022-09-06 12:03:37 +00:00
|
|
|
|
|
|
|
declare module '@vue/runtime-core' {
|
|
|
|
interface GlobalComponents {
|
2022-09-14 11:26:01 +00:00
|
|
|
InputSwitch: GlobalComponentConstructor<InputSwitch>;
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default InputSwitch;
|