This repository has been archived by the owner on Oct 26, 2024. It is now read-only.
Releases: stimulus-components/stimulus-auto-submit
Releases · stimulus-components/stimulus-auto-submit
6.0.0
Chore
- Breaking Rename the
save
method tosubmit
.
- <%= 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
5.1.0
5.0.1
5.0.0
Chore
- Breaking Remove
@rails/ujs
support. Migrate to Turbo. - Change the default
delay
option from0
to150
. - Upgrading dependencies
4.1.1
4.1.0
Chore
- Upgrading to node 18
- Upgrading dependencies
- Using
lodash.debounce
instead oflodash
- Using
requestSubmit
if@rails/ujs
is not detected, so we can use this package without Rails-ujs at all.
4.0.0
Chore
- Breaking Upgrading Stimulus to
3.x
and change namespace fromstimulus
to@hotwired/stimulus
. - Upgrading to node
14.18.0
- Upgrading dependencies
v3.0.0
Chore
- Moving from Snowpack to Vite.
- Using stimulus as external library reducing bundle size from
122.96kb
to0.33kb
. - Moving to TypeScript.
- Upgrading Node to 14.17.0
v2.0.0
[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
- Adding controller