Skip to content

Releases: manudss/akita-filters-plugin

v4.1.0-beta.4

23 Nov 13:58
Compare
Choose a tag to compare
v4.1.0-beta.4 Pre-release
Pre-release

4.1.0-beta.4 (2020-11-23)

Bug Fixes

  • akita-mat-data-source: Fix subription when withserver pagination (2c9830c)

v4.1.0-beta.3

18 Nov 22:41
Compare
Choose a tag to compare
v4.1.0-beta.3 Pre-release
Pre-release

4.1.0-beta.3 (2020-11-18)

Features

  • akitaMatDataSource: add with options function to set options after constructors. (bdb23ec)

v4.1.0-beta.2

16 Nov 21:58
ad9e506
Compare
Choose a tag to compare
v4.1.0-beta.2 Pre-release
Pre-release

4.1.0-beta.2 (2020-11-16)

Bug Fixes

Features

  • akita-mat-data-source: ✨ Add getter for Mat Sort (19126f9)
  • akita-mat-data-source: ✨ Add server side pagination for mat datasource (6270ed3), closes #23

v4.1.0-beta.1

21 Apr 22:26
Compare
Choose a tag to compare
v4.1.0-beta.1 Pre-release
Pre-release

4.1.0-beta.1 (2020-04-21)

Bug Fixes

  • akita-filters-plugin: fix compile error (109a292)
  • akita-mat-data-source: fix akita mat datasource compile (9025c88)
  • with-server: fix with-server feature (b7f4517), closes #23
  • with-server-demo: fix search (6d93698)

Features

  • akita-mat-datasource: publish in beta withServer feature (8fd119d), closes #23
  • demo: display an add cart button (97ce4f0)
  • mat-data-source: add with server function in akitaMatDataSource + can specify id for search filter. (a3e0aaa)
  • with-server: add deep distinct changes to select-filters to avoid call server, when update to a local filters (460b888)
  • with-server: cancel previous is server function, when new call back arrive. (6493e55)
  • with-server-demo: add a with server demo (743bc1a)
  • with-server-demo: improve demo with a version of filters local (258d2b1)
  • with-server-demo: use NgEntityService (45cfdff)

v4.0.0

20 Apr 21:00
9355908
Compare
Choose a tag to compare

4.0.0 (2020-04-20)

Bug Fixes

  • akita-mat-datasource: added any type for MatSort and MatPaginator to avoid error type in typecript. (f2cac29), closes #20
  • package: remove optional dependencies while can cause errors with materials library (a359613)

Features

  • akita-filters-plugins: add params to specify akitaFiltersStore and AkitaFiltersQuery (fbac4bc), closes #10
  • akita-mat-data-source: Externalise akita-mat-data-source to a subdirectory to prevent error when not using angular material (c792f1b), closes #22

BREAKING CHANGES

  • akita-mat-data-source: akita-mat-data-source must now be imported from
    "akita-filters-plugins/datasource"

v4.0.0-beta.2

16 Apr 08:28
Compare
Choose a tag to compare
v4.0.0-beta.2 Pre-release
Pre-release

4.0.0-beta.2 (2020-04-16)

Bug Fixes

  • package: remove optional dependencies while can cause errors with materials library (a359613)

v4.0.0-beta.1

30 Mar 21:45
Compare
Choose a tag to compare
v4.0.0-beta.1 Pre-release
Pre-release

4.0.0-beta.1 (2020-03-30)

Bug Fixes

  • akita-mat-datasource: added any type for MatSort and MatPaginator to avoid error type in typecript. (f2cac29), closes #20

Features

  • akita-filters-plugins: add params to specify akitaFiltersStore and AkitaFiltersQuery (fbac4bc), closes #10
  • akita-mat-data-source: Externalise akita-mat-data-source to a subdirectory to prevent error when not using angular material (c792f1b), closes #22

BREAKING CHANGES

  • akita-mat-data-source: akita-mat-data-source must now be imported from
    "akita-filters-plugins/datasource"

v3.0.2

11 Jan 23:08
Compare
Choose a tag to compare

3.0.2 (2020-01-11)

Bug Fixes

  • readme: changes display in readme (e9ae2f5)

v3.0.1

11 Jan 22:53
Compare
Choose a tag to compare

3.0.1 (2020-01-11)

Bug Fixes

  • readme: incorrect version in readme breaking changes (08d48cb)

v3.0.0

11 Jan 22:40
Compare
Choose a tag to compare

3.0.0 (2020-01-11)

Code Refactoring

  • akita-filters-plugin: fixes uses correct types, now use only EntityState for all element in the plugins. (1542504), closes #15

BREAKING CHANGES

  • akita-filters-plugin: To correspond with Akita, you need now to specify only the entityState. The entity element is calculated as in akita with getEntityType

Changes this

new AkitaFiltersPlugin<MyEntitiesState, MyEntity>()```
to
```typescript
new AkitaFiltersPlugin<MyEntitiesState>()```

Changes this
```typescript
AkitaFilter<MyEntitiesState, MyEntity>[]```
to
```typescript
AkitaFilter<MyEntitiesState>[]```

Changes this
```typescript
new AkitaMatDataSource<MyEntity, MyEntitiesState>()```
to
```typescript
new AkitaMatDataSource<MyEntitiesState>()```