UNPKG

jupyter-vuetify

Version:

Jupyter widgets based on vuetify UI components

51 lines (47 loc) 1.47 kB
import { VuetifyWidgetModel } from './VuetifyWidget'; export class DatePickerModel extends VuetifyWidgetModel { defaults() { return { ...super.defaults(), ...{ _model_name: 'DatePickerModel', color: null, dark: null, disabled: null, event_color: undefined, events: undefined, first_day_of_week: undefined, full_width: null, header_color: null, landscape: null, light: null, locale: null, locale_first_day_of_year: undefined, max: null, min: null, multiple: null, next_icon: null, no_title: null, picker_date: null, prev_icon: null, range: null, reactive: null, readonly: null, scrollable: null, selected_items_text: null, show_current: undefined, show_week: null, type: null, value: undefined, width: undefined, year_icon: null, }, }; } getVueTag() { // eslint-disable-line class-methods-use-this return 'v-date-picker'; } } DatePickerModel.serializers = { ...VuetifyWidgetModel.serializers, };