primevue-mirror/components/lib/checkbox/Checkbox.d.ts

267 lines
6.3 KiB
TypeScript
Raw Normal View History

/**
*
* Checkbox is an extension to standard checkbox element with theming.
*
* [Live Demo](https://www.primevue.org/checkbox/)
*
* @module checkbox
*
*/
import { VNode } from 'vue';
2023-07-06 11:17:08 +00:00
import { ComponentHooks } from '../basecomponent';
2023-09-05 08:50:46 +00:00
import { PassThroughOptions } from '../passthrough';
import { ClassComponent, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
2022-09-06 12:03:37 +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 {
/**
* Defines instance.
*/
2023-07-06 12:01:33 +00:00
instance: any;
/**
* Defines valid properties.
*/
2023-05-05 09:09:09 +00:00
props: CheckboxProps;
/**
* Defines current inline state.
*/
2023-05-05 09:09:09 +00:00
state: CheckboxState;
/**
* Defines current options.
*/
2023-06-23 13:08:09 +00:00
context: CheckboxContext;
/**
* Defines valid attributes.
*/
attrs: any;
/**
* 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 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-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 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 {
[key: string]: any;
2023-05-05 09:09:09 +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.
* @default false
2022-09-06 12:03:37 +00:00
*/
binary?: boolean;
/**
* When present, it specifies that the element should be disabled.
* @default false
2022-09-06 12:03:37 +00:00
*/
disabled?: boolean | undefined;
/**
* When present, it specifies that an input field is read-only.
* @default false
2022-09-06 12:03:37 +00:00
*/
readonly?: boolean | undefined;
/**
* When present, it specifies that the element is required.
* @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.
* @default true
2022-09-06 12:03:37 +00:00
*/
trueValue?: any;
/**
* Value in unchecked state.
* @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.
*/
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.
*/
inputStyle?: string | 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-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}
*/
pt?: PassThrough<CheckboxPassThroughOptions>;
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: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 disabled state of the item as a boolean.
* @defaultValue false
*/
disabled: boolean;
}
/**
* Defines valid slots in Checkbox component.
*/
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;
}): VNode[];
}
2022-09-06 12:03:37 +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.
*/
'update:page'(value: any): void;
2022-09-06 12:03:37 +00:00
/**
* Callback to invoke on value change.
* @param {Event} event - Browser event.
*/
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.
*/
focus(event: Event): void;
/**
* Callback to invoke when the component loses focus.
* @param {Event} event - Browser event.
2022-09-06 12:03:37 +00:00
*/
blur(event: Event): void;
}
2022-09-06 12:03:37 +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)
*
* @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;