@patternfly/quickstarts 6.2.0-prerelease.3 → 6.2.0-prerelease.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import {
|
|
3
3
|
Button,
|
|
4
|
+
Content,
|
|
4
5
|
Divider,
|
|
5
6
|
EmptyState,
|
|
6
7
|
EmptyStateActions,
|
|
7
8
|
EmptyStateBody,
|
|
8
9
|
EmptyStateFooter,
|
|
9
10
|
PageSection,
|
|
10
|
-
|
|
11
|
+
Title,
|
|
11
12
|
} from '@patternfly/react-core';
|
|
12
13
|
import SearchIcon from '@patternfly/react-icons/dist/js/icons/search-icon';
|
|
13
14
|
import { EmptyBox, LoadingBox, clearFilterParams } from '@console/internal/components/utils';
|
|
@@ -165,12 +166,12 @@ export const QuickStartCatalogPage: React.FC<QuickStartCatalogPageProps> = ({
|
|
|
165
166
|
{(showTitle || showFilter) && (
|
|
166
167
|
<PageSection hasBodyWrapper={false}>
|
|
167
168
|
{showTitle && (
|
|
168
|
-
|
|
169
|
-
<
|
|
169
|
+
<Content isEditorial>
|
|
170
|
+
<Title headingLevel="h1" data-test="page-title">
|
|
170
171
|
{title || getResource('Quick Starts')}
|
|
171
|
-
</
|
|
172
|
+
</Title>
|
|
172
173
|
{hint && <div>{hint}</div>}
|
|
173
|
-
|
|
174
|
+
</Content>
|
|
174
175
|
)}
|
|
175
176
|
{showTitle && <Divider component="div" />}
|
|
176
177
|
{showFilter && (
|