Skip to content

Releases: tkrotoff/bootstrap-input-spinner

v0.10.1

08 Apr 18:06

Choose a tag to compare

  • Update npm packages

v0.10.0

18 Feb 23:31

Choose a tag to compare

  • Breaking change: full rewrite to support <textarea> and <select>

    • is-loading must be on the input's parent instead of on the input
    • no more is-loading-sm
    <!-- Before -->
    <div class="form-group">
      <label for="email">Email address</label>
      <input type="email" id="email" class="form-control is-loading is-loading-sm">
      <span class="spinner-border spinner-border-sm"></span>
    </div>
    
    <!-- After -->
    <div class="form-group">
      <label for="email">Email address</label>
      <div class="is-loading">
        <input type="email" id="email" class="form-control">
        <div class="spinner-border spinner-border-sm"></div>
      </div>
    </div>
  • Way more tests

  • Update npm packages

  • Needs Bootstrap >= 4.4

v0.4.1

18 Aug 13:05

Choose a tag to compare

  • Opacify the spinner in a readonly input

v0.4.0

17 Aug 14:12

Choose a tag to compare

  • Breaking change: rename bootstrap4-input-spinner.scss to bootstrap-input-spinner.scss
    • I won't have the man power to maintain Bootstrap 4 & 5

v0.3.2

17 Aug 13:12

Choose a tag to compare

  • Opacify the spinner in a disabled input
  • Update npm packages

v0.3.1

17 Mar 23:39

Choose a tag to compare

  • CI/CD with GitHub Actions
  • Update npm packages

v0.3.0

05 Jan 00:17

Choose a tag to compare

  • Update npm packages

v0.2.1

04 Jan 23:45

Choose a tag to compare

  • Fix scss with npm package sass
  • Switch from node-sass to sass

v0.2.0

04 Jan 23:45

Choose a tag to compare

  • Support is-loading and is-valid/is-invalid at the same time
  • Use ~ instead of + otherwise it doesn't play nice with @tkrotoff/bootstrap-floating-label

v0.1.1

18 Jun 23:03

Choose a tag to compare

  • Fix password input under IE: remove inner calc()