Merge branch 'ghb-11-22-createtable'

This commit is contained in:
2025-11-29 20:43:14 +08:00
11 changed files with 23445 additions and 3038 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1,4 +1,5 @@
{
<<<<<<< HEAD
<<<<<<< HEAD
"hash": "f01e8699",
"configHash": "180cc241",
@@ -10,30 +11,45 @@
"lockfileHash": "d0a71e3e",
"browserHash": "ab8f4b96",
>>>>>>> zzm
=======
"hash": "8bc55d47",
"configHash": "b81bb1f1",
"lockfileHash": "2742585f",
"browserHash": "65f4ed22",
>>>>>>> ghb-11-22-createtable
"optimized": {
"vue": {
"src": "../../../../node_modules/vue/dist/vue.runtime.esm-bundler.js",
"file": "vue.js",
<<<<<<< HEAD
<<<<<<< HEAD
"fileHash": "ffd8baa8",
=======
"fileHash": "4de6bb48",
>>>>>>> zzm
=======
"fileHash": "349f3f49",
>>>>>>> ghb-11-22-createtable
"needsInterop": false
},
"vitepress > @vue/devtools-api": {
"src": "../../../../node_modules/@vue/devtools-api/dist/index.js",
"file": "vitepress___@vue_devtools-api.js",
<<<<<<< HEAD
<<<<<<< HEAD
"fileHash": "c91fbfa8",
=======
"fileHash": "05a8531e",
>>>>>>> zzm
=======
"fileHash": "0f3f40ef",
>>>>>>> ghb-11-22-createtable
"needsInterop": false
},
"vitepress > @vueuse/core": {
"src": "../../../../node_modules/vitepress/node_modules/@vueuse/core/index.mjs",
"src": "../../../../node_modules/vitepress/node_modules/@vueuse/core/dist/index.js",
"file": "vitepress___@vueuse_core.js",
<<<<<<< HEAD
<<<<<<< HEAD
"fileHash": "b91f8785",
=======
@@ -49,10 +65,14 @@
=======
"fileHash": "29ee9ca0",
>>>>>>> zzm
=======
"fileHash": "4cda59eb",
>>>>>>> ghb-11-22-createtable
"needsInterop": false
}
},
"chunks": {
<<<<<<< HEAD
<<<<<<< HEAD
"chunk-SMHOW2GZ": {
"file": "chunk-SMHOW2GZ.js"
@@ -63,6 +83,10 @@
},
"chunk-SFNBNC2X": {
"file": "chunk-SFNBNC2X.js"
=======
"chunk-32NP4N34": {
"file": "chunk-32NP4N34.js"
>>>>>>> ghb-11-22-createtable
}
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@@ -49,10 +49,10 @@ var isBuiltInDirective = makeMap(
);
var cacheStringFunction = (fn) => {
const cache = /* @__PURE__ */ Object.create(null);
return (str) => {
return ((str) => {
const hit = cache[str];
return hit || (cache[str] = fn(str));
};
});
};
var camelizeRE = /-\w/g;
var camelize = cacheStringFunction(
@@ -11469,9 +11469,9 @@ function defineCustomElement(options, extraOptions, _createApp) {
VueCustomElement.def = Comp;
return VueCustomElement;
}
var defineSSRCustomElement = (options, extraOptions) => {
var defineSSRCustomElement = ((options, extraOptions) => {
return defineCustomElement(options, extraOptions, createSSRApp);
};
});
var BaseClass = typeof HTMLElement !== "undefined" ? HTMLElement : class {
};
var VueElement = class _VueElement extends BaseClass {
@@ -12368,13 +12368,13 @@ var modifierGuards = {
var withModifiers = (fn, modifiers) => {
const cache = fn._withMods || (fn._withMods = {});
const cacheKey = modifiers.join(".");
return cache[cacheKey] || (cache[cacheKey] = (event, ...args) => {
return cache[cacheKey] || (cache[cacheKey] = ((event, ...args) => {
for (let i = 0; i < modifiers.length; i++) {
const guard = modifierGuards[modifiers[i]];
if (guard && guard(event, modifiers)) return;
}
return fn(event, ...args);
});
}));
};
var keyNames = {
esc: "escape",
@@ -12388,7 +12388,7 @@ var keyNames = {
var withKeys = (fn, modifiers) => {
const cache = fn._withKeys || (fn._withKeys = {});
const cacheKey = modifiers.join(".");
return cache[cacheKey] || (cache[cacheKey] = (event) => {
return cache[cacheKey] || (cache[cacheKey] = ((event) => {
if (!("key" in event)) {
return;
}
@@ -12398,7 +12398,7 @@ var withKeys = (fn, modifiers) => {
)) {
return fn(event);
}
});
}));
};
var rendererOptions = extend({ patchProp }, nodeOps);
var renderer;
@@ -12411,13 +12411,13 @@ function ensureHydrationRenderer() {
enabledHydration = true;
return renderer;
}
var render = (...args) => {
var render = ((...args) => {
ensureRenderer().render(...args);
};
var hydrate = (...args) => {
});
var hydrate = ((...args) => {
ensureHydrationRenderer().hydrate(...args);
};
var createApp = (...args) => {
});
var createApp = ((...args) => {
const app = ensureRenderer().createApp(...args);
if (true) {
injectNativeTagCheck(app);
@@ -12442,8 +12442,8 @@ var createApp = (...args) => {
return proxy;
};
return app;
};
var createSSRApp = (...args) => {
});
var createSSRApp = ((...args) => {
const app = ensureHydrationRenderer().createApp(...args);
if (true) {
injectNativeTagCheck(app);
@@ -12457,7 +12457,7 @@ var createSSRApp = (...args) => {
}
};
return app;
};
});
function resolveRootNamespace(container) {
if (container instanceof SVGElement) {
return "svg";
@@ -12715,6 +12715,7 @@ export {
initDirectivesForSSR,
compile2 as compile
};
<<<<<<<< HEAD:docs/.vitepress/cache/deps/chunk-SFNBNC2X.js
/*! Bundled license information:
@vue/shared/dist/shared.esm-bundler.js:
@@ -12753,3 +12754,6 @@ vue/dist/vue.runtime.esm-bundler.js:
**)
*/
//# sourceMappingURL=chunk-SFNBNC2X.js.map
========
//# sourceMappingURL=chunk-32NP4N34.js.map
>>>>>>>> ghb-11-22-createtable:docs/.vitepress/cache/deps/chunk-32NP4N34.js

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@@ -168,7 +168,11 @@ import {
withMemo,
withModifiers,
withScopeId
<<<<<<< HEAD
} from "./chunk-SFNBNC2X.js";
=======
} from "./chunk-32NP4N34.js";
>>>>>>> ghb-11-22-createtable
export {
BaseTransition,
BaseTransitionPropsValidators,
@@ -340,4 +344,3 @@ export {
withModifiers,
withScopeId
};
//# sourceMappingURL=vue.js.map