ol-base-components 3.4.10 → 3.4.11

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/index.mjs CHANGED
@@ -1786,17 +1786,17 @@ function requireFunctionUncurryThis() {
1786
1786
  };
1787
1787
  return functionUncurryThis;
1788
1788
  }
1789
- var uncurryThis$7 = requireFunctionUncurryThis();
1790
- var toString$2 = uncurryThis$7({}.toString);
1791
- var stringSlice$1 = uncurryThis$7("".slice);
1789
+ var uncurryThis$6 = requireFunctionUncurryThis();
1790
+ var toString$2 = uncurryThis$6({}.toString);
1791
+ var stringSlice$1 = uncurryThis$6("".slice);
1792
1792
  var classofRaw = function(it2) {
1793
1793
  return stringSlice$1(toString$2(it2), 8, -1);
1794
1794
  };
1795
- var uncurryThis$6 = requireFunctionUncurryThis();
1795
+ var uncurryThis$5 = requireFunctionUncurryThis();
1796
1796
  var fails$6 = fails$9;
1797
1797
  var classof$1 = classofRaw;
1798
1798
  var $Object$1 = Object;
1799
- var split = uncurryThis$6("".split);
1799
+ var split = uncurryThis$5("".split);
1800
1800
  var indexedObject = fails$6(function() {
1801
1801
  return !$Object$1("z").propertyIsEnumerable(0);
1802
1802
  }) ? function(it2) {
@@ -1835,8 +1835,16 @@ var aFunction = function(argument) {
1835
1835
  var getBuiltIn$3 = function(namespace, method) {
1836
1836
  return arguments.length < 2 ? aFunction(globalThis$7[namespace]) : globalThis$7[namespace] && globalThis$7[namespace][method];
1837
1837
  };
1838
- var uncurryThis$5 = requireFunctionUncurryThis();
1839
- var objectIsPrototypeOf = uncurryThis$5({}.isPrototypeOf);
1838
+ var objectIsPrototypeOf;
1839
+ var hasRequiredObjectIsPrototypeOf;
1840
+ function requireObjectIsPrototypeOf() {
1841
+ if (hasRequiredObjectIsPrototypeOf)
1842
+ return objectIsPrototypeOf;
1843
+ hasRequiredObjectIsPrototypeOf = 1;
1844
+ var uncurryThis2 = requireFunctionUncurryThis();
1845
+ objectIsPrototypeOf = uncurryThis2({}.isPrototypeOf);
1846
+ return objectIsPrototypeOf;
1847
+ }
1840
1848
  var environmentUserAgent;
1841
1849
  var hasRequiredEnvironmentUserAgent;
1842
1850
  function requireEnvironmentUserAgent() {
@@ -1890,7 +1898,7 @@ var NATIVE_SYMBOL$1 = symbolConstructorDetection;
1890
1898
  var useSymbolAsUid = NATIVE_SYMBOL$1 && !Symbol.sham && typeof Symbol.iterator == "symbol";
1891
1899
  var getBuiltIn$2 = getBuiltIn$3;
1892
1900
  var isCallable$5 = isCallable$8;
1893
- var isPrototypeOf = objectIsPrototypeOf;
1901
+ var isPrototypeOf = requireObjectIsPrototypeOf();
1894
1902
  var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
1895
1903
  var $Object = Object;
1896
1904
  var isSymbol$2 = USE_SYMBOL_AS_UID$1 ? function(it2) {
@@ -83518,7 +83526,7 @@ function requireAnInstance() {
83518
83526
  if (hasRequiredAnInstance)
83519
83527
  return anInstance;
83520
83528
  hasRequiredAnInstance = 1;
83521
- var isPrototypeOf2 = objectIsPrototypeOf;
83529
+ var isPrototypeOf2 = requireObjectIsPrototypeOf();
83522
83530
  var $TypeError2 = TypeError;
83523
83531
  anInstance = function(it2, Prototype) {
83524
83532
  if (isPrototypeOf2(Prototype, it2))
@@ -84438,7 +84446,7 @@ function requireIterate() {
84438
84446
  var tryToString2 = requireTryToString();
84439
84447
  var isArrayIteratorMethod2 = requireIsArrayIteratorMethod();
84440
84448
  var lengthOfArrayLike2 = lengthOfArrayLike$1;
84441
- var isPrototypeOf2 = objectIsPrototypeOf;
84449
+ var isPrototypeOf2 = requireObjectIsPrototypeOf();
84442
84450
  var getIterator2 = requireGetIterator();
84443
84451
  var getIteratorMethod2 = requireGetIteratorMethod();
84444
84452
  var iteratorClose2 = requireIteratorClose();
@@ -85858,7 +85866,7 @@ function requireRegexpGetFlags() {
85858
85866
  hasRequiredRegexpGetFlags = 1;
85859
85867
  var call2 = functionCall;
85860
85868
  var hasOwn3 = hasOwnProperty_1;
85861
- var isPrototypeOf2 = objectIsPrototypeOf;
85869
+ var isPrototypeOf2 = requireObjectIsPrototypeOf();
85862
85870
  var regExpFlagsDetection = requireRegexpFlagsDetection();
85863
85871
  var regExpFlagsGetterImplementation = requireRegexpFlags();
85864
85872
  var RegExpPrototype = RegExp.prototype;
@@ -87997,7 +88005,7 @@ function requireEs_number_constructor() {
87997
88005
  var isForced2 = isForced_1;
87998
88006
  var hasOwn3 = hasOwnProperty_1;
87999
88007
  var inheritIfRequired2 = requireInheritIfRequired();
88000
- var isPrototypeOf2 = objectIsPrototypeOf;
88008
+ var isPrototypeOf2 = requireObjectIsPrototypeOf();
88001
88009
  var isSymbol2 = isSymbol$2;
88002
88010
  var toPrimitive2 = toPrimitive$2;
88003
88011
  var fails2 = fails$9;