File tree 2 files changed +8
-8
lines changed
components/hds/stepper/list
styles/components/stepper
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ export default class HdsStepperListStep extends Component<HdsStepperListStepSign
74
74
const { status = DEFAULT_STATUS } = this . args ;
75
75
76
76
assert (
77
- `@status for "Hds::Stepper::Step::Indicator " must be one of the following: ${ STATUSES . join (
77
+ `@status for "Hds::Stepper::List::Step " must be one of the following: ${ STATUSES . join (
78
78
', '
79
79
) } ; received: ${ status } `,
80
80
STATUSES . includes ( status )
@@ -120,7 +120,7 @@ export default class HdsStepperListStep extends Component<HdsStepperListStepSign
120
120
get classNames ( ) : string {
121
121
const classes = [ 'hds-stepper-list__step' ] ;
122
122
123
- classes . push ( `hds-stepper-list__step-${ this . status } ` ) ;
123
+ classes . push ( `hds-stepper-list__step-- ${ this . status } ` ) ;
124
124
125
125
return classes . join ( ' ' ) ;
126
126
}
Original file line number Diff line number Diff line change @@ -74,25 +74,25 @@ $hds-stepper-list-step-padding-bottom: 16px;
74
74
75
75
// Complete & Active
76
76
77
- .hds-stepper-list__step-complete .hds-stepper-list__step__title ,
78
- .hds-stepper-list__step-progress .hds-stepper-list__step__title ,
79
- .hds-stepper-list__step-processing .hds-stepper-list__step__title {
77
+ .hds-stepper-list__step-- complete .hds-stepper-list__step__title ,
78
+ .hds-stepper-list__step-- progress .hds-stepper-list__step__title ,
79
+ .hds-stepper-list__step-- processing .hds-stepper-list__step__title {
80
80
color : var (--token-color-foreground-strong );
81
81
}
82
82
83
83
// Complete
84
84
85
85
.hds-stepper-list__step {
86
- & :not (:last-of-type ).hds-stepper-list__step-complete .hds-stepper-list__step__progress ::after {
86
+ & :not (:last-of-type ).hds-stepper-list__step-- complete .hds-stepper-list__step__progress ::after {
87
87
height : calc (100% + $hds-stepper-list-step-padding-bottom - 4px );
88
88
}
89
89
90
- & :not (:last-of-type , :first-of-type ).hds-stepper-list__step-complete .hds-stepper-list__step__progress ::after {
90
+ & :not (:last-of-type , :first-of-type ).hds-stepper-list__step-- complete .hds-stepper-list__step__progress ::after {
91
91
top : -4px ;
92
92
height : calc (100% + $hds-stepper-list-step-padding-bottom );
93
93
}
94
94
95
- & :not (:first-of-type ):last-of-type .hds-stepper-list__step-complete .hds-stepper-list__step__progress ::after {
95
+ & :not (:first-of-type ):last-of-type .hds-stepper-list__step-- complete .hds-stepper-list__step__progress ::after {
96
96
position : absolute ;
97
97
top : -4px ;
98
98
left : 11px ;
You can’t perform that action at this time.
0 commit comments