Skip to content

Releases: Glinkis/flux-entity

v1.4.0

09 Nov 15:41
Compare
Choose a tag to compare
  • Updated dependencies.

1.3.8

28 Jan 13:13
Compare
Choose a tag to compare

Exposes the EntityKey generic type.
Allows you to extract the value typer of the entity key:

interface Obj {
  id: number
}
const Type = EntityKey<Entity<Obj, 'id'>>
// Type is now of the "string" type.

1.3.7

05 Dec 09:12
Compare
Choose a tag to compare

Add default any type to createEntityFactory.

1.3.6

23 Oct 10:48
Compare
Choose a tag to compare

Improve speed of adding array items

v1.3.5

22 Aug 16:02
Compare
Choose a tag to compare

Add new utilities

1.3.3

22 Aug 09:35
Compare
Choose a tag to compare

Add JSDoc comments to improve documention.

v1.3.0

22 Aug 08:47
Compare
Choose a tag to compare

Expose array utilities

insertIntoArray(array, ...values)
removeFromArray(array, ...values)

v1.2.4

22 Aug 08:25
Compare
Choose a tag to compare

First official release!