date-pickerpackage.src.vaadin-lit-date-picker-year.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-webcomponents Show documentation
Show all versions of vaadin-webcomponents Show documentation
Mvnpm composite: Vaadin webcomponents
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 { css, html, LitElement } from 'lit';
import { defineCustomElement } from '@vaadin/component-base/src/define.js';
import { PolylitMixin } from '@vaadin/component-base/src/polylit-mixin.js';
import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
import { DatePickerYearMixin } from './vaadin-date-picker-year-mixin.js';
/**
* @extends HTMLElement
* @mixes ThemableMixin
* @mixes DatePickerYearMixin
* @private
*/
export class DatePickerYear extends ThemableMixin(DatePickerYearMixin(PolylitMixin(LitElement))) {
static get is() {
return 'vaadin-date-picker-year';
}
static get styles() {
return css`
:host {
display: block;
height: 100%;
}
`;
}
/** @protected */
render() {
return html`
${this.year}
`;
}
}
defineCustomElement(DatePickerYear);