added gitignore & removed node_modules

This commit is contained in:
2026-01-12 10:57:35 -05:00
parent 3669dbfd51
commit ff88990fc7
4007 changed files with 1447 additions and 790893 deletions

View File

@@ -1,31 +1,31 @@
{
"hash": "0ae1090e",
"hash": "fc7df7ae",
"configHash": "958ea8b3",
"lockfileHash": "f82c4be4",
"browserHash": "2cfa3c99",
"lockfileHash": "8288924c",
"browserHash": "10324117",
"optimized": {
"vue": {
"src": "../../../../node_modules/vue/dist/vue.runtime.esm-bundler.js",
"file": "vue.js",
"fileHash": "24b3e33a",
"fileHash": "bd8236ef",
"needsInterop": false
},
"vitepress > @vue/devtools-api": {
"src": "../../../../node_modules/@vue/devtools-api/dist/index.js",
"file": "vitepress___@vue_devtools-api.js",
"fileHash": "e713bddf",
"fileHash": "00e04582",
"needsInterop": false
},
"vitepress > @vueuse/core": {
"src": "../../../../node_modules/@vueuse/core/dist/index.js",
"file": "vitepress___@vueuse_core.js",
"fileHash": "2722f210",
"fileHash": "d0bc2af8",
"needsInterop": false
}
},
"chunks": {
"chunk-TICTUL3T": {
"file": "chunk-TICTUL3T.js"
"chunk-ADVWCYKY": {
"file": "chunk-ADVWCYKY.js"
}
}
}

View File

@@ -876,13 +876,13 @@ function addSub(link) {
}
}
var targetMap = /* @__PURE__ */ new WeakMap();
var ITERATE_KEY = Symbol(
var ITERATE_KEY = /* @__PURE__ */ Symbol(
true ? "Object iterate" : ""
);
var MAP_KEY_ITERATE_KEY = Symbol(
var MAP_KEY_ITERATE_KEY = /* @__PURE__ */ Symbol(
true ? "Map keys iterate" : ""
);
var ARRAY_ITERATE_KEY = Symbol(
var ARRAY_ITERATE_KEY = /* @__PURE__ */ Symbol(
true ? "Array iterate" : ""
);
function track(target, type, key) {
@@ -2917,7 +2917,177 @@ function invokeDirectiveHook(vnode, prevVNode, instance, name) {
}
}
}
var TeleportEndKey = Symbol("_vte");
function provide(key, value) {
if (true) {
if (!currentInstance || currentInstance.isMounted) {
warn$1(`provide() can only be used inside setup().`);
}
}
if (currentInstance) {
let provides = currentInstance.provides;
const parentProvides = currentInstance.parent && currentInstance.parent.provides;
if (parentProvides === provides) {
provides = currentInstance.provides = Object.create(parentProvides);
}
provides[key] = value;
}
}
function inject(key, defaultValue, treatDefaultAsFactory = false) {
const instance = getCurrentInstance();
if (instance || currentApp) {
let provides = currentApp ? currentApp._context.provides : instance ? instance.parent == null || instance.ce ? instance.vnode.appContext && instance.vnode.appContext.provides : instance.parent.provides : void 0;
if (provides && key in provides) {
return provides[key];
} else if (arguments.length > 1) {
return treatDefaultAsFactory && isFunction(defaultValue) ? defaultValue.call(instance && instance.proxy) : defaultValue;
} else if (true) {
warn$1(`injection "${String(key)}" not found.`);
}
} else if (true) {
warn$1(`inject() can only be used inside setup() or functional components.`);
}
}
function hasInjectionContext() {
return !!(getCurrentInstance() || currentApp);
}
var ssrContextKey = /* @__PURE__ */ Symbol.for("v-scx");
var useSSRContext = () => {
{
const ctx = inject(ssrContextKey);
if (!ctx) {
warn$1(
`Server rendering context not provided. Make sure to only call useSSRContext() conditionally in the server build.`
);
}
return ctx;
}
};
function watchEffect(effect2, options) {
return doWatch(effect2, null, options);
}
function watchPostEffect(effect2, options) {
return doWatch(
effect2,
null,
true ? extend({}, options, { flush: "post" }) : { flush: "post" }
);
}
function watchSyncEffect(effect2, options) {
return doWatch(
effect2,
null,
true ? extend({}, options, { flush: "sync" }) : { flush: "sync" }
);
}
function watch2(source, cb, options) {
if (!isFunction(cb)) {
warn$1(
`\`watch(fn, options?)\` signature has been moved to a separate API. Use \`watchEffect(fn, options?)\` instead. \`watch\` now only supports \`watch(source, cb, options?) signature.`
);
}
return doWatch(source, cb, options);
}
function doWatch(source, cb, options = EMPTY_OBJ) {
const { immediate, deep, flush, once } = options;
if (!cb) {
if (immediate !== void 0) {
warn$1(
`watch() "immediate" option is only respected when using the watch(source, callback, options?) signature.`
);
}
if (deep !== void 0) {
warn$1(
`watch() "deep" option is only respected when using the watch(source, callback, options?) signature.`
);
}
if (once !== void 0) {
warn$1(
`watch() "once" option is only respected when using the watch(source, callback, options?) signature.`
);
}
}
const baseWatchOptions = extend({}, options);
if (true) baseWatchOptions.onWarn = warn$1;
const runsImmediately = cb && immediate || !cb && flush !== "post";
let ssrCleanup;
if (isInSSRComponentSetup) {
if (flush === "sync") {
const ctx = useSSRContext();
ssrCleanup = ctx.__watcherHandles || (ctx.__watcherHandles = []);
} else if (!runsImmediately) {
const watchStopHandle = () => {
};
watchStopHandle.stop = NOOP;
watchStopHandle.resume = NOOP;
watchStopHandle.pause = NOOP;
return watchStopHandle;
}
}
const instance = currentInstance;
baseWatchOptions.call = (fn, type, args) => callWithAsyncErrorHandling(fn, instance, type, args);
let isPre = false;
if (flush === "post") {
baseWatchOptions.scheduler = (job) => {
queuePostRenderEffect(job, instance && instance.suspense);
};
} else if (flush !== "sync") {
isPre = true;
baseWatchOptions.scheduler = (job, isFirstRun) => {
if (isFirstRun) {
job();
} else {
queueJob(job);
}
};
}
baseWatchOptions.augmentJob = (job) => {
if (cb) {
job.flags |= 4;
}
if (isPre) {
job.flags |= 2;
if (instance) {
job.id = instance.uid;
job.i = instance;
}
}
};
const watchHandle = watch(source, cb, baseWatchOptions);
if (isInSSRComponentSetup) {
if (ssrCleanup) {
ssrCleanup.push(watchHandle);
} else if (runsImmediately) {
watchHandle();
}
}
return watchHandle;
}
function instanceWatch(source, value, options) {
const publicThis = this.proxy;
const getter = isString(source) ? source.includes(".") ? createPathGetter(publicThis, source) : () => publicThis[source] : source.bind(publicThis, publicThis);
let cb;
if (isFunction(value)) {
cb = value;
} else {
cb = value.handler;
options = value;
}
const reset = setCurrentInstance(this);
const res = doWatch(getter, cb.bind(publicThis), options);
reset();
return res;
}
function createPathGetter(ctx, path) {
const segments = path.split(".");
return () => {
let cur = ctx;
for (let i = 0; i < segments.length && cur; i++) {
cur = cur[segments[i]];
}
return cur;
};
}
var TeleportEndKey = /* @__PURE__ */ Symbol("_vte");
var isTeleport = (type) => type.__isTeleport;
var isTeleportDisabled = (props) => props && (props.disabled || props.disabled === "");
var isTeleportDeferred = (props) => props && (props.defer || props.defer === "");
@@ -3276,8 +3446,8 @@ function prepareAnchor(target, vnode, createText, insert) {
}
return targetAnchor;
}
var leaveCbKey = Symbol("_leaveCb");
var enterCbKey = Symbol("_enterCb");
var leaveCbKey = /* @__PURE__ */ Symbol("_leaveCb");
var enterCbKey = /* @__PURE__ */ Symbol("_enterCb");
function useTransitionState() {
const state = {
isMounted: false,
@@ -4847,7 +5017,9 @@ var KeepAliveImpl = {
}
function pruneCache(filter) {
cache.forEach((vnode, key) => {
const name = getComponentName(vnode.type);
const name = getComponentName(
isAsyncWrapper(vnode) ? vnode.type.__asyncResolved || {} : vnode.type
);
if (name && !filter(name)) {
pruneCacheEntry(key);
}
@@ -5072,7 +5244,7 @@ var DIRECTIVES = "directives";
function resolveComponent(name, maybeSelfReference) {
return resolveAsset(COMPONENTS, name, true, maybeSelfReference) || name;
}
var NULL_DYNAMIC_COMPONENT = Symbol.for("v-ndc");
var NULL_DYNAMIC_COMPONENT = /* @__PURE__ */ Symbol.for("v-ndc");
function resolveDynamicComponent(component) {
if (isString(component)) {
return resolveAsset(COMPONENTS, component, false) || component;
@@ -6231,176 +6403,6 @@ If you want to remount the same app, move your app creation logic into a factory
};
}
var currentApp = null;
function provide(key, value) {
if (true) {
if (!currentInstance || currentInstance.isMounted) {
warn$1(`provide() can only be used inside setup().`);
}
}
if (currentInstance) {
let provides = currentInstance.provides;
const parentProvides = currentInstance.parent && currentInstance.parent.provides;
if (parentProvides === provides) {
provides = currentInstance.provides = Object.create(parentProvides);
}
provides[key] = value;
}
}
function inject(key, defaultValue, treatDefaultAsFactory = false) {
const instance = getCurrentInstance();
if (instance || currentApp) {
let provides = currentApp ? currentApp._context.provides : instance ? instance.parent == null || instance.ce ? instance.vnode.appContext && instance.vnode.appContext.provides : instance.parent.provides : void 0;
if (provides && key in provides) {
return provides[key];
} else if (arguments.length > 1) {
return treatDefaultAsFactory && isFunction(defaultValue) ? defaultValue.call(instance && instance.proxy) : defaultValue;
} else if (true) {
warn$1(`injection "${String(key)}" not found.`);
}
} else if (true) {
warn$1(`inject() can only be used inside setup() or functional components.`);
}
}
function hasInjectionContext() {
return !!(getCurrentInstance() || currentApp);
}
var ssrContextKey = Symbol.for("v-scx");
var useSSRContext = () => {
{
const ctx = inject(ssrContextKey);
if (!ctx) {
warn$1(
`Server rendering context not provided. Make sure to only call useSSRContext() conditionally in the server build.`
);
}
return ctx;
}
};
function watchEffect(effect2, options) {
return doWatch(effect2, null, options);
}
function watchPostEffect(effect2, options) {
return doWatch(
effect2,
null,
true ? extend({}, options, { flush: "post" }) : { flush: "post" }
);
}
function watchSyncEffect(effect2, options) {
return doWatch(
effect2,
null,
true ? extend({}, options, { flush: "sync" }) : { flush: "sync" }
);
}
function watch2(source, cb, options) {
if (!isFunction(cb)) {
warn$1(
`\`watch(fn, options?)\` signature has been moved to a separate API. Use \`watchEffect(fn, options?)\` instead. \`watch\` now only supports \`watch(source, cb, options?) signature.`
);
}
return doWatch(source, cb, options);
}
function doWatch(source, cb, options = EMPTY_OBJ) {
const { immediate, deep, flush, once } = options;
if (!cb) {
if (immediate !== void 0) {
warn$1(
`watch() "immediate" option is only respected when using the watch(source, callback, options?) signature.`
);
}
if (deep !== void 0) {
warn$1(
`watch() "deep" option is only respected when using the watch(source, callback, options?) signature.`
);
}
if (once !== void 0) {
warn$1(
`watch() "once" option is only respected when using the watch(source, callback, options?) signature.`
);
}
}
const baseWatchOptions = extend({}, options);
if (true) baseWatchOptions.onWarn = warn$1;
const runsImmediately = cb && immediate || !cb && flush !== "post";
let ssrCleanup;
if (isInSSRComponentSetup) {
if (flush === "sync") {
const ctx = useSSRContext();
ssrCleanup = ctx.__watcherHandles || (ctx.__watcherHandles = []);
} else if (!runsImmediately) {
const watchStopHandle = () => {
};
watchStopHandle.stop = NOOP;
watchStopHandle.resume = NOOP;
watchStopHandle.pause = NOOP;
return watchStopHandle;
}
}
const instance = currentInstance;
baseWatchOptions.call = (fn, type, args) => callWithAsyncErrorHandling(fn, instance, type, args);
let isPre = false;
if (flush === "post") {
baseWatchOptions.scheduler = (job) => {
queuePostRenderEffect(job, instance && instance.suspense);
};
} else if (flush !== "sync") {
isPre = true;
baseWatchOptions.scheduler = (job, isFirstRun) => {
if (isFirstRun) {
job();
} else {
queueJob(job);
}
};
}
baseWatchOptions.augmentJob = (job) => {
if (cb) {
job.flags |= 4;
}
if (isPre) {
job.flags |= 2;
if (instance) {
job.id = instance.uid;
job.i = instance;
}
}
};
const watchHandle = watch(source, cb, baseWatchOptions);
if (isInSSRComponentSetup) {
if (ssrCleanup) {
ssrCleanup.push(watchHandle);
} else if (runsImmediately) {
watchHandle();
}
}
return watchHandle;
}
function instanceWatch(source, value, options) {
const publicThis = this.proxy;
const getter = isString(source) ? source.includes(".") ? createPathGetter(publicThis, source) : () => publicThis[source] : source.bind(publicThis, publicThis);
let cb;
if (isFunction(value)) {
cb = value;
} else {
cb = value.handler;
options = value;
}
const reset = setCurrentInstance(this);
const res = doWatch(getter, cb.bind(publicThis), options);
reset();
return res;
}
function createPathGetter(ctx, path) {
const segments = path.split(".");
return () => {
let cur = ctx;
for (let i = 0; i < segments.length && cur; i++) {
cur = cur[segments[i]];
}
return cur;
};
}
function useModel(props, name, options = EMPTY_OBJ) {
const i = getCurrentInstance();
if (!i) {
@@ -7614,7 +7616,15 @@ function baseCreateRenderer(options, createHydrationFns) {
} else {
const el = n2.el = n1.el;
if (n2.children !== n1.children) {
hostSetText(el, n2.children);
if (isHmrUpdating && n2.patchFlag === -1 && "__elIndex" in n1) {
const childNodes = container.childNodes;
const newChild = hostCreateText(n2.children);
const oldChild = childNodes[n2.__elIndex = n1.__elIndex];
hostInsert(newChild, container, oldChild);
hostRemove(oldChild);
} else {
hostSetText(el, n2.children);
}
}
}
};
@@ -8000,7 +8010,7 @@ function baseCreateRenderer(options, createHydrationFns) {
} else {
if (patchFlag > 0 && patchFlag & 64 && dynamicChildren && // #2715 the previous fragment could've been a BAILed one as a result
// of renderSlot() with no valid children
n1.dynamicChildren) {
n1.dynamicChildren && n1.dynamicChildren.length === dynamicChildren.length) {
patchBlockChildren(
n1.dynamicChildren,
dynamicChildren,
@@ -8602,8 +8612,8 @@ function baseCreateRenderer(options, createHydrationFns) {
const nextChild = c2[nextIndex];
const anchorVNode = c2[nextIndex + 1];
const anchor = nextIndex + 1 < l2 ? (
// #13559, fallback to el placeholder for unresolved async component
anchorVNode.el || anchorVNode.placeholder
// #13559, #14173 fallback to el placeholder for unresolved async component
anchorVNode.el || resolveAsyncComponentPlaceholder(anchorVNode)
) : parentAnchor;
if (newIndexToOldIndexMap[i] === 0) {
patch(
@@ -8859,9 +8869,11 @@ function baseCreateRenderer(options, createHydrationFns) {
};
let isFlushing = false;
const render2 = (vnode, container, namespace) => {
let instance;
if (vnode == null) {
if (container._vnode) {
unmount(container._vnode, null, null, true);
instance = container._vnode.component;
}
} else {
patch(
@@ -8877,7 +8889,7 @@ function baseCreateRenderer(options, createHydrationFns) {
container._vnode = vnode;
if (!isFlushing) {
isFlushing = true;
flushPreFlushCbs();
flushPreFlushCbs(instance);
flushPostFlushCbs();
isFlushing = false;
}
@@ -8937,9 +8949,13 @@ function traverseStaticChildren(n1, n2, shallow = false) {
if (!shallow && c2.patchFlag !== -2)
traverseStaticChildren(c1, c2);
}
if (c2.type === Text && // avoid cached text nodes retaining detached dom nodes
c2.patchFlag !== -1) {
c2.el = c1.el;
if (c2.type === Text) {
if (c2.patchFlag !== -1) {
c2.el = c1.el;
} else {
c2.__elIndex = i + // take fragment start anchor into account
(n1.type === Fragment ? 1 : 0);
}
}
if (c2.type === Comment && !c2.el) {
c2.el = c1.el;
@@ -9006,6 +9022,16 @@ function invalidateMount(hooks) {
hooks[i].flags |= 8;
}
}
function resolveAsyncComponentPlaceholder(anchorVnode) {
if (anchorVnode.placeholder) {
return anchorVnode.placeholder;
}
const instance = anchorVnode.component;
if (instance) {
return resolveAsyncComponentPlaceholder(instance.subTree);
}
return null;
}
var isSuspense = (type) => type.__isSuspense;
var suspenseId = 0;
var SuspenseImpl = {
@@ -9606,10 +9632,10 @@ function isVNodeSuspensible(vnode) {
const suspensible = vnode.props && vnode.props.suspensible;
return suspensible != null && suspensible !== false;
}
var Fragment = Symbol.for("v-fgt");
var Text = Symbol.for("v-txt");
var Comment = Symbol.for("v-cmt");
var Static = Symbol.for("v-stc");
var Fragment = /* @__PURE__ */ Symbol.for("v-fgt");
var Text = /* @__PURE__ */ Symbol.for("v-txt");
var Comment = /* @__PURE__ */ Symbol.for("v-cmt");
var Static = /* @__PURE__ */ Symbol.for("v-stc");
var blockStack = [];
var currentBlock = null;
function openBlock(disableTracking = false) {
@@ -10661,7 +10687,7 @@ function isMemoSame(cached, memo) {
}
return true;
}
var version = "3.5.25";
var version = "3.5.26";
var warn2 = true ? warn$1 : NOOP;
var ErrorTypeStrings = ErrorTypeStrings$1;
var devtools = true ? devtools$1 : void 0;
@@ -10766,7 +10792,7 @@ var nodeOps = {
};
var TRANSITION = "transition";
var ANIMATION = "animation";
var vtcKey = Symbol("_vtc");
var vtcKey = /* @__PURE__ */ Symbol("_vtc");
var DOMTransitionPropsValidators = {
name: String,
type: String,
@@ -11057,8 +11083,8 @@ function patchClass(el, value, isSVG) {
el.className = value;
}
}
var vShowOriginalDisplay = Symbol("_vod");
var vShowHidden = Symbol("_vsh");
var vShowOriginalDisplay = /* @__PURE__ */ Symbol("_vod");
var vShowHidden = /* @__PURE__ */ Symbol("_vsh");
var vShow = {
// used for prop mismatch check during hydration
name: "show",
@@ -11106,7 +11132,7 @@ function initVShowForSSR() {
}
};
}
var CSS_VAR_TEXT = Symbol(true ? "CSS_VAR_TEXT" : "");
var CSS_VAR_TEXT = /* @__PURE__ */ Symbol(true ? "CSS_VAR_TEXT" : "");
function useCssVars(getter) {
const instance = getCurrentInstance();
if (!instance) {
@@ -11352,7 +11378,7 @@ function addEventListener(el, event, handler, options) {
function removeEventListener(el, event, handler, options) {
el.removeEventListener(event, handler, options);
}
var veiKey = Symbol("_vei");
var veiKey = /* @__PURE__ */ Symbol("_vei");
function patchEvent(el, rawName, prevValue, nextValue, instance = null) {
const invokers = el[veiKey] || (el[veiKey] = {});
const existingInvoker = invokers[rawName];
@@ -11976,8 +12002,8 @@ function useCssModule(name = "$style") {
}
var positionMap = /* @__PURE__ */ new WeakMap();
var newPositionMap = /* @__PURE__ */ new WeakMap();
var moveCbKey = Symbol("_moveCb");
var enterCbKey2 = Symbol("_enterCb");
var moveCbKey = /* @__PURE__ */ Symbol("_moveCb");
var enterCbKey2 = /* @__PURE__ */ Symbol("_enterCb");
var decorate = (t) => {
delete t.props.mode;
return t;
@@ -12129,7 +12155,7 @@ function onCompositionEnd(e) {
target.dispatchEvent(new Event("input"));
}
}
var assignKey = Symbol("_assign");
var assignKey = /* @__PURE__ */ Symbol("_assign");
function castValue(value, trim, number) {
if (trim) value = value.trim();
if (number) value = looseToNumber(value);
@@ -12636,6 +12662,15 @@ export {
withScopeId,
withCtx,
withDirectives,
provide,
inject,
hasInjectionContext,
ssrContextKey,
useSSRContext,
watchEffect,
watchPostEffect,
watchSyncEffect,
watch2 as watch,
Teleport,
useTransitionState,
BaseTransitionPropsValidators,
@@ -12684,15 +12719,6 @@ export {
mergeModels,
createPropsRestProxy,
withAsyncContext,
provide,
inject,
hasInjectionContext,
ssrContextKey,
useSSRContext,
watchEffect,
watchPostEffect,
watchSyncEffect,
watch2 as watch,
useModel,
createRenderer,
createHydrationRenderer,
@@ -12758,4 +12784,4 @@ export {
initDirectivesForSSR,
compile2 as compile
};
//# sourceMappingURL=chunk-TICTUL3T.js.map
//# sourceMappingURL=chunk-ADVWCYKY.js.map

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -861,7 +861,6 @@ function toRaw$1(observed) {
const raw = observed && observed[ReactiveFlags.RAW];
return raw ? toRaw$1(raw) : observed;
}
var Fragment = Symbol.for("v-fgt");
var StateEditor = class {
constructor() {
this.refEditor = new RefStateEditor();

File diff suppressed because one or more lines are too long

View File

@@ -36,7 +36,7 @@ import {
unref,
watch,
watchEffect
} from "./chunk-TICTUL3T.js";
} from "./chunk-ADVWCYKY.js";
// node_modules/@vueuse/shared/dist/index.js
function computedEager(fn, options) {
@@ -2426,7 +2426,7 @@ function useBluetooth(options) {
error
};
}
var ssrWidthSymbol = Symbol("vueuse-ssr-width");
var ssrWidthSymbol = /* @__PURE__ */ Symbol("vueuse-ssr-width");
function useSSRWidth() {
const ssrWidth = hasInjectionContext() ? injectLocal(ssrWidthSymbol, null) : null;
return typeof ssrWidth === "number" ? ssrWidth : void 0;

File diff suppressed because one or more lines are too long

View File

@@ -170,7 +170,7 @@ import {
withMemo,
withModifiers,
withScopeId
} from "./chunk-TICTUL3T.js";
} from "./chunk-ADVWCYKY.js";
export {
BaseTransition,
BaseTransitionPropsValidators,