@hexure/ui 1.13.56 → 1.13.57

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/cjs/index.js CHANGED
@@ -2091,6 +2091,7 @@ const Step = styled.div `
2091
2091
  align-items: center;
2092
2092
  gap: 8px;
2093
2093
  `;
2094
+ const StyledIconWWrapper = styled.div ``;
2094
2095
  const StyledIcon$2 = styled(Icon) `
2095
2096
  > path {
2096
2097
  fill: ${props => props.theme.PRIMARY_COLOR.Hex} !important;
@@ -2166,7 +2167,8 @@ const ProgressBar = ({ steps, showStepLine = false, dataItemid }) => {
2166
2167
  return (React.createElement(React.Fragment, { key: i },
2167
2168
  i !== 0 && showStepLine && (React.createElement(StepLine, { "$active": step.active, "data-itemid": `${stepId}-line` })),
2168
2169
  React.createElement(Step, { "data-itemid": `${stepId}-step` },
2169
- step.complete ? (React.createElement(StyledIcon$2, { "data-itemid": `${stepId}-icon`, path: js.mdiCheckboxMarkedCircleOutline, size: '32px' })) : (React.createElement(StepIndicator, { "$active": step.active, "data-itemid": `${stepId}-indicator` }, i + 1)),
2170
+ step.complete ? (React.createElement(StyledIconWWrapper, { "data-itemid": `${stepId}-icon-wrapper` },
2171
+ React.createElement(StyledIcon$2, { "data-itemid": `${stepId}-icon`, path: js.mdiCheckboxMarkedCircleOutline, size: '32px' }))) : (React.createElement(StepIndicator, { "$active": step.active, "data-itemid": `${stepId}-indicator` }, i + 1)),
2170
2172
  React.createElement(StepLabel, { "data-itemid": `${stepId}-label` },
2171
2173
  step.label,
2172
2174
  step.percentComplete !== undefined && (React.createElement(ProgressBarFill, { "$percent": step.percentComplete, "data-itemid": `${stepId}-fill` }))))));