@equinor/fusion-framework-vite-plugin-spa 4.0.15 → 4.0.16

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
+ ## 4.0.16
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b92698d]
8
+ - @equinor/fusion-framework-module@6.1.2
9
+ - @equinor/fusion-framework-module-telemetry@7.0.2
10
+
3
11
  ## 4.0.15
4
12
 
5
13
  ### Patch Changes
@@ -1,3 +1,3 @@
1
1
  // Generated by genversion.
2
- export const version = '4.0.15';
2
+ export const version = '4.0.16';
3
3
  //# sourceMappingURL=version.js.map
@@ -6314,7 +6314,7 @@ async function runDisposePhase(ctx, instance, ref) {
6314
6314
  }
6315
6315
 
6316
6316
  // Generated by genversion.
6317
- const version$8 = '6.1.1';
6317
+ const version$8 = '6.1.2';
6318
6318
 
6319
6319
  // biome-ignore-all lint/suspicious/noExplicitAny: internal type-erased dispatch arrays — callbacks are registered with concrete module types but stored erased; the orchestrator never inspects these shapes itself
6320
6320
  /* eslint-disable @typescript-eslint/no-explicit-any */
@@ -23761,7 +23761,7 @@ var objectTraps = {
23761
23761
  ) && isArrayIndex(prop)) {
23762
23762
  return value;
23763
23763
  }
23764
- if (value === peek(state.base_, prop) || isRelocatedBaseRef(state, prop, value)) {
23764
+ if (value === peek(state.base_, prop)) {
23765
23765
  prepareCopy(state);
23766
23766
  const childKey = state.type_ === 1 /* Array */ ? +prop : prop;
23767
23767
  const childDraft = createProxy(state.scope_, value, state, childKey);
@@ -23795,7 +23795,7 @@ var objectTraps = {
23795
23795
  markChanged(state);
23796
23796
  }
23797
23797
  if (state.copy_[prop] === value && // special case: handle new props with value 'undefined'
23798
- (value !== void 0 || has(state.copy_, prop, state.type_)) || // special case: NaN
23798
+ (value !== void 0 || prop in state.copy_) || // special case: NaN
23799
23799
  Number.isNaN(value) && Number.isNaN(state.copy_[prop]))
23800
23800
  return true;
23801
23801
  state.copy_[prop] = value;
@@ -23864,12 +23864,6 @@ function peek(draft, prop) {
23864
23864
  const source = state ? latest(state) : draft;
23865
23865
  return source[prop];
23866
23866
  }
23867
- function isRelocatedBaseRef(state, prop, value) {
23868
- if (state.type_ !== 1 /* Array */ || !state.allIndicesReassigned_ || state.assigned_?.get(prop) || !isDraftable(value) || value[DRAFT_STATE]) {
23869
- return false;
23870
- }
23871
- return state.baseRefs_.has(value);
23872
- }
23873
23867
  function readPropFromProto(state, source, prop) {
23874
23868
  const desc = getDescriptorFromProto(source, prop);
23875
23869
  return desc ? VALUE in desc ? desc[VALUE] : (
@@ -25014,7 +25008,7 @@ class TelemetryConfigurator extends BaseConfigBuilder {
25014
25008
  }
25015
25009
 
25016
25010
  // Generated by genversion.
25017
- const version$5 = '7.0.1';
25011
+ const version$5 = '7.0.2';
25018
25012
 
25019
25013
  /**
25020
25014
  * Enum representing the severity levels of telemetry items.
@@ -48848,7 +48842,7 @@ async function registerServiceWorker(framework) {
48848
48842
  }
48849
48843
 
48850
48844
  // Generated by genversion.
48851
- const version = '4.0.15';
48845
+ const version = '4.0.16';
48852
48846
 
48853
48847
  // Allow dynamic import without vite
48854
48848
  const importWithoutVite = (path) => import(/* @vite-ignore */ path);