@equinor/fusion-framework-vite-plugin-spa 1.0.0-next.8 → 1.0.0-next.9

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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @equinor/fusion-framework-vite-plugin-spa
2
2
 
3
+ ## 1.0.0-next.9
4
+
5
+ ### Patch Changes
6
+
7
+ - [#3137](https://github.com/equinor/fusion-framework/pull/3137) [`7c58c78`](https://github.com/equinor/fusion-framework/commit/7c58c7868c66b1fc0f720b4ed13d39e0fe505461) Thanks [@odinr](https://github.com/odinr)! - updates from main
8
+
9
+ - [#3075](https://github.com/equinor/fusion-framework/pull/3075) [`db34d90`](https://github.com/equinor/fusion-framework/commit/db34d9003d64e4c7cb46cf0c95f0c7a0e7587128) Thanks [@odinr](https://github.com/odinr)! - merge with main
10
+
3
11
  ## 1.0.0-next.8
4
12
 
5
13
  ### Patch Changes
@@ -1,3 +1,3 @@
1
1
  // Generated by genversion.
2
- export const version = '1.0.0-next.8';
2
+ export const version = '1.0.0-next.9';
3
3
  //# sourceMappingURL=version.js.map
@@ -6114,18 +6114,6 @@ var errorUtil;
6114
6114
  errorUtil.toString = (message) => typeof message === "string" ? message : message?.message;
6115
6115
  })(errorUtil || (errorUtil = {}));
6116
6116
 
6117
- var __classPrivateFieldGet = (undefined && undefined.__classPrivateFieldGet) || function (receiver, state, kind, f) {
6118
- if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
6119
- if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
6120
- return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
6121
- };
6122
- var __classPrivateFieldSet = (undefined && undefined.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
6123
- if (kind === "m") throw new TypeError("Private method is not writable");
6124
- if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
6125
- if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
6126
- return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
6127
- };
6128
- var _ZodEnum_cache, _ZodNativeEnum_cache;
6129
6117
  class ParseInputLazyPath {
6130
6118
  constructor(parent, value, path, key) {
6131
6119
  this._cachedPath = [];
@@ -9148,10 +9136,6 @@ function createZodEnum(values, params) {
9148
9136
  });
9149
9137
  }
9150
9138
  class ZodEnum extends ZodType {
9151
- constructor() {
9152
- super(...arguments);
9153
- _ZodEnum_cache.set(this, void 0);
9154
- }
9155
9139
  _parse(input) {
9156
9140
  if (typeof input.data !== "string") {
9157
9141
  const ctx = this._getOrReturnCtx(input);
@@ -9163,10 +9147,10 @@ class ZodEnum extends ZodType {
9163
9147
  });
9164
9148
  return INVALID;
9165
9149
  }
9166
- if (!__classPrivateFieldGet(this, _ZodEnum_cache, "f")) {
9167
- __classPrivateFieldSet(this, _ZodEnum_cache, new Set(this._def.values), "f");
9150
+ if (!this._cache) {
9151
+ this._cache = new Set(this._def.values);
9168
9152
  }
9169
- if (!__classPrivateFieldGet(this, _ZodEnum_cache, "f").has(input.data)) {
9153
+ if (!this._cache.has(input.data)) {
9170
9154
  const ctx = this._getOrReturnCtx(input);
9171
9155
  const expectedValues = this._def.values;
9172
9156
  addIssueToContext(ctx, {
@@ -9215,13 +9199,8 @@ class ZodEnum extends ZodType {
9215
9199
  });
9216
9200
  }
9217
9201
  }
9218
- _ZodEnum_cache = new WeakMap();
9219
9202
  ZodEnum.create = createZodEnum;
9220
9203
  class ZodNativeEnum extends ZodType {
9221
- constructor() {
9222
- super(...arguments);
9223
- _ZodNativeEnum_cache.set(this, void 0);
9224
- }
9225
9204
  _parse(input) {
9226
9205
  const nativeEnumValues = util.getValidEnumValues(this._def.values);
9227
9206
  const ctx = this._getOrReturnCtx(input);
@@ -9234,10 +9213,10 @@ class ZodNativeEnum extends ZodType {
9234
9213
  });
9235
9214
  return INVALID;
9236
9215
  }
9237
- if (!__classPrivateFieldGet(this, _ZodNativeEnum_cache, "f")) {
9238
- __classPrivateFieldSet(this, _ZodNativeEnum_cache, new Set(util.getValidEnumValues(this._def.values)), "f");
9216
+ if (!this._cache) {
9217
+ this._cache = new Set(util.getValidEnumValues(this._def.values));
9239
9218
  }
9240
- if (!__classPrivateFieldGet(this, _ZodNativeEnum_cache, "f").has(input.data)) {
9219
+ if (!this._cache.has(input.data)) {
9241
9220
  const expectedValues = util.objectValues(nativeEnumValues);
9242
9221
  addIssueToContext(ctx, {
9243
9222
  received: ctx.data,
@@ -9252,7 +9231,6 @@ class ZodNativeEnum extends ZodType {
9252
9231
  return this._def.values;
9253
9232
  }
9254
9233
  }
9255
- _ZodNativeEnum_cache = new WeakMap();
9256
9234
  ZodNativeEnum.create = (values, params) => {
9257
9235
  return new ZodNativeEnum({
9258
9236
  values: values,
@@ -9399,7 +9377,7 @@ class ZodEffects extends ZodType {
9399
9377
  parent: ctx,
9400
9378
  });
9401
9379
  if (!isValid(base))
9402
- return base;
9380
+ return INVALID;
9403
9381
  const result = effect.transform(base.value, checkCtx);
9404
9382
  if (result instanceof Promise) {
9405
9383
  throw new Error(`Asynchronous transform encountered during synchronous parse operation. Use .parseAsync instead.`);
@@ -9409,7 +9387,7 @@ class ZodEffects extends ZodType {
9409
9387
  else {
9410
9388
  return this._def.schema._parseAsync({ data: ctx.data, path: ctx.path, parent: ctx }).then((base) => {
9411
9389
  if (!isValid(base))
9412
- return base;
9390
+ return INVALID;
9413
9391
  return Promise.resolve(effect.transform(base.value, checkCtx)).then((result) => ({
9414
9392
  status: status.value,
9415
9393
  value: result,
@@ -10975,7 +10953,7 @@ const configureHttpClient = (name, args) => ({
10975
10953
  var MsalModuleVersion;
10976
10954
  (function (MsalModuleVersion) {
10977
10955
  MsalModuleVersion["V2"] = "v2";
10978
- MsalModuleVersion["Latest"] = "4.0.7-next.1";
10956
+ MsalModuleVersion["Latest"] = "4.0.8-next.0";
10979
10957
  })(MsalModuleVersion || (MsalModuleVersion = {}));
10980
10958
 
10981
10959
  const VersionSchema = z$1.string().transform((x) => String(semver.coerce(x)));
@@ -30795,7 +30773,7 @@ const resolveDefaultLogLevel = () => {
30795
30773
  const defaultLogLevel = resolveDefaultLogLevel();
30796
30774
 
30797
30775
  // Generated by genversion.
30798
- const version = '1.1.4';
30776
+ const version = '1.1.5-next.0';
30799
30777
 
30800
30778
  /**
30801
30779
  * Defines an abstract base class for a logger implementation that provides common logging functionality.