Sha256: 9aac30ac60355d15d6dc85b0da0889d6ff7990bd1519b60bed4aef1ee87c651e
Contents?: true
Size: 665 Bytes
Versions: 12
Compression:
Stored size: 665 Bytes
Contents
import { Controller } from '@hotwired/stimulus'; export default class OptionsController extends Controller { #private; static targets: string[]; static values: { activeIndex: { type: NumberConstructor; default: number; }; syncedAttrs: ArrayConstructor; antiAttrs: ArrayConstructor; }; readonly optionTargets: Array<Element>; activeIndexValue: number; readonly syncedAttrsValue: string[]; readonly hasSyncedAttrsValue: boolean; readonly antiAttrsValue: string[]; readonly hasAntiAttrsValue: boolean; connect(): void; select(e: Event, newIndex?: number): void; }
Version data entries
12 entries across 6 versions & 1 rubygems