2023-03-01 10:44:06 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Checkbox is an extension to standard checkbox element with theming.
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/checkbox/)
|
|
|
|
*
|
|
|
|
* @module checkbox
|
|
|
|
*
|
|
|
|
*/
|
2023-04-04 12:39:42 +00:00
|
|
|
import { InputHTMLAttributes, VNode } from 'vue';
|
2023-07-06 11:17:08 +00:00
|
|
|
import { ComponentHooks } from '../basecomponent';
|
2023-08-17 23:51:01 +00:00
|
|
|
import { ClassComponent, GlobalComponentConstructor, PTOptions } from '../ts-helpers';
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2023-07-11 22:42:43 +00:00
|
|
|
export declare type CheckboxPassThroughOptionType = CheckboxPassThroughAttributes | ((options: CheckboxPassThroughMethodOptions) => CheckboxPassThroughAttributes | string) | string | null | undefined;
|
2023-05-05 09:09:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom passthrough(pt) option method.
|
|
|
|
*/
|
|
|
|
export interface CheckboxPassThroughMethodOptions {
|
2023-07-06 12:01:33 +00:00
|
|
|
instance: any;
|
2023-05-05 09:09:09 +00:00
|
|
|
props: CheckboxProps;
|
|
|
|
state: CheckboxState;
|
2023-06-23 13:08:09 +00:00
|
|
|
context: CheckboxContext;
|
2023-05-05 09:09:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom passthrough(pt) options.
|
|
|
|
* @see {@link CheckboxProps.pt}
|
|
|
|
*/
|
|
|
|
export interface CheckboxPassThroughOptions {
|
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the root's DOM element.
|
2023-05-05 09:09:09 +00:00
|
|
|
*/
|
|
|
|
root?: CheckboxPassThroughOptionType;
|
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the input's DOM element.
|
2023-05-05 09:09:09 +00:00
|
|
|
*/
|
|
|
|
input?: CheckboxPassThroughOptionType;
|
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the icon's DOM element.
|
2023-05-05 09:09:09 +00:00
|
|
|
*/
|
|
|
|
icon?: CheckboxPassThroughOptionType;
|
2023-05-05 13:09:56 +00:00
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the hidden input wrapper's DOM element.
|
2023-05-05 13:09:56 +00:00
|
|
|
*/
|
2023-05-10 08:26:12 +00:00
|
|
|
hiddenInputWrapper?: CheckboxPassThroughOptionType;
|
2023-05-05 09:09:09 +00:00
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to the hidden input's DOM element.
|
2023-05-05 09:09:09 +00:00
|
|
|
*/
|
2023-05-10 08:26:12 +00:00
|
|
|
hiddenInput?: CheckboxPassThroughOptionType;
|
2023-07-06 11:09:01 +00:00
|
|
|
/**
|
2023-08-01 14:01:12 +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 09:09:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom passthrough attributes for each DOM elements
|
|
|
|
*/
|
|
|
|
export interface CheckboxPassThroughAttributes {
|
|
|
|
[key: string]: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Defines current inline state in Checkbox component.
|
|
|
|
*/
|
|
|
|
export interface CheckboxState {
|
|
|
|
/**
|
|
|
|
* Current focus state as a boolean.
|
|
|
|
* @defaultValue false
|
|
|
|
*/
|
|
|
|
focused: boolean;
|
|
|
|
}
|
|
|
|
|
2023-03-01 10:44:06 +00:00
|
|
|
/**
|
|
|
|
* Defines valid properties in Checkbox component.
|
|
|
|
*/
|
2022-09-06 12:03:37 +00:00
|
|
|
export interface CheckboxProps {
|
|
|
|
/**
|
|
|
|
* Value of the checkbox.
|
|
|
|
*/
|
|
|
|
value?: any;
|
|
|
|
/**
|
|
|
|
* Value binding of the checkbox.
|
|
|
|
*/
|
|
|
|
modelValue?: any;
|
|
|
|
/**
|
|
|
|
* Name of the input element.
|
|
|
|
*/
|
|
|
|
name?: string | undefined;
|
|
|
|
/**
|
|
|
|
* Allows to select a boolean value instead of multiple values.
|
2023-03-01 10:44:06 +00:00
|
|
|
* @default false
|
2022-09-06 12:03:37 +00:00
|
|
|
*/
|
|
|
|
binary?: boolean;
|
|
|
|
/**
|
|
|
|
* When present, it specifies that the element should be disabled.
|
2023-03-01 10:44:06 +00:00
|
|
|
* @default false
|
2022-09-06 12:03:37 +00:00
|
|
|
*/
|
|
|
|
disabled?: boolean | undefined;
|
|
|
|
/**
|
|
|
|
* When present, it specifies that an input field is read-only.
|
2023-03-01 10:44:06 +00:00
|
|
|
* @default false
|
2022-09-06 12:03:37 +00:00
|
|
|
*/
|
|
|
|
readonly?: boolean | undefined;
|
|
|
|
/**
|
|
|
|
* When present, it specifies that the element is required.
|
2023-03-01 10:44:06 +00:00
|
|
|
* @default false
|
2022-09-06 12:03:37 +00:00
|
|
|
*/
|
|
|
|
required?: boolean | undefined;
|
|
|
|
/**
|
|
|
|
* Index of the element in tabbing order.
|
|
|
|
*/
|
|
|
|
tabindex?: number | undefined;
|
|
|
|
/**
|
|
|
|
* Value in checked state.
|
2023-03-01 10:44:06 +00:00
|
|
|
* @default true
|
2022-09-06 12:03:37 +00:00
|
|
|
*/
|
|
|
|
trueValue?: any;
|
|
|
|
/**
|
|
|
|
* Value in unchecked state.
|
2023-03-01 10:44:06 +00:00
|
|
|
* @default false
|
2022-09-06 12:03:37 +00:00
|
|
|
*/
|
|
|
|
falseValue?: any;
|
|
|
|
/**
|
|
|
|
* Identifier of the underlying input element.
|
|
|
|
*/
|
|
|
|
inputId?: string | undefined;
|
|
|
|
/**
|
|
|
|
* Style class of the input field.
|
|
|
|
*/
|
2023-03-09 07:02:25 +00:00
|
|
|
inputClass?: object | undefined;
|
2022-09-06 12:03:37 +00:00
|
|
|
/**
|
2022-09-14 11:26:01 +00:00
|
|
|
* Inline style of the input field.
|
|
|
|
*/
|
2023-03-09 07:02:25 +00:00
|
|
|
inputStyle?: string | object | undefined;
|
2022-09-06 12:03:37 +00:00
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass all properties of the HTMLInputElement to the focusable input element inside the component.
|
2022-09-06 12:03:37 +00:00
|
|
|
*/
|
|
|
|
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;
|
2023-05-05 09:09:09 +00:00
|
|
|
/**
|
2023-08-01 14:01:12 +00:00
|
|
|
* Used to pass attributes to DOM elements inside the component.
|
2023-05-05 09:09:09 +00:00
|
|
|
* @type {CheckboxPassThroughOptions}
|
|
|
|
*/
|
2023-08-17 23:51:01 +00:00
|
|
|
pt?: PTOptions<CheckboxPassThroughOptions>;
|
2023-05-24 11:53:22 +00:00
|
|
|
/**
|
|
|
|
* When enabled, it removes component related styles in the core.
|
|
|
|
* @defaultValue false
|
|
|
|
*/
|
|
|
|
unstyled?: boolean;
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
|
2023-06-23 13:08:09 +00:00
|
|
|
/**
|
|
|
|
* Defines current options in Checkbox component.
|
|
|
|
*/
|
|
|
|
export interface CheckboxContext {
|
|
|
|
/**
|
|
|
|
* Current checked state of the item as a boolean.
|
|
|
|
* @defaultValue false
|
|
|
|
*/
|
|
|
|
checked: boolean;
|
|
|
|
/**
|
|
|
|
* Current focus state of the item as a boolean.
|
|
|
|
* @defaultValue false
|
|
|
|
*/
|
|
|
|
focused: boolean;
|
|
|
|
/**
|
|
|
|
* Current disabled state of the item as a boolean.
|
|
|
|
* @defaultValue false
|
|
|
|
*/
|
|
|
|
disabled: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Defines valid slots in Checkbox component.
|
|
|
|
*/
|
2023-04-04 12:39:42 +00:00
|
|
|
export interface CheckboxSlots {
|
|
|
|
/**
|
|
|
|
* Custom icon template.
|
|
|
|
* @param {Object} scope - icon slot's params.
|
|
|
|
*/
|
|
|
|
icon(scope: {
|
|
|
|
/**
|
|
|
|
* State of the checkbox.
|
|
|
|
*/
|
|
|
|
checked: boolean;
|
2023-05-24 11:53:22 +00:00
|
|
|
/**
|
|
|
|
* Style class of the icon.
|
|
|
|
*/
|
|
|
|
class: string;
|
2023-04-04 12:39:42 +00:00
|
|
|
}): VNode[];
|
|
|
|
}
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2023-03-01 10:44:06 +00:00
|
|
|
/**
|
|
|
|
* Defines valid emits in Checkbox component.
|
|
|
|
*/
|
|
|
|
export interface CheckboxEmits {
|
2022-09-06 12:03:37 +00:00
|
|
|
/**
|
|
|
|
* Emitted when the page changes.
|
|
|
|
* @param {*} value - New page value.
|
|
|
|
*/
|
2023-03-01 10:44:06 +00:00
|
|
|
'update:page'(value: any): void;
|
2022-09-06 12:03:37 +00:00
|
|
|
/**
|
|
|
|
* Callback to invoke on value click.
|
|
|
|
* @param {MouseEvent} event - Browser event.
|
|
|
|
*/
|
2023-03-01 10:44:06 +00:00
|
|
|
click(event: MouseEvent): void;
|
2022-09-06 12:03:37 +00:00
|
|
|
/**
|
|
|
|
* Callback to invoke on value change.
|
|
|
|
* @param {Event} event - Browser event.
|
|
|
|
*/
|
2023-03-01 10:44:06 +00:00
|
|
|
change(event: Event): void;
|
2022-09-06 12:03:37 +00:00
|
|
|
/**
|
|
|
|
* Callback to invoke on value change.
|
|
|
|
* @param {boolean} value - New value.
|
|
|
|
*/
|
2023-03-01 10:44:06 +00:00
|
|
|
input(value: boolean): void;
|
|
|
|
}
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2023-03-01 10:44:06 +00:00
|
|
|
/**
|
|
|
|
* **PrimeVue - Checkbox**
|
|
|
|
*
|
|
|
|
* _Accordion groups a collection of contents in tabs._
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/checkbox/)
|
|
|
|
* --- ---
|
2023-03-03 10:55:20 +00:00
|
|
|
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
|
2023-03-01 10:44:06 +00:00
|
|
|
*
|
|
|
|
* @group Component
|
|
|
|
*
|
|
|
|
*/
|
2023-03-01 12:15:52 +00:00
|
|
|
declare class Checkbox extends ClassComponent<CheckboxProps, CheckboxSlots, CheckboxEmits> {}
|
2022-09-06 12:03:37 +00:00
|
|
|
|
|
|
|
declare module '@vue/runtime-core' {
|
|
|
|
interface GlobalComponents {
|
2022-09-14 11:26:01 +00:00
|
|
|
Checkbox: GlobalComponentConstructor<Checkbox>;
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Checkbox;
|