Skip to content

Commit

Permalink
fix: add grid-filled to IGalleryDisplayConfig (#1818)
Browse files Browse the repository at this point in the history
  • Loading branch information
vivzhang authored Feb 28, 2025
1 parent 34b4eef commit 3ec828f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion packages/common/src/search/types/IHubCatalog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,14 @@ export interface IGalleryDisplayConfig {
* If this is true on a collection's display config, that collection will not be shown in the gallery.
*/
hidden?: boolean;
layout?: "list" | "grid" | "map" | "table" | "calendar" | "compact";
layout?:
| "list"
| "grid"
| "map"
| "table"
| "calendar"
| "compact"
| "grid-filled";
cardTitleTag?: CARD_TITLE_TAGS;
showThumbnail?: "show" | "hide" | "grid";
corners?: CORNERS;
Expand Down

0 comments on commit 3ec828f

Please sign in to comment.