@danielgindi/selectbox 1.0.116 → 1.0.117

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/lib.umd.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @danielgindi/selectbox 1.0.116
2
+ * @danielgindi/selectbox 1.0.117
3
3
  * git://github.com/danielgindi/selectbox.git
4
4
  */
5
5
  (function (global, factory) {
@@ -716,6 +716,20 @@
716
716
  return this;
717
717
  }
718
718
 
719
+ /**
720
+ * Should only be used if the items array has been manually manipulated.
721
+ * @return {DropList}
722
+ */
723
+ invalidate() {
724
+ const p = this._p;
725
+
726
+ p.virtualListHelper.
727
+ invalidate().
728
+ render();
729
+
730
+ return this;
731
+ }
732
+
719
733
  itemDataByValue(value) {
720
734
  const p = this._p;
721
735