@jupyter-notebook/web-components
Version:
A component library for building extensions in Jupyter frontends.
15 lines (14 loc) • 446 B
JavaScript
import { FormAssociated, FoundationElement } from '@microsoft/fast-foundation';
class _DateField extends FoundationElement {
}
/**
* A form-associated base class for the {@link @jupyter-notebook/web-components#(DateField:class)} component.
*
* @internal
*/
export class FormAssociatedDateField extends FormAssociated(_DateField) {
constructor() {
super(...arguments);
this.proxy = document.createElement('input');
}
}