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

155 lines
3.6 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';
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
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-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.
*/
addOnBlur?: boolean | undefined;
/**
* Whether to allow duplicate values or not.
2023-03-03 08:18:55 +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?: any | undefined;
/**
* Inline style of the input field.
*/
inputStyle?: any | undefined;
/**
* Uses to pass all properties of the HTMLInputElement to the focusable input element inside the component.
*/
inputProps?: InputHTMLAttributes | undefined;
2022-12-08 11:04:25 +00:00
/**
* Icon to display in chip remove action.
2023-03-08 10:51:52 +00:00
* @defaultValue pi pi-times-circle
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-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[];
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;