@vygruppen/spor-react 12.24.13 → 12.24.14
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/.turbo/turbo-build.log +10 -10
- package/.turbo/turbo-postinstall.log +4 -3
- package/CHANGELOG.md +6 -0
- package/dist/index.cjs +2 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +2 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
- package/src/stepper/StepperStep.tsx +2 -5
package/dist/index.mjs
CHANGED
|
@@ -6345,11 +6345,8 @@ var StepperStep = ({
|
|
|
6345
6345
|
const state = getState(stepNumber, activeStep);
|
|
6346
6346
|
const recipe = useSlotRecipe({ key: "stepper" });
|
|
6347
6347
|
const style = recipe({ variant });
|
|
6348
|
-
const disabledTextColor = "text.
|
|
6349
|
-
const iconColor =
|
|
6350
|
-
_light: "blackAlpha.200",
|
|
6351
|
-
_dark: "whiteAlpha.200"
|
|
6352
|
-
};
|
|
6348
|
+
const disabledTextColor = "text.tertiary";
|
|
6349
|
+
const iconColor = "text.tertiary";
|
|
6353
6350
|
const disabled = state !== "active" && disabledOverride || state === "disabled";
|
|
6354
6351
|
return /* @__PURE__ */ jsxs(Box, { css: style.stepContainer, "data-part": "step-container", children: [
|
|
6355
6352
|
stepNumber > 1 && /* @__PURE__ */ jsx(
|