@opengeoweb/authentication 12.1.1 → 12.2.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 +16 -16
  2. package/package.json +4 -4
package/index.esm.js CHANGED
@@ -95,7 +95,7 @@ function _objectWithoutPropertiesLoose(r, e) {
95
95
  if (null == r) return {};
96
96
  var t = {};
97
97
  for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
98
- if (e.indexOf(n) >= 0) continue;
98
+ if (-1 !== e.indexOf(n)) continue;
99
99
  t[n] = r[n];
100
100
  }
101
101
  return t;
@@ -118,9 +118,9 @@ function _regeneratorRuntime() {
118
118
  function define(t, e, r) {
119
119
  return Object.defineProperty(t, e, {
120
120
  value: r,
121
- enumerable: !0,
122
- configurable: !0,
123
- writable: !0
121
+ enumerable: true,
122
+ configurable: true,
123
+ writable: true
124
124
  }), t[e];
125
125
  }
126
126
  try {
@@ -213,7 +213,7 @@ function _regeneratorRuntime() {
213
213
  if ("throw" === i) throw a;
214
214
  return {
215
215
  value: t,
216
- done: !0
216
+ done: true
217
217
  };
218
218
  }
219
219
  for (n.method = i, n.arg = a;;) {
@@ -264,7 +264,7 @@ function _regeneratorRuntime() {
264
264
  function Context(t) {
265
265
  this.tryEntries = [{
266
266
  tryLoc: "root"
267
- }], t.forEach(pushTryEntry, this), this.reset(!0);
267
+ }], t.forEach(pushTryEntry, this), this.reset(true);
268
268
  }
269
269
  function values(e) {
270
270
  if (e || "" === e) {
@@ -274,8 +274,8 @@ function _regeneratorRuntime() {
274
274
  if (!isNaN(e.length)) {
275
275
  var o = -1,
276
276
  i = function next() {
277
- for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next;
278
- return next.value = t, next.done = !0, next;
277
+ for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = false, next;
278
+ return next.value = t, next.done = true, next;
279
279
  };
280
280
  return i.next = i;
281
281
  }
@@ -284,10 +284,10 @@ function _regeneratorRuntime() {
284
284
  }
285
285
  return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", {
286
286
  value: GeneratorFunctionPrototype,
287
- configurable: !0
287
+ configurable: true
288
288
  }), o(GeneratorFunctionPrototype, "constructor", {
289
289
  value: GeneratorFunction,
290
- configurable: !0
290
+ configurable: true
291
291
  }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) {
292
292
  var e = "function" == typeof t && t.constructor;
293
293
  return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name));
@@ -316,17 +316,17 @@ function _regeneratorRuntime() {
316
316
  return r.reverse(), function next() {
317
317
  for (; r.length;) {
318
318
  var t = r.pop();
319
- if (t in e) return next.value = t, next.done = !1, next;
319
+ if (t in e) return next.value = t, next.done = false, next;
320
320
  }
321
- return next.done = !0, next;
321
+ return next.done = true, next;
322
322
  };
323
323
  }, e.values = values, Context.prototype = {
324
324
  constructor: Context,
325
325
  reset: function (e) {
326
- if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t);
326
+ if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = false, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t);
327
327
  },
328
328
  stop: function () {
329
- this.done = !0;
329
+ this.done = true;
330
330
  var t = this.tryEntries[0].completion;
331
331
  if ("throw" === t.type) throw t.arg;
332
332
  return this.rval;
@@ -345,10 +345,10 @@ function _regeneratorRuntime() {
345
345
  var c = n.call(i, "catchLoc"),
346
346
  u = n.call(i, "finallyLoc");
347
347
  if (c && u) {
348
- if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
348
+ if (this.prev < i.catchLoc) return handle(i.catchLoc, true);
349
349
  if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
350
350
  } else if (c) {
351
- if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
351
+ if (this.prev < i.catchLoc) return handle(i.catchLoc, true);
352
352
  } else {
353
353
  if (!u) throw Error("try statement without catch or finally");
354
354
  if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opengeoweb/authentication",
3
- "version": "12.1.1",
3
+ "version": "12.2.0",
4
4
  "description": "GeoWeb authentication library for the opengeoweb project",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -10,11 +10,11 @@
10
10
  "dependencies": {
11
11
  "axios": "^1.7.7",
12
12
  "react-router-dom": "^6.23.1",
13
- "@opengeoweb/shared": "12.1.1",
14
- "@opengeoweb/theme": "12.1.1",
13
+ "@opengeoweb/shared": "12.2.0",
14
+ "@opengeoweb/theme": "12.2.0",
15
15
  "i18next": "^23.11.5",
16
16
  "react-i18next": "^15.1.1",
17
- "@opengeoweb/snackbar": "12.1.1",
17
+ "@opengeoweb/snackbar": "12.2.0",
18
18
  "react-redux": "^8.1.3",
19
19
  "@reduxjs/toolkit": "^1.9.7",
20
20
  "@mui/material": "^6.1.1"