Skip to content

issues Search Results · repo:kenkunz/svelte-fsm language:JavaScript

Filter by

9 results
 (66 ms)

9 results

inkenkunz/svelte-fsm (press backspace or delete to remove)

const progress = tweened(0, { easing: cubicOut }); const state = fsm( loaded , { loaded: { load: preloading }, preloading: { _enter() { progress.set(0, { duration: 0 }); this.advance.debounce(250); ...
  • amorfati254
  • 1
  • Opened 
    on Mar 13, 2023
  • #12

I have an JS object that I am serializing and saving the state to a DB store. Do you have and advice on how I could hydrate that object along with the FSM state?
  • ghostwalkerj
  • 3
  • Opened 
    on Sep 28, 2022
  • #11

Opening a new issue to consider / discuss the possibility of adding Eventless Transitions, as proposed by @morungos: Originally posted by @morungos in https://github.com/kenkunz/svelte-fsm/issues/8#issuecomment-1237430403 ...
  • kenkunz
  • 5
  • Opened 
    on Sep 8, 2022
  • #10

Thanks for publishing this great module. I want to make a derived store from fsm. const simpleSwitch = fsm( off , { off: { toggle: on }, on: { toggle: off } }); $: isOnReactive = $simpleSwitch ...
  • astanet
  • 9
  • Opened 
    on May 31, 2022
  • #8

Hi, unfortunately the engine requirement of npm 7.0 is breaking an azure pipeline for us. Is there a reason for this package to require 7.0 as a minimum version? The azure pipeline only provides a 6.14 ...
  • lukasIO
  • 1
  • Opened 
    on Mar 31, 2022
  • #7

Hi! I really like the simplicity and expressiveness of Svelte-FSM. While implementing a FSM I tripped over the fact that debounce calls are not bound to the event where they were called from. script ...
  • kju2
  • 3
  • Opened 
    on Feb 19, 2022
  • #6

After the last update with the improved types, I now get an error whenever I invoke an event with an argument. state.paginate(page); Error: Expected 0 arguments, but got 1. (ts) state.paginate(page); ...
  • f-elix
  • 8
  • Opened 
    on Dec 13, 2021
  • #4

The documentation has the from, to, event, and args parameters that get passed to _enter but does not describe how one actually passes arguments from one state to another.
  • eboody
  • 3
  • Opened 
    on Nov 29, 2021
  • #3

Hey! I d like to chain transitions to keep each state simple and to explicitly map out the various states so that someone else can look at the state machine as a map of what the app does, under what conditions, ...
  • eboody
  • 8
  • Opened 
    on Nov 29, 2021
  • #2
Issue origami icon

Learn how you can use GitHub Issues to plan and track your work.

Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub Issues
ProTip! 
Restrict your search to the title by using the in:title qualifier.
Issue origami icon

Learn how you can use GitHub Issues to plan and track your work.

Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub Issues
ProTip! 
Press the
/
key to activate the search input again and adjust your query.
Issue search results · GitHub