@danielgindi/selectbox 1.0.136 → 1.0.137

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/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2016 Daniel Cohen Gindi
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2016 Daniel Cohen Gindi
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/dist/lib.cjs.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @danielgindi/selectbox 1.0.136
2
+ * @danielgindi/selectbox 1.0.137
3
3
  * git://github.com/danielgindi/selectbox.git
4
4
  */
5
5
  'use strict';
@@ -59,7 +59,7 @@ var check = function (it) {
59
59
  };
60
60
 
61
61
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
62
- var global$e =
62
+ var global$f =
63
63
  // eslint-disable-next-line es/no-global-this -- safe
64
64
  check(typeof globalThis == 'object' && globalThis) ||
65
65
  check(typeof window == 'object' && window) ||
@@ -70,7 +70,7 @@ var global$e =
70
70
  // eslint-disable-next-line no-new-func -- fallback
71
71
  (function () { return this; })() || Function('return this')();
72
72
 
73
- var global$f = /*@__PURE__*/getDefaultExportFromCjs(global$e);
73
+ var global$g = /*@__PURE__*/getDefaultExportFromCjs(global$f);
74
74
 
75
75
  'use strict';
76
76
  // iterable DOM collections
@@ -129,19 +129,19 @@ var isCallable$h = /*@__PURE__*/getDefaultExportFromCjs(isCallable$g);
129
129
  'use strict';
130
130
  var isCallable$f = isCallable$g;
131
131
 
