Skip to content

Commit e4d027b

Browse files
Feature/stepper (#349)
* feat(feature/stepper): Add stepper folder to design systems. Add basic implementation of MUI Stepper component as a starter. Remove ProgressBar test from settings page and replace with Stepper test. > > Co-authored-by: Brett Eastman <brett.austin.eastman@gmail.com> Co-authored-by: Nick Visutsithiwong <nickvisut@users.noreply.github.com * custom stepper wip without connector * improve stepper look and feel * add margin between steps * add placeholders for future stepper changes when MUI fixes className issues * clean up wip stepper component * fix alignment * try to use theming instead for MUI Stepper * upgrade storybook to latest * add port of custom stepper to MUI stepper theme, add WIP stories * fix CSS for stepper * rename theme.ts to theme.tsx * add rounded icon as default * clean up theme file * fix formatting and add note to README * remove previous stepper and any stories * format via prettier * nuke node_modules and rerun `npm install` and `npm run format` --------- Co-authored-by: Brett Austin Eastman <76603041+BrettEastman@users.noreply.github.com>
1 parent 71f45f0 commit e4d027b

File tree

8 files changed

+9492
-6085
lines changed

8 files changed

+9492
-6085
lines changed

.storybook/main.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,12 @@ const config: StorybookConfig = {
99
"@storybook/addon-onboarding",
1010
"@storybook/addon-interactions",
1111
"@tomfreudenberg/next-auth-mock/storybook",
12+
"@chromatic-com/storybook",
1213
],
1314
framework: {
1415
name: "@storybook/nextjs",
1516
options: {},
1617
},
17-
docs: {
18-
autodocs: "tag",
19-
},
18+
docs: {},
2019
};
2120
export default config;

.storybook/preview.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from "react";
22
import type { Preview } from "@storybook/react";
33
import { StyledEngineProvider, ThemeProvider } from "@mui/material/styles";
4-
import { theme } from "../src/theme";
4+
import { compassTheme as theme } from "../src/theme";
55
import { FontProvider } from "../src/components/font-provider";
66

77
import "../src/styles/globals.css";

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ There are two ways to run Compass locally:
5555

5656
Server URL: http://localhost:3000
5757

58+
NOTE: If you get into a login loop, double check that the Docker services are running
59+
5860
**Option 2: Run both server and supporting services locally**
5961

6062
1. One time setup:

0 commit comments

Comments
 (0)