@opengeoweb/metronome 9.14.0 → 9.16.0

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.
Files changed (2) hide show
  1. package/index.esm.js +74 -71
  2. package/package.json +1 -1
package/index.esm.js CHANGED
@@ -5,7 +5,7 @@ var check = function (it) {
5
5
  };
6
6
 
7
7
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
8
- var global$c =
8
+ var global$b =
9
9
  // eslint-disable-next-line es/no-global-this -- safe
10
10
  check(typeof globalThis == 'object' && globalThis) ||
11
11
  check(typeof window == 'object' && window) ||
@@ -125,17 +125,17 @@ var $TypeError$8 = TypeError;
125
125
 
126
126
  // `RequireObjectCoercible` abstract operation
127
127
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
128
- var requireObjectCoercible$3 = function (it) {
128
+ var requireObjectCoercible$4 = function (it) {
129
129
  if (isNullOrUndefined$1(it)) throw new $TypeError$8("Can't call method on " + it);
130
130
  return it;
131
131
  };
132
132
 
133
133
  // toObject with fallback for non-array-like ES3 strings
134
134
  var IndexedObject = indexedObject;
135
- var requireObjectCoercible$2 = requireObjectCoercible$3;
135
+ var requireObjectCoercible$3 = requireObjectCoercible$4;
136
136
 
137
137
  var toIndexedObject$5 = function (it) {
138
- return IndexedObject(requireObjectCoercible$2(it));
138
+ return IndexedObject(requireObjectCoercible$3(it));
139
139
  };
140
140
 
141
141
  // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
@@ -152,11 +152,11 @@ var isCallable$e = typeof documentAll == 'undefined' && documentAll !== undefine
152
152
 
153
153
  var isCallable$d = isCallable$e;
154
154
 
155
- var isObject$7 = function (it) {
155
+ var isObject$8 = function (it) {
156
156
  return typeof it == 'object' ? it !== null : isCallable$d(it);
157
157
  };
158
158
 
159
- var global$b = global$c;
159
+ var global$a = global$b;
160
160
  var isCallable$c = isCallable$e;
161
161
 
162
162
  var aFunction = function (argument) {
@@ -164,7 +164,7 @@ var aFunction = function (argument) {
164
164
  };
165
165
 
166
166
  var getBuiltIn$3 = function (namespace, method) {
167
- return arguments.length < 2 ? aFunction(global$b[namespace]) : global$b[namespace] && global$b[namespace][method];
167
+ return arguments.length < 2 ? aFunction(global$a[namespace]) : global$a[namespace] && global$a[namespace][method];
168
168
  };
169
169
 
170
170
  var uncurryThis$8 = functionUncurryThis;
@@ -173,11 +173,11 @@ var objectIsPrototypeOf = uncurryThis$8({}.isPrototypeOf);
173
173
 
174
174
  var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
175
175
 
176
- var global$a = global$c;
176
+ var global$9 = global$b;
177
177
  var userAgent = engineUserAgent;
178
178
 
179
- var process = global$a.process;
180
- var Deno = global$a.Deno;
179
+ var process = global$9.process;
180
+ var Deno = global$9.Deno;
181
181
  var versions = process && process.versions || Deno && Deno.version;
182
182
  var v8 = versions && versions.v8;
183
183
  var match, version;
@@ -204,9 +204,9 @@ var engineV8Version = version;
204
204
  /* eslint-disable es/no-symbol -- required for testing */
205
205
  var V8_VERSION = engineV8Version;
206
206
  var fails$8 = fails$c;
207
- var global$9 = global$c;
207
+ var global$8 = global$b;
208
208
 
209
- var $String$5 = global$9.String;
209
+ var $String$5 = global$8.String;
210
210
 
211
211
  // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
212
212
  var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$8(function () {
@@ -274,7 +274,7 @@ var getMethod$1 = function (V, P) {
274
274
 
275
275
  var call$3 = functionCall;
276
276
  var isCallable$9 = isCallable$e;
277
- var isObject$6 = isObject$7;
277
+ var isObject$7 = isObject$8;
278
278
 
279
279
  var $TypeError$6 = TypeError;
280
280
 
@@ -282,55 +282,55 @@ var $TypeError$6 = TypeError;
282
282
  // https://tc39.es/ecma262/#sec-ordinarytoprimitive
283
283
  var ordinaryToPrimitive$1 = function (input, pref) {
284
284
  var fn, val;
285
- if (pref === 'string' && isCallable$9(fn = input.toString) && !isObject$6(val = call$3(fn, input))) return val;
286
- if (isCallable$9(fn = input.valueOf) && !isObject$6(val = call$3(fn, input))) return val;
287
- if (pref !== 'string' && isCallable$9(fn = input.toString) && !isObject$6(val = call$3(fn, input))) return val;
285
+ if (pref === 'string' && isCallable$9(fn = input.toString) && !isObject$7(val = call$3(fn, input))) return val;
286
+ if (isCallable$9(fn = input.valueOf) && !isObject$7(val = call$3(fn, input))) return val;
287
+ if (pref !== 'string' && isCallable$9(fn = input.toString) && !isObject$7(val = call$3(fn, input))) return val;
288
288
  throw new $TypeError$6("Can't convert object to primitive value");
289
289
  };
290
290
 
291
- var shared$3 = {exports: {}};
291
+ var sharedStore = {exports: {}};
292
292
 
293
- var global$8 = global$c;
293
+ var global$7 = global$b;
294
294
 
295
295
  // eslint-disable-next-line es/no-object-defineproperty -- safe
296
296
  var defineProperty$4 = Object.defineProperty;
297
297
 
298
298
  var defineGlobalProperty$3 = function (key, value) {
299
299
  try {
300
- defineProperty$4(global$8, key, { value: value, configurable: true, writable: true });
300
+ defineProperty$4(global$7, key, { value: value, configurable: true, writable: true });
301
301
  } catch (error) {
302
- global$8[key] = value;
302
+ global$7[key] = value;
303
303
  } return value;
304
304
  };
305
305
 
306
- var global$7 = global$c;
306
+ var globalThis$1 = global$b;
307
307
  var defineGlobalProperty$2 = defineGlobalProperty$3;
308
308
 
309
309
  var SHARED = '__core-js_shared__';
310
- var store$3 = global$7[SHARED] || defineGlobalProperty$2(SHARED, {});
310
+ var store$3 = sharedStore.exports = globalThis$1[SHARED] || defineGlobalProperty$2(SHARED, {});
311
311
 
312
- var sharedStore = store$3;
313
-
314
- var store$2 = sharedStore;
315
-
316
- (shared$3.exports = function (key, value) {
317
- return store$2[key] || (store$2[key] = value !== undefined ? value : {});
318
- })('versions', []).push({
319
- version: '3.35.1',
312
+ (store$3.versions || (store$3.versions = [])).push({
313
+ version: '3.36.1',
320
314
  mode: 'global',
321
315
  copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
322
- license: 'https://github.com/zloirock/core-js/blob/v3.35.1/LICENSE',
316
+ license: 'https://github.com/zloirock/core-js/blob/v3.36.1/LICENSE',
323
317
  source: 'https://github.com/zloirock/core-js'
324
318
  });
325
319
 
326
- var requireObjectCoercible$1 = requireObjectCoercible$3;
320
+ var store$2 = sharedStore.exports;
321
+
322
+ var shared$3 = function (key, value) {
323
+ return store$2[key] || (store$2[key] = value || {});
324
+ };
325
+
326
+ var requireObjectCoercible$2 = requireObjectCoercible$4;
327
327
 
328
328
  var $Object$2 = Object;
329
329
 
330
330
  // `ToObject` abstract operation
331
331
  // https://tc39.es/ecma262/#sec-toobject
332
332
  var toObject$4 = function (argument) {
333
- return $Object$2(requireObjectCoercible$1(argument));
333
+ return $Object$2(requireObjectCoercible$2(argument));
334
334
  };
335
335
 
336
336
  var uncurryThis$7 = functionUncurryThis;
@@ -355,8 +355,8 @@ var uid$2 = function (key) {
355
355
  return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$2(++id + postfix, 36);
356
356
  };
357
357
 
358
- var global$6 = global$c;
359
- var shared$2 = shared$3.exports;
358
+ var global$6 = global$b;
359
+ var shared$2 = shared$3;
360
360
  var hasOwn$8 = hasOwnProperty_1;
361
361
  var uid$1 = uid$2;
362
362
  var NATIVE_SYMBOL = symbolConstructorDetection;
@@ -375,7 +375,7 @@ var wellKnownSymbol$8 = function (name) {
375
375
  };
376
376
 
377
377
  var call$2 = functionCall;
378
- var isObject$5 = isObject$7;
378
+ var isObject$6 = isObject$8;
379
379
  var isSymbol$1 = isSymbol$2;
380
380
  var getMethod = getMethod$1;
381
381
  var ordinaryToPrimitive = ordinaryToPrimitive$1;
@@ -387,13 +387,13 @@ var TO_PRIMITIVE = wellKnownSymbol$7('toPrimitive');
387
387
  // `ToPrimitive` abstract operation
388
388
  // https://tc39.es/ecma262/#sec-toprimitive
389
389
  var toPrimitive$1 = function (input, pref) {
390
- if (!isObject$5(input) || isSymbol$1(input)) return input;
390
+ if (!isObject$6(input) || isSymbol$1(input)) return input;
391
391
  var exoticToPrim = getMethod(input, TO_PRIMITIVE);
392
392
  var result;
393
393
  if (exoticToPrim) {
394
394
  if (pref === undefined) pref = 'default';
395
395
  result = call$2(exoticToPrim, input, pref);
396
- if (!isObject$5(result) || isSymbol$1(result)) return result;
396
+ if (!isObject$6(result) || isSymbol$1(result)) return result;
397
397
  throw new $TypeError$5("Can't convert object to primitive value");
398
398
  }
399
399
  if (pref === undefined) pref = 'number';
@@ -410,12 +410,12 @@ var toPropertyKey$2 = function (argument) {
410
410
  return isSymbol(key) ? key : key + '';
411
411
  };
412
412
 
413
- var global$5 = global$c;
414
- var isObject$4 = isObject$7;
413
+ var global$5 = global$b;
414
+ var isObject$5 = isObject$8;
415
415
 
416
416
  var document$1 = global$5.document;
417
417
  // typeof document.createElement is 'object' in old IE
418
- var EXISTS$1 = isObject$4(document$1) && isObject$4(document$1.createElement);
418
+ var EXISTS$1 = isObject$5(document$1) && isObject$5(document$1.createElement);
419
419
 
420
420
  var documentCreateElement$2 = function (it) {
421
421
  return EXISTS$1 ? document$1.createElement(it) : {};
@@ -471,21 +471,21 @@ var v8PrototypeDefineBug = DESCRIPTORS$7 && fails$6(function () {
471
471
  }).prototype !== 42;
472
472
  });
473
473
 
474
- var isObject$3 = isObject$7;
474
+ var isObject$4 = isObject$8;
475
475
 
476
476
  var $String$3 = String;
477
477
  var $TypeError$4 = TypeError;
478
478
 
479
479
  // `Assert: Type(argument) is Object`
480
- var anObject$5 = function (argument) {
481
- if (isObject$3(argument)) return argument;
480
+ var anObject$4 = function (argument) {
481
+ if (isObject$4(argument)) return argument;
482
482
  throw new $TypeError$4($String$3(argument) + ' is not an object');
483
483
  };
484
484
 
485
485
  var DESCRIPTORS$6 = descriptors;
486
486
  var IE8_DOM_DEFINE = ie8DomDefine;
487
487
  var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
488
- var anObject$4 = anObject$5;
488
+ var anObject$3 = anObject$4;
489
489
  var toPropertyKey = toPropertyKey$2;
490
490
 
491
491
  var $TypeError$3 = TypeError;
@@ -500,9 +500,9 @@ var WRITABLE = 'writable';
500
500
  // `Object.defineProperty` method
501
501
  // https://tc39.es/ecma262/#sec-object.defineproperty
502
502
  objectDefineProperty.f = DESCRIPTORS$6 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
503
- anObject$4(O);
503
+ anObject$3(O);
504
504
  P = toPropertyKey(P);
505
- anObject$4(Attributes);
505
+ anObject$3(Attributes);
506
506
  if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
507
507
  var current = $getOwnPropertyDescriptor(O, P);
508
508
  if (current && current[WRITABLE]) {
@@ -515,9 +515,9 @@ objectDefineProperty.f = DESCRIPTORS$6 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function de
515
515
  }
516
516
  } return $defineProperty(O, P, Attributes);
517
517
  } : $defineProperty : function defineProperty(O, P, Attributes) {
518
- anObject$4(O);
518
+ anObject$3(O);
519
519
  P = toPropertyKey(P);
520
- anObject$4(Attributes);
520
+ anObject$3(Attributes);
521
521
  if (IE8_DOM_DEFINE) try {
522
522
  return $defineProperty(O, P, Attributes);
523
523
  } catch (error) { /* empty */ }
@@ -559,7 +559,7 @@ var functionName = {
559
559
 
560
560
  var uncurryThis$5 = functionUncurryThis;
561
561
  var isCallable$8 = isCallable$e;
562
- var store$1 = sharedStore;
562
+ var store$1 = sharedStore.exports;
563
563
 
564
564
  var functionToString = uncurryThis$5(Function.toString);
565
565
 
@@ -572,14 +572,14 @@ if (!isCallable$8(store$1.inspectSource)) {
572
572
 
573
573
  var inspectSource$1 = store$1.inspectSource;
574
574
 
575
- var global$4 = global$c;
575
+ var global$4 = global$b;
576
576
  var isCallable$7 = isCallable$e;
577
577
 
578
578
  var WeakMap$1 = global$4.WeakMap;
579
579
 
580
580
  var weakMapBasicDetection = isCallable$7(WeakMap$1) && /native code/.test(String(WeakMap$1));
581
581
 
582
- var shared$1 = shared$3.exports;
582
+ var shared$1 = shared$3;
583
583
  var uid = uid$2;
584
584
 
585
585
  var keys = shared$1('keys');
@@ -591,11 +591,11 @@ var sharedKey$3 = function (key) {
591
591
  var hiddenKeys$4 = {};
592
592
 
593
593
  var NATIVE_WEAK_MAP = weakMapBasicDetection;
594
- var global$3 = global$c;
595
- var isObject$2 = isObject$7;
594
+ var global$3 = global$b;
595
+ var isObject$3 = isObject$8;
596
596
  var createNonEnumerableProperty$3 = createNonEnumerableProperty$4;
597
597
  var hasOwn$5 = hasOwnProperty_1;
598
- var shared = sharedStore;
598
+ var shared = sharedStore.exports;
599
599
  var sharedKey$2 = sharedKey$3;
600
600
  var hiddenKeys$3 = hiddenKeys$4;
601
601
 
@@ -611,7 +611,7 @@ var enforce = function (it) {
611
611
  var getterFor = function (TYPE) {
612
612
  return function (it) {
613
613
  var state;
614
- if (!isObject$2(it) || (state = get(it)).type !== TYPE) {
614
+ if (!isObject$3(it) || (state = get(it)).type !== TYPE) {
615
615
  throw new TypeError$1('Incompatible receiver, ' + TYPE + ' required');
616
616
  } return state;
617
617
  };
@@ -808,6 +808,7 @@ var createMethod = function (IS_INCLUDES) {
808
808
  return function ($this, el, fromIndex) {
809
809
  var O = toIndexedObject$3($this);
810
810
  var length = lengthOfArrayLike$2(O);
811
+ if (length === 0) return !IS_INCLUDES && -1;
811
812
  var index = toAbsoluteIndex(fromIndex, length);
812
813
  var value;
813
814
  // Array#includes uses SameValueZero equality algorithm
@@ -885,13 +886,13 @@ var getBuiltIn$1 = getBuiltIn$3;
885
886
  var uncurryThis$2 = functionUncurryThis;
886
887
  var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
887
888
  var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
888
- var anObject$3 = anObject$5;
889
+ var anObject$2 = anObject$4;
889
890
 
890
891
  var concat = uncurryThis$2([].concat);
891
892
 
892
893
  // all object keys, includes non-enumerable and symbols
893
894
  var ownKeys$1 = getBuiltIn$1('Reflect', 'ownKeys') || function ownKeys(it) {
894
- var keys = getOwnPropertyNamesModule.f(anObject$3(it));
895
+ var keys = getOwnPropertyNamesModule.f(anObject$2(it));
895
896
  var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
896
897
  return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
897
898
  };
@@ -936,7 +937,7 @@ var POLYFILL = isForced$1.POLYFILL = 'P';
936
937
 
937
938
  var isForced_1 = isForced$1;
938
939
 
939
- var global$2 = global$c;
940
+ var global$2 = global$b;
940
941
  var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
941
942
  var createNonEnumerableProperty$2 = createNonEnumerableProperty$4;
942
943
  var defineBuiltIn$2 = defineBuiltIn$3;
@@ -1006,7 +1007,7 @@ var objectKeys$1 = Object.keys || function keys(O) {
1006
1007
  var DESCRIPTORS$2 = descriptors;
1007
1008
  var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
1008
1009
  var definePropertyModule = objectDefineProperty;
1009
- var anObject$2 = anObject$5;
1010
+ var anObject$1 = anObject$4;
1010
1011
  var toIndexedObject$1 = toIndexedObject$5;
1011
1012
  var objectKeys = objectKeys$1;
1012
1013
 
@@ -1014,7 +1015,7 @@ var objectKeys = objectKeys$1;
1014
1015
  // https://tc39.es/ecma262/#sec-object.defineproperties
1015
1016
  // eslint-disable-next-line es/no-object-defineproperties -- safe
1016
1017
  objectDefineProperties.f = DESCRIPTORS$2 && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
1017
- anObject$2(O);
1018
+ anObject$1(O);
1018
1019
  var props = toIndexedObject$1(Properties);
1019
1020
  var keys = objectKeys(Properties);
1020
1021
  var length = keys.length;
@@ -1029,7 +1030,7 @@ var getBuiltIn = getBuiltIn$3;
1029
1030
  var html$1 = getBuiltIn('document', 'documentElement');
1030
1031
 
1031
1032
  /* global ActiveXObject -- old IE, WSH */
1032
- var anObject$1 = anObject$5;
1033
+ var anObject = anObject$4;
1033
1034
  var definePropertiesModule = objectDefineProperties;
1034
1035
  var enumBugKeys = enumBugKeys$3;
1035
1036
  var hiddenKeys = hiddenKeys$4;
@@ -1103,7 +1104,7 @@ hiddenKeys[IE_PROTO$1] = true;
1103
1104
  var objectCreate = Object.create || function create(O, Properties) {
1104
1105
  var result;
1105
1106
  if (O !== null) {
1106
- EmptyConstructor[PROTOTYPE] = anObject$1(O);
1107
+ EmptyConstructor[PROTOTYPE] = anObject(O);
1107
1108
  result = new EmptyConstructor();
1108
1109
  EmptyConstructor[PROTOTYPE] = null;
1109
1110
  // add "__proto__" for Object.getPrototypeOf polyfill
@@ -1188,7 +1189,7 @@ var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? $Object$1.getPrototypeOf :
1188
1189
 
1189
1190
  var fails$2 = fails$c;
1190
1191
  var isCallable$2 = isCallable$e;
1191
- var isObject$1 = isObject$7;
1192
+ var isObject$2 = isObject$8;
1192
1193
  var getPrototypeOf$1 = objectGetPrototypeOf;
1193
1194
  var defineBuiltIn$1 = defineBuiltIn$3;
1194
1195
  var wellKnownSymbol$5 = wellKnownSymbol$8;
@@ -1211,7 +1212,7 @@ if ([].keys) {
1211
1212
  }
1212
1213
  }
1213
1214
 
1214
- var NEW_ITERATOR_PROTOTYPE = !isObject$1(IteratorPrototype$2) || fails$2(function () {
1215
+ var NEW_ITERATOR_PROTOTYPE = !isObject$2(IteratorPrototype$2) || fails$2(function () {
1215
1216
  var test = {};
1216
1217
  // FF44- legacy iterators case
1217
1218
  return IteratorPrototype$2[ITERATOR$2].call(test) !== test;
@@ -1271,10 +1272,10 @@ var functionUncurryThisAccessor = function (object, key, method) {
1271
1272
  } catch (error) { /* empty */ }
1272
1273
  };
1273
1274
 
1274
- var isObject = isObject$7;
1275
+ var isObject$1 = isObject$8;
1275
1276
 
1276
1277
  var isPossiblePrototype$1 = function (argument) {
1277
- return isObject(argument) || argument === null;
1278
+ return isObject$1(argument) || argument === null;
1278
1279
  };
1279
1280
 
1280
1281
  var isPossiblePrototype = isPossiblePrototype$1;
@@ -1289,7 +1290,8 @@ var aPossiblePrototype$1 = function (argument) {
1289
1290
 
1290
1291
  /* eslint-disable no-proto -- safe */
1291
1292
  var uncurryThisAccessor = functionUncurryThisAccessor;
1292
- var anObject = anObject$5;
1293
+ var isObject = isObject$8;
1294
+ var requireObjectCoercible$1 = requireObjectCoercible$4;
1293
1295
  var aPossiblePrototype = aPossiblePrototype$1;
1294
1296
 
1295
1297
  // `Object.setPrototypeOf` method
@@ -1306,8 +1308,9 @@ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? functio
1306
1308
  CORRECT_SETTER = test instanceof Array;
1307
1309
  } catch (error) { /* empty */ }
1308
1310
  return function setPrototypeOf(O, proto) {
1309
- anObject(O);
1311
+ requireObjectCoercible$1(O);
1310
1312
  aPossiblePrototype(proto);
1313
+ if (!isObject(O)) return O;
1311
1314
  if (CORRECT_SETTER) setter(O, proto);
1312
1315
  else O.__proto__ = proto;
1313
1316
  return O;
@@ -1617,7 +1620,7 @@ var toString$1 = function (argument) {
1617
1620
 
1618
1621
  var $ = _export;
1619
1622
  var uncurryThis = functionUncurryThis;
1620
- var requireObjectCoercible = requireObjectCoercible$3;
1623
+ var requireObjectCoercible = requireObjectCoercible$4;
1621
1624
  var toIntegerOrInfinity = toIntegerOrInfinity$4;
1622
1625
  var toString = toString$1;
1623
1626
  var fails = fails$c;
@@ -1685,7 +1688,7 @@ var DOMTokenListPrototype$1 = classList && classList.constructor && classList.co
1685
1688
 
1686
1689
  var domTokenListPrototype = DOMTokenListPrototype$1 === Object.prototype ? undefined : DOMTokenListPrototype$1;
1687
1690
 
1688
- var global$1 = global$c;
1691
+ var global$1 = global$b;
1689
1692
  var DOMIterables = domIterables;
1690
1693
  var DOMTokenListPrototype = domTokenListPrototype;
1691
1694
  var ArrayIteratorMethods = es_array_iterator;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opengeoweb/metronome",
3
- "version": "9.14.0",
3
+ "version": "9.16.0",
4
4
  "description": "GeoWeb metronome library for the opengeoweb project",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {