primevue-mirror/components/lib/chips/Chips.d.ts

287 lines
7.0 KiB
TypeScript
Raw Normal View History

2023-03-01 12:15:52 +00:00
/**
*
* Chips groups a collection of contents in tabs.
*
* [Live Demo](https://www.primevue.org/chips/)
*
* @module chips
*
*/
2022-09-06 12:03:37 +00:00
import { InputHTMLAttributes, 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, PTOptions } from '../ts-helpers';
2022-09-06 12:03:37 +00:00
export declare type ChipsPassThroughOptionType = ChipsPassThroughAttributes | ((options: ChipsPassThroughMethodOptions) => ChipsPassThroughAttributes | string) | string | null | undefined;
2023-05-05 09:36:30 +00:00
/**
* Custom passthrough(pt) option method.
*/
export interface ChipsPassThroughMethodOptions {
/**
* Defines instance.
*/
2023-07-06 12:01:33 +00:00
instance: any;
/**
* Defines valid properties.
*/
2023-05-05 09:36:30 +00:00
props: ChipsProps;
/**
* Defines current inline state.
*/
2023-05-05 09:36:30 +00:00
state: ChipsState;
2023-09-05 08:50:46 +00:00
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
2023-05-05 09:36:30 +00:00
}
2023-03-01 12:15:52 +00:00
/**
2023-03-06 20:35:39 +00:00
* Custom add event.
* @see {@link ChipsEmits.add}
2023-03-01 12:15:52 +00:00
*/
2022-09-06 12:03:37 +00:00
export interface ChipsAddEvent {
/**
* Browser event.
*/
originalEvent: Event;
/**
* Added/Removed item value.
*/
value: any;
}
/**
2023-03-01 12:15:52 +00:00
* Custom remove event.
2023-03-06 20:35:39 +00:00
* @see {@link ChipsEmits.remove}
2022-09-06 12:03:37 +00:00
* @extends ChipsAddEvent
*/
2022-09-14 11:26:01 +00:00
export interface ChipsRemoveEvent extends ChipsAddEvent {}
2022-09-06 12:03:37 +00:00
2023-05-05 09:36:30 +00:00
/**
* Custom passthrough(pt) options.
* @see {@link ChipsProps.pt}
*/
export interface ChipsPassThroughOptions {
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the root's DOM element.
2023-05-05 09:36:30 +00:00
*/
root?: ChipsPassThroughOptionType;
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the container's DOM element.
2023-05-05 09:36:30 +00:00
*/
container?: ChipsPassThroughOptionType;
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the token's DOM element.
2023-05-05 09:36:30 +00:00
*/
token?: ChipsPassThroughOptionType;
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the label's DOM element.
2023-05-05 09:36:30 +00:00
*/
label?: ChipsPassThroughOptionType;
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the remove token icon's DOM element.
2023-05-05 09:36:30 +00:00
*/
removeTokenIcon?: ChipsPassThroughOptionType;
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the input token's DOM element.
2023-05-05 09:36:30 +00:00
*/
inputToken?: ChipsPassThroughOptionType;
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the input's DOM element.
2023-05-05 09:36:30 +00:00
*/
input?: ChipsPassThroughOptionType;
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:36:30 +00:00
}
/**
* Custom passthrough attributes for each DOM elements
*/
export interface ChipsPassThroughAttributes {
[key: string]: any;
}
/**
* Defines current inline state in Chips component.
*/
export interface ChipsState {
/**
* Current id state as a string.
*/
id: string;
/**
* Current input value as a string.
*/
inputValue: string;
/**
* Current focused state as a boolean.
* @defaultValue false
*/
focused: boolean;
/**
* Current focused item index state as a number.
*/
focusedIndex: number;
}
2023-03-01 12:15:52 +00:00
/**
* Defines valid properties in Chips component.
*/
2022-09-06 12:03:37 +00:00
export interface ChipsProps {
/**
* Value of the component.
*/
modelValue?: any[];
/**
* Maximum number of entries allowed.
*/
max?: number | undefined;
/**
* Whether to add an item when the input loses focus.
2023-03-10 14:00:58 +00:00
* @defaultValue false
2022-09-06 12:03:37 +00:00
*/
addOnBlur?: boolean | undefined;
/**
* Whether to allow duplicate values or not.
2023-03-10 14:00:58 +00:00
* @defaultValue true
2022-09-06 12:03:37 +00:00
*/
allowDuplicate?: boolean | undefined;
/**
2022-12-08 11:04:25 +00:00
* Separator char to add an item when pressed in addition to the enter key.
2022-09-06 12:03:37 +00:00
*/
2022-12-08 11:04:25 +00:00
separator?: string | any;
2022-09-06 12:03:37 +00:00
/**
* Identifier of the focus input to match a label defined for the chips.
*/
inputId?: string | undefined;
/**
* Style class of the input field.
*/
inputClass?: string | object | undefined;
2022-09-06 12:03:37 +00:00
/**
* Inline style of the input field.
*/
inputStyle?: 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.
* @deprecated since v3.26.0. Use 'pt' property instead.
2022-09-06 12:03:37 +00:00
*/
inputProps?: InputHTMLAttributes | undefined;
2022-12-08 11:04:25 +00:00
/**
* Icon to display in chip remove action.
* @deprecated since v3.27.0. Use 'removetokenicon' slot.
2022-12-08 11:04:25 +00:00
*/
removeTokenIcon?: string | undefined;
2022-09-06 12:03:37 +00:00
/**
* When present, it specifies that the element should be disabled.
*/
disabled?: boolean | undefined;
/**
* Placeholder text for the input.
*/
placeholder?: string | 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:36:30 +00:00
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to DOM elements inside the component.
2023-05-05 09:36:30 +00:00
* @type {ChipsPassThroughOptions}
*/
pt?: PTOptions<ChipsPassThroughOptions>;
2023-09-05 08:50:46 +00:00
/**
* Used to configure passthrough(pt) options of the component.
* @type {PassThroughOptions}
*/
ptOptions?: PassThroughOptions;
2023-05-24 09:27:50 +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-03-01 12:15:52 +00:00
/**
* Defines valid slots in Chips slots.
*/
2022-09-06 12:03:37 +00:00
export interface ChipsSlots {
/**
* Custom chip template.
* @param {Object} scope - chip slot's params.
*/
2023-03-01 12:15:52 +00:00
chip(scope: {
2022-09-06 12:03:37 +00:00
/**
* Value of the component
*/
value: any;
2023-03-01 12:15:52 +00:00
}): VNode[];
/**
* Custom remove token icon template.
* @param {Object} scope - remove token icon slot's params.
*/
removetokenicon(scope: {
/**
2023-08-16 06:32:23 +00:00
* Style class of the icon.
*/
2023-08-16 06:32:23 +00:00
class: string;
/**
* Index of the token.
*/
index: number;
/**
* Remove token icon function.
* @param {Event} event - Browser event
*/
2023-08-17 07:16:25 +00:00
onClick: (event: Event, index: number) => void;
}): VNode[];
2022-09-06 12:03:37 +00:00
}
2023-03-01 12:15:52 +00:00
/**
* Defines valid emits in Chips component.
*/
export interface ChipsEmits {
2022-09-06 12:03:37 +00:00
/**
* Emitted when the value changes.
* @param {*} value - New value.
*/
2023-03-01 12:15:52 +00:00
'update:modelValue'(value: any[]): void;
2022-09-06 12:03:37 +00:00
/**
* Callback to invoke when a chip is added.
* @param {ChipsAddEvent} event - Custom add event.
*/
2023-03-01 12:15:52 +00:00
add(event: ChipsAddEvent): void;
2022-09-06 12:03:37 +00:00
/**
* Callback to invoke when a chip is removed.
* @param {ChipsRemoveEvent} event - Custom remove event.
*/
2023-03-01 12:15:52 +00:00
remove(event: ChipsRemoveEvent): void;
}
2022-09-06 12:03:37 +00:00
2023-03-01 12:15:52 +00:00
/**
* **PrimeVue - Chips**
*
* _Chips is used to enter multiple values on an input field._
*
* [Live Demo](https://www.primevue.org/chips/)
* --- ---
2023-03-03 10:55:20 +00:00
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
2023-03-01 12:15:52 +00:00
*
* @group Component
*
*/
2022-09-14 11:26:01 +00:00
declare class Chips extends ClassComponent<ChipsProps, ChipsSlots, ChipsEmits> {}
2022-09-06 12:03:37 +00:00
declare module '@vue/runtime-core' {
interface GlobalComponents {
2022-09-14 11:26:01 +00:00
Chips: GlobalComponentConstructor<Chips>;
2022-09-06 12:03:37 +00:00
}
}
export default Chips;