@danielgindi/selectbox 1.0.43 → 1.0.44
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.cjs.js +3 -3
- package/dist/lib.cjs.js.map +1 -1
- package/dist/lib.cjs.min.js +2 -2
- package/dist/lib.cjs.min.js.map +1 -1
- package/dist/lib.es6.js +3 -3
- package/dist/lib.es6.js.map +1 -1
- package/dist/lib.es6.min.js +2 -2
- package/dist/lib.es6.min.js.map +1 -1
- package/dist/lib.umd.js +3 -3
- package/dist/lib.umd.js.map +1 -1
- package/dist/lib.umd.min.js +2 -2
- package/dist/lib.umd.min.js.map +1 -1
- package/lib/SelectBox.js +2 -2
- package/package.json +1 -1
- package/vue/SelectBox.vue +1 -1
package/dist/lib.umd.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* @danielgindi/selectbox 1.0.
|
|
2
|
+
* @danielgindi/selectbox 1.0.44
|
|
3
3
|
* git://github.com/danielgindi/selectbox.git
|
|
4
4
|
*/
|
|
5
5
|
(function (global, factory) {
|
|
@@ -8485,7 +8485,7 @@
|
|
|
8485
8485
|
* @property {boolean} [hasOpenIndicator=true] has open/close indicator?
|
|
8486
8486
|
* @property {string} [placeholder=''] Placeholder text
|
|
8487
8487
|
* @property {boolean} [sortSelectedItems=true] Should the selected items be sorted?
|
|
8488
|
-
* @property {boolean} [sortListItems=
|
|
8488
|
+
* @property {boolean} [sortListItems=false] Sort list items
|
|
8489
8489
|
* @property {boolean} [sortListCheckedFirst=true] When sorting - put checked items first (applicable to `multi` mode only)
|
|
8490
8490
|
* @property {*[]} [stickyValues]
|
|
8491
8491
|
* @property {function(a: DropList.ItemBase, b: DropList.ItemBase):number} [sortItemComparator]
|
|
@@ -8527,7 +8527,7 @@
|
|
|
8527
8527
|
hasOpenIndicator: true,
|
|
8528
8528
|
placeholder: '',
|
|
8529
8529
|
sortSelectedItems: true,
|
|
8530
|
-
sortListItems:
|
|
8530
|
+
sortListItems: false,
|
|
8531
8531
|
sortListCheckedFirst: true,
|
|
8532
8532
|
stickyValues: null,
|
|
8533
8533
|
sortItemComparator: null,
|