@availity/mui-stepper 0.3.3 → 1.0.0-alpha.0
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/CHANGELOG.md +28 -0
- package/dist/index.js +246 -200
- package/dist/index.mjs +226 -180
- package/package.json +18 -9
- package/src/lib/Step.stories.tsx +1 -1
- package/src/lib/StepButton.stories.tsx +1 -1
- package/src/lib/StepLabel.stories.tsx +4 -2
- package/src/lib/Stepper.stories.tsx +1 -1
- /package/{introduction.stories.mdx → introduction.mdx} +0 -0
|
@@ -109,7 +109,7 @@ export const _Stepper: StoryObj<typeof Stepper> = {
|
|
|
109
109
|
};
|
|
110
110
|
|
|
111
111
|
return (
|
|
112
|
-
<Box maxWidth
|
|
112
|
+
<Box sx={{ maxWidth: '75vw', marginX: 'auto' }}>
|
|
113
113
|
<Paper sx={{ padding: '2rem' }}>
|
|
114
114
|
<Stepper activeStep={activeStep} {...args} orientation={width < 600 ? 'vertical' : args.orientation}>
|
|
115
115
|
{steps.map((label, index) => {
|
|
File without changes
|