@patternfly/quickstarts 2.4.0 → 2.4.2

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@patternfly/quickstarts",
3
- "version": "2.4.0",
3
+ "version": "2.4.2",
4
4
  "description": "PatternFly quick starts",
5
5
  "files": [
6
6
  "src",
@@ -57,7 +57,7 @@
57
57
  "showdown": "1.8.6"
58
58
  },
59
59
  "devDependencies": {
60
- "@patternfly/documentation-framework": "1.0.2",
60
+ "@patternfly/documentation-framework": "^1.8.0",
61
61
  "@patternfly/patternfly": "^4.222.4",
62
62
  "@patternfly/react-core": "^4.267.6",
63
63
  "@patternfly/react-icons": "4.93.6",
@@ -52,7 +52,7 @@ const HelpTopicPanelContent: React.FC<HelpTopicPanelContentProps> = ({
52
52
  };
53
53
 
54
54
  const menuItems =
55
- filteredHelpTopics.length > 0 &&
55
+ filteredHelpTopics.length > 1 &&
56
56
  filteredHelpTopics.map((topic) => {
57
57
  return (
58
58
  <OptionsMenuItem key={topic.name} onSelect={onSelectHelpTopic} id={topic.name}>
@@ -109,7 +109,7 @@ const QuickStartPanelContent: React.FC<QuickStartPanelContentProps> = ({
109
109
  <DrawerHead>
110
110
  <div className="pfext-quick-start-panel-content__title" tabIndex={-1} ref={titleRef}>
111
111
  <Title
112
- headingLevel="h1"
112
+ headingLevel="h2"
113
113
  size="xl"
114
114
  className="pfext-quick-start-panel-content__name"
115
115
  style={{ marginRight: 'var(--pf-global--spacer--md)' }}