Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions packages/module/patternfly-docs/content/examples/CatalogView.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
---
id: Catalog view demo
id: Overview
title: Catalog view overview
section: extensions
subsection: Catalog view
source: react
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wondering if this is why the docs page looks different from the ChatBot one - do we need to update the source so you don't get "Untitled example" here?:

Screenshot 2025-11-24 at 11 09 17 AM

ChatBot's source is source: ChatBot fwiw, but I am far from an expert on the docs framework.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah it looks like the framework wants the demo heading to be an h3. I think the source just specifies the tab label, which doesn't change much in this instance since there aren't subtabs on this page

Gonna fiddle!

sortValue: 1
---

import FilterIcon from '@patternfly/react-icons/dist/esm/icons/filter-icon';
Expand All @@ -20,11 +22,15 @@ VerticalTabsTab
} from '@patternfly/react-catalog-view-extension';
import pfLogo6 from './pfLogo6.svg';

## Catalog view
**Note:** Catalog view lives in its own package [`@patternfly/react-catalog-view-extension`](https://www.npmjs.com/package/@patternfly/react-catalog-view-extension)

To use the catalog view extension components, you need to import the CSS file into your project to get the proper styles: `import '@patternfly/react-catalog-view-extension/dist/css/react-catalog-view-extension.css';`
A **catalog view** is a UI layout centered around a gallery of [catalog tiles](/extensions/catalog-view/catalog-tile). To let users interact with the gallery, a catalog view can include a toolbar with support for user actions and input, a [filter side panel](/extensions/catalog-view/filter-side-panel) with [vertical tabs](/extensions/catalog-view/vertical-tabs), and a [properties side panel](/extensions/catalog-view/properties-side-panel) that provides details about the selected tile.

### Catalog view demo
To use the catalog view extension components with the proper styles, import the CSS file into your project: `import '@patternfly/react-catalog-view-extension/dist/css/react-catalog-view-extension.css';`

---

## Demo

```ts isFullscreen
import React from 'react';
Expand Down