UNPKG

jupyter-vuetify

Version:

Jupyter widgets based on vuetify UI components

52 lines (48 loc) 1.48 kB
import { VuetifyWidgetModel } from './VuetifyWidget'; export class TreeviewModel extends VuetifyWidgetModel { defaults() { return { ...super.defaults(), ...{ _model_name: 'TreeviewModel', activatable: null, active: null, active_class: null, color: null, dark: null, dense: null, expand_icon: null, hoverable: null, indeterminate_icon: null, item_children: null, item_disabled: null, item_key: null, item_text: null, items: null, light: null, loading_icon: null, multiple_active: null, off_icon: null, on_icon: null, open_: null, open_all: null, open_on_click: null, return_object: null, rounded: null, search: null, selectable: null, selected_color: null, selection_type: null, shaped: null, transition: null, value: null, }, }; } getVueTag() { // eslint-disable-line class-methods-use-this return 'v-treeview'; } } TreeviewModel.serializers = { ...VuetifyWidgetModel.serializers, };