@patternfly/quickstarts 6.3.0-prerelease.7 → 6.3.0-prerelease.8
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 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/quickstarts-base.css +4 -4
- package/dist/quickstarts-full.es.js +1 -1
- 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/catalog/Toolbar/QuickStartCatalogFilterItems.tsx +1 -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
|
}
|
|
@@ -30663,7 +30663,7 @@ const QuickStartCatalogFilterSelect = (_a) => {
|
|
|
30663
30663
|
};
|
|
30664
30664
|
const QuickStartCatalogFilterCount = ({ quickStartsCount }) => {
|
|
30665
30665
|
const { getResource } = useContext(QuickStartContext);
|
|
30666
|
-
return (jsxRuntime.jsx(ToolbarItem, Object.assign({ align: { default: 'alignEnd' } }, { children: getResource(
|
|
30666
|
+
return (jsxRuntime.jsx(ToolbarItem, Object.assign({ align: { default: 'alignEnd' } }, { children: getResource("{{count, number}} item", quickStartsCount).replace('{{count, number}}', quickStartsCount) })));
|
|
30667
30667
|
};
|
|
30668
30668
|
const QuickStartCatalogFilterSearchWrapper = ({ onSearchInputChange = () => { } }) => {
|
|
30669
30669
|
const { useQueryParams, filter, setFilter } = useContext(QuickStartContext);
|