@patternfly/quickstarts 6.1.0-prerelease.6 → 6.2.0-prerelease.1

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.
@@ -155,12 +155,12 @@
155
155
  filter: brightness(1.5) invert(1) hue-rotate(180deg) saturate(4);
156
156
  }
157
157
 
158
- .pf-v6-c-card__header-main .pf-v6-c-icon__content {
158
+ .pfext-catalog-item .pf-v6-c-card__header-main .pf-v6-c-icon__content {
159
159
  display: contents;
160
160
  }
161
161
 
162
- .pf-v6-c-card.pf-m-selectable::before, .pf-v6-c-card.pf-m-clickable::before {
163
- border: var(--pf-v6-c-card--BorderColor) var(--pf-v6-c-card--BorderStyle) var(--pf-v6-c-card--BorderWidth) !important;
162
+ .pfext-catalog-item.pf-v6-c-card.pf-m-selectable::before, .pfext-catalog-item.pf-v6-c-card.pf-m-clickable::before {
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
166
  .pfext-quick-start-footer {
@@ -178,23 +178,20 @@
178
178
  height: initial;
179
179
  }
180
180
 
181
- button.pf-v6-c-wizard__nav-link {
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
  }
184
184
 
185
- button.pf-v6-c-wizard__nav-link.pf-m-current {
185
+ .pfext-quick-start-task-header button.pf-v6-c-wizard__nav-link.pf-m-current {
186
186
  --pf-v6-c-wizard__nav-link-main--BackgroundColor: transparent;
187
187
  }
188
188
 
189
- button.pf-v6-c-wizard__nav-link::before {
189
+ .pfext-quick-start-task-header button.pf-v6-c-wizard__nav-link::before {
190
190
  background-color: var(--pf-v6-c-wizard__nav-link--m-current--before--BackgroundColor);
191
191
  color: var(--pf-v6-c-wizard__nav-link--m-current--before--Color);
192
192
  min-width: var(--pf-v6-c-wizard__nav-link--before--Width);
193
193
  }
194
194
 
195
- .pfext-quick-start-task-header button::before {
196
- content: none;
197
- }
198
195
  .pfext-quick-start-task-header__title {
199
196
  font-family: var(--pf-t--global--font--family--body);
200
197
  font-weight: var(---pf-t--global--font--weight--body--bold);
@@ -31720,7 +31720,7 @@ const QuickStartTile = ({ quickStart, status, isActive, onClick = () => { }, act
31720
31720
  }, [footer, id, link, status, tasks === null || tasks === void 0 ? void 0 : tasks.length]);
31721
31721
  const ActionIcon = (action === null || action === void 0 ? void 0 : action.icon) || OutlinedBookmarkIcon;
31722
31722
  const additionalAction = action ? (React.createElement(Button, Object.assign({ "aria-label": action['aria-label'], icon: React.createElement(ActionIcon, null), variant: "plain", onClick: action.onClick }, action.buttonProps))) : undefined;
31723
- return (React.createElement(Card, Object.assign({ id: `${id}-catalog-tile`, style: { height: '100%' }, "data-testid": `qs-card-${camelize(displayName)}` }, (isActive && {
31723
+ return (React.createElement(Card, Object.assign({ id: `${id}-catalog-tile`, style: { height: '100%' }, "data-testid": `qs-card-${camelize(displayName)}`, className: "pfext-catalog-item" }, (isActive && {
31724
31724
  isClickable: true,
31725
31725
  isSelectable: true,
31726
31726
  isSelected: true,
@@ -32006,7 +32006,7 @@ const QuickStartTaskHeader = ({ title, taskIndex, subtitle, taskStatus, size, is
32006
32006
  else if (taskStatus === QuickStartTaskStatus.SUCCESS) {
32007
32007
  status = 'success';
32008
32008
  }
32009
- return (React.createElement(WizardNavItem, { content: content, stepIndex: taskIndex, onClick: () => onTaskSelect(taskIndex - 1), component: "button", isCurrent: isActiveTask, status: status }, children));
32009
+ return (React.createElement(WizardNavItem, { content: content, stepIndex: taskIndex, onClick: () => onTaskSelect(taskIndex - 1), component: "button", isCurrent: isActiveTask, status: status, className: "pfext-quick-start-task-header" }, children));
32010
32010
  };
32011
32011
 
32012
32012
  const QuickStartTaskHeaderList = ({ tasks, allTaskStatuses, onTaskSelect, }) => (tasks === null || tasks === void 0 ? void 0 : tasks.length) > 0 ? (React.createElement("ul", { className: "pf-v6-c-wizard pf-v6-c-wizard__nav-list" }, tasks.map((task, index) => (React.createElement(QuickStartTaskHeader, { key: task.title, title: task.title, taskIndex: index + 1, size: "md", taskStatus: allTaskStatuses[index], onTaskSelect: onTaskSelect }))))) : null;