Skip to content

Releases: ngx-lib/multiselect

Support angular 9+

09 Apr 08:56
47e4164
Compare
Choose a tag to compare

What's Changed

  • Fix for Angular 9+ version by @pankajparkar in #216
  • Major version update to support Angular 9+ (post Ivy)

No breaking changes

Full Changelog: 1.0.12...2.0.0

Fix utils import issue from public_api.ts

09 Apr 08:13
70c5dfc
Compare
Choose a tag to compare
Merge pull request #220 from ngx-lib/import-fix

Import fix for utils file.

Refactoring of lib

09 Apr 06:41
eb2f316
Compare
Choose a tag to compare

Breaking Change

  • Converted muliselect.service to utitility function
  • If you have used multiselect.service.ts inside your code, import the specific function from import directictly
    • For eg. if you have this.multiselectService.closest() inside your code. Replace it with closest function
      import {MultiselectService} from '@ngx-lib/multiselect';
    
      // somewhere you might have used
      this.multiselectService.closest(el);
    
      // change it to
      import {closest} from '@ngx-lib/multiselect';
    
      closest(el);
    

Removed unnecessary peer deps

05 Apr 16:49
4a81aa5
Compare
Choose a tag to compare

Just kept relevant peer deps

"@angular/common": ">=6.0.4",
"@angular/core": ">=6.0.4",
"@angular/forms": ">=6.0.4"

Fix imports and CSS minor fixes

01 Apr 17:20
Compare
Choose a tag to compare
  • CSS minor fixes related to button alignment
  • Fix imports issue

Use concrete typings of library internals.

01 Apr 08:56
eff4960
Compare
Choose a tag to compare
  • Internally everywhere it was any type, instead created concrete type.
  • Improved the perf of virtual scroll directive.

1.0.3

02 Aug 18:16
118a98a
Compare
Choose a tag to compare

Multiselect

This project focuses on serving an intuitive select control. This look and feel of the component has been inspired by AngularJS isteven-multiselect directive, but from coding perspective, this may not be architectured in the similar way. It supports ultimate features like

🖱️Virtual scroll
📃Forms
🎨Theming (bootstrap/material)
👀Observable
🅰️@angular 6+
👨‍👧‍👧Grouping
etc...