package.src.vaadin-number-field.d.ts Maven / Gradle / Ivy
The newest version!
/**
* @license
* Copyright (c) 2021 - 2024 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
*/
import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
import { NumberFieldMixin } from './vaadin-number-field-mixin.js';
/**
* Fired when the user commits a value change.
*/
export type NumberFieldChangeEvent = Event & {
target: NumberField;
};
/**
* Fired when the user commits an unparsable value change and there is no change event.
*/
export type NumberFieldUnparsableChangeEvent = CustomEvent;
/**
* Fired when the `invalid` property changes.
*/
export type NumberFieldInvalidChangedEvent = CustomEvent<{ value: boolean }>;
/**
* Fired when the `value` property changes.
*/
export type NumberFieldValueChangedEvent = CustomEvent<{ value: string }>;
/**
* Fired whenever the field is validated.
*/
export type NumberFieldValidatedEvent = CustomEvent<{ valid: boolean }>;
export interface NumberFieldCustomEventMap {
'unparsable-change': NumberFieldUnparsableChangeEvent;
'invalid-changed': NumberFieldInvalidChangedEvent;
'value-changed': NumberFieldValueChangedEvent;
validated: NumberFieldValidatedEvent;
}
export interface NumberFieldEventMap extends HTMLElementEventMap, NumberFieldCustomEventMap {
change: NumberFieldChangeEvent;
}
/**
* `` is an input field web component that only accepts numeric input.
*
* ```html
*
* ```
*
* ### Styling
*
* `` provides the same set of shadow DOM parts and state attributes as ``.
* See [``](#/elements/vaadin-text-field) for the styling documentation.
*
* In addition to `` parts, the following parts are available for theming:
*
* Part name | Description
* ------------------|-------------------------
* `increase-button` | Increase ("plus") button
* `decrease-button` | Decrease ("minus") button
*
* Note, the `input-prevented` state attribute is only supported when `allowedCharPattern` is set.
*
* ### Change events
*
* Depending on the nature of the value change that the user attempts to commit e.g. by pressing Enter,
* the component can fire either a `change` event or an `unparsable-change` event:
*
* Value change | Event
* :------------------------|:------------------
* empty => parsable | change
* empty => unparsable | unparsable-change
* parsable => empty | change
* parsable => parsable | change
* parsable => unparsable | change
* unparsable => empty | unparsable-change
* unparsable => parsable | change
* unparsable => unparsable | -
*
* Note, there is currently no way to detect unparsable => unparsable changes because the browser
* doesn't provide access to unparsable values of native [type=number] inputs.
*
* @fires {Event} input - Fired when the value is changed by the user: on every typing keystroke, and the value is cleared using the clear button.
* @fires {Event} change - Fired when the user commits a value change.
* @fires {Event} unparsable-change - Fired when the user commits an unparsable value change and there is no change event.
* @fires {CustomEvent} invalid-changed - Fired when the `invalid` property changes.
* @fires {CustomEvent} value-changed - Fired when the `value` property changes.
* @fires {CustomEvent} validated - Fired whenever the field is validated.
*/
declare class NumberField extends NumberFieldMixin(ThemableMixin(ElementMixin(HTMLElement))) {
addEventListener(
type: K,
listener: (this: NumberField, ev: NumberFieldEventMap[K]) => void,
options?: AddEventListenerOptions | boolean,
): void;
removeEventListener(
type: K,
listener: (this: NumberField, ev: NumberFieldEventMap[K]) => void,
options?: EventListenerOptions | boolean,
): void;
}
declare global {
interface HTMLElementTagNameMap {
'vaadin-number-field': NumberField;
}
}
export { NumberField };
© 2015 - 2024 Weber Informatics LLC | Privacy Policy