UNPKG

@vaadin/field-base

Version:
72 lines (67 loc) 3.09 kB
/** * @license * Copyright (c) 2021 - 2025 Vaadin Ltd. * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ */ import type { Constructor } from '@open-wc/dedupe-mixin'; import type { DelegateFocusMixinClass } from '@vaadin/a11y-base/src/delegate-focus-mixin.js'; import type { DisabledMixinClass } from '@vaadin/a11y-base/src/disabled-mixin.js'; import type { FocusMixinClass } from '@vaadin/a11y-base/src/focus-mixin.js'; import type { KeyboardMixinClass } from '@vaadin/a11y-base/src/keyboard-mixin.js'; import type { ControllerMixinClass } from '@vaadin/component-base/src/controller-mixin.js'; import type { DelegateStateMixinClass } from '@vaadin/component-base/src/delegate-state-mixin.js'; import type { SlotStylesMixinClass } from '@vaadin/component-base/src/slot-styles-mixin.js'; import type { ClearButtonMixinClass } from './clear-button-mixin.js'; import type { FieldMixinClass } from './field-mixin.js'; import type { InputConstraintsMixinClass } from './input-constraints-mixin.js'; import type { InputControlMixinClass } from './input-control-mixin.js'; import type { InputMixinClass } from './input-mixin.js'; import type { LabelMixinClass } from './label-mixin.js'; import type { ValidateMixinClass } from './validate-mixin.js'; /** * A mixin to provide logic for vaadin-text-field and related components. */ export declare function InputFieldMixin<T extends Constructor<HTMLElement>>( base: T, ): Constructor<ClearButtonMixinClass> & Constructor<ControllerMixinClass> & Constructor<DelegateFocusMixinClass> & Constructor<DelegateStateMixinClass> & Constructor<DisabledMixinClass> & Constructor<FieldMixinClass> & Constructor<FocusMixinClass> & Constructor<InputConstraintsMixinClass> & Constructor<InputControlMixinClass> & Constructor<InputFieldMixinClass> & Constructor<InputMixinClass> & Constructor<KeyboardMixinClass> & Constructor<LabelMixinClass> & Constructor<SlotStylesMixinClass> & Constructor<ValidateMixinClass> & T; export declare class InputFieldMixinClass { /** * Whether the value of the control can be automatically completed by the browser. * List of available options at: * https://developer.mozilla.org/en/docs/Web/HTML/Element/input#attr-autocomplete */ autocomplete: string | undefined; /** * This is a property supported by Safari that is used to control whether * autocorrection should be enabled when the user is entering/editing the text. * Possible values are: * on: Enable autocorrection. * off: Disable autocorrection. */ autocorrect: 'off' | 'on' | undefined; /** * This is a property supported by Safari and Chrome that is used to control whether * autocapitalization should be enabled when the user is entering/editing the text. * Possible values are: * characters: Characters capitalization. * words: Words capitalization. * sentences: Sentences capitalization. * none: No capitalization. */ autocapitalize: 'characters' | 'none' | 'off' | 'on' | 'sentences' | 'words' | undefined; }