Skip to content

Tags: hadrien-toma/ng-select

Tags

v7.4.0

Toggle v7.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: add 'left' and 'right' options to dropdownPosition (ng-select#1990

)

* feat: add 'left' and 'right' options to dropdownPosition

v7.3.0

Toggle v7.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: add clearSearchOnAdd to NgSelectConfig (ng-select#1975)

v7.2.0

Toggle v7.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat(styles): added variables in default theme to allow customization… (

ng-select#1892)

v7.1.1

Toggle v7.1.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
perf: reduce change detection cycles by listening the `mousedown` in …

…the root zone (ng-select#1929)

This PR reduces change detection cycles for the `ng-dropdown-panel` by replacing
`HostListener` with `fromEvent` outside of the zone. Calling `preventDefault()`
on the event doesn't require Angular to run `ApplicationRef.tick()`. Note that the
`HostListener` wraps the actual listener under the hood into the internal Angular function
which runs `markDirty()` before running the actual listener (the decorated class method).

v7.1.0

Toggle v7.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: add 1 pixel for reliable triggering scrollToEnd (ng-select#1877)

v7.0.1

Toggle v7.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: update peer dep declaration ng 12 (ng-select#1920)

v7.0.0

Toggle v7.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: upgrade to angular 12 (ng-select#1903)

BREAKING CHANGE: update to Angular 12

v6.1.0

Toggle v6.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: allow nullish compareWith (ng-select#1857)

There are 2 reasons to allow setting compareWith to null/undefined.

1. Reverting the set compareWith - possible the user of the ng-select might want to remove the previously set compareWith to allow default behaviour in combination with bindValue possibly.
2. Extensibility - we have a wrapper around the ng-select that provides custom styles, adds error messages. Not all use cases use compareWith, but some do. Now it is impossible to redirect the [compareWith] @input without setting the default. That hinders the bindValue default behaviour.

v6.0.0

Toggle v6.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: upgrade to angular 11 (ng-select#1844)

BREAKING CHANGE: update to Angular 11
* remove tsickle (related: angular/angular#37221)

The closure compiler advanced optimizations has been disabled with
angular/angular#37221 and therefore the tsickle pass is not going to be
very beneficial and blocks updating to Angular 11. When closure compiler
is better supported this configuration can be added back.

* build ng-option-highlight with ng-select

v5.1.0

Toggle v5.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: support bindLabel in global config (ng-select#1840)