All Downloads are FREE. Search and download functionalities are using the official Maven repository.

date-pickerpackage.src.vaadin-date-picker-light.d.ts Maven / Gradle / Ivy

The newest version!
/**
 * @license
 * Copyright (c) 2016 - 2024 Vaadin Ltd.
 * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
 */
import { ValidateMixin } from '@vaadin/field-base/src/validate-mixin.js';
import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
import { DatePickerMixin } from './vaadin-date-picker-mixin.js';
export { DatePickerDate, DatePickerI18n } from './vaadin-date-picker-mixin.js';

/**
 * Fired when the user commits a value change.
 */
export type DatePickerLightChangeEvent = Event & {
  target: DatePickerLight;
};

/**
 * Fired when the `opened` property changes.
 */
export type DatePickerLightOpenedChangedEvent = CustomEvent<{ value: boolean }>;

/**
 * Fired when the `invalid` property changes.
 */
export type DatePickerLightInvalidChangedEvent = CustomEvent<{ value: boolean }>;

/**
 * Fired when the `value` property changes.
 */
export type DatePickerLightValueChangedEvent = CustomEvent<{ value: string }>;

/**
 * Fired whenever the field is validated.
 */
export type DatePickerLightValidatedEvent = CustomEvent<{ valid: boolean }>;

export interface DatePickerLightCustomEventMap {
  'opened-changed': DatePickerLightOpenedChangedEvent;

  'invalid-changed': DatePickerLightInvalidChangedEvent;

  'value-changed': DatePickerLightValueChangedEvent;

  validated: DatePickerLightValidatedEvent;
}

export interface DatePickerLightEventMap extends HTMLElementEventMap, DatePickerLightCustomEventMap {
  change: DatePickerLightChangeEvent;
}

/**
 * `` is a customizable version of the `` providing
 * only the scrollable month calendar view and leaving the input field definition to the user.
 *
 * To create a custom input field, you need to add a child element which has a two-way
 * data-bindable property representing the input value. The property name is expected
 * to be `bindValue` by default. See the example below for a simplest possible example
 * using an `` element.
 *
 * ```html
 * 
 *   
 * 
 * ```
 *
 * ### Styling
 *
 * See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.
 *
 * In addition to `` itself, the following
 * internal components are themable:
 *
 * - ``
 * - ``
 * - ``
 *
 * Note: the `theme` attribute value set on ``
 * is propagated to the internal themable components listed above.
 *
 * @fires {Event} change - Fired when the user commits a value change.
 * @fires {CustomEvent} opened-changed - Fired when the `opened` property changes.
 * @fires {CustomEvent} value-changed - Fired when the `value` property changes.
 * @fires {CustomEvent} validated - Fired whenever the field is validated.
 */
declare class DatePickerLight extends ThemableMixin(DatePickerMixin(ValidateMixin(HTMLElement))) {
  /**
   * Name of the two-way data-bindable property representing the
   * value of the custom input field.
   */
  attrForValue: string;

  addEventListener(
    type: K,
    listener: (this: DatePickerLight, ev: DatePickerLightEventMap[K]) => void,
    options?: AddEventListenerOptions | boolean,
  ): void;

  removeEventListener(
    type: K,
    listener: (this: DatePickerLight, ev: DatePickerLightEventMap[K]) => void,
    options?: EventListenerOptions | boolean,
  ): void;
}

declare global {
  interface HTMLElementTagNameMap {
    'vaadin-date-picker-light': DatePickerLight;
  }
}

export { DatePickerLight };




© 2015 - 2024 Weber Informatics LLC | Privacy Policy