jupyter-vuetify
Version:
Jupyter widgets based on vuetify UI components
71 lines (67 loc) • 2.13 kB
JavaScript
import { VuetifyWidgetModel } from './VuetifyWidget';
export class TextareaModel extends VuetifyWidgetModel {
defaults() {
return {
...super.defaults(),
...{
_model_name: 'TextareaModel',
append_icon: null,
append_outer_icon: null,
auto_grow: null,
autofocus: null,
background_color: null,
clear_icon: null,
clearable: null,
color: null,
counter: undefined,
dark: null,
dense: null,
disabled: null,
error: null,
error_count: undefined,
error_messages: undefined,
filled: null,
flat: null,
full_width: null,
height: undefined,
hide_details: undefined,
hint: null,
id: null,
label: null,
light: null,
loader_height: undefined,
loading: undefined,
messages: undefined,
no_resize: null,
outlined: null,
persistent_hint: null,
placeholder: null,
prefix: null,
prepend_icon: null,
prepend_inner_icon: null,
readonly: null,
reverse: null,
rounded: null,
row_height: undefined,
rows: undefined,
rules: null,
shaped: null,
single_line: null,
solo: null,
solo_inverted: null,
success: null,
success_messages: undefined,
suffix: null,
type: null,
validate_on_blur: null,
value: null,
},
};
}
getVueTag() { // eslint-disable-line class-methods-use-this
return 'v-textarea';
}
}
TextareaModel.serializers = {
...VuetifyWidgetModel.serializers,
};