7688d468e4
* Adds a loading spinner to form buttons as long as submission is pending. * Does some refactoring of form navigation buttons. * Updates expected bundle size.
21 lines
No EOL
493 B
Handlebars
21 lines
No EOL
493 B
Handlebars
<BsButton
|
|
@buttonType={{if @buttonType @buttonType "submit"}}
|
|
@type="primary"
|
|
class="cr-steps-bottom-nav__button cr-steps-bottom-nav__next-button next"
|
|
disabled={{@disabled}}
|
|
...attributes
|
|
>
|
|
<span class="cr-steps-bottom-nav__label">
|
|
{{#if (has-block)}}
|
|
{{yield}}
|
|
{{else}}
|
|
{{t "action.next"}}
|
|
{{/if}}
|
|
</span>
|
|
|
|
{{#if @isPending}}
|
|
<LoadingSpinner />
|
|
{{else}}
|
|
<span class="cr-steps-bottom-nav__icon oi oi-caret-right"></span>
|
|
{{/if}}
|
|
</BsButton> |