@vue/reactivity 3.3.12 → 3.3.13

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.
@@ -634,7 +634,7 @@ export type ShallowUnwrapRef<T> = {
634
634
  export type UnwrapRef<T> = T extends ShallowRef<infer V> ? V : T extends Ref<infer V> ? UnwrapRefSimple<V> : UnwrapRefSimple<T>;
635
635
  type UnwrapRefSimple<T> = T extends Function | BaseTypes | Ref | RefUnwrapBailTypes[keyof RefUnwrapBailTypes] | {
636
636
  [RawSymbol]?: true;
637
- } ? T : T extends Map<infer K, infer V> ? Map<K, UnwrapRefSimple<V>> : T extends WeakMap<infer K, infer V> ? WeakMap<K, UnwrapRefSimple<V>> : T extends Set<infer V> ? Set<UnwrapRefSimple<V>> : T extends WeakSet<infer V> ? WeakSet<UnwrapRefSimple<V>> : T extends ReadonlyArray<any> ? {
637
+ } ? T : T extends Map<infer K, infer V> ? Map<K, UnwrapRefSimple<V>> & UnwrapRef<Omit<T, keyof Map<any, any>>> : T extends WeakMap<infer K, infer V> ? WeakMap<K, UnwrapRefSimple<V>> & UnwrapRef<Omit<T, keyof WeakMap<any, any>>> : T extends Set<infer V> ? Set<UnwrapRefSimple<V>> & UnwrapRef<Omit<T, keyof Set<any>>> : T extends WeakSet<infer V> ? WeakSet<UnwrapRefSimple<V>> & UnwrapRef<Omit<T, keyof WeakSet<any>>> : T extends ReadonlyArray<any> ? {
638
638
  [K in keyof T]: UnwrapRefSimple<T[K]>;
639
639
  } : T extends object & {
640
640
  [ShallowReactiveMarker]?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue/reactivity",
3
- "version": "3.3.12",
3
+ "version": "3.3.13",
4
4
  "description": "@vue/reactivity",
5
5
  "main": "index.js",
6
6
  "module": "dist/reactivity.esm-bundler.js",
@@ -36,6 +36,6 @@
36
36
  },
37
37
  "homepage": "https://github.com/vuejs/core/tree/main/packages/reactivity#readme",
38
38
  "dependencies": {
39
- "@vue/shared": "3.3.12"
39
+ "@vue/shared": "3.3.13"
40
40
  }
41
41
  }