Skip to content

Releases: stimulus-components/stimulus-auto-submit

6.0.0

23 Mar 16:09
Compare
Choose a tag to compare

Chore

  • Breaking Rename the save method to submit.
- <%= f.text_field :description, data: { action: 'keyup->auto-submit#save' } %>
+ <%= f.text_field :description, data: { action: 'keyup->auto-submit#submit' } %>
  • Renaming the component from stimulus-rails-autosave to @stimulus-components/auto-submit
  • Upgrading dependencies
  • Exporting Typescript Types
  • Updating demo UI
  • Add Stimulus LSP compatibility

v5.1.0...v6.0.0

5.1.0

26 Dec 04:39
Compare
Choose a tag to compare

Chore

  • Adding interactive example
  • Using a debounce function without lodash.debounce

v5.0.1...v5.1.0

5.0.1

03 Dec 03:03
Compare
Choose a tag to compare

Chore

v5.0.0...v5.0.1

5.0.0

03 Dec 02:56
Compare
Choose a tag to compare

Chore

  • Breaking Remove @rails/ujs support. Migrate to Turbo.
  • Change the default delay option from 0 to 150.
  • Upgrading dependencies

v4.1.1...v5.0.0

4.1.1

06 Nov 22:40
Compare
Choose a tag to compare

Chore

  • Removing @rails/ujs from dependencies. Making @rails/ujs completely optional.

v4.1.0...v4.1.1

4.1.0

06 Nov 21:56
Compare
Choose a tag to compare

Chore

  • Upgrading to node 18
  • Upgrading dependencies
  • Using lodash.debounce instead of lodash
  • Using requestSubmit if @rails/ujs is not detected, so we can use this package without Rails-ujs at all.

v4.0.0...v4.1.0

4.0.0

29 Sep 17:40
Compare
Choose a tag to compare

Chore

  • Breaking Upgrading Stimulus to 3.x and change namespace from stimulus to @hotwired/stimulus.
  • Upgrading to node 14.18.0
  • Upgrading dependencies

v3.0.0...v4.0.0

v3.0.0

31 May 20:31
Compare
Choose a tag to compare

Chore

  • Moving from Snowpack to Vite.
  • Using stimulus as external library reducing bundle size from 122.96kb to 0.33kb.
  • Moving to TypeScript.
  • Upgrading Node to 14.17.0

v2.0.0...v3.0.0

v2.0.0

05 Dec 22:57
Compare
Choose a tag to compare

[2.0.0] - 2020-12-05

Added

  • Support for Stimulus 2.0

Changed

  • Breaking Using the new values static property
- <%= form_with model: @todo, data: { controller: 'autosave', autosave_delay: '1000' } do |f| %>
+ <%= form_with model: @todo, data: { controller: 'autosave', autosave_delay_value: 1000 } do |f| %>

v1.0.0...v2.0.0

v1.0.0

13 Nov 22:16
Compare
Choose a tag to compare
  • Adding controller