Conversation
3 tasks
allyoucanmap
requested changes
Sep 9, 2026
Contributor
There was a problem hiding this comment.
Additional changes:
- The change name from list to table needs to be documented in the migration guide
- The default implementation should support all three types of layout, at the moment the new type is not visible. Please update the default configuration to support the new card layout
- Replace the cycle click with a drop down menu
- Replace the table icon with this new one table.zip
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR adds a new card layout support to Resources Catalog.
listtotablelistPlease check if the PR fulfills these requirements
What kind of change does this PR introduce? (check one with "x", remove the others)
Issue
What is the current behavior?
What is the new behavior?
The new configurations supported are
cardLayoutStyles- array of card layout styles to support/show. Default is['grid', 'list', 'table']hideThumbnail- if true or{ grid: true, list: true}hides the thumbnail on the card for all or specific layout stylesmetadata.list- new layout support for resource catalogWith description

Sample cfg
{ "metadata": { "list": [ { "path": "name", "target": "header" }, { "path": "creator", "target": "footer", "filter": "filter{creator.in}", "icon": { "glyph": "user" }, "labelId": "resourcesCatalog.columnCreatedBy", "noDataLabelId": "resourcesCatalog.emptyUnknown", "disableIf": "{!state('userrole')}" }, { "path": "tags", "filter": "filter{tag.in}", "itemValue": "name", "itemColor": "color", "type": "tag", "noDataLabelId": "resourcesCatalog.emptyNA", "labelId": "resourcesCatalog.columnTags" }, { "path": "description", "target": "description" }, { "items": [ { "type": "text", "labelId": "resourcesCatalog.columnCreated" }, { "path": "creation", "type": "date", "format": "MMMM D, YYYY" } ] }, { "items": [ { "type": "text", "labelId": "Edited by" }, { "path": "editor", "filter": "filter{creator.in}" }, { "icon": { "glyph": "user" } } ] } ] } }Breaking change
Does this PR introduce a breaking change? (check one with "x", remove the other)
Other useful information