Skip to content

Commit

Permalink
Enable "html" in quilt_summarize.json (#4252)
Browse files Browse the repository at this point in the history
Co-authored-by: Alexei Mochalov <[email protected]>
  • Loading branch information
fiskus and nl0 authored Dec 3, 2024
1 parent 6e59500 commit cda3d76
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions catalog/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ where verb is one of

## Changes

- [Added] Support "html" type in `quilt_summarize.json` ([#4252](https://github.com/quiltdata/quilt/pull/4252))
- [Fixed] Resolve caching issues where changes in `.quilt/{workflows,catalog}` were not applied ([#4245](https://github.com/quiltdata/quilt/pull/4245))
- [Added] A shortcut to enable adding files to a package from the current bucket ([#4245](https://github.com/quiltdata/quilt/pull/4245))
- [Changed] Qurator: propagate error messages from Bedrock ([#4192](https://github.com/quiltdata/quilt/pull/4192))
Expand Down
1 change: 1 addition & 0 deletions catalog/app/components/Preview/loaders/summarize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export type TypeShorthand =
| typeof FileType.Vega
| typeof FileType.Voila
| typeof FileType.Text
| typeof FileType.Html

export type FileShortcut = string

Expand Down
1 change: 1 addition & 0 deletions docs/Catalog/VisualizationDashboards.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ or an object with one or more of the following properties:
- `["perspective"]` to render tabular data (csv, xlsx etc.) with Perspective
- `["igv"]` to render JSON with Integrative Genomics Viewer
- `["voila"]` to render a Jupyter notebook as an interactive Voila dashboard
- `["html"]` to render HTML in iframes. See also [Advanced HTML rendering](./Preview.md#advanced-html-rendering-and-quilt-package-file-server)
- `["text"]` to render anything as text with syntax highlighting

If you need to control the height of an element (useful for Voila dashboards),
Expand Down
2 changes: 1 addition & 1 deletion shared/schemas/quilt_summarize.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

"typeShorthand": {
"type": "string",
"enum": ["echarts", "igv", "json", "jupyter", "perspective", "text", "vega", "voila"]
"enum": ["echarts", "html", "igv", "json", "jupyter", "perspective", "text", "vega", "voila"]
},

"typeExtended": {
Expand Down

0 comments on commit cda3d76

Please sign in to comment.