132
- var isObject$8 = function (it) {
132
+ var isObject$7 = function (it) {
133
133
  return typeof it == 'object' ? it !== null : isCallable$f(it);
134
134
  };
135
135
 
136
- var isObject$9 = /*@__PURE__*/getDefaultExportFromCjs(isObject$8);
136
+ var isObject$8 = /*@__PURE__*/getDefaultExportFromCjs(isObject$7);
137
137
 
138
138
  'use strict';
139
- var global$d = global$e;
140
- var isObject$7 = isObject$8;
139
+ var global$e = global$f;
140
+ var isObject$6 = isObject$7;
141
141
 
142
- var document$1 = global$d.document;
142
+ var document$1 = global$e.document;
143
143
  // typeof document.createElement is 'object' in old IE
144
- var EXISTS$1 = isObject$7(document$1) && isObject$7(document$1.createElement);
144
+ var EXISTS$1 = isObject$6(document$1) && isObject$6(document$1.createElement);
145
145
 
146
146
  var documentCreateElement$2 = function (it) {
147
147
  return EXISTS$1 ? document$1.createElement(it) : {};
@@ -245,25 +245,25 @@ var $TypeError$7 = TypeError;
245
245
 
246
246
  // `RequireObjectCoercible` abstract operation
247
247
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
248
- var requireObjectCoercible$5 = function (it) {
248
+ var requireObjectCoercible$4 = function (it) {
249
249
  if (isNullOrUndefined$2(it)) throw new $TypeError$7("Can't call method on " + it);
250
250
  return it;
251
251
  };
252
252
 
253
- var requireObjectCoercible$6 = /*@__PURE__*/getDefaultExportFromCjs(requireObjectCoercible$5);
253
+ var requireObjectCoercible$5 = /*@__PURE__*/getDefaultExportFromCjs(requireObjectCoercible$4);
254
254
 
255
255
  'use strict';
256
256
  // toObject with fallback for non-array-like ES3 strings
257
257
  var IndexedObject = indexedObject;
258
- var requireObjectCoercible$4 = requireObjectCoercible$5;
258
+ var requireObjectCoercible$3 = requireObjectCoercible$4;
259
259
 
260
260
  var toIndexedObject$5 = function (it) {
261
- return IndexedObject(requireObjectCoercible$4(it));
261
+ return IndexedObject(requireObjectCoercible$3(it));
262
262
  };
263
263
 
264
264
  var toIndexedObject$6 = /*@__PURE__*/getDefaultExportFromCjs(toIndexedObject$5);
265
265
 
266
- var sharedStore$2 = {exports: {}};
266
+ var shared$6 = {exports: {}};
267
267
 
268
268
  'use strict';
269
269
  var isPure = false;
@@ -271,60 +271,60 @@ var isPure = false;
271
271
  var isPure$1 = /*@__PURE__*/getDefaultExportFromCjs(isPure);
272
272
 
273
273
  'use strict';
274
- var global$c = global$e;
274
+ var global$d = global$f;
275
275
 
276
276
  // eslint-disable-next-line es/no-object-defineproperty -- safe
277
277
  var defineProperty$4 = Object.defineProperty;
278
278
 
279
279
  var defineGlobalProperty$3 = function (key, value) {
280
280
  try {
281
- defineProperty$4(global$c, key, { value: value, configurable: true, writable: true });
281
+ defineProperty$4(global$d, key, { value: value, configurable: true, writable: true });
282
282
  } catch (error) {
283
- global$c[key] = value;
283
+ global$d[key] = value;
284
284
  } return value;
285
285
  };
286
286
 
287
287
  var defineGlobalProperty$4 = /*@__PURE__*/getDefaultExportFromCjs(defineGlobalProperty$3);
288
288
 
289
- var sharedStore = sharedStore$2.exports;
290
-
291
289
  'use strict';
292
- var IS_PURE$3 = isPure;
293
- var globalThis$1 = global$e;
290
+ var global$c = global$f;
294
291
  var defineGlobalProperty$2 = defineGlobalProperty$3;
295
292
 
296
293
  var SHARED = '__core-js_shared__';
297
- var store$3 = sharedStore$2.exports = globalThis$1[SHARED] || defineGlobalProperty$2(SHARED, {});
294
+ var store$3 = global$c[SHARED] || defineGlobalProperty$2(SHARED, {});
298
295
 
299
- (store$3.versions || (store$3.versions = [])).push({
300
- version: '3.36.1',
301
- mode: IS_PURE$3 ? 'pure' : 'global',
302
- copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
303
- license: 'https://github.com/zloirock/core-js/blob/v3.36.1/LICENSE',
304
- source: 'https://github.com/zloirock/core-js'
305
- });
296
+ var sharedStore = store$3;
297
+
298
+ var sharedStore$1 = /*@__PURE__*/getDefaultExportFromCjs(sharedStore);
306
299
 
307
- var sharedStoreExports = sharedStore$2.exports;
308
- var sharedStore$1 = /*@__PURE__*/getDefaultExportFromCjs(sharedStoreExports);
300
+ var shared$4 = shared$6.exports;
309
301
 
310
302
  'use strict';
311
- var store$2 = sharedStoreExports;
303
+ var IS_PURE$3 = isPure;
304
+ var store$2 = sharedStore;
312
305
 
313
- var shared$4 = function (key, value) {
314
- return store$2[key] || (store$2[key] = value || {});
315
- };
306
+ (shared$6.exports = function (key, value) {
307
+ return store$2[key] || (store$2[key] = value !== undefined ? value : {});
308
+ })('versions', []).push({
309
+ version: '3.35.1',
310
+ mode: IS_PURE$3 ? 'pure' : 'global',
311
+ copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
312
+ license: 'https://github.com/zloirock/core-js/blob/v3.35.1/LICENSE',
313
+ source: 'https://github.com/zloirock/core-js'
314
+ });
316
315
 
317
- var shared$5 = /*@__PURE__*/getDefaultExportFromCjs(shared$4);
316
+ var sharedExports = shared$6.exports;
317
+ var shared$5 = /*@__PURE__*/getDefaultExportFromCjs(sharedExports);
318
318
 
319
319
  'use strict';
320
- var requireObjectCoercible$3 = requireObjectCoercible$5;
320
+ var requireObjectCoercible$2 = requireObjectCoercible$4;
321
321
 
322
322
  var $Object$3 = Object;
323
323
 
324
324
  // `ToObject` abstract operation
325
325
  // https://tc39.es/ecma262/#sec-toobject
326
326
  var toObject$3 = function (argument) {
327
- return $Object$3(requireObjectCoercible$3(argument));
327
+ return $Object$3(requireObjectCoercible$2(argument));
328
328
  };
329
329
 
330
330
  var toObject$4 = /*@__PURE__*/getDefaultExportFromCjs(toObject$3);
@@ -363,7 +363,7 @@ var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAg
363
363
  var engineUserAgent$1 = /*@__PURE__*/getDefaultExportFromCjs(engineUserAgent);
364
364
 
365
365
  'use strict';
366
- var global$b = global$e;
366
+ var global$b = global$f;
367
367
  var userAgent = engineUserAgent;
368
368
 
369
369
  var process = global$b.process;
@@ -397,7 +397,7 @@ var engineV8Version$1 = /*@__PURE__*/getDefaultExportFromCjs(engineV8Version);
397
397
  /* eslint-disable es/no-symbol -- required for testing */
398
398
  var V8_VERSION = engineV8Version;
399
399
  var fails$c = fails$f;
400
- var global$a = global$e;
400
+ var global$a = global$f;
401
401
 
402
402
  var $String$5 = global$a.String;
403
403
 
@@ -426,8 +426,8 @@ var useSymbolAsUid = NATIVE_SYMBOL$1
426
426
  var useSymbolAsUid$1 = /*@__PURE__*/getDefaultExportFromCjs(useSymbolAsUid);
427
427
 
428
428
  'use strict';
429
- var global$9 = global$e;
430
- var shared$3 = shared$4;
429
+ var global$9 = global$f;
430
+ var shared$3 = sharedExports;
431
431
  var hasOwn$8 = hasOwnProperty_1;
432
432
  var uid$1 = uid$2;
433
433
  var NATIVE_SYMBOL = symbolConstructorDetection;
@@ -448,18 +448,18 @@ var wellKnownSymbol$a = function (name) {
448
448
  var wellKnownSymbol$b = /*@__PURE__*/getDefaultExportFromCjs(wellKnownSymbol$a);
449
449
 
450
450
  'use strict';
451
- var isObject$6 = isObject$8;
451
+ var isObject$5 = isObject$7;
452
452
 
453
453
  var $String$4 = String;
454
454
  var $TypeError$6 = TypeError;
455
455
 
456
456
  // `Assert: Type(argument) is Object`
457
- var anObject$7 = function (argument) {
458
- if (isObject$6(argument)) return argument;
457
+ var anObject$8 = function (argument) {
458
+ if (isObject$5(argument)) return argument;
459
459
  throw new $TypeError$6($String$4(argument) + ' is not an object');
460
460
  };
461
461
 
462
- var anObject$8 = /*@__PURE__*/getDefaultExportFromCjs(anObject$7);
462
+ var anObject$9 = /*@__PURE__*/getDefaultExportFromCjs(anObject$8);
463
463
 
464
464
  var objectDefineProperties = {};
465
465
 
@@ -519,7 +519,7 @@ var functionCall = NATIVE_BIND$1 ? call$9.bind(call$9) : function () {
519
519
  var functionCall$1 = /*@__PURE__*/getDefaultExportFromCjs(functionCall);
520
520
 
521
521
  'use strict';
522
- var global$8 = global$e;
522
+ var global$8 = global$f;
523
523
  var isCallable$e = isCallable$g;
524
524
 
525
525
  var aFunction = function (argument) {
@@ -599,7 +599,7 @@ var getMethod$3 = /*@__PURE__*/getDefaultExportFromCjs(getMethod$2);
599
599
  'use strict';
600
600
  var call$8 = functionCall;
601
601
  var isCallable$b = isCallable$g;
602
- var isObject$5 = isObject$8;
602
+ var isObject$4 = isObject$7;
603
603
 
604
604
  var $TypeError$4 = TypeError;
605
605
 
@@ -607,9 +607,9 @@ var $TypeError$4 = TypeError;
607
607
  // https://tc39.es/ecma262/#sec-ordinarytoprimitive
608
608
  var ordinaryToPrimitive$1 = function (input, pref) {
609
609
  var fn, val;
610
- if (pref === 'string' && isCallable$b(fn = input.toString) && !isObject$5(val = call$8(fn, input))) return val;
611
- if (isCallable$b(fn = input.valueOf) && !isObject$5(val = call$8(fn, input))) return val;
612
- if (pref !== 'string' && isCallable$b(fn = input.toString) && !isObject$5(val = call$8(fn, input))) return val;
610
+ if (pref === 'string' && isCallable$b(fn = input.toString) && !isObject$4(val = call$8(fn, input))) return val;
611
+ if (isCallable$b(fn = input.valueOf) && !isObject$4(val = call$8(fn, input))) return val;
612
+ if (pref !== 'string' && isCallable$b(fn = input.toString) && !isObject$4(val = call$8(fn, input))) return val;
613
613
  throw new $TypeError$4("Can't convert object to primitive value");
614
614
  };
615
615
 
@@ -617,7 +617,7 @@ var ordinaryToPrimitive$2 = /*@__PURE__*/getDefaultExportFromCjs(ordinaryToPrimi
617
617
 
618
618
  'use strict';
619
619
  var call$7 = functionCall;
620
- var isObject$4 = isObject$8;
620
+ var isObject$3 = isObject$7;
621
621
  var isSymbol$1 = isSymbol$2;
622
622
  var getMethod$1 = getMethod$2;
623
623
  var ordinaryToPrimitive = ordinaryToPrimitive$1;
@@ -629,13 +629,13 @@ var TO_PRIMITIVE = wellKnownSymbol$9('toPrimitive');
629
629
  // `ToPrimitive` abstract operation
630
630
  // https://tc39.es/ecma262/#sec-toprimitive
631
631
  var toPrimitive$1 = function (input, pref) {
632
- if (!isObject$4(input) || isSymbol$1(input)) return input;
632
+ if (!isObject$3(input) || isSymbol$1(input)) return input;
633
633
  var exoticToPrim = getMethod$1(input, TO_PRIMITIVE);
634
634
  var result;
635
635
  if (exoticToPrim) {
636
636
  if (pref === undefined) pref = 'default';
637
637
  result = call$7(exoticToPrim, input, pref);
638
- if (!isObject$4(result) || isSymbol$1(result)) return result;
638
+ if (!isObject$3(result) || isSymbol$1(result)) return result;
639
639
  throw new $TypeError$3("Can't convert object to primitive value");
640
640
  }
641
641
  if (pref === undefined) pref = 'number';
@@ -661,7 +661,7 @@ var toPropertyKey$3 = /*@__PURE__*/getDefaultExportFromCjs(toPropertyKey$2);
661
661
  var DESCRIPTORS$6 = descriptors;
662
662
  var IE8_DOM_DEFINE$1 = ie8DomDefine;
663
663
  var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
664
- var anObject$6 = anObject$7;
664
+ var anObject$7 = anObject$8;
665
665
  var toPropertyKey$1 = toPropertyKey$2;
666
666
 
667
667
  var $TypeError$2 = TypeError;
@@ -676,9 +676,9 @@ var WRITABLE = 'writable';
676
676
  // `Object.defineProperty` method
677
677
  // https://tc39.es/ecma262/#sec-object.defineproperty
678
678
  var f$5 = objectDefineProperty.f = DESCRIPTORS$6 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
679
- anObject$6(O);
679
+ anObject$7(O);
680
680
  P = toPropertyKey$1(P);
681
- anObject$6(Attributes);
681
+ anObject$7(Attributes);
682
682
  if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
683
683
  var current = $getOwnPropertyDescriptor$1(O, P);
684
684
  if (current && current[WRITABLE]) {
@@ -691,9 +691,9 @@ var f$5 = objectDefineProperty.f = DESCRIPTORS$6 ? V8_PROTOTYPE_DEFINE_BUG$1 ? f
691
691
  }
692
692
  } return $defineProperty(O, P, Attributes);
693
693
  } : $defineProperty : function defineProperty(O, P, Attributes) {
694
- anObject$6(O);
694
+ anObject$7(O);
695
695
  P = toPropertyKey$1(P);
696
- anObject$6(Attributes);
696
+ anObject$7(Attributes);
697
697
  if (IE8_DOM_DEFINE$1) try {
698
698
  return $defineProperty(O, P, Attributes);
699
699
  } catch (error) { /* empty */ }
@@ -780,7 +780,6 @@ var createMethod$1 = function (IS_INCLUDES) {
780
780
  return function ($this, el, fromIndex) {
781
781
  var O = toIndexedObject$4($this);
782
782
  var length = lengthOfArrayLike(O);
783
- if (length === 0) return !IS_INCLUDES && -1;
784
783
  var index = toAbsoluteIndex(fromIndex, length);
785
784
  var value;
786
785
  // Array#includes uses SameValueZero equality algorithm
@@ -867,7 +866,7 @@ var objectKeys$2 = /*@__PURE__*/getDefaultExportFromCjs(objectKeys$1);
867
866
  var DESCRIPTORS$5 = descriptors;
868
867
  var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
869
868
  var definePropertyModule$3 = objectDefineProperty;
870
- var anObject$5 = anObject$7;
869
+ var anObject$6 = anObject$8;
871
870
  var toIndexedObject$2 = toIndexedObject$5;
872
871
  var objectKeys = objectKeys$1;
873
872
 
@@ -875,7 +874,7 @@ var objectKeys = objectKeys$1;
875
874
  // https://tc39.es/ecma262/#sec-object.defineproperties
876
875
  // eslint-disable-next-line es/no-object-defineproperties -- safe
877
876
  var f$4 = objectDefineProperties.f = DESCRIPTORS$5 && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
878
- anObject$5(O);
877
+ anObject$6(O);
879
878
  var props = toIndexedObject$2(Properties);
880
879
  var keys = objectKeys(Properties);
881
880
  var length = keys.length;
@@ -893,7 +892,7 @@ var html$1 = getBuiltIn$1('document', 'documentElement');
893
892
  var html$2 = /*@__PURE__*/getDefaultExportFromCjs(html$1);
894
893
 
895
894
  'use strict';
896
- var shared$2 = shared$4;
895
+ var shared$2 = sharedExports;
897
896
  var uid = uid$2;
898
897
 
899
898
  var keys = shared$2('keys');
@@ -906,7 +905,7 @@ var sharedKey$4 = /*@__PURE__*/getDefaultExportFromCjs(sharedKey$3);
906
905
 
907
906
  'use strict';
908
907
  /* global ActiveXObject -- old IE, WSH */
909
- var anObject$4 = anObject$7;
908
+ var anObject$5 = anObject$8;
910
909
  var definePropertiesModule = objectDefineProperties;
911
910
  var enumBugKeys$1 = enumBugKeys$3;
912
911
  var hiddenKeys$2 = hiddenKeys$4;
@@ -980,7 +979,7 @@ hiddenKeys$2[IE_PROTO$1] = true;
980
979
  var objectCreate = Object.create || function create(O, Properties) {
981
980
  var result;
982
981
  if (O !== null) {
983
- EmptyConstructor[PROTOTYPE] = anObject$4(O);
982
+ EmptyConstructor[PROTOTYPE] = anObject$5(O);
984
983
  result = new EmptyConstructor();
985
984
  EmptyConstructor[PROTOTYPE] = null;
986
985
  // add "__proto__" for Object.getPrototypeOf polyfill
@@ -1021,7 +1020,7 @@ var iterators = {};
1021
1020
  var iterators$1 = /*@__PURE__*/getDefaultExportFromCjs(iterators);
1022
1021
 
1023
1022
  'use strict';
1024
- var global$7 = global$e;
1023
+ var global$7 = global$f;
1025
1024
  var isCallable$a = isCallable$g;
1026
1025
 
1027
1026
  var WeakMap$1 = global$7.WeakMap;
@@ -1058,11 +1057,11 @@ var createNonEnumerableProperty$6 = /*@__PURE__*/getDefaultExportFromCjs(createN
1058
1057
 
1059
1058
  'use strict';
1060
1059
  var NATIVE_WEAK_MAP = weakMapBasicDetection;
1061
- var global$6 = global$e;
1062
- var isObject$3 = isObject$8;
1060
+ var global$6 = global$f;
1061
+ var isObject$2 = isObject$7;
1063
1062
  var createNonEnumerableProperty$4 = createNonEnumerableProperty$5;
1064
1063
  var hasOwn$6 = hasOwnProperty_1;
1065
- var shared$1 = sharedStoreExports;
1064
+ var shared$1 = sharedStore;
1066
1065
  var sharedKey$1 = sharedKey$3;
1067
1066
  var hiddenKeys$1 = hiddenKeys$4;
1068
1067
 
@@ -1078,7 +1077,7 @@ var enforce = function (it) {
1078
1077
  var getterFor = function (TYPE) {
1079
1078
  return function (it) {
1080
1079
  var state;
1081
- if (!isObject$3(it) || (state = get(it)).type !== TYPE) {
1080
+ if (!isObject$2(it) || (state = get(it)).type !== TYPE) {
1082
1081
  throw new TypeError$1('Incompatible receiver, ' + TYPE + ' required');
1083
1082
  } return state;
1084
1083
  };
@@ -1199,7 +1198,7 @@ var functionName$1 = /*@__PURE__*/getDefaultExportFromCjs(functionName);
1199
1198
  'use strict';
1200
1199
  var uncurryThis$7 = functionUncurryThis;
1201
1200
  var isCallable$9 = isCallable$g;
1202
- var store = sharedStoreExports;
1201
+ var store = sharedStore;
1203
1202
 
1204
1203
  var functionToString = uncurryThis$7(Function.toString);
1205
1204
 
@@ -1332,13 +1331,13 @@ var getBuiltIn = getBuiltIn$3;
1332
1331
  var uncurryThis$5 = functionUncurryThis;
1333
1332
  var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
1334
1333
  var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
1335
- var anObject$3 = anObject$7;
1334
+ var anObject$4 = anObject$8;
1336
1335
 
1337
1336
  var concat$1 = uncurryThis$5([].concat);
1338
1337
 
1339
1338
  // all object keys, includes non-enumerable and symbols
1340
1339
  var ownKeys$1 = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
1341
- var keys = getOwnPropertyNamesModule.f(anObject$3(it));
1340
+ var keys = getOwnPropertyNamesModule.f(anObject$4(it));
1342
1341
  var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
1343
1342
  return getOwnPropertySymbols ? concat$1(keys, getOwnPropertySymbols(it)) : keys;
1344
1343
  };
@@ -1392,7 +1391,7 @@ var isForced_1 = isForced$1;
1392
1391
  var isForced$2 = /*@__PURE__*/getDefaultExportFromCjs(isForced_1);
1393
1392
 
1394
1393
  'use strict';
1395
- var global$5 = global$e;
1394
+ var global$5 = global$f;
1396
1395
  var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
1397
1396
  var createNonEnumerableProperty$3 = createNonEnumerableProperty$5;
1398
1397
  var defineBuiltIn$3 = defineBuiltIn$4;
@@ -1489,7 +1488,7 @@ var objectGetPrototypeOf$1 = /*@__PURE__*/getDefaultExportFromCjs(objectGetProto
1489
1488
  'use strict';
1490
1489
  var fails$5 = fails$f;
1491
1490
  var isCallable$4 = isCallable$g;
1492
- var isObject$2 = isObject$8;
1491
+ var isObject$1 = isObject$7;
1493
1492
  var create$2 = objectCreate;
1494
1493
  var getPrototypeOf$1 = objectGetPrototypeOf;
1495
1494
  var defineBuiltIn$2 = defineBuiltIn$4;
@@ -1514,7 +1513,7 @@ if ([].keys) {
1514
1513
  }
1515
1514
  }
1516
1515
 
1517
- var NEW_ITERATOR_PROTOTYPE = !isObject$2(IteratorPrototype$2) || fails$5(function () {
1516
+ var NEW_ITERATOR_PROTOTYPE = !isObject$1(IteratorPrototype$2) || fails$5(function () {
1518
1517
  var test = {};
1519
1518
  // FF44- legacy iterators case
1520
1519
  return IteratorPrototype$2[ITERATOR$2].call(test) !== test;
@@ -1587,10 +1586,10 @@ var functionUncurryThisAccessor = function (object, key, method) {
1587
1586
  var functionUncurryThisAccessor$1 = /*@__PURE__*/getDefaultExportFromCjs(functionUncurryThisAccessor);
1588
1587
 
1589
1588
  'use strict';
1590
- var isObject$1 = isObject$8;
1589
+ var isObject = isObject$7;
1591
1590
 
1592
1591
  var isPossiblePrototype$1 = function (argument) {
1593
- return isObject$1(argument) || argument === null;
1592
+ return isObject(argument) || argument === null;
1594
1593
  };
1595
1594
 
1596
1595
  var isPossiblePrototype$2 = /*@__PURE__*/getDefaultExportFromCjs(isPossiblePrototype$1);
@@ -1611,8 +1610,7 @@ var aPossiblePrototype$2 = /*@__PURE__*/getDefaultExportFromCjs(aPossiblePrototy
1611
1610
  'use strict';
1612
1611
  /* eslint-disable no-proto -- safe */
1613
1612
  var uncurryThisAccessor = functionUncurryThisAccessor;
1614
- var isObject = isObject$8;
1615
- var requireObjectCoercible$2 = requireObjectCoercible$5;
1613
+ var anObject$3 = anObject$8;
1616
1614
  var aPossiblePrototype = aPossiblePrototype$1;
1617
1615
 
1618
1616
  // `Object.setPrototypeOf` method
@@ -1629,9 +1627,8 @@ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? functio
1629
1627
  CORRECT_SETTER = test instanceof Array;
1630
1628
  } catch (error) { /* empty */ }
1631
1629
  return function setPrototypeOf(O, proto) {
1632
- requireObjectCoercible$2(O);
1630
+ anObject$3(O);
1633
1631
  aPossiblePrototype(proto);
1634
- if (!isObject(O)) return O;
1635
1632
  if (CORRECT_SETTER) setter(O, proto);
1636
1633
  else O.__proto__ = proto;
1637
1634
  return O;
@@ -1820,7 +1817,7 @@ if (!IS_PURE && DESCRIPTORS && values.name !== 'values') try {
1820
1817
  var es_array_iterator$1 = /*@__PURE__*/getDefaultExportFromCjs(es_array_iterator);
1821
1818
 
1822
1819
  'use strict';
1823
- var global$4 = global$e;
1820
+ var global$4 = global$f;
1824
1821
  var DOMIterables = domIterables;
1825
1822
  var DOMTokenListPrototype = domTokenListPrototype;
1826
1823
  var ArrayIteratorMethods = es_array_iterator;
@@ -1933,7 +1930,7 @@ var toString$3 = function (argument) {
1933
1930
  var toString$4 = /*@__PURE__*/getDefaultExportFromCjs(toString$3);
1934
1931
 
1935
1932
  'use strict';
1936
- var anObject$2 = anObject$7;
1933
+ var anObject$2 = anObject$8;
1937
1934
 
1938
1935
  // `RegExp.prototype.flags` getter implementation
1939
1936
  // https://tc39.es/ecma262/#sec-get-regexp.prototype.flags
@@ -1955,7 +1952,7 @@ var regexpFlags$2 = /*@__PURE__*/getDefaultExportFromCjs(regexpFlags$1);
1955
1952
 
1956
1953
  'use strict';
1957
1954
  var fails$4 = fails$f;
1958
- var global$3 = global$e;
1955
+ var global$3 = global$f;
1959
1956
 
1960
1957
  // babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
1961
1958
  var $RegExp$2 = global$3.RegExp;
@@ -1989,7 +1986,7 @@ var regexpStickyHelpers$1 = /*@__PURE__*/getDefaultExportFromCjs(regexpStickyHel
1989
1986
 
1990
1987
  'use strict';
1991
1988
  var fails$3 = fails$f;
1992
- var global$2 = global$e;
1989
+ var global$2 = global$f;
1993
1990
 
1994
1991
  // babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
1995
1992
  var $RegExp$1 = global$2.RegExp;
@@ -2003,7 +2000,7 @@ var regexpUnsupportedDotAll$1 = /*@__PURE__*/getDefaultExportFromCjs(regexpUnsup
2003
2000
 
2004
2001
  'use strict';
2005
2002
  var fails$2 = fails$f;
2006
- var global$1 = global$e;
2003
+ var global$1 = global$f;
2007
2004
 
2008
2005
  // babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
2009
2006
  var $RegExp = global$1.RegExp;
@@ -2024,7 +2021,7 @@ var uncurryThis$3 = functionUncurryThis;
2024
2021
  var toString$2 = toString$3;
2025
2022
  var regexpFlags = regexpFlags$1;
2026
2023
  var stickyHelpers = regexpStickyHelpers;
2027
- var shared = shared$4;
2024
+ var shared = sharedExports;
2028
2025
  var create = objectCreate;
2029
2026
  var getInternalState = internalState.get;
2030
2027
  var UNSUPPORTED_DOT_ALL = regexpUnsupportedDotAll;
@@ -2229,7 +2226,7 @@ var fixRegexpWellKnownSymbolLogic$1 = /*@__PURE__*/getDefaultExportFromCjs(fixRe
2229
2226
  var uncurryThis$2 = functionUncurryThis;
2230
2227
  var toIntegerOrInfinity$1 = toIntegerOrInfinity$4;
2231
2228
  var toString$1 = toString$3;
2232
- var requireObjectCoercible$1 = requireObjectCoercible$5;
2229
+ var requireObjectCoercible$1 = requireObjectCoercible$4;
2233
2230
 
2234
2231
  var charAt$2 = uncurryThis$2(''.charAt);
2235
2232
  var charCodeAt = uncurryThis$2(''.charCodeAt);
@@ -2327,7 +2324,7 @@ var getSubstitution$2 = /*@__PURE__*/getDefaultExportFromCjs(getSubstitution$1);
2327
2324
 
2328
2325
  'use strict';
2329
2326
  var call$1 = functionCall;
2330
- var anObject$1 = anObject$7;
2327
+ var anObject$1 = anObject$8;
2331
2328
  var isCallable$1 = isCallable$g;
2332
2329
  var classof = classofRaw$1;
2333
2330
  var regexpExec = regexpExec$2;
@@ -2355,13 +2352,13 @@ var call = functionCall;
2355
2352
  var uncurryThis = functionUncurryThis;
2356
2353
  var fixRegExpWellKnownSymbolLogic = fixRegexpWellKnownSymbolLogic;
2357
2354
  var fails = fails$f;
2358
- var anObject = anObject$7;
2355
+ var anObject = anObject$8;
2359
2356
  var isCallable = isCallable$g;
2360
2357
  var isNullOrUndefined = isNullOrUndefined$3;
2361
2358
  var toIntegerOrInfinity = toIntegerOrInfinity$4;
2362
2359
  var toLength = toLength$2;
2363
2360
  var toString = toString$3;
2364
- var requireObjectCoercible = requireObjectCoercible$5;
2361
+ var requireObjectCoercible = requireObjectCoercible$4;
2365
2362
  var advanceStringIndex = advanceStringIndex$1;
2366
2363
  var getMethod = getMethod$2;
2367
2364
  var getSubstitution = getSubstitution$1;
@@ -4756,6 +4753,11 @@ class DropList {
4756
4753
  }
4757
4754
  }
4758
4755
 
4756
+ if (!hasChecked && !hasUnchecked) {
4757
+ // No items to check or uncheck, keep current state
4758
+ return this;
4759
+ }
4760
+
4759
4761
  let shouldCheckGroup = hasChecked && !hasUnchecked;
4760
4762
  if (!!groupItem._checked !== shouldCheckGroup) {
4761
4763
  // Update state