@momo-kits/step 0.159.1-beta.4 → 0.159.1-beta.5

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/StepsVertical.tsx CHANGED
@@ -32,7 +32,7 @@ const StepsVertical: FC<StepsProps> = ({
32
32
  const lineColor =
33
33
  activeIndex > index
34
34
  ? theme.colors.primary + '33'
35
- : theme.colors.background.default;
35
+ : theme.colors.border.default;
36
36
 
37
37
  /**
38
38
  * build description
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momo-kits/step",
3
- "version": "0.159.1-beta.4",
3
+ "version": "0.159.1-beta.5",
4
4
  "private": false,
5
5
  "main": "index.tsx",
6
6
  "peerDependencies": {
package/utils.ts CHANGED
@@ -105,7 +105,7 @@ export const GetStepColor = (
105
105
  disabled?: boolean
106
106
  ) => {
107
107
  const {theme} = useContext(ApplicationContext);
108
- const DEFAULT_LINE_COLOR = theme.colors.background.default;
108
+ const DEFAULT_LINE_COLOR = theme.colors.border.default;
109
109
  const COMPLETED_LINE_COLOR = theme.colors.primary + '33';
110
110
 
111
111
  let backgroundColor = Colors.black_06;