Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

effector

Package Overview
Dependencies
Maintainers
5
Versions
272
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

effector - npm Package Versions

1
28

22.8.0

Diff

Changelog

Source

effector 22.8.0

  • Sids are no longer required for fork({ values, handlers }), which allows to run tests without effector/babel-plugin. Note, that plugin and sids are still required for SSR. (PR #855)
drelliot
published 22.7.0 •

Changelog

Source

effector 22.7.0

  • Fix Declaration type, provide missing top-level properties for region and factory types
  • Add node's id to Declaration type
drelliot
published 22.6.2 •

Changelog

Source

effector 22.6.2

  • Fix return type of withRegion
drelliot
published 22.6.1 •

Changelog

Source

effector 22.6.1

  • Add missing exports definition for effector/inspect API
drelliot
published 22.6.0 •

Changelog

Source

effector 22.6.0

drelliot
published 22.5.2 •

Changelog

Source

effector-react 22.5.2

drelliot
published 22.5.1 •

Changelog

Source

effector-react 22.5.1

  • Fix Gate usage as component. <Gate /> will also be isomorphic by scope.
drelliot
published 22.5.0 •

Changelog

Source

effector-react 22.5.0

  • Make useGate isomorphic in effector-react module, so the one not needed to use effector-react/scope anymore (PR #852)
  • Fix useUnit hangs when scope is changed (happens when route is changed in next.js) (PR #851)
drelliot
published 22.4.1 •

Changelog

Source

effector 22.4.1

  • Add type support for read only arrays in sample source. This case now supported and typechecked correctly:
const profileFormSubmitted = createEvent()
const $name = createStore('alice')
const $age = createStore(0)
const saveProfileFx = createEffect(async ([name, age]: [string, number]) => {})

sample({
  clock: profileFormSubmitted,
  source: [$name, $age] as const,
  target: saveProfileFx,
})

Note that the one need to use "as const" in that case to got correct typechecking because without it typescript cannot infer the type [Store<string>, Store<number>]. We are working to avoid that limitation, stay tuned!

drelliot
published 22.4.0 •

Changelog

Source

effector-react 22.4.0

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc