UNPKG

jupyter-vuetify

Version:

Jupyter widgets based on vuetify UI components

37 lines (33 loc) 973 B
import { VuetifyWidgetModel } from './VuetifyWidget'; export class WindowModel extends VuetifyWidgetModel { defaults() { return { ...super.defaults(), ...{ _model_name: 'WindowModel', active_class: null, continuous: null, dark: null, light: null, mandatory: null, max: undefined, multiple: null, next_icon: undefined, prev_icon: undefined, reverse: null, show_arrows: null, show_arrows_on_hover: null, touch: null, touchless: null, value: null, vertical: null, }, }; } getVueTag() { // eslint-disable-line class-methods-use-this return 'v-window'; } } WindowModel.serializers = { ...VuetifyWidgetModel.serializers, };