jupyter-vuetify
Version:
Jupyter widgets based on vuetify UI components
34 lines (30 loc) • 894 B
JavaScript
import { VuetifyWidgetModel } from './VuetifyWidget';
export class CalendarWeeklyModel extends VuetifyWidgetModel {
defaults() {
return {
...super.defaults(),
...{
_model_name: 'CalendarWeeklyModel',
color: null,
dark: null,
end: null,
hide_header: null,
light: null,
locale: null,
min_weeks: null,
now: null,
short_months: null,
short_weekdays: null,
show_month_on_first: null,
start: null,
weekdays: undefined,
},
};
}
getVueTag() { // eslint-disable-line class-methods-use-this
return 'v-calendar-weekly';
}
}
CalendarWeeklyModel.serializers = {
...VuetifyWidgetModel.serializers,
};