UNPKG

@aotearoan/neon

Version:

Neon is a lightweight design library of Vue 3 components with minimal dependencies.

12 lines (11 loc) 399 B
/** * Describes the different actions available for the interaction with the <a href="/user-input/chip">NeonChip</a> * component. * @enum */ export declare enum NeonChipAction { /** The Click action triggers a click event in the component. */ Click = "click", /** The Remove action triggers the removal of the component. This can be used for filter chips. */ Remove = "remove" }