Skip to content

Commit

Permalink
Schema update.
Browse files Browse the repository at this point in the history
  • Loading branch information
zerline committed Feb 17, 2020
1 parent e015512 commit 1ad0f71
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 27 deletions.
64 changes: 38 additions & 26 deletions packages/schema/jupyterwidgetmodels.latest.json
Original file line number Diff line number Diff line change
Expand Up @@ -392,12 +392,6 @@
"name": "_model_name",
"type": "string"
},
{
"default": {},
"help": "Titles of the pages",
"name": "_titles",
"type": "object"
},
{
"default": "@jupyter-widgets/controls",
"help": "",
Expand Down Expand Up @@ -442,7 +436,7 @@
},
{
"allow_none": true,
"default": 0,
"default": null,
"help": "The index of the selected page. This is either an integer selecting a particular sub-widget, or None to have no widgets selected.",
"name": "selected_index",
"type": "int"
Expand All @@ -454,6 +448,15 @@
"name": "tabbable",
"type": "bool"
},
{
"default": [],
"help": "Titles of the pages",
"items": {
"type": "string"
},
"name": "titles",
"type": "array"
},
{
"allow_none": true,
"default": null,
Expand Down Expand Up @@ -567,7 +570,7 @@
},
{
"default": "b''",
"help": "The media data as a byte string.",
"help": "The media data as a memory view of bytes.",
"name": "value",
"type": "bytes"
}
Expand Down Expand Up @@ -1847,7 +1850,7 @@
},
{
"default": "b''",
"help": "The media data as a byte string.",
"help": "The media data as a memory view of bytes.",
"name": "value",
"type": "bytes"
}
Expand Down Expand Up @@ -2324,6 +2327,9 @@
{
"default": [],
"help": "The file upload value",
"items": {
"type": "object"
},
"name": "value",
"type": "array"
}
Expand Down Expand Up @@ -3519,7 +3525,7 @@
},
{
"default": "b''",
"help": "The media data as a byte string.",
"help": "The media data as a memory view of bytes.",
"name": "value",
"type": "bytes"
},
Expand Down Expand Up @@ -4339,7 +4345,7 @@
},
{
"default": "b''",
"help": "The media data as a byte string.",
"help": "The media data as a memory view of bytes.",
"name": "value",
"type": "bytes"
},
Expand Down Expand Up @@ -5405,12 +5411,6 @@
"name": "_model_name",
"type": "string"
},
{
"default": {},
"help": "Titles of the pages",
"name": "_titles",
"type": "object"
},
{
"default": "@jupyter-widgets/controls",
"help": "",
Expand Down Expand Up @@ -5455,7 +5455,7 @@
},
{
"allow_none": true,
"default": 0,
"default": null,
"help": "The index of the selected page. This is either an integer selecting a particular sub-widget, or None to have no widgets selected.",
"name": "selected_index",
"type": "int"
Expand All @@ -5467,6 +5467,15 @@
"name": "tabbable",
"type": "bool"
},
{
"default": [],
"help": "Titles of the pages",
"items": {
"type": "string"
},
"name": "titles",
"type": "array"
},
{
"allow_none": true,
"default": null,
Expand Down Expand Up @@ -5515,12 +5524,6 @@
"name": "_model_name",
"type": "string"
},
{
"default": {},
"help": "Titles of the pages",
"name": "_titles",
"type": "object"
},
{
"default": "@jupyter-widgets/controls",
"help": "",
Expand Down Expand Up @@ -5565,7 +5568,7 @@
},
{
"allow_none": true,
"default": 0,
"default": null,
"help": "The index of the selected page. This is either an integer selecting a particular sub-widget, or None to have no widgets selected.",
"name": "selected_index",
"type": "int"
Expand All @@ -5577,6 +5580,15 @@
"name": "tabbable",
"type": "bool"
},
{
"default": [],
"help": "Titles of the pages",
"items": {
"type": "string"
},
"name": "titles",
"type": "array"
},
{
"allow_none": true,
"default": null,
Expand Down Expand Up @@ -6472,7 +6484,7 @@
},
{
"default": "b''",
"help": "The media data as a byte string.",
"help": "The media data as a memory view of bytes.",
"name": "value",
"type": "bytes"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/schema/jupyterwidgetmodels.latest.md
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,7 @@ Attribute | Type | Default | Help
`layout` | reference to Layout widget | reference to new instance |
`tabbable` | `null` or boolean | `null` | Is widget tabbable?
`tooltip` | `null` or string | `null` | A tooltip caption.
`value` | Bytes | `b''` | The media data as a byte string.
`value` | Bytes | `b''` | The media data as a memory view of bytes.
`width` | string | `''` | Width of the image in pixels. Use layout.width for styling the widget.

### PasswordModel (@jupyter-widgets/controls, 1.5.0); PasswordView (@jupyter-widgets/controls, 1.5.0)
Expand Down

0 comments on commit 1ad0f71

Please sign in to comment.