Skip to content

Commit 4b331a0

Browse files
committed
Add combobox schema
1 parent 17bea0b commit 4b331a0

File tree

2 files changed

+1071
-0
lines changed

2 files changed

+1071
-0
lines changed

packages/schema/jupyterwidgetmodels.latest.md

+22
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,28 @@ Attribute | Type | Default | Help
220220
`style` | reference to DescriptionStyle widget | reference to new instance | Styling customizations
221221
`value` | string | `'black'` | The color value.
222222

223+
### ComboboxModel (@jupyter-widgets/controls, 1.4.0); ComboboxView (@jupyter-widgets/controls, 1.4.0)
224+
225+
Attribute | Type | Default | Help
226+
-----------------|------------------|------------------|----
227+
`_dom_classes` | array of string | `[]` | CSS classes applied to widget DOM element
228+
`_model_module` | string | `'@jupyter-widgets/controls'` |
229+
`_model_module_version` | string | `'1.4.0'` |
230+
`_model_name` | string | `'ComboboxModel'` |
231+
`_view_module` | string | `'@jupyter-widgets/controls'` |
232+
`_view_module_version` | string | `'1.4.0'` |
233+
`_view_name` | string | `'ComboboxView'` |
234+
`continuous_update` | boolean | `true` | Update the value as the user types. If False, update on submission, e.g., pressing Enter or navigating away.
235+
`description` | string | `''` | Description of the control.
236+
`description_tooltip` | `null` or string | `null` | Tooltip for the description (defaults to description).
237+
`disabled` | boolean | `false` | Enable or disable user changes
238+
`ensure_option` | boolean | `false` | If set, ensure value is in options. Implies continuous_update=False.
239+
`layout` | reference to Layout widget | reference to new instance |
240+
`options` | array of string | `[]` | Dropdown options for the combobox
241+
`placeholder` | string | `'\u200b'` | Placeholder text to display when nothing has been typed
242+
`style` | reference to DescriptionStyle widget | reference to new instance | Styling customizations
243+
`value` | string | `''` | String value
244+
223245
### ControllerAxisModel (@jupyter-widgets/controls, 1.4.0); ControllerAxisView (@jupyter-widgets/controls, 1.4.0)
224246

225247
Attribute | Type | Default | Help

0 commit comments

Comments
 (0)