@patternfly/quickstarts 6.2.0-prerelease.7 → 6.2.0
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/dist/index.es.js +1 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/dist/quickstarts-base.css +4 -4
- package/dist/quickstarts-full.es.js +1 -2
- package/dist/quickstarts-full.es.js.map +1 -1
- package/dist/quickstarts.css +4 -4
- package/dist/quickstarts.min.css +1 -1
- package/package.json +1 -1
- package/src/QuickStartCatalogPage.tsx +0 -1
|
@@ -163,10 +163,6 @@
|
|
|
163
163
|
border: var(--pf-v6-c-card--BorderColor) var(--pf-v6-c-card--BorderStyle) var(--pf-v6-c-card--BorderWidth);
|
|
164
164
|
}
|
|
165
165
|
|
|
166
|
-
.pfext-quick-start-footer {
|
|
167
|
-
padding-top: var(--pf-t--global--spacer--md);
|
|
168
|
-
}
|
|
169
|
-
|
|
170
166
|
.pfext-quick-start-task {
|
|
171
167
|
flex: 1 1 0;
|
|
172
168
|
overflow: auto;
|
|
@@ -178,6 +174,10 @@
|
|
|
178
174
|
height: initial;
|
|
179
175
|
}
|
|
180
176
|
|
|
177
|
+
.pfext-quick-start-footer {
|
|
178
|
+
padding-top: var(--pf-t--global--spacer--md);
|
|
179
|
+
}
|
|
180
|
+
|
|
181
181
|
.pfext-quick-start-task-header button.pf-v6-c-wizard__nav-link {
|
|
182
182
|
margin-bottom: var(--pf-t--global--spacer--md);
|
|
183
183
|
}
|
|
@@ -29467,8 +29467,7 @@ const QuickStartCatalogPage = ({ quickStarts, showFilter, sortFnc = (q1, q2) =>
|
|
|
29467
29467
|
hint && React.createElement("div", null, hint))),
|
|
29468
29468
|
showTitle && React.createElement(Divider, { component: "div" }),
|
|
29469
29469
|
showFilter && (React.createElement(React.Fragment, null,
|
|
29470
|
-
React.createElement(QuickStartCatalogFilter, { quickStartsCount: filteredQuickStarts.length, onSearchInputChange: onSearchInputChange, onStatusChange: onStatusChange }),
|
|
29471
|
-
React.createElement(Divider, { component: "div" }))))),
|
|
29470
|
+
React.createElement(QuickStartCatalogFilter, { quickStartsCount: filteredQuickStarts.length, onSearchInputChange: onSearchInputChange, onStatusChange: onStatusChange }))))),
|
|
29472
29471
|
React.createElement(PageSection, { hasBodyWrapper: false }, filteredQuickStarts.length === 0 ? (React.createElement(QuickStartCatalogEmptyState, { clearFilters: clearFilters })) : (React.createElement(QuickStartCatalog, { quickStarts: filteredQuickStarts })))));
|
|
29473
29472
|
};
|
|
29474
29473
|
|