Merge pull request #17619 from thelfensdrfer/patch-1

Added silent parameter for the setValue method
This commit is contained in:
Paul van Brenk
2017-06-29 12:57:40 -07:00
committed by GitHub

View File

@@ -543,8 +543,8 @@ declare namespace Selectize {
/**
* Resets the selected items to the given value(s).
*/
setValue(value: T): void;
setValue(value: T[]): void;
setValue(value: T, silent?: boolean): void;
setValue(value: T[], silent?: boolean): void;
/**
* Moves the caret to the specified position ("index" being the index in the list of selected items).