@patternfly/quickstarts 6.3.0-prerelease.5 → 6.3.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.
@@ -163,6 +163,10 @@
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
+
166
170
  .pfext-quick-start-task {
167
171
  flex: 1 1 0;
168
172
  overflow: auto;
@@ -174,10 +178,6 @@
174
178
  height: initial;
175
179
  }
176
180
 
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
  }
@@ -30973,7 +30973,10 @@ const QuickStartPanelContent = (_a) => {
30973
30973
  const QuickStartDrawerContent = (_a) => {
30974
30974
  var { quickStarts = [], appendTo, fullWidth, handleDrawerClose } = _a, props = __rest(_a, ["quickStarts", "appendTo", "fullWidth", "handleDrawerClose"]);
30975
30975
  const { activeQuickStartID, allQuickStarts = [], activeQuickStartState, } = useContext(QuickStartContext);
30976
- const combinedQuickStarts = allQuickStarts.concat(quickStarts);
30976
+ const combinedQuickStarts = [
30977
+ ...allQuickStarts,
30978
+ ...quickStarts,
30979
+ ].filter((qs, idx, arr) => arr.findIndex(q => q.metadata.name === qs.metadata.name) === idx);
30977
30980
  const handleClose = () => {
30978
30981
  handleDrawerClose && handleDrawerClose(activeQuickStartState === null || activeQuickStartState === void 0 ? void 0 : activeQuickStartState.status);
30979
30982
  };