UNPKG

@ryanhelsing/ry-ui

Version:

Framework-agnostic, Light DOM web components. CSS is the source of truth.

18 lines 501 B
/** * <ry-tag-input> * * Free-form tag entry with delimiter splitting and paste support. * * Usage: * <ry-tag-input placeholder="Add tags..." delimiter="," max-tags="5" name="tags" value="js,ts,css"></ry-tag-input> * * Events: ry:change, ry:add, ry:remove */ import { RyElement } from '../core/ry-element.js'; export declare class RyTagInput extends RyElement { #private; setup(): void; get value(): string; get values(): string[]; } //# sourceMappingURL=ry-tag-input.d.ts.map