Socket
Socket
Sign inDemoInstall

@vue/reactivity

Package Overview
Dependencies
Maintainers
2
Versions
228
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vue/reactivity - npm Package Compare versions

Comparing version 3.5.0-alpha.2 to 3.5.0-alpha.3

110

dist/reactivity.cjs.js
/**
* @vue/reactivity v3.5.0-alpha.2
* @vue/reactivity v3.5.0-alpha.3
* (c) 2018-present Yuxi (Evan) You and Vue contributors

@@ -249,4 +249,3 @@ * @license MIT

} catch (err) {
if (!error)
error = err;
if (!error) error = err;
}

@@ -258,4 +257,3 @@ }

batchDepth--;
if (error)
throw error;
if (error) throw error;
}

@@ -274,4 +272,3 @@ function prepareDeps(sub) {

if (link.version === -1) {
if (link === tail)
tail = link.prevDep;
if (link === tail) tail = link.prevDep;
removeSub(link);

@@ -540,4 +537,3 @@ removeDep(link);

link.prevSub = currentTail;
if (currentTail)
currentTail.nextSub = link;
if (currentTail) currentTail.nextSub = link;
}

@@ -648,4 +644,3 @@ if (link.dep.subsHead === void 0) {

const raw = toRaw(array);
if (raw === array)
return raw;
if (raw === array) return raw;
track(raw, "iterate", ARRAY_ITERATE_KEY);

@@ -824,4 +819,3 @@ return isShallow(array) ? raw : raw.map(toReactive);

function hasOwnProperty(key) {
if (!shared.isSymbol(key))
key = String(key);
if (!shared.isSymbol(key)) key = String(key);
const obj = toRaw(this);

@@ -977,7 +971,7 @@ track(obj, "has", key);

const getProto = (v) => Reflect.getPrototypeOf(v);
function get(target, key, isReadonly = false, isShallow = false) {
function get(target, key, isReadonly2 = false, isShallow2 = false) {
target = target["__v_raw"];
const rawTarget = toRaw(target);
const rawKey = toRaw(key);
if (!isReadonly) {
if (!isReadonly2) {
if (shared.hasChanged(key, rawKey)) {

@@ -989,3 +983,3 @@ track(rawTarget, "get", key);

const { has: has2 } = getProto(rawTarget);
const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;
const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive;
if (has2.call(rawTarget, key)) {

@@ -999,7 +993,7 @@ return wrap(target.get(key));

}
function has(key, isReadonly = false) {
function has(key, isReadonly2 = false) {
const target = this["__v_raw"];
const rawTarget = toRaw(target);
const rawKey = toRaw(key);
if (!isReadonly) {
if (!isReadonly2) {
if (shared.hasChanged(key, rawKey)) {

@@ -1012,9 +1006,11 @@ track(rawTarget, "has", key);

}
function size(target, isReadonly = false) {
function size(target, isReadonly2 = false) {
target = target["__v_raw"];
!isReadonly && track(toRaw(target), "iterate", ITERATE_KEY);
!isReadonly2 && track(toRaw(target), "iterate", ITERATE_KEY);
return Reflect.get(target, "size", target);
}
function add(value) {
value = toRaw(value);
function add(value, _isShallow = false) {
if (!_isShallow && !isShallow(value) && !isReadonly(value)) {
value = toRaw(value);
}
const target = toRaw(this);

@@ -1029,4 +1025,6 @@ const proto = getProto(target);

}
function set(key, value) {
value = toRaw(value);
function set(key, value, _isShallow = false) {
if (!_isShallow && !isShallow(value) && !isReadonly(value)) {
value = toRaw(value);
}
const target = toRaw(this);

@@ -1077,3 +1075,3 @@ const { has: has2, get: get2 } = getProto(target);

}
function createForEach(isReadonly, isShallow) {
function createForEach(isReadonly2, isShallow2) {
return function forEach(callback, thisArg) {

@@ -1083,4 +1081,4 @@ const observed = this;

const rawTarget = toRaw(target);
const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;
!isReadonly && track(rawTarget, "iterate", ITERATE_KEY);
const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive;
!isReadonly2 && track(rawTarget, "iterate", ITERATE_KEY);
return target.forEach((value, key) => {

@@ -1091,3 +1089,3 @@ return callback.call(thisArg, wrap(value), wrap(key), observed);

}
function createIterableMethod(method, isReadonly, isShallow) {
function createIterableMethod(method, isReadonly2, isShallow2) {
return function(...args) {

@@ -1100,4 +1098,4 @@ const target = this["__v_raw"];

const innerIterator = target[method](...args);
const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;
!isReadonly && track(
const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive;
!isReadonly2 && track(
rawTarget,

@@ -1158,4 +1156,8 @@ "iterate",

has,
add,
set,
add(value) {
return add.call(this, value, true);
},
set(key, value) {
return set.call(this, key, value, true);
},
delete: deleteEntry,

@@ -1226,9 +1228,9 @@ clear,

] = /* @__PURE__ */ createInstrumentations();
function createInstrumentationGetter(isReadonly, shallow) {
const instrumentations = shallow ? isReadonly ? shallowReadonlyInstrumentations : shallowInstrumentations : isReadonly ? readonlyInstrumentations : mutableInstrumentations;
function createInstrumentationGetter(isReadonly2, shallow) {
const instrumentations = shallow ? isReadonly2 ? shallowReadonlyInstrumentations : shallowInstrumentations : isReadonly2 ? readonlyInstrumentations : mutableInstrumentations;
return (target, key, receiver) => {
if (key === "__v_isReactive") {
return !isReadonly;
return !isReadonly2;
} else if (key === "__v_isReadonly") {
return isReadonly;
return isReadonly2;
} else if (key === "__v_raw") {

@@ -1329,3 +1331,7 @@ return target;

{
warn(`value cannot be made reactive: ${String(target)}`);
warn(
`value cannot be made ${isReadonly2 ? "readonly" : "reactive"}: ${String(
target
)}`
);
}

@@ -1381,3 +1387,3 @@ return target;

function isRef(r) {
return r ? r.__v_isRef === true : false;
return r ? r["__v_isRef"] === true : false;
}

@@ -1397,8 +1403,9 @@ function ref(value) {

class RefImpl {
constructor(value, __v_isShallow) {
this.__v_isShallow = __v_isShallow;
constructor(value, isShallow2) {
this.dep = new Dep();
this.__v_isRef = true;
this._rawValue = __v_isShallow ? value : toRaw(value);
this._value = __v_isShallow ? value : toReactive(value);
this["__v_isRef"] = true;
this["__v_isShallow"] = false;
this._rawValue = isShallow2 ? value : toRaw(value);
this._value = isShallow2 ? value : toReactive(value);
this["__v_isShallow"] = isShallow2;
}

@@ -1417,3 +1424,3 @@ get value() {

const oldValue = this._rawValue;
const useDirectValue = this.__v_isShallow || isShallow(newValue) || isReadonly(newValue);
const useDirectValue = this["__v_isShallow"] || isShallow(newValue) || isReadonly(newValue);
newValue = useDirectValue ? newValue : toRaw(newValue);

@@ -1468,3 +1475,3 @@ if (shared.hasChanged(newValue, oldValue)) {

constructor(factory) {
this.__v_isRef = true;
this["__v_isRef"] = true;
const dep = this.dep = new Dep();

@@ -1500,3 +1507,3 @@ const { get, set } = factory(dep.track.bind(dep), dep.trigger.bind(dep));

this._defaultValue = _defaultValue;
this.__v_isRef = true;
this["__v_isRef"] = true;
}

@@ -1517,4 +1524,4 @@ get value() {

this._getter = _getter;
this.__v_isRef = true;
this.__v_isReadonly = true;
this["__v_isRef"] = true;
this["__v_isReadonly"] = true;
}

@@ -1556,3 +1563,3 @@ get value() {

*/
this.__v_isRef = true;
this["__v_isRef"] = true;
// A computed is also a subscriber that tracks other deps

@@ -1577,3 +1584,3 @@ /**

this.effect = this;
this.__v_isReadonly = !setter;
this["__v_isReadonly"] = !setter;
this.isSSR = isSSR;

@@ -1643,3 +1650,4 @@ }

"IS_SHALLOW": "__v_isShallow",
"RAW": "__v_raw"
"RAW": "__v_raw",
"IS_REF": "__v_isRef"
};

@@ -1646,0 +1654,0 @@

/**
* @vue/reactivity v3.5.0-alpha.2
* @vue/reactivity v3.5.0-alpha.3
* (c) 2018-present Yuxi (Evan) You and Vue contributors

@@ -234,4 +234,3 @@ * @license MIT

} catch (err) {
if (!error)
error = err;
if (!error) error = err;
}

@@ -243,4 +242,3 @@ }

batchDepth--;
if (error)
throw error;
if (error) throw error;
}

@@ -259,4 +257,3 @@ function prepareDeps(sub) {

if (link.version === -1) {
if (link === tail)
tail = link.prevDep;
if (link === tail) tail = link.prevDep;
removeSub(link);

@@ -495,4 +492,3 @@ removeDep(link);

link.prevSub = currentTail;
if (currentTail)
currentTail.nextSub = link;
if (currentTail) currentTail.nextSub = link;
}

@@ -589,4 +585,3 @@ link.dep.subs = link;

const raw = toRaw(array);
if (raw === array)
return raw;
if (raw === array) return raw;
track(raw, "iterate", ARRAY_ITERATE_KEY);

@@ -765,4 +760,3 @@ return isShallow(array) ? raw : raw.map(toReactive);

function hasOwnProperty(key) {
if (!shared.isSymbol(key))
key = String(key);
if (!shared.isSymbol(key)) key = String(key);
const obj = toRaw(this);

@@ -906,7 +900,7 @@ track(obj, "has", key);

const getProto = (v) => Reflect.getPrototypeOf(v);
function get(target, key, isReadonly = false, isShallow = false) {
function get(target, key, isReadonly2 = false, isShallow2 = false) {
target = target["__v_raw"];
const rawTarget = toRaw(target);
const rawKey = toRaw(key);
if (!isReadonly) {
if (!isReadonly2) {
if (shared.hasChanged(key, rawKey)) {

@@ -918,3 +912,3 @@ track(rawTarget, "get", key);

const { has: has2 } = getProto(rawTarget);
const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;
const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive;
if (has2.call(rawTarget, key)) {

@@ -928,7 +922,7 @@ return wrap(target.get(key));

}
function has(key, isReadonly = false) {
function has(key, isReadonly2 = false) {
const target = this["__v_raw"];
const rawTarget = toRaw(target);
const rawKey = toRaw(key);
if (!isReadonly) {
if (!isReadonly2) {
if (shared.hasChanged(key, rawKey)) {

@@ -941,9 +935,11 @@ track(rawTarget, "has", key);

}
function size(target, isReadonly = false) {
function size(target, isReadonly2 = false) {
target = target["__v_raw"];
!isReadonly && track(toRaw(target), "iterate", ITERATE_KEY);
!isReadonly2 && track(toRaw(target), "iterate", ITERATE_KEY);
return Reflect.get(target, "size", target);
}
function add(value) {
value = toRaw(value);
function add(value, _isShallow = false) {
if (!_isShallow && !isShallow(value) && !isReadonly(value)) {
value = toRaw(value);
}
const target = toRaw(this);

@@ -958,4 +954,6 @@ const proto = getProto(target);

}
function set(key, value) {
value = toRaw(value);
function set(key, value, _isShallow = false) {
if (!_isShallow && !isShallow(value) && !isReadonly(value)) {
value = toRaw(value);
}
const target = toRaw(this);

@@ -1001,3 +999,3 @@ const { has: has2, get: get2 } = getProto(target);

}
function createForEach(isReadonly, isShallow) {
function createForEach(isReadonly2, isShallow2) {
return function forEach(callback, thisArg) {

@@ -1007,4 +1005,4 @@ const observed = this;

const rawTarget = toRaw(target);
const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;
!isReadonly && track(rawTarget, "iterate", ITERATE_KEY);
const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive;
!isReadonly2 && track(rawTarget, "iterate", ITERATE_KEY);
return target.forEach((value, key) => {

@@ -1015,3 +1013,3 @@ return callback.call(thisArg, wrap(value), wrap(key), observed);

}
function createIterableMethod(method, isReadonly, isShallow) {
function createIterableMethod(method, isReadonly2, isShallow2) {
return function(...args) {

@@ -1024,4 +1022,4 @@ const target = this["__v_raw"];

const innerIterator = target[method](...args);
const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;
!isReadonly && track(
const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive;
!isReadonly2 && track(
rawTarget,

@@ -1075,4 +1073,8 @@ "iterate",

has,
add,
set,
add(value) {
return add.call(this, value, true);
},
set(key, value) {
return set.call(this, key, value, true);
},
delete: deleteEntry,

@@ -1143,9 +1145,9 @@ clear,

] = /* @__PURE__ */ createInstrumentations();
function createInstrumentationGetter(isReadonly, shallow) {
const instrumentations = shallow ? isReadonly ? shallowReadonlyInstrumentations : shallowInstrumentations : isReadonly ? readonlyInstrumentations : mutableInstrumentations;
function createInstrumentationGetter(isReadonly2, shallow) {
const instrumentations = shallow ? isReadonly2 ? shallowReadonlyInstrumentations : shallowInstrumentations : isReadonly2 ? readonlyInstrumentations : mutableInstrumentations;
return (target, key, receiver) => {
if (key === "__v_isReactive") {
return !isReadonly;
return !isReadonly2;
} else if (key === "__v_isReadonly") {
return isReadonly;
return isReadonly2;
} else if (key === "__v_raw") {

@@ -1285,3 +1287,3 @@ return target;

function isRef(r) {
return r ? r.__v_isRef === true : false;
return r ? r["__v_isRef"] === true : false;
}

@@ -1301,8 +1303,9 @@ function ref(value) {

class RefImpl {
constructor(value, __v_isShallow) {
this.__v_isShallow = __v_isShallow;
constructor(value, isShallow2) {
this.dep = new Dep();
this.__v_isRef = true;
this._rawValue = __v_isShallow ? value : toRaw(value);
this._value = __v_isShallow ? value : toReactive(value);
this["__v_isRef"] = true;
this["__v_isShallow"] = false;
this._rawValue = isShallow2 ? value : toRaw(value);
this._value = isShallow2 ? value : toReactive(value);
this["__v_isShallow"] = isShallow2;
}

@@ -1317,3 +1320,3 @@ get value() {

const oldValue = this._rawValue;
const useDirectValue = this.__v_isShallow || isShallow(newValue) || isReadonly(newValue);
const useDirectValue = this["__v_isShallow"] || isShallow(newValue) || isReadonly(newValue);
newValue = useDirectValue ? newValue : toRaw(newValue);

@@ -1357,3 +1360,3 @@ if (shared.hasChanged(newValue, oldValue)) {

constructor(factory) {
this.__v_isRef = true;
this["__v_isRef"] = true;
const dep = this.dep = new Dep();

@@ -1386,3 +1389,3 @@ const { get, set } = factory(dep.track.bind(dep), dep.trigger.bind(dep));

this._defaultValue = _defaultValue;
this.__v_isRef = true;
this["__v_isRef"] = true;
}

@@ -1403,4 +1406,4 @@ get value() {

this._getter = _getter;
this.__v_isRef = true;
this.__v_isReadonly = true;
this["__v_isRef"] = true;
this["__v_isReadonly"] = true;
}

@@ -1442,3 +1445,3 @@ get value() {

*/
this.__v_isRef = true;
this["__v_isRef"] = true;
// A computed is also a subscriber that tracks other deps

@@ -1463,3 +1466,3 @@ /**

this.effect = this;
this.__v_isReadonly = !setter;
this["__v_isReadonly"] = !setter;
this.isSSR = isSSR;

@@ -1519,3 +1522,4 @@ }

"IS_SHALLOW": "__v_isShallow",
"RAW": "__v_raw"
"RAW": "__v_raw",
"IS_REF": "__v_isRef"
};

@@ -1522,0 +1526,0 @@

@@ -19,6 +19,12 @@ import { IfAny } from '@vue/shared';

IS_SHALLOW = "__v_isShallow",
RAW = "__v_raw"
RAW = "__v_raw",
IS_REF = "__v_isRef"
}
export type UnwrapNestedRefs<T> = T extends Ref ? T : UnwrapRefSimple<T>;
declare const ReactiveMarkerSymbol: unique symbol;
export declare class ReactiveMarker {
private [ReactiveMarkerSymbol]?;
}
export type Reactive<T> = UnwrapNestedRefs<T> & (T extends readonly any[] ? ReactiveMarker : {});
/**

@@ -39,3 +45,3 @@ * Returns a reactive proxy of the object.

*/
export declare function reactive<T extends object>(target: T): UnwrapNestedRefs<T>;
export declare function reactive<T extends object>(target: T): Reactive<T>;
declare const ShallowReactiveMarker: unique symbol;

@@ -498,3 +504,3 @@ export type ShallowReactive<T> = T & {

*/
export declare function unref<T>(ref: MaybeRef<T> | ComputedRef<T>): T;
export declare function unref<T>(ref: MaybeRef<T> | ComputedRef<T> | ShallowRef<T>): T;
/**

@@ -516,10 +522,8 @@ * Normalizes values / refs / getters to values.

*/
export declare function toValue<T>(source: MaybeRefOrGetter<T> | ComputedRef<T>): T;
export declare function toValue<T>(source: MaybeRefOrGetter<T> | ComputedRef<T> | ShallowRef<T>): T;
/**
* Returns a reactive proxy for the given object.
* Returns a proxy for the given object that shallowly unwraps properties that
* are refs. If the object already is reactive, it's returned as-is. If not, a
* new reactive proxy is created.
*
* If the object already is reactive, it's returned as-is. If not, a new
* reactive proxy is created. Direct child properties that are refs are properly
* handled, as well.
*
* @param objectWithRefs - Either an already-reactive object or a simple object

@@ -600,3 +604,2 @@ * that contains refs.

export declare function toRef<T extends object, K extends keyof T>(object: T, key: K, defaultValue: T[K]): ToRef<Exclude<T[K], undefined>>;
type BaseTypes = string | number | boolean;
/**

@@ -618,7 +621,7 @@ * This is a special exported interface for other packages to declare

export type ShallowUnwrapRef<T> = {
[K in keyof T]: DistrubuteRef<T[K]>;
[K in keyof T]: DistributeRef<T[K]>;
};
type DistrubuteRef<T> = T extends Ref<infer V> ? V : T;
type DistributeRef<T> = T extends Ref<infer V> ? V : T;
export type UnwrapRef<T> = T extends ShallowRef<infer V> ? V : T extends Ref<infer V> ? UnwrapRefSimple<V> : UnwrapRefSimple<T>;
type UnwrapRefSimple<T> = T extends Function | BaseTypes | Ref | RefUnwrapBailTypes[keyof RefUnwrapBailTypes] | {
type UnwrapRefSimple<T> = T extends Builtin | Ref | RefUnwrapBailTypes[keyof RefUnwrapBailTypes] | {
[RawSymbol]?: true;

@@ -625,0 +628,0 @@ } ? 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> ? {

/**
* @vue/reactivity v3.5.0-alpha.2
* @vue/reactivity v3.5.0-alpha.3
* (c) 2018-present Yuxi (Evan) You and Vue contributors

@@ -285,4 +285,3 @@ * @license MIT

} catch (err) {
if (!error)
error = err;
if (!error) error = err;
}

@@ -294,4 +293,3 @@ }

batchDepth--;
if (error)
throw error;
if (error) throw error;
}

@@ -310,4 +308,3 @@ function prepareDeps(sub) {

if (link.version === -1) {
if (link === tail)
tail = link.prevDep;
if (link === tail) tail = link.prevDep;
removeSub(link);

@@ -576,4 +573,3 @@ removeDep(link);

link.prevSub = currentTail;
if (currentTail)
currentTail.nextSub = link;
if (currentTail) currentTail.nextSub = link;
}

@@ -684,4 +680,3 @@ if (link.dep.subsHead === void 0) {

const raw = toRaw(array);
if (raw === array)
return raw;
if (raw === array) return raw;
track(raw, "iterate", ARRAY_ITERATE_KEY);

@@ -860,4 +855,3 @@ return isShallow(array) ? raw : raw.map(toReactive);

function hasOwnProperty(key) {
if (!isSymbol(key))
key = String(key);
if (!isSymbol(key)) key = String(key);
const obj = toRaw(this);

@@ -1013,7 +1007,7 @@ track(obj, "has", key);

const getProto = (v) => Reflect.getPrototypeOf(v);
function get(target, key, isReadonly = false, isShallow = false) {
function get(target, key, isReadonly2 = false, isShallow2 = false) {
target = target["__v_raw"];
const rawTarget = toRaw(target);
const rawKey = toRaw(key);
if (!isReadonly) {
if (!isReadonly2) {
if (hasChanged(key, rawKey)) {

@@ -1025,3 +1019,3 @@ track(rawTarget, "get", key);

const { has: has2 } = getProto(rawTarget);
const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;
const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive;
if (has2.call(rawTarget, key)) {

@@ -1035,7 +1029,7 @@ return wrap(target.get(key));

}
function has(key, isReadonly = false) {
function has(key, isReadonly2 = false) {
const target = this["__v_raw"];
const rawTarget = toRaw(target);
const rawKey = toRaw(key);
if (!isReadonly) {
if (!isReadonly2) {
if (hasChanged(key, rawKey)) {

@@ -1048,9 +1042,11 @@ track(rawTarget, "has", key);

}
function size(target, isReadonly = false) {
function size(target, isReadonly2 = false) {
target = target["__v_raw"];
!isReadonly && track(toRaw(target), "iterate", ITERATE_KEY);
!isReadonly2 && track(toRaw(target), "iterate", ITERATE_KEY);
return Reflect.get(target, "size", target);
}
function add(value) {
value = toRaw(value);
function add(value, _isShallow = false) {
if (!_isShallow && !isShallow(value) && !isReadonly(value)) {
value = toRaw(value);
}
const target = toRaw(this);

@@ -1065,4 +1061,6 @@ const proto = getProto(target);

}
function set(key, value) {
value = toRaw(value);
function set(key, value, _isShallow = false) {
if (!_isShallow && !isShallow(value) && !isReadonly(value)) {
value = toRaw(value);
}
const target = toRaw(this);

@@ -1113,3 +1111,3 @@ const { has: has2, get: get2 } = getProto(target);

}
function createForEach(isReadonly, isShallow) {
function createForEach(isReadonly2, isShallow2) {
return function forEach(callback, thisArg) {

@@ -1119,4 +1117,4 @@ const observed = this;

const rawTarget = toRaw(target);
const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;
!isReadonly && track(rawTarget, "iterate", ITERATE_KEY);
const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive;
!isReadonly2 && track(rawTarget, "iterate", ITERATE_KEY);
return target.forEach((value, key) => {

@@ -1127,3 +1125,3 @@ return callback.call(thisArg, wrap(value), wrap(key), observed);

}
function createIterableMethod(method, isReadonly, isShallow) {
function createIterableMethod(method, isReadonly2, isShallow2) {
return function(...args) {

@@ -1136,4 +1134,4 @@ const target = this["__v_raw"];

const innerIterator = target[method](...args);
const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;
!isReadonly && track(
const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive;
!isReadonly2 && track(
rawTarget,

@@ -1194,4 +1192,8 @@ "iterate",

has,
add,
set,
add(value) {
return add.call(this, value, true);
},
set(key, value) {
return set.call(this, key, value, true);
},
delete: deleteEntry,

@@ -1262,9 +1264,9 @@ clear,

] = /* @__PURE__ */ createInstrumentations();
function createInstrumentationGetter(isReadonly, shallow) {
const instrumentations = shallow ? isReadonly ? shallowReadonlyInstrumentations : shallowInstrumentations : isReadonly ? readonlyInstrumentations : mutableInstrumentations;
function createInstrumentationGetter(isReadonly2, shallow) {
const instrumentations = shallow ? isReadonly2 ? shallowReadonlyInstrumentations : shallowInstrumentations : isReadonly2 ? readonlyInstrumentations : mutableInstrumentations;
return (target, key, receiver) => {
if (key === "__v_isReactive") {
return !isReadonly;
return !isReadonly2;
} else if (key === "__v_isReadonly") {
return isReadonly;
return isReadonly2;
} else if (key === "__v_raw") {

@@ -1365,3 +1367,7 @@ return target;

{
warn(`value cannot be made reactive: ${String(target)}`);
warn(
`value cannot be made ${isReadonly2 ? "readonly" : "reactive"}: ${String(
target
)}`
);
}

@@ -1417,3 +1423,3 @@ return target;

function isRef(r) {
return r ? r.__v_isRef === true : false;
return r ? r["__v_isRef"] === true : false;
}

@@ -1433,8 +1439,9 @@ function ref(value) {

class RefImpl {
constructor(value, __v_isShallow) {
this.__v_isShallow = __v_isShallow;
constructor(value, isShallow2) {
this.dep = new Dep();
this.__v_isRef = true;
this._rawValue = __v_isShallow ? value : toRaw(value);
this._value = __v_isShallow ? value : toReactive(value);
this["__v_isRef"] = true;
this["__v_isShallow"] = false;
this._rawValue = isShallow2 ? value : toRaw(value);
this._value = isShallow2 ? value : toReactive(value);
this["__v_isShallow"] = isShallow2;
}

@@ -1453,3 +1460,3 @@ get value() {

const oldValue = this._rawValue;
const useDirectValue = this.__v_isShallow || isShallow(newValue) || isReadonly(newValue);
const useDirectValue = this["__v_isShallow"] || isShallow(newValue) || isReadonly(newValue);
newValue = useDirectValue ? newValue : toRaw(newValue);

@@ -1504,3 +1511,3 @@ if (hasChanged(newValue, oldValue)) {

constructor(factory) {
this.__v_isRef = true;
this["__v_isRef"] = true;
const dep = this.dep = new Dep();

@@ -1536,3 +1543,3 @@ const { get, set } = factory(dep.track.bind(dep), dep.trigger.bind(dep));

this._defaultValue = _defaultValue;
this.__v_isRef = true;
this["__v_isRef"] = true;
}

@@ -1553,4 +1560,4 @@ get value() {

this._getter = _getter;
this.__v_isRef = true;
this.__v_isReadonly = true;
this["__v_isRef"] = true;
this["__v_isReadonly"] = true;
}

@@ -1592,3 +1599,3 @@ get value() {

*/
this.__v_isRef = true;
this["__v_isRef"] = true;
// A computed is also a subscriber that tracks other deps

@@ -1613,3 +1620,3 @@ /**

this.effect = this;
this.__v_isReadonly = !setter;
this["__v_isReadonly"] = !setter;
this.isSSR = isSSR;

@@ -1679,5 +1686,6 @@ }

"IS_SHALLOW": "__v_isShallow",
"RAW": "__v_raw"
"RAW": "__v_raw",
"IS_REF": "__v_isRef"
};
export { ARRAY_ITERATE_KEY, EffectFlags, EffectScope, ITERATE_KEY, MAP_KEY_ITERATE_KEY, ReactiveEffect, ReactiveFlags, TrackOpTypes, TriggerOpTypes, computed, customRef, effect, effectScope, enableTracking, getCurrentScope, isProxy, isReactive, isReadonly, isRef, isShallow, markRaw, onEffectCleanup, onScopeDispose, pauseTracking, proxyRefs, reactive, reactiveReadArray, readonly, ref, resetTracking, shallowReactive, shallowReadArray, shallowReadonly, shallowRef, stop, toRaw, toReactive, toReadonly, toRef, toRefs, toValue, track, trigger, triggerRef, unref };
/**
* @vue/reactivity v3.5.0-alpha.2
* @vue/reactivity v3.5.0-alpha.3
* (c) 2018-present Yuxi (Evan) You and Vue contributors
* @license MIT
**/
/*! #__NO_SIDE_EFFECTS__ */
function t(t,e){const s=new Set(t.split(","));return t=>s.has(t)}const e=Object.assign,s=Object.prototype.hasOwnProperty,n=(t,e)=>s.call(t,e),i=Array.isArray,r=t=>"[object Map]"===l(t),o=t=>"function"==typeof t,c=t=>"symbol"==typeof t,u=t=>null!==t&&"object"==typeof t,a=Object.prototype.toString,l=t=>a.call(t),h=t=>l(t).slice(8,-1),f=t=>"string"==typeof t&&"NaN"!==t&&"-"!==t[0]&&""+parseInt(t,10)===t,p=(t,e)=>!Object.is(t,e);let d,v;class _{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=d,!t&&d&&(this.index=(d.scopes||(d.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){const e=d;try{return d=this,t()}finally{d=e}}}on(){d=this}off(){d=this.parent}stop(t){if(this._active){let e,s;for(e=0,s=this.effects.length;e<s;e++)this.effects[e].stop();for(e=0,s=this.cleanups.length;e<s;e++)this.cleanups[e]();if(this.scopes)for(e=0,s=this.scopes.length;e<s;e++)this.scopes[e].stop(!0);if(!this.detached&&this.parent&&!t){const t=this.parent.scopes.pop();t&&t!==this&&(this.parent.scopes[this.index]=t,t.index=this.index)}this.parent=void 0,this._active=!1}}}function g(t){return new _(t)}function y(){return d}function b(t,e=!1){d&&d.cleanups.push(t)}const w={ACTIVE:1,1:"ACTIVE",RUNNING:2,2:"RUNNING",TRACKING:4,4:"TRACKING",NOTIFIED:8,8:"NOTIFIED",DIRTY:16,16:"DIRTY",ALLOW_RECURSE:32,32:"ALLOW_RECURSE",NO_BATCH:64,64:"NO_BATCH"};class S{constructor(t){this.fn=t,this.deps=void 0,this.depsTail=void 0,this.flags=5,this.nextEffect=void 0,this.cleanup=void 0,this.scheduler=void 0,d&&d.active&&d.effects.push(this)}notify(){if(!(2&this.flags)||32&this.flags)return 64&this.flags?this.trigger():void(8&this.flags||(this.flags|=8,this.nextEffect=R,R=this))}run(){if(!(1&this.flags))return this.fn();this.flags|=2,z(this),k(this);const t=v,e=N;v=this,N=!0;try{return this.fn()}finally{m(this),v=t,N=e,this.flags&=-3}}stop(){if(1&this.flags){for(let t=this.deps;t;t=t.nextDep)I(t);this.deps=this.depsTail=void 0,z(this),this.onStop&&this.onStop(),this.flags&=-2}}trigger(){this.scheduler?this.scheduler():this.runIfDirty()}runIfDirty(){O(this)&&this.run()}get dirty(){return O(this)}}let R,x=0;function D(){x++}function E(){if(x>1)return void x--;let t;for(;R;){let s=R;for(R=void 0;s;){const n=s.nextEffect;if(s.nextEffect=void 0,s.flags&=-9,1&s.flags)try{s.trigger()}catch(e){t||(t=e)}s=n}}if(x--,t)throw t}function k(t){for(let e=t.deps;e;e=e.nextDep)e.version=-1,e.prevActiveLink=e.dep.activeLink,e.dep.activeLink=e}function m(t){let e,s=t.depsTail;for(let n=s;n;n=n.prevDep)-1===n.version?(n===s&&(s=n.prevDep),I(n),A(n)):e=n,n.dep.activeLink=n.prevActiveLink,n.prevActiveLink=void 0;t.deps=e,t.depsTail=s}function O(t){for(let e=t.deps;e;e=e.nextDep)if(e.dep.version!==e.version||e.dep.computed&&!1===T(e.dep.computed)||e.dep.version!==e.version)return!0;return!!t._dirty}function T(t){if(2&t.flags)return!1;if(4&t.flags&&!(16&t.flags))return;if(t.flags&=-17,t.globalVersion===G)return;t.globalVersion=G;const e=t.dep;if(t.flags|=2,e.version>0&&!t.isSSR&&!O(t))return void(t.flags&=-3);const s=v,n=N;v=t,N=!0;try{k(t);const s=t.fn();(0===e.version||p(s,t._value))&&(t._value=s,e.version++)}catch(i){throw e.version++,i}finally{v=s,N=n,m(t),t.flags&=-3}}function I(t){const{dep:e,prevSub:s,nextSub:n}=t;if(s&&(s.nextSub=n,t.prevSub=void 0),n&&(n.prevSub=s,t.nextSub=void 0),e.subs===t&&(e.subs=s),!e.subs&&e.computed){e.computed.flags&=-5;for(let t=e.computed.deps;t;t=t.nextDep)I(t)}}function A(t){const{prevDep:e,nextDep:s}=t;e&&(e.nextDep=s,t.prevDep=void 0),s&&(s.prevDep=e,t.nextDep=void 0)}function L(t,s){t.effect instanceof S&&(t=t.effect.fn);const n=new S(t);s&&e(n,s);try{n.run()}catch(r){throw n.stop(),r}const i=n.run.bind(n);return i.effect=n,i}function j(t){t.effect.stop()}let N=!0;const P=[];function V(){P.push(N),N=!1}function W(){P.push(N),N=!0}function C(){const t=P.pop();N=void 0===t||t}function M(t,e=!1){v instanceof S&&(v.cleanup=t)}function z(t){const{cleanup:e}=t;if(t.cleanup=void 0,e){const t=v;v=void 0;try{e()}finally{v=t}}}let G=0;class K{constructor(t){this.computed=t,this.version=0,this.activeLink=void 0,this.subs=void 0}track(t){if(!v||!N)return;let e=this.activeLink;if(void 0===e||e.sub!==v)e=this.activeLink={dep:this,sub:v,version:this.version,nextDep:void 0,prevDep:void 0,nextSub:void 0,prevSub:void 0,prevActiveLink:void 0},v.deps?(e.prevDep=v.depsTail,v.depsTail.nextDep=e,v.depsTail=e):v.deps=v.depsTail=e,4&v.flags&&H(e);else if(-1===e.version&&(e.version=this.version,e.nextDep)){const t=e.nextDep;t.prevDep=e.prevDep,e.prevDep&&(e.prevDep.nextDep=t),e.prevDep=v.depsTail,e.nextDep=void 0,v.depsTail.nextDep=e,v.depsTail=e,v.deps===e&&(v.deps=t)}return e}trigger(t){this.version++,G++,this.notify(t)}notify(t){D();try{0;for(let t=this.subs;t;t=t.prevSub)t.sub.notify()}finally{E()}}}function H(t){const e=t.dep.computed;if(e&&!t.dep.subs){e.flags|=20;for(let t=e.deps;t;t=t.nextDep)H(t)}const s=t.dep.subs;s!==t&&(t.prevSub=s,s&&(s.nextSub=t)),t.dep.subs=t}const U=new WeakMap,Y=Symbol(""),B=Symbol(""),F=Symbol("");function q(t,e,s){if(N&&v){let e=U.get(t);e||U.set(t,e=new Map);let n=e.get(s);n||e.set(s,n=new K),n.track()}}function J(t,e,s,n,o,u){const a=U.get(t);if(!a)return void G++;let l=[];if("clear"===e)l=[...a.values()];else{const o=i(t),u=o&&f(s);if(o&&"length"===s){const t=Number(n);a.forEach(((e,s)=>{("length"===s||s===F||!c(s)&&s>=t)&&l.push(e)}))}else{const n=t=>t&&l.push(t);switch(void 0!==s&&n(a.get(s)),u&&n(a.get(F)),e){case"add":o?u&&n(a.get("length")):(n(a.get(Y)),r(t)&&n(a.get(B)));break;case"delete":o||(n(a.get(Y)),r(t)&&n(a.get(B)));break;case"set":r(t)&&n(a.get(Y))}}}D();for(const i of l)i.trigger();E()}function Q(t){const e=Jt(t);return e===t?e:(q(e,0,F),Ft(t)?e:e.map(Xt))}function X(t){return q(t=Jt(t),0,F),t}const Z={__proto__:null,[Symbol.iterator](){return $(this,Symbol.iterator,Xt)},concat(...t){return Q(this).concat(...t.map((t=>Q(t))))},entries(){return $(this,"entries",(t=>(t[1]=Xt(t[1]),t)))},every(t,e){return tt(this,"every",t,e)},filter(t,e){const s=tt(this,"filter",t,e);return qt(this)&&!Ft(this)?s.map(Xt):s},find(t,e){const s=tt(this,"find",t,e);return qt(this)&&!Ft(this)?Xt(s):s},findIndex(t,e){return tt(this,"findIndex",t,e)},findLast(t,e){const s=tt(this,"findLast",t,e);return qt(this)&&!Ft(this)?Xt(s):s},findLastIndex(t,e){return tt(this,"findLastIndex",t,e)},forEach(t,e){return tt(this,"forEach",t,e)},includes(...t){return st(this,"includes",t)},indexOf(...t){return st(this,"indexOf",t)},join(t){return Q(this).join(t)},lastIndexOf(...t){return st(this,"lastIndexOf",t)},map(t,e){return tt(this,"map",t,e)},pop(){return nt(this,"pop")},push(...t){return nt(this,"push",t)},reduce(t,...e){return et(this,"reduce",t,e)},reduceRight(t,...e){return et(this,"reduceRight",t,e)},shift(){return nt(this,"shift")},some(t,e){return tt(this,"some",t,e)},splice(...t){return nt(this,"splice",t)},toReversed(){return Q(this).toReversed()},toSorted(t){return Q(this).toSorted(t)},toSpliced(...t){return Q(this).toSpliced(...t)},unshift(...t){return nt(this,"unshift",t)},values(){return $(this,"values",Xt)}};function $(t,e,s){const n=X(t),i=n[e]();return n===t||Ft(t)||(i._next=i.next,i.next=()=>{const t=i._next();return t.value&&(t.value=s(t.value)),t}),i}function tt(t,e,s,n){const i=X(t);let r=s;return i!==t&&(Ft(t)?s.length>2&&(r=function(e,n){return s.call(this,e,n,t)}):r=function(e,n){return s.call(this,Xt(e),n,t)}),i[e](r,n)}function et(t,e,s,n){const i=X(t);let r=s;return i!==t&&(Ft(t)?s.length>3&&(r=function(e,n,i){return s.call(this,e,n,i,t)}):r=function(e,n,i){return s.call(this,e,Xt(n),i,t)}),i[e](r,...n)}function st(t,e,s){const n=Jt(t);q(n,0,F);const i=n[e](...s);return-1!==i&&!1!==i||!qt(s[0])?i:(s[0]=Jt(s[0]),n[e](...s))}function nt(t,e,s=[]){V(),D();const n=Jt(t)[e].apply(t,s);return E(),C(),n}const it=t("__proto__,__v_isRef,__isVue"),rt=new Set(Object.getOwnPropertyNames(Symbol).filter((t=>"arguments"!==t&&"caller"!==t)).map((t=>Symbol[t])).filter(c));function ot(t){c(t)||(t=String(t));const e=Jt(this);return q(e,0,t),e.hasOwnProperty(t)}class ct{constructor(t=!1,e=!1){this._isReadonly=t,this._isShallow=e}get(t,e,s){const n=this._isReadonly,r=this._isShallow;if("__v_isReactive"===e)return!n;if("__v_isReadonly"===e)return n;if("__v_isShallow"===e)return r;if("__v_raw"===e)return s===(n?r?Mt:Ct:r?Wt:Vt).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(s)?t:void 0;const o=i(t);if(!n){let t;if(o&&(t=Z[e]))return t;if("hasOwnProperty"===e)return ot}const a=Reflect.get(t,e,$t(t)?t:s);return(c(e)?rt.has(e):it(e))?a:(n||q(t,0,e),r?a:$t(a)?o&&f(e)?a:a.value:u(a)?n?Kt(a):zt(a):a)}}class ut extends ct{constructor(t=!1){super(!1,t)}set(t,e,s,r){let o=t[e];if(!this._isShallow){const e=Bt(o);if(Ft(s)||Bt(s)||(o=Jt(o),s=Jt(s)),!i(t)&&$t(o)&&!$t(s))return!e&&(o.value=s,!0)}const c=i(t)&&f(e)?Number(e)<t.length:n(t,e),u=Reflect.set(t,e,s,r);return t===Jt(r)&&(c?p(s,o)&&J(t,"set",e,s):J(t,"add",e,s)),u}deleteProperty(t,e){const s=n(t,e),i=Reflect.deleteProperty(t,e);return i&&s&&J(t,"delete",e,void 0),i}has(t,e){const s=Reflect.has(t,e);return c(e)&&rt.has(e)||q(t,0,e),s}ownKeys(t){return q(t,0,i(t)?"length":Y),Reflect.ownKeys(t)}}class at extends ct{constructor(t=!1){super(!0,t)}set(t,e){return!0}deleteProperty(t,e){return!0}}const lt=new ut,ht=new at,ft=new ut(!0),pt=new at(!0),dt=t=>t,vt=t=>Reflect.getPrototypeOf(t);function _t(t,e,s=!1,n=!1){const i=Jt(t=t.__v_raw),r=Jt(e);s||(p(e,r)&&q(i,0,e),q(i,0,r));const{has:o}=vt(i),c=n?dt:s?Zt:Xt;return o.call(i,e)?c(t.get(e)):o.call(i,r)?c(t.get(r)):void(t!==i&&t.get(e))}function gt(t,e=!1){const s=this.__v_raw,n=Jt(s),i=Jt(t);return e||(p(t,i)&&q(n,0,t),q(n,0,i)),t===i?s.has(t):s.has(t)||s.has(i)}function yt(t,e=!1){return t=t.__v_raw,!e&&q(Jt(t),0,Y),Reflect.get(t,"size",t)}function bt(t){t=Jt(t);const e=Jt(this);return vt(e).has.call(e,t)||(e.add(t),J(e,"add",t,t)),this}function wt(t,e){e=Jt(e);const s=Jt(this),{has:n,get:i}=vt(s);let r=n.call(s,t);r||(t=Jt(t),r=n.call(s,t));const o=i.call(s,t);return s.set(t,e),r?p(e,o)&&J(s,"set",t,e):J(s,"add",t,e),this}function St(t){const e=Jt(this),{has:s,get:n}=vt(e);let i=s.call(e,t);i||(t=Jt(t),i=s.call(e,t)),n&&n.call(e,t);const r=e.delete(t);return i&&J(e,"delete",t,void 0),r}function Rt(){const t=Jt(this),e=0!==t.size,s=t.clear();return e&&J(t,"clear",void 0,void 0),s}function xt(t,e){return function(s,n){const i=this,r=i.__v_raw,o=Jt(r),c=e?dt:t?Zt:Xt;return!t&&q(o,0,Y),r.forEach(((t,e)=>s.call(n,c(t),c(e),i)))}}function Dt(t,e,s){return function(...n){const i=this.__v_raw,o=Jt(i),c=r(o),u="entries"===t||t===Symbol.iterator&&c,a="keys"===t&&c,l=i[t](...n),h=s?dt:e?Zt:Xt;return!e&&q(o,0,a?B:Y),{next(){const{value:t,done:e}=l.next();return e?{value:t,done:e}:{value:u?[h(t[0]),h(t[1])]:h(t),done:e}},[Symbol.iterator](){return this}}}}function Et(t){return function(...e){return"delete"!==t&&("clear"===t?void 0:this)}}function kt(){const t={get(t){return _t(this,t)},get size(){return yt(this)},has:gt,add:bt,set:wt,delete:St,clear:Rt,forEach:xt(!1,!1)},e={get(t){return _t(this,t,!1,!0)},get size(){return yt(this)},has:gt,add:bt,set:wt,delete:St,clear:Rt,forEach:xt(!1,!0)},s={get(t){return _t(this,t,!0)},get size(){return yt(this,!0)},has(t){return gt.call(this,t,!0)},add:Et("add"),set:Et("set"),delete:Et("delete"),clear:Et("clear"),forEach:xt(!0,!1)},n={get(t){return _t(this,t,!0,!0)},get size(){return yt(this,!0)},has(t){return gt.call(this,t,!0)},add:Et("add"),set:Et("set"),delete:Et("delete"),clear:Et("clear"),forEach:xt(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach((i=>{t[i]=Dt(i,!1,!1),s[i]=Dt(i,!0,!1),e[i]=Dt(i,!1,!0),n[i]=Dt(i,!0,!0)})),[t,s,e,n]}const[mt,Ot,Tt,It]=kt();function At(t,e){const s=e?t?It:Tt:t?Ot:mt;return(e,i,r)=>"__v_isReactive"===i?!t:"__v_isReadonly"===i?t:"__v_raw"===i?e:Reflect.get(n(s,i)&&i in e?s:e,i,r)}const Lt={get:At(!1,!1)},jt={get:At(!1,!0)},Nt={get:At(!0,!1)},Pt={get:At(!0,!0)},Vt=new WeakMap,Wt=new WeakMap,Ct=new WeakMap,Mt=new WeakMap;function zt(t){return Bt(t)?t:Ut(t,!1,lt,Lt,Vt)}function Gt(t){return Ut(t,!1,ft,jt,Wt)}function Kt(t){return Ut(t,!0,ht,Nt,Ct)}function Ht(t){return Ut(t,!0,pt,Pt,Mt)}function Ut(t,e,s,n,i){if(!u(t))return t;if(t.__v_raw&&(!e||!t.__v_isReactive))return t;const r=i.get(t);if(r)return r;const o=(c=t).__v_skip||!Object.isExtensible(c)?0:function(t){switch(t){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}(h(c));var c;if(0===o)return t;const a=new Proxy(t,2===o?n:s);return i.set(t,a),a}function Yt(t){return Bt(t)?Yt(t.__v_raw):!(!t||!t.__v_isReactive)}function Bt(t){return!(!t||!t.__v_isReadonly)}function Ft(t){return!(!t||!t.__v_isShallow)}function qt(t){return!!t&&!!t.__v_raw}function Jt(t){const e=t&&t.__v_raw;return e?Jt(e):t}function Qt(t){return Object.isExtensible(t)&&((t,e,s,n=!1)=>{Object.defineProperty(t,e,{configurable:!0,enumerable:!1,writable:n,value:s})})(t,"__v_skip",!0),t}const Xt=t=>u(t)?zt(t):t,Zt=t=>u(t)?Kt(t):t;function $t(t){return!!t&&!0===t.__v_isRef}function te(t){return se(t,!1)}function ee(t){return se(t,!0)}function se(t,e){return $t(t)?t:new ne(t,e)}class ne{constructor(t,e){this.__v_isShallow=e,this.dep=new K,this.__v_isRef=!0,this._rawValue=e?t:Jt(t),this._value=e?t:Xt(t)}get value(){return this.dep.track(),this._value}set value(t){const e=this._rawValue,s=this.__v_isShallow||Ft(t)||Bt(t);t=s?t:Jt(t),p(t,e)&&(this._rawValue=t,this._value=s?t:Xt(t),this.dep.trigger())}}function ie(t){t.dep.trigger()}function re(t){return $t(t)?t.value:t}function oe(t){return o(t)?t():re(t)}const ce={get:(t,e,s)=>re(Reflect.get(t,e,s)),set:(t,e,s,n)=>{const i=t[e];return $t(i)&&!$t(s)?(i.value=s,!0):Reflect.set(t,e,s,n)}};function ue(t){return Yt(t)?t:new Proxy(t,ce)}class ae{constructor(t){this.__v_isRef=!0;const e=this.dep=new K,{get:s,set:n}=t(e.track.bind(e),e.trigger.bind(e));this._get=s,this._set=n}get value(){return this._get()}set value(t){this._set(t)}}function le(t){return new ae(t)}function he(t){const e=i(t)?new Array(t.length):{};for(const s in t)e[s]=ve(t,s);return e}class fe{constructor(t,e,s){this._object=t,this._key=e,this._defaultValue=s,this.__v_isRef=!0}get value(){const t=this._object[this._key];return void 0===t?this._defaultValue:t}set value(t){this._object[this._key]=t}get dep(){return t=Jt(this._object),e=this._key,null==(s=U.get(t))?void 0:s.get(e);var t,e,s}}class pe{constructor(t){this._getter=t,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function de(t,e,s){return $t(t)?t:o(t)?new pe(t):u(t)&&arguments.length>1?ve(t,e,s):te(t)}function ve(t,e,s){const n=t[e];return $t(n)?n:new fe(t,e,s)}class _e{constructor(t,e,s){this.fn=t,this.setter=e,this._value=void 0,this.dep=new K(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=G-1,this.effect=this,this.__v_isReadonly=!e,this.isSSR=s}notify(){v!==this&&(this.flags|=16,this.dep.notify())}get value(){const t=this.dep.track();return T(this),t&&(t.version=this.dep.version),this._value}set value(t){this.setter&&this.setter(t)}}function ge(t,e,s=!1){let n,i;o(t)?n=t:(n=t.get,i=t.set);return new _e(n,i,s)}const ye={GET:"get",HAS:"has",ITERATE:"iterate"},be={SET:"set",ADD:"add",DELETE:"delete",CLEAR:"clear"},we={SKIP:"__v_skip",IS_REACTIVE:"__v_isReactive",IS_READONLY:"__v_isReadonly",IS_SHALLOW:"__v_isShallow",RAW:"__v_raw"};export{F as ARRAY_ITERATE_KEY,w as EffectFlags,_ as EffectScope,Y as ITERATE_KEY,B as MAP_KEY_ITERATE_KEY,S as ReactiveEffect,we as ReactiveFlags,ye as TrackOpTypes,be as TriggerOpTypes,ge as computed,le as customRef,L as effect,g as effectScope,W as enableTracking,y as getCurrentScope,qt as isProxy,Yt as isReactive,Bt as isReadonly,$t as isRef,Ft as isShallow,Qt as markRaw,M as onEffectCleanup,b as onScopeDispose,V as pauseTracking,ue as proxyRefs,zt as reactive,Q as reactiveReadArray,Kt as readonly,te as ref,C as resetTracking,Gt as shallowReactive,X as shallowReadArray,Ht as shallowReadonly,ee as shallowRef,j as stop,Jt as toRaw,Xt as toReactive,Zt as toReadonly,de as toRef,he as toRefs,oe as toValue,q as track,J as trigger,ie as triggerRef,re as unref};
**//*! #__NO_SIDE_EFFECTS__ */let e,t,i;let r=Object.assign,s=Object.prototype.hasOwnProperty,n=(e,t)=>s.call(e,t),l=Array.isArray,a=e=>"[object Map]"===p(e),o=e=>"function"==typeof e,u=e=>"string"==typeof e,c=e=>"symbol"==typeof e,h=e=>null!==e&&"object"==typeof e,f=Object.prototype.toString,p=e=>f.call(e),d=e=>p(e).slice(8,-1),_=e=>u(e)&&"NaN"!==e&&"-"!==e[0]&&""+parseInt(e,10)===e,v=(e,t)=>!Object.is(e,t),g=(e,t,i,r=!1)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:r,value:i})};class y{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=e,!t&&e&&(this.index=(e.scopes||(e.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){let i=e;try{return e=this,t()}finally{e=i}}}on(){e=this}off(){e=this.parent}stop(e){if(this._active){let t,i;for(t=0,i=this.effects.length;t<i;t++)this.effects[t].stop();for(t=0,i=this.cleanups.length;t<i;t++)this.cleanups[t]();if(this.scopes)for(t=0,i=this.scopes.length;t<i;t++)this.scopes[t].stop(!0);if(!this.detached&&this.parent&&!e){let e=this.parent.scopes.pop();e&&e!==this&&(this.parent.scopes[this.index]=e,e.index=this.index)}this.parent=void 0,this._active=!1}}}function R(e){return new y(e)}function w(){return e}function b(t,i=!1){e&&e.cleanups.push(t)}let S={ACTIVE:1,1:"ACTIVE",RUNNING:2,2:"RUNNING",TRACKING:4,4:"TRACKING",NOTIFIED:8,8:"NOTIFIED",DIRTY:16,16:"DIRTY",ALLOW_RECURSE:32,32:"ALLOW_RECURSE",NO_BATCH:64,64:"NO_BATCH"};class x{constructor(t){this.fn=t,this.deps=void 0,this.depsTail=void 0,this.flags=5,this.nextEffect=void 0,this.cleanup=void 0,this.scheduler=void 0,e&&e.active&&e.effects.push(this)}notify(){if(!(2&this.flags)||32&this.flags){if(64&this.flags)return this.trigger();8&this.flags||(this.flags|=8,this.nextEffect=i,i=this)}}run(){if(!(1&this.flags))return this.fn();this.flags|=2,M(this),k(this);let e=t,i=j;t=this,j=!0;try{return this.fn()}finally{D(this),t=e,j=i,this.flags&=-3}}stop(){if(1&this.flags){for(let e=this.deps;e;e=e.nextDep)O(e);this.deps=this.depsTail=void 0,M(this),this.onStop&&this.onStop(),this.flags&=-2}}trigger(){this.scheduler?this.scheduler():this.runIfDirty()}runIfDirty(){m(this)&&this.run()}get dirty(){return m(this)}}let E=0;function T(){let e;if(E>1){E--;return}for(;i;){let t=i;for(i=void 0;t;){let i=t.nextEffect;if(t.nextEffect=void 0,t.flags&=-9,1&t.flags)try{t.trigger()}catch(t){e||(e=t)}t=i}}if(E--,e)throw e}function k(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function D(e){let t;let i=e.depsTail;for(let e=i;e;e=e.prevDep)-1===e.version?(e===i&&(i=e.prevDep),O(e),function(e){let{prevDep:t,nextDep:i}=e;t&&(t.nextDep=i,e.prevDep=void 0),i&&(i.prevDep=t,e.nextDep=void 0)}(e)):t=e,e.dep.activeLink=e.prevActiveLink,e.prevActiveLink=void 0;e.deps=t,e.depsTail=i}function m(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&!1===A(t.dep.computed)||t.dep.version!==t.version)return!0;return!!e._dirty}function A(e){if(2&e.flags)return!1;if(4&e.flags&&!(16&e.flags)||(e.flags&=-17,e.globalVersion===K))return;e.globalVersion=K;let i=e.dep;if(e.flags|=2,i.version>0&&!e.isSSR&&!m(e)){e.flags&=-3;return}let r=t,s=j;t=e,j=!0;try{k(e);let t=e.fn();(0===i.version||v(t,e._value))&&(e._value=t,i.version++)}catch(e){throw i.version++,e}finally{t=r,j=s,D(e),e.flags&=-3}}function O(e){let{dep:t,prevSub:i,nextSub:r}=e;if(i&&(i.nextSub=r,e.prevSub=void 0),r&&(r.prevSub=i,e.nextSub=void 0),t.subs===e&&(t.subs=i),!t.subs&&t.computed){t.computed.flags&=-5;for(let e=t.computed.deps;e;e=e.nextDep)O(e)}}function I(e,t){e.effect instanceof x&&(e=e.effect.fn);let i=new x(e);t&&r(i,t);try{i.run()}catch(e){throw i.stop(),e}let s=i.run.bind(i);return s.effect=i,s}function L(e){e.effect.stop()}let j=!0,N=[];function P(){N.push(j),j=!1}function V(){N.push(j),j=!0}function C(){let e=N.pop();j=void 0===e||e}function W(e,i=!1){t instanceof x&&(t.cleanup=e)}function M(e){let{cleanup:i}=e;if(e.cleanup=void 0,i){let e=t;t=void 0;try{i()}finally{t=e}}}let K=0;class Y{constructor(e){this.computed=e,this.version=0,this.activeLink=void 0,this.subs=void 0}track(e){if(!t||!j)return;let i=this.activeLink;if(void 0===i||i.sub!==t)i=this.activeLink={dep:this,sub:t,version:this.version,nextDep:void 0,prevDep:void 0,nextSub:void 0,prevSub:void 0,prevActiveLink:void 0},t.deps?(i.prevDep=t.depsTail,t.depsTail.nextDep=i,t.depsTail=i):t.deps=t.depsTail=i,4&t.flags&&function e(t){let i=t.dep.computed;if(i&&!t.dep.subs){i.flags|=20;for(let t=i.deps;t;t=t.nextDep)e(t)}let r=t.dep.subs;r!==t&&(t.prevSub=r,r&&(r.nextSub=t)),t.dep.subs=t}(i);else if(-1===i.version&&(i.version=this.version,i.nextDep)){let e=i.nextDep;e.prevDep=i.prevDep,i.prevDep&&(i.prevDep.nextDep=e),i.prevDep=t.depsTail,i.nextDep=void 0,t.depsTail.nextDep=i,t.depsTail=i,t.deps===i&&(t.deps=e)}return i}trigger(e){this.version++,K++,this.notify(e)}notify(e){E++;try{for(let e=this.subs;e;e=e.prevSub)e.sub.notify()}finally{T()}}}let z=new WeakMap,F=Symbol(""),G=Symbol(""),H=Symbol("");function U(e,i,r){if(j&&t){let t=z.get(e);t||z.set(e,t=new Map);let i=t.get(r);i||t.set(r,i=new Y),i.track()}}function B(e,t,i,r,s,n){let o=z.get(e);if(!o){K++;return}let u=[];if("clear"===t)u=[...o.values()];else{let s=l(e),n=s&&_(i);if(s&&"length"===i){let e=Number(r);o.forEach((t,i)=>{("length"===i||i===H||!c(i)&&i>=e)&&u.push(t)})}else{let r=e=>e&&u.push(e);switch(void 0!==i&&r(o.get(i)),n&&r(o.get(H)),t){case"add":s?n&&r(o.get("length")):(r(o.get(F)),a(e)&&r(o.get(G)));break;case"delete":!s&&(r(o.get(F)),a(e)&&r(o.get(G)));break;case"set":a(e)&&r(o.get(F))}}}for(let e of(E++,u))e.trigger();T()}function q(e){let t=eU(e);return t===e?t:(U(t,"iterate",H),eG(e)?t:t.map(eq))}function J(e){return U(e=eU(e),"iterate",H),e}let Q={__proto__:null,[Symbol.iterator](){return X(this,Symbol.iterator,eq)},concat(...e){return q(this).concat(...e.map(e=>q(e)))},entries(){return X(this,"entries",e=>(e[1]=eq(e[1]),e))},every(e,t){return Z(this,"every",e,t)},filter(e,t){let i=Z(this,"filter",e,t);return eH(this)&&!eG(this)?i.map(eq):i},find(e,t){let i=Z(this,"find",e,t);return eH(this)&&!eG(this)?eq(i):i},findIndex(e,t){return Z(this,"findIndex",e,t)},findLast(e,t){let i=Z(this,"findLast",e,t);return eH(this)&&!eG(this)?eq(i):i},findLastIndex(e,t){return Z(this,"findLastIndex",e,t)},forEach(e,t){return Z(this,"forEach",e,t)},includes(...e){return ee(this,"includes",e)},indexOf(...e){return ee(this,"indexOf",e)},join(e){return q(this).join(e)},lastIndexOf(...e){return ee(this,"lastIndexOf",e)},map(e,t){return Z(this,"map",e,t)},pop(){return et(this,"pop")},push(...e){return et(this,"push",e)},reduce(e,...t){return $(this,"reduce",e,t)},reduceRight(e,...t){return $(this,"reduceRight",e,t)},shift(){return et(this,"shift")},some(e,t){return Z(this,"some",e,t)},splice(...e){return et(this,"splice",e)},toReversed(){return q(this).toReversed()},toSorted(e){return q(this).toSorted(e)},toSpliced(...e){return q(this).toSpliced(...e)},unshift(...e){return et(this,"unshift",e)},values(){return X(this,"values",eq)}};function X(e,t,i){let r=J(e),s=r[t]();return r===e||eG(e)||(s._next=s.next,s.next=()=>{let e=s._next();return e.value&&(e.value=i(e.value)),e}),s}function Z(e,t,i,r){let s=J(e),n=i;return s!==e&&(eG(e)?i.length>2&&(n=function(t,r){return i.call(this,t,r,e)}):n=function(t,r){return i.call(this,eq(t),r,e)}),s[t](n,r)}function $(e,t,i,r){let s=J(e),n=i;return s!==e&&(eG(e)?i.length>3&&(n=function(t,r,s){return i.call(this,t,r,s,e)}):n=function(t,r,s){return i.call(this,t,eq(r),s,e)}),s[t](n,...r)}function ee(e,t,i){let r=eU(e);U(r,"iterate",H);let s=r[t](...i);return(-1===s||!1===s)&&eH(i[0])?(i[0]=eU(i[0]),r[t](...i)):s}function et(e,t,i=[]){P(),E++;let r=eU(e)[t].apply(e,i);return T(),C(),r}let ei=function(e,t){let i=new Set(e.split(","));return e=>i.has(e)}("__proto__,__v_isRef,__isVue"),er=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>"arguments"!==e&&"caller"!==e).map(e=>Symbol[e]).filter(c));function es(e){c(e)||(e=String(e));let t=eU(this);return U(t,"has",e),t.hasOwnProperty(e)}class en{constructor(e=!1,t=!1){this._isReadonly=e,this._isShallow=t}get(e,t,i){let r=this._isReadonly,s=this._isShallow;if("__v_isReactive"===t)return!r;if("__v_isReadonly"===t)return r;if("__v_isShallow"===t)return s;if("__v_raw"===t)return i===(r?s?eV:eP:s?eN:ej).get(e)||Object.getPrototypeOf(e)===Object.getPrototypeOf(i)?e:void 0;let n=l(e);if(!r){let e;if(n&&(e=Q[t]))return e;if("hasOwnProperty"===t)return es}let a=Reflect.get(e,t,eQ(e)?e:i);return(c(t)?er.has(t):ei(t))?a:(r||U(e,"get",t),s)?a:eQ(a)?n&&_(t)?a:a.value:h(a)?r?eM(a):eC(a):a}}class el extends en{constructor(e=!1){super(!1,e)}set(e,t,i,r){let s=e[t];if(!this._isShallow){let t=eF(s);if(eG(i)||eF(i)||(s=eU(s),i=eU(i)),!l(e)&&eQ(s)&&!eQ(i))return!t&&(s.value=i,!0)}let a=l(e)&&_(t)?Number(t)<e.length:n(e,t),o=Reflect.set(e,t,i,r);return e===eU(r)&&(a?v(i,s)&&B(e,"set",t,i):B(e,"add",t,i)),o}deleteProperty(e,t){let i=n(e,t);e[t];let r=Reflect.deleteProperty(e,t);return r&&i&&B(e,"delete",t,void 0),r}has(e,t){let i=Reflect.has(e,t);return c(t)&&er.has(t)||U(e,"has",t),i}ownKeys(e){return U(e,"iterate",l(e)?"length":F),Reflect.ownKeys(e)}}class ea extends en{constructor(e=!1){super(!0,e)}set(e,t){return!0}deleteProperty(e,t){return!0}}let eo=new el,eu=new ea,ec=new el(!0),eh=new ea(!0),ef=e=>e,ep=e=>Reflect.getPrototypeOf(e);function ed(e,t,i=!1,r=!1){let s=eU(e=e.__v_raw),n=eU(t);i||(v(t,n)&&U(s,"get",t),U(s,"get",n));let{has:l}=ep(s),a=r?ef:i?eJ:eq;return l.call(s,t)?a(e.get(t)):l.call(s,n)?a(e.get(n)):void(e!==s&&e.get(t))}function e_(e,t=!1){let i=this.__v_raw,r=eU(i),s=eU(e);return t||(v(e,s)&&U(r,"has",e),U(r,"has",s)),e===s?i.has(e):i.has(e)||i.has(s)}function ev(e,t=!1){return e=e.__v_raw,t||U(eU(e),"iterate",F),Reflect.get(e,"size",e)}function eg(e,t=!1){t||eG(e)||eF(e)||(e=eU(e));let i=eU(this);return ep(i).has.call(i,e)||(i.add(e),B(i,"add",e,e)),this}function ey(e,t,i=!1){i||eG(t)||eF(t)||(t=eU(t));let r=eU(this),{has:s,get:n}=ep(r),l=s.call(r,e);l||(e=eU(e),l=s.call(r,e));let a=n.call(r,e);return r.set(e,t),l?v(t,a)&&B(r,"set",e,t):B(r,"add",e,t),this}function eR(e){let t=eU(this),{has:i,get:r}=ep(t),s=i.call(t,e);s||(e=eU(e),s=i.call(t,e)),r&&r.call(t,e);let n=t.delete(e);return s&&B(t,"delete",e,void 0),n}function ew(){let e=eU(this),t=0!==e.size,i=e.clear();return t&&B(e,"clear",void 0,void 0),i}function eb(e,t){return function(i,r){let s=this,n=s.__v_raw,l=eU(n),a=t?ef:e?eJ:eq;return e||U(l,"iterate",F),n.forEach((e,t)=>i.call(r,a(e),a(t),s))}}function eS(e,t,i){return function(...r){let s=this.__v_raw,n=eU(s),l=a(n),o="entries"===e||e===Symbol.iterator&&l,u=s[e](...r),c=i?ef:t?eJ:eq;return t||U(n,"iterate","keys"===e&&l?G:F),{next(){let{value:e,done:t}=u.next();return t?{value:e,done:t}:{value:o?[c(e[0]),c(e[1])]:c(e),done:t}},[Symbol.iterator](){return this}}}}function ex(e){return function(...t){return"delete"!==e&&("clear"===e?void 0:this)}}let[eE,eT,ek,eD]=function(){let e={get(e){return ed(this,e)},get size(){return ev(this)},has:e_,add:eg,set:ey,delete:eR,clear:ew,forEach:eb(!1,!1)},t={get(e){return ed(this,e,!1,!0)},get size(){return ev(this)},has:e_,add(e){return eg.call(this,e,!0)},set(e,t){return ey.call(this,e,t,!0)},delete:eR,clear:ew,forEach:eb(!1,!0)},i={get(e){return ed(this,e,!0)},get size(){return ev(this,!0)},has(e){return e_.call(this,e,!0)},add:ex("add"),set:ex("set"),delete:ex("delete"),clear:ex("clear"),forEach:eb(!0,!1)},r={get(e){return ed(this,e,!0,!0)},get size(){return ev(this,!0)},has(e){return e_.call(this,e,!0)},add:ex("add"),set:ex("set"),delete:ex("delete"),clear:ex("clear"),forEach:eb(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(s=>{e[s]=eS(s,!1,!1),i[s]=eS(s,!0,!1),t[s]=eS(s,!1,!0),r[s]=eS(s,!0,!0)}),[e,i,t,r]}();function em(e,t){let i=t?e?eD:ek:e?eT:eE;return(t,r,s)=>"__v_isReactive"===r?!e:"__v_isReadonly"===r?e:"__v_raw"===r?t:Reflect.get(n(i,r)&&r in t?i:t,r,s)}let eA={get:em(!1,!1)},eO={get:em(!1,!0)},eI={get:em(!0,!1)},eL={get:em(!0,!0)},ej=new WeakMap,eN=new WeakMap,eP=new WeakMap,eV=new WeakMap;function eC(e){return eF(e)?e:eY(e,!1,eo,eA,ej)}function eW(e){return eY(e,!1,ec,eO,eN)}function eM(e){return eY(e,!0,eu,eI,eP)}function eK(e){return eY(e,!0,eh,eL,eV)}function eY(e,t,i,r,s){if(!h(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;let n=s.get(e);if(n)return n;let l=e.__v_skip||!Object.isExtensible(e)?0:function(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}(d(e));if(0===l)return e;let a=new Proxy(e,2===l?r:i);return s.set(e,a),a}function ez(e){return eF(e)?ez(e.__v_raw):!!(e&&e.__v_isReactive)}function eF(e){return!!(e&&e.__v_isReadonly)}function eG(e){return!!(e&&e.__v_isShallow)}function eH(e){return!!e&&!!e.__v_raw}function eU(e){let t=e&&e.__v_raw;return t?eU(t):e}function eB(e){return Object.isExtensible(e)&&g(e,"__v_skip",!0),e}let eq=e=>h(e)?eC(e):e,eJ=e=>h(e)?eM(e):e;function eQ(e){return!!e&&!0===e.__v_isRef}function eX(e){return e$(e,!1)}function eZ(e){return e$(e,!0)}function e$(e,t){return eQ(e)?e:new e0(e,t)}class e0{constructor(e,t){this.dep=new Y,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=t?e:eU(e),this._value=t?e:eq(e),this.__v_isShallow=t}get value(){return this.dep.track(),this._value}set value(e){let t=this._rawValue,i=this.__v_isShallow||eG(e)||eF(e);v(e=i?e:eU(e),t)&&(this._rawValue=e,this._value=i?e:eq(e),this.dep.trigger())}}function e1(e){e.dep.trigger()}function e2(e){return eQ(e)?e.value:e}function e6(e){return o(e)?e():e2(e)}let e3={get:(e,t,i)=>e2(Reflect.get(e,t,i)),set:(e,t,i,r)=>{let s=e[t];return eQ(s)&&!eQ(i)?(s.value=i,!0):Reflect.set(e,t,i,r)}};function e4(e){return ez(e)?e:new Proxy(e,e3)}class e8{constructor(e){this.__v_isRef=!0;let t=this.dep=new Y,{get:i,set:r}=e(t.track.bind(t),t.trigger.bind(t));this._get=i,this._set=r}get value(){return this._get()}set value(e){this._set(e)}}function e5(e){return new e8(e)}function e7(e){let t=l(e)?Array(e.length):{};for(let i in e)t[i]=ti(e,i);return t}class e9{constructor(e,t,i){this._object=e,this._key=t,this._defaultValue=i,this.__v_isRef=!0}get value(){let e=this._object[this._key];return void 0===e?this._defaultValue:e}set value(e){this._object[this._key]=e}get dep(){var e,t,i;return e=eU(this._object),t=this._key,null==(i=z.get(e))?void 0:i.get(t)}}class te{constructor(e){this._getter=e,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function tt(e,t,i){return eQ(e)?e:o(e)?new te(e):h(e)&&arguments.length>1?ti(e,t,i):eX(e)}function ti(e,t,i){let r=e[t];return eQ(r)?r:new e9(e,t,i)}class tr{constructor(e,t,i){this.fn=e,this.setter=t,this._value=void 0,this.dep=new Y(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=K-1,this.effect=this,this.__v_isReadonly=!t,this.isSSR=i}notify(){t!==this&&(this.flags|=16,this.dep.notify())}get value(){let e=this.dep.track();return A(this),e&&(e.version=this.dep.version),this._value}set value(e){this.setter&&this.setter(e)}}function ts(e,t,i=!1){let r,s;return o(e)?r=e:(r=e.get,s=e.set),new tr(r,s,i)}let tn={GET:"get",HAS:"has",ITERATE:"iterate"},tl={SET:"set",ADD:"add",DELETE:"delete",CLEAR:"clear"},ta={SKIP:"__v_skip",IS_REACTIVE:"__v_isReactive",IS_READONLY:"__v_isReadonly",IS_SHALLOW:"__v_isShallow",RAW:"__v_raw",IS_REF:"__v_isRef"};export{H as ARRAY_ITERATE_KEY,S as EffectFlags,y as EffectScope,F as ITERATE_KEY,G as MAP_KEY_ITERATE_KEY,x as ReactiveEffect,ta as ReactiveFlags,tn as TrackOpTypes,tl as TriggerOpTypes,ts as computed,e5 as customRef,I as effect,R as effectScope,V as enableTracking,w as getCurrentScope,eH as isProxy,ez as isReactive,eF as isReadonly,eQ as isRef,eG as isShallow,eB as markRaw,W as onEffectCleanup,b as onScopeDispose,P as pauseTracking,e4 as proxyRefs,eC as reactive,q as reactiveReadArray,eM as readonly,eX as ref,C as resetTracking,eW as shallowReactive,J as shallowReadArray,eK as shallowReadonly,eZ as shallowRef,L as stop,eU as toRaw,eq as toReactive,eJ as toReadonly,tt as toRef,e7 as toRefs,e6 as toValue,U as track,B as trigger,e1 as triggerRef,e2 as unref};
/**
* @vue/reactivity v3.5.0-alpha.2
* @vue/reactivity v3.5.0-alpha.3
* (c) 2018-present Yuxi (Evan) You and Vue contributors

@@ -245,4 +245,3 @@ * @license MIT

} catch (err) {
if (!error)
error = err;
if (!error) error = err;
}

@@ -254,4 +253,3 @@ }

batchDepth--;
if (error)
throw error;
if (error) throw error;
}

@@ -270,4 +268,3 @@ function prepareDeps(sub) {

if (link.version === -1) {
if (link === tail)
tail = link.prevDep;
if (link === tail) tail = link.prevDep;
removeSub(link);

@@ -536,4 +533,3 @@ removeDep(link);

link.prevSub = currentTail;
if (currentTail)
currentTail.nextSub = link;
if (currentTail) currentTail.nextSub = link;
}

@@ -648,4 +644,3 @@ if (!!(process.env.NODE_ENV !== "production") && link.dep.subsHead === void 0) {

const raw = toRaw(array);
if (raw === array)
return raw;
if (raw === array) return raw;
track(raw, "iterate", ARRAY_ITERATE_KEY);

@@ -824,4 +819,3 @@ return isShallow(array) ? raw : raw.map(toReactive);

function hasOwnProperty(key) {
if (!isSymbol(key))
key = String(key);
if (!isSymbol(key)) key = String(key);
const obj = toRaw(this);

@@ -977,7 +971,7 @@ track(obj, "has", key);

const getProto = (v) => Reflect.getPrototypeOf(v);
function get(target, key, isReadonly = false, isShallow = false) {
function get(target, key, isReadonly2 = false, isShallow2 = false) {
target = target["__v_raw"];
const rawTarget = toRaw(target);
const rawKey = toRaw(key);
if (!isReadonly) {
if (!isReadonly2) {
if (hasChanged(key, rawKey)) {

@@ -989,3 +983,3 @@ track(rawTarget, "get", key);

const { has: has2 } = getProto(rawTarget);
const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;
const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive;
if (has2.call(rawTarget, key)) {

@@ -999,7 +993,7 @@ return wrap(target.get(key));

}
function has(key, isReadonly = false) {
function has(key, isReadonly2 = false) {
const target = this["__v_raw"];
const rawTarget = toRaw(target);
const rawKey = toRaw(key);
if (!isReadonly) {
if (!isReadonly2) {
if (hasChanged(key, rawKey)) {

@@ -1012,9 +1006,11 @@ track(rawTarget, "has", key);

}
function size(target, isReadonly = false) {
function size(target, isReadonly2 = false) {
target = target["__v_raw"];
!isReadonly && track(toRaw(target), "iterate", ITERATE_KEY);
!isReadonly2 && track(toRaw(target), "iterate", ITERATE_KEY);
return Reflect.get(target, "size", target);
}
function add(value) {
value = toRaw(value);
function add(value, _isShallow = false) {
if (!_isShallow && !isShallow(value) && !isReadonly(value)) {
value = toRaw(value);
}
const target = toRaw(this);

@@ -1029,4 +1025,6 @@ const proto = getProto(target);

}
function set(key, value) {
value = toRaw(value);
function set(key, value, _isShallow = false) {
if (!_isShallow && !isShallow(value) && !isReadonly(value)) {
value = toRaw(value);
}
const target = toRaw(this);

@@ -1077,3 +1075,3 @@ const { has: has2, get: get2 } = getProto(target);

}
function createForEach(isReadonly, isShallow) {
function createForEach(isReadonly2, isShallow2) {
return function forEach(callback, thisArg) {

@@ -1083,4 +1081,4 @@ const observed = this;

const rawTarget = toRaw(target);
const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;
!isReadonly && track(rawTarget, "iterate", ITERATE_KEY);
const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive;
!isReadonly2 && track(rawTarget, "iterate", ITERATE_KEY);
return target.forEach((value, key) => {

@@ -1091,3 +1089,3 @@ return callback.call(thisArg, wrap(value), wrap(key), observed);

}
function createIterableMethod(method, isReadonly, isShallow) {
function createIterableMethod(method, isReadonly2, isShallow2) {
return function(...args) {

@@ -1100,4 +1098,4 @@ const target = this["__v_raw"];

const innerIterator = target[method](...args);
const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;
!isReadonly && track(
const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive;
!isReadonly2 && track(
rawTarget,

@@ -1158,4 +1156,8 @@ "iterate",

has,
add,
set,
add(value) {
return add.call(this, value, true);
},
set(key, value) {
return set.call(this, key, value, true);
},
delete: deleteEntry,

@@ -1226,9 +1228,9 @@ clear,

] = /* @__PURE__ */ createInstrumentations();
function createInstrumentationGetter(isReadonly, shallow) {
const instrumentations = shallow ? isReadonly ? shallowReadonlyInstrumentations : shallowInstrumentations : isReadonly ? readonlyInstrumentations : mutableInstrumentations;
function createInstrumentationGetter(isReadonly2, shallow) {
const instrumentations = shallow ? isReadonly2 ? shallowReadonlyInstrumentations : shallowInstrumentations : isReadonly2 ? readonlyInstrumentations : mutableInstrumentations;
return (target, key, receiver) => {
if (key === "__v_isReactive") {
return !isReadonly;
return !isReadonly2;
} else if (key === "__v_isReadonly") {
return isReadonly;
return isReadonly2;
} else if (key === "__v_raw") {

@@ -1329,3 +1331,7 @@ return target;

if (!!(process.env.NODE_ENV !== "production")) {
warn(`value cannot be made reactive: ${String(target)}`);
warn(
`value cannot be made ${isReadonly2 ? "readonly" : "reactive"}: ${String(
target
)}`
);
}

@@ -1381,3 +1387,3 @@ return target;

function isRef(r) {
return r ? r.__v_isRef === true : false;
return r ? r["__v_isRef"] === true : false;
}

@@ -1397,8 +1403,9 @@ function ref(value) {

class RefImpl {
constructor(value, __v_isShallow) {
this.__v_isShallow = __v_isShallow;
constructor(value, isShallow2) {
this.dep = new Dep();
this.__v_isRef = true;
this._rawValue = __v_isShallow ? value : toRaw(value);
this._value = __v_isShallow ? value : toReactive(value);
this["__v_isRef"] = true;
this["__v_isShallow"] = false;
this._rawValue = isShallow2 ? value : toRaw(value);
this._value = isShallow2 ? value : toReactive(value);
this["__v_isShallow"] = isShallow2;
}

@@ -1419,3 +1426,3 @@ get value() {

const oldValue = this._rawValue;
const useDirectValue = this.__v_isShallow || isShallow(newValue) || isReadonly(newValue);
const useDirectValue = this["__v_isShallow"] || isShallow(newValue) || isReadonly(newValue);
newValue = useDirectValue ? newValue : toRaw(newValue);

@@ -1474,3 +1481,3 @@ if (hasChanged(newValue, oldValue)) {

constructor(factory) {
this.__v_isRef = true;
this["__v_isRef"] = true;
const dep = this.dep = new Dep();

@@ -1506,3 +1513,3 @@ const { get, set } = factory(dep.track.bind(dep), dep.trigger.bind(dep));

this._defaultValue = _defaultValue;
this.__v_isRef = true;
this["__v_isRef"] = true;
}

@@ -1523,4 +1530,4 @@ get value() {

this._getter = _getter;
this.__v_isRef = true;
this.__v_isReadonly = true;
this["__v_isRef"] = true;
this["__v_isReadonly"] = true;
}

@@ -1562,3 +1569,3 @@ get value() {

*/
this.__v_isRef = true;
this["__v_isRef"] = true;
// A computed is also a subscriber that tracks other deps

@@ -1583,3 +1590,3 @@ /**

this.effect = this;
this.__v_isReadonly = !setter;
this["__v_isReadonly"] = !setter;
this.isSSR = isSSR;

@@ -1649,5 +1656,6 @@ }

"IS_SHALLOW": "__v_isShallow",
"RAW": "__v_raw"
"RAW": "__v_raw",
"IS_REF": "__v_isRef"
};
export { ARRAY_ITERATE_KEY, EffectFlags, EffectScope, ITERATE_KEY, MAP_KEY_ITERATE_KEY, ReactiveEffect, ReactiveFlags, TrackOpTypes, TriggerOpTypes, computed, customRef, effect, effectScope, enableTracking, getCurrentScope, isProxy, isReactive, isReadonly, isRef, isShallow, markRaw, onEffectCleanup, onScopeDispose, pauseTracking, proxyRefs, reactive, reactiveReadArray, readonly, ref, resetTracking, shallowReactive, shallowReadArray, shallowReadonly, shallowRef, stop, toRaw, toReactive, toReadonly, toRef, toRefs, toValue, track, trigger, triggerRef, unref };
/**
* @vue/reactivity v3.5.0-alpha.2
* @vue/reactivity v3.5.0-alpha.3
* (c) 2018-present Yuxi (Evan) You and Vue contributors

@@ -288,4 +288,3 @@ * @license MIT

} catch (err) {
if (!error)
error = err;
if (!error) error = err;
}

@@ -297,4 +296,3 @@ }

batchDepth--;
if (error)
throw error;
if (error) throw error;
}

@@ -313,4 +311,3 @@ function prepareDeps(sub) {

if (link.version === -1) {
if (link === tail)
tail = link.prevDep;
if (link === tail) tail = link.prevDep;
removeSub(link);

@@ -579,4 +576,3 @@ removeDep(link);

link.prevSub = currentTail;
if (currentTail)
currentTail.nextSub = link;
if (currentTail) currentTail.nextSub = link;
}

@@ -687,4 +683,3 @@ if (link.dep.subsHead === void 0) {

const raw = toRaw(array);
if (raw === array)
return raw;
if (raw === array) return raw;
track(raw, "iterate", ARRAY_ITERATE_KEY);

@@ -863,4 +858,3 @@ return isShallow(array) ? raw : raw.map(toReactive);

function hasOwnProperty(key) {
if (!isSymbol(key))
key = String(key);
if (!isSymbol(key)) key = String(key);
const obj = toRaw(this);

@@ -1016,7 +1010,7 @@ track(obj, "has", key);

const getProto = (v) => Reflect.getPrototypeOf(v);
function get(target, key, isReadonly = false, isShallow = false) {
function get(target, key, isReadonly2 = false, isShallow2 = false) {
target = target["__v_raw"];
const rawTarget = toRaw(target);
const rawKey = toRaw(key);
if (!isReadonly) {
if (!isReadonly2) {
if (hasChanged(key, rawKey)) {

@@ -1028,3 +1022,3 @@ track(rawTarget, "get", key);

const { has: has2 } = getProto(rawTarget);
const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;
const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive;
if (has2.call(rawTarget, key)) {

@@ -1038,7 +1032,7 @@ return wrap(target.get(key));

}
function has(key, isReadonly = false) {
function has(key, isReadonly2 = false) {
const target = this["__v_raw"];
const rawTarget = toRaw(target);
const rawKey = toRaw(key);
if (!isReadonly) {
if (!isReadonly2) {
if (hasChanged(key, rawKey)) {

@@ -1051,9 +1045,11 @@ track(rawTarget, "has", key);

}
function size(target, isReadonly = false) {
function size(target, isReadonly2 = false) {
target = target["__v_raw"];
!isReadonly && track(toRaw(target), "iterate", ITERATE_KEY);
!isReadonly2 && track(toRaw(target), "iterate", ITERATE_KEY);
return Reflect.get(target, "size", target);
}
function add(value) {
value = toRaw(value);
function add(value, _isShallow = false) {
if (!_isShallow && !isShallow(value) && !isReadonly(value)) {
value = toRaw(value);
}
const target = toRaw(this);

@@ -1068,4 +1064,6 @@ const proto = getProto(target);

}
function set(key, value) {
value = toRaw(value);
function set(key, value, _isShallow = false) {
if (!_isShallow && !isShallow(value) && !isReadonly(value)) {
value = toRaw(value);
}
const target = toRaw(this);

@@ -1116,3 +1114,3 @@ const { has: has2, get: get2 } = getProto(target);

}
function createForEach(isReadonly, isShallow) {
function createForEach(isReadonly2, isShallow2) {
return function forEach(callback, thisArg) {

@@ -1122,4 +1120,4 @@ const observed = this;

const rawTarget = toRaw(target);
const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;
!isReadonly && track(rawTarget, "iterate", ITERATE_KEY);
const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive;
!isReadonly2 && track(rawTarget, "iterate", ITERATE_KEY);
return target.forEach((value, key) => {

@@ -1130,3 +1128,3 @@ return callback.call(thisArg, wrap(value), wrap(key), observed);

}
function createIterableMethod(method, isReadonly, isShallow) {
function createIterableMethod(method, isReadonly2, isShallow2) {
return function(...args) {

@@ -1139,4 +1137,4 @@ const target = this["__v_raw"];

const innerIterator = target[method](...args);
const wrap = isShallow ? toShallow : isReadonly ? toReadonly : toReactive;
!isReadonly && track(
const wrap = isShallow2 ? toShallow : isReadonly2 ? toReadonly : toReactive;
!isReadonly2 && track(
rawTarget,

@@ -1197,4 +1195,8 @@ "iterate",

has,
add,
set,
add(value) {
return add.call(this, value, true);
},
set(key, value) {
return set.call(this, key, value, true);
},
delete: deleteEntry,

@@ -1265,9 +1267,9 @@ clear,

] = /* @__PURE__ */ createInstrumentations();
function createInstrumentationGetter(isReadonly, shallow) {
const instrumentations = shallow ? isReadonly ? shallowReadonlyInstrumentations : shallowInstrumentations : isReadonly ? readonlyInstrumentations : mutableInstrumentations;
function createInstrumentationGetter(isReadonly2, shallow) {
const instrumentations = shallow ? isReadonly2 ? shallowReadonlyInstrumentations : shallowInstrumentations : isReadonly2 ? readonlyInstrumentations : mutableInstrumentations;
return (target, key, receiver) => {
if (key === "__v_isReactive") {
return !isReadonly;
return !isReadonly2;
} else if (key === "__v_isReadonly") {
return isReadonly;
return isReadonly2;
} else if (key === "__v_raw") {

@@ -1368,3 +1370,7 @@ return target;

{
warn(`value cannot be made reactive: ${String(target)}`);
warn(
`value cannot be made ${isReadonly2 ? "readonly" : "reactive"}: ${String(
target
)}`
);
}

@@ -1420,3 +1426,3 @@ return target;

function isRef(r) {
return r ? r.__v_isRef === true : false;
return r ? r["__v_isRef"] === true : false;
}

@@ -1436,8 +1442,9 @@ function ref(value) {

class RefImpl {
constructor(value, __v_isShallow) {
this.__v_isShallow = __v_isShallow;
constructor(value, isShallow2) {
this.dep = new Dep();
this.__v_isRef = true;
this._rawValue = __v_isShallow ? value : toRaw(value);
this._value = __v_isShallow ? value : toReactive(value);
this["__v_isRef"] = true;
this["__v_isShallow"] = false;
this._rawValue = isShallow2 ? value : toRaw(value);
this._value = isShallow2 ? value : toReactive(value);
this["__v_isShallow"] = isShallow2;
}

@@ -1456,3 +1463,3 @@ get value() {

const oldValue = this._rawValue;
const useDirectValue = this.__v_isShallow || isShallow(newValue) || isReadonly(newValue);
const useDirectValue = this["__v_isShallow"] || isShallow(newValue) || isReadonly(newValue);
newValue = useDirectValue ? newValue : toRaw(newValue);

@@ -1507,3 +1514,3 @@ if (hasChanged(newValue, oldValue)) {

constructor(factory) {
this.__v_isRef = true;
this["__v_isRef"] = true;
const dep = this.dep = new Dep();

@@ -1539,3 +1546,3 @@ const { get, set } = factory(dep.track.bind(dep), dep.trigger.bind(dep));

this._defaultValue = _defaultValue;
this.__v_isRef = true;
this["__v_isRef"] = true;
}

@@ -1556,4 +1563,4 @@ get value() {

this._getter = _getter;
this.__v_isRef = true;
this.__v_isReadonly = true;
this["__v_isRef"] = true;
this["__v_isReadonly"] = true;
}

@@ -1595,3 +1602,3 @@ get value() {

*/
this.__v_isRef = true;
this["__v_isRef"] = true;
// A computed is also a subscriber that tracks other deps

@@ -1616,3 +1623,3 @@ /**

this.effect = this;
this.__v_isReadonly = !setter;
this["__v_isReadonly"] = !setter;
this.isSSR = isSSR;

@@ -1682,3 +1689,4 @@ }

"IS_SHALLOW": "__v_isShallow",
"RAW": "__v_raw"
"RAW": "__v_raw",
"IS_REF": "__v_isRef"
};

@@ -1685,0 +1693,0 @@

/**
* @vue/reactivity v3.5.0-alpha.2
* @vue/reactivity v3.5.0-alpha.3
* (c) 2018-present Yuxi (Evan) You and Vue contributors
* @license MIT
**/
var VueReactivity=function(t){"use strict";
/*! #__NO_SIDE_EFFECTS__ */function e(t,e){const s=new Set(t.split(","));return t=>s.has(t)}const s=Object.assign,n=Object.prototype.hasOwnProperty,i=(t,e)=>n.call(t,e),r=Array.isArray,o=t=>"[object Map]"===f(t),c=t=>"function"==typeof t,u=t=>"symbol"==typeof t,a=t=>null!==t&&"object"==typeof t,l=Object.prototype.toString,f=t=>l.call(t),h=t=>f(t).slice(8,-1),p=t=>"string"==typeof t&&"NaN"!==t&&"-"!==t[0]&&""+parseInt(t,10)===t,d=(t,e)=>!Object.is(t,e);let v,_;class g{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=v,!t&&v&&(this.index=(v.scopes||(v.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){const e=v;try{return v=this,t()}finally{v=e}}}on(){v=this}off(){v=this.parent}stop(t){if(this._active){let e,s;for(e=0,s=this.effects.length;e<s;e++)this.effects[e].stop();for(e=0,s=this.cleanups.length;e<s;e++)this.cleanups[e]();if(this.scopes)for(e=0,s=this.scopes.length;e<s;e++)this.scopes[e].stop(!0);if(!this.detached&&this.parent&&!t){const t=this.parent.scopes.pop();t&&t!==this&&(this.parent.scopes[this.index]=t,t.index=this.index)}this.parent=void 0,this._active=!1}}}class y{constructor(t){this.fn=t,this.deps=void 0,this.depsTail=void 0,this.flags=5,this.nextEffect=void 0,this.cleanup=void 0,this.scheduler=void 0,v&&v.active&&v.effects.push(this)}notify(){if(!(2&this.flags)||32&this.flags)return 64&this.flags?this.trigger():void(8&this.flags||(this.flags|=8,this.nextEffect=R,R=this))}run(){if(!(1&this.flags))return this.fn();this.flags|=2,j(this),x(this);const t=_,e=A;_=this,A=!0;try{return this.fn()}finally{E(this),_=t,A=e,this.flags&=-3}}stop(){if(1&this.flags){for(let t=this.deps;t;t=t.nextDep)D(t);this.deps=this.depsTail=void 0,j(this),this.onStop&&this.onStop(),this.flags&=-2}}trigger(){this.scheduler?this.scheduler():this.runIfDirty()}runIfDirty(){T(this)&&this.run()}get dirty(){return T(this)}}let R,w=0;function b(){w++}function S(){if(w>1)return void w--;let t;for(;R;){let s=R;for(R=void 0;s;){const n=s.nextEffect;if(s.nextEffect=void 0,s.flags&=-9,1&s.flags)try{s.trigger()}catch(e){t||(t=e)}s=n}}if(w--,t)throw t}function x(t){for(let e=t.deps;e;e=e.nextDep)e.version=-1,e.prevActiveLink=e.dep.activeLink,e.dep.activeLink=e}function E(t){let e,s=t.depsTail;for(let n=s;n;n=n.prevDep)-1===n.version?(n===s&&(s=n.prevDep),D(n),m(n)):e=n,n.dep.activeLink=n.prevActiveLink,n.prevActiveLink=void 0;t.deps=e,t.depsTail=s}function T(t){for(let e=t.deps;e;e=e.nextDep)if(e.dep.version!==e.version||e.dep.computed&&!1===k(e.dep.computed)||e.dep.version!==e.version)return!0;return!!t._dirty}function k(t){if(2&t.flags)return!1;if(4&t.flags&&!(16&t.flags))return;if(t.flags&=-17,t.globalVersion===N)return;t.globalVersion=N;const e=t.dep;if(t.flags|=2,e.version>0&&!t.isSSR&&!T(t))return void(t.flags&=-3);const s=_,n=A;_=t,A=!0;try{x(t);const s=t.fn();(0===e.version||d(s,t._value))&&(t._value=s,e.version++)}catch(i){throw e.version++,i}finally{_=s,A=n,E(t),t.flags&=-3}}function D(t){const{dep:e,prevSub:s,nextSub:n}=t;if(s&&(s.nextSub=n,t.prevSub=void 0),n&&(n.prevSub=s,t.nextSub=void 0),e.subs===t&&(e.subs=s),!e.subs&&e.computed){e.computed.flags&=-5;for(let t=e.computed.deps;t;t=t.nextDep)D(t)}}function m(t){const{prevDep:e,nextDep:s}=t;e&&(e.nextDep=s,t.prevDep=void 0),s&&(s.prevDep=e,t.nextDep=void 0)}let A=!0;const O=[];function I(){O.push(A),A=!1}function L(){const t=O.pop();A=void 0===t||t}function j(t){const{cleanup:e}=t;if(t.cleanup=void 0,e){const t=_;_=void 0;try{e()}finally{_=t}}}let N=0;class P{constructor(t){this.computed=t,this.version=0,this.activeLink=void 0,this.subs=void 0}track(t){if(!_||!A)return;let e=this.activeLink;if(void 0===e||e.sub!==_)e=this.activeLink={dep:this,sub:_,version:this.version,nextDep:void 0,prevDep:void 0,nextSub:void 0,prevSub:void 0,prevActiveLink:void 0},_.deps?(e.prevDep=_.depsTail,_.depsTail.nextDep=e,_.depsTail=e):_.deps=_.depsTail=e,4&_.flags&&V(e);else if(-1===e.version&&(e.version=this.version,e.nextDep)){const t=e.nextDep;t.prevDep=e.prevDep,e.prevDep&&(e.prevDep.nextDep=t),e.prevDep=_.depsTail,e.nextDep=void 0,_.depsTail.nextDep=e,_.depsTail=e,_.deps===e&&(_.deps=t)}return e}trigger(t){this.version++,N++,this.notify(t)}notify(t){b();try{0;for(let t=this.subs;t;t=t.prevSub)t.sub.notify()}finally{S()}}}function V(t){const e=t.dep.computed;if(e&&!t.dep.subs){e.flags|=20;for(let t=e.deps;t;t=t.nextDep)V(t)}const s=t.dep.subs;s!==t&&(t.prevSub=s,s&&(s.nextSub=t)),t.dep.subs=t}const C=new WeakMap,W=Symbol(""),M=Symbol(""),K=Symbol("");function Y(t,e,s){if(A&&_){let e=C.get(t);e||C.set(t,e=new Map);let n=e.get(s);n||e.set(s,n=new P),n.track()}}function z(t,e,s,n,i,c){const a=C.get(t);if(!a)return void N++;let l=[];if("clear"===e)l=[...a.values()];else{const i=r(t),c=i&&p(s);if(i&&"length"===s){const t=Number(n);a.forEach(((e,s)=>{("length"===s||s===K||!u(s)&&s>=t)&&l.push(e)}))}else{const n=t=>t&&l.push(t);switch(void 0!==s&&n(a.get(s)),c&&n(a.get(K)),e){case"add":i?c&&n(a.get("length")):(n(a.get(W)),o(t)&&n(a.get(M)));break;case"delete":i||(n(a.get(W)),o(t)&&n(a.get(M)));break;case"set":o(t)&&n(a.get(W))}}}b();for(const r of l)r.trigger();S()}function G(t){const e=Kt(t);return e===t?e:(Y(e,0,K),Wt(t)?e:e.map(Yt))}function F(t){return Y(t=Kt(t),0,K),t}const H={__proto__:null,[Symbol.iterator](){return U(this,Symbol.iterator,Yt)},concat(...t){return G(this).concat(...t.map((t=>G(t))))},entries(){return U(this,"entries",(t=>(t[1]=Yt(t[1]),t)))},every(t,e){return B(this,"every",t,e)},filter(t,e){const s=B(this,"filter",t,e);return Mt(this)&&!Wt(this)?s.map(Yt):s},find(t,e){const s=B(this,"find",t,e);return Mt(this)&&!Wt(this)?Yt(s):s},findIndex(t,e){return B(this,"findIndex",t,e)},findLast(t,e){const s=B(this,"findLast",t,e);return Mt(this)&&!Wt(this)?Yt(s):s},findLastIndex(t,e){return B(this,"findLastIndex",t,e)},forEach(t,e){return B(this,"forEach",t,e)},includes(...t){return J(this,"includes",t)},indexOf(...t){return J(this,"indexOf",t)},join(t){return G(this).join(t)},lastIndexOf(...t){return J(this,"lastIndexOf",t)},map(t,e){return B(this,"map",t,e)},pop(){return Q(this,"pop")},push(...t){return Q(this,"push",t)},reduce(t,...e){return q(this,"reduce",t,e)},reduceRight(t,...e){return q(this,"reduceRight",t,e)},shift(){return Q(this,"shift")},some(t,e){return B(this,"some",t,e)},splice(...t){return Q(this,"splice",t)},toReversed(){return G(this).toReversed()},toSorted(t){return G(this).toSorted(t)},toSpliced(...t){return G(this).toSpliced(...t)},unshift(...t){return Q(this,"unshift",t)},values(){return U(this,"values",Yt)}};function U(t,e,s){const n=F(t),i=n[e]();return n===t||Wt(t)||(i._next=i.next,i.next=()=>{const t=i._next();return t.value&&(t.value=s(t.value)),t}),i}function B(t,e,s,n){const i=F(t);let r=s;return i!==t&&(Wt(t)?s.length>2&&(r=function(e,n){return s.call(this,e,n,t)}):r=function(e,n){return s.call(this,Yt(e),n,t)}),i[e](r,n)}function q(t,e,s,n){const i=F(t);let r=s;return i!==t&&(Wt(t)?s.length>3&&(r=function(e,n,i){return s.call(this,e,n,i,t)}):r=function(e,n,i){return s.call(this,e,Yt(n),i,t)}),i[e](r,...n)}function J(t,e,s){const n=Kt(t);Y(n,0,K);const i=n[e](...s);return-1!==i&&!1!==i||!Mt(s[0])?i:(s[0]=Kt(s[0]),n[e](...s))}function Q(t,e,s=[]){I(),b();const n=Kt(t)[e].apply(t,s);return S(),L(),n}const X=e("__proto__,__v_isRef,__isVue"),Z=new Set(Object.getOwnPropertyNames(Symbol).filter((t=>"arguments"!==t&&"caller"!==t)).map((t=>Symbol[t])).filter(u));function $(t){u(t)||(t=String(t));const e=Kt(this);return Y(e,0,t),e.hasOwnProperty(t)}class tt{constructor(t=!1,e=!1){this._isReadonly=t,this._isShallow=e}get(t,e,s){const n=this._isReadonly,i=this._isShallow;if("__v_isReactive"===e)return!n;if("__v_isReadonly"===e)return n;if("__v_isShallow"===e)return i;if("__v_raw"===e)return s===(n?i?Lt:It:i?Ot:At).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(s)?t:void 0;const o=r(t);if(!n){let t;if(o&&(t=H[e]))return t;if("hasOwnProperty"===e)return $}const c=Reflect.get(t,e,Gt(t)?t:s);return(u(e)?Z.has(e):X(e))?c:(n||Y(t,0,e),i?c:Gt(c)?o&&p(e)?c:c.value:a(c)?n?Nt(c):jt(c):c)}}class et extends tt{constructor(t=!1){super(!1,t)}set(t,e,s,n){let o=t[e];if(!this._isShallow){const e=Ct(o);if(Wt(s)||Ct(s)||(o=Kt(o),s=Kt(s)),!r(t)&&Gt(o)&&!Gt(s))return!e&&(o.value=s,!0)}const c=r(t)&&p(e)?Number(e)<t.length:i(t,e),u=Reflect.set(t,e,s,n);return t===Kt(n)&&(c?d(s,o)&&z(t,"set",e,s):z(t,"add",e,s)),u}deleteProperty(t,e){const s=i(t,e),n=Reflect.deleteProperty(t,e);return n&&s&&z(t,"delete",e,void 0),n}has(t,e){const s=Reflect.has(t,e);return u(e)&&Z.has(e)||Y(t,0,e),s}ownKeys(t){return Y(t,0,r(t)?"length":W),Reflect.ownKeys(t)}}class st extends tt{constructor(t=!1){super(!0,t)}set(t,e){return!0}deleteProperty(t,e){return!0}}const nt=new et,it=new st,rt=new et(!0),ot=new st(!0),ct=t=>t,ut=t=>Reflect.getPrototypeOf(t);function at(t,e,s=!1,n=!1){const i=Kt(t=t.__v_raw),r=Kt(e);s||(d(e,r)&&Y(i,0,e),Y(i,0,r));const{has:o}=ut(i),c=n?ct:s?zt:Yt;return o.call(i,e)?c(t.get(e)):o.call(i,r)?c(t.get(r)):void(t!==i&&t.get(e))}function lt(t,e=!1){const s=this.__v_raw,n=Kt(s),i=Kt(t);return e||(d(t,i)&&Y(n,0,t),Y(n,0,i)),t===i?s.has(t):s.has(t)||s.has(i)}function ft(t,e=!1){return t=t.__v_raw,!e&&Y(Kt(t),0,W),Reflect.get(t,"size",t)}function ht(t){t=Kt(t);const e=Kt(this);return ut(e).has.call(e,t)||(e.add(t),z(e,"add",t,t)),this}function pt(t,e){e=Kt(e);const s=Kt(this),{has:n,get:i}=ut(s);let r=n.call(s,t);r||(t=Kt(t),r=n.call(s,t));const o=i.call(s,t);return s.set(t,e),r?d(e,o)&&z(s,"set",t,e):z(s,"add",t,e),this}function dt(t){const e=Kt(this),{has:s,get:n}=ut(e);let i=s.call(e,t);i||(t=Kt(t),i=s.call(e,t)),n&&n.call(e,t);const r=e.delete(t);return i&&z(e,"delete",t,void 0),r}function vt(){const t=Kt(this),e=0!==t.size,s=t.clear();return e&&z(t,"clear",void 0,void 0),s}function _t(t,e){return function(s,n){const i=this,r=i.__v_raw,o=Kt(r),c=e?ct:t?zt:Yt;return!t&&Y(o,0,W),r.forEach(((t,e)=>s.call(n,c(t),c(e),i)))}}function gt(t,e,s){return function(...n){const i=this.__v_raw,r=Kt(i),c=o(r),u="entries"===t||t===Symbol.iterator&&c,a="keys"===t&&c,l=i[t](...n),f=s?ct:e?zt:Yt;return!e&&Y(r,0,a?M:W),{next(){const{value:t,done:e}=l.next();return e?{value:t,done:e}:{value:u?[f(t[0]),f(t[1])]:f(t),done:e}},[Symbol.iterator](){return this}}}}function yt(t){return function(...e){return"delete"!==t&&("clear"===t?void 0:this)}}function Rt(){const t={get(t){return at(this,t)},get size(){return ft(this)},has:lt,add:ht,set:pt,delete:dt,clear:vt,forEach:_t(!1,!1)},e={get(t){return at(this,t,!1,!0)},get size(){return ft(this)},has:lt,add:ht,set:pt,delete:dt,clear:vt,forEach:_t(!1,!0)},s={get(t){return at(this,t,!0)},get size(){return ft(this,!0)},has(t){return lt.call(this,t,!0)},add:yt("add"),set:yt("set"),delete:yt("delete"),clear:yt("clear"),forEach:_t(!0,!1)},n={get(t){return at(this,t,!0,!0)},get size(){return ft(this,!0)},has(t){return lt.call(this,t,!0)},add:yt("add"),set:yt("set"),delete:yt("delete"),clear:yt("clear"),forEach:_t(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach((i=>{t[i]=gt(i,!1,!1),s[i]=gt(i,!0,!1),e[i]=gt(i,!1,!0),n[i]=gt(i,!0,!0)})),[t,s,e,n]}const[wt,bt,St,xt]=Rt();function Et(t,e){const s=e?t?xt:St:t?bt:wt;return(e,n,r)=>"__v_isReactive"===n?!t:"__v_isReadonly"===n?t:"__v_raw"===n?e:Reflect.get(i(s,n)&&n in e?s:e,n,r)}const Tt={get:Et(!1,!1)},kt={get:Et(!1,!0)},Dt={get:Et(!0,!1)},mt={get:Et(!0,!0)},At=new WeakMap,Ot=new WeakMap,It=new WeakMap,Lt=new WeakMap;function jt(t){return Ct(t)?t:Pt(t,!1,nt,Tt,At)}function Nt(t){return Pt(t,!0,it,Dt,It)}function Pt(t,e,s,n,i){if(!a(t))return t;if(t.__v_raw&&(!e||!t.__v_isReactive))return t;const r=i.get(t);if(r)return r;const o=(c=t).__v_skip||!Object.isExtensible(c)?0:function(t){switch(t){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}(h(c));var c;if(0===o)return t;const u=new Proxy(t,2===o?n:s);return i.set(t,u),u}function Vt(t){return Ct(t)?Vt(t.__v_raw):!(!t||!t.__v_isReactive)}function Ct(t){return!(!t||!t.__v_isReadonly)}function Wt(t){return!(!t||!t.__v_isShallow)}function Mt(t){return!!t&&!!t.__v_raw}function Kt(t){const e=t&&t.__v_raw;return e?Kt(e):t}const Yt=t=>a(t)?jt(t):t,zt=t=>a(t)?Nt(t):t;function Gt(t){return!!t&&!0===t.__v_isRef}function Ft(t){return Ht(t,!1)}function Ht(t,e){return Gt(t)?t:new Ut(t,e)}class Ut{constructor(t,e){this.__v_isShallow=e,this.dep=new P,this.__v_isRef=!0,this._rawValue=e?t:Kt(t),this._value=e?t:Yt(t)}get value(){return this.dep.track(),this._value}set value(t){const e=this._rawValue,s=this.__v_isShallow||Wt(t)||Ct(t);t=s?t:Kt(t),d(t,e)&&(this._rawValue=t,this._value=s?t:Yt(t),this.dep.trigger())}}function Bt(t){return Gt(t)?t.value:t}const qt={get:(t,e,s)=>Bt(Reflect.get(t,e,s)),set:(t,e,s,n)=>{const i=t[e];return Gt(i)&&!Gt(s)?(i.value=s,!0):Reflect.set(t,e,s,n)}};class Jt{constructor(t){this.__v_isRef=!0;const e=this.dep=new P,{get:s,set:n}=t(e.track.bind(e),e.trigger.bind(e));this._get=s,this._set=n}get value(){return this._get()}set value(t){this._set(t)}}class Qt{constructor(t,e,s){this._object=t,this._key=e,this._defaultValue=s,this.__v_isRef=!0}get value(){const t=this._object[this._key];return void 0===t?this._defaultValue:t}set value(t){this._object[this._key]=t}get dep(){return t=Kt(this._object),e=this._key,null==(s=C.get(t))?void 0:s.get(e);var t,e,s}}class Xt{constructor(t){this._getter=t,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function Zt(t,e,s){const n=t[e];return Gt(n)?n:new Qt(t,e,s)}class $t{constructor(t,e,s){this.fn=t,this.setter=e,this._value=void 0,this.dep=new P(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=N-1,this.effect=this,this.__v_isReadonly=!e,this.isSSR=s}notify(){_!==this&&(this.flags|=16,this.dep.notify())}get value(){const t=this.dep.track();return k(this),t&&(t.version=this.dep.version),this._value}set value(t){this.setter&&this.setter(t)}}return t.ARRAY_ITERATE_KEY=K,t.EffectFlags={ACTIVE:1,1:"ACTIVE",RUNNING:2,2:"RUNNING",TRACKING:4,4:"TRACKING",NOTIFIED:8,8:"NOTIFIED",DIRTY:16,16:"DIRTY",ALLOW_RECURSE:32,32:"ALLOW_RECURSE",NO_BATCH:64,64:"NO_BATCH"},t.EffectScope=g,t.ITERATE_KEY=W,t.MAP_KEY_ITERATE_KEY=M,t.ReactiveEffect=y,t.ReactiveFlags={SKIP:"__v_skip",IS_REACTIVE:"__v_isReactive",IS_READONLY:"__v_isReadonly",IS_SHALLOW:"__v_isShallow",RAW:"__v_raw"},t.TrackOpTypes={GET:"get",HAS:"has",ITERATE:"iterate"},t.TriggerOpTypes={SET:"set",ADD:"add",DELETE:"delete",CLEAR:"clear"},t.computed=function(t,e,s=!1){let n,i;return c(t)?n=t:(n=t.get,i=t.set),new $t(n,i,s)},t.customRef=function(t){return new Jt(t)},t.effect=function(t,e){t.effect instanceof y&&(t=t.effect.fn);const n=new y(t);e&&s(n,e);try{n.run()}catch(r){throw n.stop(),r}const i=n.run.bind(n);return i.effect=n,i},t.effectScope=function(t){return new g(t)},t.enableTracking=function(){O.push(A),A=!0},t.getCurrentScope=function(){return v},t.isProxy=Mt,t.isReactive=Vt,t.isReadonly=Ct,t.isRef=Gt,t.isShallow=Wt,t.markRaw=function(t){return Object.isExtensible(t)&&((t,e,s,n=!1)=>{Object.defineProperty(t,e,{configurable:!0,enumerable:!1,writable:n,value:s})})(t,"__v_skip",!0),t},t.onEffectCleanup=function(t,e=!1){_ instanceof y&&(_.cleanup=t)},t.onScopeDispose=function(t,e=!1){v&&v.cleanups.push(t)},t.pauseTracking=I,t.proxyRefs=function(t){return Vt(t)?t:new Proxy(t,qt)},t.reactive=jt,t.reactiveReadArray=G,t.readonly=Nt,t.ref=Ft,t.resetTracking=L,t.shallowReactive=function(t){return Pt(t,!1,rt,kt,Ot)},t.shallowReadArray=F,t.shallowReadonly=function(t){return Pt(t,!0,ot,mt,Lt)},t.shallowRef=function(t){return Ht(t,!0)},t.stop=function(t){t.effect.stop()},t.toRaw=Kt,t.toReactive=Yt,t.toReadonly=zt,t.toRef=function(t,e,s){return Gt(t)?t:c(t)?new Xt(t):a(t)&&arguments.length>1?Zt(t,e,s):Ft(t)},t.toRefs=function(t){const e=r(t)?new Array(t.length):{};for(const s in t)e[s]=Zt(t,s);return e},t.toValue=function(t){return c(t)?t():Bt(t)},t.track=Y,t.trigger=z,t.triggerRef=function(t){t.dep.trigger()},t.unref=Bt,t}({});
**/var VueReactivity=function(e){"use strict";let t,i,r;let s=Object.assign,n=Object.prototype.hasOwnProperty,l=(e,t)=>n.call(e,t),a=Array.isArray,u=e=>"[object Map]"===d(e),o=e=>"function"==typeof e,c=e=>"string"==typeof e,h=e=>"symbol"==typeof e,f=e=>null!==e&&"object"==typeof e,p=Object.prototype.toString,d=e=>p.call(e),_=e=>d(e).slice(8,-1),v=e=>c(e)&&"NaN"!==e&&"-"!==e[0]&&""+parseInt(e,10)===e,g=(e,t)=>!Object.is(e,t),y=(e,t,i,r=!1)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:r,value:i})};class R{constructor(e=!1){this.detached=e,this._active=!0,this.effects=[],this.cleanups=[],this.parent=t,!e&&t&&(this.index=(t.scopes||(t.scopes=[])).push(this)-1)}get active(){return this._active}run(e){if(this._active){let i=t;try{return t=this,e()}finally{t=i}}}on(){t=this}off(){t=this.parent}stop(e){if(this._active){let t,i;for(t=0,i=this.effects.length;t<i;t++)this.effects[t].stop();for(t=0,i=this.cleanups.length;t<i;t++)this.cleanups[t]();if(this.scopes)for(t=0,i=this.scopes.length;t<i;t++)this.scopes[t].stop(!0);if(!this.detached&&this.parent&&!e){let e=this.parent.scopes.pop();e&&e!==this&&(this.parent.scopes[this.index]=e,e.index=this.index)}this.parent=void 0,this._active=!1}}}class w{constructor(e){this.fn=e,this.deps=void 0,this.depsTail=void 0,this.flags=5,this.nextEffect=void 0,this.cleanup=void 0,this.scheduler=void 0,t&&t.active&&t.effects.push(this)}notify(){if(!(2&this.flags)||32&this.flags){if(64&this.flags)return this.trigger();8&this.flags||(this.flags|=8,this.nextEffect=r,r=this)}}run(){if(!(1&this.flags))return this.fn();this.flags|=2,L(this),E(this);let e=i,t=m;i=this,m=!0;try{return this.fn()}finally{x(this),i=e,m=t,this.flags&=-3}}stop(){if(1&this.flags){for(let e=this.deps;e;e=e.nextDep)D(e);this.deps=this.depsTail=void 0,L(this),this.onStop&&this.onStop(),this.flags&=-2}}trigger(){this.scheduler?this.scheduler():this.runIfDirty()}runIfDirty(){T(this)&&this.run()}get dirty(){return T(this)}}let b=0;function S(){let e;if(b>1){b--;return}for(;r;){let t=r;for(r=void 0;t;){let i=t.nextEffect;if(t.nextEffect=void 0,t.flags&=-9,1&t.flags)try{t.trigger()}catch(t){e||(e=t)}t=i}}if(b--,e)throw e}function E(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function x(e){let t;let i=e.depsTail;for(let e=i;e;e=e.prevDep)-1===e.version?(e===i&&(i=e.prevDep),D(e),function(e){let{prevDep:t,nextDep:i}=e;t&&(t.nextDep=i,e.prevDep=void 0),i&&(i.prevDep=t,e.nextDep=void 0)}(e)):t=e,e.dep.activeLink=e.prevActiveLink,e.prevActiveLink=void 0;e.deps=t,e.depsTail=i}function T(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&!1===k(t.dep.computed)||t.dep.version!==t.version)return!0;return!!e._dirty}function k(e){if(2&e.flags)return!1;if(4&e.flags&&!(16&e.flags)||(e.flags&=-17,e.globalVersion===j))return;e.globalVersion=j;let t=e.dep;if(e.flags|=2,t.version>0&&!e.isSSR&&!T(e)){e.flags&=-3;return}let r=i,s=m;i=e,m=!0;try{E(e);let i=e.fn();(0===t.version||g(i,e._value))&&(e._value=i,t.version++)}catch(e){throw t.version++,e}finally{i=r,m=s,x(e),e.flags&=-3}}function D(e){let{dep:t,prevSub:i,nextSub:r}=e;if(i&&(i.nextSub=r,e.prevSub=void 0),r&&(r.prevSub=i,e.nextSub=void 0),t.subs===e&&(t.subs=i),!t.subs&&t.computed){t.computed.flags&=-5;for(let e=t.computed.deps;e;e=e.nextDep)D(e)}}let m=!0,A=[];function O(){A.push(m),m=!1}function I(){let e=A.pop();m=void 0===e||e}function L(e){let{cleanup:t}=e;if(e.cleanup=void 0,t){let e=i;i=void 0;try{t()}finally{i=e}}}let j=0;class N{constructor(e){this.computed=e,this.version=0,this.activeLink=void 0,this.subs=void 0}track(e){if(!i||!m)return;let t=this.activeLink;if(void 0===t||t.sub!==i)t=this.activeLink={dep:this,sub:i,version:this.version,nextDep:void 0,prevDep:void 0,nextSub:void 0,prevSub:void 0,prevActiveLink:void 0},i.deps?(t.prevDep=i.depsTail,i.depsTail.nextDep=t,i.depsTail=t):i.deps=i.depsTail=t,4&i.flags&&function e(t){let i=t.dep.computed;if(i&&!t.dep.subs){i.flags|=20;for(let t=i.deps;t;t=t.nextDep)e(t)}let r=t.dep.subs;r!==t&&(t.prevSub=r,r&&(r.nextSub=t)),t.dep.subs=t}(t);else if(-1===t.version&&(t.version=this.version,t.nextDep)){let e=t.nextDep;e.prevDep=t.prevDep,t.prevDep&&(t.prevDep.nextDep=e),t.prevDep=i.depsTail,t.nextDep=void 0,i.depsTail.nextDep=t,i.depsTail=t,i.deps===t&&(i.deps=e)}return t}trigger(e){this.version++,j++,this.notify(e)}notify(e){b++;try{for(let e=this.subs;e;e=e.prevSub)e.sub.notify()}finally{S()}}}let P=new WeakMap,V=Symbol(""),C=Symbol(""),W=Symbol("");function M(e,t,r){if(m&&i){let t=P.get(e);t||P.set(e,t=new Map);let i=t.get(r);i||t.set(r,i=new N),i.track()}}function K(e,t,i,r,s,n){let l=P.get(e);if(!l){j++;return}let o=[];if("clear"===t)o=[...l.values()];else{let s=a(e),n=s&&v(i);if(s&&"length"===i){let e=Number(r);l.forEach((t,i)=>{("length"===i||i===W||!h(i)&&i>=e)&&o.push(t)})}else{let r=e=>e&&o.push(e);switch(void 0!==i&&r(l.get(i)),n&&r(l.get(W)),t){case"add":s?n&&r(l.get("length")):(r(l.get(V)),u(e)&&r(l.get(C)));break;case"delete":!s&&(r(l.get(V)),u(e)&&r(l.get(C)));break;case"set":u(e)&&r(l.get(V))}}}for(let e of(b++,o))e.trigger();S()}function Y(e){let t=eC(e);return t===e?t:(M(t,"iterate",W),eP(e)?t:t.map(eW))}function z(e){return M(e=eC(e),"iterate",W),e}let F={__proto__:null,[Symbol.iterator](){return G(this,Symbol.iterator,eW)},concat(...e){return Y(this).concat(...e.map(e=>Y(e)))},entries(){return G(this,"entries",e=>(e[1]=eW(e[1]),e))},every(e,t){return H(this,"every",e,t)},filter(e,t){let i=H(this,"filter",e,t);return eV(this)&&!eP(this)?i.map(eW):i},find(e,t){let i=H(this,"find",e,t);return eV(this)&&!eP(this)?eW(i):i},findIndex(e,t){return H(this,"findIndex",e,t)},findLast(e,t){let i=H(this,"findLast",e,t);return eV(this)&&!eP(this)?eW(i):i},findLastIndex(e,t){return H(this,"findLastIndex",e,t)},forEach(e,t){return H(this,"forEach",e,t)},includes(...e){return B(this,"includes",e)},indexOf(...e){return B(this,"indexOf",e)},join(e){return Y(this).join(e)},lastIndexOf(...e){return B(this,"lastIndexOf",e)},map(e,t){return H(this,"map",e,t)},pop(){return q(this,"pop")},push(...e){return q(this,"push",e)},reduce(e,...t){return U(this,"reduce",e,t)},reduceRight(e,...t){return U(this,"reduceRight",e,t)},shift(){return q(this,"shift")},some(e,t){return H(this,"some",e,t)},splice(...e){return q(this,"splice",e)},toReversed(){return Y(this).toReversed()},toSorted(e){return Y(this).toSorted(e)},toSpliced(...e){return Y(this).toSpliced(...e)},unshift(...e){return q(this,"unshift",e)},values(){return G(this,"values",eW)}};function G(e,t,i){let r=z(e),s=r[t]();return r===e||eP(e)||(s._next=s.next,s.next=()=>{let e=s._next();return e.value&&(e.value=i(e.value)),e}),s}function H(e,t,i,r){let s=z(e),n=i;return s!==e&&(eP(e)?i.length>2&&(n=function(t,r){return i.call(this,t,r,e)}):n=function(t,r){return i.call(this,eW(t),r,e)}),s[t](n,r)}function U(e,t,i,r){let s=z(e),n=i;return s!==e&&(eP(e)?i.length>3&&(n=function(t,r,s){return i.call(this,t,r,s,e)}):n=function(t,r,s){return i.call(this,t,eW(r),s,e)}),s[t](n,...r)}function B(e,t,i){let r=eC(e);M(r,"iterate",W);let s=r[t](...i);return(-1===s||!1===s)&&eV(i[0])?(i[0]=eC(i[0]),r[t](...i)):s}function q(e,t,i=[]){O(),b++;let r=eC(e)[t].apply(e,i);return S(),I(),r}let J=/*! #__NO_SIDE_EFFECTS__ */function(e,t){let i=new Set(e.split(","));return e=>i.has(e)}("__proto__,__v_isRef,__isVue"),Q=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>"arguments"!==e&&"caller"!==e).map(e=>Symbol[e]).filter(h));function X(e){h(e)||(e=String(e));let t=eC(this);return M(t,"has",e),t.hasOwnProperty(e)}class Z{constructor(e=!1,t=!1){this._isReadonly=e,this._isShallow=t}get(e,t,i){let r=this._isReadonly,s=this._isShallow;if("__v_isReactive"===t)return!r;if("__v_isReadonly"===t)return r;if("__v_isShallow"===t)return s;if("__v_raw"===t)return i===(r?s?eA:em:s?eD:ek).get(e)||Object.getPrototypeOf(e)===Object.getPrototypeOf(i)?e:void 0;let n=a(e);if(!r){let e;if(n&&(e=F[t]))return e;if("hasOwnProperty"===t)return X}let l=Reflect.get(e,t,eK(e)?e:i);return(h(t)?Q.has(t):J(t))?l:(r||M(e,"get",t),s)?l:eK(l)?n&&v(t)?l:l.value:f(l)?r?eI(l):eO(l):l}}class $ extends Z{constructor(e=!1){super(!1,e)}set(e,t,i,r){let s=e[t];if(!this._isShallow){let t=eN(s);if(eP(i)||eN(i)||(s=eC(s),i=eC(i)),!a(e)&&eK(s)&&!eK(i))return!t&&(s.value=i,!0)}let n=a(e)&&v(t)?Number(t)<e.length:l(e,t),u=Reflect.set(e,t,i,r);return e===eC(r)&&(n?g(i,s)&&K(e,"set",t,i):K(e,"add",t,i)),u}deleteProperty(e,t){let i=l(e,t);e[t];let r=Reflect.deleteProperty(e,t);return r&&i&&K(e,"delete",t,void 0),r}has(e,t){let i=Reflect.has(e,t);return h(t)&&Q.has(t)||M(e,"has",t),i}ownKeys(e){return M(e,"iterate",a(e)?"length":V),Reflect.ownKeys(e)}}class ee extends Z{constructor(e=!1){super(!0,e)}set(e,t){return!0}deleteProperty(e,t){return!0}}let et=new $,ei=new ee,er=new $(!0),es=new ee(!0),en=e=>e,el=e=>Reflect.getPrototypeOf(e);function ea(e,t,i=!1,r=!1){let s=eC(e=e.__v_raw),n=eC(t);i||(g(t,n)&&M(s,"get",t),M(s,"get",n));let{has:l}=el(s),a=r?en:i?eM:eW;return l.call(s,t)?a(e.get(t)):l.call(s,n)?a(e.get(n)):void(e!==s&&e.get(t))}function eu(e,t=!1){let i=this.__v_raw,r=eC(i),s=eC(e);return t||(g(e,s)&&M(r,"has",e),M(r,"has",s)),e===s?i.has(e):i.has(e)||i.has(s)}function eo(e,t=!1){return e=e.__v_raw,t||M(eC(e),"iterate",V),Reflect.get(e,"size",e)}function ec(e,t=!1){t||eP(e)||eN(e)||(e=eC(e));let i=eC(this);return el(i).has.call(i,e)||(i.add(e),K(i,"add",e,e)),this}function eh(e,t,i=!1){i||eP(t)||eN(t)||(t=eC(t));let r=eC(this),{has:s,get:n}=el(r),l=s.call(r,e);l||(e=eC(e),l=s.call(r,e));let a=n.call(r,e);return r.set(e,t),l?g(t,a)&&K(r,"set",e,t):K(r,"add",e,t),this}function ef(e){let t=eC(this),{has:i,get:r}=el(t),s=i.call(t,e);s||(e=eC(e),s=i.call(t,e)),r&&r.call(t,e);let n=t.delete(e);return s&&K(t,"delete",e,void 0),n}function ep(){let e=eC(this),t=0!==e.size,i=e.clear();return t&&K(e,"clear",void 0,void 0),i}function ed(e,t){return function(i,r){let s=this,n=s.__v_raw,l=eC(n),a=t?en:e?eM:eW;return e||M(l,"iterate",V),n.forEach((e,t)=>i.call(r,a(e),a(t),s))}}function e_(e,t,i){return function(...r){let s=this.__v_raw,n=eC(s),l=u(n),a="entries"===e||e===Symbol.iterator&&l,o=s[e](...r),c=i?en:t?eM:eW;return t||M(n,"iterate","keys"===e&&l?C:V),{next(){let{value:e,done:t}=o.next();return t?{value:e,done:t}:{value:a?[c(e[0]),c(e[1])]:c(e),done:t}},[Symbol.iterator](){return this}}}}function ev(e){return function(...t){return"delete"!==e&&("clear"===e?void 0:this)}}let[eg,ey,eR,ew]=function(){let e={get(e){return ea(this,e)},get size(){return eo(this)},has:eu,add:ec,set:eh,delete:ef,clear:ep,forEach:ed(!1,!1)},t={get(e){return ea(this,e,!1,!0)},get size(){return eo(this)},has:eu,add(e){return ec.call(this,e,!0)},set(e,t){return eh.call(this,e,t,!0)},delete:ef,clear:ep,forEach:ed(!1,!0)},i={get(e){return ea(this,e,!0)},get size(){return eo(this,!0)},has(e){return eu.call(this,e,!0)},add:ev("add"),set:ev("set"),delete:ev("delete"),clear:ev("clear"),forEach:ed(!0,!1)},r={get(e){return ea(this,e,!0,!0)},get size(){return eo(this,!0)},has(e){return eu.call(this,e,!0)},add:ev("add"),set:ev("set"),delete:ev("delete"),clear:ev("clear"),forEach:ed(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(s=>{e[s]=e_(s,!1,!1),i[s]=e_(s,!0,!1),t[s]=e_(s,!1,!0),r[s]=e_(s,!0,!0)}),[e,i,t,r]}();function eb(e,t){let i=t?e?ew:eR:e?ey:eg;return(t,r,s)=>"__v_isReactive"===r?!e:"__v_isReadonly"===r?e:"__v_raw"===r?t:Reflect.get(l(i,r)&&r in t?i:t,r,s)}let eS={get:eb(!1,!1)},eE={get:eb(!1,!0)},ex={get:eb(!0,!1)},eT={get:eb(!0,!0)},ek=new WeakMap,eD=new WeakMap,em=new WeakMap,eA=new WeakMap;function eO(e){return eN(e)?e:eL(e,!1,et,eS,ek)}function eI(e){return eL(e,!0,ei,ex,em)}function eL(e,t,i,r,s){if(!f(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;let n=s.get(e);if(n)return n;let l=e.__v_skip||!Object.isExtensible(e)?0:function(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}(_(e));if(0===l)return e;let a=new Proxy(e,2===l?r:i);return s.set(e,a),a}function ej(e){return eN(e)?ej(e.__v_raw):!!(e&&e.__v_isReactive)}function eN(e){return!!(e&&e.__v_isReadonly)}function eP(e){return!!(e&&e.__v_isShallow)}function eV(e){return!!e&&!!e.__v_raw}function eC(e){let t=e&&e.__v_raw;return t?eC(t):e}let eW=e=>f(e)?eO(e):e,eM=e=>f(e)?eI(e):e;function eK(e){return!!e&&!0===e.__v_isRef}function eY(e){return ez(e,!1)}function ez(e,t){return eK(e)?e:new eF(e,t)}class eF{constructor(e,t){this.dep=new N,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=t?e:eC(e),this._value=t?e:eW(e),this.__v_isShallow=t}get value(){return this.dep.track(),this._value}set value(e){let t=this._rawValue,i=this.__v_isShallow||eP(e)||eN(e);g(e=i?e:eC(e),t)&&(this._rawValue=e,this._value=i?e:eW(e),this.dep.trigger())}}function eG(e){return eK(e)?e.value:e}let eH={get:(e,t,i)=>eG(Reflect.get(e,t,i)),set:(e,t,i,r)=>{let s=e[t];return eK(s)&&!eK(i)?(s.value=i,!0):Reflect.set(e,t,i,r)}};class eU{constructor(e){this.__v_isRef=!0;let t=this.dep=new N,{get:i,set:r}=e(t.track.bind(t),t.trigger.bind(t));this._get=i,this._set=r}get value(){return this._get()}set value(e){this._set(e)}}class eB{constructor(e,t,i){this._object=e,this._key=t,this._defaultValue=i,this.__v_isRef=!0}get value(){let e=this._object[this._key];return void 0===e?this._defaultValue:e}set value(e){this._object[this._key]=e}get dep(){var e,t,i;return e=eC(this._object),t=this._key,null==(i=P.get(e))?void 0:i.get(t)}}class eq{constructor(e){this._getter=e,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function eJ(e,t,i){let r=e[t];return eK(r)?r:new eB(e,t,i)}class eQ{constructor(e,t,i){this.fn=e,this.setter=t,this._value=void 0,this.dep=new N(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=j-1,this.effect=this,this.__v_isReadonly=!t,this.isSSR=i}notify(){i!==this&&(this.flags|=16,this.dep.notify())}get value(){let e=this.dep.track();return k(this),e&&(e.version=this.dep.version),this._value}set value(e){this.setter&&this.setter(e)}}return e.ARRAY_ITERATE_KEY=W,e.EffectFlags={ACTIVE:1,1:"ACTIVE",RUNNING:2,2:"RUNNING",TRACKING:4,4:"TRACKING",NOTIFIED:8,8:"NOTIFIED",DIRTY:16,16:"DIRTY",ALLOW_RECURSE:32,32:"ALLOW_RECURSE",NO_BATCH:64,64:"NO_BATCH"},e.EffectScope=R,e.ITERATE_KEY=V,e.MAP_KEY_ITERATE_KEY=C,e.ReactiveEffect=w,e.ReactiveFlags={SKIP:"__v_skip",IS_REACTIVE:"__v_isReactive",IS_READONLY:"__v_isReadonly",IS_SHALLOW:"__v_isShallow",RAW:"__v_raw",IS_REF:"__v_isRef"},e.TrackOpTypes={GET:"get",HAS:"has",ITERATE:"iterate"},e.TriggerOpTypes={SET:"set",ADD:"add",DELETE:"delete",CLEAR:"clear"},e.computed=function(e,t,i=!1){let r,s;return o(e)?r=e:(r=e.get,s=e.set),new eQ(r,s,i)},e.customRef=function(e){return new eU(e)},e.effect=function(e,t){e.effect instanceof w&&(e=e.effect.fn);let i=new w(e);t&&s(i,t);try{i.run()}catch(e){throw i.stop(),e}let r=i.run.bind(i);return r.effect=i,r},e.effectScope=function(e){return new R(e)},e.enableTracking=function(){A.push(m),m=!0},e.getCurrentScope=function(){return t},e.isProxy=eV,e.isReactive=ej,e.isReadonly=eN,e.isRef=eK,e.isShallow=eP,e.markRaw=function(e){return Object.isExtensible(e)&&y(e,"__v_skip",!0),e},e.onEffectCleanup=function(e,t=!1){i instanceof w&&(i.cleanup=e)},e.onScopeDispose=function(e,i=!1){t&&t.cleanups.push(e)},e.pauseTracking=O,e.proxyRefs=function(e){return ej(e)?e:new Proxy(e,eH)},e.reactive=eO,e.reactiveReadArray=Y,e.readonly=eI,e.ref=eY,e.resetTracking=I,e.shallowReactive=function(e){return eL(e,!1,er,eE,eD)},e.shallowReadArray=z,e.shallowReadonly=function(e){return eL(e,!0,es,eT,eA)},e.shallowRef=function(e){return ez(e,!0)},e.stop=function(e){e.effect.stop()},e.toRaw=eC,e.toReactive=eW,e.toReadonly=eM,e.toRef=function(e,t,i){return eK(e)?e:o(e)?new eq(e):f(e)&&arguments.length>1?eJ(e,t,i):eY(e)},e.toRefs=function(e){let t=a(e)?Array(e.length):{};for(let i in e)t[i]=eJ(e,i);return t},e.toValue=function(e){return o(e)?e():eG(e)},e.track=M,e.trigger=K,e.triggerRef=function(e){e.dep.trigger()},e.unref=eG,e}({});
{
"name": "@vue/reactivity",
"version": "3.5.0-alpha.2",
"version": "3.5.0-alpha.3",
"description": "@vue/reactivity",

@@ -53,4 +53,4 @@ "main": "index.js",

"dependencies": {
"@vue/shared": "3.5.0-alpha.2"
"@vue/shared": "3.5.0-alpha.3"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc