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

redux-zero

Package Overview
Dependencies
Maintainers
2
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redux-zero - npm Package Versions

13
7

5.0.2

Diff

Changelog

Source

5.0.2

  • Fixed Provider and connect in preact biddings so they now work for Preact X
matheusml
published 5.0.1 •

Changelog

Source

5.0.1

  • Added Redux-Devtools options params
matheusml
published 5.0.0 •

Changelog

Source

5.0.0

BREAKING CHANGES

  • Add generics to bindActions() , connect() , createStore() , Provider , Store . - Default: any

note: If using createStore() with partial initial state, it will inferred to incorrect type.

import createStore from "redux-zero";

interface ReduxState {
  a: number;
  b: number;
}

const store = createStore({ a: 3 }); // Store<{a: 3}>
const store = createStore<ReduxState>({ a: 3 }); // Store<Partial<ReduxState>>
const store = createStore<ReduxState>({ a: 3, b: 3 }); // Store<ReduxState>
matheusml
published 4.15.2 •

Changelog

Source

4.15.2

  • Improved reset function on the store, now it makes reset to initialState
  • Fixed devtoolsMiddleware imports
matheusml
published 4.15.1 •

Changelog

Source

4.15.1

  • Simplify createStore function to improve minimization
matheusml
published 4.15.0 •

Changelog

Source

4.15.0

  • Added ownprops to preact actions
matheusml
published 4.14.0 •

Changelog

Source

4.14.0

  • Added ownprops as optional argument to the actions creator
concretesolutions
published 4.13.6 •

Changelog

Source

4.13.6

  • Better typing support
concretesolutions
published 4.13.4 •

Changelog

Source

4.13.4

  • Reverting 4.13.3
concretesolutions
published 4.13.3 •

Changelog

Source

4.13.3

  • React connect high order component now propagate connected component statics
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