@liturgical-calendar/components-js
Version:
Liturgical calendar components for javascript: an html select populated with liturgical calendars supported by the Liturgical Calendar API; form controls for parameters that are supported by the Liturgical Calendar API; a webcalendar; and liturgy of the d
15 lines (12 loc) • 342 B
JavaScript
import Input from './Input.js';
export default class SelectInput extends Input {
/**
* Initializes a SelectInput instance as a select element.
*
* This constructor calls the parent Input class constructor,
* specifying 'select' as the input element type.
*/
constructor() {
super('select');
}
}