From 81326b80bbf6e7c2777f80182746bf229ce6eee7 Mon Sep 17 00:00:00 2001 From: anle9650 Date: Sun, 14 Apr 2024 13:15:46 -0600 Subject: [PATCH 01/13] Update steppers.md --- .../material/components/steppers/steppers.md | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/docs/data/material/components/steppers/steppers.md b/docs/data/material/components/steppers/steppers.md index de8b4347dea334..11d63ea399bb78 100644 --- a/docs/data/material/components/steppers/steppers.md +++ b/docs/data/material/components/steppers/steppers.md @@ -22,6 +22,28 @@ Steppers may display a transient feedback message after a step is saved. This component is no longer documented in the [Material Design guidelines](https://m2.material.io/), but Material UI will continue to support it. ::: +## Introduction + +Stepper displays progress through a sequence of logical and numbered steps. It support horizontal and vertical orientation for desktop and mobile viewports. + +Material UI Steppers are implemented using a collection of related components: + +- Stepper: a required container for steps. Renders as a `
    ` by default. +- Step: a step. Renders as a `
  1. ` by default. +- Step Label: a label of a step. +- Step Content: an optional content of a step. +- Step Button: an optional button of a step. +- Step Icon: an optional icon of a step. +- Step Connector: an optional customized connector of a step. + +## Basics + +```jsx +import Stepper from '@mui/material/Stepper'; +import Step from '@mui/material/Step'; +import StepLabel from '@mui/material/StepLabel'; +``` + ## Horizontal stepper Horizontal steppers are ideal when the contents of one step depend on an earlier step. From 8ee52c8e689eb3b73edbfda25bcfc93974f70e1e Mon Sep 17 00:00:00 2001 From: Diego Andai Date: Wed, 17 Apr 2024 08:59:18 -0400 Subject: [PATCH 02/13] trigger ci From 2bb414dc5b82aa930b770660eb4c28893367d87e Mon Sep 17 00:00:00 2001 From: Andy Le Date: Fri, 17 May 2024 22:06:21 -0600 Subject: [PATCH 03/13] Update docs/data/material/components/steppers/steppers.md Co-authored-by: Sam Sycamore <71297412+samuelsycamore@users.noreply.github.com> Signed-off-by: Andy Le --- docs/data/material/components/steppers/steppers.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/data/material/components/steppers/steppers.md b/docs/data/material/components/steppers/steppers.md index 11d63ea399bb78..89fe38efe65033 100644 --- a/docs/data/material/components/steppers/steppers.md +++ b/docs/data/material/components/steppers/steppers.md @@ -24,7 +24,8 @@ This component is no longer documented in the [Material Design guidelines](https ## Introduction -Stepper displays progress through a sequence of logical and numbered steps. It support horizontal and vertical orientation for desktop and mobile viewports. +The Stepper component displays progress through a sequence of logical and numbered steps. +It supports horizontal and vertical orientation for desktop and mobile viewports. Material UI Steppers are implemented using a collection of related components: From 2469fa6836d88fc32ce61886558e918b07480052 Mon Sep 17 00:00:00 2001 From: Andy Le Date: Fri, 17 May 2024 22:06:32 -0600 Subject: [PATCH 04/13] Update docs/data/material/components/steppers/steppers.md Co-authored-by: Sam Sycamore <71297412+samuelsycamore@users.noreply.github.com> Signed-off-by: Andy Le --- docs/data/material/components/steppers/steppers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/data/material/components/steppers/steppers.md b/docs/data/material/components/steppers/steppers.md index 89fe38efe65033..53e62fac44b16b 100644 --- a/docs/data/material/components/steppers/steppers.md +++ b/docs/data/material/components/steppers/steppers.md @@ -27,7 +27,7 @@ This component is no longer documented in the [Material Design guidelines](https The Stepper component displays progress through a sequence of logical and numbered steps. It supports horizontal and vertical orientation for desktop and mobile viewports. -Material UI Steppers are implemented using a collection of related components: +Steppers are implemented using a collection of related components: - Stepper: a required container for steps. Renders as a `
      ` by default. - Step: a step. Renders as a `
    1. ` by default. From 8ec7ec1f557938c4771f7846d33c36f2a48ff917 Mon Sep 17 00:00:00 2001 From: Andy Le Date: Fri, 17 May 2024 22:06:38 -0600 Subject: [PATCH 05/13] Update docs/data/material/components/steppers/steppers.md Co-authored-by: Sam Sycamore <71297412+samuelsycamore@users.noreply.github.com> Signed-off-by: Andy Le --- docs/data/material/components/steppers/steppers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/data/material/components/steppers/steppers.md b/docs/data/material/components/steppers/steppers.md index 53e62fac44b16b..705cdd32b2863e 100644 --- a/docs/data/material/components/steppers/steppers.md +++ b/docs/data/material/components/steppers/steppers.md @@ -29,7 +29,7 @@ It supports horizontal and vertical orientation for desktop and mobile viewports Steppers are implemented using a collection of related components: -- Stepper: a required container for steps. Renders as a `
        ` by default. +- Stepper: the container for the steps. Renders as a `
          ` by default. - Step: a step. Renders as a `
        1. ` by default. - Step Label: a label of a step. - Step Content: an optional content of a step. From 02af1c8940f832dcb46fe9db974d03a521e60df0 Mon Sep 17 00:00:00 2001 From: Andy Le Date: Fri, 17 May 2024 22:06:43 -0600 Subject: [PATCH 06/13] Update docs/data/material/components/steppers/steppers.md Co-authored-by: Sam Sycamore <71297412+samuelsycamore@users.noreply.github.com> Signed-off-by: Andy Le --- docs/data/material/components/steppers/steppers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/data/material/components/steppers/steppers.md b/docs/data/material/components/steppers/steppers.md index 705cdd32b2863e..320e207494a29c 100644 --- a/docs/data/material/components/steppers/steppers.md +++ b/docs/data/material/components/steppers/steppers.md @@ -30,7 +30,7 @@ It supports horizontal and vertical orientation for desktop and mobile viewports Steppers are implemented using a collection of related components: - Stepper: the container for the steps. Renders as a `
            ` by default. -- Step: a step. Renders as a `
          1. ` by default. +- Step: an individual step in the sequence. Renders as a `
          2. ` by default. - Step Label: a label of a step. - Step Content: an optional content of a step. - Step Button: an optional button of a step. From ff48e94e86e78a1c96ce13cddc15c13f730cb4cc Mon Sep 17 00:00:00 2001 From: Andy Le Date: Fri, 17 May 2024 22:06:52 -0600 Subject: [PATCH 07/13] Update docs/data/material/components/steppers/steppers.md Co-authored-by: Sam Sycamore <71297412+samuelsycamore@users.noreply.github.com> Signed-off-by: Andy Le --- docs/data/material/components/steppers/steppers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/data/material/components/steppers/steppers.md b/docs/data/material/components/steppers/steppers.md index 320e207494a29c..add167f02592bf 100644 --- a/docs/data/material/components/steppers/steppers.md +++ b/docs/data/material/components/steppers/steppers.md @@ -31,7 +31,7 @@ Steppers are implemented using a collection of related components: - Stepper: the container for the steps. Renders as a `
              ` by default. - Step: an individual step in the sequence. Renders as a `
            1. ` by default. -- Step Label: a label of a step. +- Step Label: a label for a Step. - Step Content: an optional content of a step. - Step Button: an optional button of a step. - Step Icon: an optional icon of a step. From 3265d75fc5bcfb39810b981ec095a7025b226100 Mon Sep 17 00:00:00 2001 From: Andy Le Date: Fri, 17 May 2024 22:06:57 -0600 Subject: [PATCH 08/13] Update docs/data/material/components/steppers/steppers.md Co-authored-by: Sam Sycamore <71297412+samuelsycamore@users.noreply.github.com> Signed-off-by: Andy Le --- docs/data/material/components/steppers/steppers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/data/material/components/steppers/steppers.md b/docs/data/material/components/steppers/steppers.md index add167f02592bf..2d1acf19b49108 100644 --- a/docs/data/material/components/steppers/steppers.md +++ b/docs/data/material/components/steppers/steppers.md @@ -32,7 +32,7 @@ Steppers are implemented using a collection of related components: - Stepper: the container for the steps. Renders as a `
                ` by default. - Step: an individual step in the sequence. Renders as a `
              1. ` by default. - Step Label: a label for a Step. -- Step Content: an optional content of a step. +- Step Content: optional content for a Step. - Step Button: an optional button of a step. - Step Icon: an optional icon of a step. - Step Connector: an optional customized connector of a step. From ff11e0aaee27567a85eac12cc3d6cbc818828967 Mon Sep 17 00:00:00 2001 From: Andy Le Date: Fri, 17 May 2024 22:07:02 -0600 Subject: [PATCH 09/13] Update docs/data/material/components/steppers/steppers.md Co-authored-by: Sam Sycamore <71297412+samuelsycamore@users.noreply.github.com> Signed-off-by: Andy Le --- docs/data/material/components/steppers/steppers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/data/material/components/steppers/steppers.md b/docs/data/material/components/steppers/steppers.md index 2d1acf19b49108..419df30354b224 100644 --- a/docs/data/material/components/steppers/steppers.md +++ b/docs/data/material/components/steppers/steppers.md @@ -33,7 +33,7 @@ Steppers are implemented using a collection of related components: - Step: an individual step in the sequence. Renders as a `
              2. ` by default. - Step Label: a label for a Step. - Step Content: optional content for a Step. -- Step Button: an optional button of a step. +- Step Button: optional button for a Step. - Step Icon: an optional icon of a step. - Step Connector: an optional customized connector of a step. From e5fbb42f66946a9a4c1403db92ca0213ca44c8a6 Mon Sep 17 00:00:00 2001 From: Andy Le Date: Fri, 17 May 2024 22:07:16 -0600 Subject: [PATCH 10/13] Update docs/data/material/components/steppers/steppers.md Co-authored-by: Sam Sycamore <71297412+samuelsycamore@users.noreply.github.com> Signed-off-by: Andy Le --- docs/data/material/components/steppers/steppers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/data/material/components/steppers/steppers.md b/docs/data/material/components/steppers/steppers.md index 419df30354b224..46932e72a29342 100644 --- a/docs/data/material/components/steppers/steppers.md +++ b/docs/data/material/components/steppers/steppers.md @@ -34,7 +34,7 @@ Steppers are implemented using a collection of related components: - Step Label: a label for a Step. - Step Content: optional content for a Step. - Step Button: optional button for a Step. -- Step Icon: an optional icon of a step. +- Step Icon: optional icon for a Step. - Step Connector: an optional customized connector of a step. ## Basics From 8f6932453318311c0a3e305f0224289c6bcb0161 Mon Sep 17 00:00:00 2001 From: Andy Le Date: Fri, 17 May 2024 22:07:27 -0600 Subject: [PATCH 11/13] Update docs/data/material/components/steppers/steppers.md Co-authored-by: Sam Sycamore <71297412+samuelsycamore@users.noreply.github.com> Signed-off-by: Andy Le --- docs/data/material/components/steppers/steppers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/data/material/components/steppers/steppers.md b/docs/data/material/components/steppers/steppers.md index 46932e72a29342..dcb6efaed22308 100644 --- a/docs/data/material/components/steppers/steppers.md +++ b/docs/data/material/components/steppers/steppers.md @@ -35,7 +35,7 @@ Steppers are implemented using a collection of related components: - Step Content: optional content for a Step. - Step Button: optional button for a Step. - Step Icon: optional icon for a Step. -- Step Connector: an optional customized connector of a step. +- Step Connector: optional customized connector between Steps. ## Basics From c215366b33084d10e47d8d29ad4293e39fffc293 Mon Sep 17 00:00:00 2001 From: anle9650 Date: Sun, 26 May 2024 11:07:08 -0600 Subject: [PATCH 12/13] Update steppers.md --- docs/data/material/components/steppers/steppers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/data/material/components/steppers/steppers.md b/docs/data/material/components/steppers/steppers.md index dcb6efaed22308..c92d783662abdb 100644 --- a/docs/data/material/components/steppers/steppers.md +++ b/docs/data/material/components/steppers/steppers.md @@ -24,7 +24,7 @@ This component is no longer documented in the [Material Design guidelines](https ## Introduction -The Stepper component displays progress through a sequence of logical and numbered steps. +The Stepper component displays progress through a sequence of logical and numbered steps. It supports horizontal and vertical orientation for desktop and mobile viewports. Steppers are implemented using a collection of related components: From 8a4a2c20993438a806b22c8b5740b4b68ad8b96b Mon Sep 17 00:00:00 2001 From: Zeeshan Tamboli Date: Tue, 11 Jun 2024 12:41:12 +0530 Subject: [PATCH 13/13] Update docs/data/material/components/steppers/steppers.md Signed-off-by: Zeeshan Tamboli --- docs/data/material/components/steppers/steppers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/data/material/components/steppers/steppers.md b/docs/data/material/components/steppers/steppers.md index c983c6d3cde619..54772c5a93a53e 100644 --- a/docs/data/material/components/steppers/steppers.md +++ b/docs/data/material/components/steppers/steppers.md @@ -29,8 +29,8 @@ It supports horizontal and vertical orientation for desktop and mobile viewports Steppers are implemented using a collection of related components: -- Stepper: the container for the steps. Renders as a `
                  ` by default. -- Step: an individual step in the sequence. Renders as a `
                1. ` by default. +- Stepper: the container for the steps. +- Step: an individual step in the sequence. - Step Label: a label for a Step. - Step Content: optional content for a Step. - Step Button: optional button for a Step.