Releases: manudss/akita-filters-plugin
Releases · manudss/akita-filters-plugin
v4.1.0-beta.4
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
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
v4.1.0-beta.1
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
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
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
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
v3.0.1
v3.0.0
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>()```